@fenixalliance/abs-api-client 1.0.2 → 1.0.3
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/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
- package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
- package/clients/accountingService/core/ApiError.ts +25 -0
- package/clients/accountingService/core/ApiRequestOptions.ts +17 -0
- package/clients/accountingService/core/ApiResult.ts +11 -0
- package/clients/accountingService/core/CancelablePromise.ts +131 -0
- package/clients/accountingService/core/OpenAPI.ts +32 -0
- package/clients/accountingService/core/request.ts +322 -0
- package/clients/accountingService/index.ts +97 -0
- package/clients/accountingService/models/AccountCreateDto.ts +30 -0
- package/clients/accountingService/models/AccountDto.ts +41 -0
- package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
- package/clients/{holderService/models/InvoiceDtoListEnvelope.ts → accountingService/models/AccountDtoListEnvelope.ts} +5 -5
- package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
- package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
- package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
- package/clients/accountingService/models/AccountingEntryDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
- package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
- package/clients/accountingService/models/BillingProfileDto.ts +67 -0
- package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
- package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
- package/clients/accountingService/models/BudgetDto.ts +12 -0
- package/clients/{holderService/models/PaymentDtoListEnvelope.ts → accountingService/models/BudgetDtoEnvelope.ts} +5 -5
- package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
- package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
- package/clients/accountingService/models/Currency.ts +9 -0
- package/clients/accountingService/models/EmptyEnvelope.ts +12 -0
- package/clients/accountingService/models/ErrorEnvelope.ts +12 -0
- package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
- package/clients/{holderService/models/InvoiceDto.ts → accountingService/models/FinancialBookDto.ts} +3 -4
- package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/FinancialBookDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
- package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
- package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
- package/clients/accountingService/models/FiscalAuthorityDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
- package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
- package/clients/accountingService/models/FiscalYearDto.ts +16 -0
- package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
- package/clients/accountingService/models/Int32Envelope.ts +13 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
- package/clients/accountingService/models/JournalCreateDto.ts +17 -0
- package/clients/accountingService/models/JournalDto.ts +17 -0
- package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
- package/clients/accountingService/models/JournalEntryDto.ts +31 -0
- package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
- package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
- package/clients/accountingService/models/JournalTypeDto.ts +12 -0
- package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalTypeDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalTypeUpdateDto.ts +10 -0
- package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
- package/clients/accountingService/models/LedgerDto.ts +15 -0
- package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/LoanCreateDto.ts +18 -0
- package/clients/accountingService/models/LoanDto.ts +18 -0
- package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
- package/clients/accountingService/models/Money.ts +10 -0
- package/clients/accountingService/models/Operation.ts +23 -0
- package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
- package/clients/accountingService/models/ReceiptDto.ts +24 -0
- package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
- package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
- package/clients/accountingService/services/AccountsService.ts +788 -0
- package/clients/accountingService/services/BillingProfilesService.ts +194 -0
- package/clients/accountingService/services/BudgetsService.ts +167 -0
- package/clients/accountingService/services/FinancialBooksService.ts +194 -0
- package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
- package/clients/accountingService/services/FiscalYearsService.ts +194 -0
- package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
- package/clients/accountingService/services/JournalTypesService.ts +167 -0
- package/clients/accountingService/services/JournalsService.ts +366 -0
- package/clients/accountingService/services/LedgersService.ts +163 -0
- package/clients/accountingService/services/LoansService.ts +194 -0
- package/clients/accountingService/services/ReceiptsService.ts +164 -0
- package/clients/cartService/index.ts +5 -0
- package/clients/cartService/models/BooleanEnvelope.ts +2 -2
- package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
- package/clients/cartService/models/CartUpdateRequest.ts +2 -2
- package/clients/cartService/models/CountryDto.ts +14 -0
- package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
- package/clients/cartService/models/CurrencyDto.ts +13 -0
- package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
- package/clients/cartService/models/EmptyEnvelope.ts +2 -1
- package/clients/cartService/models/ErrorEnvelope.ts +2 -2
- package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -1
- package/clients/cartService/models/ItemCartRecordDto.ts +9 -7
- package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
- package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +2 -2
- package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
- package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
- package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
- package/clients/cartService/models/ItemToCompareCartRecordDtoListEnvelope.ts +2 -2
- package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
- package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
- package/clients/cartService/services/CartsService.ts +1069 -22
- package/clients/cartService/services/CompareService.ts +24 -4
- package/clients/cartService/services/RecordsService.ts +114 -9
- package/clients/cartService/services/WishListsService.ts +116 -9
- package/clients/catalogService/index.ts +14 -6
- package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
- package/clients/catalogService/models/CatalogItemDto.ts +170 -0
- package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/{StockItemDto.ts → CatalogItemUpdateDto.ts} +138 -105
- package/clients/catalogService/models/Currency.ts +9 -0
- package/clients/catalogService/models/EmptyEnvelope.ts +2 -1
- package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
- package/clients/catalogService/models/Int32Envelope.ts +13 -0
- package/clients/catalogService/models/ItemAttachmentCreateDto.ts +6 -4
- package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
- package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +5 -2
- package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttributeDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemGoogleCategoryDto.ts +2 -1
- package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/MerchantDto.ts +47 -0
- package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/Money.ts +10 -0
- package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
- package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
- package/clients/catalogService/services/ItemAttachmentsService.ts +55 -30
- package/clients/catalogService/services/ItemAttributesService.ts +55 -30
- package/clients/catalogService/services/ItemBrandsService.ts +55 -30
- package/clients/catalogService/services/ItemCategoriesService.ts +74 -49
- package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
- package/clients/catalogService/services/ItemImagesService.ts +55 -30
- package/clients/catalogService/services/ItemQuestionsService.ts +55 -30
- package/clients/catalogService/services/ItemReviewsService.ts +55 -30
- package/clients/catalogService/services/ItemTagsService.ts +55 -30
- package/clients/catalogService/services/ItemTypesService.ts +57 -32
- package/clients/catalogService/services/ItemsService.ts +2176 -0
- package/clients/catalogService/services/MerchantsService.ts +30 -0
- package/clients/catalogService/services/PoliciesService.ts +24 -4
- package/clients/catalogService/services/PricingRulesService.ts +64 -39
- package/clients/crmService/index.ts +5 -0
- package/clients/crmService/models/CartDtoEnvelope.ts +2 -2
- package/clients/crmService/models/ContactCreateDto.ts +55 -0
- package/clients/crmService/models/ContactDto.ts +35 -21
- package/clients/crmService/models/ContactDtoEnvelope.ts +2 -2
- package/clients/crmService/models/ContactDtoListEnvelope.ts +2 -2
- package/clients/crmService/models/ContactProfileDto.ts +38 -0
- package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
- package/clients/crmService/models/ContactUpdateDto.ts +53 -0
- package/clients/crmService/models/EmptyEnvelope.ts +2 -1
- package/clients/crmService/models/ErrorEnvelope.ts +2 -2
- package/clients/crmService/models/Operation.ts +23 -0
- package/clients/crmService/models/SocialProfileDtoEnvelope.ts +2 -2
- package/clients/crmService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/crmService/services/ContactsService.ts +509 -40
- package/clients/crmService/services/SyncService.ts +31 -15
- package/clients/forexService/index.ts +3 -0
- package/clients/forexService/models/Currency.ts +1 -1
- package/clients/forexService/models/ErrorEnvelope.ts +2 -2
- package/clients/forexService/models/ExchangeRate.ts +11 -0
- package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
- package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
- package/clients/forexService/models/Money.ts +1 -1
- package/clients/forexService/models/MoneyEnvelope.ts +2 -2
- package/clients/forexService/services/ExchangeService.ts +9 -11
- package/clients/forexService/services/ExchangeVService.ts +65 -0
- package/clients/forexService/services/RatesService.ts +71 -6
- package/clients/holderService/index.ts +19 -8
- package/clients/holderService/models/AddressDto.ts +1 -1
- package/clients/holderService/models/AddressDtoListEnvelope.ts +2 -2
- package/clients/holderService/models/CartDtoEnvelope.ts +2 -2
- package/clients/holderService/models/EmptyEnvelope.ts +12 -0
- package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
- package/clients/holderService/models/EnrollmentId.ts +5 -0
- package/clients/holderService/models/ErrorEnvelope.ts +2 -2
- package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
- package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
- package/clients/holderService/models/ExtendedTenantDto.ts +51 -0
- package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
- package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/NotificationDtoListEnvelope.ts +2 -2
- package/clients/holderService/models/Operation.ts +23 -0
- package/clients/holderService/models/PlatformUserDto.ts +26 -28
- package/clients/holderService/models/PlatformUserDtoEnvelope.ts +2 -2
- package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
- package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
- package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
- package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
- package/clients/holderService/models/SocialProfileDtoEnvelope.ts +2 -2
- package/clients/holderService/models/TenantDto.ts +1 -10
- package/clients/holderService/models/TenantDtoListEnvelope.ts +2 -2
- package/clients/{tenantService/models/TenantEnrollmentDto.ts → holderService/models/TenantEnrolmentDto.ts} +4 -3
- package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
- package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/TenantInvitationDto.ts +16 -0
- package/clients/holderService/models/{TenantEnrollmentDtoListEnvelope.ts → TenantInvitationDtoListEnvelope.ts} +5 -5
- package/clients/holderService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/holderService/services/HolderService.ts +283 -44
- package/clients/identityService/index.ts +1 -1
- package/clients/identityService/models/AccountHolderCreateDto.ts +20 -15
- package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
- package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
- package/clients/identityService/models/ErrorEnvelope.ts +2 -2
- package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
- package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
- package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
- package/clients/identityService/models/PlatformUserDto.ts +26 -28
- package/clients/identityService/models/StringListEnvelope.ts +2 -2
- package/clients/identityService/models/TenantDto.ts +1 -10
- package/clients/identityService/services/ApplicationsService.ts +30 -5
- package/clients/identityService/services/CheckerService.ts +8 -3
- package/clients/identityService/services/OAuthService.ts +44 -10
- package/clients/identityService/services/ResourceService.ts +8 -2
- package/clients/identityService/services/UserInfoService.ts +16 -4
- package/clients/inventoryService/services/InventoryService.ts +6 -1
- package/clients/invoicingService/index.ts +29 -4
- package/clients/invoicingService/models/Currency.ts +9 -0
- package/clients/invoicingService/models/EmptyEnvelope.ts +2 -1
- package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
- package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
- package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/Int32Envelope.ts +13 -0
- package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
- package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
- package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
- package/clients/invoicingService/models/InvoiceCreateDto.ts +64 -0
- package/clients/invoicingService/models/InvoiceDto.ts +91 -2
- package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +2 -2
- package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
- package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts +8 -0
- package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceLineDto.ts +7 -2
- package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +2 -2
- package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +2 -2
- package/clients/invoicingService/models/{ItemPriceCreateDto.ts → InvoiceLineUpdateDto.ts} +9 -9
- package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
- package/clients/{tenantService/models/TenantEnrollmentDtoEnvelope.ts → invoicingService/models/InvoiceReferenceDtoEnvelope.ts} +5 -5
- package/clients/{tenantService/models/TenantEnrollmentDtoListEnvelope.ts → invoicingService/models/InvoiceReferenceDtoListEnvelope.ts} +5 -5
- package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
- package/clients/invoicingService/models/InvoiceUpdateDto.ts +29 -1
- package/clients/invoicingService/models/Money.ts +10 -0
- package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
- package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
- package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
- package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
- package/clients/invoicingService/models/TenantDto.ts +45 -0
- package/clients/invoicingService/services/InvoicesService.ts +799 -23
- package/clients/learningService/core/ApiError.ts +25 -0
- package/clients/learningService/core/ApiRequestOptions.ts +17 -0
- package/clients/learningService/core/ApiResult.ts +11 -0
- package/clients/learningService/core/CancelablePromise.ts +131 -0
- package/clients/learningService/core/OpenAPI.ts +32 -0
- package/clients/learningService/core/request.ts +322 -0
- package/clients/learningService/index.ts +50 -0
- package/clients/learningService/models/AverageDto.ts +10 -0
- package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CountDto.ts +10 -0
- package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
- package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
- package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
- package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
- package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
- package/clients/learningService/models/CourseDto.ts +170 -0
- package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
- package/clients/learningService/models/CourseUpdateDto.ts +5 -0
- package/clients/learningService/models/EmptyEnvelope.ts +12 -0
- package/clients/learningService/models/ErrorEnvelope.ts +12 -0
- package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
- package/clients/learningService/models/InstructorProfileDto.ts +39 -0
- package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
- package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
- package/clients/learningService/models/Pagination.ts +9 -0
- package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
- package/clients/learningService/models/StudentProfileDto.ts +38 -0
- package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
- package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
- package/clients/learningService/services/CourseCertificatesService.ts +270 -0
- package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
- package/clients/learningService/services/CoursesService.ts +128 -0
- package/clients/learningService/services/InstructorProfilesService.ts +152 -0
- package/clients/learningService/services/StudentProfilesService.ts +212 -0
- package/clients/marketingService/core/ApiError.ts +25 -0
- package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
- package/clients/marketingService/core/ApiResult.ts +11 -0
- package/clients/marketingService/core/CancelablePromise.ts +131 -0
- package/clients/marketingService/core/OpenAPI.ts +32 -0
- package/clients/marketingService/core/request.ts +322 -0
- package/clients/marketingService/index.ts +64 -0
- package/clients/marketingService/models/Currency.ts +9 -0
- package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
- package/clients/marketingService/models/EmailGroupDto.ts +14 -0
- package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
- package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
- package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
- package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
- package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
- package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
- package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailTemplateDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
- package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
- package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
- package/clients/marketingService/models/Int32Envelope.ts +13 -0
- package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
- package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
- package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
- package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
- package/clients/marketingService/models/MarketingListDto.ts +33 -0
- package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
- package/clients/marketingService/models/Money.ts +10 -0
- package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
- package/clients/marketingService/models/NewsletterDto.ts +14 -0
- package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
- package/clients/marketingService/models/OrderDto.ts +113 -0
- package/clients/{holderService/models/OrderDtoListEnvelope.ts → marketingService/models/OrderDtoEnvelope.ts} +4 -4
- package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
- package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
- package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
- package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
- package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
- package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
- package/clients/marketingService/services/EmailGroupsService.ts +193 -0
- package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
- package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
- package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
- package/clients/marketingService/services/MarketingListsService.ts +193 -0
- package/clients/marketingService/services/NewslettersService.ts +193 -0
- package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
- package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
- package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
- package/clients/ordersService/index.ts +7 -4
- package/clients/ordersService/models/Currency.ts +9 -0
- package/clients/ordersService/models/EmptyEnvelope.ts +2 -1
- package/clients/ordersService/models/ErrorEnvelope.ts +2 -2
- package/clients/ordersService/models/Int32Envelope.ts +13 -0
- package/clients/ordersService/models/Money.ts +10 -0
- package/clients/ordersService/models/OrderCreateDto.ts +60 -2
- package/clients/ordersService/models/OrderDto.ts +93 -7
- package/clients/ordersService/models/OrderDtoEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderDtoListEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
- package/clients/ordersService/models/OrderLineDto.ts +7 -2
- package/clients/ordersService/models/OrderLineDtoEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderLineUpdateDto.ts +97 -0
- package/clients/ordersService/models/OrderUpdateDto.ts +29 -1
- package/clients/ordersService/services/OrdersService.ts +115 -21
- package/clients/pricingService/index.ts +1 -0
- package/clients/pricingService/models/Currency.ts +1 -1
- package/clients/pricingService/models/EmptyEnvelope.ts +2 -1
- package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
- package/clients/pricingService/models/Int32Envelope.ts +13 -0
- package/clients/pricingService/models/ItemPriceCreateDto.ts +6 -6
- package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +2 -2
- package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +2 -2
- package/clients/pricingService/models/ItemPriceUpdateDto.ts +2 -1
- package/clients/pricingService/models/Money.ts +1 -1
- package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
- package/clients/pricingService/models/PriceListDtoEnvelope.ts +2 -2
- package/clients/pricingService/models/PriceListDtoListEnvelope.ts +2 -2
- package/clients/pricingService/services/PriceListsService.ts +100 -29
- package/clients/pricingService/services/PricesService.ts +18 -3
- package/clients/securityService/core/ApiError.ts +25 -0
- package/clients/securityService/core/ApiRequestOptions.ts +17 -0
- package/clients/securityService/core/ApiResult.ts +11 -0
- package/clients/securityService/core/CancelablePromise.ts +131 -0
- package/clients/securityService/core/OpenAPI.ts +32 -0
- package/clients/securityService/core/request.ts +322 -0
- package/clients/securityService/index.ts +24 -0
- package/clients/securityService/models/EmptyEnvelope.ts +12 -0
- package/clients/securityService/models/ErrorEnvelope.ts +12 -0
- package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
- package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
- package/clients/securityService/models/SecurityPermissionDtoListEnvelope.ts +14 -0
- package/clients/securityService/models/SecurityPermissionUpdateDto.ts +9 -0
- package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
- package/clients/securityService/models/SecurityRoleDto.ts +13 -0
- package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
- package/clients/securityService/models/SecurityRoleUpdateDto.ts +9 -0
- package/clients/{holderService/models/TenantEnrollmentDto.ts → securityService/models/TenantEnrolmentDto.ts} +4 -3
- package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/securityService/services/PermissionsService.ts +399 -0
- package/clients/securityService/services/RolesService.ts +430 -0
- package/clients/supportService/core/ApiError.ts +25 -0
- package/clients/supportService/core/ApiRequestOptions.ts +17 -0
- package/clients/supportService/core/ApiResult.ts +11 -0
- package/clients/supportService/core/CancelablePromise.ts +131 -0
- package/clients/supportService/core/OpenAPI.ts +32 -0
- package/clients/supportService/core/request.ts +322 -0
- package/clients/supportService/index.ts +54 -0
- package/clients/supportService/models/EmptyEnvelope.ts +12 -0
- package/clients/supportService/models/ErrorEnvelope.ts +12 -0
- package/clients/supportService/models/PrivateMessageDto.ts +15 -0
- package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
- package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
- package/clients/supportService/models/SupportEntitlementDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportEntitlementDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
- package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
- package/clients/supportService/models/SupportRequestAttachmentDto.ts +28 -0
- package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
- package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
- package/clients/supportService/models/SupportRequestDto.ts +18 -0
- package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
- package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
- package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
- package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
- package/clients/supportService/models/SupportTicketDto.ts +17 -0
- package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
- package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
- package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
- package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
- package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
- package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
- package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
- package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
- package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
- package/clients/supportService/services/SupportRequestsService.ts +290 -0
- package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
- package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
- package/clients/supportService/services/SupportTicketsService.ts +331 -0
- package/clients/systemService/index.ts +19 -0
- package/clients/systemService/models/BooleanEnvelope.ts +13 -0
- package/clients/systemService/models/ErrorEnvelope.ts +2 -2
- package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
- package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
- package/clients/systemService/models/ISwaggerContact.ts +10 -0
- package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
- package/clients/systemService/models/ISwaggerLicense.ts +9 -0
- package/clients/systemService/models/ISwaggerSpec.ts +19 -0
- package/clients/systemService/models/LicenseValidationRequest.ts +8 -0
- package/clients/systemService/models/Module.ts +44 -0
- package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
- package/clients/systemService/models/StringListEnvelope.ts +2 -2
- package/clients/systemService/models/StudioModule.ts +9 -0
- package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → systemService/models/StudioModuleListEnvelope.ts} +5 -5
- package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
- package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
- package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
- package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
- package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
- package/clients/systemService/services/AntiforgeryService.ts +16 -4
- package/clients/systemService/services/LicensingService.ts +230 -0
- package/clients/systemService/services/MigrationsService.ts +14 -3
- package/clients/systemService/services/ModulesService.ts +61 -0
- package/clients/tenantService/index.ts +100 -3
- package/clients/tenantService/models/BooleanEnvelope.ts +2 -2
- package/clients/tenantService/models/CartDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/EmptyEnvelope.ts +2 -1
- package/clients/tenantService/models/ErrorEnvelope.ts +2 -2
- package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
- package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
- package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
- package/clients/tenantService/models/Operation.ts +23 -0
- package/clients/tenantService/models/PlatformUserDto.ts +26 -28
- package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +2 -2
- package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/StringListEnvelope.ts +2 -2
- package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
- package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
- package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/SuiteLicenseFeatureDto.ts +9 -0
- package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantCreateDto.ts +7 -7
- package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
- package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
- package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
- package/clients/tenantService/models/TenantDto.ts +1 -10
- package/clients/tenantService/models/TenantDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
- package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
- package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
- package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
- package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantPositionDto.ts +13 -0
- package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
- package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantSizeDto.ts +12 -0
- package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
- package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
- package/clients/tenantService/models/TenantTeamDto.ts +17 -0
- package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
- package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
- package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
- package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantTypeCreateDto.ts +11 -0
- package/clients/tenantService/models/TenantTypeDto.ts +11 -0
- package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
- package/clients/tenantService/models/TenantUnitDto.ts +18 -0
- package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
- package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
- package/clients/tenantService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/WebPortalDto.ts +9 -2
- package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +2 -2
- package/clients/tenantService/services/DepartmentsService.ts +198 -0
- package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
- package/clients/tenantService/services/EnrollmentsService.ts +195 -0
- package/clients/tenantService/services/IndustriesService.ts +190 -0
- package/clients/tenantService/services/InvitationsService.ts +150 -0
- package/clients/tenantService/services/PositionsService.ts +192 -0
- package/clients/tenantService/services/SegmentsService.ts +191 -0
- package/clients/tenantService/services/SizesService.ts +194 -0
- package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
- package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
- package/clients/tenantService/services/TeamRecordsService.ts +192 -0
- package/clients/tenantService/services/TeamsService.ts +192 -0
- package/clients/tenantService/services/TenantsService.ts +580 -49
- package/clients/tenantService/services/TerritoriesService.ts +192 -0
- package/clients/tenantService/services/TypesService.ts +176 -0
- package/clients/tenantService/services/UnitsService.ts +190 -0
- package/clients/walletsService/index.ts +5 -3
- package/clients/walletsService/models/Currency.ts +9 -0
- package/clients/walletsService/models/ErrorEnvelope.ts +2 -2
- package/clients/walletsService/models/InvoiceDto.ts +91 -2
- package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/LocationDto.ts +1 -1
- package/clients/walletsService/models/LocationDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/Money.ts +10 -0
- package/clients/walletsService/models/OrderDto.ts +93 -7
- package/clients/walletsService/models/OrderDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/PaymentDto.ts +81 -4
- package/clients/walletsService/models/PaymentDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/walletsService/services/WalletsService.ts +73 -8
- package/package.json +4 -3
- package/schemas/accountingService/schema.s.ts +5108 -0
- package/schemas/cartService/schema.s.ts +1716 -78
- package/schemas/catalogService/schema.s.ts +2810 -1736
- package/schemas/crmService/schema.s.ts +892 -138
- package/schemas/forexService/schema.s.ts +116 -345
- package/schemas/holderService/schema.s.ts +693 -197
- package/schemas/identityService/schema.s.ts +125 -103
- package/schemas/inventoryService/schema.s.ts +4 -1
- package/schemas/invoicingService/schema.s.ts +1758 -105
- package/schemas/learningService/schema.s.ts +1723 -0
- package/schemas/marketingService/schema.s.ts +3027 -0
- package/schemas/ordersService/schema.s.ts +632 -108
- package/schemas/pricingService/schema.s.ts +181 -102
- package/schemas/securityService/schema.s.ts +1226 -0
- package/schemas/supportService/schema.s.ts +2114 -0
- package/schemas/systemService/schema.s.ts +1215 -5
- package/schemas/tenantService/schema.s.ts +5405 -427
- package/schemas/walletsService/schema.s.ts +374 -34
- package/clients/catalogService/models/StockItemCreateDto.ts +0 -108
- package/clients/catalogService/models/StockItemUpdateDto.ts +0 -106
- package/clients/catalogService/services/ProductsService.ts +0 -1706
- package/clients/holderService/models/OrderDto.ts +0 -27
- package/clients/holderService/models/PaymentDto.ts +0 -17
- package/clients/invoicingService/models/ItemPriceUpdateDto.ts +0 -14
- package/clients/ordersService/models/ItemPriceCreateDto.ts +0 -20
- package/clients/ordersService/models/ItemPriceUpdateDto.ts +0 -14
|
@@ -5,18 +5,21 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export interface paths {
|
|
8
|
-
"/api/v2/CartService/Carts/{
|
|
8
|
+
"/api/v2/CartService/Carts/{cartId}": {
|
|
9
9
|
get: {
|
|
10
10
|
parameters: {
|
|
11
11
|
query?: {
|
|
12
12
|
"api-version"?: string;
|
|
13
13
|
};
|
|
14
|
+
header?: {
|
|
15
|
+
"x-api-version"?: string;
|
|
16
|
+
};
|
|
14
17
|
path: {
|
|
15
18
|
cartId: string;
|
|
16
19
|
};
|
|
17
20
|
};
|
|
18
21
|
responses: {
|
|
19
|
-
/** @description
|
|
22
|
+
/** @description OK */
|
|
20
23
|
200: {
|
|
21
24
|
content: {
|
|
22
25
|
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
@@ -39,13 +42,14 @@ export interface paths {
|
|
|
39
42
|
};
|
|
40
43
|
};
|
|
41
44
|
};
|
|
42
|
-
};
|
|
43
|
-
"/api/v2/CartService/Carts/{cartId}": {
|
|
44
45
|
put: {
|
|
45
46
|
parameters: {
|
|
46
47
|
query?: {
|
|
47
48
|
"api-version"?: string;
|
|
48
49
|
};
|
|
50
|
+
header?: {
|
|
51
|
+
"x-api-version"?: string;
|
|
52
|
+
};
|
|
49
53
|
path: {
|
|
50
54
|
cartId: string;
|
|
51
55
|
};
|
|
@@ -57,7 +61,167 @@ export interface paths {
|
|
|
57
61
|
};
|
|
58
62
|
};
|
|
59
63
|
responses: {
|
|
60
|
-
/** @description
|
|
64
|
+
/** @description OK */
|
|
65
|
+
200: {
|
|
66
|
+
content: {
|
|
67
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
68
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
/** @description Unauthorized */
|
|
72
|
+
401: {
|
|
73
|
+
content: {
|
|
74
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
75
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
/** @description Forbidden */
|
|
79
|
+
403: {
|
|
80
|
+
content: {
|
|
81
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
82
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
"/api/v2/CartService/Carts/{cartId}/Currency": {
|
|
89
|
+
get: {
|
|
90
|
+
parameters: {
|
|
91
|
+
query?: {
|
|
92
|
+
"api-version"?: string;
|
|
93
|
+
};
|
|
94
|
+
header?: {
|
|
95
|
+
"x-api-version"?: string;
|
|
96
|
+
};
|
|
97
|
+
path: {
|
|
98
|
+
cartId: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
responses: {
|
|
102
|
+
/** @description OK */
|
|
103
|
+
200: {
|
|
104
|
+
content: {
|
|
105
|
+
"application/json": components["schemas"]["CurrencyDtoEnvelope"];
|
|
106
|
+
"application/xml": components["schemas"]["CurrencyDtoEnvelope"];
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
/** @description Unauthorized */
|
|
110
|
+
401: {
|
|
111
|
+
content: {
|
|
112
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
113
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
/** @description Forbidden */
|
|
117
|
+
403: {
|
|
118
|
+
content: {
|
|
119
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
120
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
put: {
|
|
126
|
+
parameters: {
|
|
127
|
+
query?: {
|
|
128
|
+
"api-version"?: string;
|
|
129
|
+
};
|
|
130
|
+
header?: {
|
|
131
|
+
"x-api-version"?: string;
|
|
132
|
+
};
|
|
133
|
+
path: {
|
|
134
|
+
cartId: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
requestBody?: {
|
|
138
|
+
content: {
|
|
139
|
+
"application/json": components["schemas"]["CurrencySwitchRequest"];
|
|
140
|
+
"application/xml": components["schemas"]["CurrencySwitchRequest"];
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
responses: {
|
|
144
|
+
/** @description OK */
|
|
145
|
+
200: {
|
|
146
|
+
content: {
|
|
147
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
148
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
/** @description Unauthorized */
|
|
152
|
+
401: {
|
|
153
|
+
content: {
|
|
154
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
155
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
/** @description Forbidden */
|
|
159
|
+
403: {
|
|
160
|
+
content: {
|
|
161
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
162
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
"/api/v2/CartService/Carts/{cartId}/Country": {
|
|
169
|
+
get: {
|
|
170
|
+
parameters: {
|
|
171
|
+
query?: {
|
|
172
|
+
"api-version"?: string;
|
|
173
|
+
};
|
|
174
|
+
header?: {
|
|
175
|
+
"x-api-version"?: string;
|
|
176
|
+
};
|
|
177
|
+
path: {
|
|
178
|
+
cartId: string;
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
responses: {
|
|
182
|
+
/** @description OK */
|
|
183
|
+
200: {
|
|
184
|
+
content: {
|
|
185
|
+
"application/json": components["schemas"]["CountryDtoEnvelope"];
|
|
186
|
+
"application/xml": components["schemas"]["CountryDtoEnvelope"];
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
/** @description Unauthorized */
|
|
190
|
+
401: {
|
|
191
|
+
content: {
|
|
192
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
193
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
/** @description Forbidden */
|
|
197
|
+
403: {
|
|
198
|
+
content: {
|
|
199
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
200
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
put: {
|
|
206
|
+
parameters: {
|
|
207
|
+
query?: {
|
|
208
|
+
"api-version"?: string;
|
|
209
|
+
};
|
|
210
|
+
header?: {
|
|
211
|
+
"x-api-version"?: string;
|
|
212
|
+
};
|
|
213
|
+
path: {
|
|
214
|
+
cartId: string;
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
requestBody?: {
|
|
218
|
+
content: {
|
|
219
|
+
"application/json": components["schemas"]["CountrySwitchRequest"];
|
|
220
|
+
"application/xml": components["schemas"]["CountrySwitchRequest"];
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
responses: {
|
|
224
|
+
/** @description OK */
|
|
61
225
|
200: {
|
|
62
226
|
content: {
|
|
63
227
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -81,15 +245,21 @@ export interface paths {
|
|
|
81
245
|
};
|
|
82
246
|
};
|
|
83
247
|
};
|
|
248
|
+
"/api/v2/CartService/Carts/{cartId}/Submit": {
|
|
249
|
+
post: operations["SubmitCartAsync"];
|
|
250
|
+
};
|
|
84
251
|
"/api/v2/CartService/Carts/ActingCart": {
|
|
85
252
|
get: {
|
|
86
253
|
parameters: {
|
|
87
254
|
query?: {
|
|
88
255
|
"api-version"?: string;
|
|
89
256
|
};
|
|
257
|
+
header?: {
|
|
258
|
+
"x-api-version"?: string;
|
|
259
|
+
};
|
|
90
260
|
};
|
|
91
261
|
responses: {
|
|
92
|
-
/** @description
|
|
262
|
+
/** @description OK */
|
|
93
263
|
200: {
|
|
94
264
|
content: {
|
|
95
265
|
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
@@ -119,9 +289,12 @@ export interface paths {
|
|
|
119
289
|
query?: {
|
|
120
290
|
"api-version"?: string;
|
|
121
291
|
};
|
|
292
|
+
header?: {
|
|
293
|
+
"x-api-version"?: string;
|
|
294
|
+
};
|
|
122
295
|
};
|
|
123
296
|
responses: {
|
|
124
|
-
/** @description
|
|
297
|
+
/** @description OK */
|
|
125
298
|
200: {
|
|
126
299
|
content: {
|
|
127
300
|
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
@@ -151,9 +324,12 @@ export interface paths {
|
|
|
151
324
|
query?: {
|
|
152
325
|
"api-version"?: string;
|
|
153
326
|
};
|
|
327
|
+
header?: {
|
|
328
|
+
"x-api-version"?: string;
|
|
329
|
+
};
|
|
154
330
|
};
|
|
155
331
|
responses: {
|
|
156
|
-
/** @description
|
|
332
|
+
/** @description OK */
|
|
157
333
|
200: {
|
|
158
334
|
content: {
|
|
159
335
|
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
@@ -176,12 +352,15 @@ export interface paths {
|
|
|
176
352
|
query?: {
|
|
177
353
|
"api-version"?: string;
|
|
178
354
|
};
|
|
355
|
+
header?: {
|
|
356
|
+
"x-api-version"?: string;
|
|
357
|
+
};
|
|
179
358
|
path: {
|
|
180
359
|
tenantId: string;
|
|
181
360
|
};
|
|
182
361
|
};
|
|
183
362
|
responses: {
|
|
184
|
-
/** @description
|
|
363
|
+
/** @description OK */
|
|
185
364
|
200: {
|
|
186
365
|
content: {
|
|
187
366
|
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
@@ -205,44 +384,1198 @@ export interface paths {
|
|
|
205
384
|
};
|
|
206
385
|
};
|
|
207
386
|
};
|
|
208
|
-
"/api/v2/CartService/Carts/
|
|
209
|
-
|
|
387
|
+
"/api/v2/CartService/Carts/{cartId}/Items": {
|
|
388
|
+
get: {
|
|
210
389
|
parameters: {
|
|
211
390
|
query?: {
|
|
212
391
|
"api-version"?: string;
|
|
213
392
|
};
|
|
393
|
+
header?: {
|
|
394
|
+
"x-api-version"?: string;
|
|
395
|
+
};
|
|
396
|
+
path: {
|
|
397
|
+
cartId: string;
|
|
398
|
+
};
|
|
214
399
|
};
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
400
|
+
responses: {
|
|
401
|
+
/** @description OK */
|
|
402
|
+
200: {
|
|
403
|
+
content: {
|
|
404
|
+
"application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
|
|
405
|
+
"application/xml": components["schemas"]["ItemCartRecordDtoListEnvelope"];
|
|
406
|
+
};
|
|
407
|
+
};
|
|
408
|
+
/** @description Unauthorized */
|
|
409
|
+
401: {
|
|
410
|
+
content: {
|
|
411
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
412
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
/** @description Not Found */
|
|
416
|
+
404: {
|
|
417
|
+
content: {
|
|
418
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
419
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
420
|
+
};
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
};
|
|
424
|
+
delete: {
|
|
425
|
+
parameters: {
|
|
426
|
+
query?: {
|
|
427
|
+
"api-version"?: string;
|
|
428
|
+
};
|
|
429
|
+
header?: {
|
|
430
|
+
"x-api-version"?: string;
|
|
431
|
+
};
|
|
432
|
+
path: {
|
|
433
|
+
cartId: string;
|
|
219
434
|
};
|
|
220
435
|
};
|
|
221
436
|
responses: {
|
|
222
|
-
/** @description
|
|
437
|
+
/** @description OK */
|
|
223
438
|
200: {
|
|
224
|
-
content:
|
|
439
|
+
content: {
|
|
440
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
441
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
/** @description Unauthorized */
|
|
445
|
+
401: {
|
|
446
|
+
content: {
|
|
447
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
448
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
/** @description Not Found */
|
|
452
|
+
404: {
|
|
453
|
+
content: {
|
|
454
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
455
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
456
|
+
};
|
|
225
457
|
};
|
|
226
458
|
};
|
|
227
459
|
};
|
|
228
460
|
};
|
|
229
|
-
"/api/v2/CartService/Carts/
|
|
230
|
-
|
|
461
|
+
"/api/v2/CartService/Carts/{cartId}/Items/{itemId}": {
|
|
462
|
+
put: {
|
|
231
463
|
parameters: {
|
|
232
464
|
query?: {
|
|
233
465
|
"api-version"?: string;
|
|
234
466
|
};
|
|
467
|
+
header?: {
|
|
468
|
+
"x-api-version"?: string;
|
|
469
|
+
};
|
|
470
|
+
path: {
|
|
471
|
+
cartId: string;
|
|
472
|
+
itemId: string;
|
|
473
|
+
};
|
|
235
474
|
};
|
|
236
475
|
requestBody?: {
|
|
237
476
|
content: {
|
|
238
|
-
"application/json": components["schemas"]["
|
|
239
|
-
"application/xml": components["schemas"]["
|
|
477
|
+
"application/json": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
478
|
+
"application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
240
479
|
};
|
|
241
480
|
};
|
|
242
481
|
responses: {
|
|
243
|
-
/** @description
|
|
482
|
+
/** @description OK */
|
|
244
483
|
200: {
|
|
245
|
-
content:
|
|
484
|
+
content: {
|
|
485
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
486
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
/** @description Unauthorized */
|
|
490
|
+
401: {
|
|
491
|
+
content: {
|
|
492
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
493
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
/** @description Not Found */
|
|
497
|
+
404: {
|
|
498
|
+
content: {
|
|
499
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
500
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
post: {
|
|
506
|
+
parameters: {
|
|
507
|
+
query?: {
|
|
508
|
+
quantity?: number;
|
|
509
|
+
"api-version"?: string;
|
|
510
|
+
};
|
|
511
|
+
header?: {
|
|
512
|
+
"x-api-version"?: string;
|
|
513
|
+
};
|
|
514
|
+
path: {
|
|
515
|
+
cartId: string;
|
|
516
|
+
itemId: string;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
responses: {
|
|
520
|
+
/** @description OK */
|
|
521
|
+
200: {
|
|
522
|
+
content: {
|
|
523
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
524
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
/** @description Unauthorized */
|
|
528
|
+
401: {
|
|
529
|
+
content: {
|
|
530
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
531
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
/** @description Not Found */
|
|
535
|
+
404: {
|
|
536
|
+
content: {
|
|
537
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
538
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
539
|
+
};
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
delete: {
|
|
544
|
+
parameters: {
|
|
545
|
+
query?: {
|
|
546
|
+
"api-version"?: string;
|
|
547
|
+
};
|
|
548
|
+
header?: {
|
|
549
|
+
"x-api-version"?: string;
|
|
550
|
+
};
|
|
551
|
+
path: {
|
|
552
|
+
cartId: string;
|
|
553
|
+
itemId: string;
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
responses: {
|
|
557
|
+
/** @description OK */
|
|
558
|
+
200: {
|
|
559
|
+
content: {
|
|
560
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
561
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
/** @description Unauthorized */
|
|
565
|
+
401: {
|
|
566
|
+
content: {
|
|
567
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
568
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
/** @description Not Found */
|
|
572
|
+
404: {
|
|
573
|
+
content: {
|
|
574
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
575
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
"/api/v2/CartService/Carts/{cartId}/Contains/{itemId}": {
|
|
582
|
+
get: {
|
|
583
|
+
parameters: {
|
|
584
|
+
query?: {
|
|
585
|
+
"api-version"?: string;
|
|
586
|
+
};
|
|
587
|
+
header?: {
|
|
588
|
+
"x-api-version"?: string;
|
|
589
|
+
};
|
|
590
|
+
path: {
|
|
591
|
+
cartId: string;
|
|
592
|
+
itemId: string;
|
|
593
|
+
};
|
|
594
|
+
};
|
|
595
|
+
responses: {
|
|
596
|
+
/** @description OK */
|
|
597
|
+
200: {
|
|
598
|
+
content: {
|
|
599
|
+
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
600
|
+
"application/xml": components["schemas"]["BooleanEnvelope"];
|
|
601
|
+
};
|
|
602
|
+
};
|
|
603
|
+
/** @description Unauthorized */
|
|
604
|
+
401: {
|
|
605
|
+
content: {
|
|
606
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
607
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
/** @description Not Found */
|
|
611
|
+
404: {
|
|
612
|
+
content: {
|
|
613
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
614
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
};
|
|
618
|
+
};
|
|
619
|
+
};
|
|
620
|
+
"/api/v2/CartService/Carts/{cartId}/Items/{itemId}/Increase": {
|
|
621
|
+
put: {
|
|
622
|
+
parameters: {
|
|
623
|
+
query?: {
|
|
624
|
+
"api-version"?: string;
|
|
625
|
+
};
|
|
626
|
+
header?: {
|
|
627
|
+
"x-api-version"?: string;
|
|
628
|
+
};
|
|
629
|
+
path: {
|
|
630
|
+
cartId: string;
|
|
631
|
+
itemId: string;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
requestBody?: {
|
|
635
|
+
content: {
|
|
636
|
+
"application/json": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
637
|
+
"application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
638
|
+
};
|
|
639
|
+
};
|
|
640
|
+
responses: {
|
|
641
|
+
/** @description OK */
|
|
642
|
+
200: {
|
|
643
|
+
content: {
|
|
644
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
645
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
646
|
+
};
|
|
647
|
+
};
|
|
648
|
+
/** @description Unauthorized */
|
|
649
|
+
401: {
|
|
650
|
+
content: {
|
|
651
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
652
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
/** @description Not Found */
|
|
656
|
+
404: {
|
|
657
|
+
content: {
|
|
658
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
659
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
660
|
+
};
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
};
|
|
664
|
+
};
|
|
665
|
+
"/api/v2/CartService/Carts/{cartId}/Items/{itemId}/Decrease": {
|
|
666
|
+
put: {
|
|
667
|
+
parameters: {
|
|
668
|
+
query?: {
|
|
669
|
+
"api-version"?: string;
|
|
670
|
+
};
|
|
671
|
+
header?: {
|
|
672
|
+
"x-api-version"?: string;
|
|
673
|
+
};
|
|
674
|
+
path: {
|
|
675
|
+
cartId: string;
|
|
676
|
+
itemId: string;
|
|
677
|
+
};
|
|
678
|
+
};
|
|
679
|
+
requestBody?: {
|
|
680
|
+
content: {
|
|
681
|
+
"application/json": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
682
|
+
"application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
683
|
+
};
|
|
684
|
+
};
|
|
685
|
+
responses: {
|
|
686
|
+
/** @description OK */
|
|
687
|
+
200: {
|
|
688
|
+
content: {
|
|
689
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
690
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
691
|
+
};
|
|
692
|
+
};
|
|
693
|
+
/** @description Unauthorized */
|
|
694
|
+
401: {
|
|
695
|
+
content: {
|
|
696
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
697
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
698
|
+
};
|
|
699
|
+
};
|
|
700
|
+
/** @description Not Found */
|
|
701
|
+
404: {
|
|
702
|
+
content: {
|
|
703
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
704
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
705
|
+
};
|
|
706
|
+
};
|
|
707
|
+
};
|
|
708
|
+
};
|
|
709
|
+
};
|
|
710
|
+
"/api/v2/CartService/Carts/{cartId}/Lines": {
|
|
711
|
+
get: {
|
|
712
|
+
parameters: {
|
|
713
|
+
query?: {
|
|
714
|
+
"api-version"?: string;
|
|
715
|
+
};
|
|
716
|
+
header?: {
|
|
717
|
+
"x-api-version"?: string;
|
|
718
|
+
};
|
|
719
|
+
path: {
|
|
720
|
+
cartId: string;
|
|
721
|
+
};
|
|
722
|
+
};
|
|
723
|
+
responses: {
|
|
724
|
+
/** @description OK */
|
|
725
|
+
200: {
|
|
726
|
+
content: {
|
|
727
|
+
"application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
|
|
728
|
+
"application/xml": components["schemas"]["ItemCartRecordDtoListEnvelope"];
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
/** @description Unauthorized */
|
|
732
|
+
401: {
|
|
733
|
+
content: {
|
|
734
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
735
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
736
|
+
};
|
|
737
|
+
};
|
|
738
|
+
/** @description Not Found */
|
|
739
|
+
404: {
|
|
740
|
+
content: {
|
|
741
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
742
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
"/api/v2/CartService/Carts/{cartId}/Lines/{lineId}": {
|
|
749
|
+
get: {
|
|
750
|
+
parameters: {
|
|
751
|
+
query?: {
|
|
752
|
+
"api-version"?: string;
|
|
753
|
+
};
|
|
754
|
+
header?: {
|
|
755
|
+
"x-api-version"?: string;
|
|
756
|
+
};
|
|
757
|
+
path: {
|
|
758
|
+
cartId: string;
|
|
759
|
+
lineId: string;
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
responses: {
|
|
763
|
+
/** @description OK */
|
|
764
|
+
200: {
|
|
765
|
+
content: {
|
|
766
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
767
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
768
|
+
};
|
|
769
|
+
};
|
|
770
|
+
/** @description Unauthorized */
|
|
771
|
+
401: {
|
|
772
|
+
content: {
|
|
773
|
+
"application/json": components["schemas"]["ItemCartRecordDtoEnvelope"];
|
|
774
|
+
"application/xml": components["schemas"]["ItemCartRecordDtoEnvelope"];
|
|
775
|
+
};
|
|
776
|
+
};
|
|
777
|
+
/** @description Not Found */
|
|
778
|
+
404: {
|
|
779
|
+
content: {
|
|
780
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
781
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
put: {
|
|
787
|
+
parameters: {
|
|
788
|
+
query?: {
|
|
789
|
+
"api-version"?: string;
|
|
790
|
+
};
|
|
791
|
+
header?: {
|
|
792
|
+
"x-api-version"?: string;
|
|
793
|
+
};
|
|
794
|
+
path: {
|
|
795
|
+
cartId: string;
|
|
796
|
+
lineId: string;
|
|
797
|
+
};
|
|
798
|
+
};
|
|
799
|
+
requestBody?: {
|
|
800
|
+
content: {
|
|
801
|
+
"application/json": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
802
|
+
"application/xml": components["schemas"]["ItemCartRecordUpdateDto"];
|
|
803
|
+
};
|
|
804
|
+
};
|
|
805
|
+
responses: {
|
|
806
|
+
/** @description OK */
|
|
807
|
+
200: {
|
|
808
|
+
content: {
|
|
809
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
810
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
811
|
+
};
|
|
812
|
+
};
|
|
813
|
+
/** @description Unauthorized */
|
|
814
|
+
401: {
|
|
815
|
+
content: {
|
|
816
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
817
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
818
|
+
};
|
|
819
|
+
};
|
|
820
|
+
/** @description Not Found */
|
|
821
|
+
404: {
|
|
822
|
+
content: {
|
|
823
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
824
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
825
|
+
};
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
delete: {
|
|
830
|
+
parameters: {
|
|
831
|
+
query?: {
|
|
832
|
+
"api-version"?: string;
|
|
833
|
+
};
|
|
834
|
+
header?: {
|
|
835
|
+
"x-api-version"?: string;
|
|
836
|
+
};
|
|
837
|
+
path: {
|
|
838
|
+
cartId: string;
|
|
839
|
+
lineId: string;
|
|
840
|
+
};
|
|
841
|
+
};
|
|
842
|
+
responses: {
|
|
843
|
+
/** @description OK */
|
|
844
|
+
200: {
|
|
845
|
+
content: {
|
|
846
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
847
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
848
|
+
};
|
|
849
|
+
};
|
|
850
|
+
/** @description Unauthorized */
|
|
851
|
+
401: {
|
|
852
|
+
content: {
|
|
853
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
854
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
/** @description Not Found */
|
|
858
|
+
404: {
|
|
859
|
+
content: {
|
|
860
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
861
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
862
|
+
};
|
|
863
|
+
};
|
|
864
|
+
};
|
|
865
|
+
};
|
|
866
|
+
};
|
|
867
|
+
"/api/v2/CartService/Carts/{cartId}/Lines/{lineId}/Increase": {
|
|
868
|
+
put: {
|
|
869
|
+
parameters: {
|
|
870
|
+
query?: {
|
|
871
|
+
quantity?: number;
|
|
872
|
+
"api-version"?: string;
|
|
873
|
+
};
|
|
874
|
+
header?: {
|
|
875
|
+
"x-api-version"?: string;
|
|
876
|
+
};
|
|
877
|
+
path: {
|
|
878
|
+
cartId: string;
|
|
879
|
+
lineId: string;
|
|
880
|
+
};
|
|
881
|
+
};
|
|
882
|
+
responses: {
|
|
883
|
+
/** @description OK */
|
|
884
|
+
200: {
|
|
885
|
+
content: {
|
|
886
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
887
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
/** @description Unauthorized */
|
|
891
|
+
401: {
|
|
892
|
+
content: {
|
|
893
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
894
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
895
|
+
};
|
|
896
|
+
};
|
|
897
|
+
/** @description Not Found */
|
|
898
|
+
404: {
|
|
899
|
+
content: {
|
|
900
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
901
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
902
|
+
};
|
|
903
|
+
};
|
|
904
|
+
};
|
|
905
|
+
};
|
|
906
|
+
};
|
|
907
|
+
"/api/v2/CartService/Carts/{cartId}/Lines/{lineId}/Decrease": {
|
|
908
|
+
put: {
|
|
909
|
+
parameters: {
|
|
910
|
+
query?: {
|
|
911
|
+
quantity?: number;
|
|
912
|
+
"api-version"?: string;
|
|
913
|
+
};
|
|
914
|
+
header?: {
|
|
915
|
+
"x-api-version"?: string;
|
|
916
|
+
};
|
|
917
|
+
path: {
|
|
918
|
+
cartId: string;
|
|
919
|
+
lineId: string;
|
|
920
|
+
};
|
|
921
|
+
};
|
|
922
|
+
responses: {
|
|
923
|
+
/** @description OK */
|
|
924
|
+
200: {
|
|
925
|
+
content: {
|
|
926
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
927
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
/** @description Unauthorized */
|
|
931
|
+
401: {
|
|
932
|
+
content: {
|
|
933
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
934
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
935
|
+
};
|
|
936
|
+
};
|
|
937
|
+
/** @description Not Found */
|
|
938
|
+
404: {
|
|
939
|
+
content: {
|
|
940
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
941
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
942
|
+
};
|
|
943
|
+
};
|
|
944
|
+
};
|
|
945
|
+
};
|
|
946
|
+
};
|
|
947
|
+
"/api/v2/CartService/Carts/{cartId}/WishLists": {
|
|
948
|
+
get: {
|
|
949
|
+
parameters: {
|
|
950
|
+
query?: {
|
|
951
|
+
"api-version"?: string;
|
|
952
|
+
};
|
|
953
|
+
header?: {
|
|
954
|
+
"x-api-version"?: string;
|
|
955
|
+
};
|
|
956
|
+
path: {
|
|
957
|
+
cartId: string;
|
|
958
|
+
};
|
|
959
|
+
};
|
|
960
|
+
responses: {
|
|
961
|
+
/** @description OK */
|
|
962
|
+
200: {
|
|
963
|
+
content: {
|
|
964
|
+
"application/json": components["schemas"]["WishListDto"][];
|
|
965
|
+
"application/xml": components["schemas"]["WishListDto"][];
|
|
966
|
+
};
|
|
967
|
+
};
|
|
968
|
+
/** @description Unauthorized */
|
|
969
|
+
401: {
|
|
970
|
+
content: {
|
|
971
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
972
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
973
|
+
};
|
|
974
|
+
};
|
|
975
|
+
/** @description Not Found */
|
|
976
|
+
404: {
|
|
977
|
+
content: {
|
|
978
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
979
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
980
|
+
};
|
|
981
|
+
};
|
|
982
|
+
};
|
|
983
|
+
};
|
|
984
|
+
post: {
|
|
985
|
+
parameters: {
|
|
986
|
+
query?: {
|
|
987
|
+
"api-version"?: string;
|
|
988
|
+
};
|
|
989
|
+
header?: {
|
|
990
|
+
"x-api-version"?: string;
|
|
991
|
+
};
|
|
992
|
+
path: {
|
|
993
|
+
cartId: string;
|
|
994
|
+
};
|
|
995
|
+
};
|
|
996
|
+
requestBody?: {
|
|
997
|
+
content: {
|
|
998
|
+
"application/json": components["schemas"]["NewWishListRequest"];
|
|
999
|
+
"application/xml": components["schemas"]["NewWishListRequest"];
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
responses: {
|
|
1003
|
+
/** @description OK */
|
|
1004
|
+
200: {
|
|
1005
|
+
content: {
|
|
1006
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1007
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1008
|
+
};
|
|
1009
|
+
};
|
|
1010
|
+
/** @description Unauthorized */
|
|
1011
|
+
401: {
|
|
1012
|
+
content: {
|
|
1013
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1014
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
/** @description Not Found */
|
|
1018
|
+
404: {
|
|
1019
|
+
content: {
|
|
1020
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1021
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1022
|
+
};
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
};
|
|
1027
|
+
"/api/v2/CartService/Carts/{cartId}/WishLists/Contains/{itemId}": {
|
|
1028
|
+
get: {
|
|
1029
|
+
parameters: {
|
|
1030
|
+
query?: {
|
|
1031
|
+
"api-version"?: string;
|
|
1032
|
+
};
|
|
1033
|
+
header?: {
|
|
1034
|
+
"x-api-version"?: string;
|
|
1035
|
+
};
|
|
1036
|
+
path: {
|
|
1037
|
+
cartId: string;
|
|
1038
|
+
itemId: string;
|
|
1039
|
+
};
|
|
1040
|
+
};
|
|
1041
|
+
responses: {
|
|
1042
|
+
/** @description OK */
|
|
1043
|
+
200: {
|
|
1044
|
+
content: {
|
|
1045
|
+
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
1046
|
+
"application/xml": components["schemas"]["BooleanEnvelope"];
|
|
1047
|
+
};
|
|
1048
|
+
};
|
|
1049
|
+
/** @description Unauthorized */
|
|
1050
|
+
401: {
|
|
1051
|
+
content: {
|
|
1052
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1053
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1056
|
+
/** @description Not Found */
|
|
1057
|
+
404: {
|
|
1058
|
+
content: {
|
|
1059
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1060
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1061
|
+
};
|
|
1062
|
+
};
|
|
1063
|
+
};
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
"/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}/Exists": {
|
|
1067
|
+
get: {
|
|
1068
|
+
parameters: {
|
|
1069
|
+
query?: {
|
|
1070
|
+
"api-version"?: string;
|
|
1071
|
+
};
|
|
1072
|
+
header?: {
|
|
1073
|
+
"x-api-version"?: string;
|
|
1074
|
+
};
|
|
1075
|
+
path: {
|
|
1076
|
+
cartId: string;
|
|
1077
|
+
wishListId: string;
|
|
1078
|
+
};
|
|
1079
|
+
};
|
|
1080
|
+
responses: {
|
|
1081
|
+
/** @description OK */
|
|
1082
|
+
200: {
|
|
1083
|
+
content: {
|
|
1084
|
+
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
1085
|
+
"application/xml": components["schemas"]["BooleanEnvelope"];
|
|
1086
|
+
};
|
|
1087
|
+
};
|
|
1088
|
+
/** @description Unauthorized */
|
|
1089
|
+
401: {
|
|
1090
|
+
content: {
|
|
1091
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1092
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1093
|
+
};
|
|
1094
|
+
};
|
|
1095
|
+
/** @description Not Found */
|
|
1096
|
+
404: {
|
|
1097
|
+
content: {
|
|
1098
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1099
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1100
|
+
};
|
|
1101
|
+
};
|
|
1102
|
+
};
|
|
1103
|
+
};
|
|
1104
|
+
head: {
|
|
1105
|
+
parameters: {
|
|
1106
|
+
query?: {
|
|
1107
|
+
"api-version"?: string;
|
|
1108
|
+
};
|
|
1109
|
+
header?: {
|
|
1110
|
+
"x-api-version"?: string;
|
|
1111
|
+
};
|
|
1112
|
+
path: {
|
|
1113
|
+
cartId: string;
|
|
1114
|
+
wishListId: string;
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
responses: {
|
|
1118
|
+
/** @description OK */
|
|
1119
|
+
200: {
|
|
1120
|
+
content: {
|
|
1121
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1122
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1125
|
+
};
|
|
1126
|
+
};
|
|
1127
|
+
};
|
|
1128
|
+
"/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}": {
|
|
1129
|
+
get: {
|
|
1130
|
+
parameters: {
|
|
1131
|
+
query?: {
|
|
1132
|
+
"api-version"?: string;
|
|
1133
|
+
};
|
|
1134
|
+
header?: {
|
|
1135
|
+
"x-api-version"?: string;
|
|
1136
|
+
};
|
|
1137
|
+
path: {
|
|
1138
|
+
cartId: string;
|
|
1139
|
+
wishListId: string;
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
responses: {
|
|
1143
|
+
/** @description OK */
|
|
1144
|
+
200: {
|
|
1145
|
+
content: {
|
|
1146
|
+
"application/json": components["schemas"]["WishListDtoEnvelope"];
|
|
1147
|
+
"application/xml": components["schemas"]["WishListDtoEnvelope"];
|
|
1148
|
+
};
|
|
1149
|
+
};
|
|
1150
|
+
/** @description Unauthorized */
|
|
1151
|
+
401: {
|
|
1152
|
+
content: {
|
|
1153
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1154
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1155
|
+
};
|
|
1156
|
+
};
|
|
1157
|
+
/** @description Not Found */
|
|
1158
|
+
404: {
|
|
1159
|
+
content: {
|
|
1160
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1161
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1165
|
+
};
|
|
1166
|
+
put: {
|
|
1167
|
+
parameters: {
|
|
1168
|
+
query?: {
|
|
1169
|
+
"api-version"?: string;
|
|
1170
|
+
};
|
|
1171
|
+
header?: {
|
|
1172
|
+
"x-api-version"?: string;
|
|
1173
|
+
};
|
|
1174
|
+
path: {
|
|
1175
|
+
cartId: string;
|
|
1176
|
+
wishListId: string;
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
requestBody?: {
|
|
1180
|
+
content: {
|
|
1181
|
+
"application/json": components["schemas"]["WishListUpdateDto"];
|
|
1182
|
+
"application/xml": components["schemas"]["WishListUpdateDto"];
|
|
1183
|
+
};
|
|
1184
|
+
};
|
|
1185
|
+
responses: {
|
|
1186
|
+
/** @description OK */
|
|
1187
|
+
200: {
|
|
1188
|
+
content: {
|
|
1189
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1190
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1191
|
+
};
|
|
1192
|
+
};
|
|
1193
|
+
/** @description Unauthorized */
|
|
1194
|
+
401: {
|
|
1195
|
+
content: {
|
|
1196
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1197
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1198
|
+
};
|
|
1199
|
+
};
|
|
1200
|
+
/** @description Not Found */
|
|
1201
|
+
404: {
|
|
1202
|
+
content: {
|
|
1203
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1204
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1205
|
+
};
|
|
1206
|
+
};
|
|
1207
|
+
};
|
|
1208
|
+
};
|
|
1209
|
+
delete: {
|
|
1210
|
+
parameters: {
|
|
1211
|
+
query?: {
|
|
1212
|
+
"api-version"?: string;
|
|
1213
|
+
};
|
|
1214
|
+
header?: {
|
|
1215
|
+
"x-api-version"?: string;
|
|
1216
|
+
};
|
|
1217
|
+
path: {
|
|
1218
|
+
cartId: string;
|
|
1219
|
+
wishListId: string;
|
|
1220
|
+
};
|
|
1221
|
+
};
|
|
1222
|
+
responses: {
|
|
1223
|
+
/** @description OK */
|
|
1224
|
+
200: {
|
|
1225
|
+
content: {
|
|
1226
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1227
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1228
|
+
};
|
|
1229
|
+
};
|
|
1230
|
+
/** @description Unauthorized */
|
|
1231
|
+
401: {
|
|
1232
|
+
content: {
|
|
1233
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1234
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
/** @description Not Found */
|
|
1238
|
+
404: {
|
|
1239
|
+
content: {
|
|
1240
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1241
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1242
|
+
};
|
|
1243
|
+
};
|
|
1244
|
+
};
|
|
1245
|
+
};
|
|
1246
|
+
};
|
|
1247
|
+
"/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}/Records": {
|
|
1248
|
+
get: {
|
|
1249
|
+
parameters: {
|
|
1250
|
+
query?: {
|
|
1251
|
+
"api-version"?: string;
|
|
1252
|
+
};
|
|
1253
|
+
header?: {
|
|
1254
|
+
"x-api-version"?: string;
|
|
1255
|
+
};
|
|
1256
|
+
path: {
|
|
1257
|
+
cartId: string;
|
|
1258
|
+
wishListId: string;
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
responses: {
|
|
1262
|
+
/** @description OK */
|
|
1263
|
+
200: {
|
|
1264
|
+
content: {
|
|
1265
|
+
"application/json": components["schemas"]["WishListItemRecordDto"][];
|
|
1266
|
+
"application/xml": components["schemas"]["WishListItemRecordDto"][];
|
|
1267
|
+
};
|
|
1268
|
+
};
|
|
1269
|
+
/** @description Unauthorized */
|
|
1270
|
+
401: {
|
|
1271
|
+
content: {
|
|
1272
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1273
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
/** @description Not Found */
|
|
1277
|
+
404: {
|
|
1278
|
+
content: {
|
|
1279
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1280
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
};
|
|
1284
|
+
};
|
|
1285
|
+
post: {
|
|
1286
|
+
parameters: {
|
|
1287
|
+
query?: {
|
|
1288
|
+
"api-version"?: string;
|
|
1289
|
+
};
|
|
1290
|
+
header?: {
|
|
1291
|
+
"x-api-version"?: string;
|
|
1292
|
+
};
|
|
1293
|
+
path: {
|
|
1294
|
+
cartId: string;
|
|
1295
|
+
wishListId: string;
|
|
1296
|
+
};
|
|
1297
|
+
};
|
|
1298
|
+
requestBody?: {
|
|
1299
|
+
content: {
|
|
1300
|
+
"application/json": components["schemas"]["ProductToWishListRequest"];
|
|
1301
|
+
"application/xml": components["schemas"]["ProductToWishListRequest"];
|
|
1302
|
+
};
|
|
1303
|
+
};
|
|
1304
|
+
responses: {
|
|
1305
|
+
/** @description OK */
|
|
1306
|
+
200: {
|
|
1307
|
+
content: {
|
|
1308
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1309
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
/** @description Unauthorized */
|
|
1313
|
+
401: {
|
|
1314
|
+
content: {
|
|
1315
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1316
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1317
|
+
};
|
|
1318
|
+
};
|
|
1319
|
+
/** @description Not Found */
|
|
1320
|
+
404: {
|
|
1321
|
+
content: {
|
|
1322
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1323
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1324
|
+
};
|
|
1325
|
+
};
|
|
1326
|
+
};
|
|
1327
|
+
};
|
|
1328
|
+
};
|
|
1329
|
+
"/api/v2/CartService/Carts/{cartId}/WishLists/{wishListId}/Records/{recordId}": {
|
|
1330
|
+
get: {
|
|
1331
|
+
parameters: {
|
|
1332
|
+
query?: {
|
|
1333
|
+
"api-version"?: string;
|
|
1334
|
+
};
|
|
1335
|
+
header?: {
|
|
1336
|
+
"x-api-version"?: string;
|
|
1337
|
+
};
|
|
1338
|
+
path: {
|
|
1339
|
+
cartId: string;
|
|
1340
|
+
wishListId: string;
|
|
1341
|
+
recordId: string;
|
|
1342
|
+
};
|
|
1343
|
+
};
|
|
1344
|
+
responses: {
|
|
1345
|
+
/** @description OK */
|
|
1346
|
+
200: {
|
|
1347
|
+
content: {
|
|
1348
|
+
"application/json": components["schemas"]["WishListItemRecordDto"][];
|
|
1349
|
+
"application/xml": components["schemas"]["WishListItemRecordDto"][];
|
|
1350
|
+
};
|
|
1351
|
+
};
|
|
1352
|
+
};
|
|
1353
|
+
};
|
|
1354
|
+
delete: {
|
|
1355
|
+
parameters: {
|
|
1356
|
+
query?: {
|
|
1357
|
+
"api-version"?: string;
|
|
1358
|
+
};
|
|
1359
|
+
header?: {
|
|
1360
|
+
"x-api-version"?: string;
|
|
1361
|
+
};
|
|
1362
|
+
path: {
|
|
1363
|
+
cartId: string;
|
|
1364
|
+
wishListId: string;
|
|
1365
|
+
recordId: string;
|
|
1366
|
+
};
|
|
1367
|
+
};
|
|
1368
|
+
responses: {
|
|
1369
|
+
/** @description OK */
|
|
1370
|
+
200: {
|
|
1371
|
+
content: {
|
|
1372
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1373
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1374
|
+
};
|
|
1375
|
+
};
|
|
1376
|
+
/** @description Unauthorized */
|
|
1377
|
+
401: {
|
|
1378
|
+
content: {
|
|
1379
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1380
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1383
|
+
/** @description Not Found */
|
|
1384
|
+
404: {
|
|
1385
|
+
content: {
|
|
1386
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1387
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1388
|
+
};
|
|
1389
|
+
};
|
|
1390
|
+
};
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1393
|
+
"/api/v2/CartService/Carts/{cartId}/Compare": {
|
|
1394
|
+
get: {
|
|
1395
|
+
parameters: {
|
|
1396
|
+
query?: {
|
|
1397
|
+
"api-version"?: string;
|
|
1398
|
+
};
|
|
1399
|
+
header?: {
|
|
1400
|
+
"x-api-version"?: string;
|
|
1401
|
+
};
|
|
1402
|
+
path: {
|
|
1403
|
+
cartId: string;
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
responses: {
|
|
1407
|
+
/** @description OK */
|
|
1408
|
+
200: {
|
|
1409
|
+
content: {
|
|
1410
|
+
"application/json": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
|
|
1411
|
+
"application/xml": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
|
|
1412
|
+
};
|
|
1413
|
+
};
|
|
1414
|
+
/** @description Unauthorized */
|
|
1415
|
+
401: {
|
|
1416
|
+
content: {
|
|
1417
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1418
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1419
|
+
};
|
|
1420
|
+
};
|
|
1421
|
+
/** @description Not Found */
|
|
1422
|
+
404: {
|
|
1423
|
+
content: {
|
|
1424
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1425
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1426
|
+
};
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
};
|
|
1430
|
+
};
|
|
1431
|
+
"/api/v2/CartService/Carts/{cartId}/Compare/{itemId}": {
|
|
1432
|
+
get: {
|
|
1433
|
+
parameters: {
|
|
1434
|
+
query?: {
|
|
1435
|
+
"api-version"?: string;
|
|
1436
|
+
};
|
|
1437
|
+
header?: {
|
|
1438
|
+
"x-api-version"?: string;
|
|
1439
|
+
};
|
|
1440
|
+
path: {
|
|
1441
|
+
cartId: string;
|
|
1442
|
+
itemId: string;
|
|
1443
|
+
};
|
|
1444
|
+
};
|
|
1445
|
+
responses: {
|
|
1446
|
+
/** @description OK */
|
|
1447
|
+
200: {
|
|
1448
|
+
content: {
|
|
1449
|
+
"application/json": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
|
|
1450
|
+
"application/xml": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
/** @description Unauthorized */
|
|
1454
|
+
401: {
|
|
1455
|
+
content: {
|
|
1456
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1457
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1458
|
+
};
|
|
1459
|
+
};
|
|
1460
|
+
/** @description Not Found */
|
|
1461
|
+
404: {
|
|
1462
|
+
content: {
|
|
1463
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1464
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1465
|
+
};
|
|
1466
|
+
};
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
post: {
|
|
1470
|
+
parameters: {
|
|
1471
|
+
query?: {
|
|
1472
|
+
"api-version"?: string;
|
|
1473
|
+
};
|
|
1474
|
+
header?: {
|
|
1475
|
+
"x-api-version"?: string;
|
|
1476
|
+
};
|
|
1477
|
+
path: {
|
|
1478
|
+
cartId: string;
|
|
1479
|
+
itemId: string;
|
|
1480
|
+
};
|
|
1481
|
+
};
|
|
1482
|
+
responses: {
|
|
1483
|
+
/** @description OK */
|
|
1484
|
+
200: {
|
|
1485
|
+
content: {
|
|
1486
|
+
"application/json": components["schemas"]["ItemCartRecordDto"];
|
|
1487
|
+
"application/xml": components["schemas"]["ItemCartRecordDto"];
|
|
1488
|
+
};
|
|
1489
|
+
};
|
|
1490
|
+
/** @description Unauthorized */
|
|
1491
|
+
401: {
|
|
1492
|
+
content: {
|
|
1493
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1494
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1495
|
+
};
|
|
1496
|
+
};
|
|
1497
|
+
/** @description Not Found */
|
|
1498
|
+
404: {
|
|
1499
|
+
content: {
|
|
1500
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1501
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1502
|
+
};
|
|
1503
|
+
};
|
|
1504
|
+
};
|
|
1505
|
+
};
|
|
1506
|
+
delete: {
|
|
1507
|
+
parameters: {
|
|
1508
|
+
query?: {
|
|
1509
|
+
"api-version"?: string;
|
|
1510
|
+
};
|
|
1511
|
+
header?: {
|
|
1512
|
+
"x-api-version"?: string;
|
|
1513
|
+
};
|
|
1514
|
+
path: {
|
|
1515
|
+
cartId: string;
|
|
1516
|
+
itemId: string;
|
|
1517
|
+
};
|
|
1518
|
+
};
|
|
1519
|
+
responses: {
|
|
1520
|
+
/** @description OK */
|
|
1521
|
+
200: {
|
|
1522
|
+
content: {
|
|
1523
|
+
"application/json": components["schemas"]["ItemToCompareCartRecordDto"];
|
|
1524
|
+
"application/xml": components["schemas"]["ItemToCompareCartRecordDto"];
|
|
1525
|
+
};
|
|
1526
|
+
};
|
|
1527
|
+
/** @description Unauthorized */
|
|
1528
|
+
401: {
|
|
1529
|
+
content: {
|
|
1530
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1531
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1532
|
+
};
|
|
1533
|
+
};
|
|
1534
|
+
/** @description Not Found */
|
|
1535
|
+
404: {
|
|
1536
|
+
content: {
|
|
1537
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1538
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1539
|
+
};
|
|
1540
|
+
};
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
};
|
|
1544
|
+
"/api/v2/CartService/Carts/{cartId}/Compare/Contains/{itemId}": {
|
|
1545
|
+
get: {
|
|
1546
|
+
parameters: {
|
|
1547
|
+
query?: {
|
|
1548
|
+
"api-version"?: string;
|
|
1549
|
+
};
|
|
1550
|
+
header?: {
|
|
1551
|
+
"x-api-version"?: string;
|
|
1552
|
+
};
|
|
1553
|
+
path: {
|
|
1554
|
+
cartId: string;
|
|
1555
|
+
itemId: string;
|
|
1556
|
+
};
|
|
1557
|
+
};
|
|
1558
|
+
responses: {
|
|
1559
|
+
/** @description OK */
|
|
1560
|
+
200: {
|
|
1561
|
+
content: {
|
|
1562
|
+
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
1563
|
+
"application/xml": components["schemas"]["BooleanEnvelope"];
|
|
1564
|
+
};
|
|
1565
|
+
};
|
|
1566
|
+
/** @description Unauthorized */
|
|
1567
|
+
401: {
|
|
1568
|
+
content: {
|
|
1569
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1570
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1571
|
+
};
|
|
1572
|
+
};
|
|
1573
|
+
/** @description Not Found */
|
|
1574
|
+
404: {
|
|
1575
|
+
content: {
|
|
1576
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1577
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1578
|
+
};
|
|
246
1579
|
};
|
|
247
1580
|
};
|
|
248
1581
|
};
|
|
@@ -253,12 +1586,15 @@ export interface paths {
|
|
|
253
1586
|
query?: {
|
|
254
1587
|
"api-version"?: string;
|
|
255
1588
|
};
|
|
1589
|
+
header?: {
|
|
1590
|
+
"x-api-version"?: string;
|
|
1591
|
+
};
|
|
256
1592
|
path: {
|
|
257
1593
|
cartId: string;
|
|
258
1594
|
};
|
|
259
1595
|
};
|
|
260
1596
|
responses: {
|
|
261
|
-
/** @description
|
|
1597
|
+
/** @description OK */
|
|
262
1598
|
200: {
|
|
263
1599
|
content: {
|
|
264
1600
|
"application/json": components["schemas"]["ItemToCompareCartRecordDtoListEnvelope"];
|
|
@@ -288,12 +1624,15 @@ export interface paths {
|
|
|
288
1624
|
query?: {
|
|
289
1625
|
"api-version"?: string;
|
|
290
1626
|
};
|
|
1627
|
+
header?: {
|
|
1628
|
+
"x-api-version"?: string;
|
|
1629
|
+
};
|
|
291
1630
|
path: {
|
|
292
1631
|
recordId: string;
|
|
293
1632
|
};
|
|
294
1633
|
};
|
|
295
1634
|
responses: {
|
|
296
|
-
/** @description
|
|
1635
|
+
/** @description OK */
|
|
297
1636
|
200: {
|
|
298
1637
|
content: {
|
|
299
1638
|
"application/json": components["schemas"]["ItemToCompareCartRecordDtoEnvelope"];
|
|
@@ -316,6 +1655,9 @@ export interface paths {
|
|
|
316
1655
|
query?: {
|
|
317
1656
|
"api-version"?: string;
|
|
318
1657
|
};
|
|
1658
|
+
header?: {
|
|
1659
|
+
"x-api-version"?: string;
|
|
1660
|
+
};
|
|
319
1661
|
};
|
|
320
1662
|
requestBody?: {
|
|
321
1663
|
content: {
|
|
@@ -324,7 +1666,7 @@ export interface paths {
|
|
|
324
1666
|
};
|
|
325
1667
|
};
|
|
326
1668
|
responses: {
|
|
327
|
-
/** @description
|
|
1669
|
+
/** @description OK */
|
|
328
1670
|
200: {
|
|
329
1671
|
content: {
|
|
330
1672
|
"application/json": components["schemas"]["ItemCartRecordDto"];
|
|
@@ -347,12 +1689,15 @@ export interface paths {
|
|
|
347
1689
|
query?: {
|
|
348
1690
|
"api-version"?: string;
|
|
349
1691
|
};
|
|
1692
|
+
header?: {
|
|
1693
|
+
"x-api-version"?: string;
|
|
1694
|
+
};
|
|
350
1695
|
path: {
|
|
351
1696
|
recordId: string;
|
|
352
1697
|
};
|
|
353
1698
|
};
|
|
354
1699
|
responses: {
|
|
355
|
-
/** @description
|
|
1700
|
+
/** @description OK */
|
|
356
1701
|
200: {
|
|
357
1702
|
content: {
|
|
358
1703
|
"application/json": components["schemas"]["ItemToCompareCartRecordDto"];
|
|
@@ -378,9 +1723,12 @@ export interface paths {
|
|
|
378
1723
|
quantity?: number;
|
|
379
1724
|
"api-version"?: string;
|
|
380
1725
|
};
|
|
1726
|
+
header?: {
|
|
1727
|
+
"x-api-version"?: string;
|
|
1728
|
+
};
|
|
381
1729
|
};
|
|
382
1730
|
responses: {
|
|
383
|
-
/** @description
|
|
1731
|
+
/** @description OK */
|
|
384
1732
|
200: {
|
|
385
1733
|
content: {
|
|
386
1734
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -410,12 +1758,15 @@ export interface paths {
|
|
|
410
1758
|
query?: {
|
|
411
1759
|
"api-version"?: string;
|
|
412
1760
|
};
|
|
1761
|
+
header?: {
|
|
1762
|
+
"x-api-version"?: string;
|
|
1763
|
+
};
|
|
413
1764
|
path: {
|
|
414
1765
|
cartId: string;
|
|
415
1766
|
};
|
|
416
1767
|
};
|
|
417
1768
|
responses: {
|
|
418
|
-
/** @description
|
|
1769
|
+
/** @description OK */
|
|
419
1770
|
200: {
|
|
420
1771
|
content: {
|
|
421
1772
|
"application/json": components["schemas"]["ItemCartRecordDtoListEnvelope"];
|
|
@@ -445,6 +1796,9 @@ export interface paths {
|
|
|
445
1796
|
query?: {
|
|
446
1797
|
"api-version"?: string;
|
|
447
1798
|
};
|
|
1799
|
+
header?: {
|
|
1800
|
+
"x-api-version"?: string;
|
|
1801
|
+
};
|
|
448
1802
|
};
|
|
449
1803
|
requestBody?: {
|
|
450
1804
|
content: {
|
|
@@ -453,7 +1807,7 @@ export interface paths {
|
|
|
453
1807
|
};
|
|
454
1808
|
};
|
|
455
1809
|
responses: {
|
|
456
|
-
/** @description
|
|
1810
|
+
/** @description OK */
|
|
457
1811
|
200: {
|
|
458
1812
|
content: {
|
|
459
1813
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -483,9 +1837,12 @@ export interface paths {
|
|
|
483
1837
|
productId?: string;
|
|
484
1838
|
"api-version"?: string;
|
|
485
1839
|
};
|
|
1840
|
+
header?: {
|
|
1841
|
+
"x-api-version"?: string;
|
|
1842
|
+
};
|
|
486
1843
|
};
|
|
487
1844
|
responses: {
|
|
488
|
-
/** @description
|
|
1845
|
+
/** @description OK */
|
|
489
1846
|
200: {
|
|
490
1847
|
content: {
|
|
491
1848
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -517,9 +1874,12 @@ export interface paths {
|
|
|
517
1874
|
cartID: string;
|
|
518
1875
|
"api-version"?: string;
|
|
519
1876
|
};
|
|
1877
|
+
header?: {
|
|
1878
|
+
"x-api-version"?: string;
|
|
1879
|
+
};
|
|
520
1880
|
};
|
|
521
1881
|
responses: {
|
|
522
|
-
/** @description
|
|
1882
|
+
/** @description OK */
|
|
523
1883
|
200: {
|
|
524
1884
|
content: {
|
|
525
1885
|
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
@@ -550,9 +1910,12 @@ export interface paths {
|
|
|
550
1910
|
cartID: string;
|
|
551
1911
|
"api-version"?: string;
|
|
552
1912
|
};
|
|
1913
|
+
header?: {
|
|
1914
|
+
"x-api-version"?: string;
|
|
1915
|
+
};
|
|
553
1916
|
};
|
|
554
1917
|
responses: {
|
|
555
|
-
/** @description
|
|
1918
|
+
/** @description OK */
|
|
556
1919
|
200: {
|
|
557
1920
|
content: {
|
|
558
1921
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -582,12 +1945,15 @@ export interface paths {
|
|
|
582
1945
|
query?: {
|
|
583
1946
|
"api-version"?: string;
|
|
584
1947
|
};
|
|
1948
|
+
header?: {
|
|
1949
|
+
"x-api-version"?: string;
|
|
1950
|
+
};
|
|
585
1951
|
path: {
|
|
586
1952
|
recordId: string;
|
|
587
1953
|
};
|
|
588
1954
|
};
|
|
589
1955
|
responses: {
|
|
590
|
-
/** @description
|
|
1956
|
+
/** @description OK */
|
|
591
1957
|
200: {
|
|
592
1958
|
content: {
|
|
593
1959
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -617,6 +1983,9 @@ export interface paths {
|
|
|
617
1983
|
query?: {
|
|
618
1984
|
"api-version"?: string;
|
|
619
1985
|
};
|
|
1986
|
+
header?: {
|
|
1987
|
+
"x-api-version"?: string;
|
|
1988
|
+
};
|
|
620
1989
|
path: {
|
|
621
1990
|
recordId: string;
|
|
622
1991
|
};
|
|
@@ -628,7 +1997,7 @@ export interface paths {
|
|
|
628
1997
|
};
|
|
629
1998
|
};
|
|
630
1999
|
responses: {
|
|
631
|
-
/** @description
|
|
2000
|
+
/** @description OK */
|
|
632
2001
|
200: {
|
|
633
2002
|
content: {
|
|
634
2003
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -656,12 +2025,93 @@ export interface paths {
|
|
|
656
2025
|
query?: {
|
|
657
2026
|
"api-version"?: string;
|
|
658
2027
|
};
|
|
2028
|
+
header?: {
|
|
2029
|
+
"x-api-version"?: string;
|
|
2030
|
+
};
|
|
2031
|
+
path: {
|
|
2032
|
+
recordId: string;
|
|
2033
|
+
};
|
|
2034
|
+
};
|
|
2035
|
+
responses: {
|
|
2036
|
+
/** @description OK */
|
|
2037
|
+
200: {
|
|
2038
|
+
content: {
|
|
2039
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2040
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2041
|
+
};
|
|
2042
|
+
};
|
|
2043
|
+
/** @description Unauthorized */
|
|
2044
|
+
401: {
|
|
2045
|
+
content: {
|
|
2046
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2047
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2048
|
+
};
|
|
2049
|
+
};
|
|
2050
|
+
/** @description Not Found */
|
|
2051
|
+
404: {
|
|
2052
|
+
content: {
|
|
2053
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2054
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2055
|
+
};
|
|
2056
|
+
};
|
|
2057
|
+
};
|
|
2058
|
+
};
|
|
2059
|
+
};
|
|
2060
|
+
"/api/v2/CartService/Records/{recordId}/Increase": {
|
|
2061
|
+
put: {
|
|
2062
|
+
parameters: {
|
|
2063
|
+
query?: {
|
|
2064
|
+
quantity?: number;
|
|
2065
|
+
"api-version"?: string;
|
|
2066
|
+
};
|
|
2067
|
+
header?: {
|
|
2068
|
+
"x-api-version"?: string;
|
|
2069
|
+
};
|
|
2070
|
+
path: {
|
|
2071
|
+
recordId: string;
|
|
2072
|
+
};
|
|
2073
|
+
};
|
|
2074
|
+
responses: {
|
|
2075
|
+
/** @description OK */
|
|
2076
|
+
200: {
|
|
2077
|
+
content: {
|
|
2078
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2079
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2080
|
+
};
|
|
2081
|
+
};
|
|
2082
|
+
/** @description Unauthorized */
|
|
2083
|
+
401: {
|
|
2084
|
+
content: {
|
|
2085
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2086
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2087
|
+
};
|
|
2088
|
+
};
|
|
2089
|
+
/** @description Not Found */
|
|
2090
|
+
404: {
|
|
2091
|
+
content: {
|
|
2092
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2093
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2094
|
+
};
|
|
2095
|
+
};
|
|
2096
|
+
};
|
|
2097
|
+
};
|
|
2098
|
+
};
|
|
2099
|
+
"/api/v2/CartService/Records/{recordId}/Decrease": {
|
|
2100
|
+
put: {
|
|
2101
|
+
parameters: {
|
|
2102
|
+
query?: {
|
|
2103
|
+
quantity?: number;
|
|
2104
|
+
"api-version"?: string;
|
|
2105
|
+
};
|
|
2106
|
+
header?: {
|
|
2107
|
+
"x-api-version"?: string;
|
|
2108
|
+
};
|
|
659
2109
|
path: {
|
|
660
2110
|
recordId: string;
|
|
661
2111
|
};
|
|
662
2112
|
};
|
|
663
2113
|
responses: {
|
|
664
|
-
/** @description
|
|
2114
|
+
/** @description OK */
|
|
665
2115
|
200: {
|
|
666
2116
|
content: {
|
|
667
2117
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -685,12 +2135,80 @@ export interface paths {
|
|
|
685
2135
|
};
|
|
686
2136
|
};
|
|
687
2137
|
};
|
|
2138
|
+
"/api/v2/CartService/WishLists/Contains": {
|
|
2139
|
+
get: {
|
|
2140
|
+
parameters: {
|
|
2141
|
+
query?: {
|
|
2142
|
+
cartId?: string;
|
|
2143
|
+
productId?: string;
|
|
2144
|
+
"api-version"?: string;
|
|
2145
|
+
};
|
|
2146
|
+
header?: {
|
|
2147
|
+
"x-api-version"?: string;
|
|
2148
|
+
};
|
|
2149
|
+
};
|
|
2150
|
+
responses: {
|
|
2151
|
+
/** @description OK */
|
|
2152
|
+
200: {
|
|
2153
|
+
content: {
|
|
2154
|
+
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
2155
|
+
"application/xml": components["schemas"]["BooleanEnvelope"];
|
|
2156
|
+
};
|
|
2157
|
+
};
|
|
2158
|
+
};
|
|
2159
|
+
};
|
|
2160
|
+
};
|
|
2161
|
+
"/api/v2/CartService/WishLists/Exists": {
|
|
2162
|
+
get: {
|
|
2163
|
+
parameters: {
|
|
2164
|
+
query?: {
|
|
2165
|
+
wishListId?: string;
|
|
2166
|
+
"api-version"?: string;
|
|
2167
|
+
};
|
|
2168
|
+
header?: {
|
|
2169
|
+
"x-api-version"?: string;
|
|
2170
|
+
};
|
|
2171
|
+
};
|
|
2172
|
+
responses: {
|
|
2173
|
+
/** @description OK */
|
|
2174
|
+
200: {
|
|
2175
|
+
content: {
|
|
2176
|
+
"application/json": components["schemas"]["BooleanEnvelope"];
|
|
2177
|
+
"application/xml": components["schemas"]["BooleanEnvelope"];
|
|
2178
|
+
};
|
|
2179
|
+
};
|
|
2180
|
+
};
|
|
2181
|
+
};
|
|
2182
|
+
head: {
|
|
2183
|
+
parameters: {
|
|
2184
|
+
query?: {
|
|
2185
|
+
wishListId?: string;
|
|
2186
|
+
"api-version"?: string;
|
|
2187
|
+
};
|
|
2188
|
+
header?: {
|
|
2189
|
+
"x-api-version"?: string;
|
|
2190
|
+
};
|
|
2191
|
+
};
|
|
2192
|
+
responses: {
|
|
2193
|
+
/** @description OK */
|
|
2194
|
+
200: {
|
|
2195
|
+
content: {
|
|
2196
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2197
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2198
|
+
};
|
|
2199
|
+
};
|
|
2200
|
+
};
|
|
2201
|
+
};
|
|
2202
|
+
};
|
|
688
2203
|
"/api/v2/CartService/WishLists": {
|
|
689
2204
|
post: {
|
|
690
2205
|
parameters: {
|
|
691
2206
|
query?: {
|
|
692
2207
|
"api-version"?: string;
|
|
693
2208
|
};
|
|
2209
|
+
header?: {
|
|
2210
|
+
"x-api-version"?: string;
|
|
2211
|
+
};
|
|
694
2212
|
};
|
|
695
2213
|
requestBody?: {
|
|
696
2214
|
content: {
|
|
@@ -699,7 +2217,7 @@ export interface paths {
|
|
|
699
2217
|
};
|
|
700
2218
|
};
|
|
701
2219
|
responses: {
|
|
702
|
-
/** @description
|
|
2220
|
+
/** @description OK */
|
|
703
2221
|
200: {
|
|
704
2222
|
content: {
|
|
705
2223
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -715,6 +2233,9 @@ export interface paths {
|
|
|
715
2233
|
query?: {
|
|
716
2234
|
"api-version"?: string;
|
|
717
2235
|
};
|
|
2236
|
+
header?: {
|
|
2237
|
+
"x-api-version"?: string;
|
|
2238
|
+
};
|
|
718
2239
|
path: {
|
|
719
2240
|
wishListId: string;
|
|
720
2241
|
};
|
|
@@ -726,7 +2247,7 @@ export interface paths {
|
|
|
726
2247
|
};
|
|
727
2248
|
};
|
|
728
2249
|
responses: {
|
|
729
|
-
/** @description
|
|
2250
|
+
/** @description OK */
|
|
730
2251
|
200: {
|
|
731
2252
|
content: {
|
|
732
2253
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -740,12 +2261,15 @@ export interface paths {
|
|
|
740
2261
|
query?: {
|
|
741
2262
|
"api-version"?: string;
|
|
742
2263
|
};
|
|
2264
|
+
header?: {
|
|
2265
|
+
"x-api-version"?: string;
|
|
2266
|
+
};
|
|
743
2267
|
path: {
|
|
744
|
-
|
|
2268
|
+
wishListId: string;
|
|
745
2269
|
};
|
|
746
2270
|
};
|
|
747
2271
|
responses: {
|
|
748
|
-
/** @description
|
|
2272
|
+
/** @description OK */
|
|
749
2273
|
200: {
|
|
750
2274
|
content: {
|
|
751
2275
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -761,12 +2285,15 @@ export interface paths {
|
|
|
761
2285
|
query?: {
|
|
762
2286
|
"api-version"?: string;
|
|
763
2287
|
};
|
|
2288
|
+
header?: {
|
|
2289
|
+
"x-api-version"?: string;
|
|
2290
|
+
};
|
|
764
2291
|
path: {
|
|
765
2292
|
cartId: string;
|
|
766
2293
|
};
|
|
767
2294
|
};
|
|
768
2295
|
responses: {
|
|
769
|
-
/** @description
|
|
2296
|
+
/** @description OK */
|
|
770
2297
|
200: {
|
|
771
2298
|
content: {
|
|
772
2299
|
"application/json": components["schemas"]["WishListDto"][];
|
|
@@ -782,12 +2309,15 @@ export interface paths {
|
|
|
782
2309
|
query?: {
|
|
783
2310
|
"api-version"?: string;
|
|
784
2311
|
};
|
|
2312
|
+
header?: {
|
|
2313
|
+
"x-api-version"?: string;
|
|
2314
|
+
};
|
|
785
2315
|
path: {
|
|
786
2316
|
wishListId: string;
|
|
787
2317
|
};
|
|
788
2318
|
};
|
|
789
2319
|
responses: {
|
|
790
|
-
/** @description
|
|
2320
|
+
/** @description OK */
|
|
791
2321
|
200: {
|
|
792
2322
|
content: {
|
|
793
2323
|
"application/json": components["schemas"]["WishListItemRecordDto"][];
|
|
@@ -803,12 +2333,15 @@ export interface paths {
|
|
|
803
2333
|
query?: {
|
|
804
2334
|
"api-version"?: string;
|
|
805
2335
|
};
|
|
2336
|
+
header?: {
|
|
2337
|
+
"x-api-version"?: string;
|
|
2338
|
+
};
|
|
806
2339
|
path: {
|
|
807
2340
|
wishListId: string;
|
|
808
2341
|
};
|
|
809
2342
|
};
|
|
810
2343
|
responses: {
|
|
811
|
-
/** @description
|
|
2344
|
+
/** @description OK */
|
|
812
2345
|
200: {
|
|
813
2346
|
content: {
|
|
814
2347
|
"application/json": components["schemas"]["WishListDto"];
|
|
@@ -824,6 +2357,9 @@ export interface paths {
|
|
|
824
2357
|
query?: {
|
|
825
2358
|
"api-version"?: string;
|
|
826
2359
|
};
|
|
2360
|
+
header?: {
|
|
2361
|
+
"x-api-version"?: string;
|
|
2362
|
+
};
|
|
827
2363
|
};
|
|
828
2364
|
requestBody?: {
|
|
829
2365
|
content: {
|
|
@@ -832,7 +2368,7 @@ export interface paths {
|
|
|
832
2368
|
};
|
|
833
2369
|
};
|
|
834
2370
|
responses: {
|
|
835
|
-
/** @description
|
|
2371
|
+
/** @description OK */
|
|
836
2372
|
200: {
|
|
837
2373
|
content: {
|
|
838
2374
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -848,12 +2384,15 @@ export interface paths {
|
|
|
848
2384
|
query?: {
|
|
849
2385
|
"api-version"?: string;
|
|
850
2386
|
};
|
|
2387
|
+
header?: {
|
|
2388
|
+
"x-api-version"?: string;
|
|
2389
|
+
};
|
|
851
2390
|
path: {
|
|
852
2391
|
recordId: string;
|
|
853
2392
|
};
|
|
854
2393
|
};
|
|
855
2394
|
responses: {
|
|
856
|
-
/** @description
|
|
2395
|
+
/** @description OK */
|
|
857
2396
|
200: {
|
|
858
2397
|
content: never;
|
|
859
2398
|
};
|
|
@@ -872,12 +2411,12 @@ export interface components {
|
|
|
872
2411
|
productID?: string | null;
|
|
873
2412
|
};
|
|
874
2413
|
BooleanEnvelope: {
|
|
875
|
-
errorMessage?: string | null;
|
|
876
2414
|
isSuccess?: boolean;
|
|
2415
|
+
errorMessage?: string | null;
|
|
2416
|
+
correlationId?: string | null;
|
|
877
2417
|
/** Format: date-time */
|
|
878
2418
|
timestamp?: string;
|
|
879
2419
|
activityId?: string | null;
|
|
880
|
-
correlationId?: string | null;
|
|
881
2420
|
result?: boolean;
|
|
882
2421
|
};
|
|
883
2422
|
CartDto: {
|
|
@@ -900,43 +2439,80 @@ export interface components {
|
|
|
900
2439
|
itemToCompareRecordsCount?: number | null;
|
|
901
2440
|
};
|
|
902
2441
|
CartDtoEnvelope: {
|
|
903
|
-
errorMessage?: string | null;
|
|
904
2442
|
isSuccess?: boolean;
|
|
2443
|
+
errorMessage?: string | null;
|
|
2444
|
+
correlationId?: string | null;
|
|
905
2445
|
/** Format: date-time */
|
|
906
2446
|
timestamp?: string;
|
|
907
2447
|
activityId?: string | null;
|
|
908
|
-
correlationId?: string | null;
|
|
909
2448
|
result?: components["schemas"]["CartDto"];
|
|
910
2449
|
};
|
|
911
2450
|
CartUpdateRequest: {
|
|
912
|
-
|
|
913
|
-
|
|
2451
|
+
currencyId?: string | null;
|
|
2452
|
+
countryId?: string | null;
|
|
2453
|
+
};
|
|
2454
|
+
CountryDto: {
|
|
2455
|
+
id?: string | null;
|
|
2456
|
+
/** Format: date-time */
|
|
2457
|
+
timestamp?: string | null;
|
|
2458
|
+
iso3?: string | null;
|
|
2459
|
+
iso2?: string | null;
|
|
2460
|
+
name?: string | null;
|
|
2461
|
+
nativeName?: string | null;
|
|
2462
|
+
flagUrl?: string | null;
|
|
2463
|
+
};
|
|
2464
|
+
CountryDtoEnvelope: {
|
|
2465
|
+
isSuccess?: boolean;
|
|
2466
|
+
errorMessage?: string | null;
|
|
2467
|
+
correlationId?: string | null;
|
|
2468
|
+
/** Format: date-time */
|
|
2469
|
+
timestamp?: string;
|
|
2470
|
+
activityId?: string | null;
|
|
2471
|
+
result?: components["schemas"]["CountryDto"];
|
|
914
2472
|
};
|
|
915
2473
|
CountrySwitchRequest: {
|
|
916
2474
|
cartID?: string | null;
|
|
917
2475
|
countryID?: string | null;
|
|
918
2476
|
};
|
|
2477
|
+
CurrencyDto: {
|
|
2478
|
+
id?: string | null;
|
|
2479
|
+
code?: string | null;
|
|
2480
|
+
name?: string | null;
|
|
2481
|
+
symbol?: string | null;
|
|
2482
|
+
country?: components["schemas"]["CountryDto"];
|
|
2483
|
+
};
|
|
2484
|
+
CurrencyDtoEnvelope: {
|
|
2485
|
+
isSuccess?: boolean;
|
|
2486
|
+
errorMessage?: string | null;
|
|
2487
|
+
correlationId?: string | null;
|
|
2488
|
+
/** Format: date-time */
|
|
2489
|
+
timestamp?: string;
|
|
2490
|
+
activityId?: string | null;
|
|
2491
|
+
result?: components["schemas"]["CurrencyDto"];
|
|
2492
|
+
};
|
|
919
2493
|
CurrencySwitchRequest: {
|
|
920
2494
|
cartID?: string | null;
|
|
921
2495
|
currencyID?: string | null;
|
|
922
2496
|
};
|
|
923
2497
|
EmptyEnvelope: {
|
|
924
|
-
errorMessage?: string | null;
|
|
925
2498
|
isSuccess?: boolean;
|
|
2499
|
+
errorMessage?: string | null;
|
|
2500
|
+
correlationId?: string | null;
|
|
926
2501
|
/** Format: date-time */
|
|
927
2502
|
timestamp?: string;
|
|
928
2503
|
activityId?: string | null;
|
|
929
2504
|
};
|
|
930
2505
|
ErrorEnvelope: {
|
|
931
|
-
errorMessage?: string | null;
|
|
932
2506
|
isSuccess?: boolean;
|
|
2507
|
+
errorMessage?: string | null;
|
|
2508
|
+
correlationId?: string | null;
|
|
933
2509
|
/** Format: date-time */
|
|
934
2510
|
timestamp?: string;
|
|
935
2511
|
activityId?: string | null;
|
|
936
|
-
correlationId?: string | null;
|
|
937
2512
|
};
|
|
938
2513
|
ItemCartRecordCreateDto: {
|
|
939
|
-
|
|
2514
|
+
/** Format: uuid */
|
|
2515
|
+
id?: string;
|
|
940
2516
|
/** Format: date-time */
|
|
941
2517
|
timestamp?: string;
|
|
942
2518
|
cartId?: string | null;
|
|
@@ -946,15 +2522,20 @@ export interface components {
|
|
|
946
2522
|
};
|
|
947
2523
|
ItemCartRecordDto: {
|
|
948
2524
|
id?: string | null;
|
|
2525
|
+
/** Format: date-time */
|
|
2526
|
+
timestamp?: string | null;
|
|
949
2527
|
closed?: boolean;
|
|
950
2528
|
itemId?: string | null;
|
|
951
|
-
|
|
2529
|
+
itemTitle?: string | null;
|
|
2530
|
+
itemShortDescription?: string | null;
|
|
2531
|
+
itemPrimaryImageUrl?: string | null;
|
|
2532
|
+
shippingPolicyId?: string | null;
|
|
2533
|
+
tenantId?: string | null;
|
|
2534
|
+
enrollmentId?: string | null;
|
|
952
2535
|
currencyId?: string | null;
|
|
953
2536
|
description?: string | null;
|
|
954
2537
|
/** Format: double */
|
|
955
2538
|
quantity?: number;
|
|
956
|
-
/** Format: date-time */
|
|
957
|
-
timestamp?: string;
|
|
958
2539
|
free?: boolean;
|
|
959
2540
|
freeReason?: string | null;
|
|
960
2541
|
freeReasonCode?: string | null;
|
|
@@ -1063,34 +2644,28 @@ export interface components {
|
|
|
1063
2644
|
businessProfileRecordId?: string | null;
|
|
1064
2645
|
parentBillingItemRecordId?: string | null;
|
|
1065
2646
|
cartId?: string | null;
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
itemTitle?: string | null;
|
|
1069
|
-
itemPrimaryImageUrl?: string | null;
|
|
1070
|
-
shippingPolicyId?: string | null;
|
|
2647
|
+
itemID?: string | null;
|
|
2648
|
+
shippingAddressID?: string | null;
|
|
1071
2649
|
};
|
|
1072
2650
|
ItemCartRecordDtoEnvelope: {
|
|
1073
|
-
errorMessage?: string | null;
|
|
1074
2651
|
isSuccess?: boolean;
|
|
2652
|
+
errorMessage?: string | null;
|
|
2653
|
+
correlationId?: string | null;
|
|
1075
2654
|
/** Format: date-time */
|
|
1076
2655
|
timestamp?: string;
|
|
1077
2656
|
activityId?: string | null;
|
|
1078
|
-
correlationId?: string | null;
|
|
1079
2657
|
result?: components["schemas"]["ItemCartRecordDto"];
|
|
1080
2658
|
};
|
|
1081
2659
|
ItemCartRecordDtoListEnvelope: {
|
|
1082
|
-
errorMessage?: string | null;
|
|
1083
2660
|
isSuccess?: boolean;
|
|
2661
|
+
errorMessage?: string | null;
|
|
2662
|
+
correlationId?: string | null;
|
|
1084
2663
|
/** Format: date-time */
|
|
1085
2664
|
timestamp?: string;
|
|
1086
2665
|
activityId?: string | null;
|
|
1087
|
-
correlationId?: string | null;
|
|
1088
2666
|
result?: components["schemas"]["ItemCartRecordDto"][] | null;
|
|
1089
2667
|
};
|
|
1090
2668
|
ItemCartRecordUpdateDto: {
|
|
1091
|
-
id?: string | null;
|
|
1092
|
-
/** Format: date-time */
|
|
1093
|
-
timestamp?: string | null;
|
|
1094
2669
|
/** Format: double */
|
|
1095
2670
|
quantity?: number;
|
|
1096
2671
|
};
|
|
@@ -1099,24 +2674,39 @@ export interface components {
|
|
|
1099
2674
|
/** Format: date-time */
|
|
1100
2675
|
timestamp?: string | null;
|
|
1101
2676
|
cartId?: string | null;
|
|
1102
|
-
|
|
2677
|
+
itemId?: string | null;
|
|
2678
|
+
itemTitle?: string | null;
|
|
2679
|
+
itemShortDescription?: string | null;
|
|
2680
|
+
itemPrimaryImageUrl?: string | null;
|
|
2681
|
+
brandId?: string | null;
|
|
2682
|
+
brandName?: string | null;
|
|
2683
|
+
categoryName?: string | null;
|
|
2684
|
+
categoryId?: string | null;
|
|
2685
|
+
googleCategoryId?: string | null;
|
|
2686
|
+
googleCategoryName?: string | null;
|
|
2687
|
+
/** Format: double */
|
|
2688
|
+
totalTaxesInUsd?: number;
|
|
2689
|
+
/** Format: double */
|
|
2690
|
+
totalPriceInUsd?: number;
|
|
2691
|
+
shippingCountryId?: string | null;
|
|
2692
|
+
tenantId?: string | null;
|
|
1103
2693
|
};
|
|
1104
2694
|
ItemToCompareCartRecordDtoEnvelope: {
|
|
1105
|
-
errorMessage?: string | null;
|
|
1106
2695
|
isSuccess?: boolean;
|
|
2696
|
+
errorMessage?: string | null;
|
|
2697
|
+
correlationId?: string | null;
|
|
1107
2698
|
/** Format: date-time */
|
|
1108
2699
|
timestamp?: string;
|
|
1109
2700
|
activityId?: string | null;
|
|
1110
|
-
correlationId?: string | null;
|
|
1111
2701
|
result?: components["schemas"]["ItemToCompareCartRecordDto"];
|
|
1112
2702
|
};
|
|
1113
2703
|
ItemToCompareCartRecordDtoListEnvelope: {
|
|
1114
|
-
errorMessage?: string | null;
|
|
1115
2704
|
isSuccess?: boolean;
|
|
2705
|
+
errorMessage?: string | null;
|
|
2706
|
+
correlationId?: string | null;
|
|
1116
2707
|
/** Format: date-time */
|
|
1117
2708
|
timestamp?: string;
|
|
1118
2709
|
activityId?: string | null;
|
|
1119
|
-
correlationId?: string | null;
|
|
1120
2710
|
result?: components["schemas"]["ItemToCompareCartRecordDto"][] | null;
|
|
1121
2711
|
};
|
|
1122
2712
|
NewWishListRequest: {
|
|
@@ -1127,8 +2717,8 @@ export interface components {
|
|
|
1127
2717
|
public?: boolean;
|
|
1128
2718
|
};
|
|
1129
2719
|
ProductToWishListRequest: {
|
|
1130
|
-
|
|
1131
|
-
|
|
2720
|
+
wishListId?: string | null;
|
|
2721
|
+
productId?: string | null;
|
|
1132
2722
|
};
|
|
1133
2723
|
WishListDto: {
|
|
1134
2724
|
/** Format: date-time */
|
|
@@ -1139,6 +2729,15 @@ export interface components {
|
|
|
1139
2729
|
cartId?: string | null;
|
|
1140
2730
|
public?: boolean;
|
|
1141
2731
|
};
|
|
2732
|
+
WishListDtoEnvelope: {
|
|
2733
|
+
isSuccess?: boolean;
|
|
2734
|
+
errorMessage?: string | null;
|
|
2735
|
+
correlationId?: string | null;
|
|
2736
|
+
/** Format: date-time */
|
|
2737
|
+
timestamp?: string;
|
|
2738
|
+
activityId?: string | null;
|
|
2739
|
+
result?: components["schemas"]["WishListDto"];
|
|
2740
|
+
};
|
|
1142
2741
|
WishListItemRecordDto: {
|
|
1143
2742
|
id?: string | null;
|
|
1144
2743
|
/** Format: date-time */
|
|
@@ -1163,4 +2762,43 @@ export type $defs = Record<string, never>;
|
|
|
1163
2762
|
|
|
1164
2763
|
export type external = Record<string, never>;
|
|
1165
2764
|
|
|
1166
|
-
export
|
|
2765
|
+
export interface operations {
|
|
2766
|
+
|
|
2767
|
+
SubmitCartAsync: {
|
|
2768
|
+
parameters: {
|
|
2769
|
+
query?: {
|
|
2770
|
+
tenantId?: string;
|
|
2771
|
+
"api-version"?: string;
|
|
2772
|
+
};
|
|
2773
|
+
header?: {
|
|
2774
|
+
"x-api-version"?: string;
|
|
2775
|
+
};
|
|
2776
|
+
path: {
|
|
2777
|
+
cartId: string;
|
|
2778
|
+
};
|
|
2779
|
+
};
|
|
2780
|
+
responses: {
|
|
2781
|
+
/** @description OK */
|
|
2782
|
+
200: {
|
|
2783
|
+
content: {
|
|
2784
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2785
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2786
|
+
};
|
|
2787
|
+
};
|
|
2788
|
+
/** @description Unauthorized */
|
|
2789
|
+
401: {
|
|
2790
|
+
content: {
|
|
2791
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2792
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2793
|
+
};
|
|
2794
|
+
};
|
|
2795
|
+
/** @description Forbidden */
|
|
2796
|
+
403: {
|
|
2797
|
+
content: {
|
|
2798
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2799
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2800
|
+
};
|
|
2801
|
+
};
|
|
2802
|
+
};
|
|
2803
|
+
};
|
|
2804
|
+
}
|