@fenixalliance/abs-api-client 1.0.1 → 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
|
@@ -1,124 +1,102 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
export { ApiError } from './core/ApiError';
|
|
6
|
-
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
7
|
-
export { OpenAPI } from './core/OpenAPI';
|
|
8
|
-
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
9
|
-
|
|
10
|
-
export type {
|
|
11
|
-
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
12
|
-
export type {
|
|
13
|
-
export type {
|
|
14
|
-
export type {
|
|
15
|
-
export type {
|
|
16
|
-
export type {
|
|
17
|
-
export type {
|
|
18
|
-
export type {
|
|
19
|
-
export type {
|
|
20
|
-
export type {
|
|
21
|
-
export type {
|
|
22
|
-
export type {
|
|
23
|
-
export type {
|
|
24
|
-
export type {
|
|
25
|
-
export type {
|
|
26
|
-
export type {
|
|
27
|
-
export type {
|
|
28
|
-
export type {
|
|
29
|
-
export type {
|
|
30
|
-
export type {
|
|
31
|
-
export type {
|
|
32
|
-
export type {
|
|
33
|
-
export type {
|
|
34
|
-
export type {
|
|
35
|
-
export type {
|
|
36
|
-
export type {
|
|
37
|
-
export type {
|
|
38
|
-
export type {
|
|
39
|
-
export type {
|
|
40
|
-
export type {
|
|
41
|
-
export type {
|
|
42
|
-
export type {
|
|
43
|
-
export type {
|
|
44
|
-
export type {
|
|
45
|
-
export type {
|
|
46
|
-
export type {
|
|
47
|
-
export type {
|
|
48
|
-
export type {
|
|
49
|
-
export type {
|
|
50
|
-
export type {
|
|
51
|
-
export type {
|
|
52
|
-
export type {
|
|
53
|
-
export type {
|
|
54
|
-
export type {
|
|
55
|
-
export type {
|
|
56
|
-
export type {
|
|
57
|
-
export type {
|
|
58
|
-
export type {
|
|
59
|
-
export type {
|
|
60
|
-
export type {
|
|
61
|
-
export type {
|
|
62
|
-
export type {
|
|
63
|
-
export type {
|
|
64
|
-
export type {
|
|
65
|
-
export type {
|
|
66
|
-
export type {
|
|
67
|
-
export type {
|
|
68
|
-
export type {
|
|
69
|
-
export type {
|
|
70
|
-
export type {
|
|
71
|
-
export type {
|
|
72
|
-
export type {
|
|
73
|
-
export type {
|
|
74
|
-
export type {
|
|
75
|
-
export type {
|
|
76
|
-
export type {
|
|
77
|
-
export type {
|
|
78
|
-
export type {
|
|
79
|
-
export type {
|
|
80
|
-
export type {
|
|
81
|
-
export type {
|
|
82
|
-
export type {
|
|
83
|
-
export type {
|
|
84
|
-
export type {
|
|
85
|
-
export type {
|
|
86
|
-
export type {
|
|
87
|
-
export type {
|
|
88
|
-
export type {
|
|
89
|
-
export type {
|
|
90
|
-
|
|
91
|
-
export
|
|
92
|
-
export
|
|
93
|
-
export
|
|
94
|
-
export
|
|
95
|
-
export
|
|
96
|
-
export
|
|
97
|
-
export
|
|
98
|
-
export
|
|
99
|
-
export
|
|
100
|
-
export
|
|
101
|
-
export
|
|
102
|
-
export
|
|
103
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
104
|
-
export type { StockItemCreateDto } from './models/StockItemCreateDto';
|
|
105
|
-
export type { StockItemDto } from './models/StockItemDto';
|
|
106
|
-
export type { StockItemDtoEnvelope } from './models/StockItemDtoEnvelope';
|
|
107
|
-
export type { StockItemDtoListEnvelope } from './models/StockItemDtoListEnvelope';
|
|
108
|
-
export type { StockItemUpdateDto } from './models/StockItemUpdateDto';
|
|
109
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
110
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
111
|
-
|
|
112
|
-
export { FenixAllianceAbsWebService } from './services/FenixAllianceAbsWebService';
|
|
113
|
-
export { ItemAttachmentsService } from './services/ItemAttachmentsService';
|
|
114
|
-
export { ItemAttributesService } from './services/ItemAttributesService';
|
|
115
|
-
export { ItemBrandsService } from './services/ItemBrandsService';
|
|
116
|
-
export { ItemCategoriesService } from './services/ItemCategoriesService';
|
|
117
|
-
export { ItemImagesService } from './services/ItemImagesService';
|
|
118
|
-
export { ItemQuestionsService } from './services/ItemQuestionsService';
|
|
119
|
-
export { ItemReviewsService } from './services/ItemReviewsService';
|
|
120
|
-
export { ItemTagsService } from './services/ItemTagsService';
|
|
121
|
-
export { ItemTypesService } from './services/ItemTypesService';
|
|
122
|
-
export { PoliciesService } from './services/PoliciesService';
|
|
123
|
-
export { PricingRulesService } from './services/PricingRulesService';
|
|
124
|
-
export { ProductsService } from './services/ProductsService';
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export { ApiError } from './core/ApiError';
|
|
6
|
+
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
7
|
+
export { OpenAPI } from './core/OpenAPI';
|
|
8
|
+
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
9
|
+
|
|
10
|
+
export type { EmptyEnvelope } from './models/EmptyEnvelope';
|
|
11
|
+
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
12
|
+
export type { ItemAttachmentCreateDto } from './models/ItemAttachmentCreateDto';
|
|
13
|
+
export type { ItemAttachmentDto } from './models/ItemAttachmentDto';
|
|
14
|
+
export type { ItemAttachmentDtoEnvelope } from './models/ItemAttachmentDtoEnvelope';
|
|
15
|
+
export type { ItemAttachmentDtoListEnvelope } from './models/ItemAttachmentDtoListEnvelope';
|
|
16
|
+
export type { ItemAttachmentUpdateDto } from './models/ItemAttachmentUpdateDto';
|
|
17
|
+
export type { ItemAttributeCreateDto } from './models/ItemAttributeCreateDto';
|
|
18
|
+
export type { ItemAttributeDto } from './models/ItemAttributeDto';
|
|
19
|
+
export type { ItemAttributeDtoEnvelope } from './models/ItemAttributeDtoEnvelope';
|
|
20
|
+
export type { ItemAttributeDtoListEnvelope } from './models/ItemAttributeDtoListEnvelope';
|
|
21
|
+
export type { ItemAttributeOptionDto } from './models/ItemAttributeOptionDto';
|
|
22
|
+
export type { ItemAttributeOptionDtoEnvelope } from './models/ItemAttributeOptionDtoEnvelope';
|
|
23
|
+
export type { ItemAttributeOptionDtoListEnvelope } from './models/ItemAttributeOptionDtoListEnvelope';
|
|
24
|
+
export type { ItemAttributeUpdateDto } from './models/ItemAttributeUpdateDto';
|
|
25
|
+
export type { ItemBrandCreateDto } from './models/ItemBrandCreateDto';
|
|
26
|
+
export type { ItemBrandDto } from './models/ItemBrandDto';
|
|
27
|
+
export type { ItemBrandDtoEnvelope } from './models/ItemBrandDtoEnvelope';
|
|
28
|
+
export type { ItemBrandDtoListEnvelope } from './models/ItemBrandDtoListEnvelope';
|
|
29
|
+
export type { ItemBrandUpdateDto } from './models/ItemBrandUpdateDto';
|
|
30
|
+
export type { ItemCategoryCreateDto } from './models/ItemCategoryCreateDto';
|
|
31
|
+
export type { ItemCategoryDto } from './models/ItemCategoryDto';
|
|
32
|
+
export type { ItemCategoryDtoEnvelope } from './models/ItemCategoryDtoEnvelope';
|
|
33
|
+
export type { ItemCategoryDtoListEnvelope } from './models/ItemCategoryDtoListEnvelope';
|
|
34
|
+
export type { ItemCategoryUpdateDto } from './models/ItemCategoryUpdateDto';
|
|
35
|
+
export type { ItemGoogleCategoryDto } from './models/ItemGoogleCategoryDto';
|
|
36
|
+
export type { ItemGoogleCategoryDtoEnvelope } from './models/ItemGoogleCategoryDtoEnvelope';
|
|
37
|
+
export type { ItemGoogleCategoryDtoListEnvelope } from './models/ItemGoogleCategoryDtoListEnvelope';
|
|
38
|
+
export type { ItemImageCreateDto } from './models/ItemImageCreateDto';
|
|
39
|
+
export type { ItemImageDto } from './models/ItemImageDto';
|
|
40
|
+
export type { ItemImageDtoEnvelope } from './models/ItemImageDtoEnvelope';
|
|
41
|
+
export type { ItemImageDtoListEnvelope } from './models/ItemImageDtoListEnvelope';
|
|
42
|
+
export type { ItemImageUpdateDto } from './models/ItemImageUpdateDto';
|
|
43
|
+
export type { ItemQuestionCreateDto } from './models/ItemQuestionCreateDto';
|
|
44
|
+
export type { ItemQuestionDto } from './models/ItemQuestionDto';
|
|
45
|
+
export type { ItemQuestionDtoEnvelope } from './models/ItemQuestionDtoEnvelope';
|
|
46
|
+
export type { ItemQuestionDtoListEnvelope } from './models/ItemQuestionDtoListEnvelope';
|
|
47
|
+
export type { ItemQuestionRecordCreateDto } from './models/ItemQuestionRecordCreateDto';
|
|
48
|
+
export type { ItemQuestionUpdateDto } from './models/ItemQuestionUpdateDto';
|
|
49
|
+
export type { ItemRefundPolicyDto } from './models/ItemRefundPolicyDto';
|
|
50
|
+
export type { ItemRefundPolicyDtoEnvelope } from './models/ItemRefundPolicyDtoEnvelope';
|
|
51
|
+
export type { ItemRefundPolicyDtoListEnvelope } from './models/ItemRefundPolicyDtoListEnvelope';
|
|
52
|
+
export type { ItemReturnPolicyDto } from './models/ItemReturnPolicyDto';
|
|
53
|
+
export type { ItemReturnPolicyDtoEnvelope } from './models/ItemReturnPolicyDtoEnvelope';
|
|
54
|
+
export type { ItemReturnPolicyDtoListEnvelope } from './models/ItemReturnPolicyDtoListEnvelope';
|
|
55
|
+
export type { ItemReviewCreateDto } from './models/ItemReviewCreateDto';
|
|
56
|
+
export type { ItemReviewDto } from './models/ItemReviewDto';
|
|
57
|
+
export type { ItemReviewDtoEnvelope } from './models/ItemReviewDtoEnvelope';
|
|
58
|
+
export type { ItemReviewDtoListEnvelope } from './models/ItemReviewDtoListEnvelope';
|
|
59
|
+
export type { ItemReviewRecordCreateDto } from './models/ItemReviewRecordCreateDto';
|
|
60
|
+
export type { ItemReviewUpdateDto } from './models/ItemReviewUpdateDto';
|
|
61
|
+
export type { ItemShippingPolicyDto } from './models/ItemShippingPolicyDto';
|
|
62
|
+
export type { ItemShippingPolicyDtoEnvelope } from './models/ItemShippingPolicyDtoEnvelope';
|
|
63
|
+
export type { ItemShippingPolicyDtoListEnvelope } from './models/ItemShippingPolicyDtoListEnvelope';
|
|
64
|
+
export type { ItemTagCreateDto } from './models/ItemTagCreateDto';
|
|
65
|
+
export type { ItemTagDto } from './models/ItemTagDto';
|
|
66
|
+
export type { ItemTagDtoEnvelope } from './models/ItemTagDtoEnvelope';
|
|
67
|
+
export type { ItemTagDtoListEnvelope } from './models/ItemTagDtoListEnvelope';
|
|
68
|
+
export type { ItemTagUpdateDto } from './models/ItemTagUpdateDto';
|
|
69
|
+
export type { ItemTaxPolicyDto } from './models/ItemTaxPolicyDto';
|
|
70
|
+
export type { ItemTaxPolicyDtoEnvelope } from './models/ItemTaxPolicyDtoEnvelope';
|
|
71
|
+
export type { ItemTaxPolicyDtoListEnvelope } from './models/ItemTaxPolicyDtoListEnvelope';
|
|
72
|
+
export type { ItemTypeCreateDto } from './models/ItemTypeCreateDto';
|
|
73
|
+
export type { ItemTypeDto } from './models/ItemTypeDto';
|
|
74
|
+
export type { ItemTypeDtoEnvelope } from './models/ItemTypeDtoEnvelope';
|
|
75
|
+
export type { ItemTypeDtoListEnvelope } from './models/ItemTypeDtoListEnvelope';
|
|
76
|
+
export type { ItemTypeUpdateDto } from './models/ItemTypeUpdateDto';
|
|
77
|
+
export type { ItemWarrantyPolicyDto } from './models/ItemWarrantyPolicyDto';
|
|
78
|
+
export type { ItemWarrantyPolicyDtoEnvelope } from './models/ItemWarrantyPolicyDtoEnvelope';
|
|
79
|
+
export type { ItemWarrantyPolicyDtoListEnvelope } from './models/ItemWarrantyPolicyDtoListEnvelope';
|
|
80
|
+
export type { PricingRuleCreateDto } from './models/PricingRuleCreateDto';
|
|
81
|
+
export type { PricingRuleDto } from './models/PricingRuleDto';
|
|
82
|
+
export type { PricingRuleDtoEnvelope } from './models/PricingRuleDtoEnvelope';
|
|
83
|
+
export type { PricingRuleDtoListEnvelope } from './models/PricingRuleDtoListEnvelope';
|
|
84
|
+
export type { PricingRuleUpdateDto } from './models/PricingRuleUpdateDto';
|
|
85
|
+
export type { StockItemCreateDto } from './models/StockItemCreateDto';
|
|
86
|
+
export type { StockItemDto } from './models/StockItemDto';
|
|
87
|
+
export type { StockItemDtoEnvelope } from './models/StockItemDtoEnvelope';
|
|
88
|
+
export type { StockItemDtoListEnvelope } from './models/StockItemDtoListEnvelope';
|
|
89
|
+
export type { StockItemUpdateDto } from './models/StockItemUpdateDto';
|
|
90
|
+
|
|
91
|
+
export { ItemAttachmentsService } from './services/ItemAttachmentsService';
|
|
92
|
+
export { ItemAttributesService } from './services/ItemAttributesService';
|
|
93
|
+
export { ItemBrandsService } from './services/ItemBrandsService';
|
|
94
|
+
export { ItemCategoriesService } from './services/ItemCategoriesService';
|
|
95
|
+
export { ItemImagesService } from './services/ItemImagesService';
|
|
96
|
+
export { ItemQuestionsService } from './services/ItemQuestionsService';
|
|
97
|
+
export { ItemReviewsService } from './services/ItemReviewsService';
|
|
98
|
+
export { ItemTagsService } from './services/ItemTagsService';
|
|
99
|
+
export { ItemTypesService } from './services/ItemTypesService';
|
|
100
|
+
export { PoliciesService } from './services/PoliciesService';
|
|
101
|
+
export { PricingRulesService } from './services/PricingRulesService';
|
|
102
|
+
export { ProductsService } from './services/ProductsService';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type EmptyEnvelope = {
|
|
6
|
+
errorMessage?: string | null;
|
|
7
|
+
readonly isSuccess?: boolean;
|
|
8
|
+
readonly timestamp?: string;
|
|
9
|
+
readonly activityId?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -4,20 +4,16 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
export type ItemAttachmentCreateDto = {
|
|
6
6
|
readonly id?: string;
|
|
7
|
-
|
|
8
|
-
businessProfileRecordID?: string | null;
|
|
9
|
-
type?: string | null;
|
|
10
|
-
mD5Hash?: string | null;
|
|
11
|
-
fileUploadURL?: string | null;
|
|
7
|
+
readonly timestamp?: string;
|
|
12
8
|
isFolder?: boolean;
|
|
13
|
-
fileName
|
|
9
|
+
fileName: string;
|
|
14
10
|
title?: string | null;
|
|
15
11
|
abstract?: string | null;
|
|
16
12
|
author?: string | null;
|
|
17
13
|
keyWords?: string | null;
|
|
18
14
|
notes?: string | null;
|
|
19
|
-
contentType?: string | null;
|
|
20
|
-
fileLength?: number;
|
|
21
15
|
validResponse?: boolean;
|
|
16
|
+
parentFileUploadID?: string | null;
|
|
17
|
+
file?: Blob | null;
|
|
22
18
|
};
|
|
23
19
|
|
|
@@ -3,17 +3,14 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
export type ItemAttachmentUpdateDto = {
|
|
6
|
-
type?: string | null;
|
|
7
|
-
mD5Hash?: string | null;
|
|
8
6
|
metadata?: string | null;
|
|
9
|
-
|
|
10
|
-
fileName?: string | null;
|
|
7
|
+
fileName: string;
|
|
11
8
|
title?: string | null;
|
|
12
9
|
abstract?: string | null;
|
|
13
10
|
keyWords?: string | null;
|
|
14
11
|
notes?: string | null;
|
|
15
|
-
contentType?: string | null;
|
|
16
12
|
validResponse?: boolean;
|
|
17
13
|
parentFileUploadID?: string | null;
|
|
14
|
+
file?: Blob | null;
|
|
18
15
|
};
|
|
19
16
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { ItemAttributeDto } from './ItemAttributeDto';
|
|
6
|
-
export type
|
|
6
|
+
export type ItemAttributeDtoListEnvelope = {
|
|
7
7
|
errorMessage?: string | null;
|
|
8
8
|
readonly isSuccess?: boolean;
|
|
9
9
|
readonly timestamp?: string;
|
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
export type ItemBrandCreateDto = {
|
|
6
6
|
readonly id?: string;
|
|
7
|
+
readonly timestamp?: string;
|
|
7
8
|
code?: string | null;
|
|
8
|
-
name
|
|
9
|
+
name: string;
|
|
9
10
|
description?: string | null;
|
|
10
11
|
websiteURL?: string | null;
|
|
11
|
-
|
|
12
|
+
imageFile?: Blob | null;
|
|
12
13
|
featured?: boolean;
|
|
13
14
|
trending?: boolean;
|
|
14
|
-
businessID
|
|
15
|
+
businessID: string;
|
|
15
16
|
};
|
|
16
17
|
|
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
export type ItemCategoryCreateDto = {
|
|
6
6
|
readonly id?: string;
|
|
7
|
-
|
|
7
|
+
readonly timestamp?: string;
|
|
8
|
+
title: string;
|
|
8
9
|
description?: string | null;
|
|
9
10
|
imageURL?: string | null;
|
|
10
|
-
businessID
|
|
11
|
+
businessID: string;
|
|
11
12
|
businessProfileRecordID?: string | null;
|
|
12
13
|
parentItemCategoryID?: string | null;
|
|
13
14
|
};
|
|
@@ -5,8 +5,17 @@
|
|
|
5
5
|
export type ItemGoogleCategoryDto = {
|
|
6
6
|
id?: string | null;
|
|
7
7
|
timestamp?: string | null;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
path: string;
|
|
9
|
+
icon?: string | null;
|
|
10
|
+
name: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
featured?: boolean;
|
|
13
|
+
displayOnMenu?: boolean;
|
|
14
|
+
menuImage?: string | null;
|
|
15
|
+
bannerCode?: string | null;
|
|
16
|
+
bannerImage?: string | null;
|
|
17
|
+
primaryImage?: string | null;
|
|
18
|
+
parentCategoryId?: string | null;
|
|
19
|
+
startingAtAmountInUSD?: number;
|
|
11
20
|
};
|
|
12
21
|
|
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
export type
|
|
5
|
+
export type ItemImageCreateDto = {
|
|
6
6
|
readonly id?: string;
|
|
7
|
-
|
|
7
|
+
readonly timestamp?: string;
|
|
8
|
+
businessID: string;
|
|
8
9
|
businessProfileRecordID?: string | null;
|
|
9
10
|
itemID?: string | null;
|
|
10
11
|
isItemMozaicBG?: boolean;
|
|
11
|
-
type?: string | null;
|
|
12
12
|
mD5Hash?: string | null;
|
|
13
13
|
metadata?: string | null;
|
|
14
14
|
fileUploadURL?: string | null;
|
|
15
|
-
fileName
|
|
15
|
+
fileName: string;
|
|
16
16
|
title?: string | null;
|
|
17
17
|
abstract?: string | null;
|
|
18
18
|
author?: string | null;
|
|
@@ -2,22 +2,19 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
export type
|
|
6
|
-
|
|
7
|
-
timestamp?: string | null;
|
|
8
|
-
itemID?: string | null;
|
|
5
|
+
export type ItemImageUpdateDto = {
|
|
6
|
+
itemID: string;
|
|
9
7
|
isItemMozaicBG?: boolean;
|
|
10
|
-
|
|
11
|
-
mD5Hash?: string | null;
|
|
8
|
+
mD5Hash: string;
|
|
12
9
|
metadata?: string | null;
|
|
13
|
-
fileUploadURL
|
|
14
|
-
fileName
|
|
10
|
+
fileUploadURL: string;
|
|
11
|
+
fileName: string;
|
|
15
12
|
title?: string | null;
|
|
16
13
|
abstract?: string | null;
|
|
17
14
|
author?: string | null;
|
|
18
15
|
keyWords?: string | null;
|
|
19
16
|
notes?: string | null;
|
|
20
|
-
contentType
|
|
17
|
+
contentType: string;
|
|
21
18
|
fileLength?: number;
|
|
22
19
|
validResponse?: boolean;
|
|
23
20
|
parentFileUploadID?: string | null;
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
export type ItemQuestionCreateDto = {
|
|
6
6
|
readonly id?: string;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
readonly timestamp?: string;
|
|
8
|
+
title: string;
|
|
9
|
+
needsRevision: boolean;
|
|
10
|
+
question: string;
|
|
10
11
|
socialProfileID?: string | null;
|
|
11
|
-
businessID
|
|
12
|
-
itemID
|
|
12
|
+
businessID: string;
|
|
13
|
+
itemID: string;
|
|
13
14
|
};
|
|
14
15
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ItemQuestionRecordCreateDto = {
|
|
6
|
+
readonly id?: string;
|
|
7
|
+
readonly timestamp?: string;
|
|
8
|
+
title: string;
|
|
9
|
+
needsRevision: boolean;
|
|
10
|
+
question: string;
|
|
11
|
+
socialProfileID?: string | null;
|
|
12
|
+
businessID: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ItemReviewRecordCreateDto = {
|
|
6
|
+
readonly id?: string;
|
|
7
|
+
readonly timestamp?: string;
|
|
8
|
+
reviewScore?: number;
|
|
9
|
+
reviewMessage?: string | null;
|
|
10
|
+
socialProfileID?: string | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -6,10 +6,10 @@ export type ItemShippingPolicyDto = {
|
|
|
6
6
|
id?: string | null;
|
|
7
7
|
timestamp?: string | null;
|
|
8
8
|
isExpressShipmentPolicy?: boolean;
|
|
9
|
-
shippingCourierID
|
|
10
|
-
type
|
|
11
|
-
code
|
|
12
|
-
title
|
|
9
|
+
shippingCourierID: string;
|
|
10
|
+
type: string;
|
|
11
|
+
code: string;
|
|
12
|
+
title: string;
|
|
13
13
|
description?: string | null;
|
|
14
14
|
isFree?: boolean;
|
|
15
15
|
reduce?: boolean;
|
|
@@ -23,13 +23,13 @@ export type ItemShippingPolicyDto = {
|
|
|
23
23
|
years?: number;
|
|
24
24
|
value?: number;
|
|
25
25
|
percentage?: number;
|
|
26
|
-
currencyID
|
|
26
|
+
currencyID: string;
|
|
27
27
|
countryID?: string | null;
|
|
28
28
|
countryStateID?: string | null;
|
|
29
29
|
customState?: string | null;
|
|
30
30
|
customCity?: string | null;
|
|
31
31
|
cityID?: string | null;
|
|
32
|
-
businessID
|
|
32
|
+
businessID: string;
|
|
33
33
|
businessProfileRecordID?: string | null;
|
|
34
34
|
};
|
|
35
35
|
|
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
export type ItemTypeCreateDto = {
|
|
6
6
|
readonly id?: string;
|
|
7
|
+
readonly timestamp?: string;
|
|
7
8
|
pluralTitle?: string | null;
|
|
8
9
|
singularTitle?: string | null;
|
|
9
10
|
description?: string | null;
|
|
10
11
|
imageURL?: string | null;
|
|
11
12
|
googleCategoryTaxonomy?: string | null;
|
|
12
|
-
businessID
|
|
13
|
-
itemCategoryID
|
|
13
|
+
businessID: string;
|
|
14
|
+
itemCategoryID: string;
|
|
14
15
|
itemGoogleCategoryID?: string | null;
|
|
15
16
|
};
|
|
16
17
|
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
export type ItemTypeDto = {
|
|
6
6
|
id?: string | null;
|
|
7
7
|
timestamp?: string | null;
|
|
8
|
-
pluralTitle
|
|
9
|
-
singularTitle
|
|
8
|
+
pluralTitle: string;
|
|
9
|
+
singularTitle: string;
|
|
10
10
|
description?: string | null;
|
|
11
11
|
imageURL?: string | null;
|
|
12
12
|
googleCategoryTaxonomy?: string | null;
|
|
13
|
-
businessID
|
|
14
|
-
itemCategoryID
|
|
13
|
+
businessID: string;
|
|
14
|
+
itemCategoryID: string;
|
|
15
15
|
itemGoogleCategoryID?: string | null;
|
|
16
16
|
};
|
|
17
17
|
|