From 6cca96f65ad6fdae97bb66fc5c500318bdd1eecb Mon Sep 17 00:00:00 2001 From: Mikuta Aleksandras Date: Fri, 3 Apr 2020 09:10:04 +0200 Subject: [PATCH] swagger lib changes --- .../swagger/src/lib/api/models/availability-dto.ts | 14 +++++++------- libs/swagger/src/lib/api/models/item-dto.ts | 14 +++++++------- libs/swagger/src/lib/api/models/query-token-dto.ts | 14 +++++++------- .../lib/availability/models/availability-dto.ts | 4 ++-- .../models/availability-request-dto.ts | 4 ++-- .../src/lib/checkout/checkout-configuration.ts | 2 +- .../swagger/src/lib/checkout/models/address-dto.ts | 4 ++-- libs/swagger/src/lib/checkout/models/address.ts | 4 ++-- .../src/lib/checkout/models/availability-dto.ts | 4 ++-- libs/swagger/src/lib/checkout/models/branch-dto.ts | 4 ++-- libs/swagger/src/lib/checkout/models/buyer-dto.ts | 6 +++--- .../src/lib/checkout/models/checkout-dto.ts | 8 ++++---- .../swagger/src/lib/checkout/models/company-dto.ts | 4 ++-- .../src/lib/checkout/models/component-item-dto.ts | 4 ++-- libs/swagger/src/lib/checkout/models/file-dto.ts | 4 ++-- libs/swagger/src/lib/checkout/models/item-dto.ts | 6 +++--- libs/swagger/src/lib/checkout/models/payer-dto.ts | 6 +++--- .../swagger/src/lib/checkout/models/product-dto.ts | 4 ++-- libs/swagger/src/lib/checkout/models/shop-dto.ts | 4 ++-- .../lib/checkout/models/shopping-cart-item-dto.ts | 4 ++-- .../src/lib/checkout/models/user-account-dto.ts | 4 ++-- libs/swagger/src/lib/crm/models/address-dto.ts | 4 ++-- .../src/lib/crm/models/bonus-card-info-dto.ts | 14 +++++++------- libs/swagger/src/lib/crm/models/customer-dto.ts | 6 +++--- .../src/lib/crm/models/customer-info-dto.ts | 4 ++-- libs/swagger/src/lib/crm/models/opt-in-dto.ts | 4 ++-- libs/swagger/src/lib/crm/models/payer-dto.ts | 6 +++--- .../src/lib/crm/models/shipping-address-dto.ts | 6 +++--- libs/swagger/src/lib/isa/models/address-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/address-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/address.ts | 4 ++-- .../swagger/src/lib/oms/models/availability-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/branch-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/buyer-dto.ts | 6 +++--- .../src/lib/oms/models/display-order-dto.ts | 8 ++++---- .../src/lib/oms/models/display-order-item-dto.ts | 6 +++--- .../oms/models/display-order-item-subset-dto.ts | 4 ++-- .../lib/oms/models/display-order-payment-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/order-dto.ts | 8 ++++---- libs/swagger/src/lib/oms/models/order-item-dto.ts | 6 +++--- .../src/lib/oms/models/order-item-list-item-dto.ts | 4 ++-- .../lib/oms/models/order-item-query-token-dto.ts | 4 ++-- .../src/lib/oms/models/order-item-subset-dto.ts | 4 ++-- .../src/lib/oms/models/order-list-item-dto.ts | 6 +++--- .../src/lib/oms/models/order-query-token-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/payer-dto.ts | 6 +++--- libs/swagger/src/lib/oms/models/payment-dto.ts | 4 ++-- libs/swagger/src/lib/oms/models/product-dto.ts | 4 ++-- .../src/lib/oms/models/receipt-list-item-dto.ts | 6 +++--- .../src/lib/oms/models/stock-status-code-dto.ts | 6 +++--- libs/swagger/src/lib/print/models/item-dto.ts | 6 +++--- libs/swagger/src/lib/print/models/product-dto.ts | 4 ++-- 52 files changed, 143 insertions(+), 143 deletions(-) diff --git a/libs/swagger/src/lib/api/models/availability-dto.ts b/libs/swagger/src/lib/api/models/availability-dto.ts index eca8950bc..58939b54e 100644 --- a/libs/swagger/src/lib/api/models/availability-dto.ts +++ b/libs/swagger/src/lib/api/models/availability-dto.ts @@ -5,16 +5,16 @@ */ export interface AvailabilityDTO { + /** + * Stock Status Code / Beschreibung + */ + sscText?: string; + /** * Produkt / Artikel PK */ itemId?: number; - /** - * Shop - */ - shop?: any; - /** * Preis (VK) */ @@ -31,9 +31,9 @@ export interface AvailabilityDTO { ssc?: string; /** - * Stock Status Code / Beschreibung + * Shop */ - sscText?: string; + shop?: any; /** * Verfügbare Menge diff --git a/libs/swagger/src/lib/api/models/item-dto.ts b/libs/swagger/src/lib/api/models/item-dto.ts index aff099c4a..c41466223 100644 --- a/libs/swagger/src/lib/api/models/item-dto.ts +++ b/libs/swagger/src/lib/api/models/item-dto.ts @@ -10,16 +10,16 @@ import { KeyValueDTOOfStringAndString } from './key-value-dtoof-string-and-strin import { ReviewDTO } from './review-dto'; export interface ItemDTO extends EntityDTO { + /** + * Verfügbarkeit laut Katalog + */ + catalogAvailability?: any; + /** * Rang */ scoring?: number; - /** - * Weitere Artikel-IDs - */ - ids?: {[key: string]: number}; - /** * Artikel / Produkttyp */ @@ -56,9 +56,9 @@ export interface ItemDTO extends EntityDTO { images?: Array; /** - * Verfügbarkeit laut Katalog + * Weitere Artikel-IDs */ - catalogAvailability?: any; + ids?: {[key: string]: number}; /** * Verfügbarkeit zur Bestellung in die Filiale diff --git a/libs/swagger/src/lib/api/models/query-token-dto.ts b/libs/swagger/src/lib/api/models/query-token-dto.ts index 84bac56a5..dc8e5fdf1 100644 --- a/libs/swagger/src/lib/api/models/query-token-dto.ts +++ b/libs/swagger/src/lib/api/models/query-token-dto.ts @@ -6,16 +6,16 @@ import { OrderByDTO } from './order-by-dto'; */ export interface QueryTokenDTO { + /** + * Katalogbereich + */ + catalogType?: any; + /** * Lager PK */ stockId?: number; - /** - * Bezeichner - */ - friendlyName?: string; - /** * Eingabewerte z.B. ("qs", "heller süden") */ @@ -32,9 +32,9 @@ export interface QueryTokenDTO { fuzzy?: number; /** - * Katalogbereich + * Bezeichner */ - catalogType?: any; + friendlyName?: string; /** * Filter diff --git a/libs/swagger/src/lib/availability/models/availability-dto.ts b/libs/swagger/src/lib/availability/models/availability-dto.ts index 2e374762a..f7ac036bf 100644 --- a/libs/swagger/src/lib/availability/models/availability-dto.ts +++ b/libs/swagger/src/lib/availability/models/availability-dto.ts @@ -2,8 +2,8 @@ import { PriceDTO } from './price-dto'; import { AvailabilityType } from './availability-type'; export interface AvailabilityDTO { + ssc?: string; itemId?: number; - supplierProductNumber?: string; requestReference?: string; ean?: string; shop?: number; @@ -12,7 +12,7 @@ export interface AvailabilityDTO { supplierId?: number; logistician?: string; logisticianId?: number; - ssc?: string; + supplierProductNumber?: string; sscText?: string; qty?: number; isPrebooked?: boolean; diff --git a/libs/swagger/src/lib/availability/models/availability-request-dto.ts b/libs/swagger/src/lib/availability/models/availability-request-dto.ts index 863dbc574..b6f1b2f34 100644 --- a/libs/swagger/src/lib/availability/models/availability-request-dto.ts +++ b/libs/swagger/src/lib/availability/models/availability-request-dto.ts @@ -1,14 +1,14 @@ /* tslint:disable */ import { PriceDTO } from './price-dto'; export interface AvailabilityRequestDTO { + price?: PriceDTO; itemId?: string; - supplierProductNumber?: string; ean?: string; qty: number; orderCode?: string; supplier?: string; preBook?: boolean; - price?: PriceDTO; + supplierProductNumber?: string; ssc?: string; estimatedShipping?: string; shopId?: number; diff --git a/libs/swagger/src/lib/checkout/checkout-configuration.ts b/libs/swagger/src/lib/checkout/checkout-configuration.ts index 83528c339..5c631480d 100644 --- a/libs/swagger/src/lib/checkout/checkout-configuration.ts +++ b/libs/swagger/src/lib/checkout/checkout-configuration.ts @@ -8,5 +8,5 @@ import { Injectable } from '@angular/core'; providedIn: 'root', }) export class CheckoutConfiguration { - rootUrl: string = 'https://isa-integration.kubernetes.paragon-systems.de'; + rootUrl: string = 'https://isa.paragon-data.de/checkout/v3'; } diff --git a/libs/swagger/src/lib/checkout/models/address-dto.ts b/libs/swagger/src/lib/checkout/models/address-dto.ts index 089bd01c6..9f5d698e9 100644 --- a/libs/swagger/src/lib/checkout/models/address-dto.ts +++ b/libs/swagger/src/lib/checkout/models/address-dto.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { GeoLocation } from './geo-location'; export interface AddressDTO { + street?: string; apartment?: string; - careOf?: string; city?: string; district?: string; info?: string; po?: string; - street?: string; + careOf?: string; streetNumber?: string; zipCode?: string; state?: string; diff --git a/libs/swagger/src/lib/checkout/models/address.ts b/libs/swagger/src/lib/checkout/models/address.ts index e60c41f52..cbfe6952a 100644 --- a/libs/swagger/src/lib/checkout/models/address.ts +++ b/libs/swagger/src/lib/checkout/models/address.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { GeoLocation } from './geo-location'; export interface Address { + region?: string; apartment?: string; - careOf?: string; city?: string; district?: string; info?: string; po?: string; - region?: string; + careOf?: string; street?: string; streetNumber?: string; zipCode?: string; diff --git a/libs/swagger/src/lib/checkout/models/availability-dto.ts b/libs/swagger/src/lib/checkout/models/availability-dto.ts index 9c913f7c7..cf21d4074 100644 --- a/libs/swagger/src/lib/checkout/models/availability-dto.ts +++ b/libs/swagger/src/lib/checkout/models/availability-dto.ts @@ -4,14 +4,14 @@ import { PriceDTO } from './price-dto'; import { EntityDTOContainerOfShopItemDTO } from './entity-dtocontainer-of-shop-item-dto'; import { EntityDTOContainerOfSupplierDTO } from './entity-dtocontainer-of-supplier-dto'; export interface AvailabilityDTO { + supplierSSCText?: string; availabilityType: AvailabilityType; - inStock?: number; ssc?: string; sscText?: string; supplierInfo?: string; isPrebooked?: boolean; supplierSSC?: string; - supplierSSCText?: string; + inStock?: number; price?: PriceDTO; estimatedShippingDate?: string; shopItem?: EntityDTOContainerOfShopItemDTO; diff --git a/libs/swagger/src/lib/checkout/models/branch-dto.ts b/libs/swagger/src/lib/checkout/models/branch-dto.ts index 27c659387..44d71d47e 100644 --- a/libs/swagger/src/lib/checkout/models/branch-dto.ts +++ b/libs/swagger/src/lib/checkout/models/branch-dto.ts @@ -4,13 +4,13 @@ import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto import { Address } from './address'; import { BranchType } from './branch-type'; export interface BranchDTO extends EntityDTOOfBranchDTOAndIReadOnlyBranch { + isOnline?: boolean; label?: EntityDTOContainerOfLabelDTO; - parent?: number; branchNumber?: string; name?: string; shortName?: string; key?: string; - isOnline?: boolean; + parent?: number; isOrderingEnabled?: boolean; isShippingEnabled?: boolean; address?: Address; diff --git a/libs/swagger/src/lib/checkout/models/buyer-dto.ts b/libs/swagger/src/lib/checkout/models/buyer-dto.ts index 913a024f7..904347cf9 100644 --- a/libs/swagger/src/lib/checkout/models/buyer-dto.ts +++ b/libs/swagger/src/lib/checkout/models/buyer-dto.ts @@ -1,18 +1,18 @@ /* tslint:disable */ import { EntityReferenceDTO } from './entity-reference-dto'; -import { BuyerType } from './buyer-type'; import { Gender } from './gender'; +import { BuyerType } from './buyer-type'; import { CommunicationDetailsDTO } from './communication-details-dto'; import { OrganisationDTO } from './organisation-dto'; import { AddressDTO } from './address-dto'; export interface BuyerDTO extends EntityReferenceDTO { + firstName?: string; buyerNumber?: string; - buyerType: BuyerType; isTemporaryAccount?: boolean; locale?: string; gender: Gender; title?: string; - firstName?: string; + buyerType: BuyerType; lastName?: string; dateOfBirth?: string; communicationDetails?: CommunicationDetailsDTO; diff --git a/libs/swagger/src/lib/checkout/models/checkout-dto.ts b/libs/swagger/src/lib/checkout/models/checkout-dto.ts index 7a3ba3165..60a1475ff 100644 --- a/libs/swagger/src/lib/checkout/models/checkout-dto.ts +++ b/libs/swagger/src/lib/checkout/models/checkout-dto.ts @@ -1,24 +1,24 @@ /* tslint:disable */ import { EntityDTOOfCheckoutDTOAndICheckout } from './entity-dtoof-checkout-dtoand-icheckout'; -import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto'; +import { EntityDTOContainerOfCheckoutItemDTO } from './entity-dtocontainer-of-checkout-item-dto'; import { UserAccountDTO } from './user-account-dto'; import { BuyerDTO } from './buyer-dto'; import { PayerDTO } from './payer-dto'; import { EntityDTOContainerOfDestinationDTO } from './entity-dtocontainer-of-destination-dto'; import { EntityDTOContainerOfCheckoutDeliveryDTO } from './entity-dtocontainer-of-checkout-delivery-dto'; -import { EntityDTOContainerOfCheckoutItemDTO } from './entity-dtocontainer-of-checkout-item-dto'; +import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto'; import { NotificationChannel } from './notification-channel'; import { SelectionDTOOfShippingTarget } from './selection-dtoof-shipping-target'; import { PaymentDTO } from './payment-dto'; export interface CheckoutDTO extends EntityDTOOfCheckoutDTOAndICheckout { + items?: Array; label?: string; - orderBranch?: EntityDTOContainerOfBranchDTO; userAccount?: UserAccountDTO; buyer?: BuyerDTO; payer?: PayerDTO; destinations?: Array; deliveries?: Array; - items?: Array; + orderBranch?: EntityDTOContainerOfBranchDTO; notificationChannels: NotificationChannel; availableShippingTargets?: Array; payment?: PaymentDTO; diff --git a/libs/swagger/src/lib/checkout/models/company-dto.ts b/libs/swagger/src/lib/checkout/models/company-dto.ts index 8b9ebfcd3..79934a25e 100644 --- a/libs/swagger/src/lib/checkout/models/company-dto.ts +++ b/libs/swagger/src/lib/checkout/models/company-dto.ts @@ -3,12 +3,12 @@ import { EntityDTOOfCompanyDTOAndICompany } from './entity-dtoof-company-dtoand- import { EntityDTOContainerOfCompanyDTO } from './entity-dtocontainer-of-company-dto'; import { AddressDTO } from './address-dto'; export interface CompanyDTO extends EntityDTOOfCompanyDTOAndICompany { + department?: string; parent?: EntityDTOContainerOfCompanyDTO; - locale?: string; name?: string; nameSuffix?: string; legalForm?: string; - department?: string; + locale?: string; costUnit?: string; vatId?: string; address?: AddressDTO; diff --git a/libs/swagger/src/lib/checkout/models/component-item-dto.ts b/libs/swagger/src/lib/checkout/models/component-item-dto.ts index f0035a862..47a127fa7 100644 --- a/libs/swagger/src/lib/checkout/models/component-item-dto.ts +++ b/libs/swagger/src/lib/checkout/models/component-item-dto.ts @@ -4,12 +4,12 @@ import { EntityDTOContainerOfCategoryDTO } from './entity-dtocontainer-of-catego import { QuantityUnitType } from './quantity-unit-type'; import { ComponentItemDisplayType } from './component-item-display-type'; export interface ComponentItemDTO { + quantityMax?: number; name?: string; - description?: string; item?: EntityDTOContainerOfItemDTO; category?: EntityDTOContainerOfCategoryDTO; required?: boolean; - quantityMax?: number; + description?: string; quantityUnitType: QuantityUnitType; unit?: string; displayType: ComponentItemDisplayType; diff --git a/libs/swagger/src/lib/checkout/models/file-dto.ts b/libs/swagger/src/lib/checkout/models/file-dto.ts index 7a5f9b8f3..c85d7610a 100644 --- a/libs/swagger/src/lib/checkout/models/file-dto.ts +++ b/libs/swagger/src/lib/checkout/models/file-dto.ts @@ -1,12 +1,12 @@ /* tslint:disable */ import { EntityDTOOfFileDTOAndIFile } from './entity-dtoof-file-dtoand-ifile'; export interface FileDTO extends EntityDTOOfFileDTOAndIFile { + size?: number; name?: string; - type?: string; path?: string; mime?: string; hash?: string; - size?: number; + type?: string; subtitle?: string; copyright?: string; locale?: string; diff --git a/libs/swagger/src/lib/checkout/models/item-dto.ts b/libs/swagger/src/lib/checkout/models/item-dto.ts index f93ae6f96..dac9dba9a 100644 --- a/libs/swagger/src/lib/checkout/models/item-dto.ts +++ b/libs/swagger/src/lib/checkout/models/item-dto.ts @@ -1,11 +1,11 @@ /* tslint:disable */ import { EntityDTOOfItemDTOAndIItem } from './entity-dtoof-item-dtoand-iitem'; +import { WeightOfAvoirdupois } from './weight-of-avoirdupois'; import { EntityDTOContainerOfItemDTO } from './entity-dtocontainer-of-item-dto'; import { ContributorHelperDTO } from './contributor-helper-dto'; import { EntityDTOContainerOfCompanyDTO } from './entity-dtocontainer-of-company-dto'; import { EntityDTOContainerOfCategoryDTO } from './entity-dtocontainer-of-category-dto'; import { SizeOfString } from './size-of-string'; -import { WeightOfAvoirdupois } from './weight-of-avoirdupois'; import { ItemType } from './item-type'; import { EntityDTOContainerOfFileDTO } from './entity-dtocontainer-of-file-dto'; import { EntityDTOContainerOfTextDTO } from './entity-dtocontainer-of-text-dto'; @@ -14,8 +14,8 @@ import { ItemLabelDTO } from './item-label-dto'; import { FoodDTO } from './food-dto'; import { EntityDTOContainerOfTenantDTO } from './entity-dtocontainer-of-tenant-dto'; export interface ItemDTO extends EntityDTOOfItemDTOAndIItem { + weight?: WeightOfAvoirdupois; itemNumber?: string; - name?: string; subtitle?: string; description?: string; ean?: string; @@ -28,7 +28,7 @@ export interface ItemDTO extends EntityDTOOfItemDTOAndIItem { categories?: Array; manufacturingCosts?: number; size?: SizeOfString; - weight?: WeightOfAvoirdupois; + name?: string; netWeight?: WeightOfAvoirdupois; weightOfPackaging?: WeightOfAvoirdupois; itemType: ItemType; diff --git a/libs/swagger/src/lib/checkout/models/payer-dto.ts b/libs/swagger/src/lib/checkout/models/payer-dto.ts index f2174c1bc..02c13fc73 100644 --- a/libs/swagger/src/lib/checkout/models/payer-dto.ts +++ b/libs/swagger/src/lib/checkout/models/payer-dto.ts @@ -1,19 +1,19 @@ /* tslint:disable */ import { EntityReferenceDTO } from './entity-reference-dto'; -import { PayerType } from './payer-type'; import { PayerStatus } from './payer-status'; import { Gender } from './gender'; +import { PayerType } from './payer-type'; import { CommunicationDetailsDTO } from './communication-details-dto'; import { OrganisationDTO } from './organisation-dto'; import { AddressDTO } from './address-dto'; export interface PayerDTO extends EntityReferenceDTO { + firstName?: string; payerNumber?: string; - payerType: PayerType; payerStatus: PayerStatus; locale?: string; gender: Gender; title?: string; - firstName?: string; + payerType: PayerType; lastName?: string; dateOfBirth?: string; communicationDetails?: CommunicationDetailsDTO; diff --git a/libs/swagger/src/lib/checkout/models/product-dto.ts b/libs/swagger/src/lib/checkout/models/product-dto.ts index d9cd2689b..438ded128 100644 --- a/libs/swagger/src/lib/checkout/models/product-dto.ts +++ b/libs/swagger/src/lib/checkout/models/product-dto.ts @@ -2,15 +2,15 @@ import { SizeOfString } from './size-of-string'; import { WeightOfAvoirdupois } from './weight-of-avoirdupois'; export interface ProductDTO { + productGroup?: string; name?: string; - additionalName?: string; ean?: string; supplierProductNumber?: string; catalogProductNumber?: string; contributors?: string; manufacturer?: string; publicationDate?: string; - productGroup?: string; + additionalName?: string; edition?: string; volume?: string; serial?: string; diff --git a/libs/swagger/src/lib/checkout/models/shop-dto.ts b/libs/swagger/src/lib/checkout/models/shop-dto.ts index 60cfce85d..4ac5e3cf0 100644 --- a/libs/swagger/src/lib/checkout/models/shop-dto.ts +++ b/libs/swagger/src/lib/checkout/models/shop-dto.ts @@ -9,15 +9,15 @@ import { ShippingTarget } from './shipping-target'; import { CountryTargetDTO } from './country-target-dto'; import { BranchTargetDTO } from './branch-target-dto'; export interface ShopDTO extends EntityDTOOfShopDTOAndIShop { + orderingEnabledStart?: string; name?: string; - description?: string; branch?: EntityDTOContainerOfBranchDTO; defaultLocale?: string; defaultTargetBranch?: EntityDTOContainerOfBranchDTO; defaultLogistician?: EntityDTOContainerOfLogisticianDTO; defaultCurrency?: EntityDTOContainerOfCurrencyDTO; defaultCountry?: EntityDTOContainerOfCountryDTO; - orderingEnabledStart?: string; + description?: string; orderingEnabledStop?: string; shippingEnabledStart?: string; shippingEnabledStop?: string; diff --git a/libs/swagger/src/lib/checkout/models/shopping-cart-item-dto.ts b/libs/swagger/src/lib/checkout/models/shopping-cart-item-dto.ts index b23597f4b..92f2ab08e 100644 --- a/libs/swagger/src/lib/checkout/models/shopping-cart-item-dto.ts +++ b/libs/swagger/src/lib/checkout/models/shopping-cart-item-dto.ts @@ -12,8 +12,8 @@ import { EntityDTOContainerOfShopDTO } from './entity-dtocontainer-of-shop-dto'; import { EntityDTOContainerOfDestinationDTO } from './entity-dtocontainer-of-destination-dto'; import { PromotionDTO } from './promotion-dto'; export interface ShoppingCartItemDTO extends EntityDTOOfShoppingCartItemDTOAndIShoppingCartItem { + specialComment?: string; quantity?: number; - ssc?: string; sscText?: string; shopItem?: EntityDTOContainerOfShopItemDTO; product?: ProductDTO; @@ -22,7 +22,7 @@ export interface ShoppingCartItemDTO extends EntityDTOOfShoppingCartItemDTOAndIS availability?: AvailabilityDTO; agentComment?: string; buyerComment?: string; - specialComment?: string; + ssc?: string; lastAvailabilityRequest?: string; shoppingCartItemStatus: ShoppingCartItemStatus; total?: PriceDTO; diff --git a/libs/swagger/src/lib/checkout/models/user-account-dto.ts b/libs/swagger/src/lib/checkout/models/user-account-dto.ts index d009ffedb..a48c96c11 100644 --- a/libs/swagger/src/lib/checkout/models/user-account-dto.ts +++ b/libs/swagger/src/lib/checkout/models/user-account-dto.ts @@ -1,12 +1,12 @@ /* tslint:disable */ import { Gender } from './gender'; export interface UserAccountDTO { + title?: string; isTemporaryAccount?: boolean; - userName?: string; alias?: string; password?: string; gender?: Gender; - title?: string; + userName?: string; firstName?: string; lastName?: string; dateOfBirth?: string; diff --git a/libs/swagger/src/lib/crm/models/address-dto.ts b/libs/swagger/src/lib/crm/models/address-dto.ts index 089bd01c6..9f5d698e9 100644 --- a/libs/swagger/src/lib/crm/models/address-dto.ts +++ b/libs/swagger/src/lib/crm/models/address-dto.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { GeoLocation } from './geo-location'; export interface AddressDTO { + street?: string; apartment?: string; - careOf?: string; city?: string; district?: string; info?: string; po?: string; - street?: string; + careOf?: string; streetNumber?: string; zipCode?: string; state?: string; diff --git a/libs/swagger/src/lib/crm/models/bonus-card-info-dto.ts b/libs/swagger/src/lib/crm/models/bonus-card-info-dto.ts index 410835cba..c2f4f981d 100644 --- a/libs/swagger/src/lib/crm/models/bonus-card-info-dto.ts +++ b/libs/swagger/src/lib/crm/models/bonus-card-info-dto.ts @@ -5,16 +5,16 @@ */ export interface BonusCardInfoDTO { + /** + * Geburtsdatum + */ + dateOfBirth?: string; + /** * Kartennummer */ code?: string; - /** - * Format (Karte, App, ...) - */ - format?: string; - /** * Anrede */ @@ -41,9 +41,9 @@ export interface BonusCardInfoDTO { address?: any; /** - * Geburtsdatum + * Format (Karte, App, ...) */ - dateOfBirth?: string; + format?: string; /** * E-Mail Adresse diff --git a/libs/swagger/src/lib/crm/models/customer-dto.ts b/libs/swagger/src/lib/crm/models/customer-dto.ts index f6c69bb1f..1789b06f4 100644 --- a/libs/swagger/src/lib/crm/models/customer-dto.ts +++ b/libs/swagger/src/lib/crm/models/customer-dto.ts @@ -1,6 +1,5 @@ /* tslint:disable */ import { EntityDTOOfCustomerDTOAndICustomer } from './entity-dtoof-customer-dtoand-icustomer'; -import { EnvironmentChannel } from './environment-channel'; import { EntityDTOContainerOfUserDTO } from './entity-dtocontainer-of-user-dto'; import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto'; import { CustomerType } from './customer-type'; @@ -10,6 +9,7 @@ import { Gender } from './gender'; import { CommunicationDetailsDTO } from './communication-details-dto'; import { AddressDTO } from './address-dto'; import { EntityDTOContainerOfShippingAddressDTO } from './entity-dtocontainer-of-shipping-address-dto'; +import { EnvironmentChannel } from './environment-channel'; import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto'; import { EntityDTOContainerOfBonusCardDTO } from './entity-dtocontainer-of-bonus-card-dto'; import { NotificationChannel } from './notification-channel'; @@ -18,8 +18,8 @@ import { AssignedPayerDTO } from './assigned-payer-dto'; import { EntityDTOContainerOfAttributeDTO } from './entity-dtocontainer-of-attribute-dto'; import { KeyValueDTOOfStringAndString } from './key-value-dtoof-string-and-string'; export interface CustomerDTO extends EntityDTOOfCustomerDTOAndICustomer { + agentComment?: string; customerGroup?: string; - clientChannel?: EnvironmentChannel; user?: EntityDTOContainerOfUserDTO; createdInBranch?: EntityDTOContainerOfBranchDTO; customerNumber?: string; @@ -34,7 +34,7 @@ export interface CustomerDTO extends EntityDTOOfCustomerDTOAndICustomer { communicationDetails?: CommunicationDetailsDTO; address?: AddressDTO; shippingAddresses?: Array; - agentComment?: string; + clientChannel?: EnvironmentChannel; statusChangeComment?: string; deactivationComment?: string; statusComment?: string; diff --git a/libs/swagger/src/lib/crm/models/customer-info-dto.ts b/libs/swagger/src/lib/crm/models/customer-info-dto.ts index 7e6938ef8..bd6da2e34 100644 --- a/libs/swagger/src/lib/crm/models/customer-info-dto.ts +++ b/libs/swagger/src/lib/crm/models/customer-info-dto.ts @@ -12,8 +12,8 @@ import { EntityDTOContainerOfBonusCardDTO } from './entity-dtocontainer-of-bonus import { NotificationChannel } from './notification-channel'; import { KeyValueDTOOfStringAndString } from './key-value-dtoof-string-and-string'; export interface CustomerInfoDTO extends EntityDTOOfCustomerInfoDTOAndICustomer { + dateOfBirth?: string; customerGroup?: string; - userName?: string; createdInBranch?: EntityDTOContainerOfBranchDTO; customerNumber?: string; customerType?: CustomerType; @@ -23,7 +23,7 @@ export interface CustomerInfoDTO extends EntityDTOOfCustomerInfoDTOAndICustomer title?: string; firstName?: string; lastName?: string; - dateOfBirth?: string; + userName?: string; communicationDetails?: CommunicationDetailsDTO; address?: AddressDTO; agentComment?: string; diff --git a/libs/swagger/src/lib/crm/models/opt-in-dto.ts b/libs/swagger/src/lib/crm/models/opt-in-dto.ts index abf95033c..3413f865d 100644 --- a/libs/swagger/src/lib/crm/models/opt-in-dto.ts +++ b/libs/swagger/src/lib/crm/models/opt-in-dto.ts @@ -4,14 +4,14 @@ import { EntityDTOContainerOfCustomerDTO } from './entity-dtocontainer-of-custom import { EntityDTOContainerOfTenantDTO } from './entity-dtocontainer-of-tenant-dto'; import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto'; export interface OptInDTO extends EntityDTOOfOptInDTOAndIOptIn { + allowRequested?: string; email?: string; - user?: string; customer?: EntityDTOContainerOfCustomerDTO; category?: string; key?: string; sourceSystem?: string; sourceIP?: string; - allowRequested?: string; + user?: string; allowRequestToken?: string; allow?: string; denyRequested?: string; diff --git a/libs/swagger/src/lib/crm/models/payer-dto.ts b/libs/swagger/src/lib/crm/models/payer-dto.ts index 9d87c50dc..5c5d1a669 100644 --- a/libs/swagger/src/lib/crm/models/payer-dto.ts +++ b/libs/swagger/src/lib/crm/models/payer-dto.ts @@ -1,16 +1,16 @@ /* tslint:disable */ import { EntityDTOOfPayerDTOAndIPayer } from './entity-dtoof-payer-dtoand-ipayer'; +import { AddressDTO } from './address-dto'; import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto'; import { CustomerType } from './customer-type'; import { PayerStatus } from './payer-status'; import { Gender } from './gender'; import { OrganisationDTO } from './organisation-dto'; -import { AddressDTO } from './address-dto'; import { CommunicationDetailsDTO } from './communication-details-dto'; import { PaymentSettingsDTO } from './payment-settings-dto'; export interface PayerDTO extends EntityDTOOfPayerDTOAndIPayer { + address?: AddressDTO; label?: EntityDTOContainerOfLabelDTO; - payerGroup?: string; payerNumber?: string; payerType?: CustomerType; payerStatus?: PayerStatus; @@ -19,7 +19,7 @@ export interface PayerDTO extends EntityDTOOfPayerDTOAndIPayer { firstName?: string; lastName?: string; organisation?: OrganisationDTO; - address?: AddressDTO; + payerGroup?: string; communicationDetails?: CommunicationDetailsDTO; agentComment?: string; statusChangeComment?: string; diff --git a/libs/swagger/src/lib/crm/models/shipping-address-dto.ts b/libs/swagger/src/lib/crm/models/shipping-address-dto.ts index 15a702683..ba880fc73 100644 --- a/libs/swagger/src/lib/crm/models/shipping-address-dto.ts +++ b/libs/swagger/src/lib/crm/models/shipping-address-dto.ts @@ -1,18 +1,18 @@ /* tslint:disable */ import { EntityDTOOfShippingAddressDTOAndIShippingAddress } from './entity-dtoof-shipping-address-dtoand-ishipping-address'; +import { AddressDTO } from './address-dto'; import { Gender } from './gender'; import { OrganisationDTO } from './organisation-dto'; import { CommunicationDetailsDTO } from './communication-details-dto'; -import { AddressDTO } from './address-dto'; import { ShippingAddressType } from './shipping-address-type'; export interface ShippingAddressDTO extends EntityDTOOfShippingAddressDTOAndIShippingAddress { + address?: AddressDTO; gender?: Gender; - title?: string; firstName?: string; lastName?: string; organisation?: OrganisationDTO; communicationDetails?: CommunicationDetailsDTO; - address?: AddressDTO; + title?: string; agentComment?: string; type: ShippingAddressType; isDefault?: string; diff --git a/libs/swagger/src/lib/isa/models/address-dto.ts b/libs/swagger/src/lib/isa/models/address-dto.ts index 089bd01c6..9f5d698e9 100644 --- a/libs/swagger/src/lib/isa/models/address-dto.ts +++ b/libs/swagger/src/lib/isa/models/address-dto.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { GeoLocation } from './geo-location'; export interface AddressDTO { + street?: string; apartment?: string; - careOf?: string; city?: string; district?: string; info?: string; po?: string; - street?: string; + careOf?: string; streetNumber?: string; zipCode?: string; state?: string; diff --git a/libs/swagger/src/lib/oms/models/address-dto.ts b/libs/swagger/src/lib/oms/models/address-dto.ts index 089bd01c6..9f5d698e9 100644 --- a/libs/swagger/src/lib/oms/models/address-dto.ts +++ b/libs/swagger/src/lib/oms/models/address-dto.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { GeoLocation } from './geo-location'; export interface AddressDTO { + street?: string; apartment?: string; - careOf?: string; city?: string; district?: string; info?: string; po?: string; - street?: string; + careOf?: string; streetNumber?: string; zipCode?: string; state?: string; diff --git a/libs/swagger/src/lib/oms/models/address.ts b/libs/swagger/src/lib/oms/models/address.ts index e60c41f52..cbfe6952a 100644 --- a/libs/swagger/src/lib/oms/models/address.ts +++ b/libs/swagger/src/lib/oms/models/address.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { GeoLocation } from './geo-location'; export interface Address { + region?: string; apartment?: string; - careOf?: string; city?: string; district?: string; info?: string; po?: string; - region?: string; + careOf?: string; street?: string; streetNumber?: string; zipCode?: string; diff --git a/libs/swagger/src/lib/oms/models/availability-dto.ts b/libs/swagger/src/lib/oms/models/availability-dto.ts index 2e374762a..f7ac036bf 100644 --- a/libs/swagger/src/lib/oms/models/availability-dto.ts +++ b/libs/swagger/src/lib/oms/models/availability-dto.ts @@ -2,8 +2,8 @@ import { PriceDTO } from './price-dto'; import { AvailabilityType } from './availability-type'; export interface AvailabilityDTO { + ssc?: string; itemId?: number; - supplierProductNumber?: string; requestReference?: string; ean?: string; shop?: number; @@ -12,7 +12,7 @@ export interface AvailabilityDTO { supplierId?: number; logistician?: string; logisticianId?: number; - ssc?: string; + supplierProductNumber?: string; sscText?: string; qty?: number; isPrebooked?: boolean; diff --git a/libs/swagger/src/lib/oms/models/branch-dto.ts b/libs/swagger/src/lib/oms/models/branch-dto.ts index 27c659387..44d71d47e 100644 --- a/libs/swagger/src/lib/oms/models/branch-dto.ts +++ b/libs/swagger/src/lib/oms/models/branch-dto.ts @@ -4,13 +4,13 @@ import { EntityDTOContainerOfLabelDTO } from './entity-dtocontainer-of-label-dto import { Address } from './address'; import { BranchType } from './branch-type'; export interface BranchDTO extends EntityDTOOfBranchDTOAndIReadOnlyBranch { + isOnline?: boolean; label?: EntityDTOContainerOfLabelDTO; - parent?: number; branchNumber?: string; name?: string; shortName?: string; key?: string; - isOnline?: boolean; + parent?: number; isOrderingEnabled?: boolean; isShippingEnabled?: boolean; address?: Address; diff --git a/libs/swagger/src/lib/oms/models/buyer-dto.ts b/libs/swagger/src/lib/oms/models/buyer-dto.ts index 50cc1c3d6..5cfa5091c 100644 --- a/libs/swagger/src/lib/oms/models/buyer-dto.ts +++ b/libs/swagger/src/lib/oms/models/buyer-dto.ts @@ -1,19 +1,19 @@ /* tslint:disable */ import { EntityReferenceDTO } from './entity-reference-dto'; -import { BuyerType } from './buyer-type'; import { BuyerStatus } from './buyer-status'; import { Gender } from './gender'; +import { BuyerType } from './buyer-type'; import { CommunicationDetailsDTO } from './communication-details-dto'; import { OrganisationDTO } from './organisation-dto'; import { AddressDTO } from './address-dto'; export interface BuyerDTO extends EntityReferenceDTO { + title?: string; buyerNumber?: string; - buyerType: BuyerType; buyerStatus: BuyerStatus; isGuestAccount?: boolean; locale?: string; gender: Gender; - title?: string; + buyerType: BuyerType; firstName?: string; lastName?: string; communicationDetails?: CommunicationDetailsDTO; diff --git a/libs/swagger/src/lib/oms/models/display-order-dto.ts b/libs/swagger/src/lib/oms/models/display-order-dto.ts index e2a2f102a..a899946c2 100644 --- a/libs/swagger/src/lib/oms/models/display-order-dto.ts +++ b/libs/swagger/src/lib/oms/models/display-order-dto.ts @@ -1,17 +1,17 @@ /* tslint:disable */ import { EntityDTOOfDisplayOrderDTOAndIOrder } from './entity-dtoof-display-order-dtoand-iorder'; +import { DisplayAddresseeDTO } from './display-addressee-dto'; import { OrderType } from './order-type'; -import { EnvironmentChannel } from './environment-channel'; import { DisplayBranchDTO } from './display-branch-dto'; import { DisplayOrderItemDTO } from './display-order-item-dto'; -import { DisplayAddresseeDTO } from './display-addressee-dto'; +import { EnvironmentChannel } from './environment-channel'; import { DisplayLogisticianDTO } from './display-logistician-dto'; import { DisplayOrderPaymentDTO } from './display-order-payment-dto'; import { TermsOfDeliveryDTO } from './terms-of-delivery-dto'; import { NotificationChannel } from './notification-channel'; export interface DisplayOrderDTO extends EntityDTOOfDisplayOrderDTOAndIOrder { + shippingAddress?: DisplayAddresseeDTO; orderType: OrderType; - clientChannel?: EnvironmentChannel; orderNumber?: string; orderDate?: string; orderBranch?: DisplayBranchDTO; @@ -20,7 +20,7 @@ export interface DisplayOrderDTO extends EntityDTOOfDisplayOrderDTOAndIOrder { buyerNumber?: string; buyer?: DisplayAddresseeDTO; buyerComment?: string; - shippingAddress?: DisplayAddresseeDTO; + clientChannel?: EnvironmentChannel; targetBranch?: DisplayBranchDTO; logistician?: DisplayLogisticianDTO; payerNumber?: string; diff --git a/libs/swagger/src/lib/oms/models/display-order-item-dto.ts b/libs/swagger/src/lib/oms/models/display-order-item-dto.ts index 81cb26686..04fd3be88 100644 --- a/libs/swagger/src/lib/oms/models/display-order-item-dto.ts +++ b/libs/swagger/src/lib/oms/models/display-order-item-dto.ts @@ -1,19 +1,19 @@ /* tslint:disable */ import { EntityDTOOfDisplayOrderItemDTOAndIOrderItem } from './entity-dtoof-display-order-item-dtoand-iorder-item'; import { DisplayOrderDTO } from './display-order-dto'; -import { ProductDTO } from './product-dto'; import { DisplayOrderItemSubsetDTO } from './display-order-item-subset-dto'; +import { ProductDTO } from './product-dto'; import { QuantityUnitType } from './quantity-unit-type'; import { PriceDTO } from './price-dto'; import { PromotionDTO } from './promotion-dto'; export interface DisplayOrderItemDTO extends EntityDTOOfDisplayOrderItemDTOAndIOrderItem { + quantity?: number; order?: DisplayOrderDTO; - product?: ProductDTO; orderItemNumber?: string; orderDate?: string; subsetItems?: Array; buyerComment?: string; - quantity?: number; + product?: ProductDTO; quantityUnitType: QuantityUnitType; quantityUnit?: string; price?: PriceDTO; diff --git a/libs/swagger/src/lib/oms/models/display-order-item-subset-dto.ts b/libs/swagger/src/lib/oms/models/display-order-item-subset-dto.ts index b6f68813a..569fd4b6d 100644 --- a/libs/swagger/src/lib/oms/models/display-order-item-subset-dto.ts +++ b/libs/swagger/src/lib/oms/models/display-order-item-subset-dto.ts @@ -3,15 +3,15 @@ import { EntityDTOOfDisplayOrderItemSubsetDTOAndIOrderItemStatus } from './entit import { DisplayOrderItemDTO } from './display-order-item-dto'; import { OrderItemProcessingStatusValue } from './order-item-processing-status-value'; export interface DisplayOrderItemSubsetDTO extends EntityDTOOfDisplayOrderItemSubsetDTOAndIOrderItemStatus { + supplierLabel?: string; orderItem?: DisplayOrderItemDTO; - orderItemSubsetNumber?: string; description?: string; quantity?: number; estimatedShippingDate?: string; ssc?: string; sscText?: string; supplierName?: string; - supplierLabel?: string; + orderItemSubsetNumber?: string; processingStatus: OrderItemProcessingStatusValue; processingStatusDate?: string; trackingNumber?: string; diff --git a/libs/swagger/src/lib/oms/models/display-order-payment-dto.ts b/libs/swagger/src/lib/oms/models/display-order-payment-dto.ts index 3ee6a23ec..70b36b23c 100644 --- a/libs/swagger/src/lib/oms/models/display-order-payment-dto.ts +++ b/libs/swagger/src/lib/oms/models/display-order-payment-dto.ts @@ -2,13 +2,13 @@ import { EntityDTOOfDisplayOrderPaymentDTOAndIReadOnlyPayment } from './entity-dtoof-display-order-payment-dtoand-iread-only-payment'; import { PaymentType } from './payment-type'; export interface DisplayOrderPaymentDTO extends EntityDTOOfDisplayOrderPaymentDTOAndIReadOnlyPayment { + shipping?: number; paymentActionRequired: boolean; - paymentType: PaymentType; paymentNumber?: string; paymentComment?: string; total: number; subtotal?: number; - shipping?: number; + paymentType: PaymentType; tax?: number; currency?: string; dateOfPayment?: string; diff --git a/libs/swagger/src/lib/oms/models/order-dto.ts b/libs/swagger/src/lib/oms/models/order-dto.ts index 2633b0e67..9e9bcc728 100644 --- a/libs/swagger/src/lib/oms/models/order-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-dto.ts @@ -1,7 +1,7 @@ /* tslint:disable */ import { EntityDTOOfOrderDTOAndIOrder } from './entity-dtoof-order-dtoand-iorder'; +import { EntityDTOContainerOfPayerDTO } from './entity-dtocontainer-of-payer-dto'; import { OrderType } from './order-type'; -import { EnvironmentChannel } from './environment-channel'; import { EntityDTOContainerOfBranchDTO } from './entity-dtocontainer-of-branch-dto'; import { OrderProcessingStatus } from './order-processing-status'; import { EntityDTOContainerOfOrderItemDTO } from './entity-dtocontainer-of-order-item-dto'; @@ -9,7 +9,7 @@ import { BuyerDTO } from './buyer-dto'; import { NotificationChannel } from './notification-channel'; import { EntityDTOContainerOfShippingAddressDTO } from './entity-dtocontainer-of-shipping-address-dto'; import { EntityDTOContainerOfLogisticianDTO } from './entity-dtocontainer-of-logistician-dto'; -import { EntityDTOContainerOfPayerDTO } from './entity-dtocontainer-of-payer-dto'; +import { EnvironmentChannel } from './environment-channel'; import { PaymentType } from './payment-type'; import { EntityDTOContainerOfPaymentDTO } from './entity-dtocontainer-of-payment-dto'; import { PaymentStatus } from './payment-status'; @@ -17,8 +17,8 @@ import { ValidationStatus } from './validation-status'; import { TermsOfDeliveryDTO } from './terms-of-delivery-dto'; import { PackagingInstructions } from './packaging-instructions'; export interface OrderDTO extends EntityDTOOfOrderDTOAndIOrder { + payer?: EntityDTOContainerOfPayerDTO; orderType?: OrderType; - clientChannel?: EnvironmentChannel; orderNumber?: string; orderDate?: string; acceptanceDate?: string; @@ -32,7 +32,7 @@ export interface OrderDTO extends EntityDTOOfOrderDTOAndIOrder { shippingAddress?: EntityDTOContainerOfShippingAddressDTO; targetBranch?: EntityDTOContainerOfBranchDTO; logistician?: EntityDTOContainerOfLogisticianDTO; - payer?: EntityDTOContainerOfPayerDTO; + clientChannel?: EnvironmentChannel; paymentType?: PaymentType; paymentComment?: string; payment?: EntityDTOContainerOfPaymentDTO; diff --git a/libs/swagger/src/lib/oms/models/order-item-dto.ts b/libs/swagger/src/lib/oms/models/order-item-dto.ts index 6689c760e..e28eb4977 100644 --- a/libs/swagger/src/lib/oms/models/order-item-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-item-dto.ts @@ -1,17 +1,17 @@ /* tslint:disable */ import { EntityDTOOfOrderItemDTOAndIOrderItem } from './entity-dtoof-order-item-dtoand-iorder-item'; import { EntityDTOContainerOfOrderDTO } from './entity-dtocontainer-of-order-dto'; -import { ProductDTO } from './product-dto'; import { EntityDTOContainerOfOrderItemDTO } from './entity-dtocontainer-of-order-item-dto'; import { OrderItemType } from './order-item-type'; import { EntityDTOContainerOfOrderItemSubsetDTO } from './entity-dtocontainer-of-order-item-subset-dto'; +import { ProductDTO } from './product-dto'; import { QuantityUnitType } from './quantity-unit-type'; import { PriceDTO } from './price-dto'; import { EntityDTOContainerOfShopItemDTO } from './entity-dtocontainer-of-shop-item-dto'; import { PromotionDTO } from './promotion-dto'; export interface OrderItemDTO extends EntityDTOOfOrderItemDTOAndIOrderItem { + quantity?: number; order?: EntityDTOContainerOfOrderDTO; - product?: ProductDTO; orderItemNumber?: string; parent?: EntityDTOContainerOfOrderItemDTO; orderItemType?: OrderItemType; @@ -20,7 +20,7 @@ export interface OrderItemDTO extends EntityDTOOfOrderItemDTOAndIOrderItem { subsetItems?: Array; buyerComment?: string; invoiceText?: string; - quantity?: number; + product?: ProductDTO; quantityUnitType?: QuantityUnitType; quantityUnit?: string; grossPrice?: PriceDTO; diff --git a/libs/swagger/src/lib/oms/models/order-item-list-item-dto.ts b/libs/swagger/src/lib/oms/models/order-item-list-item-dto.ts index 2eeb46642..d82fca8d6 100644 --- a/libs/swagger/src/lib/oms/models/order-item-list-item-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-item-list-item-dto.ts @@ -5,8 +5,8 @@ import { ProductDTO } from './product-dto'; import { Gender } from './gender'; import { KeyValueDTOOfOrderItemProcessingStatusValueAndString } from './key-value-dtoof-order-item-processing-status-value-and-string'; export interface OrderItemListItemDTO { + currency?: string; orderId?: number; - orderItemId?: number; orderItemSubsetId?: number; orderPId?: string; orderItemPId?: string; @@ -23,7 +23,7 @@ export interface OrderItemListItemDTO { quantity?: number; overallQuantity?: number; price?: number; - currency?: string; + orderItemId?: number; buyerNumber?: string; organisation?: string; gender?: Gender; diff --git a/libs/swagger/src/lib/oms/models/order-item-query-token-dto.ts b/libs/swagger/src/lib/oms/models/order-item-query-token-dto.ts index 708c7f361..752c707e2 100644 --- a/libs/swagger/src/lib/oms/models/order-item-query-token-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-item-query-token-dto.ts @@ -1,13 +1,13 @@ /* tslint:disable */ import { OrderByDTO2 } from './order-by-dto2'; export interface OrderItemQueryTokenDTO { + fuzzy?: number; labelKey?: string; - branchId?: number; branchNumber?: string; friendlyName?: string; input?: {[key: string]: string}; ids?: Array; - fuzzy?: number; + branchId?: number; filter?: {[key: string]: string}; orderBy?: Array; skip?: number; diff --git a/libs/swagger/src/lib/oms/models/order-item-subset-dto.ts b/libs/swagger/src/lib/oms/models/order-item-subset-dto.ts index c3bbc0573..532a49e5d 100644 --- a/libs/swagger/src/lib/oms/models/order-item-subset-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-item-subset-dto.ts @@ -4,8 +4,8 @@ import { EntityDTOContainerOfOrderItemDTO } from './entity-dtocontainer-of-order import { EntityDTOContainerOfSupplierDTO } from './entity-dtocontainer-of-supplier-dto'; import { OrderItemProcessingStatusValue } from './order-item-processing-status-value'; export interface OrderItemSubsetDTO extends EntityDTOOfOrderItemSubsetDTOAndIOrderItemStatus { + specialComment?: string; orderItem?: EntityDTOContainerOfOrderItemDTO; - orderItemSubsetNumber?: string; supplier?: EntityDTOContainerOfSupplierDTO; supplierProductNumber?: string; orderedAtSupplier?: string; @@ -15,7 +15,7 @@ export interface OrderItemSubsetDTO extends EntityDTOOfOrderItemSubsetDTOAndIOrd dateFetchedDelivered?: string; ssc?: string; sscText?: string; - specialComment?: string; + orderItemSubsetNumber?: string; isPrebooked?: boolean; processingStatus?: OrderItemProcessingStatusValue; processingStatusDate?: string; diff --git a/libs/swagger/src/lib/oms/models/order-list-item-dto.ts b/libs/swagger/src/lib/oms/models/order-list-item-dto.ts index 374ea1281..9831eada6 100644 --- a/libs/swagger/src/lib/oms/models/order-list-item-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-list-item-dto.ts @@ -1,11 +1,11 @@ /* tslint:disable */ +import { OrderProcessingStatus } from './order-processing-status'; import { EnvironmentChannel } from './environment-channel'; import { OrderType } from './order-type'; -import { OrderProcessingStatus } from './order-processing-status'; import { Gender } from './gender'; export interface OrderListItemDTO { + processingStatus?: OrderProcessingStatus; clientChannel?: EnvironmentChannel; - orderId?: number; orderPId?: string; orderBranchName?: string; orderBranchId?: number; @@ -14,7 +14,7 @@ export interface OrderListItemDTO { shopName?: string; orderNumber?: string; orderType?: OrderType; - processingStatus?: OrderProcessingStatus; + orderId?: number; orderDate?: string; organisation?: string; gender?: Gender; diff --git a/libs/swagger/src/lib/oms/models/order-query-token-dto.ts b/libs/swagger/src/lib/oms/models/order-query-token-dto.ts index c8a878966..6c28b1c72 100644 --- a/libs/swagger/src/lib/oms/models/order-query-token-dto.ts +++ b/libs/swagger/src/lib/oms/models/order-query-token-dto.ts @@ -1,12 +1,12 @@ /* tslint:disable */ import { OrderByDTO } from './order-by-dto'; export interface OrderQueryTokenDTO { + fuzzy?: number; labelKey?: string; - branchNumber?: string; friendlyName?: string; input?: {[key: string]: string}; ids?: Array; - fuzzy?: number; + branchNumber?: string; filter?: {[key: string]: string}; orderBy?: Array; skip?: number; diff --git a/libs/swagger/src/lib/oms/models/payer-dto.ts b/libs/swagger/src/lib/oms/models/payer-dto.ts index 7a8717c66..0c6c87a00 100644 --- a/libs/swagger/src/lib/oms/models/payer-dto.ts +++ b/libs/swagger/src/lib/oms/models/payer-dto.ts @@ -1,18 +1,18 @@ /* tslint:disable */ import { EntityDTOOfPayerDTOAndIPayer } from './entity-dtoof-payer-dtoand-ipayer'; -import { PayerType } from './payer-type'; import { PayerStatus } from './payer-status'; import { Gender } from './gender'; +import { PayerType } from './payer-type'; import { OrganisationDTO } from './organisation-dto'; import { AddressDTO } from './address-dto'; import { CommunicationDetailsDTO } from './communication-details-dto'; export interface PayerDTO extends EntityDTOOfPayerDTOAndIPayer { + title?: string; payerNumber?: string; - payerType: PayerType; payerStatus: PayerStatus; locale?: string; gender: Gender; - title?: string; + payerType: PayerType; firstName?: string; lastName?: string; organisation?: OrganisationDTO; diff --git a/libs/swagger/src/lib/oms/models/payment-dto.ts b/libs/swagger/src/lib/oms/models/payment-dto.ts index f91fbfc91..a3133f4ae 100644 --- a/libs/swagger/src/lib/oms/models/payment-dto.ts +++ b/libs/swagger/src/lib/oms/models/payment-dto.ts @@ -2,14 +2,14 @@ import { EntityDTOOfPaymentDTOAndIReadOnlyPayment } from './entity-dtoof-payment-dtoand-iread-only-payment'; import { PaymentType } from './payment-type'; export interface PaymentDTO extends EntityDTOOfPaymentDTOAndIReadOnlyPayment { + currency?: string; paymentType: PaymentType; - paymentNumber?: string; paymentComment?: string; total: number; subtotal?: number; shipping?: number; tax?: number; - currency?: string; + paymentNumber?: string; dateOfPayment?: string; cancelled?: string; dunning1?: string; diff --git a/libs/swagger/src/lib/oms/models/product-dto.ts b/libs/swagger/src/lib/oms/models/product-dto.ts index d9cd2689b..438ded128 100644 --- a/libs/swagger/src/lib/oms/models/product-dto.ts +++ b/libs/swagger/src/lib/oms/models/product-dto.ts @@ -2,15 +2,15 @@ import { SizeOfString } from './size-of-string'; import { WeightOfAvoirdupois } from './weight-of-avoirdupois'; export interface ProductDTO { + productGroup?: string; name?: string; - additionalName?: string; ean?: string; supplierProductNumber?: string; catalogProductNumber?: string; contributors?: string; manufacturer?: string; publicationDate?: string; - productGroup?: string; + additionalName?: string; edition?: string; volume?: string; serial?: string; diff --git a/libs/swagger/src/lib/oms/models/receipt-list-item-dto.ts b/libs/swagger/src/lib/oms/models/receipt-list-item-dto.ts index 785f6db84..29effba83 100644 --- a/libs/swagger/src/lib/oms/models/receipt-list-item-dto.ts +++ b/libs/swagger/src/lib/oms/models/receipt-list-item-dto.ts @@ -1,11 +1,11 @@ /* tslint:disable */ import { EntityReferenceDTO } from './entity-reference-dto'; -import { ReceiptType } from './receipt-type'; import { PaymentType } from './payment-type'; +import { ReceiptType } from './receipt-type'; import { PaymentStatus2 } from './payment-status-2'; export interface ReceiptListItemDTO extends EntityReferenceDTO { + paymentType?: PaymentType; label?: string; - orderNumber?: string; receiptType?: ReceiptType; receiptNumber?: string; printedDate?: string; @@ -14,7 +14,7 @@ export interface ReceiptListItemDTO extends EntityReferenceDTO { paidTotal?: number; paidAt?: string; placeOfPayment?: string; - paymentType?: PaymentType; + orderNumber?: string; paymentStatus?: PaymentStatus2; statusDate?: string; payerNumber?: string; diff --git a/libs/swagger/src/lib/oms/models/stock-status-code-dto.ts b/libs/swagger/src/lib/oms/models/stock-status-code-dto.ts index f434b3f2c..7981518ec 100644 --- a/libs/swagger/src/lib/oms/models/stock-status-code-dto.ts +++ b/libs/swagger/src/lib/oms/models/stock-status-code-dto.ts @@ -1,17 +1,17 @@ /* tslint:disable */ import { EntityDTOOfStockStatusCodeDTOAndIStockStatusCode } from './entity-dtoof-stock-status-code-dtoand-istock-status-code'; -import { EntityDTOContainerOfSupplierDTO } from './entity-dtocontainer-of-supplier-dto'; import { AvailabilityType } from './availability-type'; +import { EntityDTOContainerOfSupplierDTO } from './entity-dtocontainer-of-supplier-dto'; import { StockStatusCodeTextDTO } from './stock-status-code-text-dto'; export interface StockStatusCodeDTO extends EntityDTOOfStockStatusCodeDTOAndIStockStatusCode { + friendlyDescription?: string; code?: string; - supplier?: EntityDTOContainerOfSupplierDTO; availabilityInMinutes?: number; isPrebookable?: boolean; prio?: number; availabilityType?: AvailabilityType; supplierDescription?: string; - friendlyDescription?: string; + supplier?: EntityDTOContainerOfSupplierDTO; friendlyDescriptionPrebooked?: string; friendlyShortDescription?: string; friendlyShortDescriptionPrebooked?: string; diff --git a/libs/swagger/src/lib/print/models/item-dto.ts b/libs/swagger/src/lib/print/models/item-dto.ts index 4586878f5..14012f386 100644 --- a/libs/swagger/src/lib/print/models/item-dto.ts +++ b/libs/swagger/src/lib/print/models/item-dto.ts @@ -1,24 +1,24 @@ /* tslint:disable */ import { EntityDTO } from './entity-dto'; +import { AvailabilityDTO } from './availability-dto'; import { ItemType } from './item-type'; import { ProductDTO } from './product-dto'; import { SpecDTO } from './spec-dto'; import { TextDTO } from './text-dto'; import { ImageDTO } from './image-dto'; -import { AvailabilityDTO } from './availability-dto'; import { StockInfoDTO } from './stock-info-dto'; import { ShelfInfoDTO } from './shelf-info-dto'; import { ReviewDTO } from './review-dto'; export interface ItemDTO extends EntityDTO { + catalogAvailability?: AvailabilityDTO; scoring?: number; - ids?: {[key: string]: number}; type?: ItemType; labels?: {[key: string]: string}; product?: ProductDTO; specs?: Array; texts?: Array; images?: Array; - catalogAvailability?: AvailabilityDTO; + ids?: {[key: string]: number}; storeAvailabilities?: Array; shippingAvailabilities?: Array; stockInfos?: Array; diff --git a/libs/swagger/src/lib/print/models/product-dto.ts b/libs/swagger/src/lib/print/models/product-dto.ts index d9cd2689b..438ded128 100644 --- a/libs/swagger/src/lib/print/models/product-dto.ts +++ b/libs/swagger/src/lib/print/models/product-dto.ts @@ -2,15 +2,15 @@ import { SizeOfString } from './size-of-string'; import { WeightOfAvoirdupois } from './weight-of-avoirdupois'; export interface ProductDTO { + productGroup?: string; name?: string; - additionalName?: string; ean?: string; supplierProductNumber?: string; catalogProductNumber?: string; contributors?: string; manufacturer?: string; publicationDate?: string; - productGroup?: string; + additionalName?: string; edition?: string; volume?: string; serial?: string;