@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,831 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export interface paths {
|
|
8
|
+
"/version": {
|
|
9
|
+
get: {
|
|
10
|
+
responses: {
|
|
11
|
+
/** @description Success */
|
|
12
|
+
200: {
|
|
13
|
+
content: never;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
"/health": {
|
|
19
|
+
get: {
|
|
20
|
+
responses: {
|
|
21
|
+
/** @description Success */
|
|
22
|
+
200: {
|
|
23
|
+
content: never;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
"/hello": {
|
|
29
|
+
get: {
|
|
30
|
+
responses: {
|
|
31
|
+
/** @description Success */
|
|
32
|
+
200: {
|
|
33
|
+
content: never;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
"/register": {
|
|
39
|
+
post: {
|
|
40
|
+
requestBody?: {
|
|
41
|
+
content: {
|
|
42
|
+
"application/json": components["schemas"]["RegisterRequest"];
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
responses: {
|
|
46
|
+
/** @description Success */
|
|
47
|
+
200: {
|
|
48
|
+
content: never;
|
|
49
|
+
};
|
|
50
|
+
/** @description Bad Request */
|
|
51
|
+
400: {
|
|
52
|
+
content: {
|
|
53
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
"/login": {
|
|
60
|
+
post: {
|
|
61
|
+
parameters: {
|
|
62
|
+
query?: {
|
|
63
|
+
useCookies?: boolean;
|
|
64
|
+
useSessionCookies?: boolean;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
requestBody?: {
|
|
68
|
+
content: {
|
|
69
|
+
"application/json": components["schemas"]["LoginRequest"];
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
responses: {
|
|
73
|
+
/** @description Success */
|
|
74
|
+
200: {
|
|
75
|
+
content: {
|
|
76
|
+
"application/json": components["schemas"]["AccessTokenResponse"];
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
"/refresh": {
|
|
83
|
+
post: {
|
|
84
|
+
requestBody?: {
|
|
85
|
+
content: {
|
|
86
|
+
"application/json": components["schemas"]["RefreshRequest"];
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
responses: {
|
|
90
|
+
/** @description Success */
|
|
91
|
+
200: {
|
|
92
|
+
content: {
|
|
93
|
+
"application/json": components["schemas"]["AccessTokenResponse"];
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
"/confirmEmail": {
|
|
100
|
+
get: operations["MapIdentityApi-/confirmEmail"];
|
|
101
|
+
};
|
|
102
|
+
"/resendConfirmationEmail": {
|
|
103
|
+
post: {
|
|
104
|
+
requestBody?: {
|
|
105
|
+
content: {
|
|
106
|
+
"application/json": components["schemas"]["ResendConfirmationEmailRequest"];
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
responses: {
|
|
110
|
+
/** @description Success */
|
|
111
|
+
200: {
|
|
112
|
+
content: never;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
"/forgotPassword": {
|
|
118
|
+
post: {
|
|
119
|
+
requestBody?: {
|
|
120
|
+
content: {
|
|
121
|
+
"application/json": components["schemas"]["ForgotPasswordRequest"];
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
responses: {
|
|
125
|
+
/** @description Success */
|
|
126
|
+
200: {
|
|
127
|
+
content: never;
|
|
128
|
+
};
|
|
129
|
+
/** @description Bad Request */
|
|
130
|
+
400: {
|
|
131
|
+
content: {
|
|
132
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
"/resetPassword": {
|
|
139
|
+
post: {
|
|
140
|
+
requestBody?: {
|
|
141
|
+
content: {
|
|
142
|
+
"application/json": components["schemas"]["ResetPasswordRequest"];
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
responses: {
|
|
146
|
+
/** @description Success */
|
|
147
|
+
200: {
|
|
148
|
+
content: never;
|
|
149
|
+
};
|
|
150
|
+
/** @description Bad Request */
|
|
151
|
+
400: {
|
|
152
|
+
content: {
|
|
153
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
"/manage/2fa": {
|
|
160
|
+
post: {
|
|
161
|
+
requestBody?: {
|
|
162
|
+
content: {
|
|
163
|
+
"application/json": components["schemas"]["TwoFactorRequest"];
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
responses: {
|
|
167
|
+
/** @description Success */
|
|
168
|
+
200: {
|
|
169
|
+
content: {
|
|
170
|
+
"application/json": components["schemas"]["TwoFactorResponse"];
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
/** @description Bad Request */
|
|
174
|
+
400: {
|
|
175
|
+
content: {
|
|
176
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
/** @description Not Found */
|
|
180
|
+
404: {
|
|
181
|
+
content: never;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
"/manage/info": {
|
|
187
|
+
get: {
|
|
188
|
+
responses: {
|
|
189
|
+
/** @description Success */
|
|
190
|
+
200: {
|
|
191
|
+
content: {
|
|
192
|
+
"application/json": components["schemas"]["InfoResponse"];
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
/** @description Bad Request */
|
|
196
|
+
400: {
|
|
197
|
+
content: {
|
|
198
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
/** @description Not Found */
|
|
202
|
+
404: {
|
|
203
|
+
content: never;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
post: {
|
|
208
|
+
requestBody?: {
|
|
209
|
+
content: {
|
|
210
|
+
"application/json": components["schemas"]["InfoRequest"];
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
responses: {
|
|
214
|
+
/** @description Success */
|
|
215
|
+
200: {
|
|
216
|
+
content: {
|
|
217
|
+
"application/json": components["schemas"]["InfoResponse"];
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
/** @description Bad Request */
|
|
221
|
+
400: {
|
|
222
|
+
content: {
|
|
223
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
/** @description Not Found */
|
|
227
|
+
404: {
|
|
228
|
+
content: never;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
"/Account/PerformExternalLogin": {
|
|
234
|
+
post: {
|
|
235
|
+
requestBody?: {
|
|
236
|
+
content: {
|
|
237
|
+
"multipart/form-data": {
|
|
238
|
+
provider: string;
|
|
239
|
+
returnUrl: string;
|
|
240
|
+
};
|
|
241
|
+
"application/x-www-form-urlencoded": {
|
|
242
|
+
provider: string;
|
|
243
|
+
returnUrl: string;
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
responses: {
|
|
248
|
+
/** @description Success */
|
|
249
|
+
200: {
|
|
250
|
+
content: never;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
"/Account/Logout": {
|
|
256
|
+
post: {
|
|
257
|
+
requestBody?: {
|
|
258
|
+
content: {
|
|
259
|
+
"multipart/form-data": {
|
|
260
|
+
returnUrl: string;
|
|
261
|
+
};
|
|
262
|
+
"application/x-www-form-urlencoded": {
|
|
263
|
+
returnUrl: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
responses: {
|
|
268
|
+
/** @description Success */
|
|
269
|
+
200: {
|
|
270
|
+
content: never;
|
|
271
|
+
};
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
"/Account/Manage/LinkExternalLogin": {
|
|
276
|
+
post: {
|
|
277
|
+
requestBody?: {
|
|
278
|
+
content: {
|
|
279
|
+
"multipart/form-data": {
|
|
280
|
+
provider: string;
|
|
281
|
+
};
|
|
282
|
+
"application/x-www-form-urlencoded": {
|
|
283
|
+
provider: string;
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
responses: {
|
|
288
|
+
/** @description Success */
|
|
289
|
+
200: {
|
|
290
|
+
content: never;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
"/Account/Manage/DownloadPersonalData": {
|
|
296
|
+
post: {
|
|
297
|
+
responses: {
|
|
298
|
+
/** @description Success */
|
|
299
|
+
200: {
|
|
300
|
+
content: never;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
"/api/v2/Me": {
|
|
306
|
+
get: {
|
|
307
|
+
parameters: {
|
|
308
|
+
query?: {
|
|
309
|
+
"api-version"?: string;
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
responses: {
|
|
313
|
+
/** @description Success */
|
|
314
|
+
200: {
|
|
315
|
+
content: {
|
|
316
|
+
"application/json": components["schemas"]["AccountHolderDtoEnvelope"];
|
|
317
|
+
"application/xml": components["schemas"]["AccountHolderDtoEnvelope"];
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
/** @description Unauthorized */
|
|
321
|
+
401: {
|
|
322
|
+
content: {
|
|
323
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
324
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
"/api/v2/Me/Follows": {
|
|
331
|
+
get: {
|
|
332
|
+
parameters: {
|
|
333
|
+
query?: {
|
|
334
|
+
pageSize?: number;
|
|
335
|
+
pageIndex?: number;
|
|
336
|
+
"api-version"?: string;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
responses: {
|
|
340
|
+
/** @description Success */
|
|
341
|
+
200: {
|
|
342
|
+
content: {
|
|
343
|
+
"application/json": components["schemas"]["FollowRecordDto"][];
|
|
344
|
+
"application/xml": components["schemas"]["FollowRecordDto"][];
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
/** @description Unauthorized */
|
|
348
|
+
401: {
|
|
349
|
+
content: {
|
|
350
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
351
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
"/api/v2/Me/Businesses": {
|
|
358
|
+
get: {
|
|
359
|
+
parameters: {
|
|
360
|
+
query?: {
|
|
361
|
+
"api-version"?: string;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
responses: {
|
|
365
|
+
/** @description Success */
|
|
366
|
+
200: {
|
|
367
|
+
content: {
|
|
368
|
+
"application/json": components["schemas"]["BusinessDto"][];
|
|
369
|
+
"application/xml": components["schemas"]["BusinessDto"][];
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
/** @description Unauthorized */
|
|
373
|
+
401: {
|
|
374
|
+
content: {
|
|
375
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
376
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
};
|
|
382
|
+
"/api/v2/Me/Enrollments": {
|
|
383
|
+
get: {
|
|
384
|
+
parameters: {
|
|
385
|
+
query?: {
|
|
386
|
+
"api-version"?: string;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
responses: {
|
|
390
|
+
/** @description Success */
|
|
391
|
+
200: {
|
|
392
|
+
content: {
|
|
393
|
+
"application/json": components["schemas"]["BusinessEnrollmentDto"][];
|
|
394
|
+
"application/xml": components["schemas"]["BusinessEnrollmentDto"][];
|
|
395
|
+
};
|
|
396
|
+
};
|
|
397
|
+
/** @description Unauthorized */
|
|
398
|
+
401: {
|
|
399
|
+
content: {
|
|
400
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
401
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
"/api/v2/Me/Library": {
|
|
408
|
+
get: {
|
|
409
|
+
parameters: {
|
|
410
|
+
query?: {
|
|
411
|
+
"api-version"?: string;
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
responses: {
|
|
415
|
+
/** @description Success */
|
|
416
|
+
200: {
|
|
417
|
+
content: never;
|
|
418
|
+
};
|
|
419
|
+
/** @description Unauthorized */
|
|
420
|
+
401: {
|
|
421
|
+
content: {
|
|
422
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
423
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
"/api/v2/Me/Addresses": {
|
|
430
|
+
get: {
|
|
431
|
+
parameters: {
|
|
432
|
+
query?: {
|
|
433
|
+
"api-version"?: string;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
responses: {
|
|
437
|
+
/** @description Unauthorized */
|
|
438
|
+
401: {
|
|
439
|
+
content: {
|
|
440
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
441
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
"/api/v2/Me/Notifications": {
|
|
448
|
+
get: {
|
|
449
|
+
parameters: {
|
|
450
|
+
query?: {
|
|
451
|
+
"api-version"?: string;
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
responses: {
|
|
455
|
+
/** @description Unauthorized */
|
|
456
|
+
401: {
|
|
457
|
+
content: {
|
|
458
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
459
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
"/api/v2/Me/Orders": {
|
|
466
|
+
get: {
|
|
467
|
+
parameters: {
|
|
468
|
+
query?: {
|
|
469
|
+
"api-version"?: string;
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
responses: {
|
|
473
|
+
/** @description Unauthorized */
|
|
474
|
+
401: {
|
|
475
|
+
content: {
|
|
476
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
477
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
};
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
"/api/v2/Me/Invoices": {
|
|
484
|
+
get: {
|
|
485
|
+
parameters: {
|
|
486
|
+
query?: {
|
|
487
|
+
"api-version"?: string;
|
|
488
|
+
};
|
|
489
|
+
};
|
|
490
|
+
responses: {
|
|
491
|
+
/** @description Unauthorized */
|
|
492
|
+
401: {
|
|
493
|
+
content: {
|
|
494
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
495
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
496
|
+
};
|
|
497
|
+
};
|
|
498
|
+
};
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
"/api/v2/Me/Payments": {
|
|
502
|
+
get: {
|
|
503
|
+
parameters: {
|
|
504
|
+
query?: {
|
|
505
|
+
"api-version"?: string;
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
responses: {
|
|
509
|
+
/** @description Unauthorized */
|
|
510
|
+
401: {
|
|
511
|
+
content: {
|
|
512
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
513
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
514
|
+
};
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
"/api/v2/Me/Settings": {
|
|
520
|
+
get: {
|
|
521
|
+
parameters: {
|
|
522
|
+
query?: {
|
|
523
|
+
"api-version"?: string;
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
responses: {
|
|
527
|
+
/** @description Unauthorized */
|
|
528
|
+
401: {
|
|
529
|
+
content: {
|
|
530
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
531
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
export type webhooks = Record<string, never>;
|
|
540
|
+
|
|
541
|
+
export interface components {
|
|
542
|
+
schemas: {
|
|
543
|
+
AccessTokenResponse: {
|
|
544
|
+
tokenType?: string | null;
|
|
545
|
+
accessToken?: string | null;
|
|
546
|
+
/** Format: int64 */
|
|
547
|
+
expiresIn?: number;
|
|
548
|
+
refreshToken?: string | null;
|
|
549
|
+
};
|
|
550
|
+
AccountHolderCreateDto: {
|
|
551
|
+
/** Format: uuid */
|
|
552
|
+
id?: string;
|
|
553
|
+
qualifiedName?: string | null;
|
|
554
|
+
/** Format: date-time */
|
|
555
|
+
birthday?: string;
|
|
556
|
+
firstName?: string | null;
|
|
557
|
+
lastName?: string | null;
|
|
558
|
+
publicName?: string | null;
|
|
559
|
+
idProvider?: string | null;
|
|
560
|
+
languageID?: string | null;
|
|
561
|
+
timezoneID?: string | null;
|
|
562
|
+
gender?: string | null;
|
|
563
|
+
cityID?: string | null;
|
|
564
|
+
stateID?: string | null;
|
|
565
|
+
email?: string | null;
|
|
566
|
+
about?: string | null;
|
|
567
|
+
jobTitle?: string | null;
|
|
568
|
+
coverURL?: string | null;
|
|
569
|
+
avatarURL?: string | null;
|
|
570
|
+
gitHubURL?: string | null;
|
|
571
|
+
websiteURL?: string | null;
|
|
572
|
+
twitterUrl?: string | null;
|
|
573
|
+
facebookURL?: string | null;
|
|
574
|
+
youTubeURL?: string | null;
|
|
575
|
+
linkedInURL?: string | null;
|
|
576
|
+
instagramUrl?: string | null;
|
|
577
|
+
countryID?: string | null;
|
|
578
|
+
countryName?: string | null;
|
|
579
|
+
currencyID?: string | null;
|
|
580
|
+
};
|
|
581
|
+
AccountHolderDto: {
|
|
582
|
+
id?: string | null;
|
|
583
|
+
/** Format: date-time */
|
|
584
|
+
timestamp?: string | null;
|
|
585
|
+
qualifiedName?: string | null;
|
|
586
|
+
/** Format: date-time */
|
|
587
|
+
birthday?: string;
|
|
588
|
+
firstName?: string | null;
|
|
589
|
+
lastName?: string | null;
|
|
590
|
+
publicName?: string | null;
|
|
591
|
+
idProvider?: string | null;
|
|
592
|
+
languageId?: string | null;
|
|
593
|
+
timezoneId?: string | null;
|
|
594
|
+
gender?: string | null;
|
|
595
|
+
cityId?: string | null;
|
|
596
|
+
stateId?: string | null;
|
|
597
|
+
email?: string | null;
|
|
598
|
+
about?: string | null;
|
|
599
|
+
jobTitle?: string | null;
|
|
600
|
+
coverUrl?: string | null;
|
|
601
|
+
avatarUrl?: string | null;
|
|
602
|
+
gitHubUrl?: string | null;
|
|
603
|
+
websiteUrl?: string | null;
|
|
604
|
+
twitterUrl?: string | null;
|
|
605
|
+
facebookUrl?: string | null;
|
|
606
|
+
youTubeUrl?: string | null;
|
|
607
|
+
linkedInUrl?: string | null;
|
|
608
|
+
instagramUrl?: string | null;
|
|
609
|
+
lockoutEnabled?: boolean;
|
|
610
|
+
socialFeedId?: string | null;
|
|
611
|
+
socialProfileId?: string | null;
|
|
612
|
+
currentTenantId?: string | null;
|
|
613
|
+
currentEnrollmentId?: string | null;
|
|
614
|
+
cartId?: string | null;
|
|
615
|
+
walletId?: string | null;
|
|
616
|
+
countryId?: string | null;
|
|
617
|
+
currencyId?: string | null;
|
|
618
|
+
userName?: string | null;
|
|
619
|
+
status?: string | null;
|
|
620
|
+
phoneNumber?: string | null;
|
|
621
|
+
publicIdentifier?: string | null;
|
|
622
|
+
identityProvider?: string | null;
|
|
623
|
+
phoneNumberConfirmed?: boolean;
|
|
624
|
+
emailConfirmed?: boolean;
|
|
625
|
+
/**
|
|
626
|
+
* Format: int32
|
|
627
|
+
* @enum {integer}
|
|
628
|
+
*/
|
|
629
|
+
themeMode?: 0 | 1 | 2;
|
|
630
|
+
/**
|
|
631
|
+
* Format: int32
|
|
632
|
+
* @enum {integer}
|
|
633
|
+
*/
|
|
634
|
+
availability?: 0 | 1 | 2 | 3 | 4;
|
|
635
|
+
/** Format: int32 */
|
|
636
|
+
followsCount?: number | null;
|
|
637
|
+
/** Format: int32 */
|
|
638
|
+
followersCount?: number | null;
|
|
639
|
+
/** Format: int32 */
|
|
640
|
+
enrollmentsCount?: number | null;
|
|
641
|
+
/** Format: int32 */
|
|
642
|
+
socialPostsCount?: number | null;
|
|
643
|
+
/** Format: int32 */
|
|
644
|
+
unreadMessagesCount?: number | null;
|
|
645
|
+
/** Format: int32 */
|
|
646
|
+
unreadNotificationsCount?: number | null;
|
|
647
|
+
webUrl?: string | null;
|
|
648
|
+
countryStateId?: string | null;
|
|
649
|
+
selectedBusinessId?: string | null;
|
|
650
|
+
};
|
|
651
|
+
AccountHolderDtoEnvelope: {
|
|
652
|
+
errorMessage?: string | null;
|
|
653
|
+
isSuccess?: boolean;
|
|
654
|
+
/** Format: date-time */
|
|
655
|
+
timestamp?: string;
|
|
656
|
+
activityId?: string | null;
|
|
657
|
+
correlationId?: string | null;
|
|
658
|
+
result?: components["schemas"]["AccountHolderDto"];
|
|
659
|
+
};
|
|
660
|
+
BusinessDto: {
|
|
661
|
+
id?: string | null;
|
|
662
|
+
/** Format: date-time */
|
|
663
|
+
timestamp?: string | null;
|
|
664
|
+
qualifiedName?: string | null;
|
|
665
|
+
taxID?: string | null;
|
|
666
|
+
about?: string | null;
|
|
667
|
+
walletID?: string | null;
|
|
668
|
+
socialFeedID?: string | null;
|
|
669
|
+
businessIndustryID?: string | null;
|
|
670
|
+
businessSegmentID?: string | null;
|
|
671
|
+
socialProfileID?: string | null;
|
|
672
|
+
languageId?: string | null;
|
|
673
|
+
name?: string | null;
|
|
674
|
+
duns?: string | null;
|
|
675
|
+
slogan?: string | null;
|
|
676
|
+
legalName?: string | null;
|
|
677
|
+
coverUrl?: string | null;
|
|
678
|
+
avatarUrl?: string | null;
|
|
679
|
+
cartID?: string | null;
|
|
680
|
+
currencyID?: string | null;
|
|
681
|
+
timezoneID?: string | null;
|
|
682
|
+
countryID?: string | null;
|
|
683
|
+
stateID?: string | null;
|
|
684
|
+
cityID?: string | null;
|
|
685
|
+
/** Format: int32 */
|
|
686
|
+
followsCount?: number | null;
|
|
687
|
+
/** Format: int32 */
|
|
688
|
+
followersCount?: number | null;
|
|
689
|
+
/** Format: int32 */
|
|
690
|
+
enrollmentsCount?: number | null;
|
|
691
|
+
/** Format: int32 */
|
|
692
|
+
socialPostsCount?: number | null;
|
|
693
|
+
/** Format: int32 */
|
|
694
|
+
unreadMessagesCount?: number | null;
|
|
695
|
+
/** Format: int32 */
|
|
696
|
+
unreadNotificationsCount?: number | null;
|
|
697
|
+
enrollmentID?: string | null;
|
|
698
|
+
c2BFollowID?: string | null;
|
|
699
|
+
b2CFollowID?: string | null;
|
|
700
|
+
email?: string | null;
|
|
701
|
+
phone?: string | null;
|
|
702
|
+
webUrl?: string | null;
|
|
703
|
+
facebookUrl?: string | null;
|
|
704
|
+
twitterUrl?: string | null;
|
|
705
|
+
gitHubUrl?: string | null;
|
|
706
|
+
linkedInUrl?: string | null;
|
|
707
|
+
instagramUrl?: string | null;
|
|
708
|
+
youTubeUrl?: string | null;
|
|
709
|
+
whatsAppNumber?: string | null;
|
|
710
|
+
verified?: boolean;
|
|
711
|
+
businessName?: string | null;
|
|
712
|
+
businessLegalName?: string | null;
|
|
713
|
+
twitterUsername?: string | null;
|
|
714
|
+
};
|
|
715
|
+
BusinessEnrollmentDto: {
|
|
716
|
+
id?: string | null;
|
|
717
|
+
isRoot?: boolean;
|
|
718
|
+
isOwner?: boolean;
|
|
719
|
+
isAdmin?: boolean;
|
|
720
|
+
isDisabled?: boolean;
|
|
721
|
+
isBusinessOwner?: boolean;
|
|
722
|
+
businessID?: string | null;
|
|
723
|
+
holderID?: string | null;
|
|
724
|
+
holder?: components["schemas"]["AccountHolderCreateDto"];
|
|
725
|
+
tenant?: components["schemas"]["BusinessDto"];
|
|
726
|
+
};
|
|
727
|
+
ErrorEnvelope: {
|
|
728
|
+
errorMessage?: string | null;
|
|
729
|
+
isSuccess?: boolean;
|
|
730
|
+
/** Format: date-time */
|
|
731
|
+
timestamp?: string;
|
|
732
|
+
activityId?: string | null;
|
|
733
|
+
correlationId?: string | null;
|
|
734
|
+
};
|
|
735
|
+
FollowRecordDto: {
|
|
736
|
+
id?: string | null;
|
|
737
|
+
type?: string | null;
|
|
738
|
+
followerID?: string | null;
|
|
739
|
+
followedID?: string | null;
|
|
740
|
+
alerts?: boolean;
|
|
741
|
+
};
|
|
742
|
+
ForgotPasswordRequest: {
|
|
743
|
+
email?: string | null;
|
|
744
|
+
};
|
|
745
|
+
HttpValidationProblemDetails: {
|
|
746
|
+
type?: string | null;
|
|
747
|
+
title?: string | null;
|
|
748
|
+
/** Format: int32 */
|
|
749
|
+
status?: number | null;
|
|
750
|
+
detail?: string | null;
|
|
751
|
+
instance?: string | null;
|
|
752
|
+
errors?: {
|
|
753
|
+
[key: string]: string[];
|
|
754
|
+
} | null;
|
|
755
|
+
[key: string]: unknown;
|
|
756
|
+
};
|
|
757
|
+
InfoRequest: {
|
|
758
|
+
newEmail?: string | null;
|
|
759
|
+
newPassword?: string | null;
|
|
760
|
+
oldPassword?: string | null;
|
|
761
|
+
};
|
|
762
|
+
InfoResponse: {
|
|
763
|
+
email?: string | null;
|
|
764
|
+
isEmailConfirmed?: boolean;
|
|
765
|
+
};
|
|
766
|
+
LoginRequest: {
|
|
767
|
+
email?: string | null;
|
|
768
|
+
password?: string | null;
|
|
769
|
+
twoFactorCode?: string | null;
|
|
770
|
+
twoFactorRecoveryCode?: string | null;
|
|
771
|
+
};
|
|
772
|
+
RefreshRequest: {
|
|
773
|
+
refreshToken?: string | null;
|
|
774
|
+
};
|
|
775
|
+
RegisterRequest: {
|
|
776
|
+
email?: string | null;
|
|
777
|
+
password?: string | null;
|
|
778
|
+
};
|
|
779
|
+
ResendConfirmationEmailRequest: {
|
|
780
|
+
email?: string | null;
|
|
781
|
+
};
|
|
782
|
+
ResetPasswordRequest: {
|
|
783
|
+
email?: string | null;
|
|
784
|
+
resetCode?: string | null;
|
|
785
|
+
newPassword?: string | null;
|
|
786
|
+
};
|
|
787
|
+
TwoFactorRequest: {
|
|
788
|
+
enable?: boolean | null;
|
|
789
|
+
twoFactorCode?: string | null;
|
|
790
|
+
resetSharedKey?: boolean;
|
|
791
|
+
resetRecoveryCodes?: boolean;
|
|
792
|
+
forgetMachine?: boolean;
|
|
793
|
+
};
|
|
794
|
+
TwoFactorResponse: {
|
|
795
|
+
sharedKey?: string | null;
|
|
796
|
+
/** Format: int32 */
|
|
797
|
+
recoveryCodesLeft?: number;
|
|
798
|
+
recoveryCodes?: string[] | null;
|
|
799
|
+
isTwoFactorEnabled?: boolean;
|
|
800
|
+
isMachineRemembered?: boolean;
|
|
801
|
+
};
|
|
802
|
+
};
|
|
803
|
+
responses: never;
|
|
804
|
+
parameters: never;
|
|
805
|
+
requestBodies: never;
|
|
806
|
+
headers: never;
|
|
807
|
+
pathItems: never;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
export type $defs = Record<string, never>;
|
|
811
|
+
|
|
812
|
+
export type external = Record<string, never>;
|
|
813
|
+
|
|
814
|
+
export interface operations {
|
|
815
|
+
|
|
816
|
+
"MapIdentityApi-/confirmEmail": {
|
|
817
|
+
parameters: {
|
|
818
|
+
query?: {
|
|
819
|
+
userId?: string;
|
|
820
|
+
code?: string;
|
|
821
|
+
changedEmail?: string;
|
|
822
|
+
};
|
|
823
|
+
};
|
|
824
|
+
responses: {
|
|
825
|
+
/** @description Success */
|
|
826
|
+
200: {
|
|
827
|
+
content: never;
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
};
|
|
831
|
+
}
|