@fenixalliance/abs-api-client 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Icon.png +0 -0
- package/LICENSE +21 -0
- package/LICENSE.md +36 -0
- package/README.md +300 -0
- package/THIRD_PARTY_NOTICES.md +129 -0
- package/clients/cartService/core/ApiError.ts +25 -0
- package/clients/cartService/core/ApiRequestOptions.ts +17 -0
- package/clients/cartService/core/ApiResult.ts +11 -0
- package/clients/cartService/core/CancelablePromise.ts +131 -0
- package/clients/cartService/core/OpenAPI.ts +32 -0
- package/clients/cartService/core/request.ts +322 -0
- package/clients/cartService/index.ts +52 -0
- package/clients/cartService/models/AccessTokenResponse.ts +11 -0
- package/clients/cartService/models/AddProductToCompareRequest.ts +10 -0
- package/clients/cartService/models/BooleanEnvelope.ts +13 -0
- package/clients/cartService/models/CartDto.ts +17 -0
- package/clients/cartService/models/CartDtoEnvelope.ts +14 -0
- package/clients/cartService/models/CurrencySwitchRequest.ts +9 -0
- package/clients/cartService/models/Envelope.ts +13 -0
- package/clients/cartService/models/Error.ts +10 -0
- package/clients/cartService/models/ErrorEnvelope.ts +12 -0
- package/clients/cartService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/cartService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/cartService/models/InfoRequest.ts +10 -0
- package/clients/cartService/models/InfoResponse.ts +9 -0
- package/clients/cartService/models/ItemCartRecordCreateDto.ts +11 -0
- package/clients/cartService/models/ItemCartRecordDto.ts +98 -0
- package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +14 -0
- package/clients/cartService/models/ItemCartRecordUpdateDto.ts +10 -0
- package/clients/cartService/models/ItemToCompareCartRecordDto.ts +11 -0
- package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +14 -0
- package/clients/cartService/models/ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts +14 -0
- package/clients/cartService/models/LoginRequest.ts +11 -0
- package/clients/cartService/models/NewWishListRequest.ts +11 -0
- package/clients/cartService/models/ProductCartRecordDto.ts +98 -0
- package/clients/cartService/models/ProductToWishListRequest.ts +9 -0
- package/clients/cartService/models/RefreshRequest.ts +8 -0
- package/clients/cartService/models/RegisterRequest.ts +9 -0
- package/clients/cartService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/cartService/models/ResetPasswordRequest.ts +10 -0
- package/clients/cartService/models/ResponseStatus.ts +12 -0
- package/clients/cartService/models/TwoFactorRequest.ts +12 -0
- package/clients/cartService/models/TwoFactorResponse.ts +12 -0
- package/clients/cartService/models/WishListDto.ts +12 -0
- package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
- package/clients/cartService/models/WishListDtoIReadOnlyListEnvelope.ts +14 -0
- package/clients/cartService/models/WishListItemRecordDto.ts +11 -0
- package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +14 -0
- package/clients/cartService/models/WishListUpdateDto.ts +10 -0
- package/clients/cartService/services/CartsService.ts +103 -0
- package/clients/cartService/services/CompareService.ts +89 -0
- package/clients/cartService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/cartService/services/RecordsService.ts +206 -0
- package/clients/cartService/services/WishListsService.ts +145 -0
- package/clients/catalogService/core/ApiError.ts +25 -0
- package/clients/catalogService/core/ApiRequestOptions.ts +17 -0
- package/clients/catalogService/core/ApiResult.ts +11 -0
- package/clients/catalogService/core/CancelablePromise.ts +131 -0
- package/clients/catalogService/core/OpenAPI.ts +32 -0
- package/clients/catalogService/core/request.ts +322 -0
- package/clients/catalogService/index.ts +124 -0
- package/clients/catalogService/models/AccessTokenResponse.ts +11 -0
- package/clients/catalogService/models/ErrorEnvelope.ts +12 -0
- package/clients/catalogService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/catalogService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/catalogService/models/InfoRequest.ts +10 -0
- package/clients/catalogService/models/InfoResponse.ts +9 -0
- package/clients/catalogService/models/ItemAttachmentCreateDto.ts +23 -0
- package/clients/catalogService/models/ItemAttachmentDto.ts +28 -0
- package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +19 -0
- package/clients/catalogService/models/ItemAttributeCreateDto.ts +11 -0
- package/clients/catalogService/models/ItemAttributeDto.ts +12 -0
- package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttributeDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttributeOptionDto.ts +12 -0
- package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemAttributeUpdateDto.ts +9 -0
- package/clients/catalogService/models/ItemBrandCreateDto.ts +16 -0
- package/clients/catalogService/models/ItemBrandDto.ts +17 -0
- package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemBrandUpdateDto.ts +13 -0
- package/clients/catalogService/models/ItemCategoryCreateDto.ts +14 -0
- package/clients/catalogService/models/ItemCategoryDto.ts +21 -0
- package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemCategoryUpdateDto.ts +16 -0
- package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -0
- package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemImageDto.ts +29 -0
- package/clients/catalogService/models/ItemImageDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemImagesCreateDto.ts +28 -0
- package/clients/catalogService/models/ItemImagesUpdateDto.ts +25 -0
- package/clients/catalogService/models/ItemPricePolicyDto.ts +35 -0
- package/clients/catalogService/models/ItemPricePolicyDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemQuestionCreateDto.ts +14 -0
- package/clients/catalogService/models/ItemQuestionDto.ts +15 -0
- package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemQuestionUpdateDto.ts +12 -0
- package/clients/catalogService/models/ItemRefundPolicyDto.ts +34 -0
- package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemReturnPolicyDto.ts +34 -0
- package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemReviewCreateDto.ts +12 -0
- package/clients/catalogService/models/ItemReviewDto.ts +13 -0
- package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemReviewUpdateDto.ts +9 -0
- package/clients/catalogService/models/ItemShippingPolicyDto.ts +35 -0
- package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTagCreateDto.ts +11 -0
- package/clients/catalogService/models/ItemTagDto.ts +12 -0
- package/clients/catalogService/models/ItemTagDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTagUpdateDto.ts +9 -0
- package/clients/catalogService/models/ItemTaxPolicyDto.ts +37 -0
- package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTypeCreateDto.ts +16 -0
- package/clients/catalogService/models/ItemTypeDto.ts +17 -0
- package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemTypeUpdateDto.ts +12 -0
- package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +34 -0
- package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/LoginRequest.ts +11 -0
- package/clients/catalogService/models/PricingRuleCreateDto.ts +32 -0
- package/clients/catalogService/models/PricingRuleDto.ts +32 -0
- package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/PricingRuleUpdateDto.ts +27 -0
- package/clients/catalogService/models/RefreshRequest.ts +8 -0
- package/clients/catalogService/models/RegisterRequest.ts +9 -0
- package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/catalogService/models/ResetPasswordRequest.ts +10 -0
- package/clients/catalogService/models/StockItemCreateDto.ts +11 -0
- package/clients/catalogService/models/StockItemDto.ts +17 -0
- package/clients/catalogService/models/StockItemDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/StockItemDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/StockItemUpdateDto.ts +9 -0
- package/clients/catalogService/models/TwoFactorRequest.ts +12 -0
- package/clients/catalogService/models/TwoFactorResponse.ts +12 -0
- package/clients/catalogService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/catalogService/services/ItemAttachmentsService.ts +127 -0
- package/clients/catalogService/services/ItemAttributesService.ts +127 -0
- package/clients/catalogService/services/ItemBrandsService.ts +127 -0
- package/clients/catalogService/services/ItemCategoriesService.ts +127 -0
- package/clients/catalogService/services/ItemImagesService.ts +127 -0
- package/clients/catalogService/services/ItemQuestionsService.ts +127 -0
- package/clients/catalogService/services/ItemReviewsService.ts +127 -0
- package/clients/catalogService/services/ItemTagsService.ts +132 -0
- package/clients/catalogService/services/ItemTypesService.ts +127 -0
- package/clients/catalogService/services/PoliciesService.ts +117 -0
- package/clients/catalogService/services/PricingRulesService.ts +127 -0
- package/clients/catalogService/services/ProductsService.ts +1743 -0
- package/clients/contactService/core/ApiError.ts +25 -0
- package/clients/contactService/core/ApiRequestOptions.ts +17 -0
- package/clients/contactService/core/ApiResult.ts +11 -0
- package/clients/contactService/core/CancelablePromise.ts +131 -0
- package/clients/contactService/core/OpenAPI.ts +32 -0
- package/clients/contactService/core/request.ts +322 -0
- package/clients/contactService/index.ts +28 -0
- package/clients/contactService/models/AccessTokenResponse.ts +11 -0
- package/clients/contactService/models/ContactDto.ts +44 -0
- package/clients/contactService/models/ContactDtoEnvelope.ts +14 -0
- package/clients/contactService/models/ContactDtoListEnvelope.ts +14 -0
- package/clients/contactService/models/ErrorEnvelope.ts +12 -0
- package/clients/contactService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/contactService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/contactService/models/InfoRequest.ts +10 -0
- package/clients/contactService/models/InfoResponse.ts +9 -0
- package/clients/contactService/models/LoginRequest.ts +11 -0
- package/clients/contactService/models/RefreshRequest.ts +8 -0
- package/clients/contactService/models/RegisterRequest.ts +9 -0
- package/clients/contactService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/contactService/models/ResetPasswordRequest.ts +10 -0
- package/clients/contactService/models/TwoFactorRequest.ts +12 -0
- package/clients/contactService/models/TwoFactorResponse.ts +12 -0
- package/clients/contactService/services/ContactsService.ts +140 -0
- package/clients/contactService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/forexService/core/ApiError.ts +25 -0
- package/clients/forexService/core/ApiRequestOptions.ts +17 -0
- package/clients/forexService/core/ApiResult.ts +11 -0
- package/clients/forexService/core/CancelablePromise.ts +131 -0
- package/clients/forexService/core/OpenAPI.ts +32 -0
- package/clients/forexService/core/request.ts +322 -0
- package/clients/forexService/index.ts +30 -0
- package/clients/forexService/models/AccessTokenResponse.ts +11 -0
- package/clients/forexService/models/Currency.ts +9 -0
- package/clients/forexService/models/ForexRatesDto.ts +13 -0
- package/clients/forexService/models/ForexRatesDtoEnvelope.ts +14 -0
- package/clients/forexService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/forexService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/forexService/models/InfoRequest.ts +10 -0
- package/clients/forexService/models/InfoResponse.ts +9 -0
- package/clients/forexService/models/LoginRequest.ts +11 -0
- package/clients/forexService/models/Money.ts +10 -0
- package/clients/forexService/models/MoneyEnvelope.ts +14 -0
- package/clients/forexService/models/RefreshRequest.ts +8 -0
- package/clients/forexService/models/RegisterRequest.ts +9 -0
- package/clients/forexService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/forexService/models/ResetPasswordRequest.ts +10 -0
- package/clients/forexService/models/TwoFactorRequest.ts +12 -0
- package/clients/forexService/models/TwoFactorResponse.ts +12 -0
- package/clients/forexService/services/ExchangeService.ts +57 -0
- package/clients/forexService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/forexService/services/RatesService.ts +36 -0
- package/clients/holderService/core/ApiError.ts +25 -0
- package/clients/holderService/core/ApiRequestOptions.ts +17 -0
- package/clients/holderService/core/ApiResult.ts +11 -0
- package/clients/holderService/core/CancelablePromise.ts +131 -0
- package/clients/holderService/core/OpenAPI.ts +32 -0
- package/clients/holderService/core/request.ts +322 -0
- package/clients/holderService/index.ts +31 -0
- package/clients/holderService/models/AccessTokenResponse.ts +11 -0
- package/clients/holderService/models/AccountHolderCreateDto.ts +34 -0
- package/clients/holderService/models/AccountHolderDto.ts +73 -0
- package/clients/holderService/models/AccountHolderDtoEnvelope.ts +14 -0
- package/clients/holderService/models/BusinessDto.ts +53 -0
- package/clients/holderService/models/BusinessEnrollmentDto.ts +19 -0
- package/clients/holderService/models/ErrorEnvelope.ts +12 -0
- package/clients/holderService/models/FollowRecordDto.ts +12 -0
- package/clients/holderService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/holderService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/holderService/models/InfoRequest.ts +10 -0
- package/clients/holderService/models/InfoResponse.ts +9 -0
- package/clients/holderService/models/LoginRequest.ts +11 -0
- package/clients/holderService/models/RefreshRequest.ts +8 -0
- package/clients/holderService/models/RegisterRequest.ts +9 -0
- package/clients/holderService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/holderService/models/ResetPasswordRequest.ts +10 -0
- package/clients/holderService/models/TwoFactorRequest.ts +12 -0
- package/clients/holderService/models/TwoFactorResponse.ts +12 -0
- package/clients/holderService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/holderService/services/HolderService.ts +165 -0
- package/clients/identityService/core/ApiError.ts +25 -0
- package/clients/identityService/core/ApiRequestOptions.ts +17 -0
- package/clients/identityService/core/ApiResult.ts +11 -0
- package/clients/identityService/core/CancelablePromise.ts +131 -0
- package/clients/identityService/core/OpenAPI.ts +32 -0
- package/clients/identityService/core/request.ts +322 -0
- package/clients/identityService/index.ts +53 -0
- package/clients/identityService/models/AccessTokenResponse.ts +11 -0
- package/clients/identityService/models/AccountHolderCreateDto.ts +34 -0
- package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +14 -0
- package/clients/identityService/models/AccountHolderDto.ts +73 -0
- package/clients/identityService/models/Actor.ts +12 -0
- package/clients/identityService/models/ApiResponse.ts +22 -0
- package/clients/identityService/models/ApiResponseEnvelope.ts +14 -0
- package/clients/identityService/models/BusinessDto.ts +53 -0
- package/clients/identityService/models/ClientApplication.ts +16 -0
- package/clients/identityService/models/Error.ts +10 -0
- package/clients/identityService/models/ErrorEnvelope.ts +12 -0
- package/clients/identityService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/identityService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/identityService/models/IPLookupDto.ts +10 -0
- package/clients/identityService/models/InfoRequest.ts +10 -0
- package/clients/identityService/models/InfoResponse.ts +9 -0
- package/clients/identityService/models/JsonWebKey.ts +13 -0
- package/clients/identityService/models/JsonWebKeySet.ts +9 -0
- package/clients/identityService/models/JsonWebKeySetEnvelope.ts +14 -0
- package/clients/identityService/models/JsonWebToken.ts +15 -0
- package/clients/identityService/models/JsonWebTokenEnvelope.ts +14 -0
- package/clients/identityService/models/JsonWebTokenHeader.ts +11 -0
- package/clients/identityService/models/JsonWebTokenPayload.ts +17 -0
- package/clients/identityService/models/LoginRequest.ts +11 -0
- package/clients/identityService/models/OAuthTokenRequest.ts +12 -0
- package/clients/identityService/models/OpenIdConfiguration.ts +19 -0
- package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +14 -0
- package/clients/identityService/models/RefreshRequest.ts +8 -0
- package/clients/identityService/models/RegisterRequest.ts +9 -0
- package/clients/identityService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/identityService/models/ResetPasswordRequest.ts +10 -0
- package/clients/identityService/models/ResponsePagination.ts +13 -0
- package/clients/identityService/models/ResponseStatus.ts +12 -0
- package/clients/identityService/models/SigninModel.ts +9 -0
- package/clients/identityService/models/StringListEnvelope.ts +13 -0
- package/clients/identityService/models/TwoFactorRequest.ts +12 -0
- package/clients/identityService/models/TwoFactorResponse.ts +12 -0
- package/clients/identityService/services/ApplicationsService.ts +107 -0
- package/clients/identityService/services/CheckerService.ts +19 -0
- package/clients/identityService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/identityService/services/OAuthService.ts +147 -0
- package/clients/identityService/services/ResourceService.ts +19 -0
- package/clients/identityService/services/UserInfoService.ts +29 -0
- package/clients/inventoryService/core/ApiError.ts +25 -0
- package/clients/inventoryService/core/ApiRequestOptions.ts +17 -0
- package/clients/inventoryService/core/ApiResult.ts +11 -0
- package/clients/inventoryService/core/CancelablePromise.ts +131 -0
- package/clients/inventoryService/core/OpenAPI.ts +32 -0
- package/clients/inventoryService/core/request.ts +322 -0
- package/clients/inventoryService/index.ts +24 -0
- package/clients/inventoryService/models/AccessTokenResponse.ts +11 -0
- package/clients/inventoryService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/inventoryService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/inventoryService/models/InfoRequest.ts +10 -0
- package/clients/inventoryService/models/InfoResponse.ts +9 -0
- package/clients/inventoryService/models/LoginRequest.ts +11 -0
- package/clients/inventoryService/models/RefreshRequest.ts +8 -0
- package/clients/inventoryService/models/RegisterRequest.ts +9 -0
- package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/inventoryService/models/ResetPasswordRequest.ts +10 -0
- package/clients/inventoryService/models/TwoFactorRequest.ts +12 -0
- package/clients/inventoryService/models/TwoFactorResponse.ts +12 -0
- package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/inventoryService/services/InventoryService.ts +25 -0
- package/clients/invoicingService/core/ApiError.ts +25 -0
- package/clients/invoicingService/core/ApiRequestOptions.ts +17 -0
- package/clients/invoicingService/core/ApiResult.ts +11 -0
- package/clients/invoicingService/core/CancelablePromise.ts +131 -0
- package/clients/invoicingService/core/OpenAPI.ts +32 -0
- package/clients/invoicingService/core/request.ts +322 -0
- package/clients/invoicingService/index.ts +28 -0
- package/clients/invoicingService/models/AccessTokenResponse.ts +11 -0
- package/clients/invoicingService/models/ErrorEnvelope.ts +12 -0
- package/clients/invoicingService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/invoicingService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/invoicingService/models/InfoRequest.ts +10 -0
- package/clients/invoicingService/models/InfoResponse.ts +9 -0
- package/clients/invoicingService/models/InvoiceDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/LoginRequest.ts +11 -0
- package/clients/invoicingService/models/RefreshRequest.ts +8 -0
- package/clients/invoicingService/models/RegisterRequest.ts +9 -0
- package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/invoicingService/models/ResetPasswordRequest.ts +10 -0
- package/clients/invoicingService/models/TwoFactorRequest.ts +12 -0
- package/clients/invoicingService/models/TwoFactorResponse.ts +12 -0
- package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/invoicingService/services/InvoicesService.ts +63 -0
- package/clients/pricingService/core/ApiError.ts +25 -0
- package/clients/pricingService/core/ApiRequestOptions.ts +17 -0
- package/clients/pricingService/core/ApiResult.ts +11 -0
- package/clients/pricingService/core/CancelablePromise.ts +131 -0
- package/clients/pricingService/core/OpenAPI.ts +32 -0
- package/clients/pricingService/core/request.ts +322 -0
- package/clients/pricingService/index.ts +29 -0
- package/clients/pricingService/models/AccessTokenResponse.ts +11 -0
- package/clients/pricingService/models/Currency.ts +9 -0
- package/clients/pricingService/models/ErrorEnvelope.ts +12 -0
- package/clients/pricingService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/pricingService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/pricingService/models/InfoRequest.ts +10 -0
- package/clients/pricingService/models/InfoResponse.ts +9 -0
- package/clients/pricingService/models/LoginRequest.ts +11 -0
- package/clients/pricingService/models/Money.ts +10 -0
- package/clients/pricingService/models/MoneyEnvelope.ts +14 -0
- package/clients/pricingService/models/RefreshRequest.ts +8 -0
- package/clients/pricingService/models/RegisterRequest.ts +9 -0
- package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/pricingService/models/ResetPasswordRequest.ts +10 -0
- package/clients/pricingService/models/TwoFactorRequest.ts +12 -0
- package/clients/pricingService/models/TwoFactorResponse.ts +12 -0
- package/clients/pricingService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/pricingService/services/PriceListsService.ts +34 -0
- package/clients/pricingService/services/PricesService.ts +82 -0
- package/clients/tenantService/core/ApiError.ts +25 -0
- package/clients/tenantService/core/ApiRequestOptions.ts +17 -0
- package/clients/tenantService/core/ApiResult.ts +11 -0
- package/clients/tenantService/core/CancelablePromise.ts +131 -0
- package/clients/tenantService/core/OpenAPI.ts +32 -0
- package/clients/tenantService/core/request.ts +322 -0
- package/clients/tenantService/index.ts +62 -0
- package/clients/tenantService/models/AccessTokenResponse.ts +11 -0
- package/clients/tenantService/models/AccountHolderCreateDto.ts +34 -0
- package/clients/tenantService/models/AggregateException.ts +18 -0
- package/clients/tenantService/models/Assembly.ts +46 -0
- package/clients/tenantService/models/BusinessCreateDto.ts +24 -0
- package/clients/tenantService/models/BusinessDto.ts +53 -0
- package/clients/tenantService/models/BusinessEnrollmentDto.ts +19 -0
- package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +14 -0
- package/clients/tenantService/models/ConstructorInfo.ts +103 -0
- package/clients/tenantService/models/CustomAttributeData.ts +15 -0
- package/clients/tenantService/models/CustomAttributeNamedArgument.ts +13 -0
- package/clients/tenantService/models/CustomAttributeTypedArgument.ts +10 -0
- package/clients/tenantService/models/Error.ts +10 -0
- package/clients/tenantService/models/EventInfo.ts +44 -0
- package/clients/tenantService/models/Exception.ts +16 -0
- package/clients/tenantService/models/FieldInfo.ts +74 -0
- package/clients/tenantService/models/ForgotPasswordRequest.ts +8 -0
- package/clients/tenantService/models/HttpValidationProblemDetails.ts +5 -0
- package/clients/tenantService/models/ICustomAttributeProvider.ts +5 -0
- package/clients/tenantService/models/InfoRequest.ts +10 -0
- package/clients/tenantService/models/InfoResponse.ts +9 -0
- package/clients/tenantService/models/IntPtr.ts +5 -0
- package/clients/tenantService/models/LoginRequest.ts +11 -0
- package/clients/tenantService/models/MemberInfo.ts +31 -0
- package/clients/tenantService/models/MethodBase.ts +103 -0
- package/clients/tenantService/models/MethodInfo.ts +108 -0
- package/clients/tenantService/models/Module.ts +19 -0
- package/clients/tenantService/models/ModuleHandle.ts +8 -0
- package/clients/tenantService/models/NotificationDto.ts +16 -0
- package/clients/tenantService/models/NotificationDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/ParameterInfo.ts +40 -0
- package/clients/tenantService/models/PropertyInfo.ts +49 -0
- package/clients/tenantService/models/RefreshRequest.ts +8 -0
- package/clients/tenantService/models/RegisterRequest.ts +9 -0
- package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +8 -0
- package/clients/tenantService/models/ResetPasswordRequest.ts +10 -0
- package/clients/tenantService/models/ResponseStatus.ts +12 -0
- package/clients/tenantService/models/RuntimeFieldHandle.ts +9 -0
- package/clients/tenantService/models/RuntimeMethodHandle.ts +9 -0
- package/clients/tenantService/models/RuntimeTypeHandle.ts +9 -0
- package/clients/tenantService/models/StringListEnvelope.ts +13 -0
- package/clients/tenantService/models/StructLayoutAttribute.ts +16 -0
- package/clients/tenantService/models/TwoFactorRequest.ts +12 -0
- package/clients/tenantService/models/TwoFactorResponse.ts +12 -0
- package/clients/tenantService/models/Type.ts +141 -0
- package/clients/tenantService/models/TypeInfo.ts +156 -0
- package/clients/tenantService/models/WalletDto.ts +21 -0
- package/clients/tenantService/models/WalletDtoTask.ts +40 -0
- package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +14 -0
- package/clients/tenantService/services/FenixAllianceAbsWebService.ts +293 -0
- package/clients/tenantService/services/TenantsService.ts +354 -0
- package/package.json +38 -0
- package/schemas/cartService/schema.s.ts +1560 -0
- package/schemas/catalogService/schema.s.ts +6109 -0
- package/schemas/contactService/schema.s.ts +674 -0
- package/schemas/forexService/schema.s.ts +526 -0
- package/schemas/holderService/schema.s.ts +831 -0
- package/schemas/identityService/schema.s.ts +1119 -0
- package/schemas/inventoryService/schema.s.ts +425 -0
- package/schemas/invoicingService/schema.s.ts +521 -0
- package/schemas/pricingService/schema.s.ts +549 -0
- package/schemas/tenantService/schema.s.ts +1606 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ItemCategoryCreateDto } from '../models/ItemCategoryCreateDto';
|
|
6
|
+
import type { ItemCategoryDtoEnvelope } from '../models/ItemCategoryDtoEnvelope';
|
|
7
|
+
import type { ItemCategoryDtoIReadOnlyCollectionEnvelope } from '../models/ItemCategoryDtoIReadOnlyCollectionEnvelope';
|
|
8
|
+
import type { ItemCategoryUpdateDto } from '../models/ItemCategoryUpdateDto';
|
|
9
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
11
|
+
import { request as __request } from '../core/request';
|
|
12
|
+
export class ItemCategoriesService {
|
|
13
|
+
/**
|
|
14
|
+
* @param businessId
|
|
15
|
+
* @param requestBody
|
|
16
|
+
* @returns ItemCategoryDtoEnvelope Created
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public static postApiV2CatalogServiceItemCategoriesCreate(
|
|
20
|
+
businessId: string,
|
|
21
|
+
requestBody?: ItemCategoryCreateDto,
|
|
22
|
+
): CancelablePromise<ItemCategoryDtoEnvelope> {
|
|
23
|
+
return __request(OpenAPI, {
|
|
24
|
+
method: 'POST',
|
|
25
|
+
url: '/api/v2/CatalogService/ItemCategories/Create',
|
|
26
|
+
query: {
|
|
27
|
+
'businessId': businessId,
|
|
28
|
+
},
|
|
29
|
+
body: requestBody,
|
|
30
|
+
mediaType: 'application/json',
|
|
31
|
+
errors: {
|
|
32
|
+
401: `Unauthorized`,
|
|
33
|
+
403: `Forbidden`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @param itemCategoryId
|
|
39
|
+
* @returns ItemCategoryDtoEnvelope Success
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
public static getApiV2CatalogServiceItemCategoriesDetails(
|
|
43
|
+
itemCategoryId: string,
|
|
44
|
+
): CancelablePromise<ItemCategoryDtoEnvelope> {
|
|
45
|
+
return __request(OpenAPI, {
|
|
46
|
+
method: 'GET',
|
|
47
|
+
url: '/api/v2/CatalogService/ItemCategories/Details/{itemCategoryId}',
|
|
48
|
+
path: {
|
|
49
|
+
'itemCategoryId': itemCategoryId,
|
|
50
|
+
},
|
|
51
|
+
errors: {
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @param businessId
|
|
59
|
+
* @param pageNumber
|
|
60
|
+
* @param pageSize
|
|
61
|
+
* @returns ItemCategoryDtoIReadOnlyCollectionEnvelope Success
|
|
62
|
+
* @throws ApiError
|
|
63
|
+
*/
|
|
64
|
+
public static getApiV2CatalogServiceItemCategoriesList(
|
|
65
|
+
businessId: string,
|
|
66
|
+
pageNumber?: number,
|
|
67
|
+
pageSize?: number,
|
|
68
|
+
): CancelablePromise<ItemCategoryDtoIReadOnlyCollectionEnvelope> {
|
|
69
|
+
return __request(OpenAPI, {
|
|
70
|
+
method: 'GET',
|
|
71
|
+
url: '/api/v2/CatalogService/ItemCategories/List',
|
|
72
|
+
query: {
|
|
73
|
+
'businessId': businessId,
|
|
74
|
+
'pageNumber': pageNumber,
|
|
75
|
+
'pageSize': pageSize,
|
|
76
|
+
},
|
|
77
|
+
errors: {
|
|
78
|
+
401: `Unauthorized`,
|
|
79
|
+
403: `Forbidden`,
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @param itemCategoryId
|
|
85
|
+
* @param requestBody
|
|
86
|
+
* @returns any Success
|
|
87
|
+
* @throws ApiError
|
|
88
|
+
*/
|
|
89
|
+
public static putApiV2CatalogServiceItemCategoriesUpdate(
|
|
90
|
+
itemCategoryId: string,
|
|
91
|
+
requestBody?: ItemCategoryUpdateDto,
|
|
92
|
+
): CancelablePromise<any> {
|
|
93
|
+
return __request(OpenAPI, {
|
|
94
|
+
method: 'PUT',
|
|
95
|
+
url: '/api/v2/CatalogService/ItemCategories/Update/{itemCategoryId}',
|
|
96
|
+
path: {
|
|
97
|
+
'itemCategoryId': itemCategoryId,
|
|
98
|
+
},
|
|
99
|
+
body: requestBody,
|
|
100
|
+
mediaType: 'application/json',
|
|
101
|
+
errors: {
|
|
102
|
+
401: `Unauthorized`,
|
|
103
|
+
403: `Forbidden`,
|
|
104
|
+
},
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* @param itemCategoryId
|
|
109
|
+
* @returns any Success
|
|
110
|
+
* @throws ApiError
|
|
111
|
+
*/
|
|
112
|
+
public static deleteApiV2CatalogServiceItemCategoriesDelete(
|
|
113
|
+
itemCategoryId: string,
|
|
114
|
+
): CancelablePromise<any> {
|
|
115
|
+
return __request(OpenAPI, {
|
|
116
|
+
method: 'DELETE',
|
|
117
|
+
url: '/api/v2/CatalogService/ItemCategories/Delete/{itemCategoryId}',
|
|
118
|
+
path: {
|
|
119
|
+
'itemCategoryId': itemCategoryId,
|
|
120
|
+
},
|
|
121
|
+
errors: {
|
|
122
|
+
401: `Unauthorized`,
|
|
123
|
+
403: `Forbidden`,
|
|
124
|
+
},
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ItemImageDtoEnvelope } from '../models/ItemImageDtoEnvelope';
|
|
6
|
+
import type { ItemImageDtoIReadOnlyCollectionEnvelope } from '../models/ItemImageDtoIReadOnlyCollectionEnvelope';
|
|
7
|
+
import type { ItemImagesCreateDto } from '../models/ItemImagesCreateDto';
|
|
8
|
+
import type { ItemImagesUpdateDto } from '../models/ItemImagesUpdateDto';
|
|
9
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
11
|
+
import { request as __request } from '../core/request';
|
|
12
|
+
export class ItemImagesService {
|
|
13
|
+
/**
|
|
14
|
+
* @param businessId
|
|
15
|
+
* @param requestBody
|
|
16
|
+
* @returns ItemImageDtoEnvelope Created
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public static postApiV2CatalogServiceItemImagesCreate(
|
|
20
|
+
businessId: string,
|
|
21
|
+
requestBody?: ItemImagesCreateDto,
|
|
22
|
+
): CancelablePromise<ItemImageDtoEnvelope> {
|
|
23
|
+
return __request(OpenAPI, {
|
|
24
|
+
method: 'POST',
|
|
25
|
+
url: '/api/v2/CatalogService/ItemImages/Create',
|
|
26
|
+
query: {
|
|
27
|
+
'businessId': businessId,
|
|
28
|
+
},
|
|
29
|
+
body: requestBody,
|
|
30
|
+
mediaType: 'application/json',
|
|
31
|
+
errors: {
|
|
32
|
+
401: `Unauthorized`,
|
|
33
|
+
403: `Forbidden`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @param itemImageId
|
|
39
|
+
* @returns ItemImageDtoEnvelope Success
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
public static getApiV2CatalogServiceItemImagesDetails(
|
|
43
|
+
itemImageId: string,
|
|
44
|
+
): CancelablePromise<ItemImageDtoEnvelope> {
|
|
45
|
+
return __request(OpenAPI, {
|
|
46
|
+
method: 'GET',
|
|
47
|
+
url: '/api/v2/CatalogService/ItemImages/Details/{itemImageId}',
|
|
48
|
+
path: {
|
|
49
|
+
'itemImageId': itemImageId,
|
|
50
|
+
},
|
|
51
|
+
errors: {
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @param businessId
|
|
59
|
+
* @param pageNumber
|
|
60
|
+
* @param pageSize
|
|
61
|
+
* @returns ItemImageDtoIReadOnlyCollectionEnvelope Success
|
|
62
|
+
* @throws ApiError
|
|
63
|
+
*/
|
|
64
|
+
public static getApiV2CatalogServiceItemImagesList(
|
|
65
|
+
businessId: string,
|
|
66
|
+
pageNumber?: number,
|
|
67
|
+
pageSize?: number,
|
|
68
|
+
): CancelablePromise<ItemImageDtoIReadOnlyCollectionEnvelope> {
|
|
69
|
+
return __request(OpenAPI, {
|
|
70
|
+
method: 'GET',
|
|
71
|
+
url: '/api/v2/CatalogService/ItemImages/List',
|
|
72
|
+
query: {
|
|
73
|
+
'businessId': businessId,
|
|
74
|
+
'pageNumber': pageNumber,
|
|
75
|
+
'pageSize': pageSize,
|
|
76
|
+
},
|
|
77
|
+
errors: {
|
|
78
|
+
401: `Unauthorized`,
|
|
79
|
+
403: `Forbidden`,
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @param itemImageId
|
|
85
|
+
* @param requestBody
|
|
86
|
+
* @returns any Success
|
|
87
|
+
* @throws ApiError
|
|
88
|
+
*/
|
|
89
|
+
public static putApiV2CatalogServiceItemImagesUpdate(
|
|
90
|
+
itemImageId: string,
|
|
91
|
+
requestBody?: ItemImagesUpdateDto,
|
|
92
|
+
): CancelablePromise<any> {
|
|
93
|
+
return __request(OpenAPI, {
|
|
94
|
+
method: 'PUT',
|
|
95
|
+
url: '/api/v2/CatalogService/ItemImages/Update/{itemImageId}',
|
|
96
|
+
path: {
|
|
97
|
+
'itemImageId': itemImageId,
|
|
98
|
+
},
|
|
99
|
+
body: requestBody,
|
|
100
|
+
mediaType: 'application/json',
|
|
101
|
+
errors: {
|
|
102
|
+
401: `Unauthorized`,
|
|
103
|
+
403: `Forbidden`,
|
|
104
|
+
},
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* @param itemImageId
|
|
109
|
+
* @returns any Success
|
|
110
|
+
* @throws ApiError
|
|
111
|
+
*/
|
|
112
|
+
public static deleteApiV2CatalogServiceItemImagesDelete(
|
|
113
|
+
itemImageId: string,
|
|
114
|
+
): CancelablePromise<any> {
|
|
115
|
+
return __request(OpenAPI, {
|
|
116
|
+
method: 'DELETE',
|
|
117
|
+
url: '/api/v2/CatalogService/ItemImages/Delete/{itemImageId}',
|
|
118
|
+
path: {
|
|
119
|
+
'itemImageId': itemImageId,
|
|
120
|
+
},
|
|
121
|
+
errors: {
|
|
122
|
+
401: `Unauthorized`,
|
|
123
|
+
403: `Forbidden`,
|
|
124
|
+
},
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ItemQuestionCreateDto } from '../models/ItemQuestionCreateDto';
|
|
6
|
+
import type { ItemQuestionDtoEnvelope } from '../models/ItemQuestionDtoEnvelope';
|
|
7
|
+
import type { ItemQuestionDtoIReadOnlyCollectionEnvelope } from '../models/ItemQuestionDtoIReadOnlyCollectionEnvelope';
|
|
8
|
+
import type { ItemQuestionUpdateDto } from '../models/ItemQuestionUpdateDto';
|
|
9
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
11
|
+
import { request as __request } from '../core/request';
|
|
12
|
+
export class ItemQuestionsService {
|
|
13
|
+
/**
|
|
14
|
+
* @param businessId
|
|
15
|
+
* @param requestBody
|
|
16
|
+
* @returns ItemQuestionDtoEnvelope Created
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public static postApiV2CatalogServiceItemQuestionsCreate(
|
|
20
|
+
businessId: string,
|
|
21
|
+
requestBody?: ItemQuestionCreateDto,
|
|
22
|
+
): CancelablePromise<ItemQuestionDtoEnvelope> {
|
|
23
|
+
return __request(OpenAPI, {
|
|
24
|
+
method: 'POST',
|
|
25
|
+
url: '/api/v2/CatalogService/ItemQuestions/Create',
|
|
26
|
+
query: {
|
|
27
|
+
'businessId': businessId,
|
|
28
|
+
},
|
|
29
|
+
body: requestBody,
|
|
30
|
+
mediaType: 'application/json',
|
|
31
|
+
errors: {
|
|
32
|
+
401: `Unauthorized`,
|
|
33
|
+
403: `Forbidden`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @param itemQuestionId
|
|
39
|
+
* @returns ItemQuestionDtoEnvelope Success
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
public static getApiV2CatalogServiceItemQuestionsDetails(
|
|
43
|
+
itemQuestionId: string,
|
|
44
|
+
): CancelablePromise<ItemQuestionDtoEnvelope> {
|
|
45
|
+
return __request(OpenAPI, {
|
|
46
|
+
method: 'GET',
|
|
47
|
+
url: '/api/v2/CatalogService/ItemQuestions/Details/{itemQuestionId}',
|
|
48
|
+
path: {
|
|
49
|
+
'itemQuestionId': itemQuestionId,
|
|
50
|
+
},
|
|
51
|
+
errors: {
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @param businessId
|
|
59
|
+
* @param pageNumber
|
|
60
|
+
* @param pageSize
|
|
61
|
+
* @returns ItemQuestionDtoIReadOnlyCollectionEnvelope Success
|
|
62
|
+
* @throws ApiError
|
|
63
|
+
*/
|
|
64
|
+
public static getApiV2CatalogServiceItemQuestionsList(
|
|
65
|
+
businessId: string,
|
|
66
|
+
pageNumber?: number,
|
|
67
|
+
pageSize?: number,
|
|
68
|
+
): CancelablePromise<ItemQuestionDtoIReadOnlyCollectionEnvelope> {
|
|
69
|
+
return __request(OpenAPI, {
|
|
70
|
+
method: 'GET',
|
|
71
|
+
url: '/api/v2/CatalogService/ItemQuestions/List',
|
|
72
|
+
query: {
|
|
73
|
+
'businessId': businessId,
|
|
74
|
+
'pageNumber': pageNumber,
|
|
75
|
+
'pageSize': pageSize,
|
|
76
|
+
},
|
|
77
|
+
errors: {
|
|
78
|
+
401: `Unauthorized`,
|
|
79
|
+
403: `Forbidden`,
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @param itemQuestionId
|
|
85
|
+
* @returns any Success
|
|
86
|
+
* @throws ApiError
|
|
87
|
+
*/
|
|
88
|
+
public static deleteApiV2CatalogServiceItemQuestionsDelete(
|
|
89
|
+
itemQuestionId: string,
|
|
90
|
+
): CancelablePromise<any> {
|
|
91
|
+
return __request(OpenAPI, {
|
|
92
|
+
method: 'DELETE',
|
|
93
|
+
url: '/api/v2/CatalogService/ItemQuestions/Delete/{itemQuestionId}',
|
|
94
|
+
path: {
|
|
95
|
+
'itemQuestionId': itemQuestionId,
|
|
96
|
+
},
|
|
97
|
+
errors: {
|
|
98
|
+
401: `Unauthorized`,
|
|
99
|
+
403: `Forbidden`,
|
|
100
|
+
},
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @param itemQuestionId
|
|
105
|
+
* @param requestBody
|
|
106
|
+
* @returns any Success
|
|
107
|
+
* @throws ApiError
|
|
108
|
+
*/
|
|
109
|
+
public static putApiV2CatalogServiceItemQuestionsUpdate(
|
|
110
|
+
itemQuestionId: string,
|
|
111
|
+
requestBody?: ItemQuestionUpdateDto,
|
|
112
|
+
): CancelablePromise<any> {
|
|
113
|
+
return __request(OpenAPI, {
|
|
114
|
+
method: 'PUT',
|
|
115
|
+
url: '/api/v2/CatalogService/ItemQuestions/Update/{itemQuestionId}',
|
|
116
|
+
path: {
|
|
117
|
+
'itemQuestionId': itemQuestionId,
|
|
118
|
+
},
|
|
119
|
+
body: requestBody,
|
|
120
|
+
mediaType: 'application/json',
|
|
121
|
+
errors: {
|
|
122
|
+
401: `Unauthorized`,
|
|
123
|
+
403: `Forbidden`,
|
|
124
|
+
},
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ItemReviewCreateDto } from '../models/ItemReviewCreateDto';
|
|
6
|
+
import type { ItemReviewDtoEnvelope } from '../models/ItemReviewDtoEnvelope';
|
|
7
|
+
import type { ItemReviewDtoIReadOnlyCollectionEnvelope } from '../models/ItemReviewDtoIReadOnlyCollectionEnvelope';
|
|
8
|
+
import type { ItemReviewUpdateDto } from '../models/ItemReviewUpdateDto';
|
|
9
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
11
|
+
import { request as __request } from '../core/request';
|
|
12
|
+
export class ItemReviewsService {
|
|
13
|
+
/**
|
|
14
|
+
* @param businessId
|
|
15
|
+
* @param requestBody
|
|
16
|
+
* @returns ItemReviewDtoEnvelope Created
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public static postApiV2CatalogServiceItemReviewsCreate(
|
|
20
|
+
businessId: string,
|
|
21
|
+
requestBody?: ItemReviewCreateDto,
|
|
22
|
+
): CancelablePromise<ItemReviewDtoEnvelope> {
|
|
23
|
+
return __request(OpenAPI, {
|
|
24
|
+
method: 'POST',
|
|
25
|
+
url: '/api/v2/CatalogService/ItemReviews/Create',
|
|
26
|
+
query: {
|
|
27
|
+
'businessId': businessId,
|
|
28
|
+
},
|
|
29
|
+
body: requestBody,
|
|
30
|
+
mediaType: 'application/json',
|
|
31
|
+
errors: {
|
|
32
|
+
401: `Unauthorized`,
|
|
33
|
+
403: `Forbidden`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @param itemReviewId
|
|
39
|
+
* @returns ItemReviewDtoEnvelope Success
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
public static getApiV2CatalogServiceItemReviewsDetails(
|
|
43
|
+
itemReviewId: string,
|
|
44
|
+
): CancelablePromise<ItemReviewDtoEnvelope> {
|
|
45
|
+
return __request(OpenAPI, {
|
|
46
|
+
method: 'GET',
|
|
47
|
+
url: '/api/v2/CatalogService/ItemReviews/Details/{itemReviewId}',
|
|
48
|
+
path: {
|
|
49
|
+
'itemReviewId': itemReviewId,
|
|
50
|
+
},
|
|
51
|
+
errors: {
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @param itemId
|
|
59
|
+
* @param pageNumber
|
|
60
|
+
* @param pageSize
|
|
61
|
+
* @returns ItemReviewDtoIReadOnlyCollectionEnvelope Success
|
|
62
|
+
* @throws ApiError
|
|
63
|
+
*/
|
|
64
|
+
public static getApiV2CatalogServiceItemReviewsItemReviews(
|
|
65
|
+
itemId: string,
|
|
66
|
+
pageNumber?: number,
|
|
67
|
+
pageSize?: number,
|
|
68
|
+
): CancelablePromise<ItemReviewDtoIReadOnlyCollectionEnvelope> {
|
|
69
|
+
return __request(OpenAPI, {
|
|
70
|
+
method: 'GET',
|
|
71
|
+
url: '/api/v2/CatalogService/ItemReviews/ItemReviews',
|
|
72
|
+
query: {
|
|
73
|
+
'itemId': itemId,
|
|
74
|
+
'pageNumber': pageNumber,
|
|
75
|
+
'pageSize': pageSize,
|
|
76
|
+
},
|
|
77
|
+
errors: {
|
|
78
|
+
401: `Unauthorized`,
|
|
79
|
+
403: `Forbidden`,
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @param itemReviewId
|
|
85
|
+
* @param requestBody
|
|
86
|
+
* @returns any Success
|
|
87
|
+
* @throws ApiError
|
|
88
|
+
*/
|
|
89
|
+
public static putApiV2CatalogServiceItemReviewsUpdate(
|
|
90
|
+
itemReviewId: string,
|
|
91
|
+
requestBody?: ItemReviewUpdateDto,
|
|
92
|
+
): CancelablePromise<any> {
|
|
93
|
+
return __request(OpenAPI, {
|
|
94
|
+
method: 'PUT',
|
|
95
|
+
url: '/api/v2/CatalogService/ItemReviews/Update/{itemReviewId}',
|
|
96
|
+
path: {
|
|
97
|
+
'itemReviewId': itemReviewId,
|
|
98
|
+
},
|
|
99
|
+
body: requestBody,
|
|
100
|
+
mediaType: 'application/json',
|
|
101
|
+
errors: {
|
|
102
|
+
401: `Unauthorized`,
|
|
103
|
+
403: `Forbidden`,
|
|
104
|
+
},
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* @param itemReviewId
|
|
109
|
+
* @returns any Success
|
|
110
|
+
* @throws ApiError
|
|
111
|
+
*/
|
|
112
|
+
public static deleteApiV2CatalogServiceItemReviewsDelete(
|
|
113
|
+
itemReviewId: string,
|
|
114
|
+
): CancelablePromise<any> {
|
|
115
|
+
return __request(OpenAPI, {
|
|
116
|
+
method: 'DELETE',
|
|
117
|
+
url: '/api/v2/CatalogService/ItemReviews/Delete/{itemReviewId}',
|
|
118
|
+
path: {
|
|
119
|
+
'itemReviewId': itemReviewId,
|
|
120
|
+
},
|
|
121
|
+
errors: {
|
|
122
|
+
401: `Unauthorized`,
|
|
123
|
+
403: `Forbidden`,
|
|
124
|
+
},
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ItemTagCreateDto } from '../models/ItemTagCreateDto';
|
|
6
|
+
import type { ItemTagDtoEnvelope } from '../models/ItemTagDtoEnvelope';
|
|
7
|
+
import type { ItemTagDtoIReadOnlyCollectionEnvelope } from '../models/ItemTagDtoIReadOnlyCollectionEnvelope';
|
|
8
|
+
import type { ItemTagUpdateDto } from '../models/ItemTagUpdateDto';
|
|
9
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
10
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
11
|
+
import { request as __request } from '../core/request';
|
|
12
|
+
export class ItemTagsService {
|
|
13
|
+
/**
|
|
14
|
+
* @param businessId
|
|
15
|
+
* @param requestBody
|
|
16
|
+
* @returns ItemTagDtoEnvelope Created
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public static postApiV2CatalogServiceItemTagsCreate(
|
|
20
|
+
businessId: string,
|
|
21
|
+
requestBody?: ItemTagCreateDto,
|
|
22
|
+
): CancelablePromise<ItemTagDtoEnvelope> {
|
|
23
|
+
return __request(OpenAPI, {
|
|
24
|
+
method: 'POST',
|
|
25
|
+
url: '/api/v2/CatalogService/ItemTags/Create',
|
|
26
|
+
query: {
|
|
27
|
+
'businessId': businessId,
|
|
28
|
+
},
|
|
29
|
+
body: requestBody,
|
|
30
|
+
mediaType: 'application/json',
|
|
31
|
+
errors: {
|
|
32
|
+
401: `Unauthorized`,
|
|
33
|
+
403: `Forbidden`,
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @param itemTagId
|
|
39
|
+
* @returns ItemTagDtoEnvelope Success
|
|
40
|
+
* @throws ApiError
|
|
41
|
+
*/
|
|
42
|
+
public static getApiV2CatalogServiceItemTagsDetails(
|
|
43
|
+
itemTagId: string,
|
|
44
|
+
): CancelablePromise<ItemTagDtoEnvelope> {
|
|
45
|
+
return __request(OpenAPI, {
|
|
46
|
+
method: 'GET',
|
|
47
|
+
url: '/api/v2/CatalogService/ItemTags/Details/{itemTagId}',
|
|
48
|
+
path: {
|
|
49
|
+
'itemTagId': itemTagId,
|
|
50
|
+
},
|
|
51
|
+
errors: {
|
|
52
|
+
401: `Unauthorized`,
|
|
53
|
+
403: `Forbidden`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @param businessId
|
|
59
|
+
* @param pageNumber
|
|
60
|
+
* @param pageSize
|
|
61
|
+
* @returns ItemTagDtoIReadOnlyCollectionEnvelope Success
|
|
62
|
+
* @throws ApiError
|
|
63
|
+
*/
|
|
64
|
+
public static getApiV2CatalogServiceItemTagsList(
|
|
65
|
+
businessId: string,
|
|
66
|
+
pageNumber?: number,
|
|
67
|
+
pageSize?: number,
|
|
68
|
+
): CancelablePromise<ItemTagDtoIReadOnlyCollectionEnvelope> {
|
|
69
|
+
return __request(OpenAPI, {
|
|
70
|
+
method: 'GET',
|
|
71
|
+
url: '/api/v2/CatalogService/ItemTags/List',
|
|
72
|
+
query: {
|
|
73
|
+
'businessId': businessId,
|
|
74
|
+
'pageNumber': pageNumber,
|
|
75
|
+
'pageSize': pageSize,
|
|
76
|
+
},
|
|
77
|
+
errors: {
|
|
78
|
+
401: `Unauthorized`,
|
|
79
|
+
403: `Forbidden`,
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* @param itemTagId
|
|
85
|
+
* @returns any Success
|
|
86
|
+
* @throws ApiError
|
|
87
|
+
*/
|
|
88
|
+
public static deleteApiV2CatalogServiceItemTagsDelete(
|
|
89
|
+
itemTagId: string,
|
|
90
|
+
): CancelablePromise<any> {
|
|
91
|
+
return __request(OpenAPI, {
|
|
92
|
+
method: 'DELETE',
|
|
93
|
+
url: '/api/v2/CatalogService/ItemTags/Delete/{itemTagId}',
|
|
94
|
+
path: {
|
|
95
|
+
'itemTagId': itemTagId,
|
|
96
|
+
},
|
|
97
|
+
errors: {
|
|
98
|
+
401: `Unauthorized`,
|
|
99
|
+
403: `Forbidden`,
|
|
100
|
+
},
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @param businessId
|
|
105
|
+
* @param itemTagId
|
|
106
|
+
* @param requestBody
|
|
107
|
+
* @returns any Success
|
|
108
|
+
* @throws ApiError
|
|
109
|
+
*/
|
|
110
|
+
public static putApiV2CatalogServiceItemTagsUpdate(
|
|
111
|
+
businessId: string,
|
|
112
|
+
itemTagId: string,
|
|
113
|
+
requestBody?: ItemTagUpdateDto,
|
|
114
|
+
): CancelablePromise<any> {
|
|
115
|
+
return __request(OpenAPI, {
|
|
116
|
+
method: 'PUT',
|
|
117
|
+
url: '/api/v2/CatalogService/ItemTags/Update/{itemTagId}',
|
|
118
|
+
path: {
|
|
119
|
+
'itemTagId': itemTagId,
|
|
120
|
+
},
|
|
121
|
+
query: {
|
|
122
|
+
'businessId': businessId,
|
|
123
|
+
},
|
|
124
|
+
body: requestBody,
|
|
125
|
+
mediaType: 'application/json',
|
|
126
|
+
errors: {
|
|
127
|
+
401: `Unauthorized`,
|
|
128
|
+
403: `Forbidden`,
|
|
129
|
+
},
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
}
|