@fenixalliance/abs-api-client 1.0.0 → 1.0.2
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/app/index.ts +5 -0
- package/clients/cartService/core/ApiError.ts +24 -24
- package/clients/cartService/core/ApiRequestOptions.ts +16 -16
- package/clients/cartService/core/ApiResult.ts +10 -10
- package/clients/cartService/core/CancelablePromise.ts +130 -130
- package/clients/cartService/core/OpenAPI.ts +31 -31
- package/clients/cartService/core/request.ts +321 -321
- package/clients/cartService/index.ts +36 -52
- package/clients/cartService/models/CartDto.ts +1 -0
- package/clients/cartService/models/{RegisterRequest.ts → CartUpdateRequest.ts} +3 -3
- package/clients/cartService/models/{InfoResponse.ts → CountrySwitchRequest.ts} +3 -3
- package/clients/cartService/models/EmptyEnvelope.ts +11 -0
- package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -0
- package/clients/cartService/models/ItemCartRecordDto.ts +3 -1
- package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → cartService/models/ItemCartRecordDtoListEnvelope.ts} +3 -3
- package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +1 -1
- package/clients/cartService/models/WishListDto.ts +2 -1
- package/clients/cartService/services/CartsService.ts +53 -7
- package/clients/cartService/services/CompareService.ts +7 -6
- package/clients/cartService/services/RecordsService.ts +23 -20
- package/clients/cartService/services/WishListsService.ts +17 -17
- package/clients/catalogService/core/ApiError.ts +24 -24
- package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
- package/clients/catalogService/core/ApiResult.ts +10 -10
- package/clients/catalogService/core/CancelablePromise.ts +130 -130
- package/clients/catalogService/core/OpenAPI.ts +31 -31
- package/clients/catalogService/core/request.ts +321 -321
- package/clients/catalogService/index.ts +102 -124
- package/clients/catalogService/models/EmptyEnvelope.ts +11 -0
- package/clients/catalogService/models/ItemAttachmentCreateDto.ts +4 -8
- package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +2 -5
- package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
- package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +1 -1
- package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
- package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
- package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -3
- package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
- package/clients/catalogService/models/ItemImageDto.ts +0 -1
- package/clients/catalogService/models/{ItemImagesUpdateDto.ts → ItemImageUpdateDto.ts} +6 -9
- package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
- package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
- package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
- package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
- package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
- package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
- package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
- package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
- package/clients/catalogService/models/ItemTypeDto.ts +4 -4
- package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
- package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
- package/clients/catalogService/models/PricingRuleDto.ts +0 -1
- package/clients/catalogService/models/StockItemCreateDto.ts +100 -3
- package/clients/catalogService/models/StockItemDto.ts +133 -4
- package/clients/catalogService/models/StockItemUpdateDto.ts +99 -2
- package/clients/catalogService/services/ItemAttachmentsService.ts +24 -13
- package/clients/catalogService/services/ItemAttributesService.ts +19 -9
- package/clients/catalogService/services/ItemBrandsService.ts +19 -9
- package/clients/catalogService/services/ItemCategoriesService.ts +19 -9
- package/clients/catalogService/services/ItemImagesService.ts +23 -13
- package/clients/catalogService/services/ItemQuestionsService.ts +19 -9
- package/clients/catalogService/services/ItemReviewsService.ts +18 -8
- package/clients/catalogService/services/ItemTagsService.ts +17 -12
- package/clients/catalogService/services/ItemTypesService.ts +19 -9
- package/clients/catalogService/services/PricingRulesService.ts +19 -11
- package/clients/catalogService/services/ProductsService.ts +177 -214
- package/clients/{contactService → crmService}/core/ApiError.ts +24 -24
- package/clients/{contactService → crmService}/core/ApiRequestOptions.ts +16 -16
- package/clients/{contactService → crmService}/core/ApiResult.ts +10 -10
- package/clients/{contactService → crmService}/core/CancelablePromise.ts +130 -130
- package/clients/{contactService → crmService}/core/OpenAPI.ts +31 -31
- package/clients/{contactService → crmService}/core/request.ts +321 -321
- package/clients/crmService/index.ts +23 -0
- package/clients/crmService/models/CartDto.ts +18 -0
- package/clients/{cartService/models/WishListDtoEnvelope.ts → crmService/models/CartDtoEnvelope.ts} +3 -3
- package/clients/crmService/models/ContactDto.ts +57 -0
- package/clients/crmService/models/EmptyEnvelope.ts +11 -0
- package/clients/crmService/models/SocialProfileDto.ts +39 -0
- package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
- package/clients/crmService/models/WalletDto.ts +22 -0
- package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/crmService/services/ContactsService.ts +286 -0
- package/clients/crmService/services/SyncService.ts +101 -0
- package/clients/forexService/core/ApiError.ts +24 -24
- package/clients/forexService/core/ApiRequestOptions.ts +16 -16
- package/clients/forexService/core/ApiResult.ts +10 -10
- package/clients/forexService/core/CancelablePromise.ts +130 -130
- package/clients/forexService/core/OpenAPI.ts +31 -31
- package/clients/forexService/core/request.ts +321 -321
- package/clients/forexService/index.ts +18 -30
- package/clients/{cartService/models/Envelope.ts → forexService/models/ErrorEnvelope.ts} +1 -2
- package/clients/forexService/models/ForexRatesDto.ts +1 -1
- package/clients/forexService/models/Money.ts +1 -1
- package/clients/forexService/services/ExchangeService.ts +17 -7
- package/clients/forexService/services/RatesService.ts +11 -1
- package/clients/holderService/core/ApiError.ts +24 -24
- package/clients/holderService/core/ApiRequestOptions.ts +16 -16
- package/clients/holderService/core/ApiResult.ts +10 -10
- package/clients/holderService/core/CancelablePromise.ts +130 -130
- package/clients/holderService/core/OpenAPI.ts +31 -31
- package/clients/holderService/core/request.ts +321 -321
- package/clients/holderService/index.ts +35 -31
- package/clients/holderService/models/AddressDto.ts +31 -0
- package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/CartDto.ts +18 -0
- package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
- package/clients/holderService/models/InvoiceDto.ts +13 -0
- package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → holderService/models/InvoiceDtoListEnvelope.ts} +1 -1
- package/clients/holderService/models/NotificationDto.ts +16 -0
- package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/OrderDto.ts +27 -0
- package/clients/holderService/models/OrderDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/PaymentDto.ts +17 -0
- package/clients/holderService/models/PaymentDtoListEnvelope.ts +14 -0
- package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +4 -4
- package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
- package/clients/holderService/models/SocialProfileDto.ts +39 -0
- package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
- package/clients/{identityService/models/BusinessDto.ts → holderService/models/TenantDto.ts} +16 -15
- package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/TenantEnrollmentDto.ts +14 -0
- package/clients/holderService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/WalletDto.ts +22 -0
- package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/holderService/services/HolderService.ts +99 -28
- package/clients/identityService/core/ApiError.ts +24 -24
- package/clients/identityService/core/ApiRequestOptions.ts +16 -16
- package/clients/identityService/core/ApiResult.ts +10 -10
- package/clients/identityService/core/CancelablePromise.ts +130 -130
- package/clients/identityService/core/OpenAPI.ts +31 -31
- package/clients/identityService/core/request.ts +321 -321
- package/clients/identityService/index.ts +40 -53
- package/clients/identityService/models/AccountHolderCreateDto.ts +1 -0
- package/clients/identityService/models/ApiResponse.ts +4 -5
- package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +4 -4
- package/clients/{holderService/models/BusinessDto.ts → identityService/models/TenantDto.ts} +16 -15
- package/clients/identityService/services/CheckerService.ts +3 -2
- package/clients/identityService/services/OAuthService.ts +8 -6
- package/clients/inventoryService/core/ApiError.ts +24 -24
- package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
- package/clients/inventoryService/core/ApiResult.ts +10 -10
- package/clients/inventoryService/core/CancelablePromise.ts +130 -130
- package/clients/inventoryService/core/OpenAPI.ts +31 -31
- package/clients/inventoryService/core/request.ts +321 -321
- package/clients/inventoryService/index.ts +10 -24
- package/clients/invoicingService/core/ApiError.ts +24 -24
- package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
- package/clients/invoicingService/core/ApiResult.ts +10 -10
- package/clients/invoicingService/core/CancelablePromise.ts +130 -130
- package/clients/invoicingService/core/OpenAPI.ts +31 -31
- package/clients/invoicingService/core/request.ts +321 -321
- package/clients/invoicingService/index.ts +23 -28
- package/clients/invoicingService/models/EmptyEnvelope.ts +11 -0
- package/clients/invoicingService/models/InvoiceCreateDto.ts +11 -0
- package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
- package/clients/{cartService/models/ProductCartRecordDto.ts → invoicingService/models/InvoiceLineDto.ts} +7 -10
- package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
- package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → invoicingService/models/InvoiceLineDtoListEnvelope.ts} +3 -3
- package/clients/{tenantService/models/IntPtr.ts → invoicingService/models/InvoiceUpdateDto.ts} +1 -1
- package/clients/invoicingService/models/ItemPriceCreateDto.ts +20 -0
- package/clients/invoicingService/models/ItemPriceUpdateDto.ts +14 -0
- package/clients/invoicingService/services/InvoicesService.ts +253 -15
- package/clients/ordersService/core/ApiError.ts +25 -0
- package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
- package/clients/ordersService/core/ApiResult.ts +11 -0
- package/clients/ordersService/core/CancelablePromise.ts +131 -0
- package/clients/ordersService/core/OpenAPI.ts +32 -0
- package/clients/ordersService/core/request.ts +322 -0
- package/clients/ordersService/index.ts +23 -0
- package/clients/ordersService/models/EmptyEnvelope.ts +11 -0
- package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
- package/clients/ordersService/models/ItemPriceCreateDto.ts +20 -0
- package/clients/ordersService/models/ItemPriceUpdateDto.ts +14 -0
- package/clients/ordersService/models/OrderCreateDto.ts +16 -0
- package/clients/ordersService/models/OrderDto.ts +27 -0
- package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderLineDto.ts +95 -0
- package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderUpdateDto.ts +12 -0
- package/clients/ordersService/services/OrdersService.ts +296 -0
- package/clients/pricingService/core/ApiError.ts +24 -24
- package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
- package/clients/pricingService/core/ApiResult.ts +10 -10
- package/clients/pricingService/core/CancelablePromise.ts +130 -130
- package/clients/pricingService/core/OpenAPI.ts +31 -31
- package/clients/pricingService/core/request.ts +321 -321
- package/clients/pricingService/index.ts +27 -29
- package/clients/pricingService/models/EmptyEnvelope.ts +11 -0
- package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
- package/clients/pricingService/models/ItemPriceDto.ts +20 -0
- package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
- package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
- package/clients/pricingService/models/ItemPriceUpdateDto.ts +14 -0
- package/clients/pricingService/models/Money.ts +1 -1
- package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
- package/clients/pricingService/models/PriceListDto.ts +17 -0
- package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
- package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
- package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
- package/clients/pricingService/services/PriceListsService.ts +254 -8
- package/clients/systemService/core/ApiError.ts +25 -0
- package/clients/systemService/core/ApiRequestOptions.ts +17 -0
- package/clients/systemService/core/ApiResult.ts +11 -0
- package/clients/systemService/core/CancelablePromise.ts +131 -0
- package/clients/systemService/core/OpenAPI.ts +32 -0
- package/clients/systemService/core/request.ts +322 -0
- package/clients/systemService/index.ts +14 -0
- package/clients/systemService/models/ErrorEnvelope.ts +12 -0
- package/clients/systemService/models/StringListEnvelope.ts +13 -0
- package/clients/systemService/services/AntiforgeryService.ts +29 -0
- package/clients/systemService/services/MigrationsService.ts +44 -0
- package/clients/tenantService/core/ApiError.ts +24 -24
- package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
- package/clients/tenantService/core/ApiResult.ts +10 -10
- package/clients/tenantService/core/CancelablePromise.ts +130 -130
- package/clients/tenantService/core/OpenAPI.ts +31 -31
- package/clients/tenantService/core/request.ts +321 -321
- package/clients/tenantService/index.ts +33 -62
- package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
- package/clients/tenantService/models/CartDto.ts +18 -0
- package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/EmptyEnvelope.ts +11 -0
- package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
- package/clients/tenantService/models/PlatformUserDto.ts +73 -0
- package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/SocialProfileDto.ts +39 -0
- package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +2 -1
- package/clients/tenantService/models/{BusinessDto.ts → TenantDto.ts} +16 -15
- package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantEnrollmentDto.ts +14 -0
- package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → tenantService/models/TenantEnrollmentDtoEnvelope.ts} +3 -3
- package/clients/tenantService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/WalletDto.ts +2 -1
- package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/{Error.ts → WebPortalDto.ts} +5 -3
- package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
- package/clients/tenantService/services/TenantsService.ts +230 -105
- package/clients/walletsService/core/ApiError.ts +25 -0
- package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
- package/clients/walletsService/core/ApiResult.ts +11 -0
- package/clients/walletsService/core/CancelablePromise.ts +131 -0
- package/clients/walletsService/core/OpenAPI.ts +32 -0
- package/clients/walletsService/core/request.ts +322 -0
- package/clients/walletsService/index.ts +22 -0
- package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
- package/clients/walletsService/models/InvoiceDto.ts +13 -0
- package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/LocationDto.ts +31 -0
- package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/OrderDto.ts +27 -0
- package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/PaymentDto.ts +17 -0
- package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/WalletDto.ts +22 -0
- package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/walletsService/services/WalletsService.ts +174 -0
- package/package.json +23 -21
- package/schemas/cartService/schema.s.ts +1166 -1560
- package/schemas/catalogService/schema.s.ts +5982 -6109
- package/schemas/crmService/schema.s.ts +804 -0
- package/schemas/forexService/schema.s.ts +602 -526
- package/schemas/holderService/schema.s.ts +831 -831
- package/schemas/identityService/schema.s.ts +744 -1119
- package/schemas/inventoryService/schema.s.ts +43 -425
- package/schemas/invoicingService/schema.s.ts +590 -521
- package/schemas/ordersService/schema.s.ts +605 -0
- package/schemas/pricingService/schema.s.ts +579 -549
- package/schemas/systemService/schema.s.ts +138 -0
- package/schemas/tenantService/schema.s.ts +1116 -1606
- package/schemas/walletsService/schema.s.ts +466 -0
- package/tsconfig.json +110 -0
- package/vite.config.js +29 -0
- package/wwwroot/build/bundle.js +1 -0
- package/clients/cartService/models/AccessTokenResponse.ts +0 -11
- package/clients/cartService/models/Error.ts +0 -10
- package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/cartService/models/InfoRequest.ts +0 -10
- package/clients/cartService/models/LoginRequest.ts +0 -11
- package/clients/cartService/models/RefreshRequest.ts +0 -8
- package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
- package/clients/cartService/models/ResponseStatus.ts +0 -12
- package/clients/cartService/models/TwoFactorRequest.ts +0 -12
- package/clients/cartService/models/TwoFactorResponse.ts +0 -12
- package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +0 -14
- package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
- package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/catalogService/models/InfoRequest.ts +0 -10
- package/clients/catalogService/models/InfoResponse.ts +0 -9
- package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
- package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/LoginRequest.ts +0 -11
- package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/RefreshRequest.ts +0 -8
- package/clients/catalogService/models/RegisterRequest.ts +0 -9
- package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
- package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
- package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
- package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/contactService/index.ts +0 -28
- package/clients/contactService/models/AccessTokenResponse.ts +0 -11
- package/clients/contactService/models/ContactDto.ts +0 -44
- package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/contactService/models/InfoRequest.ts +0 -10
- package/clients/contactService/models/InfoResponse.ts +0 -9
- package/clients/contactService/models/LoginRequest.ts +0 -11
- package/clients/contactService/models/RefreshRequest.ts +0 -8
- package/clients/contactService/models/RegisterRequest.ts +0 -9
- package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
- package/clients/contactService/models/TwoFactorRequest.ts +0 -12
- package/clients/contactService/models/TwoFactorResponse.ts +0 -12
- package/clients/contactService/services/ContactsService.ts +0 -140
- package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/forexService/models/AccessTokenResponse.ts +0 -11
- package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/forexService/models/InfoRequest.ts +0 -10
- package/clients/forexService/models/InfoResponse.ts +0 -9
- package/clients/forexService/models/LoginRequest.ts +0 -11
- package/clients/forexService/models/RefreshRequest.ts +0 -8
- package/clients/forexService/models/RegisterRequest.ts +0 -9
- package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
- package/clients/forexService/models/TwoFactorRequest.ts +0 -12
- package/clients/forexService/models/TwoFactorResponse.ts +0 -12
- package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/holderService/models/AccessTokenResponse.ts +0 -11
- package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
- package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
- package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
- package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/holderService/models/InfoRequest.ts +0 -10
- package/clients/holderService/models/InfoResponse.ts +0 -9
- package/clients/holderService/models/LoginRequest.ts +0 -11
- package/clients/holderService/models/RefreshRequest.ts +0 -8
- package/clients/holderService/models/RegisterRequest.ts +0 -9
- package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
- package/clients/holderService/models/TwoFactorRequest.ts +0 -12
- package/clients/holderService/models/TwoFactorResponse.ts +0 -12
- package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/identityService/models/AccessTokenResponse.ts +0 -11
- package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/identityService/models/InfoRequest.ts +0 -10
- package/clients/identityService/models/InfoResponse.ts +0 -9
- package/clients/identityService/models/LoginRequest.ts +0 -11
- package/clients/identityService/models/RefreshRequest.ts +0 -8
- package/clients/identityService/models/RegisterRequest.ts +0 -9
- package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
- package/clients/identityService/models/TwoFactorRequest.ts +0 -12
- package/clients/identityService/models/TwoFactorResponse.ts +0 -12
- package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
- package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/inventoryService/models/InfoRequest.ts +0 -10
- package/clients/inventoryService/models/InfoResponse.ts +0 -9
- package/clients/inventoryService/models/LoginRequest.ts +0 -11
- package/clients/inventoryService/models/RefreshRequest.ts +0 -8
- package/clients/inventoryService/models/RegisterRequest.ts +0 -9
- package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
- package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
- package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
- package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
- package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/invoicingService/models/InfoRequest.ts +0 -10
- package/clients/invoicingService/models/InfoResponse.ts +0 -9
- package/clients/invoicingService/models/LoginRequest.ts +0 -11
- package/clients/invoicingService/models/RefreshRequest.ts +0 -8
- package/clients/invoicingService/models/RegisterRequest.ts +0 -9
- package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
- package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
- package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
- package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/pricingService/models/InfoRequest.ts +0 -10
- package/clients/pricingService/models/InfoResponse.ts +0 -9
- package/clients/pricingService/models/LoginRequest.ts +0 -11
- package/clients/pricingService/models/RefreshRequest.ts +0 -8
- package/clients/pricingService/models/RegisterRequest.ts +0 -9
- package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
- package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
- package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
- package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
- package/clients/tenantService/models/AggregateException.ts +0 -18
- package/clients/tenantService/models/Assembly.ts +0 -46
- package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
- package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +0 -14
- package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +0 -14
- package/clients/tenantService/models/ConstructorInfo.ts +0 -103
- package/clients/tenantService/models/CustomAttributeData.ts +0 -15
- package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
- package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
- package/clients/tenantService/models/EventInfo.ts +0 -44
- package/clients/tenantService/models/Exception.ts +0 -16
- package/clients/tenantService/models/FieldInfo.ts +0 -74
- package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/tenantService/models/ICustomAttributeProvider.ts +0 -5
- package/clients/tenantService/models/InfoRequest.ts +0 -10
- package/clients/tenantService/models/InfoResponse.ts +0 -9
- package/clients/tenantService/models/LoginRequest.ts +0 -11
- package/clients/tenantService/models/MemberInfo.ts +0 -31
- package/clients/tenantService/models/MethodBase.ts +0 -103
- package/clients/tenantService/models/MethodInfo.ts +0 -108
- package/clients/tenantService/models/Module.ts +0 -19
- package/clients/tenantService/models/ModuleHandle.ts +0 -8
- package/clients/tenantService/models/ParameterInfo.ts +0 -40
- package/clients/tenantService/models/PropertyInfo.ts +0 -49
- package/clients/tenantService/models/RefreshRequest.ts +0 -8
- package/clients/tenantService/models/RegisterRequest.ts +0 -9
- package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
- package/clients/tenantService/models/ResponseStatus.ts +0 -12
- package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
- package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
- package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
- package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
- package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
- package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
- package/clients/tenantService/models/Type.ts +0 -141
- package/clients/tenantService/models/TypeInfo.ts +0 -156
- package/clients/tenantService/models/WalletDtoTask.ts +0 -40
- package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
- package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
- package/schemas/contactService/schema.s.ts +0 -674
- /package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +0 -0
- /package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +0 -0
- /package/clients/{contactService → crmService}/models/ErrorEnvelope.ts +0 -0
|
@@ -0,0 +1,605 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export interface paths {
|
|
8
|
+
"/api/v2/OrdersService/Orders/SubmitCart": {
|
|
9
|
+
post: {
|
|
10
|
+
parameters: {
|
|
11
|
+
query: {
|
|
12
|
+
cartId: string;
|
|
13
|
+
"api-version"?: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
responses: {
|
|
17
|
+
/** @description Success */
|
|
18
|
+
200: {
|
|
19
|
+
content: {
|
|
20
|
+
"application/json": components["schemas"]["OrderDtoEnvelope"];
|
|
21
|
+
"application/xml": components["schemas"]["OrderDtoEnvelope"];
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
"/api/v2/OrdersService/Orders": {
|
|
28
|
+
get: {
|
|
29
|
+
parameters: {
|
|
30
|
+
query: {
|
|
31
|
+
tenantId: string;
|
|
32
|
+
"api-version"?: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
responses: {
|
|
36
|
+
/** @description Success */
|
|
37
|
+
200: {
|
|
38
|
+
content: {
|
|
39
|
+
"application/json": components["schemas"]["OrderDtoListEnvelope"];
|
|
40
|
+
"application/xml": components["schemas"]["OrderDtoListEnvelope"];
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
/** @description Not Found */
|
|
44
|
+
404: {
|
|
45
|
+
content: {
|
|
46
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
47
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
post: {
|
|
53
|
+
parameters: {
|
|
54
|
+
query: {
|
|
55
|
+
tenantId: string;
|
|
56
|
+
"api-version"?: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
requestBody?: {
|
|
60
|
+
content: {
|
|
61
|
+
"application/json": components["schemas"]["OrderCreateDto"];
|
|
62
|
+
"application/xml": components["schemas"]["OrderCreateDto"];
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
responses: {
|
|
66
|
+
/** @description Success */
|
|
67
|
+
200: {
|
|
68
|
+
content: {
|
|
69
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
70
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
/** @description Not Found */
|
|
74
|
+
404: {
|
|
75
|
+
content: {
|
|
76
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
77
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
"/api/v2/OrdersService/Orders/{orderId}": {
|
|
84
|
+
get: {
|
|
85
|
+
parameters: {
|
|
86
|
+
query: {
|
|
87
|
+
tenantId: string;
|
|
88
|
+
"api-version"?: string;
|
|
89
|
+
};
|
|
90
|
+
path: {
|
|
91
|
+
orderId: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
responses: {
|
|
95
|
+
/** @description Success */
|
|
96
|
+
200: {
|
|
97
|
+
content: {
|
|
98
|
+
"application/json": components["schemas"]["OrderDtoEnvelope"];
|
|
99
|
+
"application/xml": components["schemas"]["OrderDtoEnvelope"];
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
/** @description Not Found */
|
|
103
|
+
404: {
|
|
104
|
+
content: {
|
|
105
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
106
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
put: {
|
|
112
|
+
parameters: {
|
|
113
|
+
query: {
|
|
114
|
+
tenantId: string;
|
|
115
|
+
"api-version"?: string;
|
|
116
|
+
};
|
|
117
|
+
path: {
|
|
118
|
+
orderId: string;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
requestBody?: {
|
|
122
|
+
content: {
|
|
123
|
+
"application/json": components["schemas"]["OrderUpdateDto"];
|
|
124
|
+
"application/xml": components["schemas"]["OrderUpdateDto"];
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
responses: {
|
|
128
|
+
/** @description Success */
|
|
129
|
+
200: {
|
|
130
|
+
content: {
|
|
131
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
132
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
/** @description Not Found */
|
|
136
|
+
404: {
|
|
137
|
+
content: {
|
|
138
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
139
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
delete: {
|
|
145
|
+
parameters: {
|
|
146
|
+
query: {
|
|
147
|
+
tenantId: string;
|
|
148
|
+
"api-version"?: string;
|
|
149
|
+
};
|
|
150
|
+
path: {
|
|
151
|
+
orderId: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
responses: {
|
|
155
|
+
/** @description Success */
|
|
156
|
+
200: {
|
|
157
|
+
content: {
|
|
158
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
159
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
/** @description Not Found */
|
|
163
|
+
404: {
|
|
164
|
+
content: {
|
|
165
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
166
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
"/api/v2/OrdersService/Orders/{orderId}/Lines": {
|
|
173
|
+
get: {
|
|
174
|
+
parameters: {
|
|
175
|
+
query: {
|
|
176
|
+
tenantId: string;
|
|
177
|
+
itemId?: string;
|
|
178
|
+
"api-version"?: string;
|
|
179
|
+
};
|
|
180
|
+
path: {
|
|
181
|
+
orderId: string;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
responses: {
|
|
185
|
+
/** @description Success */
|
|
186
|
+
200: {
|
|
187
|
+
content: {
|
|
188
|
+
"application/json": components["schemas"]["OrderLineDtoListEnvelope"];
|
|
189
|
+
"application/xml": components["schemas"]["OrderLineDtoListEnvelope"];
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
/** @description Not Found */
|
|
193
|
+
404: {
|
|
194
|
+
content: {
|
|
195
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
196
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
post: {
|
|
202
|
+
parameters: {
|
|
203
|
+
query: {
|
|
204
|
+
tenantId: string;
|
|
205
|
+
"api-version"?: string;
|
|
206
|
+
};
|
|
207
|
+
path: {
|
|
208
|
+
orderId: string;
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
requestBody?: {
|
|
212
|
+
content: {
|
|
213
|
+
"application/json": components["schemas"]["ItemPriceCreateDto"];
|
|
214
|
+
"application/xml": components["schemas"]["ItemPriceCreateDto"];
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
responses: {
|
|
218
|
+
/** @description Success */
|
|
219
|
+
200: {
|
|
220
|
+
content: {
|
|
221
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
222
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
/** @description Not Found */
|
|
226
|
+
404: {
|
|
227
|
+
content: {
|
|
228
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
229
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
};
|
|
235
|
+
"/api/v2/OrdersService/Orders/{orderId}/Lines/{orderLineId}": {
|
|
236
|
+
get: {
|
|
237
|
+
parameters: {
|
|
238
|
+
query: {
|
|
239
|
+
tenantId: string;
|
|
240
|
+
"api-version"?: string;
|
|
241
|
+
};
|
|
242
|
+
path: {
|
|
243
|
+
orderId: string;
|
|
244
|
+
orderLineId: string;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
responses: {
|
|
248
|
+
/** @description Success */
|
|
249
|
+
200: {
|
|
250
|
+
content: {
|
|
251
|
+
"application/json": components["schemas"]["OrderLineDtoEnvelope"];
|
|
252
|
+
"application/xml": components["schemas"]["OrderLineDtoEnvelope"];
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
/** @description Not Found */
|
|
256
|
+
404: {
|
|
257
|
+
content: {
|
|
258
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
259
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
put: {
|
|
265
|
+
parameters: {
|
|
266
|
+
query: {
|
|
267
|
+
tenantId: string;
|
|
268
|
+
"api-version"?: string;
|
|
269
|
+
};
|
|
270
|
+
path: {
|
|
271
|
+
orderId: string;
|
|
272
|
+
orderLineId: string;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
requestBody?: {
|
|
276
|
+
content: {
|
|
277
|
+
"application/json": components["schemas"]["ItemPriceUpdateDto"];
|
|
278
|
+
"application/xml": components["schemas"]["ItemPriceUpdateDto"];
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
responses: {
|
|
282
|
+
/** @description Success */
|
|
283
|
+
200: {
|
|
284
|
+
content: {
|
|
285
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
286
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
/** @description Not Found */
|
|
290
|
+
404: {
|
|
291
|
+
content: {
|
|
292
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
293
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
delete: {
|
|
299
|
+
parameters: {
|
|
300
|
+
query: {
|
|
301
|
+
tenantId: string;
|
|
302
|
+
"api-version"?: string;
|
|
303
|
+
};
|
|
304
|
+
path: {
|
|
305
|
+
orderId: string;
|
|
306
|
+
orderLineId: string;
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
requestBody?: {
|
|
310
|
+
content: {
|
|
311
|
+
"application/json": components["schemas"]["ItemPriceUpdateDto"];
|
|
312
|
+
"application/xml": components["schemas"]["ItemPriceUpdateDto"];
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
responses: {
|
|
316
|
+
/** @description Success */
|
|
317
|
+
200: {
|
|
318
|
+
content: {
|
|
319
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
320
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
/** @description Not Found */
|
|
324
|
+
404: {
|
|
325
|
+
content: {
|
|
326
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
327
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export type webhooks = Record<string, never>;
|
|
336
|
+
|
|
337
|
+
export interface components {
|
|
338
|
+
schemas: {
|
|
339
|
+
EmptyEnvelope: {
|
|
340
|
+
errorMessage?: string | null;
|
|
341
|
+
isSuccess?: boolean;
|
|
342
|
+
/** Format: date-time */
|
|
343
|
+
timestamp?: string;
|
|
344
|
+
activityId?: string | null;
|
|
345
|
+
};
|
|
346
|
+
ErrorEnvelope: {
|
|
347
|
+
errorMessage?: string | null;
|
|
348
|
+
isSuccess?: boolean;
|
|
349
|
+
/** Format: date-time */
|
|
350
|
+
timestamp?: string;
|
|
351
|
+
activityId?: string | null;
|
|
352
|
+
correlationId?: string | null;
|
|
353
|
+
};
|
|
354
|
+
ItemPriceCreateDto: {
|
|
355
|
+
/** Format: uuid */
|
|
356
|
+
id?: string;
|
|
357
|
+
/** Format: date-time */
|
|
358
|
+
timestamp?: string;
|
|
359
|
+
itemId: string;
|
|
360
|
+
priceListId: string;
|
|
361
|
+
currencyId?: string | null;
|
|
362
|
+
/** Format: double */
|
|
363
|
+
price?: number;
|
|
364
|
+
/** Format: double */
|
|
365
|
+
percent?: number;
|
|
366
|
+
tenantId?: string | null;
|
|
367
|
+
enrollmentId?: string | null;
|
|
368
|
+
unitId?: string | null;
|
|
369
|
+
unitGroupId?: string | null;
|
|
370
|
+
discountListId?: string | null;
|
|
371
|
+
roundingPolicyId?: string | null;
|
|
372
|
+
};
|
|
373
|
+
ItemPriceUpdateDto: {
|
|
374
|
+
/** Format: double */
|
|
375
|
+
price?: number;
|
|
376
|
+
/** Format: double */
|
|
377
|
+
percent?: number;
|
|
378
|
+
unitId?: string | null;
|
|
379
|
+
unitGroupId?: string | null;
|
|
380
|
+
currencyId?: string | null;
|
|
381
|
+
discountListId?: string | null;
|
|
382
|
+
roundingPolicyId?: string | null;
|
|
383
|
+
};
|
|
384
|
+
OrderCreateDto: {
|
|
385
|
+
/** Format: uuid */
|
|
386
|
+
id?: string;
|
|
387
|
+
/** Format: date-time */
|
|
388
|
+
timestamp?: string;
|
|
389
|
+
cartId?: string | null;
|
|
390
|
+
tenantId?: string | null;
|
|
391
|
+
enrollmentId?: string | null;
|
|
392
|
+
currencyId?: string | null;
|
|
393
|
+
/** Format: double */
|
|
394
|
+
forexRate?: number;
|
|
395
|
+
/** Format: double */
|
|
396
|
+
totalAmountInUsd?: number;
|
|
397
|
+
/** Format: double */
|
|
398
|
+
totalTaxesInUsd?: number;
|
|
399
|
+
};
|
|
400
|
+
OrderDto: {
|
|
401
|
+
id?: string | null;
|
|
402
|
+
/** Format: date-time */
|
|
403
|
+
timestamp?: string | null;
|
|
404
|
+
firstName?: string | null;
|
|
405
|
+
lastName?: string | null;
|
|
406
|
+
billingEmail?: string | null;
|
|
407
|
+
companyName?: string | null;
|
|
408
|
+
addressLine1?: string | null;
|
|
409
|
+
addressLine2?: string | null;
|
|
410
|
+
postalCode?: string | null;
|
|
411
|
+
countryId?: string | null;
|
|
412
|
+
countryStateId?: string | null;
|
|
413
|
+
cityId?: string | null;
|
|
414
|
+
customerNotes?: string | null;
|
|
415
|
+
businessId?: string | null;
|
|
416
|
+
currencyId?: string | null;
|
|
417
|
+
orderStatus?: string | null;
|
|
418
|
+
/** Format: double */
|
|
419
|
+
forexRate?: number;
|
|
420
|
+
/** Format: int32 */
|
|
421
|
+
orderLinesCount?: number;
|
|
422
|
+
/** Format: double */
|
|
423
|
+
totalAmountInUsd?: number;
|
|
424
|
+
/** Format: double */
|
|
425
|
+
totalTaxesInUsd?: number;
|
|
426
|
+
};
|
|
427
|
+
OrderDtoEnvelope: {
|
|
428
|
+
errorMessage?: string | null;
|
|
429
|
+
isSuccess?: boolean;
|
|
430
|
+
/** Format: date-time */
|
|
431
|
+
timestamp?: string;
|
|
432
|
+
activityId?: string | null;
|
|
433
|
+
correlationId?: string | null;
|
|
434
|
+
result?: components["schemas"]["OrderDto"];
|
|
435
|
+
};
|
|
436
|
+
OrderDtoListEnvelope: {
|
|
437
|
+
errorMessage?: string | null;
|
|
438
|
+
isSuccess?: boolean;
|
|
439
|
+
/** Format: date-time */
|
|
440
|
+
timestamp?: string;
|
|
441
|
+
activityId?: string | null;
|
|
442
|
+
correlationId?: string | null;
|
|
443
|
+
result?: components["schemas"]["OrderDto"][] | null;
|
|
444
|
+
};
|
|
445
|
+
OrderLineDto: {
|
|
446
|
+
id?: string | null;
|
|
447
|
+
closed?: boolean;
|
|
448
|
+
itemId?: string | null;
|
|
449
|
+
businessId?: string | null;
|
|
450
|
+
currencyId?: string | null;
|
|
451
|
+
description?: string | null;
|
|
452
|
+
/** Format: double */
|
|
453
|
+
quantity?: number;
|
|
454
|
+
/** Format: date-time */
|
|
455
|
+
timestamp?: string;
|
|
456
|
+
free?: boolean;
|
|
457
|
+
freeReason?: string | null;
|
|
458
|
+
freeReasonCode?: string | null;
|
|
459
|
+
data?: string | null;
|
|
460
|
+
dataLabel?: string | null;
|
|
461
|
+
data1?: string | null;
|
|
462
|
+
data1Label?: string | null;
|
|
463
|
+
data2?: string | null;
|
|
464
|
+
data2Label?: string | null;
|
|
465
|
+
data3?: string | null;
|
|
466
|
+
data3Label?: string | null;
|
|
467
|
+
data4?: string | null;
|
|
468
|
+
data4Label?: string | null;
|
|
469
|
+
data5?: string | null;
|
|
470
|
+
data5Label?: string | null;
|
|
471
|
+
data6?: string | null;
|
|
472
|
+
data6Label?: string | null;
|
|
473
|
+
data7?: string | null;
|
|
474
|
+
data7Label?: string | null;
|
|
475
|
+
data8?: string | null;
|
|
476
|
+
data8Label?: string | null;
|
|
477
|
+
data9?: string | null;
|
|
478
|
+
data9Label?: string | null;
|
|
479
|
+
itemPriceId?: string | null;
|
|
480
|
+
priceListItemId?: string | null;
|
|
481
|
+
unitId?: string | null;
|
|
482
|
+
unitGroupId?: string | null;
|
|
483
|
+
/**
|
|
484
|
+
* Format: int32
|
|
485
|
+
* @enum {integer}
|
|
486
|
+
*/
|
|
487
|
+
taxCalculationMethod?: 0 | 1;
|
|
488
|
+
/**
|
|
489
|
+
* Format: int32
|
|
490
|
+
* @enum {integer}
|
|
491
|
+
*/
|
|
492
|
+
costCalculationMethod?: 0 | 1;
|
|
493
|
+
forexRatesSnapshot?: string | null;
|
|
494
|
+
/** Format: double */
|
|
495
|
+
forexRate?: number;
|
|
496
|
+
/** Format: double */
|
|
497
|
+
totalBaseAmountInUsd?: number;
|
|
498
|
+
/** Format: double */
|
|
499
|
+
totalProfitInUsd?: number;
|
|
500
|
+
/** Format: double */
|
|
501
|
+
totalDetailAmountInUsd?: number;
|
|
502
|
+
/** Format: double */
|
|
503
|
+
totalTaxBaseInUsd?: number;
|
|
504
|
+
/** Format: double */
|
|
505
|
+
totalDiscountsInUsd?: number;
|
|
506
|
+
/** Format: double */
|
|
507
|
+
totalTaxesInUsd?: number;
|
|
508
|
+
/** Format: double */
|
|
509
|
+
totalWithholdingTaxesInUsd?: number;
|
|
510
|
+
/** Format: double */
|
|
511
|
+
totalShippingCostInUsd?: number;
|
|
512
|
+
/** Format: double */
|
|
513
|
+
totalShippingTaxesInUsd?: number;
|
|
514
|
+
/** Format: double */
|
|
515
|
+
totalWarrantyCostInUsd?: number;
|
|
516
|
+
/** Format: double */
|
|
517
|
+
totalReturnCostInUsd?: number;
|
|
518
|
+
/** Format: double */
|
|
519
|
+
totalRefundCostInUsd?: number;
|
|
520
|
+
/** Format: double */
|
|
521
|
+
totalSurchargesInUsd?: number;
|
|
522
|
+
/** Format: double */
|
|
523
|
+
totalAmountInUsd?: number;
|
|
524
|
+
/** Format: double */
|
|
525
|
+
totalGlobalDiscountsInUsd?: number;
|
|
526
|
+
/** Format: double */
|
|
527
|
+
totalGlobalSurchargesInUsd?: number;
|
|
528
|
+
/** Format: double */
|
|
529
|
+
customGlobalSurchargesAmount?: number;
|
|
530
|
+
/** Format: double */
|
|
531
|
+
customGlobalDiscountsAmount?: number;
|
|
532
|
+
/** Format: double */
|
|
533
|
+
customBaseAmount?: number;
|
|
534
|
+
/** Format: double */
|
|
535
|
+
customDetailAmount?: number;
|
|
536
|
+
/** Format: double */
|
|
537
|
+
customDiscountsAmount?: number;
|
|
538
|
+
/** Format: double */
|
|
539
|
+
customTaxBase?: number;
|
|
540
|
+
/** Format: double */
|
|
541
|
+
customSurchargesAmount?: number;
|
|
542
|
+
/** Format: double */
|
|
543
|
+
customProfitAmount?: number;
|
|
544
|
+
/** Format: double */
|
|
545
|
+
customShippingCostAmount?: number;
|
|
546
|
+
/** Format: double */
|
|
547
|
+
customShippingTaxAmount?: number;
|
|
548
|
+
/** Format: double */
|
|
549
|
+
customTaxAmount?: number;
|
|
550
|
+
/** Format: double */
|
|
551
|
+
customWithholdingTaxAmount?: number;
|
|
552
|
+
/** Format: double */
|
|
553
|
+
customTotalAmount?: number;
|
|
554
|
+
returnPolicyId?: string | null;
|
|
555
|
+
refundPolicyId?: string | null;
|
|
556
|
+
warrantyPolicyId?: string | null;
|
|
557
|
+
shipmentPolicyId?: string | null;
|
|
558
|
+
shippingLocationId?: string | null;
|
|
559
|
+
locationId?: string | null;
|
|
560
|
+
quoteItemRecordId?: string | null;
|
|
561
|
+
businessProfileRecordId?: string | null;
|
|
562
|
+
parentBillingItemRecordId?: string | null;
|
|
563
|
+
orderId?: string | null;
|
|
564
|
+
};
|
|
565
|
+
OrderLineDtoEnvelope: {
|
|
566
|
+
errorMessage?: string | null;
|
|
567
|
+
isSuccess?: boolean;
|
|
568
|
+
/** Format: date-time */
|
|
569
|
+
timestamp?: string;
|
|
570
|
+
activityId?: string | null;
|
|
571
|
+
correlationId?: string | null;
|
|
572
|
+
result?: components["schemas"]["OrderLineDto"];
|
|
573
|
+
};
|
|
574
|
+
OrderLineDtoListEnvelope: {
|
|
575
|
+
errorMessage?: string | null;
|
|
576
|
+
isSuccess?: boolean;
|
|
577
|
+
/** Format: date-time */
|
|
578
|
+
timestamp?: string;
|
|
579
|
+
activityId?: string | null;
|
|
580
|
+
correlationId?: string | null;
|
|
581
|
+
result?: components["schemas"]["OrderLineDto"][] | null;
|
|
582
|
+
};
|
|
583
|
+
OrderUpdateDto: {
|
|
584
|
+
cartId?: string | null;
|
|
585
|
+
currencyId?: string | null;
|
|
586
|
+
/** Format: double */
|
|
587
|
+
forexRate?: number;
|
|
588
|
+
/** Format: double */
|
|
589
|
+
totalAmountInUsd?: number;
|
|
590
|
+
/** Format: double */
|
|
591
|
+
totalTaxesInUsd?: number;
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
responses: never;
|
|
595
|
+
parameters: never;
|
|
596
|
+
requestBodies: never;
|
|
597
|
+
headers: never;
|
|
598
|
+
pathItems: never;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
export type $defs = Record<string, never>;
|
|
602
|
+
|
|
603
|
+
export type external = Record<string, never>;
|
|
604
|
+
|
|
605
|
+
export type operations = Record<string, never>;
|