@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
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { ItemBrandCreateDto } from '../models/ItemBrandCreateDto';
|
|
6
6
|
import type { ItemBrandDtoEnvelope } from '../models/ItemBrandDtoEnvelope';
|
|
7
|
-
import type {
|
|
7
|
+
import type { ItemBrandDtoListEnvelope } from '../models/ItemBrandDtoListEnvelope';
|
|
8
8
|
import type { ItemBrandUpdateDto } from '../models/ItemBrandUpdateDto';
|
|
9
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
10
|
import { OpenAPI } from '../core/OpenAPI';
|
|
11
11
|
import { request as __request } from '../core/request';
|
|
12
12
|
export class ItemBrandsService {
|
|
13
13
|
/**
|
|
14
|
-
* @param
|
|
14
|
+
* @param tenantId
|
|
15
15
|
* @param requestBody
|
|
16
16
|
* @returns ItemBrandDtoEnvelope Created
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
public static postApiV2CatalogServiceItemBrandsCreate(
|
|
20
|
-
|
|
20
|
+
tenantId: string,
|
|
21
21
|
requestBody?: ItemBrandCreateDto,
|
|
22
22
|
): CancelablePromise<ItemBrandDtoEnvelope> {
|
|
23
23
|
return __request(OpenAPI, {
|
|
24
24
|
method: 'POST',
|
|
25
25
|
url: '/api/v2/CatalogService/ItemBrands/Create',
|
|
26
26
|
query: {
|
|
27
|
-
'
|
|
27
|
+
'tenantId': tenantId,
|
|
28
28
|
},
|
|
29
29
|
body: requestBody,
|
|
30
30
|
mediaType: 'application/json',
|
|
@@ -55,22 +55,22 @@ export class ItemBrandsService {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* @param
|
|
58
|
+
* @param tenantId
|
|
59
59
|
* @param pageNumber
|
|
60
60
|
* @param pageSize
|
|
61
|
-
* @returns
|
|
61
|
+
* @returns ItemBrandDtoListEnvelope Success
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
64
|
public static getApiV2CatalogServiceItemBrandsList(
|
|
65
|
-
|
|
65
|
+
tenantId: string,
|
|
66
66
|
pageNumber?: number,
|
|
67
67
|
pageSize?: number,
|
|
68
|
-
): CancelablePromise<
|
|
68
|
+
): CancelablePromise<ItemBrandDtoListEnvelope> {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'GET',
|
|
71
71
|
url: '/api/v2/CatalogService/ItemBrands/List',
|
|
72
72
|
query: {
|
|
73
|
-
'
|
|
73
|
+
'tenantId': tenantId,
|
|
74
74
|
'pageNumber': pageNumber,
|
|
75
75
|
'pageSize': pageSize,
|
|
76
76
|
},
|
|
@@ -81,12 +81,14 @@ export class ItemBrandsService {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
+
* @param tenantId
|
|
84
85
|
* @param itemBrandId
|
|
85
86
|
* @param requestBody
|
|
86
87
|
* @returns ItemBrandDtoEnvelope Success
|
|
87
88
|
* @throws ApiError
|
|
88
89
|
*/
|
|
89
90
|
public static putApiV2CatalogServiceItemBrandsUpdate(
|
|
91
|
+
tenantId: string,
|
|
90
92
|
itemBrandId: string,
|
|
91
93
|
requestBody?: ItemBrandUpdateDto,
|
|
92
94
|
): CancelablePromise<ItemBrandDtoEnvelope> {
|
|
@@ -96,6 +98,9 @@ export class ItemBrandsService {
|
|
|
96
98
|
path: {
|
|
97
99
|
'itemBrandId': itemBrandId,
|
|
98
100
|
},
|
|
101
|
+
query: {
|
|
102
|
+
'tenantId': tenantId,
|
|
103
|
+
},
|
|
99
104
|
body: requestBody,
|
|
100
105
|
mediaType: 'application/json',
|
|
101
106
|
errors: {
|
|
@@ -105,11 +110,13 @@ export class ItemBrandsService {
|
|
|
105
110
|
});
|
|
106
111
|
}
|
|
107
112
|
/**
|
|
113
|
+
* @param tenantId
|
|
108
114
|
* @param itemBrandId
|
|
109
115
|
* @returns any Success
|
|
110
116
|
* @throws ApiError
|
|
111
117
|
*/
|
|
112
118
|
public static deleteApiV2CatalogServiceItemBrandsDelete(
|
|
119
|
+
tenantId: string,
|
|
113
120
|
itemBrandId: string,
|
|
114
121
|
): CancelablePromise<any> {
|
|
115
122
|
return __request(OpenAPI, {
|
|
@@ -118,6 +125,9 @@ export class ItemBrandsService {
|
|
|
118
125
|
path: {
|
|
119
126
|
'itemBrandId': itemBrandId,
|
|
120
127
|
},
|
|
128
|
+
query: {
|
|
129
|
+
'tenantId': tenantId,
|
|
130
|
+
},
|
|
121
131
|
errors: {
|
|
122
132
|
401: `Unauthorized`,
|
|
123
133
|
403: `Forbidden`,
|
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { ItemCategoryCreateDto } from '../models/ItemCategoryCreateDto';
|
|
6
6
|
import type { ItemCategoryDtoEnvelope } from '../models/ItemCategoryDtoEnvelope';
|
|
7
|
-
import type {
|
|
7
|
+
import type { ItemCategoryDtoListEnvelope } from '../models/ItemCategoryDtoListEnvelope';
|
|
8
8
|
import type { ItemCategoryUpdateDto } from '../models/ItemCategoryUpdateDto';
|
|
9
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
10
|
import { OpenAPI } from '../core/OpenAPI';
|
|
11
11
|
import { request as __request } from '../core/request';
|
|
12
12
|
export class ItemCategoriesService {
|
|
13
13
|
/**
|
|
14
|
-
* @param
|
|
14
|
+
* @param tenantId
|
|
15
15
|
* @param requestBody
|
|
16
16
|
* @returns ItemCategoryDtoEnvelope Created
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
public static postApiV2CatalogServiceItemCategoriesCreate(
|
|
20
|
-
|
|
20
|
+
tenantId: string,
|
|
21
21
|
requestBody?: ItemCategoryCreateDto,
|
|
22
22
|
): CancelablePromise<ItemCategoryDtoEnvelope> {
|
|
23
23
|
return __request(OpenAPI, {
|
|
24
24
|
method: 'POST',
|
|
25
25
|
url: '/api/v2/CatalogService/ItemCategories/Create',
|
|
26
26
|
query: {
|
|
27
|
-
'
|
|
27
|
+
'tenantId': tenantId,
|
|
28
28
|
},
|
|
29
29
|
body: requestBody,
|
|
30
30
|
mediaType: 'application/json',
|
|
@@ -55,22 +55,22 @@ export class ItemCategoriesService {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* @param
|
|
58
|
+
* @param tenantId
|
|
59
59
|
* @param pageNumber
|
|
60
60
|
* @param pageSize
|
|
61
|
-
* @returns
|
|
61
|
+
* @returns ItemCategoryDtoListEnvelope Success
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
64
|
public static getApiV2CatalogServiceItemCategoriesList(
|
|
65
|
-
|
|
65
|
+
tenantId: string,
|
|
66
66
|
pageNumber?: number,
|
|
67
67
|
pageSize?: number,
|
|
68
|
-
): CancelablePromise<
|
|
68
|
+
): CancelablePromise<ItemCategoryDtoListEnvelope> {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'GET',
|
|
71
71
|
url: '/api/v2/CatalogService/ItemCategories/List',
|
|
72
72
|
query: {
|
|
73
|
-
'
|
|
73
|
+
'tenantId': tenantId,
|
|
74
74
|
'pageNumber': pageNumber,
|
|
75
75
|
'pageSize': pageSize,
|
|
76
76
|
},
|
|
@@ -81,12 +81,14 @@ export class ItemCategoriesService {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
+
* @param tenantId
|
|
84
85
|
* @param itemCategoryId
|
|
85
86
|
* @param requestBody
|
|
86
87
|
* @returns any Success
|
|
87
88
|
* @throws ApiError
|
|
88
89
|
*/
|
|
89
90
|
public static putApiV2CatalogServiceItemCategoriesUpdate(
|
|
91
|
+
tenantId: string,
|
|
90
92
|
itemCategoryId: string,
|
|
91
93
|
requestBody?: ItemCategoryUpdateDto,
|
|
92
94
|
): CancelablePromise<any> {
|
|
@@ -96,6 +98,9 @@ export class ItemCategoriesService {
|
|
|
96
98
|
path: {
|
|
97
99
|
'itemCategoryId': itemCategoryId,
|
|
98
100
|
},
|
|
101
|
+
query: {
|
|
102
|
+
'tenantId': tenantId,
|
|
103
|
+
},
|
|
99
104
|
body: requestBody,
|
|
100
105
|
mediaType: 'application/json',
|
|
101
106
|
errors: {
|
|
@@ -105,11 +110,13 @@ export class ItemCategoriesService {
|
|
|
105
110
|
});
|
|
106
111
|
}
|
|
107
112
|
/**
|
|
113
|
+
* @param tenantId
|
|
108
114
|
* @param itemCategoryId
|
|
109
115
|
* @returns any Success
|
|
110
116
|
* @throws ApiError
|
|
111
117
|
*/
|
|
112
118
|
public static deleteApiV2CatalogServiceItemCategoriesDelete(
|
|
119
|
+
tenantId: string,
|
|
113
120
|
itemCategoryId: string,
|
|
114
121
|
): CancelablePromise<any> {
|
|
115
122
|
return __request(OpenAPI, {
|
|
@@ -118,6 +125,9 @@ export class ItemCategoriesService {
|
|
|
118
125
|
path: {
|
|
119
126
|
'itemCategoryId': itemCategoryId,
|
|
120
127
|
},
|
|
128
|
+
query: {
|
|
129
|
+
'tenantId': tenantId,
|
|
130
|
+
},
|
|
121
131
|
errors: {
|
|
122
132
|
401: `Unauthorized`,
|
|
123
133
|
403: `Forbidden`,
|
|
@@ -2,29 +2,29 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
+
import type { ItemImageCreateDto } from '../models/ItemImageCreateDto';
|
|
5
6
|
import type { ItemImageDtoEnvelope } from '../models/ItemImageDtoEnvelope';
|
|
6
|
-
import type {
|
|
7
|
-
import type {
|
|
8
|
-
import type { ItemImagesUpdateDto } from '../models/ItemImagesUpdateDto';
|
|
7
|
+
import type { ItemImageDtoListEnvelope } from '../models/ItemImageDtoListEnvelope';
|
|
8
|
+
import type { ItemImageUpdateDto } from '../models/ItemImageUpdateDto';
|
|
9
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
10
|
import { OpenAPI } from '../core/OpenAPI';
|
|
11
11
|
import { request as __request } from '../core/request';
|
|
12
12
|
export class ItemImagesService {
|
|
13
13
|
/**
|
|
14
|
-
* @param
|
|
14
|
+
* @param tenantId
|
|
15
15
|
* @param requestBody
|
|
16
16
|
* @returns ItemImageDtoEnvelope Created
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
public static postApiV2CatalogServiceItemImagesCreate(
|
|
20
|
-
|
|
21
|
-
requestBody?:
|
|
20
|
+
tenantId: string,
|
|
21
|
+
requestBody?: ItemImageCreateDto,
|
|
22
22
|
): CancelablePromise<ItemImageDtoEnvelope> {
|
|
23
23
|
return __request(OpenAPI, {
|
|
24
24
|
method: 'POST',
|
|
25
25
|
url: '/api/v2/CatalogService/ItemImages/Create',
|
|
26
26
|
query: {
|
|
27
|
-
'
|
|
27
|
+
'tenantId': tenantId,
|
|
28
28
|
},
|
|
29
29
|
body: requestBody,
|
|
30
30
|
mediaType: 'application/json',
|
|
@@ -55,22 +55,22 @@ export class ItemImagesService {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* @param
|
|
58
|
+
* @param tenantId
|
|
59
59
|
* @param pageNumber
|
|
60
60
|
* @param pageSize
|
|
61
|
-
* @returns
|
|
61
|
+
* @returns ItemImageDtoListEnvelope Success
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
64
|
public static getApiV2CatalogServiceItemImagesList(
|
|
65
|
-
|
|
65
|
+
tenantId: string,
|
|
66
66
|
pageNumber?: number,
|
|
67
67
|
pageSize?: number,
|
|
68
|
-
): CancelablePromise<
|
|
68
|
+
): CancelablePromise<ItemImageDtoListEnvelope> {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'GET',
|
|
71
71
|
url: '/api/v2/CatalogService/ItemImages/List',
|
|
72
72
|
query: {
|
|
73
|
-
'
|
|
73
|
+
'tenantId': tenantId,
|
|
74
74
|
'pageNumber': pageNumber,
|
|
75
75
|
'pageSize': pageSize,
|
|
76
76
|
},
|
|
@@ -81,14 +81,16 @@ export class ItemImagesService {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
+
* @param tenantId
|
|
84
85
|
* @param itemImageId
|
|
85
86
|
* @param requestBody
|
|
86
87
|
* @returns any Success
|
|
87
88
|
* @throws ApiError
|
|
88
89
|
*/
|
|
89
90
|
public static putApiV2CatalogServiceItemImagesUpdate(
|
|
91
|
+
tenantId: string,
|
|
90
92
|
itemImageId: string,
|
|
91
|
-
requestBody?:
|
|
93
|
+
requestBody?: ItemImageUpdateDto,
|
|
92
94
|
): CancelablePromise<any> {
|
|
93
95
|
return __request(OpenAPI, {
|
|
94
96
|
method: 'PUT',
|
|
@@ -96,6 +98,9 @@ export class ItemImagesService {
|
|
|
96
98
|
path: {
|
|
97
99
|
'itemImageId': itemImageId,
|
|
98
100
|
},
|
|
101
|
+
query: {
|
|
102
|
+
'tenantId': tenantId,
|
|
103
|
+
},
|
|
99
104
|
body: requestBody,
|
|
100
105
|
mediaType: 'application/json',
|
|
101
106
|
errors: {
|
|
@@ -105,11 +110,13 @@ export class ItemImagesService {
|
|
|
105
110
|
});
|
|
106
111
|
}
|
|
107
112
|
/**
|
|
113
|
+
* @param tenantId
|
|
108
114
|
* @param itemImageId
|
|
109
115
|
* @returns any Success
|
|
110
116
|
* @throws ApiError
|
|
111
117
|
*/
|
|
112
118
|
public static deleteApiV2CatalogServiceItemImagesDelete(
|
|
119
|
+
tenantId: string,
|
|
113
120
|
itemImageId: string,
|
|
114
121
|
): CancelablePromise<any> {
|
|
115
122
|
return __request(OpenAPI, {
|
|
@@ -118,6 +125,9 @@ export class ItemImagesService {
|
|
|
118
125
|
path: {
|
|
119
126
|
'itemImageId': itemImageId,
|
|
120
127
|
},
|
|
128
|
+
query: {
|
|
129
|
+
'tenantId': tenantId,
|
|
130
|
+
},
|
|
121
131
|
errors: {
|
|
122
132
|
401: `Unauthorized`,
|
|
123
133
|
403: `Forbidden`,
|
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { ItemQuestionCreateDto } from '../models/ItemQuestionCreateDto';
|
|
6
6
|
import type { ItemQuestionDtoEnvelope } from '../models/ItemQuestionDtoEnvelope';
|
|
7
|
-
import type {
|
|
7
|
+
import type { ItemQuestionDtoListEnvelope } from '../models/ItemQuestionDtoListEnvelope';
|
|
8
8
|
import type { ItemQuestionUpdateDto } from '../models/ItemQuestionUpdateDto';
|
|
9
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
10
|
import { OpenAPI } from '../core/OpenAPI';
|
|
11
11
|
import { request as __request } from '../core/request';
|
|
12
12
|
export class ItemQuestionsService {
|
|
13
13
|
/**
|
|
14
|
-
* @param
|
|
14
|
+
* @param tenantId
|
|
15
15
|
* @param requestBody
|
|
16
16
|
* @returns ItemQuestionDtoEnvelope Created
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
public static postApiV2CatalogServiceItemQuestionsCreate(
|
|
20
|
-
|
|
20
|
+
tenantId: string,
|
|
21
21
|
requestBody?: ItemQuestionCreateDto,
|
|
22
22
|
): CancelablePromise<ItemQuestionDtoEnvelope> {
|
|
23
23
|
return __request(OpenAPI, {
|
|
24
24
|
method: 'POST',
|
|
25
25
|
url: '/api/v2/CatalogService/ItemQuestions/Create',
|
|
26
26
|
query: {
|
|
27
|
-
'
|
|
27
|
+
'tenantId': tenantId,
|
|
28
28
|
},
|
|
29
29
|
body: requestBody,
|
|
30
30
|
mediaType: 'application/json',
|
|
@@ -55,22 +55,22 @@ export class ItemQuestionsService {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* @param
|
|
58
|
+
* @param tenantId
|
|
59
59
|
* @param pageNumber
|
|
60
60
|
* @param pageSize
|
|
61
|
-
* @returns
|
|
61
|
+
* @returns ItemQuestionDtoListEnvelope Success
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
64
|
public static getApiV2CatalogServiceItemQuestionsList(
|
|
65
|
-
|
|
65
|
+
tenantId: string,
|
|
66
66
|
pageNumber?: number,
|
|
67
67
|
pageSize?: number,
|
|
68
|
-
): CancelablePromise<
|
|
68
|
+
): CancelablePromise<ItemQuestionDtoListEnvelope> {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'GET',
|
|
71
71
|
url: '/api/v2/CatalogService/ItemQuestions/List',
|
|
72
72
|
query: {
|
|
73
|
-
'
|
|
73
|
+
'tenantId': tenantId,
|
|
74
74
|
'pageNumber': pageNumber,
|
|
75
75
|
'pageSize': pageSize,
|
|
76
76
|
},
|
|
@@ -81,11 +81,13 @@ export class ItemQuestionsService {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
+
* @param tenantId
|
|
84
85
|
* @param itemQuestionId
|
|
85
86
|
* @returns any Success
|
|
86
87
|
* @throws ApiError
|
|
87
88
|
*/
|
|
88
89
|
public static deleteApiV2CatalogServiceItemQuestionsDelete(
|
|
90
|
+
tenantId: string,
|
|
89
91
|
itemQuestionId: string,
|
|
90
92
|
): CancelablePromise<any> {
|
|
91
93
|
return __request(OpenAPI, {
|
|
@@ -94,6 +96,9 @@ export class ItemQuestionsService {
|
|
|
94
96
|
path: {
|
|
95
97
|
'itemQuestionId': itemQuestionId,
|
|
96
98
|
},
|
|
99
|
+
query: {
|
|
100
|
+
'tenantId': tenantId,
|
|
101
|
+
},
|
|
97
102
|
errors: {
|
|
98
103
|
401: `Unauthorized`,
|
|
99
104
|
403: `Forbidden`,
|
|
@@ -101,12 +106,14 @@ export class ItemQuestionsService {
|
|
|
101
106
|
});
|
|
102
107
|
}
|
|
103
108
|
/**
|
|
109
|
+
* @param tenantId
|
|
104
110
|
* @param itemQuestionId
|
|
105
111
|
* @param requestBody
|
|
106
112
|
* @returns any Success
|
|
107
113
|
* @throws ApiError
|
|
108
114
|
*/
|
|
109
115
|
public static putApiV2CatalogServiceItemQuestionsUpdate(
|
|
116
|
+
tenantId: string,
|
|
110
117
|
itemQuestionId: string,
|
|
111
118
|
requestBody?: ItemQuestionUpdateDto,
|
|
112
119
|
): CancelablePromise<any> {
|
|
@@ -116,6 +123,9 @@ export class ItemQuestionsService {
|
|
|
116
123
|
path: {
|
|
117
124
|
'itemQuestionId': itemQuestionId,
|
|
118
125
|
},
|
|
126
|
+
query: {
|
|
127
|
+
'tenantId': tenantId,
|
|
128
|
+
},
|
|
119
129
|
body: requestBody,
|
|
120
130
|
mediaType: 'application/json',
|
|
121
131
|
errors: {
|
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { ItemReviewCreateDto } from '../models/ItemReviewCreateDto';
|
|
6
6
|
import type { ItemReviewDtoEnvelope } from '../models/ItemReviewDtoEnvelope';
|
|
7
|
-
import type {
|
|
7
|
+
import type { ItemReviewDtoListEnvelope } from '../models/ItemReviewDtoListEnvelope';
|
|
8
8
|
import type { ItemReviewUpdateDto } from '../models/ItemReviewUpdateDto';
|
|
9
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
10
|
import { OpenAPI } from '../core/OpenAPI';
|
|
11
11
|
import { request as __request } from '../core/request';
|
|
12
12
|
export class ItemReviewsService {
|
|
13
13
|
/**
|
|
14
|
-
* @param
|
|
14
|
+
* @param tenantId
|
|
15
15
|
* @param requestBody
|
|
16
16
|
* @returns ItemReviewDtoEnvelope Created
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
public static postApiV2CatalogServiceItemReviewsCreate(
|
|
20
|
-
|
|
20
|
+
tenantId: string,
|
|
21
21
|
requestBody?: ItemReviewCreateDto,
|
|
22
22
|
): CancelablePromise<ItemReviewDtoEnvelope> {
|
|
23
23
|
return __request(OpenAPI, {
|
|
24
24
|
method: 'POST',
|
|
25
25
|
url: '/api/v2/CatalogService/ItemReviews/Create',
|
|
26
26
|
query: {
|
|
27
|
-
'
|
|
27
|
+
'tenantId': tenantId,
|
|
28
28
|
},
|
|
29
29
|
body: requestBody,
|
|
30
30
|
mediaType: 'application/json',
|
|
@@ -58,17 +58,17 @@ export class ItemReviewsService {
|
|
|
58
58
|
* @param itemId
|
|
59
59
|
* @param pageNumber
|
|
60
60
|
* @param pageSize
|
|
61
|
-
* @returns
|
|
61
|
+
* @returns ItemReviewDtoListEnvelope Success
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
|
-
public static
|
|
64
|
+
public static getApiV2CatalogServiceItemReviewsList(
|
|
65
65
|
itemId: string,
|
|
66
66
|
pageNumber?: number,
|
|
67
67
|
pageSize?: number,
|
|
68
|
-
): CancelablePromise<
|
|
68
|
+
): CancelablePromise<ItemReviewDtoListEnvelope> {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'GET',
|
|
71
|
-
url: '/api/v2/CatalogService/ItemReviews/
|
|
71
|
+
url: '/api/v2/CatalogService/ItemReviews/List',
|
|
72
72
|
query: {
|
|
73
73
|
'itemId': itemId,
|
|
74
74
|
'pageNumber': pageNumber,
|
|
@@ -81,12 +81,14 @@ export class ItemReviewsService {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
+
* @param tenantId
|
|
84
85
|
* @param itemReviewId
|
|
85
86
|
* @param requestBody
|
|
86
87
|
* @returns any Success
|
|
87
88
|
* @throws ApiError
|
|
88
89
|
*/
|
|
89
90
|
public static putApiV2CatalogServiceItemReviewsUpdate(
|
|
91
|
+
tenantId: string,
|
|
90
92
|
itemReviewId: string,
|
|
91
93
|
requestBody?: ItemReviewUpdateDto,
|
|
92
94
|
): CancelablePromise<any> {
|
|
@@ -96,6 +98,9 @@ export class ItemReviewsService {
|
|
|
96
98
|
path: {
|
|
97
99
|
'itemReviewId': itemReviewId,
|
|
98
100
|
},
|
|
101
|
+
query: {
|
|
102
|
+
'tenantId': tenantId,
|
|
103
|
+
},
|
|
99
104
|
body: requestBody,
|
|
100
105
|
mediaType: 'application/json',
|
|
101
106
|
errors: {
|
|
@@ -105,11 +110,13 @@ export class ItemReviewsService {
|
|
|
105
110
|
});
|
|
106
111
|
}
|
|
107
112
|
/**
|
|
113
|
+
* @param tenantId
|
|
108
114
|
* @param itemReviewId
|
|
109
115
|
* @returns any Success
|
|
110
116
|
* @throws ApiError
|
|
111
117
|
*/
|
|
112
118
|
public static deleteApiV2CatalogServiceItemReviewsDelete(
|
|
119
|
+
tenantId: string,
|
|
113
120
|
itemReviewId: string,
|
|
114
121
|
): CancelablePromise<any> {
|
|
115
122
|
return __request(OpenAPI, {
|
|
@@ -118,6 +125,9 @@ export class ItemReviewsService {
|
|
|
118
125
|
path: {
|
|
119
126
|
'itemReviewId': itemReviewId,
|
|
120
127
|
},
|
|
128
|
+
query: {
|
|
129
|
+
'tenantId': tenantId,
|
|
130
|
+
},
|
|
121
131
|
errors: {
|
|
122
132
|
401: `Unauthorized`,
|
|
123
133
|
403: `Forbidden`,
|
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { ItemTagCreateDto } from '../models/ItemTagCreateDto';
|
|
6
6
|
import type { ItemTagDtoEnvelope } from '../models/ItemTagDtoEnvelope';
|
|
7
|
-
import type {
|
|
7
|
+
import type { ItemTagDtoListEnvelope } from '../models/ItemTagDtoListEnvelope';
|
|
8
8
|
import type { ItemTagUpdateDto } from '../models/ItemTagUpdateDto';
|
|
9
9
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
10
|
import { OpenAPI } from '../core/OpenAPI';
|
|
11
11
|
import { request as __request } from '../core/request';
|
|
12
12
|
export class ItemTagsService {
|
|
13
13
|
/**
|
|
14
|
-
* @param
|
|
14
|
+
* @param tenantId
|
|
15
15
|
* @param requestBody
|
|
16
16
|
* @returns ItemTagDtoEnvelope Created
|
|
17
17
|
* @throws ApiError
|
|
18
18
|
*/
|
|
19
19
|
public static postApiV2CatalogServiceItemTagsCreate(
|
|
20
|
-
|
|
20
|
+
tenantId: string,
|
|
21
21
|
requestBody?: ItemTagCreateDto,
|
|
22
22
|
): CancelablePromise<ItemTagDtoEnvelope> {
|
|
23
23
|
return __request(OpenAPI, {
|
|
24
24
|
method: 'POST',
|
|
25
25
|
url: '/api/v2/CatalogService/ItemTags/Create',
|
|
26
26
|
query: {
|
|
27
|
-
'
|
|
27
|
+
'tenantId': tenantId,
|
|
28
28
|
},
|
|
29
29
|
body: requestBody,
|
|
30
30
|
mediaType: 'application/json',
|
|
@@ -55,22 +55,22 @@ export class ItemTagsService {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* @param
|
|
58
|
+
* @param tenantId
|
|
59
59
|
* @param pageNumber
|
|
60
60
|
* @param pageSize
|
|
61
|
-
* @returns
|
|
61
|
+
* @returns ItemTagDtoListEnvelope Success
|
|
62
62
|
* @throws ApiError
|
|
63
63
|
*/
|
|
64
64
|
public static getApiV2CatalogServiceItemTagsList(
|
|
65
|
-
|
|
65
|
+
tenantId: string,
|
|
66
66
|
pageNumber?: number,
|
|
67
67
|
pageSize?: number,
|
|
68
|
-
): CancelablePromise<
|
|
68
|
+
): CancelablePromise<ItemTagDtoListEnvelope> {
|
|
69
69
|
return __request(OpenAPI, {
|
|
70
70
|
method: 'GET',
|
|
71
71
|
url: '/api/v2/CatalogService/ItemTags/List',
|
|
72
72
|
query: {
|
|
73
|
-
'
|
|
73
|
+
'tenantId': tenantId,
|
|
74
74
|
'pageNumber': pageNumber,
|
|
75
75
|
'pageSize': pageSize,
|
|
76
76
|
},
|
|
@@ -81,11 +81,13 @@ export class ItemTagsService {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
|
+
* @param tenantId
|
|
84
85
|
* @param itemTagId
|
|
85
86
|
* @returns any Success
|
|
86
87
|
* @throws ApiError
|
|
87
88
|
*/
|
|
88
89
|
public static deleteApiV2CatalogServiceItemTagsDelete(
|
|
90
|
+
tenantId: string,
|
|
89
91
|
itemTagId: string,
|
|
90
92
|
): CancelablePromise<any> {
|
|
91
93
|
return __request(OpenAPI, {
|
|
@@ -94,6 +96,9 @@ export class ItemTagsService {
|
|
|
94
96
|
path: {
|
|
95
97
|
'itemTagId': itemTagId,
|
|
96
98
|
},
|
|
99
|
+
query: {
|
|
100
|
+
'tenantId': tenantId,
|
|
101
|
+
},
|
|
97
102
|
errors: {
|
|
98
103
|
401: `Unauthorized`,
|
|
99
104
|
403: `Forbidden`,
|
|
@@ -101,14 +106,14 @@ export class ItemTagsService {
|
|
|
101
106
|
});
|
|
102
107
|
}
|
|
103
108
|
/**
|
|
104
|
-
* @param
|
|
109
|
+
* @param tenantId
|
|
105
110
|
* @param itemTagId
|
|
106
111
|
* @param requestBody
|
|
107
112
|
* @returns any Success
|
|
108
113
|
* @throws ApiError
|
|
109
114
|
*/
|
|
110
115
|
public static putApiV2CatalogServiceItemTagsUpdate(
|
|
111
|
-
|
|
116
|
+
tenantId: string,
|
|
112
117
|
itemTagId: string,
|
|
113
118
|
requestBody?: ItemTagUpdateDto,
|
|
114
119
|
): CancelablePromise<any> {
|
|
@@ -119,7 +124,7 @@ export class ItemTagsService {
|
|
|
119
124
|
'itemTagId': itemTagId,
|
|
120
125
|
},
|
|
121
126
|
query: {
|
|
122
|
-
'
|
|
127
|
+
'tenantId': tenantId,
|
|
123
128
|
},
|
|
124
129
|
body: requestBody,
|
|
125
130
|
mediaType: 'application/json',
|