@lcdp/api-react-rest-client 2.9.0 → 2.9.1-develop.13139662212
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auth/src/apis/AuthApi.d.ts +12 -10
- package/auth/src/apis/AuthApi.js +63 -70
- package/auth/src/apis/ManageApiKeyApi.d.ts +12 -12
- package/auth/src/apis/ManageApiKeyApi.js +84 -85
- package/auth/src/apis/SearchApiKeyApi.d.ts +20 -20
- package/auth/src/apis/SearchApiKeyApi.js +86 -91
- package/auth/src/apis/index.js +2 -0
- package/auth/src/index.d.ts +2 -2
- package/auth/src/index.js +4 -2
- package/auth/src/models/AnonymousUser.d.ts +11 -2
- package/auth/src/models/AnonymousUser.js +27 -21
- package/auth/src/models/AnyAuthenticationCredential.d.ts +10 -9
- package/auth/src/models/AnyAuthenticationCredential.js +13 -27
- package/auth/src/models/AnyUser.d.ts +3 -2
- package/auth/src/models/AnyUser.js +5 -19
- package/auth/src/models/ApiKey.d.ts +14 -4
- package/auth/src/models/ApiKey.js +27 -22
- package/auth/src/models/ApiKeyCreationParameters.d.ts +13 -3
- package/auth/src/models/ApiKeyCreationParameters.js +21 -11
- package/auth/src/models/ApiKeyCredential.d.ts +11 -2
- package/auth/src/models/ApiKeyCredential.js +23 -21
- package/auth/src/models/AuthenticationCredential.d.ts +4 -0
- package/auth/src/models/AuthenticationCredential.js +14 -8
- package/auth/src/models/DisposableCredential.d.ts +11 -2
- package/auth/src/models/DisposableCredential.js +23 -21
- package/auth/src/models/DisposableTokenCreationParameters.d.ts +4 -0
- package/auth/src/models/DisposableTokenCreationParameters.js +13 -10
- package/auth/src/models/HttpLink.d.ts +4 -0
- package/auth/src/models/HttpLink.js +14 -8
- package/auth/src/models/IdentifiedUser.d.ts +11 -2
- package/auth/src/models/IdentifiedUser.js +23 -21
- package/auth/src/models/LoginCredential.d.ts +11 -2
- package/auth/src/models/LoginCredential.js +27 -21
- package/auth/src/models/PaginatedApiKeys.d.ts +13 -3
- package/auth/src/models/PaginatedApiKeys.js +24 -21
- package/auth/src/models/PaginatedObject.d.ts +5 -1
- package/auth/src/models/PaginatedObject.js +15 -9
- package/auth/src/models/PagingMetadata.d.ts +4 -0
- package/auth/src/models/PagingMetadata.js +23 -11
- package/auth/src/models/RefreshCredential.d.ts +11 -2
- package/auth/src/models/RefreshCredential.js +23 -21
- package/auth/src/models/RestError.d.ts +66 -58
- package/auth/src/models/RestError.js +73 -67
- package/auth/src/models/RevealedApiKey.d.ts +54 -2
- package/auth/src/models/RevealedApiKey.js +34 -22
- package/auth/src/models/Session.d.ts +4 -0
- package/auth/src/models/Session.js +20 -10
- package/auth/src/models/User.d.ts +4 -0
- package/auth/src/models/User.js +14 -8
- package/auth/src/models/UserLink.d.ts +12 -3
- package/auth/src/models/UserLink.js +25 -22
- package/auth/src/models/UserLinkAllOfCompany.d.ts +4 -0
- package/auth/src/models/UserLinkAllOfCompany.js +13 -10
- package/auth/src/models/index.d.ts +0 -9
- package/auth/src/models/index.js +2 -9
- package/auth/src/runtime.d.ts +72 -31
- package/auth/src/runtime.js +291 -164
- package/banking-operation/src/apis/ManageLevyApi.d.ts +8 -8
- package/banking-operation/src/apis/ManageLevyApi.js +56 -59
- package/banking-operation/src/apis/ManageOrderPaymentApi.d.ts +8 -8
- package/banking-operation/src/apis/ManageOrderPaymentApi.js +62 -66
- package/banking-operation/src/apis/SearchLevyApi.d.ts +29 -27
- package/banking-operation/src/apis/SearchLevyApi.js +96 -99
- package/banking-operation/src/apis/SearchOrderPaymentApi.d.ts +15 -13
- package/banking-operation/src/apis/SearchOrderPaymentApi.js +44 -45
- package/banking-operation/src/apis/index.js +2 -0
- package/banking-operation/src/index.d.ts +2 -2
- package/banking-operation/src/index.js +4 -2
- package/banking-operation/src/models/HttpLink.d.ts +4 -0
- package/banking-operation/src/models/HttpLink.js +14 -8
- package/banking-operation/src/models/Levy.d.ts +7 -3
- package/banking-operation/src/models/Levy.js +44 -27
- package/banking-operation/src/models/LevyCreationParameters.d.ts +5 -1
- package/banking-operation/src/models/LevyCreationParameters.js +29 -16
- package/banking-operation/src/models/LevyPayment.d.ts +5 -1
- package/banking-operation/src/models/LevyPayment.js +15 -12
- package/banking-operation/src/models/LevyPaymentStatus.d.ts +7 -6
- package/banking-operation/src/models/LevyPaymentStatus.js +17 -8
- package/banking-operation/src/models/LevyStatus.d.ts +6 -5
- package/banking-operation/src/models/LevyStatus.js +16 -7
- package/banking-operation/src/models/LevyUpdateParameters.d.ts +5 -1
- package/banking-operation/src/models/LevyUpdateParameters.js +15 -12
- package/banking-operation/src/models/OrderLink.d.ts +11 -2
- package/banking-operation/src/models/OrderLink.js +21 -22
- package/banking-operation/src/models/OrderPayment.d.ts +8 -4
- package/banking-operation/src/models/OrderPayment.js +23 -20
- package/banking-operation/src/models/OrderPaymentDeposit.d.ts +5 -1
- package/banking-operation/src/models/OrderPaymentDeposit.js +13 -10
- package/banking-operation/src/models/OrderPaymentWallets.d.ts +5 -1
- package/banking-operation/src/models/OrderPaymentWallets.js +15 -12
- package/banking-operation/src/models/OrderPaymentWithdraw.d.ts +5 -1
- package/banking-operation/src/models/OrderPaymentWithdraw.js +19 -16
- package/banking-operation/src/models/PaginatedLevies.d.ts +13 -3
- package/banking-operation/src/models/PaginatedLevies.js +24 -21
- package/banking-operation/src/models/PaginatedObject.d.ts +5 -1
- package/banking-operation/src/models/PaginatedObject.js +15 -9
- package/banking-operation/src/models/PaginatedOrderPayments.d.ts +13 -3
- package/banking-operation/src/models/PaginatedOrderPayments.js +24 -21
- package/banking-operation/src/models/PagingMetadata.d.ts +4 -0
- package/banking-operation/src/models/PagingMetadata.js +23 -11
- package/banking-operation/src/models/Transaction.d.ts +15 -11
- package/banking-operation/src/models/Transaction.js +30 -29
- package/banking-operation/src/models/TransactionMangopayTarget.d.ts +11 -2
- package/banking-operation/src/models/TransactionMangopayTarget.js +21 -22
- package/banking-operation/src/models/UserLink.d.ts +12 -3
- package/banking-operation/src/models/UserLink.js +29 -22
- package/banking-operation/src/models/UserLinkAllOfCompany.d.ts +4 -0
- package/banking-operation/src/models/UserLinkAllOfCompany.js +13 -10
- package/banking-operation/src/models/Wallet.d.ts +5 -1
- package/banking-operation/src/models/Wallet.js +13 -10
- package/banking-operation/src/models/WalletMangopayTarget.d.ts +11 -2
- package/banking-operation/src/models/WalletMangopayTarget.js +21 -22
- package/banking-operation/src/models/index.d.ts +0 -6
- package/banking-operation/src/models/index.js +2 -6
- package/banking-operation/src/runtime.d.ts +72 -31
- package/banking-operation/src/runtime.js +291 -164
- package/catalog/src/apis/ManageProductInsightApi.d.ts +10 -10
- package/catalog/src/apis/ManageProductInsightApi.js +83 -89
- package/catalog/src/apis/SearchProductInsightApi.d.ts +17 -17
- package/catalog/src/apis/SearchProductInsightApi.js +72 -77
- package/catalog/src/apis/index.js +2 -0
- package/catalog/src/index.d.ts +2 -2
- package/catalog/src/index.js +4 -2
- package/catalog/src/models/Barcodes.d.ts +5 -0
- package/catalog/src/models/Barcodes.js +19 -16
- package/catalog/src/models/HttpLink.d.ts +4 -0
- package/catalog/src/models/HttpLink.js +14 -8
- package/catalog/src/models/LaboratoryLink.d.ts +11 -2
- package/catalog/src/models/LaboratoryLink.js +23 -22
- package/catalog/src/models/PaginatedObject.d.ts +5 -1
- package/catalog/src/models/PaginatedObject.js +15 -9
- package/catalog/src/models/PaginatedProductInsights.d.ts +13 -3
- package/catalog/src/models/PaginatedProductInsights.js +24 -21
- package/catalog/src/models/PagingMetadata.d.ts +4 -0
- package/catalog/src/models/PagingMetadata.js +23 -11
- package/catalog/src/models/ProductInsight.d.ts +21 -10
- package/catalog/src/models/ProductInsight.js +45 -36
- package/catalog/src/models/ProductInsightCreateOrUpdateParameters.d.ts +8 -4
- package/catalog/src/models/ProductInsightCreateOrUpdateParameters.js +35 -30
- package/catalog/src/models/ProductInsightJournal.d.ts +4 -0
- package/catalog/src/models/ProductInsightJournal.js +17 -12
- package/catalog/src/models/ProductSecondaryTypeLink.d.ts +11 -2
- package/catalog/src/models/ProductSecondaryTypeLink.js +23 -22
- package/catalog/src/models/ProductStorageType.d.ts +8 -7
- package/catalog/src/models/ProductStorageType.js +18 -9
- package/catalog/src/models/ProductTypeLink.d.ts +11 -2
- package/catalog/src/models/ProductTypeLink.js +23 -22
- package/catalog/src/models/RestError.d.ts +66 -58
- package/catalog/src/models/RestError.js +73 -67
- package/catalog/src/models/VatLink.d.ts +11 -2
- package/catalog/src/models/VatLink.js +25 -22
- package/catalog/src/models/index.d.ts +0 -5
- package/catalog/src/models/index.js +2 -5
- package/catalog/src/runtime.d.ts +72 -31
- package/catalog/src/runtime.js +291 -164
- package/challenge/src/apis/ManageChallengesApi.d.ts +6 -6
- package/challenge/src/apis/ManageChallengesApi.js +30 -32
- package/challenge/src/apis/index.js +2 -0
- package/challenge/src/index.d.ts +2 -2
- package/challenge/src/index.js +4 -2
- package/challenge/src/models/Challenge.d.ts +5 -1
- package/challenge/src/models/Challenge.js +15 -12
- package/challenge/src/models/ChallengeAction.d.ts +11 -7
- package/challenge/src/models/ChallengeAction.js +19 -18
- package/challenge/src/models/index.js +2 -0
- package/challenge/src/runtime.d.ts +72 -31
- package/challenge/src/runtime.js +291 -164
- package/configuration/src/apis/ManageVariableApi.d.ts +10 -10
- package/configuration/src/apis/ManageVariableApi.js +81 -87
- package/configuration/src/apis/ManageVatApi.d.ts +8 -8
- package/configuration/src/apis/ManageVatApi.js +57 -61
- package/configuration/src/apis/SearchVariableApi.d.ts +8 -8
- package/configuration/src/apis/SearchVariableApi.js +21 -21
- package/configuration/src/apis/SearchVatApi.d.ts +8 -8
- package/configuration/src/apis/SearchVatApi.js +53 -57
- package/configuration/src/apis/index.js +2 -0
- package/configuration/src/index.d.ts +2 -2
- package/configuration/src/index.js +4 -2
- package/configuration/src/models/RestError.d.ts +66 -58
- package/configuration/src/models/RestError.js +73 -67
- package/configuration/src/models/Variable.d.ts +4 -0
- package/configuration/src/models/Variable.js +17 -9
- package/configuration/src/models/Vat.d.ts +4 -0
- package/configuration/src/models/Vat.js +20 -10
- package/configuration/src/models/index.js +2 -0
- package/configuration/src/runtime.d.ts +72 -31
- package/configuration/src/runtime.js +291 -164
- package/content/src/apis/ManageContentApi.d.ts +6 -6
- package/content/src/apis/ManageContentApi.js +33 -35
- package/content/src/apis/SearchContentApi.d.ts +6 -6
- package/content/src/apis/SearchContentApi.js +14 -14
- package/content/src/apis/index.js +2 -0
- package/content/src/index.d.ts +2 -2
- package/content/src/index.js +4 -2
- package/content/src/models/Content.d.ts +4 -0
- package/content/src/models/Content.js +21 -18
- package/content/src/models/RestError.d.ts +66 -58
- package/content/src/models/RestError.js +73 -67
- package/content/src/models/index.js +2 -0
- package/content/src/runtime.d.ts +72 -31
- package/content/src/runtime.js +291 -164
- package/factory/src/apis/ManageAssemblyApi.d.ts +12 -12
- package/factory/src/apis/ManageAssemblyApi.js +61 -104
- package/factory/src/apis/SearchAssemblyApi.d.ts +33 -28
- package/factory/src/apis/SearchAssemblyApi.js +158 -151
- package/factory/src/apis/index.d.ts +0 -3
- package/factory/src/apis/index.js +2 -3
- package/factory/src/index.d.ts +2 -2
- package/factory/src/index.js +4 -2
- package/factory/src/models/AnyDistributionMode.d.ts +29 -0
- package/factory/src/models/AnyDistributionMode.js +55 -0
- package/factory/src/models/AnyFactory.d.ts +29 -0
- package/factory/src/models/AnyFactory.js +55 -0
- package/factory/src/models/Assembly.d.ts +30 -20
- package/factory/src/models/Assembly.js +40 -35
- package/factory/src/models/AssemblyCreationParameters.d.ts +12 -7
- package/factory/src/models/AssemblyCreationParameters.js +21 -12
- package/factory/src/models/AssemblyJournal.d.ts +37 -0
- package/factory/src/models/AssemblyJournal.js +47 -0
- package/factory/src/models/AssemblyOutputInner.d.ts +51 -0
- package/factory/src/models/AssemblyOutputInner.js +62 -0
- package/factory/src/models/AssemblyStatus.d.ts +12 -10
- package/factory/src/models/AssemblyStatus.js +22 -12
- package/factory/src/models/DistributionMode.d.ts +46 -0
- package/factory/src/models/DistributionMode.js +55 -0
- package/factory/src/models/DistributionRange.d.ts +43 -0
- package/factory/src/models/DistributionRange.js +55 -0
- package/factory/src/models/Factory.d.ts +31 -0
- package/factory/src/models/Factory.js +47 -0
- package/factory/src/models/HttpLink.d.ts +4 -0
- package/factory/src/models/HttpLink.js +14 -8
- package/factory/src/models/OfferPlanificationFactory.d.ts +60 -0
- package/factory/src/models/OfferPlanificationFactory.js +60 -0
- package/factory/src/models/OfferPlanificationFactoryAllOfRecords.d.ts +58 -0
- package/factory/src/models/OfferPlanificationFactoryAllOfRecords.js +56 -0
- package/factory/src/models/PaginatedAssemblies.d.ts +13 -3
- package/factory/src/models/PaginatedAssemblies.js +22 -22
- package/factory/src/models/PaginatedObject.d.ts +5 -1
- package/factory/src/models/PaginatedObject.js +15 -9
- package/factory/src/models/PagingMetadata.d.ts +4 -0
- package/factory/src/models/PagingMetadata.js +23 -11
- package/factory/src/models/Product.d.ts +80 -0
- package/factory/src/models/Product.js +62 -0
- package/factory/src/models/ProductStatus.d.ts +26 -0
- package/factory/src/models/ProductStatus.js +49 -0
- package/factory/src/models/ProductUpsertFactory.d.ts +38 -0
- package/factory/src/models/ProductUpsertFactory.js +50 -0
- package/factory/src/models/ProductUpsertFactoryAllOfRecords.d.ts +32 -0
- package/factory/src/models/ProductUpsertFactoryAllOfRecords.js +46 -0
- package/factory/src/models/QuotationDistributionMode.d.ts +52 -0
- package/factory/src/models/QuotationDistributionMode.js +59 -0
- package/factory/src/models/RangeDistributionMode.d.ts +53 -0
- package/factory/src/models/RangeDistributionMode.js +60 -0
- package/factory/src/models/SaleOfferStatus.d.ts +29 -0
- package/factory/src/models/SaleOfferStatus.js +52 -0
- package/factory/src/models/SaleOfferUpsertFactory.d.ts +50 -0
- package/factory/src/models/SaleOfferUpsertFactory.js +56 -0
- package/factory/src/models/SaleOfferUpsertFactoryAllOfRecords.d.ts +59 -0
- package/factory/src/models/SaleOfferUpsertFactoryAllOfRecords.js +57 -0
- package/factory/src/models/StatusEnum.d.ts +30 -0
- package/factory/src/models/StatusEnum.js +53 -0
- package/factory/src/models/Stock.d.ts +43 -0
- package/factory/src/models/Stock.js +50 -0
- package/factory/src/models/UnitaryDistributionMode.d.ts +58 -0
- package/factory/src/models/UnitaryDistributionMode.js +63 -0
- package/factory/src/models/UserLink.d.ts +11 -2
- package/factory/src/models/UserLink.js +21 -22
- package/factory/src/models/index.d.ts +21 -8
- package/factory/src/models/index.js +23 -8
- package/factory/src/runtime.d.ts +72 -31
- package/factory/src/runtime.js +291 -164
- package/favorite/src/apis/ManageFavoriteProductApi.d.ts +21 -21
- package/favorite/src/apis/ManageFavoriteProductApi.js +124 -133
- package/favorite/src/apis/index.js +2 -0
- package/favorite/src/index.d.ts +2 -2
- package/favorite/src/index.js +4 -2
- package/favorite/src/models/Barcodes.d.ts +5 -0
- package/favorite/src/models/Barcodes.js +19 -16
- package/favorite/src/models/FavoriteProduct.d.ts +6 -2
- package/favorite/src/models/FavoriteProduct.js +27 -15
- package/favorite/src/models/FavoriteProductCreationParameters.d.ts +4 -0
- package/favorite/src/models/FavoriteProductCreationParameters.js +17 -9
- package/favorite/src/models/HttpLink.d.ts +4 -0
- package/favorite/src/models/HttpLink.js +14 -8
- package/favorite/src/models/PaginatedFavoriteProducts.d.ts +13 -3
- package/favorite/src/models/PaginatedFavoriteProducts.js +24 -21
- package/favorite/src/models/PaginatedObject.d.ts +5 -1
- package/favorite/src/models/PaginatedObject.js +15 -9
- package/favorite/src/models/PagingMetadata.d.ts +4 -0
- package/favorite/src/models/PagingMetadata.js +23 -11
- package/favorite/src/models/ProductLink.d.ts +13 -4
- package/favorite/src/models/ProductLink.js +30 -23
- package/favorite/src/models/ProductStatus.d.ts +8 -7
- package/favorite/src/models/ProductStatus.js +18 -9
- package/favorite/src/models/RestError.d.ts +66 -58
- package/favorite/src/models/RestError.js +73 -67
- package/favorite/src/models/UserLink.d.ts +11 -2
- package/favorite/src/models/UserLink.js +23 -21
- package/favorite/src/models/index.d.ts +0 -3
- package/favorite/src/models/index.js +2 -3
- package/favorite/src/runtime.d.ts +72 -31
- package/favorite/src/runtime.js +291 -164
- package/geo/src/apis/SearchCountryApi.d.ts +6 -6
- package/geo/src/apis/SearchCountryApi.js +30 -31
- package/geo/src/apis/index.js +2 -0
- package/geo/src/index.d.ts +2 -2
- package/geo/src/index.js +4 -2
- package/geo/src/models/Country.d.ts +4 -0
- package/geo/src/models/Country.js +17 -9
- package/geo/src/models/index.js +2 -0
- package/geo/src/runtime.d.ts +72 -31
- package/geo/src/runtime.js +291 -164
- package/inventory/src/apis/ManageInventoryApi.d.ts +16 -28
- package/inventory/src/apis/ManageInventoryApi.js +126 -210
- package/inventory/src/apis/SearchInventoryApi.d.ts +130 -123
- package/inventory/src/apis/SearchInventoryApi.js +469 -479
- package/inventory/src/apis/index.js +2 -0
- package/inventory/src/index.d.ts +2 -2
- package/inventory/src/index.js +4 -2
- package/inventory/src/models/ActiveProduct.d.ts +15 -4
- package/inventory/src/models/ActiveProduct.js +22 -16
- package/inventory/src/models/ActiveProductUpdateParameters.d.ts +8 -3
- package/inventory/src/models/ActiveProductUpdateParameters.js +14 -10
- package/inventory/src/models/Barcodes.d.ts +5 -0
- package/inventory/src/models/Barcodes.js +19 -16
- package/inventory/src/models/HttpLink.d.ts +4 -0
- package/inventory/src/models/HttpLink.js +14 -8
- package/inventory/src/models/Inventory.d.ts +63 -0
- package/inventory/src/models/Inventory.js +57 -0
- package/inventory/src/models/InventoryJournal.d.ts +31 -0
- package/inventory/src/models/InventoryJournal.js +45 -0
- package/inventory/src/models/MisalignedProduct.d.ts +11 -1
- package/inventory/src/models/MisalignedProduct.js +21 -16
- package/inventory/src/models/OverstockProduct.d.ts +15 -2
- package/inventory/src/models/OverstockProduct.js +38 -16
- package/inventory/src/models/OverstockProductUpdateParameters.d.ts +4 -0
- package/inventory/src/models/OverstockProductUpdateParameters.js +13 -10
- package/inventory/src/models/PaginatedActiveProducts.d.ts +13 -3
- package/inventory/src/models/PaginatedActiveProducts.js +24 -21
- package/inventory/src/models/PaginatedInventories.d.ts +39 -0
- package/inventory/src/models/PaginatedInventories.js +53 -0
- package/inventory/src/models/PaginatedMisalignedProducts.d.ts +13 -3
- package/inventory/src/models/PaginatedMisalignedProducts.js +24 -21
- package/inventory/src/models/PaginatedObject.d.ts +5 -1
- package/inventory/src/models/PaginatedObject.js +15 -9
- package/inventory/src/models/PaginatedOverstockProducts.d.ts +13 -3
- package/inventory/src/models/PaginatedOverstockProducts.js +24 -21
- package/inventory/src/models/PagingMetadata.d.ts +4 -0
- package/inventory/src/models/PagingMetadata.js +23 -11
- package/inventory/src/models/ProductLink.d.ts +12 -3
- package/inventory/src/models/ProductLink.js +25 -22
- package/inventory/src/models/RestError.d.ts +66 -58
- package/inventory/src/models/RestError.js +73 -67
- package/inventory/src/models/Statistics.d.ts +7 -3
- package/inventory/src/models/Statistics.js +18 -15
- package/inventory/src/models/StatisticsActiveProducts.d.ts +4 -0
- package/inventory/src/models/StatisticsActiveProducts.js +15 -12
- package/inventory/src/models/StatisticsMisalignedProducts.d.ts +4 -0
- package/inventory/src/models/StatisticsMisalignedProducts.js +13 -10
- package/inventory/src/models/StatisticsOverstockProducts.d.ts +4 -0
- package/inventory/src/models/StatisticsOverstockProducts.js +13 -10
- package/inventory/src/models/SynchronizationMode.d.ts +25 -0
- package/inventory/src/models/SynchronizationMode.js +48 -0
- package/inventory/src/models/index.d.ts +4 -7
- package/inventory/src/models/index.js +6 -7
- package/inventory/src/runtime.d.ts +72 -31
- package/inventory/src/runtime.js +291 -164
- package/invoice/src/apis/ManageInvoiceApi.d.ts +8 -8
- package/invoice/src/apis/ManageInvoiceApi.js +64 -68
- package/invoice/src/apis/ManageInvoiceLineApi.d.ts +8 -8
- package/invoice/src/apis/ManageInvoiceLineApi.js +54 -58
- package/invoice/src/apis/ManageInvoicesSummaryApi.d.ts +6 -6
- package/invoice/src/apis/ManageInvoicesSummaryApi.js +28 -30
- package/invoice/src/apis/SearchInvoiceApi.d.ts +23 -23
- package/invoice/src/apis/SearchInvoiceApi.js +91 -92
- package/invoice/src/apis/SearchInvoiceLineApi.d.ts +15 -15
- package/invoice/src/apis/SearchInvoiceLineApi.js +50 -53
- package/invoice/src/apis/SearchOrderTallyApi.d.ts +21 -21
- package/invoice/src/apis/SearchOrderTallyApi.js +86 -91
- package/invoice/src/apis/index.js +2 -0
- package/invoice/src/index.d.ts +2 -2
- package/invoice/src/index.js +4 -2
- package/invoice/src/models/HttpLink.d.ts +4 -0
- package/invoice/src/models/HttpLink.js +14 -8
- package/invoice/src/models/Invoice.d.ts +7 -3
- package/invoice/src/models/Invoice.js +36 -18
- package/invoice/src/models/InvoiceCreationParameters.d.ts +17 -2
- package/invoice/src/models/InvoiceCreationParameters.js +26 -3
- package/invoice/src/models/InvoiceSummaryCreationParameters.d.ts +4 -0
- package/invoice/src/models/InvoiceSummaryCreationParameters.js +22 -12
- package/invoice/src/models/InvoiceType.d.ts +17 -16
- package/invoice/src/models/InvoiceType.js +27 -18
- package/invoice/src/models/InvoiceUpdateParameters.d.ts +4 -0
- package/invoice/src/models/InvoiceUpdateParameters.js +15 -12
- package/invoice/src/models/OrderLink.d.ts +11 -2
- package/invoice/src/models/OrderLink.js +23 -22
- package/invoice/src/models/OrderTally.d.ts +7 -3
- package/invoice/src/models/OrderTally.js +33 -20
- package/invoice/src/models/PaginatedInvoices.d.ts +13 -3
- package/invoice/src/models/PaginatedInvoices.js +24 -21
- package/invoice/src/models/PaginatedObject.d.ts +5 -1
- package/invoice/src/models/PaginatedObject.js +15 -9
- package/invoice/src/models/PaginatedOrderTallies.d.ts +13 -3
- package/invoice/src/models/PaginatedOrderTallies.js +24 -21
- package/invoice/src/models/PaginatedPlannedInvoiceLine.d.ts +13 -3
- package/invoice/src/models/PaginatedPlannedInvoiceLine.js +24 -21
- package/invoice/src/models/PagingMetadata.d.ts +4 -0
- package/invoice/src/models/PagingMetadata.js +23 -11
- package/invoice/src/models/PlannedInvoiceLine.d.ts +7 -3
- package/invoice/src/models/PlannedInvoiceLine.js +28 -14
- package/invoice/src/models/PlannedInvoiceLineCreationParameters.d.ts +4 -0
- package/invoice/src/models/PlannedInvoiceLineCreationParameters.js +20 -10
- package/invoice/src/models/RestError.d.ts +66 -58
- package/invoice/src/models/RestError.js +73 -67
- package/invoice/src/models/UserLink.d.ts +12 -3
- package/invoice/src/models/UserLink.js +25 -22
- package/invoice/src/models/UserLinkAllOfCompany.d.ts +4 -0
- package/invoice/src/models/UserLinkAllOfCompany.js +13 -10
- package/invoice/src/models/index.d.ts +0 -5
- package/invoice/src/models/index.js +2 -5
- package/invoice/src/runtime.d.ts +72 -31
- package/invoice/src/runtime.js +291 -164
- package/laboratory/src/apis/ManageLaboratoryApi.d.ts +8 -6
- package/laboratory/src/apis/ManageLaboratoryApi.js +32 -32
- package/laboratory/src/apis/SearchLaboratoryApi.d.ts +17 -15
- package/laboratory/src/apis/SearchLaboratoryApi.js +74 -77
- package/laboratory/src/apis/index.js +2 -0
- package/laboratory/src/index.d.ts +2 -2
- package/laboratory/src/index.js +4 -2
- package/laboratory/src/models/Laboratory.d.ts +4 -0
- package/laboratory/src/models/Laboratory.js +15 -12
- package/laboratory/src/models/LaboratoryCreationParameters.d.ts +4 -0
- package/laboratory/src/models/LaboratoryCreationParameters.js +14 -8
- package/laboratory/src/models/PaginatedLaboratories.d.ts +13 -3
- package/laboratory/src/models/PaginatedLaboratories.js +24 -21
- package/laboratory/src/models/PaginatedObject.d.ts +5 -1
- package/laboratory/src/models/PaginatedObject.js +15 -9
- package/laboratory/src/models/PagingMetadata.d.ts +4 -0
- package/laboratory/src/models/PagingMetadata.js +23 -11
- package/laboratory/src/models/index.d.ts +0 -1
- package/laboratory/src/models/index.js +2 -1
- package/laboratory/src/runtime.d.ts +72 -31
- package/laboratory/src/runtime.js +291 -164
- package/laboratory-store/src/apis/ManageLaboratoryStoreApi.d.ts +8 -8
- package/laboratory-store/src/apis/ManageLaboratoryStoreApi.js +56 -59
- package/laboratory-store/src/apis/ManageLaboratoryStoreImageApi.d.ts +14 -14
- package/laboratory-store/src/apis/ManageLaboratoryStoreImageApi.js +118 -134
- package/laboratory-store/src/apis/SearchLaboratoryStoreApi.d.ts +25 -25
- package/laboratory-store/src/apis/SearchLaboratoryStoreApi.js +83 -90
- package/laboratory-store/src/apis/index.js +2 -0
- package/laboratory-store/src/index.d.ts +2 -2
- package/laboratory-store/src/index.js +4 -2
- package/laboratory-store/src/models/DisplayType.d.ts +6 -5
- package/laboratory-store/src/models/DisplayType.js +16 -7
- package/laboratory-store/src/models/HttpLink.d.ts +4 -0
- package/laboratory-store/src/models/HttpLink.js +14 -8
- package/laboratory-store/src/models/Image.d.ts +5 -1
- package/laboratory-store/src/models/Image.js +15 -12
- package/laboratory-store/src/models/ImageVersions.d.ts +4 -0
- package/laboratory-store/src/models/ImageVersions.js +24 -19
- package/laboratory-store/src/models/LaboratoryStore.d.ts +7 -3
- package/laboratory-store/src/models/LaboratoryStore.js +38 -35
- package/laboratory-store/src/models/LaboratoryStoreCreationParameters.d.ts +67 -2
- package/laboratory-store/src/models/LaboratoryStoreCreationParameters.js +44 -3
- package/laboratory-store/src/models/LaboratoryStoreUpdateParameters.d.ts +6 -2
- package/laboratory-store/src/models/LaboratoryStoreUpdateParameters.js +31 -28
- package/laboratory-store/src/models/LaboratoryType.d.ts +9 -8
- package/laboratory-store/src/models/LaboratoryType.js +19 -10
- package/laboratory-store/src/models/OwnerLink.d.ts +11 -2
- package/laboratory-store/src/models/OwnerLink.js +23 -22
- package/laboratory-store/src/models/PaginatedLaboratoryStores.d.ts +13 -3
- package/laboratory-store/src/models/PaginatedLaboratoryStores.js +22 -22
- package/laboratory-store/src/models/PaginatedObject.d.ts +5 -1
- package/laboratory-store/src/models/PaginatedObject.js +15 -9
- package/laboratory-store/src/models/PagingMetadata.d.ts +4 -0
- package/laboratory-store/src/models/PagingMetadata.js +23 -11
- package/laboratory-store/src/models/RestError.d.ts +66 -58
- package/laboratory-store/src/models/RestError.js +73 -67
- package/laboratory-store/src/models/index.d.ts +0 -3
- package/laboratory-store/src/models/index.js +2 -3
- package/laboratory-store/src/runtime.d.ts +72 -31
- package/laboratory-store/src/runtime.js +291 -164
- package/laboratory-store-log/src/apis/SearchLaboratoryStoreLogApi.d.ts +15 -13
- package/laboratory-store-log/src/apis/SearchLaboratoryStoreLogApi.js +52 -53
- package/laboratory-store-log/src/apis/index.js +2 -0
- package/laboratory-store-log/src/index.d.ts +2 -2
- package/laboratory-store-log/src/index.js +4 -2
- package/laboratory-store-log/src/models/AnyLaboratoryStoreLog.d.ts +2 -1
- package/laboratory-store-log/src/models/AnyLaboratoryStoreLog.js +4 -18
- package/laboratory-store-log/src/models/HttpLink.d.ts +4 -0
- package/laboratory-store-log/src/models/HttpLink.js +14 -8
- package/laboratory-store-log/src/models/LaboratoryStoreLink.d.ts +11 -2
- package/laboratory-store-log/src/models/LaboratoryStoreLink.js +23 -21
- package/laboratory-store-log/src/models/LaboratoryStoreLog.d.ts +24 -3
- package/laboratory-store-log/src/models/LaboratoryStoreLog.js +35 -21
- package/laboratory-store-log/src/models/Log.d.ts +4 -0
- package/laboratory-store-log/src/models/Log.js +21 -11
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogs.d.ts +13 -3
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogs.js +24 -21
- package/laboratory-store-log/src/models/PaginatedObject.d.ts +5 -1
- package/laboratory-store-log/src/models/PaginatedObject.js +15 -9
- package/laboratory-store-log/src/models/PagingMetadata.d.ts +4 -0
- package/laboratory-store-log/src/models/PagingMetadata.js +23 -11
- package/laboratory-store-log/src/models/index.d.ts +0 -3
- package/laboratory-store-log/src/models/index.js +2 -3
- package/laboratory-store-log/src/runtime.d.ts +72 -31
- package/laboratory-store-log/src/runtime.js +291 -164
- package/lexicon/src/apis/ManageLexiconApi.d.ts +8 -8
- package/lexicon/src/apis/ManageLexiconApi.js +54 -58
- package/lexicon/src/apis/SearchLexiconApi.d.ts +12 -12
- package/lexicon/src/apis/SearchLexiconApi.js +109 -114
- package/lexicon/src/apis/index.js +2 -0
- package/lexicon/src/index.d.ts +2 -2
- package/lexicon/src/index.js +4 -2
- package/lexicon/src/models/PaginatedObject.d.ts +5 -1
- package/lexicon/src/models/PaginatedObject.js +15 -9
- package/lexicon/src/models/PaginatedTags.d.ts +13 -3
- package/lexicon/src/models/PaginatedTags.js +24 -21
- package/lexicon/src/models/PagingMetadata.d.ts +4 -0
- package/lexicon/src/models/PagingMetadata.js +23 -11
- package/lexicon/src/models/PharmacyGroup.d.ts +6 -2
- package/lexicon/src/models/PharmacyGroup.js +15 -12
- package/lexicon/src/models/PharmacyLocation.d.ts +6 -2
- package/lexicon/src/models/PharmacyLocation.js +15 -12
- package/lexicon/src/models/PharmacySoftware.d.ts +6 -2
- package/lexicon/src/models/PharmacySoftware.js +15 -12
- package/lexicon/src/models/RestError.d.ts +66 -58
- package/lexicon/src/models/RestError.js +73 -67
- package/lexicon/src/models/Tag.d.ts +4 -0
- package/lexicon/src/models/Tag.js +15 -12
- package/lexicon/src/models/TagCreationParameters.d.ts +4 -0
- package/lexicon/src/models/TagCreationParameters.js +13 -10
- package/lexicon/src/models/index.d.ts +0 -1
- package/lexicon/src/models/index.js +2 -1
- package/lexicon/src/runtime.d.ts +72 -31
- package/lexicon/src/runtime.js +291 -164
- package/litigation/src/apis/ManageLitigationApi.d.ts +6 -6
- package/litigation/src/apis/ManageLitigationApi.js +28 -30
- package/litigation/src/apis/index.js +2 -0
- package/litigation/src/index.d.ts +2 -2
- package/litigation/src/index.js +4 -2
- package/litigation/src/models/LitigationCreationParameters.d.ts +4 -0
- package/litigation/src/models/LitigationCreationParameters.js +23 -11
- package/litigation/src/models/RestError.d.ts +66 -58
- package/litigation/src/models/RestError.js +73 -67
- package/litigation/src/models/index.js +2 -0
- package/litigation/src/runtime.d.ts +72 -31
- package/litigation/src/runtime.js +291 -164
- package/magic-cart/src/apis/ManageExpressOrderApi.d.ts +6 -6
- package/magic-cart/src/apis/ManageExpressOrderApi.js +29 -30
- package/magic-cart/src/apis/index.js +2 -0
- package/magic-cart/src/index.d.ts +2 -2
- package/magic-cart/src/index.js +4 -2
- package/magic-cart/src/models/AnyIdentifiedDistributionMode.d.ts +6 -5
- package/magic-cart/src/models/AnyIdentifiedDistributionMode.js +9 -23
- package/magic-cart/src/models/Barcodes.d.ts +5 -0
- package/magic-cart/src/models/Barcodes.js +19 -16
- package/magic-cart/src/models/DistributionMode.d.ts +8 -1
- package/magic-cart/src/models/DistributionMode.js +20 -10
- package/magic-cart/src/models/DistributionRange.d.ts +4 -0
- package/magic-cart/src/models/DistributionRange.js +20 -10
- package/magic-cart/src/models/ExpressOrder.d.ts +5 -1
- package/magic-cart/src/models/ExpressOrder.js +15 -12
- package/magic-cart/src/models/ExpressOrderCreationParameters.d.ts +5 -1
- package/magic-cart/src/models/ExpressOrderCreationParameters.js +18 -13
- package/magic-cart/src/models/ExpressOrderNeed.d.ts +4 -0
- package/magic-cart/src/models/ExpressOrderNeed.js +21 -14
- package/magic-cart/src/models/HttpLink.d.ts +4 -0
- package/magic-cart/src/models/HttpLink.js +14 -8
- package/magic-cart/src/models/IdentifiedDistributionRange.d.ts +23 -2
- package/magic-cart/src/models/IdentifiedDistributionRange.js +35 -21
- package/magic-cart/src/models/IdentifiedRangeDistributionMode.d.ts +27 -3
- package/magic-cart/src/models/IdentifiedRangeDistributionMode.js +31 -21
- package/magic-cart/src/models/ProductLink.d.ts +13 -4
- package/magic-cart/src/models/ProductLink.js +36 -22
- package/magic-cart/src/models/ProductStorageType.d.ts +8 -7
- package/magic-cart/src/models/ProductStorageType.js +18 -9
- package/magic-cart/src/models/QuotationDistributionMode.d.ts +26 -2
- package/magic-cart/src/models/QuotationDistributionMode.js +31 -21
- package/magic-cart/src/models/SaleOfferLink.d.ts +13 -4
- package/magic-cart/src/models/SaleOfferLink.js +33 -22
- package/magic-cart/src/models/SaleOfferProposal.d.ts +7 -3
- package/magic-cart/src/models/SaleOfferProposal.js +25 -13
- package/magic-cart/src/models/SellerProposal.d.ts +6 -2
- package/magic-cart/src/models/SellerProposal.js +23 -13
- package/magic-cart/src/models/Stock.d.ts +4 -0
- package/magic-cart/src/models/Stock.js +17 -13
- package/magic-cart/src/models/UnitaryDistributionMode.d.ts +26 -2
- package/magic-cart/src/models/UnitaryDistributionMode.js +35 -21
- package/magic-cart/src/models/UserLink.d.ts +11 -2
- package/magic-cart/src/models/UserLink.js +27 -21
- package/magic-cart/src/models/index.d.ts +0 -7
- package/magic-cart/src/models/index.js +2 -7
- package/magic-cart/src/runtime.d.ts +72 -31
- package/magic-cart/src/runtime.js +291 -164
- package/mandate/src/apis/ManageMandatesApi.d.ts +12 -12
- package/mandate/src/apis/ManageMandatesApi.js +100 -108
- package/mandate/src/apis/index.js +2 -0
- package/mandate/src/index.d.ts +2 -2
- package/mandate/src/index.js +4 -2
- package/mandate/src/models/Challenge.d.ts +5 -1
- package/mandate/src/models/Challenge.js +15 -12
- package/mandate/src/models/ChallengeAction.d.ts +11 -7
- package/mandate/src/models/ChallengeAction.js +19 -18
- package/mandate/src/models/Mandate.d.ts +15 -11
- package/mandate/src/models/Mandate.js +29 -28
- package/mandate/src/models/MandateChallenge.d.ts +18 -2
- package/mandate/src/models/MandateChallenge.js +24 -21
- package/mandate/src/models/MandateChallengeCreationParameters.d.ts +4 -0
- package/mandate/src/models/MandateChallengeCreationParameters.js +14 -8
- package/mandate/src/models/MandateCreationParameters.d.ts +4 -0
- package/mandate/src/models/MandateCreationParameters.js +15 -12
- package/mandate/src/models/index.d.ts +0 -1
- package/mandate/src/models/index.js +2 -1
- package/mandate/src/runtime.d.ts +72 -31
- package/mandate/src/runtime.js +291 -164
- package/mangopay-hook/src/apis/MangopayHookApi.d.ts +7 -5
- package/mangopay-hook/src/apis/MangopayHookApi.js +20 -18
- package/mangopay-hook/src/apis/index.js +2 -0
- package/mangopay-hook/src/index.d.ts +2 -2
- package/mangopay-hook/src/index.js +4 -2
- package/mangopay-hook/src/models/RestError.d.ts +66 -58
- package/mangopay-hook/src/models/RestError.js +73 -67
- package/mangopay-hook/src/models/index.js +2 -0
- package/mangopay-hook/src/runtime.d.ts +72 -31
- package/mangopay-hook/src/runtime.js +291 -164
- package/message/src/apis/ManageMessageApi.d.ts +24 -14
- package/message/src/apis/ManageMessageApi.js +146 -146
- package/message/src/apis/SearchMessageApi.d.ts +23 -19
- package/message/src/apis/SearchMessageApi.js +106 -109
- package/message/src/apis/index.js +2 -0
- package/message/src/index.d.ts +2 -2
- package/message/src/index.js +4 -2
- package/message/src/models/HttpLink.d.ts +4 -0
- package/message/src/models/HttpLink.js +14 -8
- package/message/src/models/Message.d.ts +5 -1
- package/message/src/models/Message.js +27 -13
- package/message/src/models/MessageCreationParameters.d.ts +4 -0
- package/message/src/models/MessageCreationParameters.js +20 -10
- package/message/src/models/MessageUpdateParameters.d.ts +4 -0
- package/message/src/models/MessageUpdateParameters.js +17 -14
- package/message/src/models/MessageViewerCreationParameters.d.ts +4 -0
- package/message/src/models/MessageViewerCreationParameters.js +13 -10
- package/message/src/models/PaginatedMessages.d.ts +13 -3
- package/message/src/models/PaginatedMessages.js +24 -21
- package/message/src/models/PaginatedObject.d.ts +5 -1
- package/message/src/models/PaginatedObject.js +15 -9
- package/message/src/models/PagingMetadata.d.ts +4 -0
- package/message/src/models/PagingMetadata.js +23 -11
- package/message/src/models/ViewerLink.d.ts +11 -2
- package/message/src/models/ViewerLink.js +27 -21
- package/message/src/models/index.d.ts +0 -2
- package/message/src/models/index.js +2 -2
- package/message/src/runtime.d.ts +72 -31
- package/message/src/runtime.js +291 -164
- package/notification/src/apis/ManageNotificationApi.d.ts +8 -8
- package/notification/src/apis/ManageNotificationApi.js +61 -65
- package/notification/src/apis/ManageNotificationTypeApi.d.ts +11 -11
- package/notification/src/apis/ManageNotificationTypeApi.js +90 -100
- package/notification/src/apis/SearchNotificationApi.d.ts +17 -15
- package/notification/src/apis/SearchNotificationApi.js +76 -79
- package/notification/src/apis/SearchNotificationTypeApi.d.ts +21 -21
- package/notification/src/apis/SearchNotificationTypeApi.js +102 -109
- package/notification/src/apis/index.js +2 -0
- package/notification/src/index.d.ts +2 -2
- package/notification/src/index.js +4 -2
- package/notification/src/models/HttpLink.d.ts +4 -0
- package/notification/src/models/HttpLink.js +14 -8
- package/notification/src/models/Notification.d.ts +6 -2
- package/notification/src/models/Notification.js +30 -27
- package/notification/src/models/NotificationType.d.ts +6 -2
- package/notification/src/models/NotificationType.js +29 -26
- package/notification/src/models/NotificationTypeAttachment.d.ts +4 -0
- package/notification/src/models/NotificationTypeAttachment.js +23 -20
- package/notification/src/models/NotificationTypeId.d.ts +52 -51
- package/notification/src/models/NotificationTypeId.js +62 -53
- package/notification/src/models/NotificationTypeUpdateParameters.d.ts +4 -0
- package/notification/src/models/NotificationTypeUpdateParameters.js +23 -20
- package/notification/src/models/NotificationUpdateParameters.d.ts +4 -0
- package/notification/src/models/NotificationUpdateParameters.js +15 -12
- package/notification/src/models/PaginatedNotificationTypes.d.ts +13 -3
- package/notification/src/models/PaginatedNotificationTypes.js +22 -22
- package/notification/src/models/PaginatedNotifications.d.ts +13 -3
- package/notification/src/models/PaginatedNotifications.js +22 -22
- package/notification/src/models/PaginatedObject.d.ts +5 -1
- package/notification/src/models/PaginatedObject.js +15 -9
- package/notification/src/models/PagingMetadata.d.ts +4 -0
- package/notification/src/models/PagingMetadata.js +23 -11
- package/notification/src/models/RestError.d.ts +66 -58
- package/notification/src/models/RestError.js +73 -67
- package/notification/src/models/index.d.ts +0 -3
- package/notification/src/models/index.js +2 -3
- package/notification/src/runtime.d.ts +72 -31
- package/notification/src/runtime.js +291 -164
- package/order/src/apis/ManageFreeCarriageCouponApi.d.ts +8 -8
- package/order/src/apis/ManageFreeCarriageCouponApi.js +54 -58
- package/order/src/apis/ManageMetaOrderApi.d.ts +8 -8
- package/order/src/apis/ManageMetaOrderApi.js +57 -61
- package/order/src/apis/ManageOrderApi.d.ts +20 -20
- package/order/src/apis/ManageOrderApi.js +228 -244
- package/order/src/apis/ManageOrderItemApi.d.ts +20 -20
- package/order/src/apis/ManageOrderItemApi.js +233 -249
- package/order/src/apis/SearchFreeCarriageCouponApi.d.ts +13 -13
- package/order/src/apis/SearchFreeCarriageCouponApi.js +56 -59
- package/order/src/apis/SearchOrderApi.d.ts +39 -35
- package/order/src/apis/SearchOrderApi.js +177 -177
- package/order/src/apis/SearchOrderItemApi.d.ts +64 -58
- package/order/src/apis/SearchOrderItemApi.js +188 -200
- package/order/src/apis/index.js +2 -0
- package/order/src/index.d.ts +2 -2
- package/order/src/index.js +4 -2
- package/order/src/models/Address.d.ts +4 -0
- package/order/src/models/Address.js +19 -16
- package/order/src/models/Anomalies.d.ts +4 -0
- package/order/src/models/Anomalies.js +19 -16
- package/order/src/models/AnomaliesUpdateParameters.d.ts +29 -2
- package/order/src/models/AnomaliesUpdateParameters.js +26 -3
- package/order/src/models/AnyMetaOrderWarning.d.ts +3 -2
- package/order/src/models/AnyMetaOrderWarning.js +5 -19
- package/order/src/models/Barcodes.d.ts +5 -0
- package/order/src/models/Barcodes.js +19 -16
- package/order/src/models/FreeCarriageCoupon.d.ts +5 -1
- package/order/src/models/FreeCarriageCoupon.js +46 -25
- package/order/src/models/FreeCarriageCouponCreationParameters.d.ts +4 -0
- package/order/src/models/FreeCarriageCouponCreationParameters.js +29 -18
- package/order/src/models/FreeCarriageCouponOwnerLink.d.ts +11 -2
- package/order/src/models/FreeCarriageCouponOwnerLink.js +23 -21
- package/order/src/models/HttpLink.d.ts +4 -0
- package/order/src/models/HttpLink.js +14 -8
- package/order/src/models/MetaOrder.d.ts +7 -3
- package/order/src/models/MetaOrder.js +34 -18
- package/order/src/models/MetaOrderCreationParameters.d.ts +5 -1
- package/order/src/models/MetaOrderCreationParameters.js +18 -10
- package/order/src/models/MetaOrderCreationSubCartParameters.d.ts +4 -0
- package/order/src/models/MetaOrderCreationSubCartParameters.js +14 -8
- package/order/src/models/MetaOrderPrices.d.ts +4 -0
- package/order/src/models/MetaOrderPrices.js +38 -16
- package/order/src/models/MetaOrderWarning.d.ts +4 -0
- package/order/src/models/MetaOrderWarning.js +14 -8
- package/order/src/models/MetaOrderWithWarnings.d.ts +6 -2
- package/order/src/models/MetaOrderWithWarnings.js +15 -12
- package/order/src/models/Order.d.ts +20 -12
- package/order/src/models/Order.js +140 -74
- package/order/src/models/OrderAddedItem.d.ts +68 -2
- package/order/src/models/OrderAddedItem.js +41 -3
- package/order/src/models/OrderItem.d.ts +7 -3
- package/order/src/models/OrderItem.js +32 -29
- package/order/src/models/OrderItemPrices.d.ts +4 -0
- package/order/src/models/OrderItemPrices.js +21 -18
- package/order/src/models/OrderItemRefundedCreationParameters.d.ts +4 -0
- package/order/src/models/OrderItemRefundedCreationParameters.js +19 -12
- package/order/src/models/OrderItemUpdateParameters.d.ts +4 -0
- package/order/src/models/OrderItemUpdateParameters.js +14 -8
- package/order/src/models/OrderItemWarning.d.ts +22 -13
- package/order/src/models/OrderItemWarning.js +47 -34
- package/order/src/models/OrderItemsOperation.d.ts +12 -7
- package/order/src/models/OrderItemsOperation.js +22 -9
- package/order/src/models/OrderJournal.d.ts +14 -3
- package/order/src/models/OrderJournal.js +36 -27
- package/order/src/models/OrderPrices.d.ts +4 -0
- package/order/src/models/OrderPrices.js +29 -26
- package/order/src/models/OrderRefundedItem.d.ts +68 -2
- package/order/src/models/OrderRefundedItem.js +41 -3
- package/order/src/models/OrderRefundedItemUpdateParameters.d.ts +11 -2
- package/order/src/models/OrderRefundedItemUpdateParameters.js +22 -3
- package/order/src/models/OrderRemovedItem.d.ts +68 -2
- package/order/src/models/OrderRemovedItem.js +41 -3
- package/order/src/models/OrderRemovedItemUpdateParameters.d.ts +11 -2
- package/order/src/models/OrderRemovedItemUpdateParameters.js +22 -3
- package/order/src/models/OrderStatus.d.ts +19 -18
- package/order/src/models/OrderStatus.js +29 -20
- package/order/src/models/OrderStatusReason.d.ts +7 -6
- package/order/src/models/OrderStatusReason.js +17 -8
- package/order/src/models/OrderStorageType.d.ts +8 -7
- package/order/src/models/OrderStorageType.js +18 -9
- package/order/src/models/OrderThreads.d.ts +5 -1
- package/order/src/models/OrderThreads.js +13 -10
- package/order/src/models/OrderType.d.ts +6 -5
- package/order/src/models/OrderType.js +16 -7
- package/order/src/models/OrderUpdateParameters.d.ts +6 -2
- package/order/src/models/OrderUpdateParameters.js +19 -16
- package/order/src/models/OrderWarning.d.ts +19 -10
- package/order/src/models/OrderWarning.js +34 -30
- package/order/src/models/PaginatedFreeCarriageCoupons.d.ts +13 -3
- package/order/src/models/PaginatedFreeCarriageCoupons.js +24 -21
- package/order/src/models/PaginatedObject.d.ts +5 -1
- package/order/src/models/PaginatedObject.js +15 -9
- package/order/src/models/PaginatedOrders.d.ts +13 -3
- package/order/src/models/PaginatedOrders.js +24 -21
- package/order/src/models/PagingMetadata.d.ts +4 -0
- package/order/src/models/PagingMetadata.js +23 -11
- package/order/src/models/ProductLink.d.ts +13 -4
- package/order/src/models/ProductLink.js +28 -23
- package/order/src/models/ProductStorageType.d.ts +8 -7
- package/order/src/models/ProductStorageType.js +18 -9
- package/order/src/models/Reservation.d.ts +12 -4
- package/order/src/models/Reservation.js +25 -22
- package/order/src/models/ReservationUpdateParameters.d.ts +4 -0
- package/order/src/models/ReservationUpdateParameters.js +13 -10
- package/order/src/models/RestError.d.ts +66 -58
- package/order/src/models/RestError.js +73 -67
- package/order/src/models/SaleOfferLink.d.ts +11 -2
- package/order/src/models/SaleOfferLink.js +23 -21
- package/order/src/models/ShoppedOffer.d.ts +4 -0
- package/order/src/models/ShoppedOffer.js +19 -12
- package/order/src/models/ThreadLink.d.ts +11 -2
- package/order/src/models/ThreadLink.js +23 -21
- package/order/src/models/UpdateOrderStatusParameters.d.ts +12 -11
- package/order/src/models/UpdateOrderStatusParameters.js +22 -13
- package/order/src/models/UserLink.d.ts +12 -3
- package/order/src/models/UserLink.js +39 -22
- package/order/src/models/UserLinkAllOfCompany.d.ts +4 -0
- package/order/src/models/UserLinkAllOfCompany.js +13 -10
- package/order/src/models/index.d.ts +0 -9
- package/order/src/models/index.js +2 -9
- package/order/src/runtime.d.ts +72 -31
- package/order/src/runtime.js +291 -164
- package/order-log/src/apis/SearchOrderLogApi.d.ts +15 -13
- package/order-log/src/apis/SearchOrderLogApi.js +52 -53
- package/order-log/src/apis/index.js +2 -0
- package/order-log/src/index.d.ts +2 -2
- package/order-log/src/index.js +4 -2
- package/order-log/src/models/AnyOrderLog.d.ts +2 -1
- package/order-log/src/models/AnyOrderLog.js +4 -18
- package/order-log/src/models/HttpLink.d.ts +4 -0
- package/order-log/src/models/HttpLink.js +14 -8
- package/order-log/src/models/Log.d.ts +4 -0
- package/order-log/src/models/Log.js +21 -11
- package/order-log/src/models/OrderLink.d.ts +11 -2
- package/order-log/src/models/OrderLink.js +23 -21
- package/order-log/src/models/OrderLog.d.ts +25 -4
- package/order-log/src/models/OrderLog.js +48 -22
- package/order-log/src/models/OrderStatusReason.d.ts +7 -6
- package/order-log/src/models/OrderStatusReason.js +17 -8
- package/order-log/src/models/PaginatedObject.d.ts +5 -1
- package/order-log/src/models/PaginatedObject.js +15 -9
- package/order-log/src/models/PaginatedOrderLogs.d.ts +13 -3
- package/order-log/src/models/PaginatedOrderLogs.js +24 -21
- package/order-log/src/models/PagingMetadata.d.ts +4 -0
- package/order-log/src/models/PagingMetadata.js +23 -11
- package/order-log/src/models/index.d.ts +0 -3
- package/order-log/src/models/index.js +2 -3
- package/order-log/src/runtime.d.ts +72 -31
- package/order-log/src/runtime.js +291 -164
- package/outrage-message/src/apis/ManageOutrageMessageApi.d.ts +16 -10
- package/outrage-message/src/apis/ManageOutrageMessageApi.js +89 -89
- package/outrage-message/src/apis/SearchOutrageMessageApi.d.ts +17 -17
- package/outrage-message/src/apis/SearchOutrageMessageApi.js +72 -77
- package/outrage-message/src/apis/index.js +2 -0
- package/outrage-message/src/index.d.ts +2 -2
- package/outrage-message/src/index.js +4 -2
- package/outrage-message/src/models/OutrageMessage.d.ts +4 -0
- package/outrage-message/src/models/OutrageMessage.js +21 -18
- package/outrage-message/src/models/OutrageMessageCreationParameters.d.ts +4 -0
- package/outrage-message/src/models/OutrageMessageCreationParameters.js +17 -9
- package/outrage-message/src/models/OutrageMessageUpdateParameters.d.ts +4 -0
- package/outrage-message/src/models/OutrageMessageUpdateParameters.js +15 -12
- package/outrage-message/src/models/PaginatedObject.d.ts +5 -1
- package/outrage-message/src/models/PaginatedObject.js +15 -9
- package/outrage-message/src/models/PaginatedOutrageMessages.d.ts +13 -3
- package/outrage-message/src/models/PaginatedOutrageMessages.js +22 -22
- package/outrage-message/src/models/PagingMetadata.d.ts +4 -0
- package/outrage-message/src/models/PagingMetadata.js +23 -11
- package/outrage-message/src/models/index.d.ts +0 -1
- package/outrage-message/src/models/index.js +2 -1
- package/outrage-message/src/runtime.d.ts +72 -31
- package/outrage-message/src/runtime.js +291 -164
- package/package.json +1 -1
- package/product/src/apis/ManageProductApi.d.ts +8 -8
- package/product/src/apis/ManageProductApi.js +63 -67
- package/product/src/apis/ManageProductImageApi.d.ts +8 -8
- package/product/src/apis/ManageProductImageApi.js +59 -62
- package/product/src/apis/ManageProductProscriptionApi.d.ts +8 -8
- package/product/src/apis/ManageProductProscriptionApi.js +57 -61
- package/product/src/apis/SearchProductApi.d.ts +31 -31
- package/product/src/apis/SearchProductApi.js +104 -109
- package/product/src/apis/SearchProductImageApi.d.ts +8 -8
- package/product/src/apis/SearchProductImageApi.js +58 -62
- package/product/src/apis/SearchProductMetadataApi.d.ts +12 -12
- package/product/src/apis/SearchProductMetadataApi.js +102 -110
- package/product/src/apis/SearchProductProscriptionApi.d.ts +15 -15
- package/product/src/apis/SearchProductProscriptionApi.js +44 -48
- package/product/src/apis/index.js +2 -0
- package/product/src/index.d.ts +2 -2
- package/product/src/index.js +4 -2
- package/product/src/models/Barcodes.d.ts +5 -0
- package/product/src/models/Barcodes.js +19 -16
- package/product/src/models/DataProvider.d.ts +9 -8
- package/product/src/models/DataProvider.js +19 -10
- package/product/src/models/HttpLink.d.ts +4 -0
- package/product/src/models/HttpLink.js +14 -8
- package/product/src/models/Image.d.ts +6 -2
- package/product/src/models/Image.js +19 -16
- package/product/src/models/ImageVersions.d.ts +4 -0
- package/product/src/models/ImageVersions.js +24 -19
- package/product/src/models/LaboratoryLink.d.ts +11 -2
- package/product/src/models/LaboratoryLink.js +23 -22
- package/product/src/models/PaginatedObject.d.ts +5 -1
- package/product/src/models/PaginatedObject.js +15 -9
- package/product/src/models/PaginatedProductProscriptions.d.ts +13 -3
- package/product/src/models/PaginatedProductProscriptions.js +24 -21
- package/product/src/models/PaginatedProducts.d.ts +13 -3
- package/product/src/models/PaginatedProducts.js +24 -21
- package/product/src/models/PagingMetadata.d.ts +4 -0
- package/product/src/models/PagingMetadata.js +23 -11
- package/product/src/models/Product.d.ts +17 -13
- package/product/src/models/Product.js +116 -58
- package/product/src/models/ProductCreationOrUpdateParameters.d.ts +9 -5
- package/product/src/models/ProductCreationOrUpdateParameters.js +52 -49
- package/product/src/models/ProductDispensationPlace.d.ts +6 -5
- package/product/src/models/ProductDispensationPlace.js +16 -7
- package/product/src/models/ProductJournal.d.ts +4 -0
- package/product/src/models/ProductJournal.js +15 -9
- package/product/src/models/ProductMarketStatus.d.ts +10 -9
- package/product/src/models/ProductMarketStatus.js +20 -11
- package/product/src/models/ProductProscription.d.ts +5 -1
- package/product/src/models/ProductProscription.js +19 -16
- package/product/src/models/ProductProscriptionCreationParameters.d.ts +4 -0
- package/product/src/models/ProductProscriptionCreationParameters.js +13 -10
- package/product/src/models/ProductSecondaryType.d.ts +4 -0
- package/product/src/models/ProductSecondaryType.js +15 -12
- package/product/src/models/ProductSource.d.ts +7 -3
- package/product/src/models/ProductSource.js +32 -18
- package/product/src/models/ProductSourceBcb.d.ts +4 -0
- package/product/src/models/ProductSourceBcb.js +18 -13
- package/product/src/models/ProductSourceFields.d.ts +6 -2
- package/product/src/models/ProductSourceFields.js +83 -43
- package/product/src/models/ProductSourceFieldsBarcodes.d.ts +5 -1
- package/product/src/models/ProductSourceFieldsBarcodes.js +27 -15
- package/product/src/models/ProductSourceMedipim.d.ts +4 -0
- package/product/src/models/ProductSourceMedipim.js +14 -8
- package/product/src/models/ProductStatus.d.ts +8 -7
- package/product/src/models/ProductStatus.js +18 -9
- package/product/src/models/ProductStorageType.d.ts +8 -7
- package/product/src/models/ProductStorageType.js +18 -9
- package/product/src/models/ProductType.d.ts +4 -0
- package/product/src/models/ProductType.js +15 -12
- package/product/src/models/RestError.d.ts +66 -58
- package/product/src/models/RestError.js +73 -67
- package/product/src/models/Statistics.d.ts +4 -0
- package/product/src/models/Statistics.js +13 -10
- package/product/src/models/Vat.d.ts +4 -0
- package/product/src/models/Vat.js +20 -10
- package/product/src/models/index.d.ts +0 -4
- package/product/src/models/index.js +2 -4
- package/product/src/runtime.d.ts +72 -31
- package/product/src/runtime.js +291 -164
- package/pub/src/apis/ManagePubApi.d.ts +12 -12
- package/pub/src/apis/ManagePubApi.js +107 -114
- package/pub/src/apis/ManagePubImageApi.d.ts +7 -7
- package/pub/src/apis/ManagePubImageApi.js +35 -41
- package/pub/src/apis/SearchPubApi.d.ts +47 -47
- package/pub/src/apis/SearchPubApi.js +143 -152
- package/pub/src/apis/index.js +2 -0
- package/pub/src/index.d.ts +2 -2
- package/pub/src/index.js +4 -2
- package/pub/src/models/HttpLink.d.ts +4 -0
- package/pub/src/models/HttpLink.js +14 -8
- package/pub/src/models/Image.d.ts +5 -1
- package/pub/src/models/Image.js +21 -11
- package/pub/src/models/ImageVersions.d.ts +4 -0
- package/pub/src/models/ImageVersions.js +24 -19
- package/pub/src/models/PaginatedObject.d.ts +5 -1
- package/pub/src/models/PaginatedObject.js +15 -9
- package/pub/src/models/PaginatedPubStatistics.d.ts +13 -3
- package/pub/src/models/PaginatedPubStatistics.js +24 -21
- package/pub/src/models/PaginatedPubs.d.ts +13 -3
- package/pub/src/models/PaginatedPubs.js +24 -21
- package/pub/src/models/PagingMetadata.d.ts +4 -0
- package/pub/src/models/PagingMetadata.js +23 -11
- package/pub/src/models/Pub.d.ts +10 -6
- package/pub/src/models/Pub.js +52 -35
- package/pub/src/models/PubClickCreationParameters.d.ts +4 -0
- package/pub/src/models/PubClickCreationParameters.js +14 -8
- package/pub/src/models/PubCreationParameters.d.ts +8 -4
- package/pub/src/models/PubCreationParameters.js +28 -17
- package/pub/src/models/PubLocationEnum.d.ts +7 -6
- package/pub/src/models/PubLocationEnum.js +17 -8
- package/pub/src/models/PubSchedule.d.ts +13 -3
- package/pub/src/models/PubSchedule.js +15 -12
- package/pub/src/models/PubStatistics.d.ts +5 -1
- package/pub/src/models/PubStatistics.js +17 -14
- package/pub/src/models/PubTimecard.d.ts +7 -1
- package/pub/src/models/PubTimecard.js +15 -12
- package/pub/src/models/PubUpdateParameters.d.ts +8 -4
- package/pub/src/models/PubUpdateParameters.js +24 -21
- package/pub/src/models/RestError.d.ts +66 -58
- package/pub/src/models/RestError.js +73 -67
- package/pub/src/models/UserLink.d.ts +12 -3
- package/pub/src/models/UserLink.js +25 -22
- package/pub/src/models/UserLinkAllOfCompany.d.ts +4 -0
- package/pub/src/models/UserLinkAllOfCompany.js +13 -10
- package/pub/src/models/index.d.ts +0 -4
- package/pub/src/models/index.js +2 -4
- package/pub/src/runtime.d.ts +72 -31
- package/pub/src/runtime.js +291 -164
- package/recommendation/src/apis/SearchFavoriteProductRecommendationApi.d.ts +15 -15
- package/recommendation/src/apis/SearchFavoriteProductRecommendationApi.js +50 -53
- package/recommendation/src/apis/SearchProductPriceRecommendationApi.d.ts +15 -15
- package/recommendation/src/apis/SearchProductPriceRecommendationApi.js +44 -47
- package/recommendation/src/apis/SearchProductRecommendationApi.d.ts +15 -15
- package/recommendation/src/apis/SearchProductRecommendationApi.js +49 -53
- package/recommendation/src/apis/index.js +2 -0
- package/recommendation/src/index.d.ts +2 -2
- package/recommendation/src/index.js +4 -2
- package/recommendation/src/models/FavoriteProductRecommendation.d.ts +12 -4
- package/recommendation/src/models/FavoriteProductRecommendation.js +25 -18
- package/recommendation/src/models/HttpLink.d.ts +4 -0
- package/recommendation/src/models/HttpLink.js +14 -8
- package/recommendation/src/models/PaginatedFavoriteProductRecommendations.d.ts +13 -3
- package/recommendation/src/models/PaginatedFavoriteProductRecommendations.js +24 -21
- package/recommendation/src/models/PaginatedObject.d.ts +5 -1
- package/recommendation/src/models/PaginatedObject.js +15 -9
- package/recommendation/src/models/PaginatedProductPriceRecommendations.d.ts +13 -3
- package/recommendation/src/models/PaginatedProductPriceRecommendations.js +24 -21
- package/recommendation/src/models/PaginatedProductRecommendations.d.ts +13 -3
- package/recommendation/src/models/PaginatedProductRecommendations.js +24 -21
- package/recommendation/src/models/PagingMetadata.d.ts +4 -0
- package/recommendation/src/models/PagingMetadata.js +23 -11
- package/recommendation/src/models/ProductLink.d.ts +11 -2
- package/recommendation/src/models/ProductLink.js +21 -22
- package/recommendation/src/models/ProductPriceRecommendation.d.ts +5 -1
- package/recommendation/src/models/ProductPriceRecommendation.js +23 -14
- package/recommendation/src/models/ProductRecommendation.d.ts +13 -4
- package/recommendation/src/models/ProductRecommendation.js +25 -18
- package/recommendation/src/models/ProductRecommendationType.d.ts +11 -7
- package/recommendation/src/models/ProductRecommendationType.js +21 -9
- package/recommendation/src/models/UserLink.d.ts +11 -2
- package/recommendation/src/models/UserLink.js +21 -22
- package/recommendation/src/models/index.d.ts +0 -5
- package/recommendation/src/models/index.js +2 -5
- package/recommendation/src/runtime.d.ts +72 -31
- package/recommendation/src/runtime.js +291 -164
- package/rfx/src/apis/ManageRfiApi.d.ts +6 -6
- package/rfx/src/apis/ManageRfiApi.js +41 -38
- package/rfx/src/apis/ManageRfilApi.d.ts +6 -6
- package/rfx/src/apis/ManageRfilApi.js +27 -28
- package/rfx/src/apis/ManageRfoiApi.d.ts +8 -8
- package/rfx/src/apis/ManageRfoiApi.js +59 -63
- package/rfx/src/apis/SearchRfoiApi.d.ts +21 -21
- package/rfx/src/apis/SearchRfoiApi.js +56 -59
- package/rfx/src/apis/index.js +2 -0
- package/rfx/src/index.d.ts +2 -2
- package/rfx/src/index.js +4 -2
- package/rfx/src/models/HttpLink.d.ts +4 -0
- package/rfx/src/models/HttpLink.js +14 -8
- package/rfx/src/models/OrderLink.d.ts +11 -2
- package/rfx/src/models/OrderLink.js +21 -22
- package/rfx/src/models/PaginatedObject.d.ts +5 -1
- package/rfx/src/models/PaginatedObject.js +15 -9
- package/rfx/src/models/PaginatedRfois.d.ts +13 -3
- package/rfx/src/models/PaginatedRfois.js +24 -21
- package/rfx/src/models/PagingMetadata.d.ts +4 -0
- package/rfx/src/models/PagingMetadata.js +23 -11
- package/rfx/src/models/RestError.d.ts +66 -58
- package/rfx/src/models/RestError.js +73 -67
- package/rfx/src/models/RfiCreationParameters.d.ts +7 -1
- package/rfx/src/models/RfiCreationParameters.js +21 -18
- package/rfx/src/models/RfilCreationParameters.d.ts +4 -0
- package/rfx/src/models/RfilCreationParameters.js +17 -9
- package/rfx/src/models/RfoCreationParameters.d.ts +4 -0
- package/rfx/src/models/RfoCreationParameters.js +14 -8
- package/rfx/src/models/Rfoi.d.ts +6 -2
- package/rfx/src/models/Rfoi.js +26 -23
- package/rfx/src/models/RfoiCreationParameters.d.ts +4 -0
- package/rfx/src/models/RfoiCreationParameters.js +14 -8
- package/rfx/src/models/RfoiUpdateParameters.d.ts +4 -0
- package/rfx/src/models/RfoiUpdateParameters.js +13 -10
- package/rfx/src/models/UserLink.d.ts +12 -3
- package/rfx/src/models/UserLink.js +25 -22
- package/rfx/src/models/UserLinkAllOfCompany.d.ts +4 -0
- package/rfx/src/models/UserLinkAllOfCompany.js +13 -10
- package/rfx/src/models/index.d.ts +0 -3
- package/rfx/src/models/index.js +2 -3
- package/rfx/src/runtime.d.ts +72 -31
- package/rfx/src/runtime.js +291 -164
- package/sale-offer/src/apis/ManageSaleOfferApi.d.ts +16 -16
- package/sale-offer/src/apis/ManageSaleOfferApi.js +173 -183
- package/sale-offer/src/apis/SearchSaleOfferApi.d.ts +58 -53
- package/sale-offer/src/apis/SearchSaleOfferApi.js +162 -162
- package/sale-offer/src/apis/index.js +2 -0
- package/sale-offer/src/index.d.ts +2 -2
- package/sale-offer/src/index.js +4 -2
- package/sale-offer/src/models/AnyDistributionMode.d.ts +6 -5
- package/sale-offer/src/models/AnyDistributionMode.js +9 -23
- package/sale-offer/src/models/AnyIdentifiedDistributionMode.d.ts +6 -5
- package/sale-offer/src/models/AnyIdentifiedDistributionMode.js +9 -23
- package/sale-offer/src/models/Barcodes.d.ts +5 -0
- package/sale-offer/src/models/Barcodes.js +19 -16
- package/sale-offer/src/models/DistributionMode.d.ts +8 -1
- package/sale-offer/src/models/DistributionMode.js +20 -10
- package/sale-offer/src/models/DistributionRange.d.ts +4 -0
- package/sale-offer/src/models/DistributionRange.js +20 -10
- package/sale-offer/src/models/HttpLink.d.ts +4 -0
- package/sale-offer/src/models/HttpLink.js +14 -8
- package/sale-offer/src/models/IdentifiedDistributionRange.d.ts +23 -2
- package/sale-offer/src/models/IdentifiedDistributionRange.js +35 -21
- package/sale-offer/src/models/IdentifiedRangeDistributionMode.d.ts +27 -3
- package/sale-offer/src/models/IdentifiedRangeDistributionMode.js +31 -21
- package/sale-offer/src/models/ImageVersions.d.ts +4 -0
- package/sale-offer/src/models/ImageVersions.js +24 -19
- package/sale-offer/src/models/Images.d.ts +5 -1
- package/sale-offer/src/models/Images.js +17 -14
- package/sale-offer/src/models/OwnerLink.d.ts +12 -3
- package/sale-offer/src/models/OwnerLink.js +25 -22
- package/sale-offer/src/models/OwnerLinkAllOfCompany.d.ts +4 -0
- package/sale-offer/src/models/OwnerLinkAllOfCompany.js +13 -10
- package/sale-offer/src/models/PaginatedObject.d.ts +5 -1
- package/sale-offer/src/models/PaginatedObject.js +15 -9
- package/sale-offer/src/models/PaginatedSaleOffers.d.ts +13 -3
- package/sale-offer/src/models/PaginatedSaleOffers.js +24 -21
- package/sale-offer/src/models/PagingMetadata.d.ts +4 -0
- package/sale-offer/src/models/PagingMetadata.js +23 -11
- package/sale-offer/src/models/ProductImageLink.d.ts +12 -3
- package/sale-offer/src/models/ProductImageLink.js +23 -22
- package/sale-offer/src/models/ProductLink.d.ts +12 -3
- package/sale-offer/src/models/ProductLink.js +25 -22
- package/sale-offer/src/models/QuotationDistributionMode.d.ts +26 -2
- package/sale-offer/src/models/QuotationDistributionMode.js +31 -21
- package/sale-offer/src/models/RangeDistributionMode.d.ts +27 -3
- package/sale-offer/src/models/RangeDistributionMode.js +31 -21
- package/sale-offer/src/models/RestError.d.ts +66 -58
- package/sale-offer/src/models/RestError.js +73 -67
- package/sale-offer/src/models/SaleOffer.d.ts +17 -11
- package/sale-offer/src/models/SaleOffer.js +78 -41
- package/sale-offer/src/models/SaleOfferCreationImagesParameters.d.ts +4 -0
- package/sale-offer/src/models/SaleOfferCreationImagesParameters.js +17 -14
- package/sale-offer/src/models/SaleOfferCreationParameters.d.ts +13 -4
- package/sale-offer/src/models/SaleOfferCreationParameters.js +28 -25
- package/sale-offer/src/models/SaleOfferJournal.d.ts +4 -0
- package/sale-offer/src/models/SaleOfferJournal.js +15 -9
- package/sale-offer/src/models/SaleOfferNewVersionParameters.d.ts +7 -3
- package/sale-offer/src/models/SaleOfferNewVersionParameters.js +22 -19
- package/sale-offer/src/models/SaleOfferStatisticLink.d.ts +14 -3
- package/sale-offer/src/models/SaleOfferStatisticLink.js +27 -22
- package/sale-offer/src/models/SaleOfferStatus.d.ts +11 -10
- package/sale-offer/src/models/SaleOfferStatus.js +21 -12
- package/sale-offer/src/models/SaleOfferStatusReason.d.ts +10 -9
- package/sale-offer/src/models/SaleOfferStatusReason.js +20 -11
- package/sale-offer/src/models/SaleOfferUpdateParameters.d.ts +13 -3
- package/sale-offer/src/models/SaleOfferUpdateParameters.js +15 -12
- package/sale-offer/src/models/SaleOfferUpdateParametersStock.d.ts +4 -0
- package/sale-offer/src/models/SaleOfferUpdateParametersStock.js +13 -10
- package/sale-offer/src/models/Stock.d.ts +4 -0
- package/sale-offer/src/models/Stock.js +17 -13
- package/sale-offer/src/models/UnitaryDistributionMode.d.ts +26 -2
- package/sale-offer/src/models/UnitaryDistributionMode.js +35 -21
- package/sale-offer/src/models/index.d.ts +0 -10
- package/sale-offer/src/models/index.js +2 -10
- package/sale-offer/src/runtime.d.ts +72 -31
- package/sale-offer/src/runtime.js +291 -164
- package/sale-offer-log/src/apis/SearchSaleOfferLogApi.d.ts +15 -13
- package/sale-offer-log/src/apis/SearchSaleOfferLogApi.js +52 -53
- package/sale-offer-log/src/apis/index.js +2 -0
- package/sale-offer-log/src/index.d.ts +2 -2
- package/sale-offer-log/src/index.js +4 -2
- package/sale-offer-log/src/models/AnySaleOfferLog.d.ts +2 -1
- package/sale-offer-log/src/models/AnySaleOfferLog.js +4 -18
- package/sale-offer-log/src/models/HttpLink.d.ts +4 -0
- package/sale-offer-log/src/models/HttpLink.js +14 -8
- package/sale-offer-log/src/models/Log.d.ts +4 -0
- package/sale-offer-log/src/models/Log.js +21 -11
- package/sale-offer-log/src/models/PaginatedObject.d.ts +5 -1
- package/sale-offer-log/src/models/PaginatedObject.js +15 -9
- package/sale-offer-log/src/models/PaginatedSaleOfferLogs.d.ts +13 -3
- package/sale-offer-log/src/models/PaginatedSaleOfferLogs.js +24 -21
- package/sale-offer-log/src/models/PagingMetadata.d.ts +4 -0
- package/sale-offer-log/src/models/PagingMetadata.js +23 -11
- package/sale-offer-log/src/models/SaleOfferLink.d.ts +11 -2
- package/sale-offer-log/src/models/SaleOfferLink.js +23 -21
- package/sale-offer-log/src/models/SaleOfferLog.d.ts +24 -3
- package/sale-offer-log/src/models/SaleOfferLog.js +35 -21
- package/sale-offer-log/src/models/index.d.ts +0 -3
- package/sale-offer-log/src/models/index.js +2 -3
- package/sale-offer-log/src/runtime.d.ts +72 -31
- package/sale-offer-log/src/runtime.js +291 -164
- package/servant/src/apis/ManageServantApi.d.ts +7 -5
- package/servant/src/apis/ManageServantApi.js +10 -8
- package/servant/src/apis/ManageTaskApi.d.ts +5 -5
- package/servant/src/apis/ManageTaskApi.js +27 -29
- package/servant/src/apis/SearchServantApi.d.ts +8 -6
- package/servant/src/apis/SearchServantApi.js +29 -29
- package/servant/src/apis/index.js +2 -0
- package/servant/src/index.d.ts +2 -2
- package/servant/src/index.js +4 -2
- package/servant/src/models/RestError.d.ts +66 -58
- package/servant/src/models/RestError.js +73 -67
- package/servant/src/models/Servant.d.ts +5 -1
- package/servant/src/models/Servant.js +26 -17
- package/servant/src/models/Task.d.ts +4 -0
- package/servant/src/models/Task.js +15 -12
- package/servant/src/models/index.js +2 -0
- package/servant/src/runtime.d.ts +72 -31
- package/servant/src/runtime.js +291 -164
- package/shipment/src/apis/ManageOrderCarriageApi.d.ts +6 -6
- package/shipment/src/apis/ManageOrderCarriageApi.js +33 -35
- package/shipment/src/apis/ManageShipmentApi.d.ts +8 -8
- package/shipment/src/apis/ManageShipmentApi.js +56 -60
- package/shipment/src/apis/SearchOrderCarriageApi.d.ts +21 -17
- package/shipment/src/apis/SearchOrderCarriageApi.js +74 -75
- package/shipment/src/apis/index.js +2 -0
- package/shipment/src/index.d.ts +2 -2
- package/shipment/src/index.js +4 -2
- package/shipment/src/models/CancelParcelResponse.d.ts +4 -0
- package/shipment/src/models/CancelParcelResponse.js +17 -14
- package/shipment/src/models/DeliveryStatus.d.ts +4 -0
- package/shipment/src/models/DeliveryStatus.js +15 -12
- package/shipment/src/models/HttpLink.d.ts +4 -0
- package/shipment/src/models/HttpLink.js +14 -8
- package/shipment/src/models/OrderCarriage.d.ts +6 -2
- package/shipment/src/models/OrderCarriage.js +18 -15
- package/shipment/src/models/OrderCarriageShipmentCreationParameters.d.ts +4 -0
- package/shipment/src/models/OrderCarriageShipmentCreationParameters.js +13 -10
- package/shipment/src/models/OrderLink.d.ts +11 -2
- package/shipment/src/models/OrderLink.js +21 -22
- package/shipment/src/models/PaginatedObject.d.ts +5 -1
- package/shipment/src/models/PaginatedObject.js +15 -9
- package/shipment/src/models/PaginatedOrderCarriages.d.ts +13 -3
- package/shipment/src/models/PaginatedOrderCarriages.js +24 -21
- package/shipment/src/models/PagingMetadata.d.ts +4 -0
- package/shipment/src/models/PagingMetadata.js +23 -11
- package/shipment/src/models/RestError.d.ts +66 -58
- package/shipment/src/models/RestError.js +73 -67
- package/shipment/src/models/Shipment.d.ts +7 -2
- package/shipment/src/models/Shipment.js +22 -19
- package/shipment/src/models/ShipmentCreationParameters.d.ts +4 -0
- package/shipment/src/models/ShipmentCreationParameters.js +25 -14
- package/shipment/src/models/ShipmentError.d.ts +11 -7
- package/shipment/src/models/ShipmentError.js +22 -19
- package/shipment/src/models/ShipmentLabels.d.ts +4 -0
- package/shipment/src/models/ShipmentLabels.js +15 -12
- package/shipment/src/models/ShipmentParcel.d.ts +12 -4
- package/shipment/src/models/ShipmentParcel.js +21 -18
- package/shipment/src/models/ShipmentParcelStatus.d.ts +7 -6
- package/shipment/src/models/ShipmentParcelStatus.js +17 -8
- package/shipment/src/models/SkybillLink.d.ts +11 -2
- package/shipment/src/models/SkybillLink.js +21 -22
- package/shipment/src/models/index.d.ts +0 -3
- package/shipment/src/models/index.js +2 -3
- package/shipment/src/runtime.d.ts +72 -31
- package/shipment/src/runtime.js +291 -164
- package/shopping-cart/src/apis/ManageCartApi.d.ts +8 -8
- package/shopping-cart/src/apis/ManageCartApi.js +50 -54
- package/shopping-cart/src/apis/ManageCartSubCartApi.d.ts +19 -19
- package/shopping-cart/src/apis/ManageCartSubCartApi.js +88 -95
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.d.ts +14 -14
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.js +142 -152
- package/shopping-cart/src/apis/index.js +2 -0
- package/shopping-cart/src/index.d.ts +2 -2
- package/shopping-cart/src/index.js +4 -2
- package/shopping-cart/src/models/AnyIdentifiedDistributionMode.d.ts +6 -5
- package/shopping-cart/src/models/AnyIdentifiedDistributionMode.js +9 -23
- package/shopping-cart/src/models/Barcodes.d.ts +5 -0
- package/shopping-cart/src/models/Barcodes.js +19 -16
- package/shopping-cart/src/models/Cart.d.ts +5 -1
- package/shopping-cart/src/models/Cart.js +17 -14
- package/shopping-cart/src/models/CartSubCart.d.ts +7 -3
- package/shopping-cart/src/models/CartSubCart.js +39 -19
- package/shopping-cart/src/models/CartSubCartLine.d.ts +6 -2
- package/shopping-cart/src/models/CartSubCartLine.js +30 -17
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.d.ts +4 -0
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.js +16 -11
- package/shopping-cart/src/models/CartSubCartTransport.d.ts +4 -0
- package/shopping-cart/src/models/CartSubCartTransport.js +23 -11
- package/shopping-cart/src/models/DistributionMode.d.ts +8 -1
- package/shopping-cart/src/models/DistributionMode.js +20 -10
- package/shopping-cart/src/models/DistributionRange.d.ts +4 -0
- package/shopping-cart/src/models/DistributionRange.js +20 -10
- package/shopping-cart/src/models/HttpLink.d.ts +4 -0
- package/shopping-cart/src/models/HttpLink.js +14 -8
- package/shopping-cart/src/models/IdentifiedDistributionRange.d.ts +23 -2
- package/shopping-cart/src/models/IdentifiedDistributionRange.js +35 -21
- package/shopping-cart/src/models/IdentifiedRangeDistributionMode.d.ts +27 -3
- package/shopping-cart/src/models/IdentifiedRangeDistributionMode.js +31 -21
- package/shopping-cart/src/models/ProductLink.d.ts +13 -4
- package/shopping-cart/src/models/ProductLink.js +40 -22
- package/shopping-cart/src/models/ProductStorageType.d.ts +8 -7
- package/shopping-cart/src/models/ProductStorageType.js +18 -9
- package/shopping-cart/src/models/QuotationDistributionMode.d.ts +26 -2
- package/shopping-cart/src/models/QuotationDistributionMode.js +31 -21
- package/shopping-cart/src/models/RestError.d.ts +66 -58
- package/shopping-cart/src/models/RestError.js +73 -67
- package/shopping-cart/src/models/SaleOfferLink.d.ts +14 -5
- package/shopping-cart/src/models/SaleOfferLink.js +32 -23
- package/shopping-cart/src/models/SaleOfferStatus.d.ts +11 -10
- package/shopping-cart/src/models/SaleOfferStatus.js +21 -12
- package/shopping-cart/src/models/SellerLink.d.ts +12 -3
- package/shopping-cart/src/models/SellerLink.js +25 -22
- package/shopping-cart/src/models/ShoppedOffer.d.ts +4 -0
- package/shopping-cart/src/models/ShoppedOffer.js +19 -12
- package/shopping-cart/src/models/Stock.d.ts +4 -0
- package/shopping-cart/src/models/Stock.js +17 -13
- package/shopping-cart/src/models/UnitaryDistributionMode.d.ts +26 -2
- package/shopping-cart/src/models/UnitaryDistributionMode.js +35 -21
- package/shopping-cart/src/models/UserRole.d.ts +12 -11
- package/shopping-cart/src/models/UserRole.js +22 -13
- package/shopping-cart/src/models/index.d.ts +0 -7
- package/shopping-cart/src/models/index.js +2 -7
- package/shopping-cart/src/runtime.d.ts +72 -31
- package/shopping-cart/src/runtime.js +291 -164
- package/smuggler/index.d.ts +1 -0
- package/smuggler/index.js +17 -0
- package/smuggler/src/apis/ManageSmugglersApi.d.ts +27 -0
- package/{factory/src/apis/ManageAssemblyOperationApi.js → smuggler/src/apis/ManageSmugglersApi.js} +33 -71
- package/smuggler/src/apis/index.d.ts +1 -0
- package/smuggler/src/apis/index.js +19 -0
- package/smuggler/src/index.d.ts +3 -0
- package/smuggler/src/index.js +21 -0
- package/smuggler/src/models/RestError.d.ts +97 -0
- package/smuggler/src/models/RestError.js +107 -0
- package/smuggler/src/models/index.d.ts +1 -0
- package/smuggler/src/models/index.js +19 -0
- package/smuggler/src/runtime.d.ts +190 -0
- package/smuggler/src/runtime.js +607 -0
- package/statistic/src/apis/SearchSaleOfferStatisticsApi.d.ts +15 -15
- package/statistic/src/apis/SearchSaleOfferStatisticsApi.js +70 -75
- package/statistic/src/apis/SearchUserStatisticsApi.d.ts +8 -8
- package/statistic/src/apis/SearchUserStatisticsApi.js +60 -63
- package/statistic/src/apis/index.js +2 -0
- package/statistic/src/index.d.ts +2 -2
- package/statistic/src/index.js +4 -2
- package/statistic/src/models/HttpLink.d.ts +4 -0
- package/statistic/src/models/HttpLink.js +14 -8
- package/statistic/src/models/PaginatedObject.d.ts +5 -1
- package/statistic/src/models/PaginatedObject.js +15 -9
- package/statistic/src/models/PaginatedSaleOfferStatistics.d.ts +13 -3
- package/statistic/src/models/PaginatedSaleOfferStatistics.js +24 -21
- package/statistic/src/models/PaginatedUserStatistics.d.ts +13 -3
- package/statistic/src/models/PaginatedUserStatistics.js +24 -21
- package/statistic/src/models/PagingMetadata.d.ts +4 -0
- package/statistic/src/models/PagingMetadata.js +23 -11
- package/statistic/src/models/RestError.d.ts +66 -58
- package/statistic/src/models/RestError.js +73 -67
- package/statistic/src/models/SaleOfferStatistic.d.ts +8 -2
- package/statistic/src/models/SaleOfferStatistic.js +25 -22
- package/statistic/src/models/UserLink.d.ts +11 -2
- package/statistic/src/models/UserLink.js +21 -22
- package/statistic/src/models/UserStatistic.d.ts +7 -2
- package/statistic/src/models/UserStatistic.js +27 -24
- package/statistic/src/models/index.d.ts +0 -3
- package/statistic/src/models/index.js +2 -3
- package/statistic/src/runtime.d.ts +72 -31
- package/statistic/src/runtime.js +291 -164
- package/subscription/src/apis/ManageSubscriptionApi.d.ts +10 -10
- package/subscription/src/apis/ManageSubscriptionApi.js +83 -89
- package/subscription/src/apis/ManageSubscriptionPlanApi.d.ts +6 -6
- package/subscription/src/apis/ManageSubscriptionPlanApi.js +33 -35
- package/subscription/src/apis/SearchSubscriptionApi.d.ts +19 -19
- package/subscription/src/apis/SearchSubscriptionApi.js +63 -67
- package/subscription/src/apis/SearchSubscriptionPlanApi.d.ts +15 -15
- package/subscription/src/apis/SearchSubscriptionPlanApi.js +64 -69
- package/subscription/src/apis/SearchSubscriptionPlanFeatureApi.d.ts +6 -6
- package/subscription/src/apis/SearchSubscriptionPlanFeatureApi.js +27 -29
- package/subscription/src/apis/index.js +2 -0
- package/subscription/src/index.d.ts +2 -2
- package/subscription/src/index.js +4 -2
- package/subscription/src/models/HttpLink.d.ts +4 -0
- package/subscription/src/models/HttpLink.js +14 -8
- package/subscription/src/models/PaginatedObject.d.ts +5 -1
- package/subscription/src/models/PaginatedObject.js +15 -9
- package/subscription/src/models/PaginatedSubscriptions.d.ts +13 -3
- package/subscription/src/models/PaginatedSubscriptions.js +22 -22
- package/subscription/src/models/PagingMetadata.d.ts +4 -0
- package/subscription/src/models/PagingMetadata.js +23 -11
- package/subscription/src/models/RestError.d.ts +66 -58
- package/subscription/src/models/RestError.js +73 -67
- package/subscription/src/models/SubscriberLink.d.ts +11 -2
- package/subscription/src/models/SubscriberLink.js +21 -22
- package/subscription/src/models/Subscription.d.ts +6 -2
- package/subscription/src/models/Subscription.js +27 -23
- package/subscription/src/models/SubscriptionCreationParameters.d.ts +5 -1
- package/subscription/src/models/SubscriptionCreationParameters.js +21 -11
- package/subscription/src/models/SubscriptionPlan.d.ts +6 -2
- package/subscription/src/models/SubscriptionPlan.js +25 -22
- package/subscription/src/models/SubscriptionPlanFeature.d.ts +5 -1
- package/subscription/src/models/SubscriptionPlanFeature.js +17 -14
- package/subscription/src/models/SubscriptionPlanFeatureId.d.ts +7 -6
- package/subscription/src/models/SubscriptionPlanFeatureId.js +17 -8
- package/subscription/src/models/SubscriptionPlanId.d.ts +7 -6
- package/subscription/src/models/SubscriptionPlanId.js +17 -8
- package/subscription/src/models/SubscriptionPlanLink.d.ts +12 -3
- package/subscription/src/models/SubscriptionPlanLink.js +21 -22
- package/subscription/src/models/SubscriptionPlanUpdateParameters.d.ts +5 -1
- package/subscription/src/models/SubscriptionPlanUpdateParameters.js +23 -20
- package/subscription/src/models/SubscriptionUpdateParameters.d.ts +5 -1
- package/subscription/src/models/SubscriptionUpdateParameters.js +23 -19
- package/subscription/src/models/index.d.ts +0 -3
- package/subscription/src/models/index.js +2 -3
- package/subscription/src/runtime.d.ts +72 -31
- package/subscription/src/runtime.js +291 -164
- package/third-party/src/apis/ManageThirdPartyLinkApi.d.ts +6 -6
- package/third-party/src/apis/ManageThirdPartyLinkApi.js +30 -32
- package/third-party/src/apis/index.js +2 -0
- package/third-party/src/index.d.ts +2 -2
- package/third-party/src/index.js +4 -2
- package/third-party/src/models/RestError.d.ts +66 -58
- package/third-party/src/models/RestError.js +73 -67
- package/third-party/src/models/ThirdPartyLink.d.ts +4 -0
- package/third-party/src/models/ThirdPartyLink.js +13 -10
- package/third-party/src/models/ThirdPartyLinkCreationParameters.d.ts +12 -8
- package/third-party/src/models/ThirdPartyLinkCreationParameters.js +24 -18
- package/third-party/src/models/index.js +2 -0
- package/third-party/src/runtime.d.ts +72 -31
- package/third-party/src/runtime.js +291 -164
- package/thread/src/apis/ManageThreadCommentApi.d.ts +8 -8
- package/thread/src/apis/ManageThreadCommentApi.js +64 -68
- package/thread/src/apis/SearchThreadApi.d.ts +6 -6
- package/thread/src/apis/SearchThreadApi.js +30 -32
- package/thread/src/apis/SearchThreadCommentApi.d.ts +15 -15
- package/thread/src/apis/SearchThreadCommentApi.js +44 -48
- package/thread/src/apis/index.js +2 -0
- package/thread/src/index.d.ts +2 -2
- package/thread/src/index.js +4 -2
- package/thread/src/models/AuthorLink.d.ts +11 -2
- package/thread/src/models/AuthorLink.js +31 -21
- package/thread/src/models/Comment.d.ts +5 -1
- package/thread/src/models/Comment.js +21 -18
- package/thread/src/models/CommentCreationParameters.d.ts +11 -2
- package/thread/src/models/CommentCreationParameters.js +23 -21
- package/thread/src/models/CommentUpdateParameters.d.ts +4 -0
- package/thread/src/models/CommentUpdateParameters.js +14 -8
- package/thread/src/models/HttpLink.d.ts +4 -0
- package/thread/src/models/HttpLink.js +14 -8
- package/thread/src/models/PaginatedComments.d.ts +13 -3
- package/thread/src/models/PaginatedComments.js +24 -21
- package/thread/src/models/PaginatedObject.d.ts +5 -1
- package/thread/src/models/PaginatedObject.js +15 -9
- package/thread/src/models/PagingMetadata.d.ts +4 -0
- package/thread/src/models/PagingMetadata.js +23 -11
- package/thread/src/models/Thread.d.ts +5 -1
- package/thread/src/models/Thread.js +18 -10
- package/thread/src/models/ThreadLink.d.ts +11 -2
- package/thread/src/models/ThreadLink.js +23 -21
- package/thread/src/models/index.d.ts +0 -4
- package/thread/src/models/index.js +2 -4
- package/thread/src/runtime.d.ts +72 -31
- package/thread/src/runtime.js +291 -164
- package/ubo/src/apis/ManageUboDeclarationApi.d.ts +6 -6
- package/ubo/src/apis/ManageUboDeclarationApi.js +31 -33
- package/ubo/src/apis/SearchUboDeclarationApi.d.ts +6 -6
- package/ubo/src/apis/SearchUboDeclarationApi.js +30 -32
- package/ubo/src/apis/index.js +2 -0
- package/ubo/src/index.d.ts +2 -2
- package/ubo/src/index.js +4 -2
- package/ubo/src/models/Address.d.ts +5 -1
- package/ubo/src/models/Address.js +29 -16
- package/ubo/src/models/Country.d.ts +4 -0
- package/ubo/src/models/Country.js +17 -9
- package/ubo/src/models/RestError.d.ts +66 -58
- package/ubo/src/models/RestError.js +73 -67
- package/ubo/src/models/Ubo.d.ts +6 -2
- package/ubo/src/models/Ubo.js +35 -19
- package/ubo/src/models/UboDeclaration.d.ts +18 -14
- package/ubo/src/models/UboDeclaration.js +34 -33
- package/ubo/src/models/UboDeclarationCreationOrUpdateParameters.d.ts +5 -1
- package/ubo/src/models/UboDeclarationCreationOrUpdateParameters.js +13 -10
- package/ubo/src/models/index.js +2 -0
- package/ubo/src/runtime.d.ts +72 -31
- package/ubo/src/runtime.js +291 -164
- package/user/src/apis/ManagePasswordApi.d.ts +8 -8
- package/user/src/apis/ManagePasswordApi.js +52 -55
- package/user/src/apis/ManageUserApi.d.ts +32 -24
- package/user/src/apis/ManageUserApi.js +233 -236
- package/user/src/apis/ManageUserBankAccountApi.d.ts +8 -8
- package/user/src/apis/ManageUserBankAccountApi.js +59 -63
- package/user/src/apis/ManageUserDocumentApi.d.ts +49 -45
- package/user/src/apis/ManageUserDocumentApi.js +135 -141
- package/user/src/apis/ManageUserFavoriteLaboratoryStoreApi.d.ts +12 -12
- package/user/src/apis/ManageUserFavoriteLaboratoryStoreApi.js +105 -113
- package/user/src/apis/ManageUserRestrictionApi.d.ts +20 -20
- package/user/src/apis/ManageUserRestrictionApi.js +205 -231
- package/user/src/apis/ManageUserRoleApi.d.ts +6 -6
- package/user/src/apis/ManageUserRoleApi.js +33 -35
- package/user/src/apis/ManageUserRuleApi.d.ts +8 -8
- package/user/src/apis/ManageUserRuleApi.js +59 -63
- package/user/src/apis/ManageUserSocialNetworksApi.d.ts +12 -8
- package/user/src/apis/ManageUserSocialNetworksApi.js +63 -63
- package/user/src/apis/ManageUserTransportApi.d.ts +6 -6
- package/user/src/apis/ManageUserTransportApi.js +33 -35
- package/user/src/apis/SearchUserApi.d.ts +47 -41
- package/user/src/apis/SearchUserApi.js +212 -219
- package/user/src/apis/SearchUserDocumentApi.d.ts +81 -73
- package/user/src/apis/SearchUserDocumentApi.js +253 -259
- package/user/src/apis/SearchUserFavoriteLaboratoryStoreApi.d.ts +8 -8
- package/user/src/apis/SearchUserFavoriteLaboratoryStoreApi.js +53 -57
- package/user/src/apis/SearchUserFeatureApi.d.ts +6 -6
- package/user/src/apis/SearchUserFeatureApi.js +27 -29
- package/user/src/apis/SearchUserRestrictionApi.d.ts +12 -12
- package/user/src/apis/SearchUserRestrictionApi.js +105 -113
- package/user/src/apis/SearchUserRuleApi.d.ts +6 -6
- package/user/src/apis/SearchUserRuleApi.js +30 -32
- package/user/src/apis/SearchUserSocialNetworksApi.d.ts +12 -8
- package/user/src/apis/SearchUserSocialNetworksApi.js +57 -57
- package/user/src/apis/SearchUserTransportApi.d.ts +8 -8
- package/user/src/apis/SearchUserTransportApi.js +53 -57
- package/user/src/apis/index.js +2 -0
- package/user/src/index.d.ts +2 -2
- package/user/src/index.js +4 -2
- package/user/src/models/Address.d.ts +4 -0
- package/user/src/models/Address.js +19 -16
- package/user/src/models/Gender.d.ts +6 -5
- package/user/src/models/Gender.js +16 -7
- package/user/src/models/HttpLink.d.ts +4 -0
- package/user/src/models/HttpLink.js +14 -8
- package/user/src/models/KycLevel.d.ts +6 -5
- package/user/src/models/KycLevel.js +16 -7
- package/user/src/models/MyPasswordUpdateParameters.d.ts +4 -0
- package/user/src/models/MyPasswordUpdateParameters.js +15 -12
- package/user/src/models/NotificationTypeId.d.ts +52 -51
- package/user/src/models/NotificationTypeId.js +62 -53
- package/user/src/models/NotificationTypeLink.d.ts +12 -3
- package/user/src/models/NotificationTypeLink.js +21 -22
- package/user/src/models/OffisanteStatus.d.ts +12 -7
- package/user/src/models/OffisanteStatus.js +22 -9
- package/user/src/models/PaginatedObject.d.ts +5 -1
- package/user/src/models/PaginatedObject.js +15 -9
- package/user/src/models/PaginatedUsers.d.ts +13 -3
- package/user/src/models/PaginatedUsers.js +22 -22
- package/user/src/models/PagingMetadata.d.ts +4 -0
- package/user/src/models/PagingMetadata.js +23 -11
- package/user/src/models/PasswordResetCompletionParameters.d.ts +4 -0
- package/user/src/models/PasswordResetCompletionParameters.js +14 -8
- package/user/src/models/PasswordResetCreationParameters.d.ts +4 -0
- package/user/src/models/PasswordResetCreationParameters.js +14 -8
- package/user/src/models/ProductTypeLink.d.ts +11 -2
- package/user/src/models/ProductTypeLink.js +23 -22
- package/user/src/models/RestError.d.ts +66 -58
- package/user/src/models/RestError.js +73 -67
- package/user/src/models/SomeonePasswordUpdateParameters.d.ts +4 -0
- package/user/src/models/SomeonePasswordUpdateParameters.js +13 -10
- package/user/src/models/ThreadLink.d.ts +11 -2
- package/user/src/models/ThreadLink.js +23 -21
- package/user/src/models/Transport.d.ts +7 -3
- package/user/src/models/Transport.js +26 -12
- package/user/src/models/User.d.ts +21 -15
- package/user/src/models/User.js +126 -104
- package/user/src/models/UserBankAccountCreationParameters.d.ts +4 -0
- package/user/src/models/UserBankAccountCreationParameters.js +15 -12
- package/user/src/models/UserBankAccountLink.d.ts +11 -2
- package/user/src/models/UserBankAccountLink.js +21 -22
- package/user/src/models/UserCompany.d.ts +8 -3
- package/user/src/models/UserCompany.js +41 -38
- package/user/src/models/UserCreationParameters.d.ts +5 -1
- package/user/src/models/UserCreationParameters.js +32 -16
- package/user/src/models/UserCustomCommissions.d.ts +4 -0
- package/user/src/models/UserCustomCommissions.js +15 -12
- package/user/src/models/UserCustomCommissionsUpdateParameters.d.ts +4 -0
- package/user/src/models/UserCustomCommissionsUpdateParameters.js +15 -12
- package/user/src/models/UserDelegatedServices.d.ts +14 -1
- package/user/src/models/UserDelegatedServices.js +17 -14
- package/user/src/models/UserDocument.d.ts +21 -17
- package/user/src/models/UserDocument.js +34 -32
- package/user/src/models/UserDocumentStatus.d.ts +9 -8
- package/user/src/models/UserDocumentStatus.js +19 -10
- package/user/src/models/UserFavoriteLaboratoryStoreCreationParameter.d.ts +4 -0
- package/user/src/models/UserFavoriteLaboratoryStoreCreationParameter.js +14 -8
- package/user/src/models/UserFavoriteLaboratoryStoreLink.d.ts +11 -2
- package/user/src/models/UserFavoriteLaboratoryStoreLink.js +21 -22
- package/user/src/models/UserFeature.d.ts +4 -0
- package/user/src/models/UserFeature.js +15 -12
- package/user/src/models/UserForbiddenSellerLink.d.ts +11 -2
- package/user/src/models/UserForbiddenSellerLink.js +21 -22
- package/user/src/models/UserJournal.d.ts +4 -0
- package/user/src/models/UserJournal.js +13 -10
- package/user/src/models/UserMangopayTarget.d.ts +11 -2
- package/user/src/models/UserMangopayTarget.js +21 -22
- package/user/src/models/UserRestrictedFeatureCreationParameter.d.ts +4 -0
- package/user/src/models/UserRestrictedFeatureCreationParameter.js +14 -8
- package/user/src/models/UserRestrictedNotificationTypeCreationParameter.d.ts +5 -1
- package/user/src/models/UserRestrictedNotificationTypeCreationParameter.js +15 -9
- package/user/src/models/UserRestrictedProductTypeCreationParameter.d.ts +4 -0
- package/user/src/models/UserRestrictedProductTypeCreationParameter.js +14 -8
- package/user/src/models/UserRole.d.ts +12 -11
- package/user/src/models/UserRole.js +22 -13
- package/user/src/models/UserRule.d.ts +7 -3
- package/user/src/models/UserRule.js +22 -19
- package/user/src/models/UserRuleActionEnum.d.ts +5 -4
- package/user/src/models/UserRuleActionEnum.js +15 -6
- package/user/src/models/UserRuleAttributeEnum.d.ts +6 -5
- package/user/src/models/UserRuleAttributeEnum.js +16 -7
- package/user/src/models/UserRuleComparatorEnum.d.ts +6 -5
- package/user/src/models/UserRuleComparatorEnum.js +16 -7
- package/user/src/models/UserRuleCreationParameters.d.ts +7 -3
- package/user/src/models/UserRuleCreationParameters.js +27 -15
- package/user/src/models/UserSocialNetwork.d.ts +4 -0
- package/user/src/models/UserSocialNetwork.js +25 -22
- package/user/src/models/UserStatisticLink.d.ts +11 -2
- package/user/src/models/UserStatisticLink.js +31 -22
- package/user/src/models/UserThreads.d.ts +5 -1
- package/user/src/models/UserThreads.js +13 -10
- package/user/src/models/UserUpdateParameters.d.ts +10 -6
- package/user/src/models/UserUpdateParameters.js +53 -49
- package/user/src/models/UserWalletLink.d.ts +11 -2
- package/user/src/models/UserWalletLink.js +21 -22
- package/user/src/models/UserWallets.d.ts +5 -1
- package/user/src/models/UserWallets.js +19 -16
- package/user/src/models/index.d.ts +0 -11
- package/user/src/models/index.js +2 -11
- package/user/src/runtime.d.ts +72 -31
- package/user/src/runtime.js +291 -164
- package/wish/src/apis/ManageWishApi.d.ts +10 -10
- package/wish/src/apis/ManageWishApi.js +79 -85
- package/wish/src/apis/SearchProductEnthusiasmApi.d.ts +21 -21
- package/wish/src/apis/SearchProductEnthusiasmApi.js +52 -55
- package/wish/src/apis/SearchWishApi.d.ts +23 -23
- package/wish/src/apis/SearchWishApi.js +94 -99
- package/wish/src/apis/index.js +2 -0
- package/wish/src/index.d.ts +2 -2
- package/wish/src/index.js +4 -2
- package/wish/src/models/Barcodes.d.ts +5 -0
- package/wish/src/models/Barcodes.js +19 -16
- package/wish/src/models/DesiredSellerLink.d.ts +12 -3
- package/wish/src/models/DesiredSellerLink.js +25 -22
- package/wish/src/models/HttpLink.d.ts +4 -0
- package/wish/src/models/HttpLink.js +14 -8
- package/wish/src/models/OwnerLink.d.ts +12 -3
- package/wish/src/models/OwnerLink.js +25 -22
- package/wish/src/models/OwnerLinkAllOfCompany.d.ts +4 -0
- package/wish/src/models/OwnerLinkAllOfCompany.js +13 -10
- package/wish/src/models/PaginatedObject.d.ts +5 -1
- package/wish/src/models/PaginatedObject.js +15 -9
- package/wish/src/models/PaginatedProductEnthusiasms.d.ts +13 -3
- package/wish/src/models/PaginatedProductEnthusiasms.js +24 -21
- package/wish/src/models/PaginatedWishes.d.ts +13 -3
- package/wish/src/models/PaginatedWishes.js +24 -21
- package/wish/src/models/PagingMetadata.d.ts +4 -0
- package/wish/src/models/PagingMetadata.js +23 -11
- package/wish/src/models/ProductEnthusiasm.d.ts +5 -1
- package/wish/src/models/ProductEnthusiasm.js +21 -18
- package/wish/src/models/ProductLink.d.ts +12 -3
- package/wish/src/models/ProductLink.js +25 -22
- package/wish/src/models/Referrer.d.ts +5 -1
- package/wish/src/models/Referrer.js +15 -12
- package/wish/src/models/RestError.d.ts +66 -58
- package/wish/src/models/RestError.js +73 -67
- package/wish/src/models/Wish.d.ts +8 -4
- package/wish/src/models/Wish.js +37 -33
- package/wish/src/models/WishCreationParameters.d.ts +5 -1
- package/wish/src/models/WishCreationParameters.js +29 -20
- package/wish/src/models/WishReferrerType.d.ts +6 -5
- package/wish/src/models/WishReferrerType.js +16 -7
- package/wish/src/models/WishStatus.d.ts +7 -6
- package/wish/src/models/WishStatus.js +17 -8
- package/wish/src/models/WishUpdateParameters.d.ts +5 -1
- package/wish/src/models/WishUpdateParameters.js +21 -18
- package/wish/src/models/index.d.ts +0 -5
- package/wish/src/models/index.js +2 -5
- package/wish/src/runtime.d.ts +72 -31
- package/wish/src/runtime.js +291 -164
- package/auth/src/models/AnonymousUserAllOf.d.ts +0 -33
- package/auth/src/models/AnonymousUserAllOf.js +0 -44
- package/auth/src/models/ApiKeyCredentialAllOf.d.ts +0 -27
- package/auth/src/models/ApiKeyCredentialAllOf.js +0 -41
- package/auth/src/models/DisposableCredentialAllOf.d.ts +0 -27
- package/auth/src/models/DisposableCredentialAllOf.js +0 -41
- package/auth/src/models/IdentifiedUserAllOf.d.ts +0 -27
- package/auth/src/models/IdentifiedUserAllOf.js +0 -42
- package/auth/src/models/LoginCredentialAllOf.d.ts +0 -33
- package/auth/src/models/LoginCredentialAllOf.js +0 -43
- package/auth/src/models/PaginatedApiKeysAllOf.d.ts +0 -28
- package/auth/src/models/PaginatedApiKeysAllOf.js +0 -42
- package/auth/src/models/RefreshCredentialAllOf.d.ts +0 -27
- package/auth/src/models/RefreshCredentialAllOf.js +0 -41
- package/auth/src/models/RevealedApiKeyAllOf.d.ts +0 -27
- package/auth/src/models/RevealedApiKeyAllOf.js +0 -42
- package/auth/src/models/UserLinkAllOf.d.ts +0 -40
- package/auth/src/models/UserLinkAllOf.js +0 -47
- package/banking-operation/src/models/OrderLinkAllOf.d.ts +0 -27
- package/banking-operation/src/models/OrderLinkAllOf.js +0 -42
- package/banking-operation/src/models/PaginatedLeviesAllOf.d.ts +0 -28
- package/banking-operation/src/models/PaginatedLeviesAllOf.js +0 -42
- package/banking-operation/src/models/PaginatedOrderPaymentsAllOf.d.ts +0 -28
- package/banking-operation/src/models/PaginatedOrderPaymentsAllOf.js +0 -42
- package/banking-operation/src/models/TransactionMangopayTargetAllOf.d.ts +0 -27
- package/banking-operation/src/models/TransactionMangopayTargetAllOf.js +0 -42
- package/banking-operation/src/models/UserLinkAllOf.d.ts +0 -40
- package/banking-operation/src/models/UserLinkAllOf.js +0 -47
- package/banking-operation/src/models/WalletMangopayTargetAllOf.d.ts +0 -27
- package/banking-operation/src/models/WalletMangopayTargetAllOf.js +0 -42
- package/catalog/src/models/LaboratoryLinkAllOf.d.ts +0 -33
- package/catalog/src/models/LaboratoryLinkAllOf.js +0 -44
- package/catalog/src/models/PaginatedProductInsightsAllOf.d.ts +0 -28
- package/catalog/src/models/PaginatedProductInsightsAllOf.js +0 -42
- package/catalog/src/models/ProductSecondaryTypeLinkAllOf.d.ts +0 -33
- package/catalog/src/models/ProductSecondaryTypeLinkAllOf.js +0 -44
- package/catalog/src/models/ProductTypeLinkAllOf.d.ts +0 -33
- package/catalog/src/models/ProductTypeLinkAllOf.js +0 -44
- package/catalog/src/models/VatLinkAllOf.d.ts +0 -39
- package/catalog/src/models/VatLinkAllOf.js +0 -46
- package/factory/src/apis/ManageAssemblyOperationApi.d.ts +0 -30
- package/factory/src/apis/SearchAssemblyLineApi.d.ts +0 -37
- package/factory/src/apis/SearchAssemblyLineApi.js +0 -239
- package/factory/src/apis/SearchAssemblyOperationApi.d.ts +0 -41
- package/factory/src/apis/SearchAssemblyOperationApi.js +0 -245
- package/factory/src/models/AssemblyLine.d.ts +0 -39
- package/factory/src/models/AssemblyLine.js +0 -46
- package/factory/src/models/AssemblyLineLink.d.ts +0 -28
- package/factory/src/models/AssemblyLineLink.js +0 -50
- package/factory/src/models/AssemblyLineLinkAllOf.d.ts +0 -27
- package/factory/src/models/AssemblyLineLinkAllOf.js +0 -42
- package/factory/src/models/AssemblyOperation.d.ts +0 -41
- package/factory/src/models/AssemblyOperation.js +0 -48
- package/factory/src/models/AssemblyOperationStatus.d.ts +0 -25
- package/factory/src/models/AssemblyOperationStatus.js +0 -40
- package/factory/src/models/AssemblyOperationType.d.ts +0 -25
- package/factory/src/models/AssemblyOperationType.js +0 -40
- package/factory/src/models/PaginatedAssembliesAllOf.d.ts +0 -28
- package/factory/src/models/PaginatedAssembliesAllOf.js +0 -43
- package/factory/src/models/UserLinkAllOf.d.ts +0 -27
- package/factory/src/models/UserLinkAllOf.js +0 -42
- package/favorite/src/models/PaginatedFavoriteProductsAllOf.d.ts +0 -28
- package/favorite/src/models/PaginatedFavoriteProductsAllOf.js +0 -42
- package/favorite/src/models/ProductLinkAllOf.d.ts +0 -47
- package/favorite/src/models/ProductLinkAllOf.js +0 -50
- package/favorite/src/models/UserLinkAllOf.d.ts +0 -27
- package/favorite/src/models/UserLinkAllOf.js +0 -41
- package/inventory/src/models/PaginatedActiveProductsAllOf.d.ts +0 -28
- package/inventory/src/models/PaginatedActiveProductsAllOf.js +0 -42
- package/inventory/src/models/PaginatedMisalignedProductsAllOf.d.ts +0 -28
- package/inventory/src/models/PaginatedMisalignedProductsAllOf.js +0 -42
- package/inventory/src/models/PaginatedOverstockProductsAllOf.d.ts +0 -28
- package/inventory/src/models/PaginatedOverstockProductsAllOf.js +0 -42
- package/inventory/src/models/ProductLinkAllOf.d.ts +0 -40
- package/inventory/src/models/ProductLinkAllOf.js +0 -47
- package/inventory/src/models/Synchroneity.d.ts +0 -28
- package/inventory/src/models/Synchroneity.js +0 -43
- package/inventory/src/models/SynchroneityOffisante.d.ts +0 -34
- package/inventory/src/models/SynchroneityOffisante.js +0 -45
- package/inventory/src/models/SynchroneitySource.d.ts +0 -33
- package/inventory/src/models/SynchroneitySource.js +0 -44
- package/invoice/src/models/OrderLinkAllOf.d.ts +0 -33
- package/invoice/src/models/OrderLinkAllOf.js +0 -44
- package/invoice/src/models/PaginatedInvoicesAllOf.d.ts +0 -28
- package/invoice/src/models/PaginatedInvoicesAllOf.js +0 -42
- package/invoice/src/models/PaginatedOrderTalliesAllOf.d.ts +0 -28
- package/invoice/src/models/PaginatedOrderTalliesAllOf.js +0 -42
- package/invoice/src/models/PaginatedPlannedInvoiceLineAllOf.d.ts +0 -28
- package/invoice/src/models/PaginatedPlannedInvoiceLineAllOf.js +0 -42
- package/invoice/src/models/UserLinkAllOf.d.ts +0 -40
- package/invoice/src/models/UserLinkAllOf.js +0 -47
- package/laboratory/src/models/PaginatedLaboratoriesAllOf.d.ts +0 -28
- package/laboratory/src/models/PaginatedLaboratoriesAllOf.js +0 -42
- package/laboratory-store/src/models/ImageCreationParameters.d.ts +0 -28
- package/laboratory-store/src/models/ImageCreationParameters.js +0 -41
- package/laboratory-store/src/models/OwnerLinkAllOf.d.ts +0 -33
- package/laboratory-store/src/models/OwnerLinkAllOf.js +0 -44
- package/laboratory-store/src/models/PaginatedLaboratoryStoresAllOf.d.ts +0 -28
- package/laboratory-store/src/models/PaginatedLaboratoryStoresAllOf.js +0 -43
- package/laboratory-store-log/src/models/LaboratoryStoreLinkAllOf.d.ts +0 -27
- package/laboratory-store-log/src/models/LaboratoryStoreLinkAllOf.js +0 -41
- package/laboratory-store-log/src/models/LaboratoryStoreLogAllOf.d.ts +0 -34
- package/laboratory-store-log/src/models/LaboratoryStoreLogAllOf.js +0 -44
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogsAllOf.d.ts +0 -28
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogsAllOf.js +0 -42
- package/lexicon/src/models/PaginatedTagsAllOf.d.ts +0 -28
- package/lexicon/src/models/PaginatedTagsAllOf.js +0 -42
- package/magic-cart/src/models/IdentifiedDistributionRangeAllOf.d.ts +0 -33
- package/magic-cart/src/models/IdentifiedDistributionRangeAllOf.js +0 -43
- package/magic-cart/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +0 -28
- package/magic-cart/src/models/IdentifiedRangeDistributionModeAllOf.js +0 -42
- package/magic-cart/src/models/ProductLinkAllOf.d.ts +0 -47
- package/magic-cart/src/models/ProductLinkAllOf.js +0 -49
- package/magic-cart/src/models/QuotationDistributionModeAllOf.d.ts +0 -27
- package/magic-cart/src/models/QuotationDistributionModeAllOf.js +0 -41
- package/magic-cart/src/models/SaleOfferLinkAllOf.d.ts +0 -47
- package/magic-cart/src/models/SaleOfferLinkAllOf.js +0 -50
- package/magic-cart/src/models/UnitaryDistributionModeAllOf.d.ts +0 -33
- package/magic-cart/src/models/UnitaryDistributionModeAllOf.js +0 -43
- package/magic-cart/src/models/UserLinkAllOf.d.ts +0 -33
- package/magic-cart/src/models/UserLinkAllOf.js +0 -43
- package/mandate/src/models/MandateChallengeAllOf.d.ts +0 -27
- package/mandate/src/models/MandateChallengeAllOf.js +0 -41
- package/message/src/models/PaginatedMessagesAllOf.d.ts +0 -28
- package/message/src/models/PaginatedMessagesAllOf.js +0 -42
- package/message/src/models/ViewerLinkAllOf.d.ts +0 -33
- package/message/src/models/ViewerLinkAllOf.js +0 -43
- package/notification/src/models/NotificationTypeAttachmentCreationParameters.d.ts +0 -28
- package/notification/src/models/NotificationTypeAttachmentCreationParameters.js +0 -42
- package/notification/src/models/PaginatedNotificationTypesAllOf.d.ts +0 -28
- package/notification/src/models/PaginatedNotificationTypesAllOf.js +0 -43
- package/notification/src/models/PaginatedNotificationsAllOf.d.ts +0 -28
- package/notification/src/models/PaginatedNotificationsAllOf.js +0 -43
- package/order/src/models/FreeCarriageCouponOwnerLinkAllOf.d.ts +0 -27
- package/order/src/models/FreeCarriageCouponOwnerLinkAllOf.js +0 -41
- package/order/src/models/OrderItemWarningAllOf.d.ts +0 -62
- package/order/src/models/OrderItemWarningAllOf.js +0 -62
- package/order/src/models/OrderWarningAllOf.d.ts +0 -41
- package/order/src/models/OrderWarningAllOf.js +0 -52
- package/order/src/models/PaginatedFreeCarriageCouponsAllOf.d.ts +0 -28
- package/order/src/models/PaginatedFreeCarriageCouponsAllOf.js +0 -42
- package/order/src/models/PaginatedOrdersAllOf.d.ts +0 -28
- package/order/src/models/PaginatedOrdersAllOf.js +0 -42
- package/order/src/models/ProductLinkAllOf.d.ts +0 -47
- package/order/src/models/ProductLinkAllOf.js +0 -50
- package/order/src/models/SaleOfferLinkAllOf.d.ts +0 -27
- package/order/src/models/SaleOfferLinkAllOf.js +0 -41
- package/order/src/models/ThreadLinkAllOf.d.ts +0 -27
- package/order/src/models/ThreadLinkAllOf.js +0 -41
- package/order/src/models/UserLinkAllOf.d.ts +0 -64
- package/order/src/models/UserLinkAllOf.js +0 -55
- package/order-log/src/models/OrderLinkAllOf.d.ts +0 -27
- package/order-log/src/models/OrderLinkAllOf.js +0 -41
- package/order-log/src/models/OrderLogAllOf.d.ts +0 -53
- package/order-log/src/models/OrderLogAllOf.js +0 -51
- package/order-log/src/models/PaginatedOrderLogsAllOf.d.ts +0 -28
- package/order-log/src/models/PaginatedOrderLogsAllOf.js +0 -42
- package/outrage-message/src/models/PaginatedOutrageMessagesAllOf.d.ts +0 -28
- package/outrage-message/src/models/PaginatedOutrageMessagesAllOf.js +0 -43
- package/product/src/models/ImageCreationParameters.d.ts +0 -28
- package/product/src/models/ImageCreationParameters.js +0 -42
- package/product/src/models/LaboratoryLinkAllOf.d.ts +0 -33
- package/product/src/models/LaboratoryLinkAllOf.js +0 -44
- package/product/src/models/PaginatedProductProscriptionsAllOf.d.ts +0 -28
- package/product/src/models/PaginatedProductProscriptionsAllOf.js +0 -42
- package/product/src/models/PaginatedProductsAllOf.d.ts +0 -28
- package/product/src/models/PaginatedProductsAllOf.js +0 -42
- package/pub/src/models/PaginatedPubStatisticsAllOf.d.ts +0 -28
- package/pub/src/models/PaginatedPubStatisticsAllOf.js +0 -42
- package/pub/src/models/PaginatedPubsAllOf.d.ts +0 -28
- package/pub/src/models/PaginatedPubsAllOf.js +0 -42
- package/pub/src/models/PubImageParameters.d.ts +0 -28
- package/pub/src/models/PubImageParameters.js +0 -42
- package/pub/src/models/UserLinkAllOf.d.ts +0 -40
- package/pub/src/models/UserLinkAllOf.js +0 -47
- package/recommendation/src/models/PaginatedFavoriteProductRecommendationsAllOf.d.ts +0 -28
- package/recommendation/src/models/PaginatedFavoriteProductRecommendationsAllOf.js +0 -42
- package/recommendation/src/models/PaginatedProductPriceRecommendationsAllOf.d.ts +0 -28
- package/recommendation/src/models/PaginatedProductPriceRecommendationsAllOf.js +0 -42
- package/recommendation/src/models/PaginatedProductRecommendationsAllOf.d.ts +0 -28
- package/recommendation/src/models/PaginatedProductRecommendationsAllOf.js +0 -42
- package/recommendation/src/models/ProductLinkAllOf.d.ts +0 -27
- package/recommendation/src/models/ProductLinkAllOf.js +0 -42
- package/recommendation/src/models/UserLinkAllOf.d.ts +0 -27
- package/recommendation/src/models/UserLinkAllOf.js +0 -42
- package/rfx/src/models/OrderLinkAllOf.d.ts +0 -27
- package/rfx/src/models/OrderLinkAllOf.js +0 -42
- package/rfx/src/models/PaginatedRfoisAllOf.d.ts +0 -28
- package/rfx/src/models/PaginatedRfoisAllOf.js +0 -42
- package/rfx/src/models/UserLinkAllOf.d.ts +0 -40
- package/rfx/src/models/UserLinkAllOf.js +0 -47
- package/sale-offer/src/models/IdentifiedDistributionRangeAllOf.d.ts +0 -33
- package/sale-offer/src/models/IdentifiedDistributionRangeAllOf.js +0 -43
- package/sale-offer/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +0 -28
- package/sale-offer/src/models/IdentifiedRangeDistributionModeAllOf.js +0 -42
- package/sale-offer/src/models/OwnerLinkAllOf.d.ts +0 -40
- package/sale-offer/src/models/OwnerLinkAllOf.js +0 -47
- package/sale-offer/src/models/PaginatedSaleOffersAllOf.d.ts +0 -28
- package/sale-offer/src/models/PaginatedSaleOffersAllOf.js +0 -42
- package/sale-offer/src/models/ProductImageLinkAllOf.d.ts +0 -34
- package/sale-offer/src/models/ProductImageLinkAllOf.js +0 -45
- package/sale-offer/src/models/ProductLinkAllOf.d.ts +0 -40
- package/sale-offer/src/models/ProductLinkAllOf.js +0 -47
- package/sale-offer/src/models/QuotationDistributionModeAllOf.d.ts +0 -27
- package/sale-offer/src/models/QuotationDistributionModeAllOf.js +0 -41
- package/sale-offer/src/models/RangeDistributionModeAllOf.d.ts +0 -28
- package/sale-offer/src/models/RangeDistributionModeAllOf.js +0 -42
- package/sale-offer/src/models/SaleOfferStatisticLinkAllOf.d.ts +0 -45
- package/sale-offer/src/models/SaleOfferStatisticLinkAllOf.js +0 -48
- package/sale-offer/src/models/UnitaryDistributionModeAllOf.d.ts +0 -33
- package/sale-offer/src/models/UnitaryDistributionModeAllOf.js +0 -43
- package/sale-offer-log/src/models/PaginatedSaleOfferLogsAllOf.d.ts +0 -28
- package/sale-offer-log/src/models/PaginatedSaleOfferLogsAllOf.js +0 -42
- package/sale-offer-log/src/models/SaleOfferLinkAllOf.d.ts +0 -27
- package/sale-offer-log/src/models/SaleOfferLinkAllOf.js +0 -41
- package/sale-offer-log/src/models/SaleOfferLogAllOf.d.ts +0 -34
- package/sale-offer-log/src/models/SaleOfferLogAllOf.js +0 -44
- package/shipment/src/models/OrderLinkAllOf.d.ts +0 -27
- package/shipment/src/models/OrderLinkAllOf.js +0 -42
- package/shipment/src/models/PaginatedOrderCarriagesAllOf.d.ts +0 -28
- package/shipment/src/models/PaginatedOrderCarriagesAllOf.js +0 -42
- package/shipment/src/models/SkybillLinkAllOf.d.ts +0 -27
- package/shipment/src/models/SkybillLinkAllOf.js +0 -42
- package/shopping-cart/src/models/IdentifiedDistributionRangeAllOf.d.ts +0 -33
- package/shopping-cart/src/models/IdentifiedDistributionRangeAllOf.js +0 -43
- package/shopping-cart/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +0 -28
- package/shopping-cart/src/models/IdentifiedRangeDistributionModeAllOf.js +0 -42
- package/shopping-cart/src/models/ProductLinkAllOf.d.ts +0 -53
- package/shopping-cart/src/models/ProductLinkAllOf.js +0 -51
- package/shopping-cart/src/models/QuotationDistributionModeAllOf.d.ts +0 -27
- package/shopping-cart/src/models/QuotationDistributionModeAllOf.js +0 -41
- package/shopping-cart/src/models/SaleOfferLinkAllOf.d.ts +0 -54
- package/shopping-cart/src/models/SaleOfferLinkAllOf.js +0 -53
- package/shopping-cart/src/models/SellerLinkAllOf.d.ts +0 -40
- package/shopping-cart/src/models/SellerLinkAllOf.js +0 -47
- package/shopping-cart/src/models/UnitaryDistributionModeAllOf.d.ts +0 -33
- package/shopping-cart/src/models/UnitaryDistributionModeAllOf.js +0 -43
- package/statistic/src/models/PaginatedSaleOfferStatisticsAllOf.d.ts +0 -28
- package/statistic/src/models/PaginatedSaleOfferStatisticsAllOf.js +0 -42
- package/statistic/src/models/PaginatedUserStatisticsAllOf.d.ts +0 -28
- package/statistic/src/models/PaginatedUserStatisticsAllOf.js +0 -42
- package/statistic/src/models/UserLinkAllOf.d.ts +0 -27
- package/statistic/src/models/UserLinkAllOf.js +0 -42
- package/subscription/src/models/PaginatedSubscriptionsAllOf.d.ts +0 -28
- package/subscription/src/models/PaginatedSubscriptionsAllOf.js +0 -43
- package/subscription/src/models/SubscriberLinkAllOf.d.ts +0 -27
- package/subscription/src/models/SubscriberLinkAllOf.js +0 -42
- package/subscription/src/models/SubscriptionPlanLinkAllOf.d.ts +0 -28
- package/subscription/src/models/SubscriptionPlanLinkAllOf.js +0 -43
- package/thread/src/models/AuthorLinkAllOf.d.ts +0 -39
- package/thread/src/models/AuthorLinkAllOf.js +0 -45
- package/thread/src/models/CommentCreationParametersAllOf.d.ts +0 -27
- package/thread/src/models/CommentCreationParametersAllOf.js +0 -41
- package/thread/src/models/PaginatedCommentsAllOf.d.ts +0 -28
- package/thread/src/models/PaginatedCommentsAllOf.js +0 -42
- package/thread/src/models/ThreadLinkAllOf.d.ts +0 -27
- package/thread/src/models/ThreadLinkAllOf.js +0 -41
- package/user/src/models/NotificationTypeLinkAllOf.d.ts +0 -28
- package/user/src/models/NotificationTypeLinkAllOf.js +0 -43
- package/user/src/models/PaginatedUsersAllOf.d.ts +0 -28
- package/user/src/models/PaginatedUsersAllOf.js +0 -43
- package/user/src/models/ProductTypeLinkAllOf.d.ts +0 -33
- package/user/src/models/ProductTypeLinkAllOf.js +0 -44
- package/user/src/models/ThreadLinkAllOf.d.ts +0 -27
- package/user/src/models/ThreadLinkAllOf.js +0 -41
- package/user/src/models/UserBankAccountLinkAllOf.d.ts +0 -27
- package/user/src/models/UserBankAccountLinkAllOf.js +0 -42
- package/user/src/models/UserDocumentCreationParameters.d.ts +0 -28
- package/user/src/models/UserDocumentCreationParameters.js +0 -42
- package/user/src/models/UserFavoriteLaboratoryStoreLinkAllOf.d.ts +0 -27
- package/user/src/models/UserFavoriteLaboratoryStoreLinkAllOf.js +0 -42
- package/user/src/models/UserForbiddenSellerLinkAllOf.d.ts +0 -27
- package/user/src/models/UserForbiddenSellerLinkAllOf.js +0 -42
- package/user/src/models/UserMangopayTargetAllOf.d.ts +0 -27
- package/user/src/models/UserMangopayTargetAllOf.js +0 -42
- package/user/src/models/UserStatisticLinkAllOf.d.ts +0 -57
- package/user/src/models/UserStatisticLinkAllOf.js +0 -52
- package/user/src/models/UserWalletLinkAllOf.d.ts +0 -27
- package/user/src/models/UserWalletLinkAllOf.js +0 -42
- package/wish/src/models/DesiredSellerLinkAllOf.d.ts +0 -40
- package/wish/src/models/DesiredSellerLinkAllOf.js +0 -47
- package/wish/src/models/OwnerLinkAllOf.d.ts +0 -40
- package/wish/src/models/OwnerLinkAllOf.js +0 -47
- package/wish/src/models/PaginatedProductEnthusiasmsAllOf.d.ts +0 -28
- package/wish/src/models/PaginatedProductEnthusiasmsAllOf.js +0 -42
- package/wish/src/models/PaginatedWishesAllOf.d.ts +0 -28
- package/wish/src/models/PaginatedWishesAllOf.js +0 -42
- package/wish/src/models/ProductLinkAllOf.d.ts +0 -40
- package/wish/src/models/ProductLinkAllOf.js +0 -47
|
@@ -65,10 +65,10 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
65
65
|
};
|
|
66
66
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67
67
|
exports.GetInventoryOverstockProductsOrderByEnum = exports.GetInventoryMisalignedProductsOrderByEnum = exports.GetInventoryActiveProductsOrderByEnum = exports.GetCurrentInventoryOverstockProductsOrderByEnum = exports.GetCurrentInventoryMisalignedProductsOrderByEnum = exports.GetCurrentInventoryActiveProductsOrderByEnum = exports.SearchInventoryApi = void 0;
|
|
68
|
-
var
|
|
69
|
-
var
|
|
68
|
+
var runtime = require("../runtime");
|
|
69
|
+
var index_1 = require("../models/index");
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
*
|
|
72
72
|
*/
|
|
73
73
|
var SearchInventoryApi = /** @class */ (function (_super) {
|
|
74
74
|
__extends(SearchInventoryApi, _super);
|
|
@@ -78,75 +78,73 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
78
78
|
/**
|
|
79
79
|
* Search products with params for current user
|
|
80
80
|
*/
|
|
81
|
-
SearchInventoryApi.prototype.getCurrentInventoryActiveProductsRaw = function (requestParameters) {
|
|
81
|
+
SearchInventoryApi.prototype.getCurrentInventoryActiveProductsRaw = function (requestParameters, initOverrides) {
|
|
82
82
|
return __awaiter(this, void 0, void 0, function () {
|
|
83
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
84
|
-
return __generator(this, function (
|
|
85
|
-
switch (
|
|
83
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_1;
|
|
84
|
+
return __generator(this, function (_c) {
|
|
85
|
+
switch (_c.label) {
|
|
86
86
|
case 0:
|
|
87
87
|
queryParameters = {};
|
|
88
|
-
if (requestParameters
|
|
89
|
-
queryParameters['q'] = requestParameters
|
|
88
|
+
if (requestParameters['q'] != null) {
|
|
89
|
+
queryParameters['q'] = requestParameters['q'];
|
|
90
90
|
}
|
|
91
|
-
if (requestParameters
|
|
92
|
-
queryParameters['lab[eq]'] = requestParameters
|
|
91
|
+
if (requestParameters['labEq'] != null) {
|
|
92
|
+
queryParameters['lab[eq]'] = requestParameters['labEq'];
|
|
93
93
|
}
|
|
94
|
-
if (requestParameters
|
|
95
|
-
queryParameters['pt[eq]'] = requestParameters
|
|
94
|
+
if (requestParameters['ptEq'] != null) {
|
|
95
|
+
queryParameters['pt[eq]'] = requestParameters['ptEq'];
|
|
96
96
|
}
|
|
97
|
-
if (requestParameters
|
|
98
|
-
queryParameters['orderBy'] = requestParameters
|
|
97
|
+
if (requestParameters['orderBy'] != null) {
|
|
98
|
+
queryParameters['orderBy'] = requestParameters['orderBy'];
|
|
99
99
|
}
|
|
100
|
-
if (requestParameters
|
|
101
|
-
queryParameters['p'] = requestParameters
|
|
100
|
+
if (requestParameters['p'] != null) {
|
|
101
|
+
queryParameters['p'] = requestParameters['p'];
|
|
102
102
|
}
|
|
103
|
-
if (requestParameters
|
|
104
|
-
queryParameters['pp'] = requestParameters
|
|
103
|
+
if (requestParameters['pp'] != null) {
|
|
104
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
105
105
|
}
|
|
106
106
|
headerParameters = {};
|
|
107
|
-
if (this.configuration && this.configuration.apiKey)
|
|
108
|
-
|
|
109
|
-
|
|
107
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
108
|
+
_a = headerParameters;
|
|
109
|
+
_b = "x-api-key";
|
|
110
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
111
|
+
case 1:
|
|
112
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
113
|
+
_c.label = 2;
|
|
114
|
+
case 2:
|
|
110
115
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
111
116
|
token = this.configuration.accessToken;
|
|
112
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
113
117
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
114
|
-
case 1:
|
|
115
|
-
_a = _b.sent();
|
|
116
|
-
return [3 /*break*/, 3];
|
|
117
|
-
case 2:
|
|
118
|
-
_a = token;
|
|
119
|
-
_b.label = 3;
|
|
120
118
|
case 3:
|
|
121
|
-
tokenString =
|
|
119
|
+
tokenString = _c.sent();
|
|
122
120
|
if (tokenString) {
|
|
123
121
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
124
122
|
}
|
|
125
|
-
|
|
123
|
+
_c.label = 4;
|
|
126
124
|
case 4:
|
|
127
|
-
|
|
125
|
+
_c.trys.push([4, 6, , 7]);
|
|
128
126
|
return [4 /*yield*/, this.request({
|
|
129
127
|
path: "/inventories/me/active-products",
|
|
130
128
|
method: 'GET',
|
|
131
129
|
headers: headerParameters,
|
|
132
130
|
query: queryParameters,
|
|
133
|
-
})];
|
|
131
|
+
}, initOverrides)];
|
|
134
132
|
case 5:
|
|
135
|
-
response =
|
|
133
|
+
response = _c.sent();
|
|
136
134
|
contentType = response.headers.get("content-type");
|
|
137
135
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
138
|
-
return [2 /*return*/, new
|
|
136
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedActiveProductsFromJSON)(jsonValue); })];
|
|
139
137
|
}
|
|
140
138
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
141
|
-
return [2 /*return*/, new
|
|
139
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
142
140
|
}
|
|
143
141
|
else {
|
|
144
142
|
// TODO : Better handling of others application types
|
|
145
|
-
return [2 /*return*/, new
|
|
143
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
146
144
|
}
|
|
147
145
|
return [3 /*break*/, 7];
|
|
148
146
|
case 6:
|
|
149
|
-
response_1 =
|
|
147
|
+
response_1 = _c.sent();
|
|
150
148
|
console.debug(response_1);
|
|
151
149
|
throw response_1;
|
|
152
150
|
case 7: return [2 /*return*/];
|
|
@@ -157,12 +155,13 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
157
155
|
/**
|
|
158
156
|
* Search products with params for current user
|
|
159
157
|
*/
|
|
160
|
-
SearchInventoryApi.prototype.getCurrentInventoryActiveProducts = function (requestParameters) {
|
|
158
|
+
SearchInventoryApi.prototype.getCurrentInventoryActiveProducts = function (requestParameters, initOverrides) {
|
|
159
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
161
160
|
return __awaiter(this, void 0, void 0, function () {
|
|
162
161
|
var response;
|
|
163
162
|
return __generator(this, function (_a) {
|
|
164
163
|
switch (_a.label) {
|
|
165
|
-
case 0: return [4 /*yield*/, this.getCurrentInventoryActiveProductsRaw(requestParameters)];
|
|
164
|
+
case 0: return [4 /*yield*/, this.getCurrentInventoryActiveProductsRaw(requestParameters, initOverrides)];
|
|
166
165
|
case 1:
|
|
167
166
|
response = _a.sent();
|
|
168
167
|
return [4 /*yield*/, response.value()];
|
|
@@ -174,75 +173,73 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
174
173
|
/**
|
|
175
174
|
* Get product\'s where an action is required
|
|
176
175
|
*/
|
|
177
|
-
SearchInventoryApi.prototype.getCurrentInventoryMisalignedProductsRaw = function (requestParameters) {
|
|
176
|
+
SearchInventoryApi.prototype.getCurrentInventoryMisalignedProductsRaw = function (requestParameters, initOverrides) {
|
|
178
177
|
return __awaiter(this, void 0, void 0, function () {
|
|
179
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
180
|
-
return __generator(this, function (
|
|
181
|
-
switch (
|
|
178
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_2;
|
|
179
|
+
return __generator(this, function (_c) {
|
|
180
|
+
switch (_c.label) {
|
|
182
181
|
case 0:
|
|
183
182
|
queryParameters = {};
|
|
184
|
-
if (requestParameters
|
|
185
|
-
queryParameters['q'] = requestParameters
|
|
183
|
+
if (requestParameters['q'] != null) {
|
|
184
|
+
queryParameters['q'] = requestParameters['q'];
|
|
186
185
|
}
|
|
187
|
-
if (requestParameters
|
|
188
|
-
queryParameters['lab[eq]'] = requestParameters
|
|
186
|
+
if (requestParameters['labEq'] != null) {
|
|
187
|
+
queryParameters['lab[eq]'] = requestParameters['labEq'];
|
|
189
188
|
}
|
|
190
|
-
if (requestParameters
|
|
191
|
-
queryParameters['pt[eq]'] = requestParameters
|
|
189
|
+
if (requestParameters['ptEq'] != null) {
|
|
190
|
+
queryParameters['pt[eq]'] = requestParameters['ptEq'];
|
|
192
191
|
}
|
|
193
|
-
if (requestParameters
|
|
194
|
-
queryParameters['orderBy'] = requestParameters
|
|
192
|
+
if (requestParameters['orderBy'] != null) {
|
|
193
|
+
queryParameters['orderBy'] = requestParameters['orderBy'];
|
|
195
194
|
}
|
|
196
|
-
if (requestParameters
|
|
197
|
-
queryParameters['p'] = requestParameters
|
|
195
|
+
if (requestParameters['p'] != null) {
|
|
196
|
+
queryParameters['p'] = requestParameters['p'];
|
|
198
197
|
}
|
|
199
|
-
if (requestParameters
|
|
200
|
-
queryParameters['pp'] = requestParameters
|
|
198
|
+
if (requestParameters['pp'] != null) {
|
|
199
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
201
200
|
}
|
|
202
201
|
headerParameters = {};
|
|
203
|
-
if (this.configuration && this.configuration.apiKey)
|
|
204
|
-
|
|
205
|
-
|
|
202
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
203
|
+
_a = headerParameters;
|
|
204
|
+
_b = "x-api-key";
|
|
205
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
206
|
+
case 1:
|
|
207
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
208
|
+
_c.label = 2;
|
|
209
|
+
case 2:
|
|
206
210
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
207
211
|
token = this.configuration.accessToken;
|
|
208
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
209
212
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
210
|
-
case 1:
|
|
211
|
-
_a = _b.sent();
|
|
212
|
-
return [3 /*break*/, 3];
|
|
213
|
-
case 2:
|
|
214
|
-
_a = token;
|
|
215
|
-
_b.label = 3;
|
|
216
213
|
case 3:
|
|
217
|
-
tokenString =
|
|
214
|
+
tokenString = _c.sent();
|
|
218
215
|
if (tokenString) {
|
|
219
216
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
220
217
|
}
|
|
221
|
-
|
|
218
|
+
_c.label = 4;
|
|
222
219
|
case 4:
|
|
223
|
-
|
|
220
|
+
_c.trys.push([4, 6, , 7]);
|
|
224
221
|
return [4 /*yield*/, this.request({
|
|
225
222
|
path: "/inventories/me/misaligned-products",
|
|
226
223
|
method: 'GET',
|
|
227
224
|
headers: headerParameters,
|
|
228
225
|
query: queryParameters,
|
|
229
|
-
})];
|
|
226
|
+
}, initOverrides)];
|
|
230
227
|
case 5:
|
|
231
|
-
response =
|
|
228
|
+
response = _c.sent();
|
|
232
229
|
contentType = response.headers.get("content-type");
|
|
233
230
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
234
|
-
return [2 /*return*/, new
|
|
231
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedMisalignedProductsFromJSON)(jsonValue); })];
|
|
235
232
|
}
|
|
236
233
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
237
|
-
return [2 /*return*/, new
|
|
234
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
238
235
|
}
|
|
239
236
|
else {
|
|
240
237
|
// TODO : Better handling of others application types
|
|
241
|
-
return [2 /*return*/, new
|
|
238
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
242
239
|
}
|
|
243
240
|
return [3 /*break*/, 7];
|
|
244
241
|
case 6:
|
|
245
|
-
response_2 =
|
|
242
|
+
response_2 = _c.sent();
|
|
246
243
|
console.debug(response_2);
|
|
247
244
|
throw response_2;
|
|
248
245
|
case 7: return [2 /*return*/];
|
|
@@ -253,12 +250,13 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
253
250
|
/**
|
|
254
251
|
* Get product\'s where an action is required
|
|
255
252
|
*/
|
|
256
|
-
SearchInventoryApi.prototype.getCurrentInventoryMisalignedProducts = function (requestParameters) {
|
|
253
|
+
SearchInventoryApi.prototype.getCurrentInventoryMisalignedProducts = function (requestParameters, initOverrides) {
|
|
254
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
257
255
|
return __awaiter(this, void 0, void 0, function () {
|
|
258
256
|
var response;
|
|
259
257
|
return __generator(this, function (_a) {
|
|
260
258
|
switch (_a.label) {
|
|
261
|
-
case 0: return [4 /*yield*/, this.getCurrentInventoryMisalignedProductsRaw(requestParameters)];
|
|
259
|
+
case 0: return [4 /*yield*/, this.getCurrentInventoryMisalignedProductsRaw(requestParameters, initOverrides)];
|
|
262
260
|
case 1:
|
|
263
261
|
response = _a.sent();
|
|
264
262
|
return [4 /*yield*/, response.value()];
|
|
@@ -270,90 +268,88 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
270
268
|
/**
|
|
271
269
|
* Get products that the pharmacian should destock
|
|
272
270
|
*/
|
|
273
|
-
SearchInventoryApi.prototype.getCurrentInventoryOverstockProductsRaw = function (requestParameters) {
|
|
271
|
+
SearchInventoryApi.prototype.getCurrentInventoryOverstockProductsRaw = function (requestParameters, initOverrides) {
|
|
274
272
|
return __awaiter(this, void 0, void 0, function () {
|
|
275
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
276
|
-
return __generator(this, function (
|
|
277
|
-
switch (
|
|
273
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_3;
|
|
274
|
+
return __generator(this, function (_c) {
|
|
275
|
+
switch (_c.label) {
|
|
278
276
|
case 0:
|
|
279
277
|
queryParameters = {};
|
|
280
|
-
if (requestParameters
|
|
281
|
-
queryParameters['q'] = requestParameters
|
|
278
|
+
if (requestParameters['q'] != null) {
|
|
279
|
+
queryParameters['q'] = requestParameters['q'];
|
|
282
280
|
}
|
|
283
|
-
if (requestParameters
|
|
284
|
-
queryParameters['lab[eq]'] = requestParameters
|
|
281
|
+
if (requestParameters['labEq'] != null) {
|
|
282
|
+
queryParameters['lab[eq]'] = requestParameters['labEq'];
|
|
285
283
|
}
|
|
286
|
-
if (requestParameters
|
|
287
|
-
queryParameters['pt[eq]'] = requestParameters
|
|
284
|
+
if (requestParameters['ptEq'] != null) {
|
|
285
|
+
queryParameters['pt[eq]'] = requestParameters['ptEq'];
|
|
288
286
|
}
|
|
289
|
-
if (requestParameters
|
|
290
|
-
queryParameters['bl[eq]'] = requestParameters
|
|
287
|
+
if (requestParameters['blEq'] != null) {
|
|
288
|
+
queryParameters['bl[eq]'] = requestParameters['blEq'];
|
|
291
289
|
}
|
|
292
|
-
if (requestParameters
|
|
293
|
-
queryParameters['forecast[gte]'] = requestParameters
|
|
290
|
+
if (requestParameters['forecastGte'] != null) {
|
|
291
|
+
queryParameters['forecast[gte]'] = requestParameters['forecastGte'];
|
|
294
292
|
}
|
|
295
|
-
if (requestParameters
|
|
296
|
-
queryParameters['forecast[lte]'] = requestParameters
|
|
293
|
+
if (requestParameters['forecastLte'] != null) {
|
|
294
|
+
queryParameters['forecast[lte]'] = requestParameters['forecastLte'];
|
|
297
295
|
}
|
|
298
|
-
if (requestParameters
|
|
299
|
-
queryParameters['forecast[pr]'] = requestParameters
|
|
296
|
+
if (requestParameters['forecastPr'] != null) {
|
|
297
|
+
queryParameters['forecast[pr]'] = requestParameters['forecastPr'];
|
|
300
298
|
}
|
|
301
|
-
if (requestParameters
|
|
302
|
-
queryParameters['isUnsold[eq]'] = requestParameters
|
|
299
|
+
if (requestParameters['isUnsoldEq'] != null) {
|
|
300
|
+
queryParameters['isUnsold[eq]'] = requestParameters['isUnsoldEq'];
|
|
303
301
|
}
|
|
304
|
-
if (requestParameters
|
|
305
|
-
queryParameters['orderBy'] = requestParameters
|
|
302
|
+
if (requestParameters['orderBy'] != null) {
|
|
303
|
+
queryParameters['orderBy'] = requestParameters['orderBy'];
|
|
306
304
|
}
|
|
307
|
-
if (requestParameters
|
|
308
|
-
queryParameters['p'] = requestParameters
|
|
305
|
+
if (requestParameters['p'] != null) {
|
|
306
|
+
queryParameters['p'] = requestParameters['p'];
|
|
309
307
|
}
|
|
310
|
-
if (requestParameters
|
|
311
|
-
queryParameters['pp'] = requestParameters
|
|
308
|
+
if (requestParameters['pp'] != null) {
|
|
309
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
312
310
|
}
|
|
313
311
|
headerParameters = {};
|
|
314
|
-
if (this.configuration && this.configuration.apiKey)
|
|
315
|
-
|
|
316
|
-
|
|
312
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
313
|
+
_a = headerParameters;
|
|
314
|
+
_b = "x-api-key";
|
|
315
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
316
|
+
case 1:
|
|
317
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
318
|
+
_c.label = 2;
|
|
319
|
+
case 2:
|
|
317
320
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
318
321
|
token = this.configuration.accessToken;
|
|
319
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
320
322
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
321
|
-
case 1:
|
|
322
|
-
_a = _b.sent();
|
|
323
|
-
return [3 /*break*/, 3];
|
|
324
|
-
case 2:
|
|
325
|
-
_a = token;
|
|
326
|
-
_b.label = 3;
|
|
327
323
|
case 3:
|
|
328
|
-
tokenString =
|
|
324
|
+
tokenString = _c.sent();
|
|
329
325
|
if (tokenString) {
|
|
330
326
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
331
327
|
}
|
|
332
|
-
|
|
328
|
+
_c.label = 4;
|
|
333
329
|
case 4:
|
|
334
|
-
|
|
330
|
+
_c.trys.push([4, 6, , 7]);
|
|
335
331
|
return [4 /*yield*/, this.request({
|
|
336
332
|
path: "/inventories/me/overstock-products",
|
|
337
333
|
method: 'GET',
|
|
338
334
|
headers: headerParameters,
|
|
339
335
|
query: queryParameters,
|
|
340
|
-
})];
|
|
336
|
+
}, initOverrides)];
|
|
341
337
|
case 5:
|
|
342
|
-
response =
|
|
338
|
+
response = _c.sent();
|
|
343
339
|
contentType = response.headers.get("content-type");
|
|
344
340
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
345
|
-
return [2 /*return*/, new
|
|
341
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedOverstockProductsFromJSON)(jsonValue); })];
|
|
346
342
|
}
|
|
347
343
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
348
|
-
return [2 /*return*/, new
|
|
344
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
349
345
|
}
|
|
350
346
|
else {
|
|
351
347
|
// TODO : Better handling of others application types
|
|
352
|
-
return [2 /*return*/, new
|
|
348
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
353
349
|
}
|
|
354
350
|
return [3 /*break*/, 7];
|
|
355
351
|
case 6:
|
|
356
|
-
response_3 =
|
|
352
|
+
response_3 = _c.sent();
|
|
357
353
|
console.debug(response_3);
|
|
358
354
|
throw response_3;
|
|
359
355
|
case 7: return [2 /*return*/];
|
|
@@ -364,12 +360,13 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
364
360
|
/**
|
|
365
361
|
* Get products that the pharmacian should destock
|
|
366
362
|
*/
|
|
367
|
-
SearchInventoryApi.prototype.getCurrentInventoryOverstockProducts = function (requestParameters) {
|
|
363
|
+
SearchInventoryApi.prototype.getCurrentInventoryOverstockProducts = function (requestParameters, initOverrides) {
|
|
364
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
368
365
|
return __awaiter(this, void 0, void 0, function () {
|
|
369
366
|
var response;
|
|
370
367
|
return __generator(this, function (_a) {
|
|
371
368
|
switch (_a.label) {
|
|
372
|
-
case 0: return [4 /*yield*/, this.getCurrentInventoryOverstockProductsRaw(requestParameters)];
|
|
369
|
+
case 0: return [4 /*yield*/, this.getCurrentInventoryOverstockProductsRaw(requestParameters, initOverrides)];
|
|
373
370
|
case 1:
|
|
374
371
|
response = _a.sent();
|
|
375
372
|
return [4 /*yield*/, response.value()];
|
|
@@ -381,57 +378,61 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
381
378
|
/**
|
|
382
379
|
* Get advices statistics
|
|
383
380
|
*/
|
|
384
|
-
SearchInventoryApi.prototype.getCurrentInventoryStatisticsRaw = function () {
|
|
381
|
+
SearchInventoryApi.prototype.getCurrentInventoryStatisticsRaw = function (requestParameters, initOverrides) {
|
|
385
382
|
return __awaiter(this, void 0, void 0, function () {
|
|
386
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
387
|
-
return __generator(this, function (
|
|
388
|
-
switch (
|
|
383
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_4;
|
|
384
|
+
return __generator(this, function (_c) {
|
|
385
|
+
switch (_c.label) {
|
|
389
386
|
case 0:
|
|
390
387
|
queryParameters = {};
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
388
|
+
if (requestParameters['overstockBlEq'] != null) {
|
|
389
|
+
queryParameters['overstockBl[eq]'] = requestParameters['overstockBlEq'];
|
|
390
|
+
}
|
|
391
|
+
if (requestParameters['overstockForecastGte'] != null) {
|
|
392
|
+
queryParameters['overstockForecast[gte]'] = requestParameters['overstockForecastGte'];
|
|
394
393
|
}
|
|
394
|
+
headerParameters = {};
|
|
395
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
396
|
+
_a = headerParameters;
|
|
397
|
+
_b = "x-api-key";
|
|
398
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
399
|
+
case 1:
|
|
400
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
401
|
+
_c.label = 2;
|
|
402
|
+
case 2:
|
|
395
403
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
396
404
|
token = this.configuration.accessToken;
|
|
397
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
398
405
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
399
|
-
case 1:
|
|
400
|
-
_a = _b.sent();
|
|
401
|
-
return [3 /*break*/, 3];
|
|
402
|
-
case 2:
|
|
403
|
-
_a = token;
|
|
404
|
-
_b.label = 3;
|
|
405
406
|
case 3:
|
|
406
|
-
tokenString =
|
|
407
|
+
tokenString = _c.sent();
|
|
407
408
|
if (tokenString) {
|
|
408
409
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
409
410
|
}
|
|
410
|
-
|
|
411
|
+
_c.label = 4;
|
|
411
412
|
case 4:
|
|
412
|
-
|
|
413
|
+
_c.trys.push([4, 6, , 7]);
|
|
413
414
|
return [4 /*yield*/, this.request({
|
|
414
415
|
path: "/inventories/me/statistics",
|
|
415
416
|
method: 'GET',
|
|
416
417
|
headers: headerParameters,
|
|
417
418
|
query: queryParameters,
|
|
418
|
-
})];
|
|
419
|
+
}, initOverrides)];
|
|
419
420
|
case 5:
|
|
420
|
-
response =
|
|
421
|
+
response = _c.sent();
|
|
421
422
|
contentType = response.headers.get("content-type");
|
|
422
423
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
423
|
-
return [2 /*return*/, new
|
|
424
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.StatisticsFromJSON)(jsonValue); })];
|
|
424
425
|
}
|
|
425
426
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
426
|
-
return [2 /*return*/, new
|
|
427
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
427
428
|
}
|
|
428
429
|
else {
|
|
429
430
|
// TODO : Better handling of others application types
|
|
430
|
-
return [2 /*return*/, new
|
|
431
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
431
432
|
}
|
|
432
433
|
return [3 /*break*/, 7];
|
|
433
434
|
case 6:
|
|
434
|
-
response_4 =
|
|
435
|
+
response_4 = _c.sent();
|
|
435
436
|
console.debug(response_4);
|
|
436
437
|
throw response_4;
|
|
437
438
|
case 7: return [2 /*return*/];
|
|
@@ -442,12 +443,13 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
442
443
|
/**
|
|
443
444
|
* Get advices statistics
|
|
444
445
|
*/
|
|
445
|
-
SearchInventoryApi.prototype.getCurrentInventoryStatistics = function () {
|
|
446
|
+
SearchInventoryApi.prototype.getCurrentInventoryStatistics = function (requestParameters, initOverrides) {
|
|
447
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
446
448
|
return __awaiter(this, void 0, void 0, function () {
|
|
447
449
|
var response;
|
|
448
450
|
return __generator(this, function (_a) {
|
|
449
451
|
switch (_a.label) {
|
|
450
|
-
case 0: return [4 /*yield*/, this.getCurrentInventoryStatisticsRaw()];
|
|
452
|
+
case 0: return [4 /*yield*/, this.getCurrentInventoryStatisticsRaw(requestParameters, initOverrides)];
|
|
451
453
|
case 1:
|
|
452
454
|
response = _a.sent();
|
|
453
455
|
return [4 /*yield*/, response.value()];
|
|
@@ -457,60 +459,66 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
457
459
|
});
|
|
458
460
|
};
|
|
459
461
|
/**
|
|
460
|
-
*
|
|
461
|
-
* Get synchronization state of inventory
|
|
462
|
+
* Get all inventories
|
|
462
463
|
*/
|
|
463
|
-
SearchInventoryApi.prototype.
|
|
464
|
+
SearchInventoryApi.prototype.getInventoriesRaw = function (requestParameters, initOverrides) {
|
|
464
465
|
return __awaiter(this, void 0, void 0, function () {
|
|
465
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
466
|
-
return __generator(this, function (
|
|
467
|
-
switch (
|
|
466
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_5;
|
|
467
|
+
return __generator(this, function (_c) {
|
|
468
|
+
switch (_c.label) {
|
|
468
469
|
case 0:
|
|
469
470
|
queryParameters = {};
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
headerParameters["x-api-key"] = this.configuration.apiKey("x-api-key"); // apiKeyAuth authentication
|
|
471
|
+
if (requestParameters['idEq'] != null) {
|
|
472
|
+
queryParameters['id[eq]'] = requestParameters['idEq'];
|
|
473
473
|
}
|
|
474
|
+
if (requestParameters['p'] != null) {
|
|
475
|
+
queryParameters['p'] = requestParameters['p'];
|
|
476
|
+
}
|
|
477
|
+
if (requestParameters['pp'] != null) {
|
|
478
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
479
|
+
}
|
|
480
|
+
headerParameters = {};
|
|
481
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
482
|
+
_a = headerParameters;
|
|
483
|
+
_b = "x-api-key";
|
|
484
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
485
|
+
case 1:
|
|
486
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
487
|
+
_c.label = 2;
|
|
488
|
+
case 2:
|
|
474
489
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
475
490
|
token = this.configuration.accessToken;
|
|
476
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
477
491
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
478
|
-
case 1:
|
|
479
|
-
_a = _b.sent();
|
|
480
|
-
return [3 /*break*/, 3];
|
|
481
|
-
case 2:
|
|
482
|
-
_a = token;
|
|
483
|
-
_b.label = 3;
|
|
484
492
|
case 3:
|
|
485
|
-
tokenString =
|
|
493
|
+
tokenString = _c.sent();
|
|
486
494
|
if (tokenString) {
|
|
487
495
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
488
496
|
}
|
|
489
|
-
|
|
497
|
+
_c.label = 4;
|
|
490
498
|
case 4:
|
|
491
|
-
|
|
499
|
+
_c.trys.push([4, 6, , 7]);
|
|
492
500
|
return [4 /*yield*/, this.request({
|
|
493
|
-
path: "/inventories
|
|
501
|
+
path: "/inventories",
|
|
494
502
|
method: 'GET',
|
|
495
503
|
headers: headerParameters,
|
|
496
504
|
query: queryParameters,
|
|
497
|
-
})];
|
|
505
|
+
}, initOverrides)];
|
|
498
506
|
case 5:
|
|
499
|
-
response =
|
|
507
|
+
response = _c.sent();
|
|
500
508
|
contentType = response.headers.get("content-type");
|
|
501
509
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
502
|
-
return [2 /*return*/, new
|
|
510
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedInventoriesFromJSON)(jsonValue); })];
|
|
503
511
|
}
|
|
504
512
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
505
|
-
return [2 /*return*/, new
|
|
513
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
506
514
|
}
|
|
507
515
|
else {
|
|
508
516
|
// TODO : Better handling of others application types
|
|
509
|
-
return [2 /*return*/, new
|
|
517
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
510
518
|
}
|
|
511
519
|
return [3 /*break*/, 7];
|
|
512
520
|
case 6:
|
|
513
|
-
response_5 =
|
|
521
|
+
response_5 = _c.sent();
|
|
514
522
|
console.debug(response_5);
|
|
515
523
|
throw response_5;
|
|
516
524
|
case 7: return [2 /*return*/];
|
|
@@ -519,15 +527,15 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
519
527
|
});
|
|
520
528
|
};
|
|
521
529
|
/**
|
|
522
|
-
*
|
|
523
|
-
* Get synchronization state of inventory
|
|
530
|
+
* Get all inventories
|
|
524
531
|
*/
|
|
525
|
-
SearchInventoryApi.prototype.
|
|
532
|
+
SearchInventoryApi.prototype.getInventories = function (requestParameters, initOverrides) {
|
|
533
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
526
534
|
return __awaiter(this, void 0, void 0, function () {
|
|
527
535
|
var response;
|
|
528
536
|
return __generator(this, function (_a) {
|
|
529
537
|
switch (_a.label) {
|
|
530
|
-
case 0: return [4 /*yield*/, this.
|
|
538
|
+
case 0: return [4 /*yield*/, this.getInventoriesRaw(requestParameters, initOverrides)];
|
|
531
539
|
case 1:
|
|
532
540
|
response = _a.sent();
|
|
533
541
|
return [4 /*yield*/, response.value()];
|
|
@@ -537,80 +545,60 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
537
545
|
});
|
|
538
546
|
};
|
|
539
547
|
/**
|
|
540
|
-
*
|
|
548
|
+
* Get inventory by id
|
|
541
549
|
*/
|
|
542
|
-
SearchInventoryApi.prototype.
|
|
550
|
+
SearchInventoryApi.prototype.getInventoryRaw = function (requestParameters, initOverrides) {
|
|
543
551
|
return __awaiter(this, void 0, void 0, function () {
|
|
544
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
545
|
-
return __generator(this, function (
|
|
546
|
-
switch (
|
|
552
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_6;
|
|
553
|
+
return __generator(this, function (_c) {
|
|
554
|
+
switch (_c.label) {
|
|
547
555
|
case 0:
|
|
548
|
-
if (requestParameters
|
|
549
|
-
throw new
|
|
556
|
+
if (requestParameters['inventoryId'] == null) {
|
|
557
|
+
throw new runtime.RequiredError('inventoryId', 'Required parameter "inventoryId" was null or undefined when calling getInventory().');
|
|
550
558
|
}
|
|
551
559
|
queryParameters = {};
|
|
552
|
-
if (requestParameters.q !== undefined) {
|
|
553
|
-
queryParameters['q'] = requestParameters.q;
|
|
554
|
-
}
|
|
555
|
-
if (requestParameters.labEq) {
|
|
556
|
-
queryParameters['lab[eq]'] = requestParameters.labEq;
|
|
557
|
-
}
|
|
558
|
-
if (requestParameters.ptEq !== undefined) {
|
|
559
|
-
queryParameters['pt[eq]'] = requestParameters.ptEq;
|
|
560
|
-
}
|
|
561
|
-
if (requestParameters.orderBy !== undefined) {
|
|
562
|
-
queryParameters['orderBy'] = requestParameters.orderBy;
|
|
563
|
-
}
|
|
564
|
-
if (requestParameters.p !== undefined) {
|
|
565
|
-
queryParameters['p'] = requestParameters.p;
|
|
566
|
-
}
|
|
567
|
-
if (requestParameters.pp !== undefined) {
|
|
568
|
-
queryParameters['pp'] = requestParameters.pp;
|
|
569
|
-
}
|
|
570
560
|
headerParameters = {};
|
|
571
|
-
if (this.configuration && this.configuration.apiKey)
|
|
572
|
-
|
|
573
|
-
|
|
561
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
562
|
+
_a = headerParameters;
|
|
563
|
+
_b = "x-api-key";
|
|
564
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
565
|
+
case 1:
|
|
566
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
567
|
+
_c.label = 2;
|
|
568
|
+
case 2:
|
|
574
569
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
575
570
|
token = this.configuration.accessToken;
|
|
576
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
577
571
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
578
|
-
case 1:
|
|
579
|
-
_a = _b.sent();
|
|
580
|
-
return [3 /*break*/, 3];
|
|
581
|
-
case 2:
|
|
582
|
-
_a = token;
|
|
583
|
-
_b.label = 3;
|
|
584
572
|
case 3:
|
|
585
|
-
tokenString =
|
|
573
|
+
tokenString = _c.sent();
|
|
586
574
|
if (tokenString) {
|
|
587
575
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
588
576
|
}
|
|
589
|
-
|
|
577
|
+
_c.label = 4;
|
|
590
578
|
case 4:
|
|
591
|
-
|
|
579
|
+
_c.trys.push([4, 6, , 7]);
|
|
592
580
|
return [4 /*yield*/, this.request({
|
|
593
|
-
path: "/inventories/{inventoryId}
|
|
581
|
+
path: "/inventories/{inventoryId}".replace("{".concat("inventoryId", "}"), encodeURIComponent(String(requestParameters['inventoryId']))),
|
|
594
582
|
method: 'GET',
|
|
595
583
|
headers: headerParameters,
|
|
596
584
|
query: queryParameters,
|
|
597
|
-
})];
|
|
585
|
+
}, initOverrides)];
|
|
598
586
|
case 5:
|
|
599
|
-
response =
|
|
587
|
+
response = _c.sent();
|
|
600
588
|
contentType = response.headers.get("content-type");
|
|
601
589
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
602
|
-
return [2 /*return*/, new
|
|
590
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.InventoryFromJSON)(jsonValue); })];
|
|
603
591
|
}
|
|
604
592
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
605
|
-
return [2 /*return*/, new
|
|
593
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
606
594
|
}
|
|
607
595
|
else {
|
|
608
596
|
// TODO : Better handling of others application types
|
|
609
|
-
return [2 /*return*/, new
|
|
597
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
610
598
|
}
|
|
611
599
|
return [3 /*break*/, 7];
|
|
612
600
|
case 6:
|
|
613
|
-
response_6 =
|
|
601
|
+
response_6 = _c.sent();
|
|
614
602
|
console.debug(response_6);
|
|
615
603
|
throw response_6;
|
|
616
604
|
case 7: return [2 /*return*/];
|
|
@@ -619,14 +607,14 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
619
607
|
});
|
|
620
608
|
};
|
|
621
609
|
/**
|
|
622
|
-
*
|
|
610
|
+
* Get inventory by id
|
|
623
611
|
*/
|
|
624
|
-
SearchInventoryApi.prototype.
|
|
612
|
+
SearchInventoryApi.prototype.getInventory = function (requestParameters, initOverrides) {
|
|
625
613
|
return __awaiter(this, void 0, void 0, function () {
|
|
626
614
|
var response;
|
|
627
615
|
return __generator(this, function (_a) {
|
|
628
616
|
switch (_a.label) {
|
|
629
|
-
case 0: return [4 /*yield*/, this.
|
|
617
|
+
case 0: return [4 /*yield*/, this.getInventoryRaw(requestParameters, initOverrides)];
|
|
630
618
|
case 1:
|
|
631
619
|
response = _a.sent();
|
|
632
620
|
return [4 /*yield*/, response.value()];
|
|
@@ -636,80 +624,78 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
636
624
|
});
|
|
637
625
|
};
|
|
638
626
|
/**
|
|
639
|
-
*
|
|
627
|
+
* Search products with params for an inventory
|
|
640
628
|
*/
|
|
641
|
-
SearchInventoryApi.prototype.
|
|
629
|
+
SearchInventoryApi.prototype.getInventoryActiveProductsRaw = function (requestParameters, initOverrides) {
|
|
642
630
|
return __awaiter(this, void 0, void 0, function () {
|
|
643
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
644
|
-
return __generator(this, function (
|
|
645
|
-
switch (
|
|
631
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_7;
|
|
632
|
+
return __generator(this, function (_c) {
|
|
633
|
+
switch (_c.label) {
|
|
646
634
|
case 0:
|
|
647
|
-
if (requestParameters
|
|
648
|
-
throw new
|
|
635
|
+
if (requestParameters['inventoryId'] == null) {
|
|
636
|
+
throw new runtime.RequiredError('inventoryId', 'Required parameter "inventoryId" was null or undefined when calling getInventoryActiveProducts().');
|
|
649
637
|
}
|
|
650
638
|
queryParameters = {};
|
|
651
|
-
if (requestParameters
|
|
652
|
-
queryParameters['q'] = requestParameters
|
|
639
|
+
if (requestParameters['q'] != null) {
|
|
640
|
+
queryParameters['q'] = requestParameters['q'];
|
|
653
641
|
}
|
|
654
|
-
if (requestParameters
|
|
655
|
-
queryParameters['lab[eq]'] = requestParameters
|
|
642
|
+
if (requestParameters['labEq'] != null) {
|
|
643
|
+
queryParameters['lab[eq]'] = requestParameters['labEq'];
|
|
656
644
|
}
|
|
657
|
-
if (requestParameters
|
|
658
|
-
queryParameters['pt[eq]'] = requestParameters
|
|
645
|
+
if (requestParameters['ptEq'] != null) {
|
|
646
|
+
queryParameters['pt[eq]'] = requestParameters['ptEq'];
|
|
659
647
|
}
|
|
660
|
-
if (requestParameters
|
|
661
|
-
queryParameters['orderBy'] = requestParameters
|
|
648
|
+
if (requestParameters['orderBy'] != null) {
|
|
649
|
+
queryParameters['orderBy'] = requestParameters['orderBy'];
|
|
662
650
|
}
|
|
663
|
-
if (requestParameters
|
|
664
|
-
queryParameters['p'] = requestParameters
|
|
651
|
+
if (requestParameters['p'] != null) {
|
|
652
|
+
queryParameters['p'] = requestParameters['p'];
|
|
665
653
|
}
|
|
666
|
-
if (requestParameters
|
|
667
|
-
queryParameters['pp'] = requestParameters
|
|
654
|
+
if (requestParameters['pp'] != null) {
|
|
655
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
668
656
|
}
|
|
669
657
|
headerParameters = {};
|
|
670
|
-
if (this.configuration && this.configuration.apiKey)
|
|
671
|
-
|
|
672
|
-
|
|
658
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
659
|
+
_a = headerParameters;
|
|
660
|
+
_b = "x-api-key";
|
|
661
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
662
|
+
case 1:
|
|
663
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
664
|
+
_c.label = 2;
|
|
665
|
+
case 2:
|
|
673
666
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
674
667
|
token = this.configuration.accessToken;
|
|
675
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
676
668
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
677
|
-
case 1:
|
|
678
|
-
_a = _b.sent();
|
|
679
|
-
return [3 /*break*/, 3];
|
|
680
|
-
case 2:
|
|
681
|
-
_a = token;
|
|
682
|
-
_b.label = 3;
|
|
683
669
|
case 3:
|
|
684
|
-
tokenString =
|
|
670
|
+
tokenString = _c.sent();
|
|
685
671
|
if (tokenString) {
|
|
686
672
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
687
673
|
}
|
|
688
|
-
|
|
674
|
+
_c.label = 4;
|
|
689
675
|
case 4:
|
|
690
|
-
|
|
676
|
+
_c.trys.push([4, 6, , 7]);
|
|
691
677
|
return [4 /*yield*/, this.request({
|
|
692
|
-
path: "/inventories/{inventoryId}/
|
|
678
|
+
path: "/inventories/{inventoryId}/active-products".replace("{".concat("inventoryId", "}"), encodeURIComponent(String(requestParameters['inventoryId']))),
|
|
693
679
|
method: 'GET',
|
|
694
680
|
headers: headerParameters,
|
|
695
681
|
query: queryParameters,
|
|
696
|
-
})];
|
|
682
|
+
}, initOverrides)];
|
|
697
683
|
case 5:
|
|
698
|
-
response =
|
|
684
|
+
response = _c.sent();
|
|
699
685
|
contentType = response.headers.get("content-type");
|
|
700
686
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
701
|
-
return [2 /*return*/, new
|
|
687
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedActiveProductsFromJSON)(jsonValue); })];
|
|
702
688
|
}
|
|
703
689
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
704
|
-
return [2 /*return*/, new
|
|
690
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
705
691
|
}
|
|
706
692
|
else {
|
|
707
693
|
// TODO : Better handling of others application types
|
|
708
|
-
return [2 /*return*/, new
|
|
694
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
709
695
|
}
|
|
710
696
|
return [3 /*break*/, 7];
|
|
711
697
|
case 6:
|
|
712
|
-
response_7 =
|
|
698
|
+
response_7 = _c.sent();
|
|
713
699
|
console.debug(response_7);
|
|
714
700
|
throw response_7;
|
|
715
701
|
case 7: return [2 /*return*/];
|
|
@@ -718,14 +704,14 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
718
704
|
});
|
|
719
705
|
};
|
|
720
706
|
/**
|
|
721
|
-
*
|
|
707
|
+
* Search products with params for an inventory
|
|
722
708
|
*/
|
|
723
|
-
SearchInventoryApi.prototype.
|
|
709
|
+
SearchInventoryApi.prototype.getInventoryActiveProducts = function (requestParameters, initOverrides) {
|
|
724
710
|
return __awaiter(this, void 0, void 0, function () {
|
|
725
711
|
var response;
|
|
726
712
|
return __generator(this, function (_a) {
|
|
727
713
|
switch (_a.label) {
|
|
728
|
-
case 0: return [4 /*yield*/, this.
|
|
714
|
+
case 0: return [4 /*yield*/, this.getInventoryActiveProductsRaw(requestParameters, initOverrides)];
|
|
729
715
|
case 1:
|
|
730
716
|
response = _a.sent();
|
|
731
717
|
return [4 /*yield*/, response.value()];
|
|
@@ -735,95 +721,78 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
735
721
|
});
|
|
736
722
|
};
|
|
737
723
|
/**
|
|
738
|
-
* Get
|
|
724
|
+
* Get product\'s where an action is required
|
|
739
725
|
*/
|
|
740
|
-
SearchInventoryApi.prototype.
|
|
726
|
+
SearchInventoryApi.prototype.getInventoryMisalignedProductsRaw = function (requestParameters, initOverrides) {
|
|
741
727
|
return __awaiter(this, void 0, void 0, function () {
|
|
742
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
743
|
-
return __generator(this, function (
|
|
744
|
-
switch (
|
|
728
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_8;
|
|
729
|
+
return __generator(this, function (_c) {
|
|
730
|
+
switch (_c.label) {
|
|
745
731
|
case 0:
|
|
746
|
-
if (requestParameters
|
|
747
|
-
throw new
|
|
732
|
+
if (requestParameters['inventoryId'] == null) {
|
|
733
|
+
throw new runtime.RequiredError('inventoryId', 'Required parameter "inventoryId" was null or undefined when calling getInventoryMisalignedProducts().');
|
|
748
734
|
}
|
|
749
735
|
queryParameters = {};
|
|
750
|
-
if (requestParameters
|
|
751
|
-
queryParameters['q'] = requestParameters
|
|
752
|
-
}
|
|
753
|
-
if (requestParameters.labEq) {
|
|
754
|
-
queryParameters['lab[eq]'] = requestParameters.labEq;
|
|
755
|
-
}
|
|
756
|
-
if (requestParameters.ptEq !== undefined) {
|
|
757
|
-
queryParameters['pt[eq]'] = requestParameters.ptEq;
|
|
758
|
-
}
|
|
759
|
-
if (requestParameters.blEq !== undefined) {
|
|
760
|
-
queryParameters['bl[eq]'] = requestParameters.blEq;
|
|
736
|
+
if (requestParameters['q'] != null) {
|
|
737
|
+
queryParameters['q'] = requestParameters['q'];
|
|
761
738
|
}
|
|
762
|
-
if (requestParameters
|
|
763
|
-
queryParameters['
|
|
739
|
+
if (requestParameters['labEq'] != null) {
|
|
740
|
+
queryParameters['lab[eq]'] = requestParameters['labEq'];
|
|
764
741
|
}
|
|
765
|
-
if (requestParameters
|
|
766
|
-
queryParameters['
|
|
742
|
+
if (requestParameters['ptEq'] != null) {
|
|
743
|
+
queryParameters['pt[eq]'] = requestParameters['ptEq'];
|
|
767
744
|
}
|
|
768
|
-
if (requestParameters
|
|
769
|
-
queryParameters['
|
|
745
|
+
if (requestParameters['orderBy'] != null) {
|
|
746
|
+
queryParameters['orderBy'] = requestParameters['orderBy'];
|
|
770
747
|
}
|
|
771
|
-
if (requestParameters
|
|
772
|
-
queryParameters['
|
|
748
|
+
if (requestParameters['p'] != null) {
|
|
749
|
+
queryParameters['p'] = requestParameters['p'];
|
|
773
750
|
}
|
|
774
|
-
if (requestParameters
|
|
775
|
-
queryParameters['
|
|
776
|
-
}
|
|
777
|
-
if (requestParameters.p !== undefined) {
|
|
778
|
-
queryParameters['p'] = requestParameters.p;
|
|
779
|
-
}
|
|
780
|
-
if (requestParameters.pp !== undefined) {
|
|
781
|
-
queryParameters['pp'] = requestParameters.pp;
|
|
751
|
+
if (requestParameters['pp'] != null) {
|
|
752
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
782
753
|
}
|
|
783
754
|
headerParameters = {};
|
|
784
|
-
if (this.configuration && this.configuration.apiKey)
|
|
785
|
-
|
|
786
|
-
|
|
755
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
756
|
+
_a = headerParameters;
|
|
757
|
+
_b = "x-api-key";
|
|
758
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
759
|
+
case 1:
|
|
760
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
761
|
+
_c.label = 2;
|
|
762
|
+
case 2:
|
|
787
763
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
788
764
|
token = this.configuration.accessToken;
|
|
789
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
790
765
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
791
|
-
case 1:
|
|
792
|
-
_a = _b.sent();
|
|
793
|
-
return [3 /*break*/, 3];
|
|
794
|
-
case 2:
|
|
795
|
-
_a = token;
|
|
796
|
-
_b.label = 3;
|
|
797
766
|
case 3:
|
|
798
|
-
tokenString =
|
|
767
|
+
tokenString = _c.sent();
|
|
799
768
|
if (tokenString) {
|
|
800
769
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
801
770
|
}
|
|
802
|
-
|
|
771
|
+
_c.label = 4;
|
|
803
772
|
case 4:
|
|
804
|
-
|
|
773
|
+
_c.trys.push([4, 6, , 7]);
|
|
805
774
|
return [4 /*yield*/, this.request({
|
|
806
|
-
path: "/inventories/{inventoryId}/
|
|
775
|
+
path: "/inventories/{inventoryId}/misaligned-products".replace("{".concat("inventoryId", "}"), encodeURIComponent(String(requestParameters['inventoryId']))),
|
|
807
776
|
method: 'GET',
|
|
808
777
|
headers: headerParameters,
|
|
809
778
|
query: queryParameters,
|
|
810
|
-
})];
|
|
779
|
+
}, initOverrides)];
|
|
811
780
|
case 5:
|
|
812
|
-
response =
|
|
781
|
+
response = _c.sent();
|
|
813
782
|
contentType = response.headers.get("content-type");
|
|
814
783
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
815
|
-
return [2 /*return*/, new
|
|
784
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedMisalignedProductsFromJSON)(jsonValue); })];
|
|
816
785
|
}
|
|
817
786
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
818
|
-
return [2 /*return*/, new
|
|
787
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
819
788
|
}
|
|
820
789
|
else {
|
|
821
790
|
// TODO : Better handling of others application types
|
|
822
|
-
return [2 /*return*/, new
|
|
791
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
823
792
|
}
|
|
824
793
|
return [3 /*break*/, 7];
|
|
825
794
|
case 6:
|
|
826
|
-
response_8 =
|
|
795
|
+
response_8 = _c.sent();
|
|
827
796
|
console.debug(response_8);
|
|
828
797
|
throw response_8;
|
|
829
798
|
case 7: return [2 /*return*/];
|
|
@@ -832,14 +801,14 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
832
801
|
});
|
|
833
802
|
};
|
|
834
803
|
/**
|
|
835
|
-
* Get
|
|
804
|
+
* Get product\'s where an action is required
|
|
836
805
|
*/
|
|
837
|
-
SearchInventoryApi.prototype.
|
|
806
|
+
SearchInventoryApi.prototype.getInventoryMisalignedProducts = function (requestParameters, initOverrides) {
|
|
838
807
|
return __awaiter(this, void 0, void 0, function () {
|
|
839
808
|
var response;
|
|
840
809
|
return __generator(this, function (_a) {
|
|
841
810
|
switch (_a.label) {
|
|
842
|
-
case 0: return [4 /*yield*/, this.
|
|
811
|
+
case 0: return [4 /*yield*/, this.getInventoryMisalignedProductsRaw(requestParameters, initOverrides)];
|
|
843
812
|
case 1:
|
|
844
813
|
response = _a.sent();
|
|
845
814
|
return [4 /*yield*/, response.value()];
|
|
@@ -849,62 +818,93 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
849
818
|
});
|
|
850
819
|
};
|
|
851
820
|
/**
|
|
852
|
-
* Get
|
|
821
|
+
* Get products that the pharmacian should destock
|
|
853
822
|
*/
|
|
854
|
-
SearchInventoryApi.prototype.
|
|
823
|
+
SearchInventoryApi.prototype.getInventoryOverstockProductsRaw = function (requestParameters, initOverrides) {
|
|
855
824
|
return __awaiter(this, void 0, void 0, function () {
|
|
856
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
857
|
-
return __generator(this, function (
|
|
858
|
-
switch (
|
|
825
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_9;
|
|
826
|
+
return __generator(this, function (_c) {
|
|
827
|
+
switch (_c.label) {
|
|
859
828
|
case 0:
|
|
860
|
-
if (requestParameters
|
|
861
|
-
throw new
|
|
829
|
+
if (requestParameters['inventoryId'] == null) {
|
|
830
|
+
throw new runtime.RequiredError('inventoryId', 'Required parameter "inventoryId" was null or undefined when calling getInventoryOverstockProducts().');
|
|
862
831
|
}
|
|
863
832
|
queryParameters = {};
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
833
|
+
if (requestParameters['q'] != null) {
|
|
834
|
+
queryParameters['q'] = requestParameters['q'];
|
|
835
|
+
}
|
|
836
|
+
if (requestParameters['labEq'] != null) {
|
|
837
|
+
queryParameters['lab[eq]'] = requestParameters['labEq'];
|
|
838
|
+
}
|
|
839
|
+
if (requestParameters['ptEq'] != null) {
|
|
840
|
+
queryParameters['pt[eq]'] = requestParameters['ptEq'];
|
|
841
|
+
}
|
|
842
|
+
if (requestParameters['blEq'] != null) {
|
|
843
|
+
queryParameters['bl[eq]'] = requestParameters['blEq'];
|
|
844
|
+
}
|
|
845
|
+
if (requestParameters['forecastGte'] != null) {
|
|
846
|
+
queryParameters['forecast[gte]'] = requestParameters['forecastGte'];
|
|
847
|
+
}
|
|
848
|
+
if (requestParameters['forecastLte'] != null) {
|
|
849
|
+
queryParameters['forecast[lte]'] = requestParameters['forecastLte'];
|
|
867
850
|
}
|
|
851
|
+
if (requestParameters['forecastPr'] != null) {
|
|
852
|
+
queryParameters['forecast[pr]'] = requestParameters['forecastPr'];
|
|
853
|
+
}
|
|
854
|
+
if (requestParameters['isUnsoldEq'] != null) {
|
|
855
|
+
queryParameters['isUnsold[eq]'] = requestParameters['isUnsoldEq'];
|
|
856
|
+
}
|
|
857
|
+
if (requestParameters['orderBy'] != null) {
|
|
858
|
+
queryParameters['orderBy'] = requestParameters['orderBy'];
|
|
859
|
+
}
|
|
860
|
+
if (requestParameters['p'] != null) {
|
|
861
|
+
queryParameters['p'] = requestParameters['p'];
|
|
862
|
+
}
|
|
863
|
+
if (requestParameters['pp'] != null) {
|
|
864
|
+
queryParameters['pp'] = requestParameters['pp'];
|
|
865
|
+
}
|
|
866
|
+
headerParameters = {};
|
|
867
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
868
|
+
_a = headerParameters;
|
|
869
|
+
_b = "x-api-key";
|
|
870
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
871
|
+
case 1:
|
|
872
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
873
|
+
_c.label = 2;
|
|
874
|
+
case 2:
|
|
868
875
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
869
876
|
token = this.configuration.accessToken;
|
|
870
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
871
877
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
872
|
-
case 1:
|
|
873
|
-
_a = _b.sent();
|
|
874
|
-
return [3 /*break*/, 3];
|
|
875
|
-
case 2:
|
|
876
|
-
_a = token;
|
|
877
|
-
_b.label = 3;
|
|
878
878
|
case 3:
|
|
879
|
-
tokenString =
|
|
879
|
+
tokenString = _c.sent();
|
|
880
880
|
if (tokenString) {
|
|
881
881
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
882
882
|
}
|
|
883
|
-
|
|
883
|
+
_c.label = 4;
|
|
884
884
|
case 4:
|
|
885
|
-
|
|
885
|
+
_c.trys.push([4, 6, , 7]);
|
|
886
886
|
return [4 /*yield*/, this.request({
|
|
887
|
-
path: "/inventories/{inventoryId}/
|
|
887
|
+
path: "/inventories/{inventoryId}/overstock-products".replace("{".concat("inventoryId", "}"), encodeURIComponent(String(requestParameters['inventoryId']))),
|
|
888
888
|
method: 'GET',
|
|
889
889
|
headers: headerParameters,
|
|
890
890
|
query: queryParameters,
|
|
891
|
-
})];
|
|
891
|
+
}, initOverrides)];
|
|
892
892
|
case 5:
|
|
893
|
-
response =
|
|
893
|
+
response = _c.sent();
|
|
894
894
|
contentType = response.headers.get("content-type");
|
|
895
895
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
896
|
-
return [2 /*return*/, new
|
|
896
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedOverstockProductsFromJSON)(jsonValue); })];
|
|
897
897
|
}
|
|
898
898
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
899
|
-
return [2 /*return*/, new
|
|
899
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
900
900
|
}
|
|
901
901
|
else {
|
|
902
902
|
// TODO : Better handling of others application types
|
|
903
|
-
return [2 /*return*/, new
|
|
903
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
904
904
|
}
|
|
905
905
|
return [3 /*break*/, 7];
|
|
906
906
|
case 6:
|
|
907
|
-
response_9 =
|
|
907
|
+
response_9 = _c.sent();
|
|
908
908
|
console.debug(response_9);
|
|
909
909
|
throw response_9;
|
|
910
910
|
case 7: return [2 /*return*/];
|
|
@@ -913,14 +913,14 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
913
913
|
});
|
|
914
914
|
};
|
|
915
915
|
/**
|
|
916
|
-
* Get
|
|
916
|
+
* Get products that the pharmacian should destock
|
|
917
917
|
*/
|
|
918
|
-
SearchInventoryApi.prototype.
|
|
918
|
+
SearchInventoryApi.prototype.getInventoryOverstockProducts = function (requestParameters, initOverrides) {
|
|
919
919
|
return __awaiter(this, void 0, void 0, function () {
|
|
920
920
|
var response;
|
|
921
921
|
return __generator(this, function (_a) {
|
|
922
922
|
switch (_a.label) {
|
|
923
|
-
case 0: return [4 /*yield*/, this.
|
|
923
|
+
case 0: return [4 /*yield*/, this.getInventoryOverstockProductsRaw(requestParameters, initOverrides)];
|
|
924
924
|
case 1:
|
|
925
925
|
response = _a.sent();
|
|
926
926
|
return [4 /*yield*/, response.value()];
|
|
@@ -930,63 +930,66 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
930
930
|
});
|
|
931
931
|
};
|
|
932
932
|
/**
|
|
933
|
-
*
|
|
934
|
-
* Get synchronization state of inventory
|
|
933
|
+
* Get advices statistics
|
|
935
934
|
*/
|
|
936
|
-
SearchInventoryApi.prototype.
|
|
935
|
+
SearchInventoryApi.prototype.getInventoryStatisticsRaw = function (requestParameters, initOverrides) {
|
|
937
936
|
return __awaiter(this, void 0, void 0, function () {
|
|
938
|
-
var queryParameters, headerParameters, token, tokenString,
|
|
939
|
-
return __generator(this, function (
|
|
940
|
-
switch (
|
|
937
|
+
var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_10;
|
|
938
|
+
return __generator(this, function (_c) {
|
|
939
|
+
switch (_c.label) {
|
|
941
940
|
case 0:
|
|
942
|
-
if (requestParameters
|
|
943
|
-
throw new
|
|
941
|
+
if (requestParameters['inventoryId'] == null) {
|
|
942
|
+
throw new runtime.RequiredError('inventoryId', 'Required parameter "inventoryId" was null or undefined when calling getInventoryStatistics().');
|
|
944
943
|
}
|
|
945
944
|
queryParameters = {};
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
945
|
+
if (requestParameters['overstockBlEq'] != null) {
|
|
946
|
+
queryParameters['overstockBl[eq]'] = requestParameters['overstockBlEq'];
|
|
947
|
+
}
|
|
948
|
+
if (requestParameters['overstockForecastGte'] != null) {
|
|
949
|
+
queryParameters['overstockForecast[gte]'] = requestParameters['overstockForecastGte'];
|
|
949
950
|
}
|
|
951
|
+
headerParameters = {};
|
|
952
|
+
if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
|
|
953
|
+
_a = headerParameters;
|
|
954
|
+
_b = "x-api-key";
|
|
955
|
+
return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
|
|
956
|
+
case 1:
|
|
957
|
+
_a[_b] = _c.sent(); // apiKeyAuth authentication
|
|
958
|
+
_c.label = 2;
|
|
959
|
+
case 2:
|
|
950
960
|
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
|
|
951
961
|
token = this.configuration.accessToken;
|
|
952
|
-
if (!(typeof token === 'function')) return [3 /*break*/, 2];
|
|
953
962
|
return [4 /*yield*/, token("bearerAuth", [])];
|
|
954
|
-
case 1:
|
|
955
|
-
_a = _b.sent();
|
|
956
|
-
return [3 /*break*/, 3];
|
|
957
|
-
case 2:
|
|
958
|
-
_a = token;
|
|
959
|
-
_b.label = 3;
|
|
960
963
|
case 3:
|
|
961
|
-
tokenString =
|
|
964
|
+
tokenString = _c.sent();
|
|
962
965
|
if (tokenString) {
|
|
963
966
|
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
964
967
|
}
|
|
965
|
-
|
|
968
|
+
_c.label = 4;
|
|
966
969
|
case 4:
|
|
967
|
-
|
|
970
|
+
_c.trys.push([4, 6, , 7]);
|
|
968
971
|
return [4 /*yield*/, this.request({
|
|
969
|
-
path: "/inventories/{inventoryId}/
|
|
972
|
+
path: "/inventories/{inventoryId}/statistics".replace("{".concat("inventoryId", "}"), encodeURIComponent(String(requestParameters['inventoryId']))),
|
|
970
973
|
method: 'GET',
|
|
971
974
|
headers: headerParameters,
|
|
972
975
|
query: queryParameters,
|
|
973
|
-
})];
|
|
976
|
+
}, initOverrides)];
|
|
974
977
|
case 5:
|
|
975
|
-
response =
|
|
978
|
+
response = _c.sent();
|
|
976
979
|
contentType = response.headers.get("content-type");
|
|
977
980
|
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
978
|
-
return [2 /*return*/, new
|
|
981
|
+
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.StatisticsFromJSON)(jsonValue); })];
|
|
979
982
|
}
|
|
980
983
|
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
981
|
-
return [2 /*return*/, new
|
|
984
|
+
return [2 /*return*/, new runtime.TextApiResponse(response)];
|
|
982
985
|
}
|
|
983
986
|
else {
|
|
984
987
|
// TODO : Better handling of others application types
|
|
985
|
-
return [2 /*return*/, new
|
|
988
|
+
return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
|
|
986
989
|
}
|
|
987
990
|
return [3 /*break*/, 7];
|
|
988
991
|
case 6:
|
|
989
|
-
response_10 =
|
|
992
|
+
response_10 = _c.sent();
|
|
990
993
|
console.debug(response_10);
|
|
991
994
|
throw response_10;
|
|
992
995
|
case 7: return [2 /*return*/];
|
|
@@ -995,15 +998,14 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
995
998
|
});
|
|
996
999
|
};
|
|
997
1000
|
/**
|
|
998
|
-
*
|
|
999
|
-
* Get synchronization state of inventory
|
|
1001
|
+
* Get advices statistics
|
|
1000
1002
|
*/
|
|
1001
|
-
SearchInventoryApi.prototype.
|
|
1003
|
+
SearchInventoryApi.prototype.getInventoryStatistics = function (requestParameters, initOverrides) {
|
|
1002
1004
|
return __awaiter(this, void 0, void 0, function () {
|
|
1003
1005
|
var response;
|
|
1004
1006
|
return __generator(this, function (_a) {
|
|
1005
1007
|
switch (_a.label) {
|
|
1006
|
-
case 0: return [4 /*yield*/, this.
|
|
1008
|
+
case 0: return [4 /*yield*/, this.getInventoryStatisticsRaw(requestParameters, initOverrides)];
|
|
1007
1009
|
case 1:
|
|
1008
1010
|
response = _a.sent();
|
|
1009
1011
|
return [4 /*yield*/, response.value()];
|
|
@@ -1013,101 +1015,89 @@ var SearchInventoryApi = /** @class */ (function (_super) {
|
|
|
1013
1015
|
});
|
|
1014
1016
|
};
|
|
1015
1017
|
return SearchInventoryApi;
|
|
1016
|
-
}(
|
|
1018
|
+
}(runtime.BaseAPI));
|
|
1017
1019
|
exports.SearchInventoryApi = SearchInventoryApi;
|
|
1018
1020
|
/**
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
GetCurrentInventoryActiveProductsOrderByEnum["SYNCRHONIZEDdesc"] = "SYNCRHONIZED:desc";
|
|
1034
|
-
})(GetCurrentInventoryActiveProductsOrderByEnum = exports.GetCurrentInventoryActiveProductsOrderByEnum || (exports.GetCurrentInventoryActiveProductsOrderByEnum = {}));
|
|
1021
|
+
* @export
|
|
1022
|
+
*/
|
|
1023
|
+
exports.GetCurrentInventoryActiveProductsOrderByEnum = {
|
|
1024
|
+
PRODUCT_NAME_ASC: 'PRODUCT_NAME:asc',
|
|
1025
|
+
PRODUCT_NAME_DESC: 'PRODUCT_NAME:desc',
|
|
1026
|
+
PRODUCT_BARCODES_PRINCIPAL_ASC: 'PRODUCT_BARCODES_PRINCIPAL:asc',
|
|
1027
|
+
PRODUCT_BARCODES_PRINCIPAL_DESC: 'PRODUCT_BARCODES_PRINCIPAL:desc',
|
|
1028
|
+
ACTIVE_STOCK_ASC: 'ACTIVE_STOCK:asc',
|
|
1029
|
+
ACTIVE_STOCK_DESC: 'ACTIVE_STOCK:desc',
|
|
1030
|
+
TOTAL_ACTIVE_SALE_OFFERS_ASC: 'TOTAL_ACTIVE_SALE_OFFERS:asc',
|
|
1031
|
+
TOTAL_ACTIVE_SALE_OFFERS_DESC: 'TOTAL_ACTIVE_SALE_OFFERS:desc',
|
|
1032
|
+
SYNCRHONIZED_ASC: 'SYNCRHONIZED:asc',
|
|
1033
|
+
SYNCRHONIZED_DESC: 'SYNCRHONIZED:desc'
|
|
1034
|
+
};
|
|
1035
1035
|
/**
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
GetCurrentInventoryMisalignedProductsOrderByEnum["TOTALACTIVESALEOFFERSDESC"] = "TOTAL_ACTIVE_SALE_OFFERS:DESC";
|
|
1049
|
-
})(GetCurrentInventoryMisalignedProductsOrderByEnum = exports.GetCurrentInventoryMisalignedProductsOrderByEnum || (exports.GetCurrentInventoryMisalignedProductsOrderByEnum = {}));
|
|
1036
|
+
* @export
|
|
1037
|
+
*/
|
|
1038
|
+
exports.GetCurrentInventoryMisalignedProductsOrderByEnum = {
|
|
1039
|
+
PRODUCT_NAME_ASC: 'PRODUCT_NAME:ASC',
|
|
1040
|
+
PRODUCT_NAME_DESC: 'PRODUCT_NAME:DESC',
|
|
1041
|
+
CURRENT_STOCK_ASC: 'CURRENT_STOCK:ASC',
|
|
1042
|
+
CURRENT_STOCK_DESC: 'CURRENT_STOCK:DESC',
|
|
1043
|
+
ACTIVE_STOCK_ASC: 'ACTIVE_STOCK:ASC',
|
|
1044
|
+
ACTIVE_STOCK_DESC: 'ACTIVE_STOCK:DESC',
|
|
1045
|
+
TOTAL_ACTIVE_SALE_OFFERS_ASC: 'TOTAL_ACTIVE_SALE_OFFERS:ASC',
|
|
1046
|
+
TOTAL_ACTIVE_SALE_OFFERS_DESC: 'TOTAL_ACTIVE_SALE_OFFERS:DESC'
|
|
1047
|
+
};
|
|
1050
1048
|
/**
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
GetCurrentInventoryOverstockProductsOrderByEnum["FORECASTASC"] = "FORECAST:ASC";
|
|
1066
|
-
})(GetCurrentInventoryOverstockProductsOrderByEnum = exports.GetCurrentInventoryOverstockProductsOrderByEnum || (exports.GetCurrentInventoryOverstockProductsOrderByEnum = {}));
|
|
1049
|
+
* @export
|
|
1050
|
+
*/
|
|
1051
|
+
exports.GetCurrentInventoryOverstockProductsOrderByEnum = {
|
|
1052
|
+
PRODUCT_NAME_ASC: 'PRODUCT_NAME:ASC',
|
|
1053
|
+
PRODUCT_NAME_DESC: 'PRODUCT_NAME:DESC',
|
|
1054
|
+
CURRENT_STOCK_ASC: 'CURRENT_STOCK:ASC',
|
|
1055
|
+
CURRENT_STOCK_DESC: 'CURRENT_STOCK:DESC',
|
|
1056
|
+
CURRENT_OVERSTOCK_ASC: 'CURRENT_OVERSTOCK:ASC',
|
|
1057
|
+
CURRENT_OVERSTOCK_DESC: 'CURRENT_OVERSTOCK:DESC',
|
|
1058
|
+
OPPORTUNITY_DESC: 'OPPORTUNITY:DESC',
|
|
1059
|
+
OPPORTUNITY_ASC: 'OPPORTUNITY:ASC',
|
|
1060
|
+
FORECAST_DESC: 'FORECAST:DESC',
|
|
1061
|
+
FORECAST_ASC: 'FORECAST:ASC'
|
|
1062
|
+
};
|
|
1067
1063
|
/**
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
GetInventoryActiveProductsOrderByEnum["SYNCRHONIZEDdesc"] = "SYNCRHONIZED:desc";
|
|
1081
|
-
})(GetInventoryActiveProductsOrderByEnum = exports.GetInventoryActiveProductsOrderByEnum || (exports.GetInventoryActiveProductsOrderByEnum = {}));
|
|
1064
|
+
* @export
|
|
1065
|
+
*/
|
|
1066
|
+
exports.GetInventoryActiveProductsOrderByEnum = {
|
|
1067
|
+
PRODUCT_NAME_ASC: 'PRODUCT_NAME:asc',
|
|
1068
|
+
PRODUCT_NAME_DESC: 'PRODUCT_NAME:desc',
|
|
1069
|
+
ACTIVE_STOCK_ASC: 'ACTIVE_STOCK:asc',
|
|
1070
|
+
ACTIVE_STOCK_DESC: 'ACTIVE_STOCK:desc',
|
|
1071
|
+
TOTAL_ACTIVE_SALE_OFFERS_ASC: 'TOTAL_ACTIVE_SALE_OFFERS:asc',
|
|
1072
|
+
TOTAL_ACTIVE_SALE_OFFERS_DESC: 'TOTAL_ACTIVE_SALE_OFFERS:desc',
|
|
1073
|
+
SYNCRHONIZED_ASC: 'SYNCRHONIZED:asc',
|
|
1074
|
+
SYNCRHONIZED_DESC: 'SYNCRHONIZED:desc'
|
|
1075
|
+
};
|
|
1082
1076
|
/**
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
GetInventoryMisalignedProductsOrderByEnum["TOTALACTIVESALEOFFERSDESC"] = "TOTAL_ACTIVE_SALE_OFFERS:DESC";
|
|
1096
|
-
})(GetInventoryMisalignedProductsOrderByEnum = exports.GetInventoryMisalignedProductsOrderByEnum || (exports.GetInventoryMisalignedProductsOrderByEnum = {}));
|
|
1077
|
+
* @export
|
|
1078
|
+
*/
|
|
1079
|
+
exports.GetInventoryMisalignedProductsOrderByEnum = {
|
|
1080
|
+
PRODUCT_NAME_ASC: 'PRODUCT_NAME:ASC',
|
|
1081
|
+
PRODUCT_NAME_DESC: 'PRODUCT_NAME:DESC',
|
|
1082
|
+
CURRENT_STOCK_ASC: 'CURRENT_STOCK:ASC',
|
|
1083
|
+
CURRENT_STOCK_DESC: 'CURRENT_STOCK:DESC',
|
|
1084
|
+
ACTIVE_STOCK_ASC: 'ACTIVE_STOCK:ASC',
|
|
1085
|
+
ACTIVE_STOCK_DESC: 'ACTIVE_STOCK:DESC',
|
|
1086
|
+
TOTAL_ACTIVE_SALE_OFFERS_ASC: 'TOTAL_ACTIVE_SALE_OFFERS:ASC',
|
|
1087
|
+
TOTAL_ACTIVE_SALE_OFFERS_DESC: 'TOTAL_ACTIVE_SALE_OFFERS:DESC'
|
|
1088
|
+
};
|
|
1097
1089
|
/**
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
GetInventoryOverstockProductsOrderByEnum["FORECASTASC"] = "FORECAST:ASC";
|
|
1113
|
-
})(GetInventoryOverstockProductsOrderByEnum = exports.GetInventoryOverstockProductsOrderByEnum || (exports.GetInventoryOverstockProductsOrderByEnum = {}));
|
|
1090
|
+
* @export
|
|
1091
|
+
*/
|
|
1092
|
+
exports.GetInventoryOverstockProductsOrderByEnum = {
|
|
1093
|
+
PRODUCT_NAME_ASC: 'PRODUCT_NAME:ASC',
|
|
1094
|
+
PRODUCT_NAME_DESC: 'PRODUCT_NAME:DESC',
|
|
1095
|
+
CURRENT_STOCK_ASC: 'CURRENT_STOCK:ASC',
|
|
1096
|
+
CURRENT_STOCK_DESC: 'CURRENT_STOCK:DESC',
|
|
1097
|
+
CURRENT_OVERSTOCK_ASC: 'CURRENT_OVERSTOCK:ASC',
|
|
1098
|
+
CURRENT_OVERSTOCK_DESC: 'CURRENT_OVERSTOCK:DESC',
|
|
1099
|
+
OPPORTUNITY_DESC: 'OPPORTUNITY:DESC',
|
|
1100
|
+
OPPORTUNITY_ASC: 'OPPORTUNITY:ASC',
|
|
1101
|
+
FORECAST_DESC: 'FORECAST:DESC',
|
|
1102
|
+
FORECAST_ASC: 'FORECAST:ASC'
|
|
1103
|
+
};
|