@lcdp/api-react-rest-client 0.0.2-0
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/index.d.ts +1 -0
- package/auth/index.js +17 -0
- package/auth/src/apis/AuthApi.d.ts +52 -0
- package/auth/src/apis/AuthApi.js +275 -0
- package/auth/src/apis/ManageApiKeyApi.d.ts +50 -0
- package/auth/src/apis/ManageApiKeyApi.js +287 -0
- package/auth/src/apis/SearchApiKeyApi.d.ts +62 -0
- package/auth/src/apis/SearchApiKeyApi.js +269 -0
- package/auth/src/apis/index.d.ts +3 -0
- package/auth/src/apis/index.js +19 -0
- package/auth/src/index.d.ts +3 -0
- package/auth/src/index.js +19 -0
- package/auth/src/models/AnonymousUser.d.ts +34 -0
- package/auth/src/models/AnonymousUser.js +49 -0
- package/auth/src/models/AnonymousUserAllOf.d.ts +33 -0
- package/auth/src/models/AnonymousUserAllOf.js +44 -0
- package/auth/src/models/AnyAuthenticationCredential.d.ts +31 -0
- package/auth/src/models/AnyAuthenticationCredential.js +74 -0
- package/auth/src/models/AnyUser.d.ts +25 -0
- package/auth/src/models/AnyUser.js +64 -0
- package/auth/src/models/ApiKey.d.ts +64 -0
- package/auth/src/models/ApiKey.js +55 -0
- package/auth/src/models/ApiKeyCreationParameters.d.ts +39 -0
- package/auth/src/models/ApiKeyCreationParameters.js +45 -0
- package/auth/src/models/ApiKeyCredential.d.ts +28 -0
- package/auth/src/models/ApiKeyCredential.js +49 -0
- package/auth/src/models/ApiKeyCredentialAllOf.d.ts +27 -0
- package/auth/src/models/ApiKeyCredentialAllOf.js +41 -0
- package/auth/src/models/AuthenticationCredential.d.ts +27 -0
- package/auth/src/models/AuthenticationCredential.js +41 -0
- package/auth/src/models/DisposableCredential.d.ts +28 -0
- package/auth/src/models/DisposableCredential.js +49 -0
- package/auth/src/models/DisposableCredentialAllOf.d.ts +27 -0
- package/auth/src/models/DisposableCredentialAllOf.js +41 -0
- package/auth/src/models/DisposableTokenCreationParameters.d.ts +27 -0
- package/auth/src/models/DisposableTokenCreationParameters.js +42 -0
- package/auth/src/models/HttpLink.d.ts +27 -0
- package/auth/src/models/HttpLink.js +41 -0
- package/auth/src/models/IdentifiedUser.d.ts +28 -0
- package/auth/src/models/IdentifiedUser.js +49 -0
- package/auth/src/models/IdentifiedUserAllOf.d.ts +27 -0
- package/auth/src/models/IdentifiedUserAllOf.js +42 -0
- package/auth/src/models/LoginCredential.d.ts +34 -0
- package/auth/src/models/LoginCredential.js +49 -0
- package/auth/src/models/LoginCredentialAllOf.d.ts +33 -0
- package/auth/src/models/LoginCredentialAllOf.js +43 -0
- package/auth/src/models/PaginatedApiKeys.d.ts +29 -0
- package/auth/src/models/PaginatedApiKeys.js +50 -0
- package/auth/src/models/PaginatedApiKeysAllOf.d.ts +28 -0
- package/auth/src/models/PaginatedApiKeysAllOf.js +42 -0
- package/auth/src/models/PaginatedObject.d.ts +28 -0
- package/auth/src/models/PaginatedObject.js +42 -0
- package/auth/src/models/PagingMetadata.d.ts +45 -0
- package/auth/src/models/PagingMetadata.js +47 -0
- package/auth/src/models/RefreshCredential.d.ts +28 -0
- package/auth/src/models/RefreshCredential.js +49 -0
- package/auth/src/models/RefreshCredentialAllOf.d.ts +27 -0
- package/auth/src/models/RefreshCredentialAllOf.js +41 -0
- package/auth/src/models/RestError.d.ts +81 -0
- package/auth/src/models/RestError.js +93 -0
- package/auth/src/models/RevealedApiKey.d.ts +28 -0
- package/auth/src/models/RevealedApiKey.js +50 -0
- package/auth/src/models/RevealedApiKeyAllOf.d.ts +27 -0
- package/auth/src/models/RevealedApiKeyAllOf.js +42 -0
- package/auth/src/models/Session.d.ts +39 -0
- package/auth/src/models/Session.js +45 -0
- package/auth/src/models/User.d.ts +27 -0
- package/auth/src/models/User.js +41 -0
- package/auth/src/models/UserLink.d.ts +41 -0
- package/auth/src/models/UserLink.js +51 -0
- package/auth/src/models/UserLinkAllOf.d.ts +40 -0
- package/auth/src/models/UserLinkAllOf.js +47 -0
- package/auth/src/models/UserLinkAllOfCompany.d.ts +27 -0
- package/auth/src/models/UserLinkAllOfCompany.js +42 -0
- package/auth/src/models/index.d.ts +31 -0
- package/auth/src/models/index.js +47 -0
- package/auth/src/runtime.d.ts +149 -0
- package/auth/src/runtime.js +480 -0
- package/banking-operation/index.d.ts +1 -0
- package/banking-operation/index.js +17 -0
- package/banking-operation/src/apis/ManageLevyApi.d.ts +41 -0
- package/banking-operation/src/apis/ManageLevyApi.js +227 -0
- package/banking-operation/src/apis/ManageOrderPaymentApi.d.ts +46 -0
- package/banking-operation/src/apis/ManageOrderPaymentApi.js +240 -0
- package/banking-operation/src/apis/SearchLevyApi.d.ts +70 -0
- package/banking-operation/src/apis/SearchLevyApi.js +277 -0
- package/banking-operation/src/apis/SearchOrderPaymentApi.d.ts +40 -0
- package/banking-operation/src/apis/SearchOrderPaymentApi.js +171 -0
- package/banking-operation/src/apis/index.d.ts +4 -0
- package/banking-operation/src/apis/index.js +20 -0
- package/banking-operation/src/index.d.ts +3 -0
- package/banking-operation/src/index.js +19 -0
- package/banking-operation/src/models/HttpLink.d.ts +27 -0
- package/banking-operation/src/models/HttpLink.js +41 -0
- package/banking-operation/src/models/Levy.d.ts +84 -0
- package/banking-operation/src/models/Levy.js +63 -0
- package/banking-operation/src/models/LevyCreationParameters.d.ts +58 -0
- package/banking-operation/src/models/LevyCreationParameters.js +53 -0
- package/banking-operation/src/models/LevyPayment.d.ts +34 -0
- package/banking-operation/src/models/LevyPayment.js +45 -0
- package/banking-operation/src/models/LevyPaymentStatus.d.ts +24 -0
- package/banking-operation/src/models/LevyPaymentStatus.js +39 -0
- package/banking-operation/src/models/LevyStatus.d.ts +23 -0
- package/banking-operation/src/models/LevyStatus.js +38 -0
- package/banking-operation/src/models/LevyUpdateParameters.d.ts +34 -0
- package/banking-operation/src/models/LevyUpdateParameters.js +45 -0
- package/banking-operation/src/models/OrderLink.d.ts +28 -0
- package/banking-operation/src/models/OrderLink.js +50 -0
- package/banking-operation/src/models/OrderLinkAllOf.d.ts +27 -0
- package/banking-operation/src/models/OrderLinkAllOf.js +42 -0
- package/banking-operation/src/models/OrderPayment.d.ts +55 -0
- package/banking-operation/src/models/OrderPayment.js +54 -0
- package/banking-operation/src/models/OrderPaymentDeposit.d.ts +28 -0
- package/banking-operation/src/models/OrderPaymentDeposit.js +43 -0
- package/banking-operation/src/models/OrderPaymentWallets.d.ts +34 -0
- package/banking-operation/src/models/OrderPaymentWallets.js +45 -0
- package/banking-operation/src/models/OrderPaymentWithdraw.d.ts +46 -0
- package/banking-operation/src/models/OrderPaymentWithdraw.js +49 -0
- package/banking-operation/src/models/PaginatedLevies.d.ts +29 -0
- package/banking-operation/src/models/PaginatedLevies.js +50 -0
- package/banking-operation/src/models/PaginatedLeviesAllOf.d.ts +28 -0
- package/banking-operation/src/models/PaginatedLeviesAllOf.js +42 -0
- package/banking-operation/src/models/PaginatedObject.d.ts +28 -0
- package/banking-operation/src/models/PaginatedObject.js +42 -0
- package/banking-operation/src/models/PaginatedOrderPayments.d.ts +29 -0
- package/banking-operation/src/models/PaginatedOrderPayments.js +50 -0
- package/banking-operation/src/models/PaginatedOrderPaymentsAllOf.d.ts +28 -0
- package/banking-operation/src/models/PaginatedOrderPaymentsAllOf.js +42 -0
- package/banking-operation/src/models/PagingMetadata.d.ts +45 -0
- package/banking-operation/src/models/PagingMetadata.js +47 -0
- package/banking-operation/src/models/Transaction.d.ts +62 -0
- package/banking-operation/src/models/Transaction.js +62 -0
- package/banking-operation/src/models/TransactionMangopayTarget.d.ts +28 -0
- package/banking-operation/src/models/TransactionMangopayTarget.js +50 -0
- package/banking-operation/src/models/TransactionMangopayTargetAllOf.d.ts +27 -0
- package/banking-operation/src/models/TransactionMangopayTargetAllOf.js +42 -0
- package/banking-operation/src/models/UserLink.d.ts +41 -0
- package/banking-operation/src/models/UserLink.js +51 -0
- package/banking-operation/src/models/UserLinkAllOf.d.ts +40 -0
- package/banking-operation/src/models/UserLinkAllOf.js +47 -0
- package/banking-operation/src/models/UserLinkAllOfCompany.d.ts +27 -0
- package/banking-operation/src/models/UserLinkAllOfCompany.js +42 -0
- package/banking-operation/src/models/Wallet.d.ts +28 -0
- package/banking-operation/src/models/Wallet.js +43 -0
- package/banking-operation/src/models/WalletMangopayTarget.d.ts +28 -0
- package/banking-operation/src/models/WalletMangopayTarget.js +50 -0
- package/banking-operation/src/models/WalletMangopayTargetAllOf.d.ts +27 -0
- package/banking-operation/src/models/WalletMangopayTargetAllOf.js +42 -0
- package/banking-operation/src/models/index.d.ts +28 -0
- package/banking-operation/src/models/index.js +44 -0
- package/banking-operation/src/runtime.d.ts +149 -0
- package/banking-operation/src/runtime.js +480 -0
- package/challenge/index.d.ts +1 -0
- package/challenge/index.js +17 -0
- package/challenge/src/apis/ManageChallengesApi.d.ts +29 -0
- package/challenge/src/apis/ManageChallengesApi.js +155 -0
- package/challenge/src/apis/index.d.ts +1 -0
- package/challenge/src/apis/index.js +17 -0
- package/challenge/src/index.d.ts +3 -0
- package/challenge/src/index.js +19 -0
- package/challenge/src/models/Challenge.d.ts +34 -0
- package/challenge/src/models/Challenge.js +45 -0
- package/challenge/src/models/ChallengeAction.d.ts +34 -0
- package/challenge/src/models/ChallengeAction.js +50 -0
- package/challenge/src/models/index.d.ts +2 -0
- package/challenge/src/models/index.js +18 -0
- package/challenge/src/runtime.d.ts +149 -0
- package/challenge/src/runtime.js +480 -0
- package/configuration/index.d.ts +1 -0
- package/configuration/index.js +17 -0
- package/configuration/src/apis/ManageVariableApi.d.ts +81 -0
- package/configuration/src/apis/ManageVariableApi.js +197 -0
- package/configuration/src/apis/ManageVatApi.d.ts +41 -0
- package/configuration/src/apis/ManageVatApi.js +218 -0
- package/configuration/src/apis/SearchVariableApi.d.ts +89 -0
- package/configuration/src/apis/SearchVariableApi.js +256 -0
- package/configuration/src/apis/SearchVatApi.d.ts +37 -0
- package/configuration/src/apis/SearchVatApi.js +223 -0
- package/configuration/src/apis/index.d.ts +4 -0
- package/configuration/src/apis/index.js +20 -0
- package/configuration/src/index.d.ts +3 -0
- package/configuration/src/index.js +19 -0
- package/configuration/src/models/RestError.d.ts +81 -0
- package/configuration/src/models/RestError.js +93 -0
- package/configuration/src/models/Variable.d.ts +33 -0
- package/configuration/src/models/Variable.js +44 -0
- package/configuration/src/models/Vat.d.ts +39 -0
- package/configuration/src/models/Vat.js +46 -0
- package/configuration/src/models/index.d.ts +3 -0
- package/configuration/src/models/index.js +19 -0
- package/configuration/src/runtime.d.ts +149 -0
- package/configuration/src/runtime.js +480 -0
- package/content/index.d.ts +1 -0
- package/content/index.js +17 -0
- package/content/src/apis/ManageContentApi.d.ts +30 -0
- package/content/src/apis/ManageContentApi.js +158 -0
- package/content/src/apis/SearchContentApi.d.ts +29 -0
- package/content/src/apis/SearchContentApi.js +143 -0
- package/content/src/apis/index.d.ts +2 -0
- package/content/src/apis/index.js +18 -0
- package/content/src/index.d.ts +3 -0
- package/content/src/index.js +19 -0
- package/content/src/models/Content.d.ts +51 -0
- package/content/src/models/Content.js +50 -0
- package/content/src/models/RestError.d.ts +81 -0
- package/content/src/models/RestError.js +93 -0
- package/content/src/models/index.d.ts +2 -0
- package/content/src/models/index.js +18 -0
- package/content/src/runtime.d.ts +149 -0
- package/content/src/runtime.js +480 -0
- package/factory/index.d.ts +1 -0
- package/factory/index.js +17 -0
- package/factory/src/apis/ManageAssemblyApi.d.ts +42 -0
- package/factory/src/apis/ManageAssemblyApi.js +254 -0
- package/factory/src/apis/ManageAssemblyOperationApi.d.ts +30 -0
- package/factory/src/apis/ManageAssemblyOperationApi.js +158 -0
- package/factory/src/apis/SearchAssemblyApi.d.ts +86 -0
- package/factory/src/apis/SearchAssemblyApi.js +421 -0
- package/factory/src/apis/SearchAssemblyLineApi.d.ts +37 -0
- package/factory/src/apis/SearchAssemblyLineApi.js +223 -0
- package/factory/src/apis/SearchAssemblyOperationApi.d.ts +41 -0
- package/factory/src/apis/SearchAssemblyOperationApi.js +229 -0
- package/factory/src/apis/index.d.ts +5 -0
- package/factory/src/apis/index.js +21 -0
- package/factory/src/index.d.ts +3 -0
- package/factory/src/index.js +19 -0
- package/factory/src/models/Assembly.d.ts +97 -0
- package/factory/src/models/Assembly.js +68 -0
- package/factory/src/models/AssemblyCreationParameters.d.ts +39 -0
- package/factory/src/models/AssemblyCreationParameters.js +45 -0
- package/factory/src/models/AssemblyLine.d.ts +39 -0
- package/factory/src/models/AssemblyLine.js +46 -0
- package/factory/src/models/AssemblyLineLink.d.ts +28 -0
- package/factory/src/models/AssemblyLineLink.js +50 -0
- package/factory/src/models/AssemblyLineLinkAllOf.d.ts +27 -0
- package/factory/src/models/AssemblyLineLinkAllOf.js +42 -0
- package/factory/src/models/AssemblyOperation.d.ts +41 -0
- package/factory/src/models/AssemblyOperation.js +48 -0
- package/factory/src/models/AssemblyOperationStatus.d.ts +25 -0
- package/factory/src/models/AssemblyOperationStatus.js +40 -0
- package/factory/src/models/AssemblyOperationType.d.ts +25 -0
- package/factory/src/models/AssemblyOperationType.js +40 -0
- package/factory/src/models/AssemblyStatus.d.ts +28 -0
- package/factory/src/models/AssemblyStatus.js +43 -0
- package/factory/src/models/HttpLink.d.ts +27 -0
- package/factory/src/models/HttpLink.js +41 -0
- package/factory/src/models/PaginatedAssemblies.d.ts +29 -0
- package/factory/src/models/PaginatedAssemblies.js +51 -0
- package/factory/src/models/PaginatedAssembliesAllOf.d.ts +28 -0
- package/factory/src/models/PaginatedAssembliesAllOf.js +43 -0
- package/factory/src/models/PaginatedObject.d.ts +28 -0
- package/factory/src/models/PaginatedObject.js +42 -0
- package/factory/src/models/PagingMetadata.d.ts +45 -0
- package/factory/src/models/PagingMetadata.js +47 -0
- package/factory/src/models/UserLink.d.ts +28 -0
- package/factory/src/models/UserLink.js +50 -0
- package/factory/src/models/UserLinkAllOf.d.ts +27 -0
- package/factory/src/models/UserLinkAllOf.js +42 -0
- package/factory/src/models/index.d.ts +16 -0
- package/factory/src/models/index.js +32 -0
- package/factory/src/runtime.d.ts +149 -0
- package/factory/src/runtime.js +480 -0
- package/favorite/index.d.ts +1 -0
- package/favorite/index.js +17 -0
- package/favorite/src/apis/ManageFavoriteProductApi.d.ts +79 -0
- package/favorite/src/apis/ManageFavoriteProductApi.js +389 -0
- package/favorite/src/apis/index.d.ts +1 -0
- package/favorite/src/apis/index.js +17 -0
- package/favorite/src/index.d.ts +3 -0
- package/favorite/src/index.js +19 -0
- package/favorite/src/models/Barcodes.d.ts +45 -0
- package/favorite/src/models/Barcodes.js +48 -0
- package/favorite/src/models/FavoriteProduct.d.ts +47 -0
- package/favorite/src/models/FavoriteProduct.js +49 -0
- package/favorite/src/models/FavoriteProductCreationParameters.d.ts +33 -0
- package/favorite/src/models/FavoriteProductCreationParameters.js +43 -0
- package/favorite/src/models/HttpLink.d.ts +27 -0
- package/favorite/src/models/HttpLink.js +41 -0
- package/favorite/src/models/PaginatedFavoriteProducts.d.ts +29 -0
- package/favorite/src/models/PaginatedFavoriteProducts.js +50 -0
- package/favorite/src/models/PaginatedFavoriteProductsAllOf.d.ts +28 -0
- package/favorite/src/models/PaginatedFavoriteProductsAllOf.js +42 -0
- package/favorite/src/models/PaginatedObject.d.ts +28 -0
- package/favorite/src/models/PaginatedObject.js +42 -0
- package/favorite/src/models/PagingMetadata.d.ts +45 -0
- package/favorite/src/models/PagingMetadata.js +47 -0
- package/favorite/src/models/ProductLink.d.ts +48 -0
- package/favorite/src/models/ProductLink.js +52 -0
- package/favorite/src/models/ProductLinkAllOf.d.ts +47 -0
- package/favorite/src/models/ProductLinkAllOf.js +50 -0
- package/favorite/src/models/ProductStatus.d.ts +25 -0
- package/favorite/src/models/ProductStatus.js +40 -0
- package/favorite/src/models/RestError.d.ts +81 -0
- package/favorite/src/models/RestError.js +93 -0
- package/favorite/src/models/UserLink.d.ts +28 -0
- package/favorite/src/models/UserLink.js +49 -0
- package/favorite/src/models/UserLinkAllOf.d.ts +27 -0
- package/favorite/src/models/UserLinkAllOf.js +41 -0
- package/favorite/src/models/index.d.ts +14 -0
- package/favorite/src/models/index.js +30 -0
- package/favorite/src/runtime.d.ts +149 -0
- package/favorite/src/runtime.js +480 -0
- package/geo/index.d.ts +1 -0
- package/geo/index.js +17 -0
- package/geo/src/apis/SearchCountryApi.d.ts +29 -0
- package/geo/src/apis/SearchCountryApi.js +153 -0
- package/geo/src/apis/index.d.ts +1 -0
- package/geo/src/apis/index.js +17 -0
- package/geo/src/index.d.ts +3 -0
- package/geo/src/index.js +19 -0
- package/geo/src/models/Country.d.ts +33 -0
- package/geo/src/models/Country.js +43 -0
- package/geo/src/models/index.d.ts +1 -0
- package/geo/src/models/index.js +17 -0
- package/geo/src/runtime.d.ts +149 -0
- package/geo/src/runtime.js +480 -0
- package/inventory/index.d.ts +1 -0
- package/inventory/index.js +17 -0
- package/inventory/src/apis/ManageInventoryApi.d.ts +68 -0
- package/inventory/src/apis/ManageInventoryApi.js +346 -0
- package/inventory/src/apis/SearchInventoryApi.d.ts +257 -0
- package/inventory/src/apis/SearchInventoryApi.js +1027 -0
- package/inventory/src/apis/index.d.ts +2 -0
- package/inventory/src/apis/index.js +18 -0
- package/inventory/src/index.d.ts +3 -0
- package/inventory/src/index.js +19 -0
- package/inventory/src/models/ActiveProduct.d.ts +46 -0
- package/inventory/src/models/ActiveProduct.js +49 -0
- package/inventory/src/models/ActiveProductUpdateParameters.d.ts +27 -0
- package/inventory/src/models/ActiveProductUpdateParameters.js +42 -0
- package/inventory/src/models/Barcodes.d.ts +45 -0
- package/inventory/src/models/Barcodes.js +48 -0
- package/inventory/src/models/HttpLink.d.ts +27 -0
- package/inventory/src/models/HttpLink.js +41 -0
- package/inventory/src/models/MisalignedProduct.d.ts +46 -0
- package/inventory/src/models/MisalignedProduct.js +49 -0
- package/inventory/src/models/OverstockProduct.d.ts +64 -0
- package/inventory/src/models/OverstockProduct.js +55 -0
- package/inventory/src/models/OverstockProductUpdateParameters.d.ts +27 -0
- package/inventory/src/models/OverstockProductUpdateParameters.js +42 -0
- package/inventory/src/models/PaginatedActiveProducts.d.ts +29 -0
- package/inventory/src/models/PaginatedActiveProducts.js +50 -0
- package/inventory/src/models/PaginatedActiveProductsAllOf.d.ts +28 -0
- package/inventory/src/models/PaginatedActiveProductsAllOf.js +42 -0
- package/inventory/src/models/PaginatedMisalignedProducts.d.ts +29 -0
- package/inventory/src/models/PaginatedMisalignedProducts.js +50 -0
- package/inventory/src/models/PaginatedMisalignedProductsAllOf.d.ts +28 -0
- package/inventory/src/models/PaginatedMisalignedProductsAllOf.js +42 -0
- package/inventory/src/models/PaginatedObject.d.ts +28 -0
- package/inventory/src/models/PaginatedObject.js +42 -0
- package/inventory/src/models/PaginatedOverstockProducts.d.ts +29 -0
- package/inventory/src/models/PaginatedOverstockProducts.js +50 -0
- package/inventory/src/models/PaginatedOverstockProductsAllOf.d.ts +28 -0
- package/inventory/src/models/PaginatedOverstockProductsAllOf.js +42 -0
- package/inventory/src/models/PagingMetadata.d.ts +45 -0
- package/inventory/src/models/PagingMetadata.js +47 -0
- package/inventory/src/models/ProductLink.d.ts +41 -0
- package/inventory/src/models/ProductLink.js +51 -0
- package/inventory/src/models/ProductLinkAllOf.d.ts +40 -0
- package/inventory/src/models/ProductLinkAllOf.js +47 -0
- package/inventory/src/models/RestError.d.ts +81 -0
- package/inventory/src/models/RestError.js +93 -0
- package/inventory/src/models/Statistics.d.ts +42 -0
- package/inventory/src/models/Statistics.js +49 -0
- package/inventory/src/models/StatisticsActiveProducts.d.ts +33 -0
- package/inventory/src/models/StatisticsActiveProducts.js +44 -0
- package/inventory/src/models/StatisticsMisalignedProducts.d.ts +27 -0
- package/inventory/src/models/StatisticsMisalignedProducts.js +42 -0
- package/inventory/src/models/StatisticsOverstockProducts.d.ts +27 -0
- package/inventory/src/models/StatisticsOverstockProducts.js +42 -0
- package/inventory/src/models/Synchroneity.d.ts +28 -0
- package/inventory/src/models/Synchroneity.js +43 -0
- package/inventory/src/models/SynchroneityOffisante.d.ts +34 -0
- package/inventory/src/models/SynchroneityOffisante.js +45 -0
- package/inventory/src/models/SynchroneitySource.d.ts +33 -0
- package/inventory/src/models/SynchroneitySource.js +44 -0
- package/inventory/src/models/index.d.ts +25 -0
- package/inventory/src/models/index.js +41 -0
- package/inventory/src/runtime.d.ts +149 -0
- package/inventory/src/runtime.js +480 -0
- package/invoice/index.d.ts +1 -0
- package/invoice/index.js +17 -0
- package/invoice/src/apis/ManageInvoiceApi.d.ts +47 -0
- package/invoice/src/apis/ManageInvoiceApi.js +243 -0
- package/invoice/src/apis/ManageInvoiceLineApi.d.ts +40 -0
- package/invoice/src/apis/ManageInvoiceLineApi.js +215 -0
- package/invoice/src/apis/ManageInvoicesSummaryApi.d.ts +29 -0
- package/invoice/src/apis/ManageInvoicesSummaryApi.js +142 -0
- package/invoice/src/apis/SearchInvoiceApi.d.ts +66 -0
- package/invoice/src/apis/SearchInvoiceApi.js +269 -0
- package/invoice/src/apis/SearchInvoiceLineApi.d.ts +45 -0
- package/invoice/src/apis/SearchInvoiceLineApi.js +182 -0
- package/invoice/src/apis/SearchOrderTallyApi.d.ts +63 -0
- package/invoice/src/apis/SearchOrderTallyApi.js +268 -0
- package/invoice/src/apis/index.d.ts +6 -0
- package/invoice/src/apis/index.js +22 -0
- package/invoice/src/index.d.ts +3 -0
- package/invoice/src/index.js +19 -0
- package/invoice/src/models/HttpLink.d.ts +27 -0
- package/invoice/src/models/HttpLink.js +41 -0
- package/invoice/src/models/Invoice.d.ts +65 -0
- package/invoice/src/models/Invoice.js +56 -0
- package/invoice/src/models/InvoiceCreationParameters.d.ts +22 -0
- package/invoice/src/models/InvoiceCreationParameters.js +28 -0
- package/invoice/src/models/InvoiceSummaryCreationParameters.d.ts +39 -0
- package/invoice/src/models/InvoiceSummaryCreationParameters.js +46 -0
- package/invoice/src/models/InvoiceType.d.ts +33 -0
- package/invoice/src/models/InvoiceType.js +48 -0
- package/invoice/src/models/InvoiceUpdateParameters.d.ts +33 -0
- package/invoice/src/models/InvoiceUpdateParameters.js +44 -0
- package/invoice/src/models/OrderLink.d.ts +34 -0
- package/invoice/src/models/OrderLink.js +50 -0
- package/invoice/src/models/OrderLinkAllOf.d.ts +33 -0
- package/invoice/src/models/OrderLinkAllOf.js +44 -0
- package/invoice/src/models/OrderTally.d.ts +66 -0
- package/invoice/src/models/OrderTally.js +57 -0
- package/invoice/src/models/PaginatedInvoices.d.ts +29 -0
- package/invoice/src/models/PaginatedInvoices.js +50 -0
- package/invoice/src/models/PaginatedInvoicesAllOf.d.ts +28 -0
- package/invoice/src/models/PaginatedInvoicesAllOf.js +42 -0
- package/invoice/src/models/PaginatedObject.d.ts +28 -0
- package/invoice/src/models/PaginatedObject.js +42 -0
- package/invoice/src/models/PaginatedOrderTallies.d.ts +29 -0
- package/invoice/src/models/PaginatedOrderTallies.js +50 -0
- package/invoice/src/models/PaginatedOrderTalliesAllOf.d.ts +28 -0
- package/invoice/src/models/PaginatedOrderTalliesAllOf.js +42 -0
- package/invoice/src/models/PaginatedPlannedInvoiceLine.d.ts +29 -0
- package/invoice/src/models/PaginatedPlannedInvoiceLine.js +50 -0
- package/invoice/src/models/PaginatedPlannedInvoiceLineAllOf.d.ts +28 -0
- package/invoice/src/models/PaginatedPlannedInvoiceLineAllOf.js +42 -0
- package/invoice/src/models/PagingMetadata.d.ts +45 -0
- package/invoice/src/models/PagingMetadata.js +47 -0
- package/invoice/src/models/PlannedInvoiceLine.d.ts +52 -0
- package/invoice/src/models/PlannedInvoiceLine.js +50 -0
- package/invoice/src/models/PlannedInvoiceLineCreationParameters.d.ts +39 -0
- package/invoice/src/models/PlannedInvoiceLineCreationParameters.js +45 -0
- package/invoice/src/models/RestError.d.ts +81 -0
- package/invoice/src/models/RestError.js +93 -0
- package/invoice/src/models/UserLink.d.ts +41 -0
- package/invoice/src/models/UserLink.js +51 -0
- package/invoice/src/models/UserLinkAllOf.d.ts +40 -0
- package/invoice/src/models/UserLinkAllOf.js +47 -0
- package/invoice/src/models/UserLinkAllOfCompany.d.ts +27 -0
- package/invoice/src/models/UserLinkAllOfCompany.js +42 -0
- package/invoice/src/models/index.d.ts +23 -0
- package/invoice/src/models/index.js +39 -0
- package/invoice/src/runtime.d.ts +149 -0
- package/invoice/src/runtime.js +480 -0
- package/laboratory/index.d.ts +1 -0
- package/laboratory/index.js +17 -0
- package/laboratory/src/apis/ManageLaboratoryApi.d.ts +29 -0
- package/laboratory/src/apis/ManageLaboratoryApi.js +155 -0
- package/laboratory/src/apis/SearchLaboratoryApi.d.ts +53 -0
- package/laboratory/src/apis/SearchLaboratoryApi.js +250 -0
- package/laboratory/src/apis/index.d.ts +2 -0
- package/laboratory/src/apis/index.js +18 -0
- package/laboratory/src/index.d.ts +3 -0
- package/laboratory/src/index.js +19 -0
- package/laboratory/src/models/Laboratory.d.ts +33 -0
- package/laboratory/src/models/Laboratory.js +44 -0
- package/laboratory/src/models/LaboratoryCreationParameters.d.ts +27 -0
- package/laboratory/src/models/LaboratoryCreationParameters.js +41 -0
- package/laboratory/src/models/PaginatedLaboratories.d.ts +29 -0
- package/laboratory/src/models/PaginatedLaboratories.js +50 -0
- package/laboratory/src/models/PaginatedLaboratoriesAllOf.d.ts +28 -0
- package/laboratory/src/models/PaginatedLaboratoriesAllOf.js +42 -0
- package/laboratory/src/models/PaginatedObject.d.ts +28 -0
- package/laboratory/src/models/PaginatedObject.js +42 -0
- package/laboratory/src/models/PagingMetadata.d.ts +45 -0
- package/laboratory/src/models/PagingMetadata.js +47 -0
- package/laboratory/src/models/index.d.ts +6 -0
- package/laboratory/src/models/index.js +22 -0
- package/laboratory/src/runtime.d.ts +149 -0
- package/laboratory/src/runtime.js +480 -0
- package/laboratory-store/index.d.ts +1 -0
- package/laboratory-store/index.js +17 -0
- package/laboratory-store/src/apis/ManageLaboratoryStoreApi.d.ts +41 -0
- package/laboratory-store/src/apis/ManageLaboratoryStoreApi.js +227 -0
- package/laboratory-store/src/apis/ManageLaboratoryStoreImageApi.d.ts +64 -0
- package/laboratory-store/src/apis/ManageLaboratoryStoreImageApi.js +394 -0
- package/laboratory-store/src/apis/SearchLaboratoryStoreApi.d.ts +65 -0
- package/laboratory-store/src/apis/SearchLaboratoryStoreApi.js +265 -0
- package/laboratory-store/src/apis/index.d.ts +3 -0
- package/laboratory-store/src/apis/index.js +19 -0
- package/laboratory-store/src/index.d.ts +3 -0
- package/laboratory-store/src/index.js +19 -0
- package/laboratory-store/src/models/DisplayType.d.ts +23 -0
- package/laboratory-store/src/models/DisplayType.js +38 -0
- package/laboratory-store/src/models/HttpLink.d.ts +27 -0
- package/laboratory-store/src/models/HttpLink.js +41 -0
- package/laboratory-store/src/models/Image.d.ts +34 -0
- package/laboratory-store/src/models/Image.js +45 -0
- package/laboratory-store/src/models/ImageCreationParameters.d.ts +28 -0
- package/laboratory-store/src/models/ImageCreationParameters.js +41 -0
- package/laboratory-store/src/models/ImageVersions.d.ts +57 -0
- package/laboratory-store/src/models/ImageVersions.js +52 -0
- package/laboratory-store/src/models/LaboratoryStore.d.ts +102 -0
- package/laboratory-store/src/models/LaboratoryStore.js +69 -0
- package/laboratory-store/src/models/LaboratoryStoreCreationParameters.d.ts +22 -0
- package/laboratory-store/src/models/LaboratoryStoreCreationParameters.js +28 -0
- package/laboratory-store/src/models/LaboratoryStoreUpdateParameters.d.ts +83 -0
- package/laboratory-store/src/models/LaboratoryStoreUpdateParameters.js +62 -0
- package/laboratory-store/src/models/LaboratoryType.d.ts +26 -0
- package/laboratory-store/src/models/LaboratoryType.js +41 -0
- package/laboratory-store/src/models/OwnerLink.d.ts +34 -0
- package/laboratory-store/src/models/OwnerLink.js +50 -0
- package/laboratory-store/src/models/OwnerLinkAllOf.d.ts +33 -0
- package/laboratory-store/src/models/OwnerLinkAllOf.js +44 -0
- package/laboratory-store/src/models/PaginatedLaboratoryStores.d.ts +29 -0
- package/laboratory-store/src/models/PaginatedLaboratoryStores.js +51 -0
- package/laboratory-store/src/models/PaginatedLaboratoryStoresAllOf.d.ts +28 -0
- package/laboratory-store/src/models/PaginatedLaboratoryStoresAllOf.js +43 -0
- package/laboratory-store/src/models/PaginatedObject.d.ts +28 -0
- package/laboratory-store/src/models/PaginatedObject.js +42 -0
- package/laboratory-store/src/models/PagingMetadata.d.ts +45 -0
- package/laboratory-store/src/models/PagingMetadata.js +47 -0
- package/laboratory-store/src/models/RestError.d.ts +81 -0
- package/laboratory-store/src/models/RestError.js +93 -0
- package/laboratory-store/src/models/index.d.ts +16 -0
- package/laboratory-store/src/models/index.js +32 -0
- package/laboratory-store/src/runtime.d.ts +149 -0
- package/laboratory-store/src/runtime.js +480 -0
- package/laboratory-store-log/index.d.ts +1 -0
- package/laboratory-store-log/index.js +17 -0
- package/laboratory-store-log/src/apis/SearchLaboratoryStoreLogApi.d.ts +44 -0
- package/laboratory-store-log/src/apis/SearchLaboratoryStoreLogApi.js +183 -0
- package/laboratory-store-log/src/apis/index.d.ts +1 -0
- package/laboratory-store-log/src/apis/index.js +17 -0
- package/laboratory-store-log/src/index.d.ts +3 -0
- package/laboratory-store-log/src/index.js +19 -0
- package/laboratory-store-log/src/models/AnyLaboratoryStoreLog.d.ts +22 -0
- package/laboratory-store-log/src/models/AnyLaboratoryStoreLog.js +59 -0
- package/laboratory-store-log/src/models/HttpLink.d.ts +27 -0
- package/laboratory-store-log/src/models/HttpLink.js +41 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLink.d.ts +28 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLink.js +49 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLinkAllOf.d.ts +27 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLinkAllOf.js +41 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLog.d.ts +35 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLog.js +50 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLogAllOf.d.ts +34 -0
- package/laboratory-store-log/src/models/LaboratoryStoreLogAllOf.js +44 -0
- package/laboratory-store-log/src/models/Log.d.ts +39 -0
- package/laboratory-store-log/src/models/Log.js +45 -0
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogs.d.ts +29 -0
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogs.js +50 -0
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogsAllOf.d.ts +28 -0
- package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogsAllOf.js +42 -0
- package/laboratory-store-log/src/models/PaginatedObject.d.ts +28 -0
- package/laboratory-store-log/src/models/PaginatedObject.js +42 -0
- package/laboratory-store-log/src/models/PagingMetadata.d.ts +45 -0
- package/laboratory-store-log/src/models/PagingMetadata.js +47 -0
- package/laboratory-store-log/src/models/index.d.ts +11 -0
- package/laboratory-store-log/src/models/index.js +27 -0
- package/laboratory-store-log/src/runtime.d.ts +149 -0
- package/laboratory-store-log/src/runtime.js +480 -0
- package/lexicon/index.d.ts +1 -0
- package/lexicon/index.js +17 -0
- package/lexicon/src/apis/ManageLexiconApi.d.ts +42 -0
- package/lexicon/src/apis/ManageLexiconApi.js +217 -0
- package/lexicon/src/apis/SearchLexiconApi.d.ts +61 -0
- package/lexicon/src/apis/SearchLexiconApi.js +375 -0
- package/lexicon/src/apis/index.d.ts +2 -0
- package/lexicon/src/apis/index.js +18 -0
- package/lexicon/src/index.d.ts +3 -0
- package/lexicon/src/index.js +19 -0
- package/lexicon/src/models/PaginatedObject.d.ts +28 -0
- package/lexicon/src/models/PaginatedObject.js +42 -0
- package/lexicon/src/models/PaginatedTags.d.ts +29 -0
- package/lexicon/src/models/PaginatedTags.js +50 -0
- package/lexicon/src/models/PaginatedTagsAllOf.d.ts +28 -0
- package/lexicon/src/models/PaginatedTagsAllOf.js +42 -0
- package/lexicon/src/models/PagingMetadata.d.ts +45 -0
- package/lexicon/src/models/PagingMetadata.js +47 -0
- package/lexicon/src/models/PharmacyGroup.d.ts +33 -0
- package/lexicon/src/models/PharmacyGroup.js +44 -0
- package/lexicon/src/models/PharmacyLocation.d.ts +33 -0
- package/lexicon/src/models/PharmacyLocation.js +44 -0
- package/lexicon/src/models/PharmacySoftware.d.ts +33 -0
- package/lexicon/src/models/PharmacySoftware.js +44 -0
- package/lexicon/src/models/RestError.d.ts +81 -0
- package/lexicon/src/models/RestError.js +93 -0
- package/lexicon/src/models/Tag.d.ts +33 -0
- package/lexicon/src/models/Tag.js +44 -0
- package/lexicon/src/models/TagCreationParameters.d.ts +27 -0
- package/lexicon/src/models/TagCreationParameters.js +42 -0
- package/lexicon/src/models/index.d.ts +10 -0
- package/lexicon/src/models/index.js +26 -0
- package/lexicon/src/runtime.d.ts +149 -0
- package/lexicon/src/runtime.js +480 -0
- package/litigation/index.d.ts +1 -0
- package/litigation/index.js +17 -0
- package/litigation/src/apis/ManageLitigationApi.d.ts +31 -0
- package/litigation/src/apis/ManageLitigationApi.js +144 -0
- package/litigation/src/apis/index.d.ts +1 -0
- package/litigation/src/apis/index.js +17 -0
- package/litigation/src/index.d.ts +3 -0
- package/litigation/src/index.js +19 -0
- package/litigation/src/models/LitigationCreationParameters.d.ts +45 -0
- package/litigation/src/models/LitigationCreationParameters.js +47 -0
- package/litigation/src/models/RestError.d.ts +81 -0
- package/litigation/src/models/RestError.js +93 -0
- package/litigation/src/models/index.d.ts +2 -0
- package/litigation/src/models/index.js +18 -0
- package/litigation/src/runtime.d.ts +149 -0
- package/litigation/src/runtime.js +480 -0
- package/magic-cart/index.d.ts +1 -0
- package/magic-cart/index.js +17 -0
- package/magic-cart/src/apis/ManageMagicCartApi.d.ts +29 -0
- package/magic-cart/src/apis/ManageMagicCartApi.js +155 -0
- package/magic-cart/src/apis/index.d.ts +1 -0
- package/magic-cart/src/apis/index.js +17 -0
- package/magic-cart/src/index.d.ts +3 -0
- package/magic-cart/src/index.js +19 -0
- package/magic-cart/src/models/AnyMagicCartCreationParameters.d.ts +25 -0
- package/magic-cart/src/models/AnyMagicCartCreationParameters.js +64 -0
- package/magic-cart/src/models/MagicCart.d.ts +28 -0
- package/magic-cart/src/models/MagicCart.js +43 -0
- package/magic-cart/src/models/MagicCartWithInitialCreationParameters.d.ts +29 -0
- package/magic-cart/src/models/MagicCartWithInitialCreationParameters.js +50 -0
- package/magic-cart/src/models/MagicCartWithInitialCreationParametersAllOf.d.ts +28 -0
- package/magic-cart/src/models/MagicCartWithInitialCreationParametersAllOf.js +42 -0
- package/magic-cart/src/models/MagicCartWithNeedCreationParameters.d.ts +29 -0
- package/magic-cart/src/models/MagicCartWithNeedCreationParameters.js +50 -0
- package/magic-cart/src/models/MagicCartWithNeedCreationParametersAllOf.d.ts +28 -0
- package/magic-cart/src/models/MagicCartWithNeedCreationParametersAllOf.js +42 -0
- package/magic-cart/src/models/MagicNeed.d.ts +39 -0
- package/magic-cart/src/models/MagicNeed.js +45 -0
- package/magic-cart/src/models/MagicProductBus.d.ts +33 -0
- package/magic-cart/src/models/MagicProductBus.js +43 -0
- package/magic-cart/src/models/MagicProposal.d.ts +39 -0
- package/magic-cart/src/models/MagicProposal.js +45 -0
- package/magic-cart/src/models/index.d.ts +9 -0
- package/magic-cart/src/models/index.js +25 -0
- package/magic-cart/src/runtime.d.ts +149 -0
- package/magic-cart/src/runtime.js +480 -0
- package/mandate/index.d.ts +1 -0
- package/mandate/index.js +17 -0
- package/mandate/src/apis/ManageMandatesApi.d.ts +56 -0
- package/mandate/src/apis/ManageMandatesApi.js +357 -0
- package/mandate/src/apis/index.d.ts +1 -0
- package/mandate/src/apis/index.js +17 -0
- package/mandate/src/index.d.ts +3 -0
- package/mandate/src/index.js +19 -0
- package/mandate/src/models/Challenge.d.ts +34 -0
- package/mandate/src/models/Challenge.js +45 -0
- package/mandate/src/models/ChallengeAction.d.ts +34 -0
- package/mandate/src/models/ChallengeAction.js +50 -0
- package/mandate/src/models/Mandate.d.ts +56 -0
- package/mandate/src/models/Mandate.js +60 -0
- package/mandate/src/models/MandateChallenge.d.ts +28 -0
- package/mandate/src/models/MandateChallenge.js +49 -0
- package/mandate/src/models/MandateChallengeAllOf.d.ts +27 -0
- package/mandate/src/models/MandateChallengeAllOf.js +41 -0
- package/mandate/src/models/MandateChallengeCreationParameters.d.ts +27 -0
- package/mandate/src/models/MandateChallengeCreationParameters.js +41 -0
- package/mandate/src/models/MandateCreationParameters.d.ts +33 -0
- package/mandate/src/models/MandateCreationParameters.js +44 -0
- package/mandate/src/models/index.d.ts +7 -0
- package/mandate/src/models/index.js +23 -0
- package/mandate/src/runtime.d.ts +149 -0
- package/mandate/src/runtime.js +480 -0
- package/mangopay-hook/index.d.ts +1 -0
- package/mangopay-hook/index.js +17 -0
- package/mangopay-hook/src/apis/MangopayHookApi.d.ts +43 -0
- package/mangopay-hook/src/apis/MangopayHookApi.js +203 -0
- package/mangopay-hook/src/apis/index.d.ts +1 -0
- package/mangopay-hook/src/apis/index.js +17 -0
- package/mangopay-hook/src/index.d.ts +3 -0
- package/mangopay-hook/src/index.js +19 -0
- package/mangopay-hook/src/models/RestError.d.ts +81 -0
- package/mangopay-hook/src/models/RestError.js +93 -0
- package/mangopay-hook/src/models/index.d.ts +1 -0
- package/mangopay-hook/src/models/index.js +17 -0
- package/mangopay-hook/src/runtime.d.ts +149 -0
- package/mangopay-hook/src/runtime.js +480 -0
- package/message/index.d.ts +1 -0
- package/message/index.js +17 -0
- package/message/src/apis/ManageMessageApi.d.ts +76 -0
- package/message/src/apis/ManageMessageApi.js +421 -0
- package/message/src/apis/SearchMessageApi.d.ts +67 -0
- package/message/src/apis/SearchMessageApi.js +328 -0
- package/message/src/apis/index.d.ts +2 -0
- package/message/src/apis/index.js +18 -0
- package/message/src/index.d.ts +3 -0
- package/message/src/index.js +19 -0
- package/message/src/models/HttpLink.d.ts +27 -0
- package/message/src/models/HttpLink.js +41 -0
- package/message/src/models/Message.d.ts +52 -0
- package/message/src/models/Message.js +50 -0
- package/message/src/models/MessageCreationParameters.d.ts +39 -0
- package/message/src/models/MessageCreationParameters.js +45 -0
- package/message/src/models/MessageUpdateParameters.d.ts +39 -0
- package/message/src/models/MessageUpdateParameters.js +46 -0
- package/message/src/models/MessageViewerCreationParameters.d.ts +27 -0
- package/message/src/models/MessageViewerCreationParameters.js +42 -0
- package/message/src/models/PaginatedMessages.d.ts +29 -0
- package/message/src/models/PaginatedMessages.js +50 -0
- package/message/src/models/PaginatedMessagesAllOf.d.ts +28 -0
- package/message/src/models/PaginatedMessagesAllOf.js +42 -0
- package/message/src/models/PaginatedObject.d.ts +28 -0
- package/message/src/models/PaginatedObject.js +42 -0
- package/message/src/models/PagingMetadata.d.ts +45 -0
- package/message/src/models/PagingMetadata.js +47 -0
- package/message/src/models/ViewerLink.d.ts +34 -0
- package/message/src/models/ViewerLink.js +49 -0
- package/message/src/models/ViewerLinkAllOf.d.ts +33 -0
- package/message/src/models/ViewerLinkAllOf.js +43 -0
- package/message/src/models/index.d.ts +11 -0
- package/message/src/models/index.js +27 -0
- package/message/src/runtime.d.ts +149 -0
- package/message/src/runtime.js +480 -0
- package/notification/index.d.ts +1 -0
- package/notification/index.js +17 -0
- package/notification/src/apis/ManageNotificationApi.d.ts +43 -0
- package/notification/src/apis/ManageNotificationApi.js +226 -0
- package/notification/src/apis/ManageNotificationTypeApi.d.ts +54 -0
- package/notification/src/apis/ManageNotificationTypeApi.js +315 -0
- package/notification/src/apis/SearchNotificationApi.d.ts +54 -0
- package/notification/src/apis/SearchNotificationApi.js +253 -0
- package/notification/src/apis/SearchNotificationTypeApi.d.ts +57 -0
- package/notification/src/apis/SearchNotificationTypeApi.js +254 -0
- package/notification/src/apis/index.d.ts +4 -0
- package/notification/src/apis/index.js +20 -0
- package/notification/src/index.d.ts +3 -0
- package/notification/src/index.js +19 -0
- package/notification/src/models/HttpLink.d.ts +27 -0
- package/notification/src/models/HttpLink.js +41 -0
- package/notification/src/models/Notification.d.ts +71 -0
- package/notification/src/models/Notification.js +58 -0
- package/notification/src/models/NotificationType.d.ts +77 -0
- package/notification/src/models/NotificationType.js +60 -0
- package/notification/src/models/NotificationTypeAttachment.d.ts +57 -0
- package/notification/src/models/NotificationTypeAttachment.js +52 -0
- package/notification/src/models/NotificationTypeAttachmentCreationParameters.d.ts +28 -0
- package/notification/src/models/NotificationTypeAttachmentCreationParameters.js +42 -0
- package/notification/src/models/NotificationTypeId.d.ts +58 -0
- package/notification/src/models/NotificationTypeId.js +73 -0
- package/notification/src/models/NotificationTypeUpdateParameters.d.ts +57 -0
- package/notification/src/models/NotificationTypeUpdateParameters.js +52 -0
- package/notification/src/models/NotificationUpdateParameters.d.ts +33 -0
- package/notification/src/models/NotificationUpdateParameters.js +44 -0
- package/notification/src/models/PaginatedNotificationTypes.d.ts +29 -0
- package/notification/src/models/PaginatedNotificationTypes.js +51 -0
- package/notification/src/models/PaginatedNotificationTypesAllOf.d.ts +28 -0
- package/notification/src/models/PaginatedNotificationTypesAllOf.js +43 -0
- package/notification/src/models/PaginatedNotifications.d.ts +29 -0
- package/notification/src/models/PaginatedNotifications.js +51 -0
- package/notification/src/models/PaginatedNotificationsAllOf.d.ts +28 -0
- package/notification/src/models/PaginatedNotificationsAllOf.js +43 -0
- package/notification/src/models/PaginatedObject.d.ts +28 -0
- package/notification/src/models/PaginatedObject.js +42 -0
- package/notification/src/models/PagingMetadata.d.ts +45 -0
- package/notification/src/models/PagingMetadata.js +47 -0
- package/notification/src/models/RestError.d.ts +81 -0
- package/notification/src/models/RestError.js +93 -0
- package/notification/src/models/index.d.ts +15 -0
- package/notification/src/models/index.js +31 -0
- package/notification/src/runtime.d.ts +149 -0
- package/notification/src/runtime.js +480 -0
- package/order/index.d.ts +1 -0
- package/order/index.js +17 -0
- package/order/src/apis/ManageMetaOrderApi.d.ts +45 -0
- package/order/src/apis/ManageMetaOrderApi.js +224 -0
- package/order/src/apis/ManageOrderApi.d.ts +140 -0
- package/order/src/apis/ManageOrderApi.js +729 -0
- package/order/src/apis/ManageOrderItemApi.d.ts +90 -0
- package/order/src/apis/ManageOrderItemApi.js +456 -0
- package/order/src/apis/SearchOrderApi.d.ts +107 -0
- package/order/src/apis/SearchOrderApi.js +456 -0
- package/order/src/apis/SearchOrderItemApi.d.ts +127 -0
- package/order/src/apis/SearchOrderItemApi.js +511 -0
- package/order/src/apis/index.d.ts +5 -0
- package/order/src/apis/index.js +21 -0
- package/order/src/index.d.ts +3 -0
- package/order/src/index.js +19 -0
- package/order/src/models/Address.d.ts +45 -0
- package/order/src/models/Address.js +48 -0
- package/order/src/models/Anomalies.d.ts +45 -0
- package/order/src/models/Anomalies.js +48 -0
- package/order/src/models/AnomaliesUpdateParameters.d.ts +22 -0
- package/order/src/models/AnomaliesUpdateParameters.js +28 -0
- package/order/src/models/Barcodes.d.ts +45 -0
- package/order/src/models/Barcodes.js +48 -0
- package/order/src/models/HttpLink.d.ts +27 -0
- package/order/src/models/HttpLink.js +41 -0
- package/order/src/models/MetaOrder.d.ts +60 -0
- package/order/src/models/MetaOrder.js +55 -0
- package/order/src/models/MetaOrderCreationParameters.d.ts +34 -0
- package/order/src/models/MetaOrderCreationParameters.js +44 -0
- package/order/src/models/MetaOrderCreationSubCartParameters.d.ts +27 -0
- package/order/src/models/MetaOrderCreationSubCartParameters.js +41 -0
- package/order/src/models/MetaOrderPrices.d.ts +75 -0
- package/order/src/models/MetaOrderPrices.js +58 -0
- package/order/src/models/MetaOrderWarning.d.ts +63 -0
- package/order/src/models/MetaOrderWarning.js +63 -0
- package/order/src/models/MetaOrderWithWarnings.d.ts +35 -0
- package/order/src/models/MetaOrderWithWarnings.js +46 -0
- package/order/src/models/Order.d.ts +184 -0
- package/order/src/models/Order.js +99 -0
- package/order/src/models/OrderAddedItem.d.ts +22 -0
- package/order/src/models/OrderAddedItem.js +28 -0
- package/order/src/models/OrderItem.d.ts +78 -0
- package/order/src/models/OrderItem.js +61 -0
- package/order/src/models/OrderItemPrices.d.ts +45 -0
- package/order/src/models/OrderItemPrices.js +48 -0
- package/order/src/models/OrderItemUpdateParameters.d.ts +27 -0
- package/order/src/models/OrderItemUpdateParameters.js +41 -0
- package/order/src/models/OrderItemsOperation.d.ts +24 -0
- package/order/src/models/OrderItemsOperation.js +39 -0
- package/order/src/models/OrderPrices.d.ts +75 -0
- package/order/src/models/OrderPrices.js +58 -0
- package/order/src/models/OrderRefundedItem.d.ts +22 -0
- package/order/src/models/OrderRefundedItem.js +28 -0
- package/order/src/models/OrderRemovedItem.d.ts +22 -0
- package/order/src/models/OrderRemovedItem.js +28 -0
- package/order/src/models/OrderRemovedItemUpdateParameters.d.ts +22 -0
- package/order/src/models/OrderRemovedItemUpdateParameters.js +28 -0
- package/order/src/models/OrderStatus.d.ts +34 -0
- package/order/src/models/OrderStatus.js +49 -0
- package/order/src/models/OrderThreads.d.ts +28 -0
- package/order/src/models/OrderThreads.js +43 -0
- package/order/src/models/OrderType.d.ts +23 -0
- package/order/src/models/OrderType.js +38 -0
- package/order/src/models/OrderUpdateParameters.d.ts +27 -0
- package/order/src/models/OrderUpdateParameters.js +42 -0
- package/order/src/models/PaginatedObject.d.ts +28 -0
- package/order/src/models/PaginatedObject.js +42 -0
- package/order/src/models/PaginatedOrders.d.ts +29 -0
- package/order/src/models/PaginatedOrders.js +50 -0
- package/order/src/models/PaginatedOrdersAllOf.d.ts +28 -0
- package/order/src/models/PaginatedOrdersAllOf.js +42 -0
- package/order/src/models/PagingMetadata.d.ts +45 -0
- package/order/src/models/PagingMetadata.js +47 -0
- package/order/src/models/ProductLink.d.ts +48 -0
- package/order/src/models/ProductLink.js +52 -0
- package/order/src/models/ProductLinkAllOf.d.ts +47 -0
- package/order/src/models/ProductLinkAllOf.js +50 -0
- package/order/src/models/Reservation.d.ts +59 -0
- package/order/src/models/Reservation.js +54 -0
- package/order/src/models/ReservationUpdateParameters.d.ts +27 -0
- package/order/src/models/ReservationUpdateParameters.js +42 -0
- package/order/src/models/RestError.d.ts +81 -0
- package/order/src/models/RestError.js +93 -0
- package/order/src/models/SaleOfferLink.d.ts +28 -0
- package/order/src/models/SaleOfferLink.js +49 -0
- package/order/src/models/SaleOfferLinkAllOf.d.ts +27 -0
- package/order/src/models/SaleOfferLinkAllOf.js +41 -0
- package/order/src/models/ShoppedOffer.d.ts +39 -0
- package/order/src/models/ShoppedOffer.js +46 -0
- package/order/src/models/ThreadLink.d.ts +28 -0
- package/order/src/models/ThreadLink.js +49 -0
- package/order/src/models/ThreadLinkAllOf.d.ts +27 -0
- package/order/src/models/ThreadLinkAllOf.js +41 -0
- package/order/src/models/UpdateOrderStatusParameters.d.ts +31 -0
- package/order/src/models/UpdateOrderStatusParameters.js +46 -0
- package/order/src/models/UserLink.d.ts +41 -0
- package/order/src/models/UserLink.js +51 -0
- package/order/src/models/UserLinkAllOf.d.ts +40 -0
- package/order/src/models/UserLinkAllOf.js +47 -0
- package/order/src/models/UserLinkAllOfCompany.d.ts +27 -0
- package/order/src/models/UserLinkAllOfCompany.js +42 -0
- package/order/src/models/Vat.d.ts +39 -0
- package/order/src/models/Vat.js +46 -0
- package/order/src/models/index.d.ts +44 -0
- package/order/src/models/index.js +60 -0
- package/order/src/runtime.d.ts +149 -0
- package/order/src/runtime.js +480 -0
- package/order-log/index.d.ts +1 -0
- package/order-log/index.js +17 -0
- package/order-log/src/apis/SearchOrderLogApi.d.ts +44 -0
- package/order-log/src/apis/SearchOrderLogApi.js +183 -0
- package/order-log/src/apis/index.d.ts +1 -0
- package/order-log/src/apis/index.js +17 -0
- package/order-log/src/index.d.ts +3 -0
- package/order-log/src/index.js +19 -0
- package/order-log/src/models/AnyOrderLog.d.ts +22 -0
- package/order-log/src/models/AnyOrderLog.js +59 -0
- package/order-log/src/models/HttpLink.d.ts +27 -0
- package/order-log/src/models/HttpLink.js +41 -0
- package/order-log/src/models/Log.d.ts +39 -0
- package/order-log/src/models/Log.js +45 -0
- package/order-log/src/models/OrderLink.d.ts +28 -0
- package/order-log/src/models/OrderLink.js +49 -0
- package/order-log/src/models/OrderLinkAllOf.d.ts +27 -0
- package/order-log/src/models/OrderLinkAllOf.js +41 -0
- package/order-log/src/models/OrderLog.d.ts +35 -0
- package/order-log/src/models/OrderLog.js +50 -0
- package/order-log/src/models/OrderLogAllOf.d.ts +34 -0
- package/order-log/src/models/OrderLogAllOf.js +44 -0
- package/order-log/src/models/PaginatedObject.d.ts +28 -0
- package/order-log/src/models/PaginatedObject.js +42 -0
- package/order-log/src/models/PaginatedOrderLogs.d.ts +29 -0
- package/order-log/src/models/PaginatedOrderLogs.js +50 -0
- package/order-log/src/models/PaginatedOrderLogsAllOf.d.ts +28 -0
- package/order-log/src/models/PaginatedOrderLogsAllOf.js +42 -0
- package/order-log/src/models/PagingMetadata.d.ts +45 -0
- package/order-log/src/models/PagingMetadata.js +47 -0
- package/order-log/src/models/index.d.ts +11 -0
- package/order-log/src/models/index.js +27 -0
- package/order-log/src/runtime.d.ts +149 -0
- package/order-log/src/runtime.js +480 -0
- package/outrage-message/index.d.ts +1 -0
- package/outrage-message/index.js +17 -0
- package/outrage-message/src/apis/ManageOutrageMessageApi.d.ts +52 -0
- package/outrage-message/src/apis/ManageOutrageMessageApi.js +293 -0
- package/outrage-message/src/apis/SearchOutrageMessageApi.d.ts +54 -0
- package/outrage-message/src/apis/SearchOutrageMessageApi.js +249 -0
- package/outrage-message/src/apis/index.d.ts +2 -0
- package/outrage-message/src/apis/index.js +18 -0
- package/outrage-message/src/index.d.ts +3 -0
- package/outrage-message/src/index.js +19 -0
- package/outrage-message/src/models/OutrageMessage.d.ts +51 -0
- package/outrage-message/src/models/OutrageMessage.js +50 -0
- package/outrage-message/src/models/OutrageMessageCreationParameters.d.ts +33 -0
- package/outrage-message/src/models/OutrageMessageCreationParameters.js +43 -0
- package/outrage-message/src/models/OutrageMessageUpdateParameters.d.ts +33 -0
- package/outrage-message/src/models/OutrageMessageUpdateParameters.js +44 -0
- package/outrage-message/src/models/PaginatedObject.d.ts +28 -0
- package/outrage-message/src/models/PaginatedObject.js +42 -0
- package/outrage-message/src/models/PaginatedOutrageMessages.d.ts +29 -0
- package/outrage-message/src/models/PaginatedOutrageMessages.js +51 -0
- package/outrage-message/src/models/PaginatedOutrageMessagesAllOf.d.ts +28 -0
- package/outrage-message/src/models/PaginatedOutrageMessagesAllOf.js +43 -0
- package/outrage-message/src/models/PagingMetadata.d.ts +45 -0
- package/outrage-message/src/models/PagingMetadata.js +47 -0
- package/outrage-message/src/models/index.d.ts +7 -0
- package/outrage-message/src/models/index.js +23 -0
- package/outrage-message/src/runtime.d.ts +149 -0
- package/outrage-message/src/runtime.js +480 -0
- package/package.json +10 -0
- package/product/index.d.ts +1 -0
- package/product/index.js +17 -0
- package/product/src/apis/ManageProductApi.d.ts +45 -0
- package/product/src/apis/ManageProductApi.js +237 -0
- package/product/src/apis/ManageProductImageApi.d.ts +41 -0
- package/product/src/apis/ManageProductImageApi.js +225 -0
- package/product/src/apis/ManageProductProscriptionApi.d.ts +44 -0
- package/product/src/apis/ManageProductProscriptionApi.js +220 -0
- package/product/src/apis/SearchProductApi.d.ts +74 -0
- package/product/src/apis/SearchProductApi.js +281 -0
- package/product/src/apis/SearchProductImageApi.d.ts +41 -0
- package/product/src/apis/SearchProductImageApi.js +229 -0
- package/product/src/apis/SearchProductMetadataApi.d.ts +34 -0
- package/product/src/apis/SearchProductMetadataApi.js +220 -0
- package/product/src/apis/SearchProductProscriptionApi.d.ts +42 -0
- package/product/src/apis/SearchProductProscriptionApi.js +173 -0
- package/product/src/apis/index.d.ts +7 -0
- package/product/src/apis/index.js +23 -0
- package/product/src/index.d.ts +3 -0
- package/product/src/index.js +19 -0
- package/product/src/models/Barcodes.d.ts +45 -0
- package/product/src/models/Barcodes.js +48 -0
- package/product/src/models/HttpLink.d.ts +27 -0
- package/product/src/models/HttpLink.js +41 -0
- package/product/src/models/Image.d.ts +40 -0
- package/product/src/models/Image.js +47 -0
- package/product/src/models/ImageCreationParameters.d.ts +28 -0
- package/product/src/models/ImageCreationParameters.js +42 -0
- package/product/src/models/ImageVersions.d.ts +57 -0
- package/product/src/models/ImageVersions.js +52 -0
- package/product/src/models/LaboratoryLink.d.ts +34 -0
- package/product/src/models/LaboratoryLink.js +50 -0
- package/product/src/models/LaboratoryLinkAllOf.d.ts +33 -0
- package/product/src/models/LaboratoryLinkAllOf.js +44 -0
- package/product/src/models/PaginatedObject.d.ts +28 -0
- package/product/src/models/PaginatedObject.js +42 -0
- package/product/src/models/PaginatedProductProscriptions.d.ts +29 -0
- package/product/src/models/PaginatedProductProscriptions.js +50 -0
- package/product/src/models/PaginatedProductProscriptionsAllOf.d.ts +28 -0
- package/product/src/models/PaginatedProductProscriptionsAllOf.js +42 -0
- package/product/src/models/PaginatedProducts.d.ts +29 -0
- package/product/src/models/PaginatedProducts.js +50 -0
- package/product/src/models/PaginatedProductsAllOf.d.ts +28 -0
- package/product/src/models/PaginatedProductsAllOf.js +42 -0
- package/product/src/models/PagingMetadata.d.ts +45 -0
- package/product/src/models/PagingMetadata.js +47 -0
- package/product/src/models/Product.d.ts +188 -0
- package/product/src/models/Product.js +103 -0
- package/product/src/models/ProductCreationOrUpdateParameters.d.ts +139 -0
- package/product/src/models/ProductCreationOrUpdateParameters.js +82 -0
- package/product/src/models/ProductDispensationPlace.d.ts +23 -0
- package/product/src/models/ProductDispensationPlace.js +38 -0
- package/product/src/models/ProductMarketStatus.d.ts +27 -0
- package/product/src/models/ProductMarketStatus.js +42 -0
- package/product/src/models/ProductProscription.d.ts +39 -0
- package/product/src/models/ProductProscription.js +46 -0
- package/product/src/models/ProductProscriptionCreationParameters.d.ts +27 -0
- package/product/src/models/ProductProscriptionCreationParameters.js +42 -0
- package/product/src/models/ProductProvider.d.ts +23 -0
- package/product/src/models/ProductProvider.js +38 -0
- package/product/src/models/ProductSecondaryType.d.ts +33 -0
- package/product/src/models/ProductSecondaryType.js +44 -0
- package/product/src/models/ProductStatus.d.ts +25 -0
- package/product/src/models/ProductStatus.js +40 -0
- package/product/src/models/ProductType.d.ts +33 -0
- package/product/src/models/ProductType.js +44 -0
- package/product/src/models/RestError.d.ts +81 -0
- package/product/src/models/RestError.js +93 -0
- package/product/src/models/Statistics.d.ts +27 -0
- package/product/src/models/Statistics.js +42 -0
- package/product/src/models/Vat.d.ts +39 -0
- package/product/src/models/Vat.js +46 -0
- package/product/src/models/index.d.ts +26 -0
- package/product/src/models/index.js +42 -0
- package/product/src/runtime.d.ts +149 -0
- package/product/src/runtime.js +480 -0
- package/pub/index.d.ts +1 -0
- package/pub/index.js +17 -0
- package/pub/src/apis/ManagePubApi.d.ts +64 -0
- package/pub/src/apis/ManagePubApi.js +352 -0
- package/pub/src/apis/ManagePubImageApi.d.ts +30 -0
- package/pub/src/apis/ManagePubImageApi.js +174 -0
- package/pub/src/apis/SearchPubApi.d.ts +103 -0
- package/pub/src/apis/SearchPubApi.js +379 -0
- package/pub/src/apis/index.d.ts +3 -0
- package/pub/src/apis/index.js +19 -0
- package/pub/src/index.d.ts +3 -0
- package/pub/src/index.js +19 -0
- package/pub/src/models/HttpLink.d.ts +27 -0
- package/pub/src/models/HttpLink.js +41 -0
- package/pub/src/models/Image.d.ts +40 -0
- package/pub/src/models/Image.js +47 -0
- package/pub/src/models/ImageVersions.d.ts +57 -0
- package/pub/src/models/ImageVersions.js +52 -0
- package/pub/src/models/PaginatedObject.d.ts +28 -0
- package/pub/src/models/PaginatedObject.js +42 -0
- package/pub/src/models/PaginatedPubStatistics.d.ts +29 -0
- package/pub/src/models/PaginatedPubStatistics.js +50 -0
- package/pub/src/models/PaginatedPubStatisticsAllOf.d.ts +28 -0
- package/pub/src/models/PaginatedPubStatisticsAllOf.js +42 -0
- package/pub/src/models/PaginatedPubs.d.ts +29 -0
- package/pub/src/models/PaginatedPubs.js +50 -0
- package/pub/src/models/PaginatedPubsAllOf.d.ts +28 -0
- package/pub/src/models/PaginatedPubsAllOf.js +42 -0
- package/pub/src/models/PagingMetadata.d.ts +45 -0
- package/pub/src/models/PagingMetadata.js +47 -0
- package/pub/src/models/Pub.d.ts +109 -0
- package/pub/src/models/Pub.js +72 -0
- package/pub/src/models/PubClickCreationParameters.d.ts +27 -0
- package/pub/src/models/PubClickCreationParameters.js +41 -0
- package/pub/src/models/PubCreationParameters.d.ts +54 -0
- package/pub/src/models/PubCreationParameters.js +53 -0
- package/pub/src/models/PubImageParameters.d.ts +28 -0
- package/pub/src/models/PubImageParameters.js +42 -0
- package/pub/src/models/PubLocationEnum.d.ts +22 -0
- package/pub/src/models/PubLocationEnum.js +37 -0
- package/pub/src/models/PubSchedule.d.ts +33 -0
- package/pub/src/models/PubSchedule.js +44 -0
- package/pub/src/models/PubStatistics.d.ts +40 -0
- package/pub/src/models/PubStatistics.js +47 -0
- package/pub/src/models/PubTimecard.d.ts +33 -0
- package/pub/src/models/PubTimecard.js +44 -0
- package/pub/src/models/PubUpdateParameters.d.ts +60 -0
- package/pub/src/models/PubUpdateParameters.js +55 -0
- package/pub/src/models/RestError.d.ts +81 -0
- package/pub/src/models/RestError.js +93 -0
- package/pub/src/models/UserLink.d.ts +41 -0
- package/pub/src/models/UserLink.js +51 -0
- package/pub/src/models/UserLinkAllOf.d.ts +40 -0
- package/pub/src/models/UserLinkAllOf.js +47 -0
- package/pub/src/models/UserLinkAllOfCompany.d.ts +27 -0
- package/pub/src/models/UserLinkAllOfCompany.js +42 -0
- package/pub/src/models/index.d.ts +22 -0
- package/pub/src/models/index.js +38 -0
- package/pub/src/runtime.d.ts +149 -0
- package/pub/src/runtime.js +480 -0
- package/recommendation/index.d.ts +1 -0
- package/recommendation/index.js +17 -0
- package/recommendation/src/apis/ManageProductRecommendationFeedbackApi.d.ts +30 -0
- package/recommendation/src/apis/ManageProductRecommendationFeedbackApi.js +155 -0
- package/recommendation/src/apis/SearchProductPriceRecommendationApi.d.ts +42 -0
- package/recommendation/src/apis/SearchProductPriceRecommendationApi.js +173 -0
- package/recommendation/src/apis/SearchProductRecommendationApi.d.ts +44 -0
- package/recommendation/src/apis/SearchProductRecommendationApi.js +182 -0
- package/recommendation/src/apis/index.d.ts +3 -0
- package/recommendation/src/apis/index.js +19 -0
- package/recommendation/src/index.d.ts +3 -0
- package/recommendation/src/index.js +19 -0
- package/recommendation/src/models/HttpLink.d.ts +27 -0
- package/recommendation/src/models/HttpLink.js +41 -0
- package/recommendation/src/models/PaginatedObject.d.ts +28 -0
- package/recommendation/src/models/PaginatedObject.js +42 -0
- package/recommendation/src/models/PaginatedProductPriceRecommendations.d.ts +29 -0
- package/recommendation/src/models/PaginatedProductPriceRecommendations.js +50 -0
- package/recommendation/src/models/PaginatedProductPriceRecommendationsAllOf.d.ts +28 -0
- package/recommendation/src/models/PaginatedProductPriceRecommendationsAllOf.js +42 -0
- package/recommendation/src/models/PaginatedProductRecommendations.d.ts +29 -0
- package/recommendation/src/models/PaginatedProductRecommendations.js +50 -0
- package/recommendation/src/models/PaginatedProductRecommendationsAllOf.d.ts +28 -0
- package/recommendation/src/models/PaginatedProductRecommendationsAllOf.js +42 -0
- package/recommendation/src/models/PagingMetadata.d.ts +45 -0
- package/recommendation/src/models/PagingMetadata.js +47 -0
- package/recommendation/src/models/ProductLink.d.ts +28 -0
- package/recommendation/src/models/ProductLink.js +50 -0
- package/recommendation/src/models/ProductLinkAllOf.d.ts +27 -0
- package/recommendation/src/models/ProductLinkAllOf.js +42 -0
- package/recommendation/src/models/ProductPriceRecommendation.d.ts +46 -0
- package/recommendation/src/models/ProductPriceRecommendation.js +49 -0
- package/recommendation/src/models/ProductRecommendation.d.ts +53 -0
- package/recommendation/src/models/ProductRecommendation.js +52 -0
- package/recommendation/src/models/ProductRecommendationFeedback.d.ts +53 -0
- package/recommendation/src/models/ProductRecommendationFeedback.js +52 -0
- package/recommendation/src/models/ProductRecommendationType.d.ts +24 -0
- package/recommendation/src/models/ProductRecommendationType.js +39 -0
- package/recommendation/src/models/RecommendationFeedbackCreationParameters.d.ts +33 -0
- package/recommendation/src/models/RecommendationFeedbackCreationParameters.js +43 -0
- package/recommendation/src/models/UserLink.d.ts +28 -0
- package/recommendation/src/models/UserLink.js +50 -0
- package/recommendation/src/models/UserLinkAllOf.d.ts +27 -0
- package/recommendation/src/models/UserLinkAllOf.js +42 -0
- package/recommendation/src/models/index.d.ts +16 -0
- package/recommendation/src/models/index.js +32 -0
- package/recommendation/src/runtime.d.ts +149 -0
- package/recommendation/src/runtime.js +480 -0
- package/rfx/index.d.ts +1 -0
- package/rfx/index.js +17 -0
- package/rfx/src/apis/ManageRfiApi.d.ts +29 -0
- package/rfx/src/apis/ManageRfiApi.js +145 -0
- package/rfx/src/apis/ManageRfilApi.d.ts +29 -0
- package/rfx/src/apis/ManageRfilApi.js +139 -0
- package/rfx/src/apis/ManageRfoApi.d.ts +31 -0
- package/rfx/src/apis/ManageRfoApi.js +141 -0
- package/rfx/src/apis/ManageRfoiApi.d.ts +43 -0
- package/rfx/src/apis/ManageRfoiApi.js +235 -0
- package/rfx/src/apis/SearchRfoiApi.d.ts +53 -0
- package/rfx/src/apis/SearchRfoiApi.js +190 -0
- package/rfx/src/apis/index.d.ts +5 -0
- package/rfx/src/apis/index.js +21 -0
- package/rfx/src/index.d.ts +3 -0
- package/rfx/src/index.js +19 -0
- package/rfx/src/models/HttpLink.d.ts +27 -0
- package/rfx/src/models/HttpLink.js +41 -0
- package/rfx/src/models/OrderLink.d.ts +28 -0
- package/rfx/src/models/OrderLink.js +50 -0
- package/rfx/src/models/OrderLinkAllOf.d.ts +27 -0
- package/rfx/src/models/OrderLinkAllOf.js +42 -0
- package/rfx/src/models/PaginatedObject.d.ts +28 -0
- package/rfx/src/models/PaginatedObject.js +42 -0
- package/rfx/src/models/PaginatedRfois.d.ts +29 -0
- package/rfx/src/models/PaginatedRfois.js +50 -0
- package/rfx/src/models/PaginatedRfoisAllOf.d.ts +28 -0
- package/rfx/src/models/PaginatedRfoisAllOf.js +42 -0
- package/rfx/src/models/PagingMetadata.d.ts +45 -0
- package/rfx/src/models/PagingMetadata.js +47 -0
- package/rfx/src/models/RestError.d.ts +81 -0
- package/rfx/src/models/RestError.js +93 -0
- package/rfx/src/models/RfiCreationParameters.d.ts +51 -0
- package/rfx/src/models/RfiCreationParameters.js +50 -0
- package/rfx/src/models/RfilCreationParameters.d.ts +33 -0
- package/rfx/src/models/RfilCreationParameters.js +43 -0
- package/rfx/src/models/RfoCreationParameters.d.ts +27 -0
- package/rfx/src/models/RfoCreationParameters.js +41 -0
- package/rfx/src/models/Rfoi.d.ts +65 -0
- package/rfx/src/models/Rfoi.js +56 -0
- package/rfx/src/models/RfoiCreationParameters.d.ts +27 -0
- package/rfx/src/models/RfoiCreationParameters.js +41 -0
- package/rfx/src/models/RfoiUpdateParameters.d.ts +27 -0
- package/rfx/src/models/RfoiUpdateParameters.js +42 -0
- package/rfx/src/models/UserLink.d.ts +41 -0
- package/rfx/src/models/UserLink.js +51 -0
- package/rfx/src/models/UserLinkAllOf.d.ts +40 -0
- package/rfx/src/models/UserLinkAllOf.js +47 -0
- package/rfx/src/models/UserLinkAllOfCompany.d.ts +27 -0
- package/rfx/src/models/UserLinkAllOfCompany.js +42 -0
- package/rfx/src/models/index.d.ts +17 -0
- package/rfx/src/models/index.js +33 -0
- package/rfx/src/runtime.d.ts +149 -0
- package/rfx/src/runtime.js +480 -0
- package/sale-offer/index.d.ts +1 -0
- package/sale-offer/index.js +17 -0
- package/sale-offer/src/apis/ManageSaleOfferApi.d.ts +74 -0
- package/sale-offer/src/apis/ManageSaleOfferApi.js +371 -0
- package/sale-offer/src/apis/ManageSaleOfferStatusApi.d.ts +32 -0
- package/sale-offer/src/apis/ManageSaleOfferStatusApi.js +160 -0
- package/sale-offer/src/apis/SearchSaleOfferApi.d.ts +101 -0
- package/sale-offer/src/apis/SearchSaleOfferApi.js +329 -0
- package/sale-offer/src/apis/index.d.ts +3 -0
- package/sale-offer/src/apis/index.js +19 -0
- package/sale-offer/src/index.d.ts +3 -0
- package/sale-offer/src/index.js +19 -0
- package/sale-offer/src/models/AnyDistributionMode.d.ts +28 -0
- package/sale-offer/src/models/AnyDistributionMode.js +69 -0
- package/sale-offer/src/models/AnyIdentifiedDistributionMode.d.ts +28 -0
- package/sale-offer/src/models/AnyIdentifiedDistributionMode.js +69 -0
- package/sale-offer/src/models/Barcodes.d.ts +45 -0
- package/sale-offer/src/models/Barcodes.js +48 -0
- package/sale-offer/src/models/DistributionMode.d.ts +27 -0
- package/sale-offer/src/models/DistributionMode.js +41 -0
- package/sale-offer/src/models/DistributionRange.d.ts +39 -0
- package/sale-offer/src/models/DistributionRange.js +45 -0
- package/sale-offer/src/models/HttpLink.d.ts +27 -0
- package/sale-offer/src/models/HttpLink.js +41 -0
- package/sale-offer/src/models/IdentifiedDistributionRange.d.ts +34 -0
- package/sale-offer/src/models/IdentifiedDistributionRange.js +49 -0
- package/sale-offer/src/models/IdentifiedDistributionRangeAllOf.d.ts +33 -0
- package/sale-offer/src/models/IdentifiedDistributionRangeAllOf.js +43 -0
- package/sale-offer/src/models/IdentifiedRangeDistributionMode.d.ts +29 -0
- package/sale-offer/src/models/IdentifiedRangeDistributionMode.js +50 -0
- package/sale-offer/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +28 -0
- package/sale-offer/src/models/IdentifiedRangeDistributionModeAllOf.js +42 -0
- package/sale-offer/src/models/ImageVersions.d.ts +57 -0
- package/sale-offer/src/models/ImageVersions.js +52 -0
- package/sale-offer/src/models/Images.d.ts +40 -0
- package/sale-offer/src/models/Images.js +47 -0
- package/sale-offer/src/models/OwnerLink.d.ts +41 -0
- package/sale-offer/src/models/OwnerLink.js +51 -0
- package/sale-offer/src/models/OwnerLinkAllOf.d.ts +40 -0
- package/sale-offer/src/models/OwnerLinkAllOf.js +47 -0
- package/sale-offer/src/models/OwnerLinkAllOfCompany.d.ts +27 -0
- package/sale-offer/src/models/OwnerLinkAllOfCompany.js +42 -0
- package/sale-offer/src/models/PaginatedObject.d.ts +28 -0
- package/sale-offer/src/models/PaginatedObject.js +42 -0
- package/sale-offer/src/models/PaginatedSaleOffers.d.ts +29 -0
- package/sale-offer/src/models/PaginatedSaleOffers.js +50 -0
- package/sale-offer/src/models/PaginatedSaleOffersAllOf.d.ts +28 -0
- package/sale-offer/src/models/PaginatedSaleOffersAllOf.js +42 -0
- package/sale-offer/src/models/PagingMetadata.d.ts +45 -0
- package/sale-offer/src/models/PagingMetadata.js +47 -0
- package/sale-offer/src/models/ProductImageLink.d.ts +35 -0
- package/sale-offer/src/models/ProductImageLink.js +51 -0
- package/sale-offer/src/models/ProductImageLinkAllOf.d.ts +34 -0
- package/sale-offer/src/models/ProductImageLinkAllOf.js +45 -0
- package/sale-offer/src/models/ProductLink.d.ts +41 -0
- package/sale-offer/src/models/ProductLink.js +51 -0
- package/sale-offer/src/models/ProductLinkAllOf.d.ts +40 -0
- package/sale-offer/src/models/ProductLinkAllOf.js +47 -0
- package/sale-offer/src/models/QuotationDistributionMode.d.ts +22 -0
- package/sale-offer/src/models/QuotationDistributionMode.js +28 -0
- package/sale-offer/src/models/RangeDistributionMode.d.ts +29 -0
- package/sale-offer/src/models/RangeDistributionMode.js +50 -0
- package/sale-offer/src/models/RangeDistributionModeAllOf.d.ts +28 -0
- package/sale-offer/src/models/RangeDistributionModeAllOf.js +42 -0
- package/sale-offer/src/models/RestError.d.ts +81 -0
- package/sale-offer/src/models/RestError.js +93 -0
- package/sale-offer/src/models/SaleOffer.d.ts +125 -0
- package/sale-offer/src/models/SaleOffer.js +80 -0
- package/sale-offer/src/models/SaleOfferCreationImagesParameters.d.ts +39 -0
- package/sale-offer/src/models/SaleOfferCreationImagesParameters.js +46 -0
- package/sale-offer/src/models/SaleOfferCreationParameters.d.ts +72 -0
- package/sale-offer/src/models/SaleOfferCreationParameters.js +59 -0
- package/sale-offer/src/models/SaleOfferJournal.d.ts +27 -0
- package/sale-offer/src/models/SaleOfferJournal.js +42 -0
- package/sale-offer/src/models/SaleOfferNewVersionParameters.d.ts +54 -0
- package/sale-offer/src/models/SaleOfferNewVersionParameters.js +53 -0
- package/sale-offer/src/models/SaleOfferStatisticLink.d.ts +34 -0
- package/sale-offer/src/models/SaleOfferStatisticLink.js +50 -0
- package/sale-offer/src/models/SaleOfferStatisticLinkAllOf.d.ts +33 -0
- package/sale-offer/src/models/SaleOfferStatisticLinkAllOf.js +44 -0
- package/sale-offer/src/models/SaleOfferStatus.d.ts +28 -0
- package/sale-offer/src/models/SaleOfferStatus.js +43 -0
- package/sale-offer/src/models/Stock.d.ts +39 -0
- package/sale-offer/src/models/Stock.js +46 -0
- package/sale-offer/src/models/UnitaryDistributionMode.d.ts +34 -0
- package/sale-offer/src/models/UnitaryDistributionMode.js +49 -0
- package/sale-offer/src/models/UnitaryDistributionModeAllOf.d.ts +33 -0
- package/sale-offer/src/models/UnitaryDistributionModeAllOf.js +43 -0
- package/sale-offer/src/models/index.d.ts +38 -0
- package/sale-offer/src/models/index.js +54 -0
- package/sale-offer/src/runtime.d.ts +149 -0
- package/sale-offer/src/runtime.js +480 -0
- package/sale-offer-log/index.d.ts +1 -0
- package/sale-offer-log/index.js +17 -0
- package/sale-offer-log/src/apis/SearchSaleOfferLogApi.d.ts +44 -0
- package/sale-offer-log/src/apis/SearchSaleOfferLogApi.js +183 -0
- package/sale-offer-log/src/apis/index.d.ts +1 -0
- package/sale-offer-log/src/apis/index.js +17 -0
- package/sale-offer-log/src/index.d.ts +3 -0
- package/sale-offer-log/src/index.js +19 -0
- package/sale-offer-log/src/models/AnySaleOfferLog.d.ts +22 -0
- package/sale-offer-log/src/models/AnySaleOfferLog.js +59 -0
- package/sale-offer-log/src/models/HttpLink.d.ts +27 -0
- package/sale-offer-log/src/models/HttpLink.js +41 -0
- package/sale-offer-log/src/models/Log.d.ts +39 -0
- package/sale-offer-log/src/models/Log.js +45 -0
- package/sale-offer-log/src/models/PaginatedObject.d.ts +28 -0
- package/sale-offer-log/src/models/PaginatedObject.js +42 -0
- package/sale-offer-log/src/models/PaginatedSaleOfferLogs.d.ts +29 -0
- package/sale-offer-log/src/models/PaginatedSaleOfferLogs.js +50 -0
- package/sale-offer-log/src/models/PaginatedSaleOfferLogsAllOf.d.ts +28 -0
- package/sale-offer-log/src/models/PaginatedSaleOfferLogsAllOf.js +42 -0
- package/sale-offer-log/src/models/PagingMetadata.d.ts +45 -0
- package/sale-offer-log/src/models/PagingMetadata.js +47 -0
- package/sale-offer-log/src/models/SaleOfferLink.d.ts +28 -0
- package/sale-offer-log/src/models/SaleOfferLink.js +49 -0
- package/sale-offer-log/src/models/SaleOfferLinkAllOf.d.ts +27 -0
- package/sale-offer-log/src/models/SaleOfferLinkAllOf.js +41 -0
- package/sale-offer-log/src/models/SaleOfferLog.d.ts +35 -0
- package/sale-offer-log/src/models/SaleOfferLog.js +50 -0
- package/sale-offer-log/src/models/SaleOfferLogAllOf.d.ts +34 -0
- package/sale-offer-log/src/models/SaleOfferLogAllOf.js +44 -0
- package/sale-offer-log/src/models/index.d.ts +11 -0
- package/sale-offer-log/src/models/index.js +27 -0
- package/sale-offer-log/src/runtime.d.ts +149 -0
- package/sale-offer-log/src/runtime.js +480 -0
- package/servant/index.d.ts +1 -0
- package/servant/index.js +17 -0
- package/servant/src/apis/ManageServantApi.d.ts +25 -0
- package/servant/src/apis/ManageServantApi.js +126 -0
- package/servant/src/apis/ManageTaskApi.d.ts +28 -0
- package/servant/src/apis/ManageTaskApi.js +139 -0
- package/servant/src/apis/SearchServantApi.d.ts +26 -0
- package/servant/src/apis/SearchServantApi.js +150 -0
- package/servant/src/apis/index.d.ts +3 -0
- package/servant/src/apis/index.js +19 -0
- package/servant/src/index.d.ts +3 -0
- package/servant/src/index.js +19 -0
- package/servant/src/models/RestError.d.ts +81 -0
- package/servant/src/models/RestError.js +93 -0
- package/servant/src/models/Servant.d.ts +52 -0
- package/servant/src/models/Servant.js +51 -0
- package/servant/src/models/Task.d.ts +33 -0
- package/servant/src/models/Task.js +44 -0
- package/servant/src/models/index.d.ts +3 -0
- package/servant/src/models/index.js +19 -0
- package/servant/src/runtime.d.ts +149 -0
- package/servant/src/runtime.js +480 -0
- package/shipment/index.d.ts +1 -0
- package/shipment/index.js +17 -0
- package/shipment/src/apis/ManageOrderCarriageApi.d.ts +32 -0
- package/shipment/src/apis/ManageOrderCarriageApi.js +160 -0
- package/shipment/src/apis/ManageShipmentApi.d.ts +40 -0
- package/shipment/src/apis/ManageShipmentApi.js +228 -0
- package/shipment/src/apis/SearchOrderCarriageApi.d.ts +53 -0
- package/shipment/src/apis/SearchOrderCarriageApi.js +246 -0
- package/shipment/src/apis/index.d.ts +3 -0
- package/shipment/src/apis/index.js +19 -0
- package/shipment/src/index.d.ts +3 -0
- package/shipment/src/index.js +19 -0
- package/shipment/src/models/CancelParcelResponse.d.ts +39 -0
- package/shipment/src/models/CancelParcelResponse.js +46 -0
- package/shipment/src/models/DeliveryStatus.d.ts +33 -0
- package/shipment/src/models/DeliveryStatus.js +44 -0
- package/shipment/src/models/HttpLink.d.ts +27 -0
- package/shipment/src/models/HttpLink.js +41 -0
- package/shipment/src/models/OrderCarriage.d.ts +41 -0
- package/shipment/src/models/OrderCarriage.js +48 -0
- package/shipment/src/models/OrderCarriageShipmentCreationParameters.d.ts +27 -0
- package/shipment/src/models/OrderCarriageShipmentCreationParameters.js +42 -0
- package/shipment/src/models/OrderLink.d.ts +28 -0
- package/shipment/src/models/OrderLink.js +50 -0
- package/shipment/src/models/OrderLinkAllOf.d.ts +27 -0
- package/shipment/src/models/OrderLinkAllOf.js +42 -0
- package/shipment/src/models/PaginatedObject.d.ts +28 -0
- package/shipment/src/models/PaginatedObject.js +42 -0
- package/shipment/src/models/PaginatedOrderCarriages.d.ts +29 -0
- package/shipment/src/models/PaginatedOrderCarriages.js +50 -0
- package/shipment/src/models/PaginatedOrderCarriagesAllOf.d.ts +28 -0
- package/shipment/src/models/PaginatedOrderCarriagesAllOf.js +42 -0
- package/shipment/src/models/PagingMetadata.d.ts +45 -0
- package/shipment/src/models/PagingMetadata.js +47 -0
- package/shipment/src/models/RestError.d.ts +81 -0
- package/shipment/src/models/RestError.js +93 -0
- package/shipment/src/models/Shipment.d.ts +53 -0
- package/shipment/src/models/Shipment.js +52 -0
- package/shipment/src/models/ShipmentCreationParameters.d.ts +51 -0
- package/shipment/src/models/ShipmentCreationParameters.js +50 -0
- package/shipment/src/models/ShipmentError.d.ts +40 -0
- package/shipment/src/models/ShipmentError.js +52 -0
- package/shipment/src/models/ShipmentParcel.d.ts +48 -0
- package/shipment/src/models/ShipmentParcel.js +51 -0
- package/shipment/src/models/ShipmentParcelStatus.d.ts +24 -0
- package/shipment/src/models/ShipmentParcelStatus.js +39 -0
- package/shipment/src/models/SkybillLink.d.ts +28 -0
- package/shipment/src/models/SkybillLink.js +50 -0
- package/shipment/src/models/SkybillLinkAllOf.d.ts +27 -0
- package/shipment/src/models/SkybillLinkAllOf.js +42 -0
- package/shipment/src/models/index.d.ts +19 -0
- package/shipment/src/models/index.js +35 -0
- package/shipment/src/runtime.d.ts +149 -0
- package/shipment/src/runtime.js +480 -0
- package/shopping-cart/index.d.ts +1 -0
- package/shopping-cart/index.js +17 -0
- package/shopping-cart/src/apis/ManageCartApi.d.ts +34 -0
- package/shopping-cart/src/apis/ManageCartApi.js +220 -0
- package/shopping-cart/src/apis/ManageCartSubCartApi.d.ts +48 -0
- package/shopping-cart/src/apis/ManageCartSubCartApi.js +283 -0
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.d.ts +82 -0
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.js +442 -0
- package/shopping-cart/src/apis/index.d.ts +3 -0
- package/shopping-cart/src/apis/index.js +19 -0
- package/shopping-cart/src/index.d.ts +3 -0
- package/shopping-cart/src/index.js +19 -0
- package/shopping-cart/src/models/AnyIdentifiedDistributionMode.d.ts +28 -0
- package/shopping-cart/src/models/AnyIdentifiedDistributionMode.js +69 -0
- package/shopping-cart/src/models/Barcodes.d.ts +45 -0
- package/shopping-cart/src/models/Barcodes.js +48 -0
- package/shopping-cart/src/models/Cart.d.ts +40 -0
- package/shopping-cart/src/models/Cart.js +47 -0
- package/shopping-cart/src/models/CartSubCart.d.ts +66 -0
- package/shopping-cart/src/models/CartSubCart.js +57 -0
- package/shopping-cart/src/models/CartSubCartLine.d.ts +71 -0
- package/shopping-cart/src/models/CartSubCartLine.js +58 -0
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.d.ts +33 -0
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.js +44 -0
- package/shopping-cart/src/models/CartSubCartTransport.d.ts +39 -0
- package/shopping-cart/src/models/CartSubCartTransport.js +46 -0
- package/shopping-cart/src/models/DistributionMode.d.ts +27 -0
- package/shopping-cart/src/models/DistributionMode.js +41 -0
- package/shopping-cart/src/models/DistributionRange.d.ts +39 -0
- package/shopping-cart/src/models/DistributionRange.js +45 -0
- package/shopping-cart/src/models/HttpLink.d.ts +27 -0
- package/shopping-cart/src/models/HttpLink.js +41 -0
- package/shopping-cart/src/models/IdentifiedDistributionRange.d.ts +34 -0
- package/shopping-cart/src/models/IdentifiedDistributionRange.js +49 -0
- package/shopping-cart/src/models/IdentifiedDistributionRangeAllOf.d.ts +33 -0
- package/shopping-cart/src/models/IdentifiedDistributionRangeAllOf.js +43 -0
- package/shopping-cart/src/models/IdentifiedRangeDistributionMode.d.ts +29 -0
- package/shopping-cart/src/models/IdentifiedRangeDistributionMode.js +50 -0
- package/shopping-cart/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +28 -0
- package/shopping-cart/src/models/IdentifiedRangeDistributionModeAllOf.js +42 -0
- package/shopping-cart/src/models/ProductLink.d.ts +47 -0
- package/shopping-cart/src/models/ProductLink.js +51 -0
- package/shopping-cart/src/models/ProductLinkAllOf.d.ts +46 -0
- package/shopping-cart/src/models/ProductLinkAllOf.js +49 -0
- package/shopping-cart/src/models/QuotationDistributionMode.d.ts +22 -0
- package/shopping-cart/src/models/QuotationDistributionMode.js +28 -0
- package/shopping-cart/src/models/RestError.d.ts +81 -0
- package/shopping-cart/src/models/RestError.js +93 -0
- package/shopping-cart/src/models/SaleOfferLink.d.ts +55 -0
- package/shopping-cart/src/models/SaleOfferLink.js +53 -0
- package/shopping-cart/src/models/SaleOfferLinkAllOf.d.ts +54 -0
- package/shopping-cart/src/models/SaleOfferLinkAllOf.js +53 -0
- package/shopping-cart/src/models/SaleOfferStatus.d.ts +28 -0
- package/shopping-cart/src/models/SaleOfferStatus.js +43 -0
- package/shopping-cart/src/models/SellerLink.d.ts +41 -0
- package/shopping-cart/src/models/SellerLink.js +51 -0
- package/shopping-cart/src/models/SellerLinkAllOf.d.ts +40 -0
- package/shopping-cart/src/models/SellerLinkAllOf.js +47 -0
- package/shopping-cart/src/models/ShoppedOffer.d.ts +39 -0
- package/shopping-cart/src/models/ShoppedOffer.js +46 -0
- package/shopping-cart/src/models/Stock.d.ts +39 -0
- package/shopping-cart/src/models/Stock.js +46 -0
- package/shopping-cart/src/models/UnitaryDistributionMode.d.ts +34 -0
- package/shopping-cart/src/models/UnitaryDistributionMode.js +49 -0
- package/shopping-cart/src/models/UnitaryDistributionModeAllOf.d.ts +33 -0
- package/shopping-cart/src/models/UnitaryDistributionModeAllOf.js +43 -0
- package/shopping-cart/src/models/UserRole.d.ts +31 -0
- package/shopping-cart/src/models/UserRole.js +46 -0
- package/shopping-cart/src/models/index.d.ts +28 -0
- package/shopping-cart/src/models/index.js +44 -0
- package/shopping-cart/src/runtime.d.ts +149 -0
- package/shopping-cart/src/runtime.js +480 -0
- package/statistic/index.d.ts +1 -0
- package/statistic/index.js +17 -0
- package/statistic/src/apis/SearchSaleOfferStatisticsApi.d.ts +41 -0
- package/statistic/src/apis/SearchSaleOfferStatisticsApi.js +174 -0
- package/statistic/src/apis/index.d.ts +1 -0
- package/statistic/src/apis/index.js +17 -0
- package/statistic/src/index.d.ts +3 -0
- package/statistic/src/index.js +19 -0
- package/statistic/src/models/HttpLink.d.ts +27 -0
- package/statistic/src/models/HttpLink.js +41 -0
- package/statistic/src/models/PaginatedObject.d.ts +28 -0
- package/statistic/src/models/PaginatedObject.js +42 -0
- package/statistic/src/models/PaginatedSaleOfferStatistics.d.ts +29 -0
- package/statistic/src/models/PaginatedSaleOfferStatistics.js +50 -0
- package/statistic/src/models/PaginatedSaleOfferStatisticsAllOf.d.ts +28 -0
- package/statistic/src/models/PaginatedSaleOfferStatisticsAllOf.js +42 -0
- package/statistic/src/models/PagingMetadata.d.ts +45 -0
- package/statistic/src/models/PagingMetadata.js +47 -0
- package/statistic/src/models/RestError.d.ts +81 -0
- package/statistic/src/models/RestError.js +93 -0
- package/statistic/src/models/SaleOfferStatistic.d.ts +52 -0
- package/statistic/src/models/SaleOfferStatistic.js +51 -0
- package/statistic/src/models/UserLink.d.ts +28 -0
- package/statistic/src/models/UserLink.js +50 -0
- package/statistic/src/models/UserLinkAllOf.d.ts +27 -0
- package/statistic/src/models/UserLinkAllOf.js +42 -0
- package/statistic/src/models/index.d.ts +9 -0
- package/statistic/src/models/index.js +25 -0
- package/statistic/src/runtime.d.ts +149 -0
- package/statistic/src/runtime.js +480 -0
- package/subscription/index.d.ts +1 -0
- package/subscription/index.js +17 -0
- package/subscription/src/apis/ManageSubscriptionApi.d.ts +56 -0
- package/subscription/src/apis/ManageSubscriptionApi.js +297 -0
- package/subscription/src/apis/ManageSubscriptionPlanApi.d.ts +30 -0
- package/subscription/src/apis/ManageSubscriptionPlanApi.js +158 -0
- package/subscription/src/apis/SearchSubscriptionApi.d.ts +52 -0
- package/subscription/src/apis/SearchSubscriptionApi.js +201 -0
- package/subscription/src/apis/SearchSubscriptionPlanApi.d.ts +49 -0
- package/subscription/src/apis/SearchSubscriptionPlanApi.js +238 -0
- package/subscription/src/apis/SearchSubscriptionPlanFeatureApi.d.ts +26 -0
- package/subscription/src/apis/SearchSubscriptionPlanFeatureApi.js +150 -0
- package/subscription/src/apis/index.d.ts +5 -0
- package/subscription/src/apis/index.js +21 -0
- package/subscription/src/index.d.ts +3 -0
- package/subscription/src/index.js +19 -0
- package/subscription/src/models/HttpLink.d.ts +27 -0
- package/subscription/src/models/HttpLink.js +41 -0
- package/subscription/src/models/PaginatedObject.d.ts +28 -0
- package/subscription/src/models/PaginatedObject.js +42 -0
- package/subscription/src/models/PaginatedSubscriptions.d.ts +29 -0
- package/subscription/src/models/PaginatedSubscriptions.js +51 -0
- package/subscription/src/models/PaginatedSubscriptionsAllOf.d.ts +28 -0
- package/subscription/src/models/PaginatedSubscriptionsAllOf.js +43 -0
- package/subscription/src/models/PagingMetadata.d.ts +45 -0
- package/subscription/src/models/PagingMetadata.js +47 -0
- package/subscription/src/models/RestError.d.ts +81 -0
- package/subscription/src/models/RestError.js +93 -0
- package/subscription/src/models/SubscriberLink.d.ts +28 -0
- package/subscription/src/models/SubscriberLink.js +50 -0
- package/subscription/src/models/SubscriberLinkAllOf.d.ts +27 -0
- package/subscription/src/models/SubscriberLinkAllOf.js +42 -0
- package/subscription/src/models/Subscription.d.ts +71 -0
- package/subscription/src/models/Subscription.js +58 -0
- package/subscription/src/models/SubscriptionCreationParameters.d.ts +40 -0
- package/subscription/src/models/SubscriptionCreationParameters.js +46 -0
- package/subscription/src/models/SubscriptionPlan.d.ts +65 -0
- package/subscription/src/models/SubscriptionPlan.js +56 -0
- package/subscription/src/models/SubscriptionPlanFeature.d.ts +40 -0
- package/subscription/src/models/SubscriptionPlanFeature.js +47 -0
- package/subscription/src/models/SubscriptionPlanFeatureId.d.ts +24 -0
- package/subscription/src/models/SubscriptionPlanFeatureId.js +39 -0
- package/subscription/src/models/SubscriptionPlanId.d.ts +24 -0
- package/subscription/src/models/SubscriptionPlanId.js +39 -0
- package/subscription/src/models/SubscriptionPlanLink.d.ts +29 -0
- package/subscription/src/models/SubscriptionPlanLink.js +51 -0
- package/subscription/src/models/SubscriptionPlanLinkAllOf.d.ts +28 -0
- package/subscription/src/models/SubscriptionPlanLinkAllOf.js +43 -0
- package/subscription/src/models/SubscriptionPlanUpdateParameters.d.ts +58 -0
- package/subscription/src/models/SubscriptionPlanUpdateParameters.js +53 -0
- package/subscription/src/models/SubscriptionUpdateParameters.d.ts +58 -0
- package/subscription/src/models/SubscriptionUpdateParameters.js +53 -0
- package/subscription/src/models/index.d.ts +18 -0
- package/subscription/src/models/index.js +34 -0
- package/subscription/src/runtime.d.ts +149 -0
- package/subscription/src/runtime.js +480 -0
- package/thread/index.d.ts +1 -0
- package/thread/index.js +17 -0
- package/thread/src/apis/ManageThreadCommentApi.d.ts +47 -0
- package/thread/src/apis/ManageThreadCommentApi.js +243 -0
- package/thread/src/apis/SearchThreadApi.d.ts +31 -0
- package/thread/src/apis/SearchThreadApi.js +155 -0
- package/thread/src/apis/SearchThreadCommentApi.d.ts +44 -0
- package/thread/src/apis/SearchThreadCommentApi.js +175 -0
- package/thread/src/apis/index.d.ts +3 -0
- package/thread/src/apis/index.js +19 -0
- package/thread/src/index.d.ts +3 -0
- package/thread/src/index.js +19 -0
- package/thread/src/models/AuthorLink.d.ts +40 -0
- package/thread/src/models/AuthorLink.js +49 -0
- package/thread/src/models/AuthorLinkAllOf.d.ts +39 -0
- package/thread/src/models/AuthorLinkAllOf.js +45 -0
- package/thread/src/models/Comment.d.ts +52 -0
- package/thread/src/models/Comment.js +51 -0
- package/thread/src/models/CommentCreationParameters.d.ts +28 -0
- package/thread/src/models/CommentCreationParameters.js +49 -0
- package/thread/src/models/CommentCreationParametersAllOf.d.ts +27 -0
- package/thread/src/models/CommentCreationParametersAllOf.js +41 -0
- package/thread/src/models/CommentUpdateParameters.d.ts +27 -0
- package/thread/src/models/CommentUpdateParameters.js +41 -0
- package/thread/src/models/HttpLink.d.ts +27 -0
- package/thread/src/models/HttpLink.js +41 -0
- package/thread/src/models/PaginatedComments.d.ts +29 -0
- package/thread/src/models/PaginatedComments.js +50 -0
- package/thread/src/models/PaginatedCommentsAllOf.d.ts +28 -0
- package/thread/src/models/PaginatedCommentsAllOf.js +42 -0
- package/thread/src/models/PaginatedObject.d.ts +28 -0
- package/thread/src/models/PaginatedObject.js +42 -0
- package/thread/src/models/PagingMetadata.d.ts +45 -0
- package/thread/src/models/PagingMetadata.js +47 -0
- package/thread/src/models/Thread.d.ts +34 -0
- package/thread/src/models/Thread.js +44 -0
- package/thread/src/models/ThreadLink.d.ts +28 -0
- package/thread/src/models/ThreadLink.js +49 -0
- package/thread/src/models/ThreadLinkAllOf.d.ts +27 -0
- package/thread/src/models/ThreadLinkAllOf.js +41 -0
- package/thread/src/models/index.d.ts +14 -0
- package/thread/src/models/index.js +30 -0
- package/thread/src/runtime.d.ts +149 -0
- package/thread/src/runtime.js +480 -0
- package/ubo/index.d.ts +1 -0
- package/ubo/index.js +17 -0
- package/ubo/src/apis/ManageUboDeclarationApi.d.ts +32 -0
- package/ubo/src/apis/ManageUboDeclarationApi.js +157 -0
- package/ubo/src/apis/SearchUboDeclarationApi.d.ts +31 -0
- package/ubo/src/apis/SearchUboDeclarationApi.js +155 -0
- package/ubo/src/apis/index.d.ts +2 -0
- package/ubo/src/apis/index.js +18 -0
- package/ubo/src/index.d.ts +3 -0
- package/ubo/src/index.js +19 -0
- package/ubo/src/models/Address.d.ts +58 -0
- package/ubo/src/models/Address.js +53 -0
- package/ubo/src/models/Country.d.ts +33 -0
- package/ubo/src/models/Country.js +43 -0
- package/ubo/src/models/RestError.d.ts +81 -0
- package/ubo/src/models/RestError.js +93 -0
- package/ubo/src/models/Ubo.d.ts +65 -0
- package/ubo/src/models/Ubo.js +56 -0
- package/ubo/src/models/UboDeclaration.d.ts +70 -0
- package/ubo/src/models/UboDeclaration.js +66 -0
- package/ubo/src/models/UboDeclarationCreationOrUpdateParameters.d.ts +28 -0
- package/ubo/src/models/UboDeclarationCreationOrUpdateParameters.js +43 -0
- package/ubo/src/models/index.d.ts +6 -0
- package/ubo/src/models/index.js +22 -0
- package/ubo/src/runtime.d.ts +149 -0
- package/ubo/src/runtime.js +480 -0
- package/user/index.d.ts +1 -0
- package/user/index.js +17 -0
- package/user/src/apis/ManagePasswordApi.d.ts +41 -0
- package/user/src/apis/ManagePasswordApi.js +201 -0
- package/user/src/apis/ManageUserApi.d.ts +133 -0
- package/user/src/apis/ManageUserApi.js +718 -0
- package/user/src/apis/ManageUserBankAccountApi.d.ts +45 -0
- package/user/src/apis/ManageUserBankAccountApi.js +237 -0
- package/user/src/apis/ManageUserDocumentApi.d.ts +94 -0
- package/user/src/apis/ManageUserDocumentApi.js +397 -0
- package/user/src/apis/ManageUserFavoriteLaboratoryStoreApi.d.ts +64 -0
- package/user/src/apis/ManageUserFavoriteLaboratoryStoreApi.js +330 -0
- package/user/src/apis/ManageUserRestrictionApi.d.ts +112 -0
- package/user/src/apis/ManageUserRestrictionApi.js +580 -0
- package/user/src/apis/ManageUserRoleApi.d.ts +32 -0
- package/user/src/apis/ManageUserRoleApi.js +160 -0
- package/user/src/apis/ManageUserRuleApi.d.ts +44 -0
- package/user/src/apis/ManageUserRuleApi.js +223 -0
- package/user/src/apis/ManageUserSocialNetworksApi.d.ts +41 -0
- package/user/src/apis/ManageUserSocialNetworksApi.js +233 -0
- package/user/src/apis/ManageUserTransportApi.d.ts +32 -0
- package/user/src/apis/ManageUserTransportApi.js +160 -0
- package/user/src/apis/SearchUserApi.d.ts +124 -0
- package/user/src/apis/SearchUserApi.js +587 -0
- package/user/src/apis/SearchUserDocumentApi.d.ts +131 -0
- package/user/src/apis/SearchUserDocumentApi.js +547 -0
- package/user/src/apis/SearchUserFavoriteLaboratoryStoreApi.d.ts +37 -0
- package/user/src/apis/SearchUserFavoriteLaboratoryStoreApi.js +223 -0
- package/user/src/apis/SearchUserFeatureApi.d.ts +26 -0
- package/user/src/apis/SearchUserFeatureApi.js +150 -0
- package/user/src/apis/SearchUserRestrictionApi.d.ts +59 -0
- package/user/src/apis/SearchUserRestrictionApi.js +369 -0
- package/user/src/apis/SearchUserRuleApi.d.ts +29 -0
- package/user/src/apis/SearchUserRuleApi.js +153 -0
- package/user/src/apis/SearchUserSocialNetworksApi.d.ts +37 -0
- package/user/src/apis/SearchUserSocialNetworksApi.js +223 -0
- package/user/src/apis/SearchUserTransportApi.d.ts +37 -0
- package/user/src/apis/SearchUserTransportApi.js +223 -0
- package/user/src/apis/index.d.ts +18 -0
- package/user/src/apis/index.js +34 -0
- package/user/src/index.d.ts +3 -0
- package/user/src/index.js +19 -0
- package/user/src/models/Address.d.ts +45 -0
- package/user/src/models/Address.js +48 -0
- package/user/src/models/Gender.d.ts +23 -0
- package/user/src/models/Gender.js +38 -0
- package/user/src/models/HttpLink.d.ts +27 -0
- package/user/src/models/HttpLink.js +41 -0
- package/user/src/models/KycLevel.d.ts +23 -0
- package/user/src/models/KycLevel.js +38 -0
- package/user/src/models/MyPasswordUpdateParameters.d.ts +33 -0
- package/user/src/models/MyPasswordUpdateParameters.js +44 -0
- package/user/src/models/NotificationTypeId.d.ts +58 -0
- package/user/src/models/NotificationTypeId.js +73 -0
- package/user/src/models/NotificationTypeLink.d.ts +29 -0
- package/user/src/models/NotificationTypeLink.js +51 -0
- package/user/src/models/NotificationTypeLinkAllOf.d.ts +28 -0
- package/user/src/models/NotificationTypeLinkAllOf.js +43 -0
- package/user/src/models/OffisanteStatus.d.ts +24 -0
- package/user/src/models/OffisanteStatus.js +39 -0
- package/user/src/models/PaginatedObject.d.ts +28 -0
- package/user/src/models/PaginatedObject.js +42 -0
- package/user/src/models/PaginatedUsers.d.ts +29 -0
- package/user/src/models/PaginatedUsers.js +51 -0
- package/user/src/models/PaginatedUsersAllOf.d.ts +28 -0
- package/user/src/models/PaginatedUsersAllOf.js +43 -0
- package/user/src/models/PagingMetadata.d.ts +45 -0
- package/user/src/models/PagingMetadata.js +47 -0
- package/user/src/models/PasswordResetCompletionParameters.d.ts +27 -0
- package/user/src/models/PasswordResetCompletionParameters.js +41 -0
- package/user/src/models/PasswordResetCreationParameters.d.ts +27 -0
- package/user/src/models/PasswordResetCreationParameters.js +41 -0
- package/user/src/models/ProductTypeLink.d.ts +34 -0
- package/user/src/models/ProductTypeLink.js +50 -0
- package/user/src/models/ProductTypeLinkAllOf.d.ts +33 -0
- package/user/src/models/ProductTypeLinkAllOf.js +44 -0
- package/user/src/models/RestError.d.ts +81 -0
- package/user/src/models/RestError.js +93 -0
- package/user/src/models/SomeonePasswordUpdateParameters.d.ts +27 -0
- package/user/src/models/SomeonePasswordUpdateParameters.js +42 -0
- package/user/src/models/ThreadLink.d.ts +28 -0
- package/user/src/models/ThreadLink.js +49 -0
- package/user/src/models/ThreadLinkAllOf.d.ts +27 -0
- package/user/src/models/ThreadLinkAllOf.js +41 -0
- package/user/src/models/Transport.d.ts +57 -0
- package/user/src/models/Transport.js +51 -0
- package/user/src/models/User.d.ts +297 -0
- package/user/src/models/User.js +140 -0
- package/user/src/models/UserBankAccountCreationParameters.d.ts +33 -0
- package/user/src/models/UserBankAccountCreationParameters.js +44 -0
- package/user/src/models/UserBankAccountLink.d.ts +28 -0
- package/user/src/models/UserBankAccountLink.js +50 -0
- package/user/src/models/UserBankAccountLinkAllOf.d.ts +27 -0
- package/user/src/models/UserBankAccountLinkAllOf.js +42 -0
- package/user/src/models/UserCompany.d.ts +113 -0
- package/user/src/models/UserCompany.js +72 -0
- package/user/src/models/UserCreationParameters.d.ts +58 -0
- package/user/src/models/UserCreationParameters.js +53 -0
- package/user/src/models/UserCustomCommissions.d.ts +33 -0
- package/user/src/models/UserCustomCommissions.js +44 -0
- package/user/src/models/UserCustomCommissionsUpdateParameters.d.ts +33 -0
- package/user/src/models/UserCustomCommissionsUpdateParameters.js +44 -0
- package/user/src/models/UserDelegatedServices.d.ts +39 -0
- package/user/src/models/UserDelegatedServices.js +46 -0
- package/user/src/models/UserDocument.d.ts +62 -0
- package/user/src/models/UserDocument.js +66 -0
- package/user/src/models/UserDocumentCreationParameters.d.ts +28 -0
- package/user/src/models/UserDocumentCreationParameters.js +42 -0
- package/user/src/models/UserDocumentStatus.d.ts +26 -0
- package/user/src/models/UserDocumentStatus.js +41 -0
- package/user/src/models/UserFavoriteLaboratoryStoreCreationParameter.d.ts +27 -0
- package/user/src/models/UserFavoriteLaboratoryStoreCreationParameter.js +41 -0
- package/user/src/models/UserFavoriteLaboratoryStoreLink.d.ts +28 -0
- package/user/src/models/UserFavoriteLaboratoryStoreLink.js +50 -0
- package/user/src/models/UserFavoriteLaboratoryStoreLinkAllOf.d.ts +27 -0
- package/user/src/models/UserFavoriteLaboratoryStoreLinkAllOf.js +42 -0
- package/user/src/models/UserFeature.d.ts +33 -0
- package/user/src/models/UserFeature.js +44 -0
- package/user/src/models/UserForbiddenSellerLink.d.ts +28 -0
- package/user/src/models/UserForbiddenSellerLink.js +50 -0
- package/user/src/models/UserForbiddenSellerLinkAllOf.d.ts +27 -0
- package/user/src/models/UserForbiddenSellerLinkAllOf.js +42 -0
- package/user/src/models/UserJournal.d.ts +27 -0
- package/user/src/models/UserJournal.js +42 -0
- package/user/src/models/UserMangopayTarget.d.ts +28 -0
- package/user/src/models/UserMangopayTarget.js +50 -0
- package/user/src/models/UserMangopayTargetAllOf.d.ts +27 -0
- package/user/src/models/UserMangopayTargetAllOf.js +42 -0
- package/user/src/models/UserRestrictedFeatureCreationParameter.d.ts +27 -0
- package/user/src/models/UserRestrictedFeatureCreationParameter.js +41 -0
- package/user/src/models/UserRestrictedNotificationTypeCreationParameter.d.ts +28 -0
- package/user/src/models/UserRestrictedNotificationTypeCreationParameter.js +42 -0
- package/user/src/models/UserRestrictedProductTypeCreationParameter.d.ts +27 -0
- package/user/src/models/UserRestrictedProductTypeCreationParameter.js +41 -0
- package/user/src/models/UserRole.d.ts +31 -0
- package/user/src/models/UserRole.js +46 -0
- package/user/src/models/UserRule.d.ts +54 -0
- package/user/src/models/UserRule.js +53 -0
- package/user/src/models/UserRuleActionEnum.d.ts +22 -0
- package/user/src/models/UserRuleActionEnum.js +37 -0
- package/user/src/models/UserRuleAttributeEnum.d.ts +23 -0
- package/user/src/models/UserRuleAttributeEnum.js +38 -0
- package/user/src/models/UserRuleComparatorEnum.d.ts +23 -0
- package/user/src/models/UserRuleComparatorEnum.js +38 -0
- package/user/src/models/UserRuleCreationParameters.d.ts +48 -0
- package/user/src/models/UserRuleCreationParameters.js +50 -0
- package/user/src/models/UserSocialNetwork.d.ts +63 -0
- package/user/src/models/UserSocialNetwork.js +54 -0
- package/user/src/models/UserThreads.d.ts +28 -0
- package/user/src/models/UserThreads.js +43 -0
- package/user/src/models/UserUpdateParameters.d.ts +152 -0
- package/user/src/models/UserUpdateParameters.js +87 -0
- package/user/src/models/UserWalletLink.d.ts +28 -0
- package/user/src/models/UserWalletLink.js +50 -0
- package/user/src/models/UserWalletLinkAllOf.d.ts +27 -0
- package/user/src/models/UserWalletLinkAllOf.js +42 -0
- package/user/src/models/UserWallets.d.ts +46 -0
- package/user/src/models/UserWallets.js +49 -0
- package/user/src/models/index.d.ts +58 -0
- package/user/src/models/index.js +74 -0
- package/user/src/runtime.d.ts +149 -0
- package/user/src/runtime.js +480 -0
- package/wish/index.d.ts +1 -0
- package/wish/index.js +17 -0
- package/wish/src/apis/ManageWishApi.d.ts +52 -0
- package/wish/src/apis/ManageWishApi.js +267 -0
- package/wish/src/apis/SearchProductEnthusiasmApi.d.ts +49 -0
- package/wish/src/apis/SearchProductEnthusiasmApi.js +182 -0
- package/wish/src/apis/SearchWishApi.d.ts +64 -0
- package/wish/src/apis/SearchWishApi.js +267 -0
- package/wish/src/apis/index.d.ts +3 -0
- package/wish/src/apis/index.js +19 -0
- package/wish/src/index.d.ts +3 -0
- package/wish/src/index.js +19 -0
- package/wish/src/models/Barcodes.d.ts +45 -0
- package/wish/src/models/Barcodes.js +48 -0
- package/wish/src/models/DesiredSellerLink.d.ts +41 -0
- package/wish/src/models/DesiredSellerLink.js +51 -0
- package/wish/src/models/DesiredSellerLinkAllOf.d.ts +40 -0
- package/wish/src/models/DesiredSellerLinkAllOf.js +47 -0
- package/wish/src/models/HttpLink.d.ts +27 -0
- package/wish/src/models/HttpLink.js +41 -0
- package/wish/src/models/OwnerLink.d.ts +41 -0
- package/wish/src/models/OwnerLink.js +51 -0
- package/wish/src/models/OwnerLinkAllOf.d.ts +40 -0
- package/wish/src/models/OwnerLinkAllOf.js +47 -0
- package/wish/src/models/OwnerLinkAllOfCompany.d.ts +27 -0
- package/wish/src/models/OwnerLinkAllOfCompany.js +42 -0
- package/wish/src/models/PaginatedObject.d.ts +28 -0
- package/wish/src/models/PaginatedObject.js +42 -0
- package/wish/src/models/PaginatedProductEnthusiasms.d.ts +29 -0
- package/wish/src/models/PaginatedProductEnthusiasms.js +50 -0
- package/wish/src/models/PaginatedProductEnthusiasmsAllOf.d.ts +28 -0
- package/wish/src/models/PaginatedProductEnthusiasmsAllOf.js +42 -0
- package/wish/src/models/PaginatedWishes.d.ts +29 -0
- package/wish/src/models/PaginatedWishes.js +50 -0
- package/wish/src/models/PaginatedWishesAllOf.d.ts +28 -0
- package/wish/src/models/PaginatedWishesAllOf.js +42 -0
- package/wish/src/models/PagingMetadata.d.ts +45 -0
- package/wish/src/models/PagingMetadata.js +47 -0
- package/wish/src/models/ProductEnthusiasm.d.ts +52 -0
- package/wish/src/models/ProductEnthusiasm.js +51 -0
- package/wish/src/models/ProductLink.d.ts +41 -0
- package/wish/src/models/ProductLink.js +51 -0
- package/wish/src/models/ProductLinkAllOf.d.ts +40 -0
- package/wish/src/models/ProductLinkAllOf.js +47 -0
- package/wish/src/models/RestError.d.ts +81 -0
- package/wish/src/models/RestError.js +93 -0
- package/wish/src/models/Wish.d.ts +78 -0
- package/wish/src/models/Wish.js +61 -0
- package/wish/src/models/WishCreationParameters.d.ts +51 -0
- package/wish/src/models/WishCreationParameters.js +50 -0
- package/wish/src/models/WishStatus.d.ts +24 -0
- package/wish/src/models/WishStatus.js +39 -0
- package/wish/src/models/WishUpdateParameters.d.ts +46 -0
- package/wish/src/models/WishUpdateParameters.js +49 -0
- package/wish/src/models/index.d.ts +21 -0
- package/wish/src/models/index.js +37 -0
- package/wish/src/runtime.d.ts +149 -0
- package/wish/src/runtime.js +480 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.HttpLinkToJSON = exports.HttpLinkFromJSONTyped = exports.HttpLinkFromJSON = void 0;
|
|
17
|
+
function HttpLinkFromJSON(json) {
|
|
18
|
+
return HttpLinkFromJSONTyped(json, false);
|
|
19
|
+
}
|
|
20
|
+
exports.HttpLinkFromJSON = HttpLinkFromJSON;
|
|
21
|
+
function HttpLinkFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
return {
|
|
26
|
+
'href': json['href'],
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
exports.HttpLinkFromJSONTyped = HttpLinkFromJSONTyped;
|
|
30
|
+
function HttpLinkToJSON(value) {
|
|
31
|
+
if (value === undefined) {
|
|
32
|
+
return undefined;
|
|
33
|
+
}
|
|
34
|
+
if (value === null) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'href': value.href,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.HttpLinkToJSON = HttpLinkToJSON;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { HttpLink } from './HttpLink';
|
|
13
|
+
import { NotificationType } from './NotificationType';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface Notification
|
|
18
|
+
*/
|
|
19
|
+
export interface Notification {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof Notification
|
|
24
|
+
*/
|
|
25
|
+
id?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {NotificationType}
|
|
29
|
+
* @memberof Notification
|
|
30
|
+
*/
|
|
31
|
+
type?: NotificationType;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<HttpLink>}
|
|
35
|
+
* @memberof Notification
|
|
36
|
+
*/
|
|
37
|
+
recipients?: Array<HttpLink>;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof Notification
|
|
42
|
+
*/
|
|
43
|
+
duration?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof Notification
|
|
48
|
+
*/
|
|
49
|
+
viewed?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof Notification
|
|
54
|
+
*/
|
|
55
|
+
isRead?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {HttpLink}
|
|
59
|
+
* @memberof Notification
|
|
60
|
+
*/
|
|
61
|
+
target?: HttpLink;
|
|
62
|
+
/**
|
|
63
|
+
* Creation date of this notification
|
|
64
|
+
* @type {Date}
|
|
65
|
+
* @memberof Notification
|
|
66
|
+
*/
|
|
67
|
+
createdAt?: Date;
|
|
68
|
+
}
|
|
69
|
+
export declare function NotificationFromJSON(json: any): Notification;
|
|
70
|
+
export declare function NotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Notification;
|
|
71
|
+
export declare function NotificationToJSON(value?: Notification | null): any;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.NotificationToJSON = exports.NotificationFromJSONTyped = exports.NotificationFromJSON = void 0;
|
|
17
|
+
var runtime_1 = require("../runtime");
|
|
18
|
+
var HttpLink_1 = require("./HttpLink");
|
|
19
|
+
var NotificationType_1 = require("./NotificationType");
|
|
20
|
+
function NotificationFromJSON(json) {
|
|
21
|
+
return NotificationFromJSONTyped(json, false);
|
|
22
|
+
}
|
|
23
|
+
exports.NotificationFromJSON = NotificationFromJSON;
|
|
24
|
+
function NotificationFromJSONTyped(json, ignoreDiscriminator) {
|
|
25
|
+
if ((json === undefined) || (json === null)) {
|
|
26
|
+
return json;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
|
|
30
|
+
'type': !(0, runtime_1.exists)(json, 'type') ? undefined : (0, NotificationType_1.NotificationTypeFromJSON)(json['type']),
|
|
31
|
+
'recipients': !(0, runtime_1.exists)(json, 'recipients') ? undefined : (json['recipients'].map(HttpLink_1.HttpLinkFromJSON)),
|
|
32
|
+
'duration': !(0, runtime_1.exists)(json, 'duration') ? undefined : json['duration'],
|
|
33
|
+
'viewed': !(0, runtime_1.exists)(json, 'viewed') ? undefined : json['viewed'],
|
|
34
|
+
'isRead': !(0, runtime_1.exists)(json, 'isRead') ? undefined : json['isRead'],
|
|
35
|
+
'target': !(0, runtime_1.exists)(json, 'target') ? undefined : (0, HttpLink_1.HttpLinkFromJSON)(json['target']),
|
|
36
|
+
'createdAt': !(0, runtime_1.exists)(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.NotificationFromJSONTyped = NotificationFromJSONTyped;
|
|
40
|
+
function NotificationToJSON(value) {
|
|
41
|
+
if (value === undefined) {
|
|
42
|
+
return undefined;
|
|
43
|
+
}
|
|
44
|
+
if (value === null) {
|
|
45
|
+
return null;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'id': value.id,
|
|
49
|
+
'type': (0, NotificationType_1.NotificationTypeToJSON)(value.type),
|
|
50
|
+
'recipients': value.recipients === undefined ? undefined : (value.recipients.map(HttpLink_1.HttpLinkToJSON)),
|
|
51
|
+
'duration': value.duration,
|
|
52
|
+
'viewed': value.viewed,
|
|
53
|
+
'isRead': value.isRead,
|
|
54
|
+
'target': (0, HttpLink_1.HttpLinkToJSON)(value.target),
|
|
55
|
+
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
exports.NotificationToJSON = NotificationToJSON;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { NotificationTypeAttachment } from './NotificationTypeAttachment';
|
|
13
|
+
import { NotificationTypeId } from './NotificationTypeId';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface NotificationType
|
|
18
|
+
*/
|
|
19
|
+
export interface NotificationType {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {NotificationTypeId}
|
|
23
|
+
* @memberof NotificationType
|
|
24
|
+
*/
|
|
25
|
+
id?: NotificationTypeId;
|
|
26
|
+
/**
|
|
27
|
+
* Readable name
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof NotificationType
|
|
30
|
+
*/
|
|
31
|
+
name?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Alert email subject
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof NotificationType
|
|
36
|
+
*/
|
|
37
|
+
subject?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Alert email content template
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof NotificationType
|
|
42
|
+
*/
|
|
43
|
+
contentTemplate?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Alert is enabled
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof NotificationType
|
|
48
|
+
*/
|
|
49
|
+
enabled?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Days before revival
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof NotificationType
|
|
54
|
+
*/
|
|
55
|
+
daysBeforeRevival?: number;
|
|
56
|
+
/**
|
|
57
|
+
* Weight of the alert
|
|
58
|
+
* @type {number}
|
|
59
|
+
* @memberof NotificationType
|
|
60
|
+
*/
|
|
61
|
+
weight?: number;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {Array<NotificationTypeAttachment>}
|
|
65
|
+
* @memberof NotificationType
|
|
66
|
+
*/
|
|
67
|
+
attachments?: Array<NotificationTypeAttachment>;
|
|
68
|
+
/**
|
|
69
|
+
* Templates placeholders
|
|
70
|
+
* @type {Array<string>}
|
|
71
|
+
* @memberof NotificationType
|
|
72
|
+
*/
|
|
73
|
+
templatePlaceholders?: Array<string>;
|
|
74
|
+
}
|
|
75
|
+
export declare function NotificationTypeFromJSON(json: any): NotificationType;
|
|
76
|
+
export declare function NotificationTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationType;
|
|
77
|
+
export declare function NotificationTypeToJSON(value?: NotificationType | null): any;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.NotificationTypeToJSON = exports.NotificationTypeFromJSONTyped = exports.NotificationTypeFromJSON = void 0;
|
|
17
|
+
var runtime_1 = require("../runtime");
|
|
18
|
+
var NotificationTypeAttachment_1 = require("./NotificationTypeAttachment");
|
|
19
|
+
var NotificationTypeId_1 = require("./NotificationTypeId");
|
|
20
|
+
function NotificationTypeFromJSON(json) {
|
|
21
|
+
return NotificationTypeFromJSONTyped(json, false);
|
|
22
|
+
}
|
|
23
|
+
exports.NotificationTypeFromJSON = NotificationTypeFromJSON;
|
|
24
|
+
function NotificationTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
25
|
+
if ((json === undefined) || (json === null)) {
|
|
26
|
+
return json;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : (0, NotificationTypeId_1.NotificationTypeIdFromJSON)(json['id']),
|
|
30
|
+
'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
|
|
31
|
+
'subject': !(0, runtime_1.exists)(json, 'subject') ? undefined : json['subject'],
|
|
32
|
+
'contentTemplate': !(0, runtime_1.exists)(json, 'contentTemplate') ? undefined : json['contentTemplate'],
|
|
33
|
+
'enabled': !(0, runtime_1.exists)(json, 'enabled') ? undefined : json['enabled'],
|
|
34
|
+
'daysBeforeRevival': !(0, runtime_1.exists)(json, 'daysBeforeRevival') ? undefined : json['daysBeforeRevival'],
|
|
35
|
+
'weight': !(0, runtime_1.exists)(json, 'weight') ? undefined : json['weight'],
|
|
36
|
+
'attachments': !(0, runtime_1.exists)(json, 'attachments') ? undefined : (json['attachments'].map(NotificationTypeAttachment_1.NotificationTypeAttachmentFromJSON)),
|
|
37
|
+
'templatePlaceholders': !(0, runtime_1.exists)(json, 'templatePlaceholders') ? undefined : json['templatePlaceholders'],
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
exports.NotificationTypeFromJSONTyped = NotificationTypeFromJSONTyped;
|
|
41
|
+
function NotificationTypeToJSON(value) {
|
|
42
|
+
if (value === undefined) {
|
|
43
|
+
return undefined;
|
|
44
|
+
}
|
|
45
|
+
if (value === null) {
|
|
46
|
+
return null;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'id': (0, NotificationTypeId_1.NotificationTypeIdToJSON)(value.id),
|
|
50
|
+
'name': value.name,
|
|
51
|
+
'subject': value.subject,
|
|
52
|
+
'contentTemplate': value.contentTemplate,
|
|
53
|
+
'enabled': value.enabled,
|
|
54
|
+
'daysBeforeRevival': value.daysBeforeRevival,
|
|
55
|
+
'weight': value.weight,
|
|
56
|
+
'attachments': value.attachments === undefined ? undefined : (value.attachments.map(NotificationTypeAttachment_1.NotificationTypeAttachmentToJSON)),
|
|
57
|
+
'templatePlaceholders': value.templatePlaceholders,
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
exports.NotificationTypeToJSON = NotificationTypeToJSON;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface NotificationTypeAttachment
|
|
16
|
+
*/
|
|
17
|
+
export interface NotificationTypeAttachment {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof NotificationTypeAttachment
|
|
22
|
+
*/
|
|
23
|
+
id?: number;
|
|
24
|
+
/**
|
|
25
|
+
* document name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof NotificationTypeAttachment
|
|
28
|
+
*/
|
|
29
|
+
name?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Mime-type of the attachment
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof NotificationTypeAttachment
|
|
34
|
+
*/
|
|
35
|
+
mimeType?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Date}
|
|
39
|
+
* @memberof NotificationTypeAttachment
|
|
40
|
+
*/
|
|
41
|
+
creationDate?: Date;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Date}
|
|
45
|
+
* @memberof NotificationTypeAttachment
|
|
46
|
+
*/
|
|
47
|
+
updateDate?: Date;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof NotificationTypeAttachment
|
|
52
|
+
*/
|
|
53
|
+
version?: number;
|
|
54
|
+
}
|
|
55
|
+
export declare function NotificationTypeAttachmentFromJSON(json: any): NotificationTypeAttachment;
|
|
56
|
+
export declare function NotificationTypeAttachmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationTypeAttachment;
|
|
57
|
+
export declare function NotificationTypeAttachmentToJSON(value?: NotificationTypeAttachment | null): any;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.NotificationTypeAttachmentToJSON = exports.NotificationTypeAttachmentFromJSONTyped = exports.NotificationTypeAttachmentFromJSON = void 0;
|
|
17
|
+
var runtime_1 = require("../runtime");
|
|
18
|
+
function NotificationTypeAttachmentFromJSON(json) {
|
|
19
|
+
return NotificationTypeAttachmentFromJSONTyped(json, false);
|
|
20
|
+
}
|
|
21
|
+
exports.NotificationTypeAttachmentFromJSON = NotificationTypeAttachmentFromJSON;
|
|
22
|
+
function NotificationTypeAttachmentFromJSONTyped(json, ignoreDiscriminator) {
|
|
23
|
+
if ((json === undefined) || (json === null)) {
|
|
24
|
+
return json;
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
|
|
28
|
+
'name': !(0, runtime_1.exists)(json, 'name') ? undefined : json['name'],
|
|
29
|
+
'mimeType': !(0, runtime_1.exists)(json, 'mimeType') ? undefined : json['mimeType'],
|
|
30
|
+
'creationDate': !(0, runtime_1.exists)(json, 'creationDate') ? undefined : (new Date(json['creationDate'])),
|
|
31
|
+
'updateDate': !(0, runtime_1.exists)(json, 'updateDate') ? undefined : (new Date(json['updateDate'])),
|
|
32
|
+
'version': !(0, runtime_1.exists)(json, 'version') ? undefined : json['version'],
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
exports.NotificationTypeAttachmentFromJSONTyped = NotificationTypeAttachmentFromJSONTyped;
|
|
36
|
+
function NotificationTypeAttachmentToJSON(value) {
|
|
37
|
+
if (value === undefined) {
|
|
38
|
+
return undefined;
|
|
39
|
+
}
|
|
40
|
+
if (value === null) {
|
|
41
|
+
return null;
|
|
42
|
+
}
|
|
43
|
+
return {
|
|
44
|
+
'id': value.id,
|
|
45
|
+
'name': value.name,
|
|
46
|
+
'mimeType': value.mimeType,
|
|
47
|
+
'creationDate': value.creationDate === undefined ? undefined : (value.creationDate.toISOString()),
|
|
48
|
+
'updateDate': value.updateDate === undefined ? undefined : (value.updateDate.toISOString()),
|
|
49
|
+
'version': value.version,
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
exports.NotificationTypeAttachmentToJSON = NotificationTypeAttachmentToJSON;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { BlobWithMeta } from '../runtime';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface NotificationTypeAttachmentCreationParameters
|
|
17
|
+
*/
|
|
18
|
+
export interface NotificationTypeAttachmentCreationParameters {
|
|
19
|
+
/**
|
|
20
|
+
* File to upload related to notification type
|
|
21
|
+
* @type {BlobWithMeta}
|
|
22
|
+
* @memberof NotificationTypeAttachmentCreationParameters
|
|
23
|
+
*/
|
|
24
|
+
upload?: BlobWithMeta;
|
|
25
|
+
}
|
|
26
|
+
export declare function NotificationTypeAttachmentCreationParametersFromJSON(json: any): NotificationTypeAttachmentCreationParameters;
|
|
27
|
+
export declare function NotificationTypeAttachmentCreationParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationTypeAttachmentCreationParameters;
|
|
28
|
+
export declare function NotificationTypeAttachmentCreationParametersToJSON(value?: NotificationTypeAttachmentCreationParameters | null): any;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.NotificationTypeAttachmentCreationParametersToJSON = exports.NotificationTypeAttachmentCreationParametersFromJSONTyped = exports.NotificationTypeAttachmentCreationParametersFromJSON = void 0;
|
|
17
|
+
var runtime_1 = require("../runtime");
|
|
18
|
+
function NotificationTypeAttachmentCreationParametersFromJSON(json) {
|
|
19
|
+
return NotificationTypeAttachmentCreationParametersFromJSONTyped(json, false);
|
|
20
|
+
}
|
|
21
|
+
exports.NotificationTypeAttachmentCreationParametersFromJSON = NotificationTypeAttachmentCreationParametersFromJSON;
|
|
22
|
+
function NotificationTypeAttachmentCreationParametersFromJSONTyped(json, ignoreDiscriminator) {
|
|
23
|
+
if ((json === undefined) || (json === null)) {
|
|
24
|
+
return json;
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
'upload': !(0, runtime_1.exists)(json, 'upload') ? undefined : json['upload'],
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
exports.NotificationTypeAttachmentCreationParametersFromJSONTyped = NotificationTypeAttachmentCreationParametersFromJSONTyped;
|
|
31
|
+
function NotificationTypeAttachmentCreationParametersToJSON(value) {
|
|
32
|
+
if (value === undefined) {
|
|
33
|
+
return undefined;
|
|
34
|
+
}
|
|
35
|
+
if (value === null) {
|
|
36
|
+
return null;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'upload': value.upload,
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
exports.NotificationTypeAttachmentCreationParametersToJSON = NotificationTypeAttachmentCreationParametersToJSON;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Notification type name
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare enum NotificationTypeId {
|
|
18
|
+
ADARCHIVED = "AD_ARCHIVED",
|
|
19
|
+
ADARCHIVEDBYADMIN = "AD_ARCHIVED_BY_ADMIN",
|
|
20
|
+
ADDAILYMAIL = "AD_DAILY_MAIL",
|
|
21
|
+
ADEXPIRED = "AD_EXPIRED",
|
|
22
|
+
ADPRICEUPDATEACCEPTED = "AD_PRICE_UPDATE_ACCEPTED",
|
|
23
|
+
ADPRICEUPDATEREFUSED = "AD_PRICE_UPDATE_REFUSED",
|
|
24
|
+
ADSOLDOUT = "AD_SOLD_OUT",
|
|
25
|
+
ADVALIDATED = "AD_VALIDATED",
|
|
26
|
+
ADWISHLISTLINE = "AD_WISHLIST_LINE",
|
|
27
|
+
CLIENTCREDITCARDEXPIRATION = "CLIENT_CREDIT_CARD_EXPIRATION",
|
|
28
|
+
CLIENTFIRSTAD = "CLIENT_FIRST_AD",
|
|
29
|
+
CLIENTFIRSTBUY = "CLIENT_FIRST_BUY",
|
|
30
|
+
CLIENTFIRSTSALE = "CLIENT_FIRST_SALE",
|
|
31
|
+
CLIENTHASAREQUEST = "CLIENT_HAS_A_REQUEST",
|
|
32
|
+
CLIENTSUBSCRIPTIONVALIDATED = "CLIENT_SUBSCRIPTION_VALIDATED",
|
|
33
|
+
CLIENTTESTACCOUNTEXPIRED = "CLIENT_TEST_ACCOUNT_EXPIRED",
|
|
34
|
+
CLIENTWAITINGFORVALIDATION = "CLIENT_WAITING_FOR_VALIDATION",
|
|
35
|
+
DAILYMAIL = "DAILY_MAIL",
|
|
36
|
+
DOCUMENTEXPIRE = "DOCUMENT_EXPIRE",
|
|
37
|
+
GLOBALCOMMISSIONINVOICE = "GLOBAL_COMMISSION_INVOICE",
|
|
38
|
+
MONTHLYEMAILFORACCOUNTANT = "MONTHLY_EMAIL_FOR_ACCOUNTANT",
|
|
39
|
+
ORDERACCEPTATIONDELAY = "ORDER_ACCEPTATION_DELAY",
|
|
40
|
+
ORDERACCEPTED = "ORDER_ACCEPTED",
|
|
41
|
+
ORDERARCHIVEDBUYER = "ORDER_ARCHIVED_BUYER",
|
|
42
|
+
ORDERCANCELEDBUYER = "ORDER_CANCELED_BUYER",
|
|
43
|
+
ORDERCREATEDBUYER = "ORDER_CREATED_BUYER",
|
|
44
|
+
ORDERCREATEDSELLER = "ORDER_CREATED_SELLER",
|
|
45
|
+
ORDERDAILYMAIL = "ORDER_DAILY_MAIL",
|
|
46
|
+
ORDERRECEIVED = "ORDER_RECEIVED",
|
|
47
|
+
ORDERSENDINGDELAY = "ORDER_SENDING_DELAY",
|
|
48
|
+
ORDERSENTBUYER = "ORDER_SENT_BUYER",
|
|
49
|
+
ORDERLABORATORYDAILYMAIL = "ORDER_LABORATORY_DAILY_MAIL",
|
|
50
|
+
ORDERVALIDATEDBUYER = "ORDER_VALIDATED_BUYER",
|
|
51
|
+
ORDERVALIDATEDSELLER = "ORDER_VALIDATED_SELLER",
|
|
52
|
+
PHARMAIDEFIRSTSUBSCRIPTION = "PHARMAIDE_FIRST_SUBSCRIPTION",
|
|
53
|
+
PHARMAIDESBTESTEXPIRATION = "PHARMAIDE_SB_TEST_EXPIRATION",
|
|
54
|
+
PHARMAIDETESTTESTEXPIRATION = "PHARMAIDE_TEST_TEST_EXPIRATION"
|
|
55
|
+
}
|
|
56
|
+
export declare function NotificationTypeIdFromJSON(json: any): NotificationTypeId;
|
|
57
|
+
export declare function NotificationTypeIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationTypeId;
|
|
58
|
+
export declare function NotificationTypeIdToJSON(value?: NotificationTypeId | null): any;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP products
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.NotificationTypeIdToJSON = exports.NotificationTypeIdFromJSONTyped = exports.NotificationTypeIdFromJSON = exports.NotificationTypeId = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Notification type name
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
var NotificationTypeId;
|
|
23
|
+
(function (NotificationTypeId) {
|
|
24
|
+
NotificationTypeId["ADARCHIVED"] = "AD_ARCHIVED";
|
|
25
|
+
NotificationTypeId["ADARCHIVEDBYADMIN"] = "AD_ARCHIVED_BY_ADMIN";
|
|
26
|
+
NotificationTypeId["ADDAILYMAIL"] = "AD_DAILY_MAIL";
|
|
27
|
+
NotificationTypeId["ADEXPIRED"] = "AD_EXPIRED";
|
|
28
|
+
NotificationTypeId["ADPRICEUPDATEACCEPTED"] = "AD_PRICE_UPDATE_ACCEPTED";
|
|
29
|
+
NotificationTypeId["ADPRICEUPDATEREFUSED"] = "AD_PRICE_UPDATE_REFUSED";
|
|
30
|
+
NotificationTypeId["ADSOLDOUT"] = "AD_SOLD_OUT";
|
|
31
|
+
NotificationTypeId["ADVALIDATED"] = "AD_VALIDATED";
|
|
32
|
+
NotificationTypeId["ADWISHLISTLINE"] = "AD_WISHLIST_LINE";
|
|
33
|
+
NotificationTypeId["CLIENTCREDITCARDEXPIRATION"] = "CLIENT_CREDIT_CARD_EXPIRATION";
|
|
34
|
+
NotificationTypeId["CLIENTFIRSTAD"] = "CLIENT_FIRST_AD";
|
|
35
|
+
NotificationTypeId["CLIENTFIRSTBUY"] = "CLIENT_FIRST_BUY";
|
|
36
|
+
NotificationTypeId["CLIENTFIRSTSALE"] = "CLIENT_FIRST_SALE";
|
|
37
|
+
NotificationTypeId["CLIENTHASAREQUEST"] = "CLIENT_HAS_A_REQUEST";
|
|
38
|
+
NotificationTypeId["CLIENTSUBSCRIPTIONVALIDATED"] = "CLIENT_SUBSCRIPTION_VALIDATED";
|
|
39
|
+
NotificationTypeId["CLIENTTESTACCOUNTEXPIRED"] = "CLIENT_TEST_ACCOUNT_EXPIRED";
|
|
40
|
+
NotificationTypeId["CLIENTWAITINGFORVALIDATION"] = "CLIENT_WAITING_FOR_VALIDATION";
|
|
41
|
+
NotificationTypeId["DAILYMAIL"] = "DAILY_MAIL";
|
|
42
|
+
NotificationTypeId["DOCUMENTEXPIRE"] = "DOCUMENT_EXPIRE";
|
|
43
|
+
NotificationTypeId["GLOBALCOMMISSIONINVOICE"] = "GLOBAL_COMMISSION_INVOICE";
|
|
44
|
+
NotificationTypeId["MONTHLYEMAILFORACCOUNTANT"] = "MONTHLY_EMAIL_FOR_ACCOUNTANT";
|
|
45
|
+
NotificationTypeId["ORDERACCEPTATIONDELAY"] = "ORDER_ACCEPTATION_DELAY";
|
|
46
|
+
NotificationTypeId["ORDERACCEPTED"] = "ORDER_ACCEPTED";
|
|
47
|
+
NotificationTypeId["ORDERARCHIVEDBUYER"] = "ORDER_ARCHIVED_BUYER";
|
|
48
|
+
NotificationTypeId["ORDERCANCELEDBUYER"] = "ORDER_CANCELED_BUYER";
|
|
49
|
+
NotificationTypeId["ORDERCREATEDBUYER"] = "ORDER_CREATED_BUYER";
|
|
50
|
+
NotificationTypeId["ORDERCREATEDSELLER"] = "ORDER_CREATED_SELLER";
|
|
51
|
+
NotificationTypeId["ORDERDAILYMAIL"] = "ORDER_DAILY_MAIL";
|
|
52
|
+
NotificationTypeId["ORDERRECEIVED"] = "ORDER_RECEIVED";
|
|
53
|
+
NotificationTypeId["ORDERSENDINGDELAY"] = "ORDER_SENDING_DELAY";
|
|
54
|
+
NotificationTypeId["ORDERSENTBUYER"] = "ORDER_SENT_BUYER";
|
|
55
|
+
NotificationTypeId["ORDERLABORATORYDAILYMAIL"] = "ORDER_LABORATORY_DAILY_MAIL";
|
|
56
|
+
NotificationTypeId["ORDERVALIDATEDBUYER"] = "ORDER_VALIDATED_BUYER";
|
|
57
|
+
NotificationTypeId["ORDERVALIDATEDSELLER"] = "ORDER_VALIDATED_SELLER";
|
|
58
|
+
NotificationTypeId["PHARMAIDEFIRSTSUBSCRIPTION"] = "PHARMAIDE_FIRST_SUBSCRIPTION";
|
|
59
|
+
NotificationTypeId["PHARMAIDESBTESTEXPIRATION"] = "PHARMAIDE_SB_TEST_EXPIRATION";
|
|
60
|
+
NotificationTypeId["PHARMAIDETESTTESTEXPIRATION"] = "PHARMAIDE_TEST_TEST_EXPIRATION";
|
|
61
|
+
})(NotificationTypeId = exports.NotificationTypeId || (exports.NotificationTypeId = {}));
|
|
62
|
+
function NotificationTypeIdFromJSON(json) {
|
|
63
|
+
return NotificationTypeIdFromJSONTyped(json, false);
|
|
64
|
+
}
|
|
65
|
+
exports.NotificationTypeIdFromJSON = NotificationTypeIdFromJSON;
|
|
66
|
+
function NotificationTypeIdFromJSONTyped(json, ignoreDiscriminator) {
|
|
67
|
+
return json;
|
|
68
|
+
}
|
|
69
|
+
exports.NotificationTypeIdFromJSONTyped = NotificationTypeIdFromJSONTyped;
|
|
70
|
+
function NotificationTypeIdToJSON(value) {
|
|
71
|
+
return value;
|
|
72
|
+
}
|
|
73
|
+
exports.NotificationTypeIdToJSON = NotificationTypeIdToJSON;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* lcdp-monolith-service
|
|
3
|
+
* This is the REST API of LCDP products
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: contact@lecomptoirdespharmacies.fr
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface NotificationTypeUpdateParameters
|
|
16
|
+
*/
|
|
17
|
+
export interface NotificationTypeUpdateParameters {
|
|
18
|
+
/**
|
|
19
|
+
* Readable name
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof NotificationTypeUpdateParameters
|
|
22
|
+
*/
|
|
23
|
+
name?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Alert email subject
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof NotificationTypeUpdateParameters
|
|
28
|
+
*/
|
|
29
|
+
subject?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Alert email content template
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof NotificationTypeUpdateParameters
|
|
34
|
+
*/
|
|
35
|
+
contentTemplate?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Alert is enabled
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof NotificationTypeUpdateParameters
|
|
40
|
+
*/
|
|
41
|
+
enabled?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Days before revival
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof NotificationTypeUpdateParameters
|
|
46
|
+
*/
|
|
47
|
+
daysBeforeRevival?: number;
|
|
48
|
+
/**
|
|
49
|
+
* Weight of the alert
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof NotificationTypeUpdateParameters
|
|
52
|
+
*/
|
|
53
|
+
weight?: number;
|
|
54
|
+
}
|
|
55
|
+
export declare function NotificationTypeUpdateParametersFromJSON(json: any): NotificationTypeUpdateParameters;
|
|
56
|
+
export declare function NotificationTypeUpdateParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationTypeUpdateParameters;
|
|
57
|
+
export declare function NotificationTypeUpdateParametersToJSON(value?: NotificationTypeUpdateParameters | null): any;
|