@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,40 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { CustomAttributeData } from './CustomAttributeData';
|
|
6
|
+
import type { MemberInfo } from './MemberInfo';
|
|
7
|
+
import type { Type } from './Type';
|
|
8
|
+
export type ParameterInfo = {
|
|
9
|
+
readonly attributes?: ParameterInfo.attributes;
|
|
10
|
+
member?: MemberInfo;
|
|
11
|
+
readonly name?: string | null;
|
|
12
|
+
parameterType?: Type;
|
|
13
|
+
readonly position?: number;
|
|
14
|
+
readonly isIn?: boolean;
|
|
15
|
+
readonly isLcid?: boolean;
|
|
16
|
+
readonly isOptional?: boolean;
|
|
17
|
+
readonly isOut?: boolean;
|
|
18
|
+
readonly isRetval?: boolean;
|
|
19
|
+
readonly defaultValue?: any;
|
|
20
|
+
readonly rawDefaultValue?: any;
|
|
21
|
+
readonly hasDefaultValue?: boolean;
|
|
22
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
23
|
+
readonly metadataToken?: number;
|
|
24
|
+
};
|
|
25
|
+
export namespace ParameterInfo {
|
|
26
|
+
export enum attributes {
|
|
27
|
+
'_0' = 0,
|
|
28
|
+
'_1' = 1,
|
|
29
|
+
'_2' = 2,
|
|
30
|
+
'_4' = 4,
|
|
31
|
+
'_8' = 8,
|
|
32
|
+
'_16' = 16,
|
|
33
|
+
'_4096' = 4096,
|
|
34
|
+
'_8192' = 8192,
|
|
35
|
+
'_16384' = 16384,
|
|
36
|
+
'_32768' = 32768,
|
|
37
|
+
'_61440' = 61440,
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { CustomAttributeData } from './CustomAttributeData';
|
|
6
|
+
import type { MethodInfo } from './MethodInfo';
|
|
7
|
+
import type { Module } from './Module';
|
|
8
|
+
import type { Type } from './Type';
|
|
9
|
+
export type PropertyInfo = {
|
|
10
|
+
readonly name?: string | null;
|
|
11
|
+
declaringType?: Type;
|
|
12
|
+
reflectedType?: Type;
|
|
13
|
+
module?: Module;
|
|
14
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
15
|
+
readonly isCollectible?: boolean;
|
|
16
|
+
readonly metadataToken?: number;
|
|
17
|
+
readonly memberType?: PropertyInfo.memberType;
|
|
18
|
+
propertyType?: Type;
|
|
19
|
+
readonly attributes?: PropertyInfo.attributes;
|
|
20
|
+
readonly isSpecialName?: boolean;
|
|
21
|
+
readonly canRead?: boolean;
|
|
22
|
+
readonly canWrite?: boolean;
|
|
23
|
+
getMethod?: MethodInfo;
|
|
24
|
+
setMethod?: MethodInfo;
|
|
25
|
+
};
|
|
26
|
+
export namespace PropertyInfo {
|
|
27
|
+
export enum memberType {
|
|
28
|
+
'_1' = 1,
|
|
29
|
+
'_2' = 2,
|
|
30
|
+
'_4' = 4,
|
|
31
|
+
'_8' = 8,
|
|
32
|
+
'_16' = 16,
|
|
33
|
+
'_32' = 32,
|
|
34
|
+
'_64' = 64,
|
|
35
|
+
'_128' = 128,
|
|
36
|
+
'_191' = 191,
|
|
37
|
+
}
|
|
38
|
+
export enum attributes {
|
|
39
|
+
'_0' = 0,
|
|
40
|
+
'_512' = 512,
|
|
41
|
+
'_1024' = 1024,
|
|
42
|
+
'_4096' = 4096,
|
|
43
|
+
'_8192' = 8192,
|
|
44
|
+
'_16384' = 16384,
|
|
45
|
+
'_32768' = 32768,
|
|
46
|
+
'_62464' = 62464,
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ResetPasswordRequest = {
|
|
6
|
+
email?: string | null;
|
|
7
|
+
resetCode?: string | null;
|
|
8
|
+
newPassword?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Error } from './Error';
|
|
6
|
+
export type ResponseStatus = {
|
|
7
|
+
success?: boolean;
|
|
8
|
+
error?: Error;
|
|
9
|
+
correlationID?: string | null;
|
|
10
|
+
utcTimestamp?: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type StringListEnvelope = {
|
|
6
|
+
errorMessage?: string | null;
|
|
7
|
+
readonly isSuccess?: boolean;
|
|
8
|
+
readonly timestamp?: string;
|
|
9
|
+
readonly activityId?: string | null;
|
|
10
|
+
correlationId?: string | null;
|
|
11
|
+
result?: Array<string> | null;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type StructLayoutAttribute = {
|
|
6
|
+
readonly typeId?: any;
|
|
7
|
+
readonly value?: StructLayoutAttribute.value;
|
|
8
|
+
};
|
|
9
|
+
export namespace StructLayoutAttribute {
|
|
10
|
+
export enum value {
|
|
11
|
+
'_0' = 0,
|
|
12
|
+
'_2' = 2,
|
|
13
|
+
'_3' = 3,
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type TwoFactorRequest = {
|
|
6
|
+
enable?: boolean | null;
|
|
7
|
+
twoFactorCode?: string | null;
|
|
8
|
+
resetSharedKey?: boolean;
|
|
9
|
+
resetRecoveryCodes?: boolean;
|
|
10
|
+
forgetMachine?: boolean;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type TwoFactorResponse = {
|
|
6
|
+
sharedKey?: string | null;
|
|
7
|
+
recoveryCodesLeft?: number;
|
|
8
|
+
recoveryCodes?: Array<string> | null;
|
|
9
|
+
isTwoFactorEnabled?: boolean;
|
|
10
|
+
isMachineRemembered?: boolean;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Assembly } from './Assembly';
|
|
6
|
+
import type { ConstructorInfo } from './ConstructorInfo';
|
|
7
|
+
import type { CustomAttributeData } from './CustomAttributeData';
|
|
8
|
+
import type { MethodBase } from './MethodBase';
|
|
9
|
+
import type { Module } from './Module';
|
|
10
|
+
import type { RuntimeTypeHandle } from './RuntimeTypeHandle';
|
|
11
|
+
import type { StructLayoutAttribute } from './StructLayoutAttribute';
|
|
12
|
+
export type Type = {
|
|
13
|
+
readonly name?: string | null;
|
|
14
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
15
|
+
readonly isCollectible?: boolean;
|
|
16
|
+
readonly metadataToken?: number;
|
|
17
|
+
readonly isInterface?: boolean;
|
|
18
|
+
readonly memberType?: Type.memberType;
|
|
19
|
+
readonly namespace?: string | null;
|
|
20
|
+
readonly assemblyQualifiedName?: string | null;
|
|
21
|
+
readonly fullName?: string | null;
|
|
22
|
+
assembly?: Assembly;
|
|
23
|
+
module?: Module;
|
|
24
|
+
readonly isNested?: boolean;
|
|
25
|
+
declaringType?: Type;
|
|
26
|
+
declaringMethod?: MethodBase;
|
|
27
|
+
reflectedType?: Type;
|
|
28
|
+
underlyingSystemType?: Type;
|
|
29
|
+
readonly isTypeDefinition?: boolean;
|
|
30
|
+
readonly isArray?: boolean;
|
|
31
|
+
readonly isByRef?: boolean;
|
|
32
|
+
readonly isPointer?: boolean;
|
|
33
|
+
readonly isConstructedGenericType?: boolean;
|
|
34
|
+
readonly isGenericParameter?: boolean;
|
|
35
|
+
readonly isGenericTypeParameter?: boolean;
|
|
36
|
+
readonly isGenericMethodParameter?: boolean;
|
|
37
|
+
readonly isGenericType?: boolean;
|
|
38
|
+
readonly isGenericTypeDefinition?: boolean;
|
|
39
|
+
readonly isSZArray?: boolean;
|
|
40
|
+
readonly isVariableBoundArray?: boolean;
|
|
41
|
+
readonly isByRefLike?: boolean;
|
|
42
|
+
readonly isFunctionPointer?: boolean;
|
|
43
|
+
readonly isUnmanagedFunctionPointer?: boolean;
|
|
44
|
+
readonly hasElementType?: boolean;
|
|
45
|
+
readonly genericTypeArguments?: Array<Type> | null;
|
|
46
|
+
readonly genericParameterPosition?: number;
|
|
47
|
+
readonly genericParameterAttributes?: Type.genericParameterAttributes;
|
|
48
|
+
readonly attributes?: Type.attributes;
|
|
49
|
+
readonly isAbstract?: boolean;
|
|
50
|
+
readonly isImport?: boolean;
|
|
51
|
+
readonly isSealed?: boolean;
|
|
52
|
+
readonly isSpecialName?: boolean;
|
|
53
|
+
readonly isClass?: boolean;
|
|
54
|
+
readonly isNestedAssembly?: boolean;
|
|
55
|
+
readonly isNestedFamANDAssem?: boolean;
|
|
56
|
+
readonly isNestedFamily?: boolean;
|
|
57
|
+
readonly isNestedFamORAssem?: boolean;
|
|
58
|
+
readonly isNestedPrivate?: boolean;
|
|
59
|
+
readonly isNestedPublic?: boolean;
|
|
60
|
+
readonly isNotPublic?: boolean;
|
|
61
|
+
readonly isPublic?: boolean;
|
|
62
|
+
readonly isAutoLayout?: boolean;
|
|
63
|
+
readonly isExplicitLayout?: boolean;
|
|
64
|
+
readonly isLayoutSequential?: boolean;
|
|
65
|
+
readonly isAnsiClass?: boolean;
|
|
66
|
+
readonly isAutoClass?: boolean;
|
|
67
|
+
readonly isUnicodeClass?: boolean;
|
|
68
|
+
readonly isCOMObject?: boolean;
|
|
69
|
+
readonly isContextful?: boolean;
|
|
70
|
+
readonly isEnum?: boolean;
|
|
71
|
+
readonly isMarshalByRef?: boolean;
|
|
72
|
+
readonly isPrimitive?: boolean;
|
|
73
|
+
readonly isValueType?: boolean;
|
|
74
|
+
readonly isSignatureType?: boolean;
|
|
75
|
+
readonly isSecurityCritical?: boolean;
|
|
76
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
77
|
+
readonly isSecurityTransparent?: boolean;
|
|
78
|
+
structLayoutAttribute?: StructLayoutAttribute;
|
|
79
|
+
typeInitializer?: ConstructorInfo;
|
|
80
|
+
typeHandle?: RuntimeTypeHandle;
|
|
81
|
+
readonly guid?: string;
|
|
82
|
+
baseType?: Type;
|
|
83
|
+
/**
|
|
84
|
+
* @deprecated
|
|
85
|
+
*/
|
|
86
|
+
readonly isSerializable?: boolean;
|
|
87
|
+
readonly containsGenericParameters?: boolean;
|
|
88
|
+
readonly isVisible?: boolean;
|
|
89
|
+
};
|
|
90
|
+
export namespace Type {
|
|
91
|
+
export enum memberType {
|
|
92
|
+
'_1' = 1,
|
|
93
|
+
'_2' = 2,
|
|
94
|
+
'_4' = 4,
|
|
95
|
+
'_8' = 8,
|
|
96
|
+
'_16' = 16,
|
|
97
|
+
'_32' = 32,
|
|
98
|
+
'_64' = 64,
|
|
99
|
+
'_128' = 128,
|
|
100
|
+
'_191' = 191,
|
|
101
|
+
}
|
|
102
|
+
export enum genericParameterAttributes {
|
|
103
|
+
'_0' = 0,
|
|
104
|
+
'_1' = 1,
|
|
105
|
+
'_2' = 2,
|
|
106
|
+
'_3' = 3,
|
|
107
|
+
'_4' = 4,
|
|
108
|
+
'_8' = 8,
|
|
109
|
+
'_16' = 16,
|
|
110
|
+
'_28' = 28,
|
|
111
|
+
}
|
|
112
|
+
export enum attributes {
|
|
113
|
+
'_0' = 0,
|
|
114
|
+
'_1' = 1,
|
|
115
|
+
'_2' = 2,
|
|
116
|
+
'_3' = 3,
|
|
117
|
+
'_4' = 4,
|
|
118
|
+
'_5' = 5,
|
|
119
|
+
'_6' = 6,
|
|
120
|
+
'_7' = 7,
|
|
121
|
+
'_8' = 8,
|
|
122
|
+
'_16' = 16,
|
|
123
|
+
'_24' = 24,
|
|
124
|
+
'_32' = 32,
|
|
125
|
+
'_128' = 128,
|
|
126
|
+
'_256' = 256,
|
|
127
|
+
'_1024' = 1024,
|
|
128
|
+
'_2048' = 2048,
|
|
129
|
+
'_4096' = 4096,
|
|
130
|
+
'_8192' = 8192,
|
|
131
|
+
'_16384' = 16384,
|
|
132
|
+
'_65536' = 65536,
|
|
133
|
+
'_131072' = 131072,
|
|
134
|
+
'_196608' = 196608,
|
|
135
|
+
'_262144' = 262144,
|
|
136
|
+
'_264192' = 264192,
|
|
137
|
+
'_1048576' = 1048576,
|
|
138
|
+
'_12582912' = 12582912,
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Assembly } from './Assembly';
|
|
6
|
+
import type { ConstructorInfo } from './ConstructorInfo';
|
|
7
|
+
import type { CustomAttributeData } from './CustomAttributeData';
|
|
8
|
+
import type { EventInfo } from './EventInfo';
|
|
9
|
+
import type { FieldInfo } from './FieldInfo';
|
|
10
|
+
import type { MemberInfo } from './MemberInfo';
|
|
11
|
+
import type { MethodBase } from './MethodBase';
|
|
12
|
+
import type { MethodInfo } from './MethodInfo';
|
|
13
|
+
import type { Module } from './Module';
|
|
14
|
+
import type { PropertyInfo } from './PropertyInfo';
|
|
15
|
+
import type { RuntimeTypeHandle } from './RuntimeTypeHandle';
|
|
16
|
+
import type { StructLayoutAttribute } from './StructLayoutAttribute';
|
|
17
|
+
import type { Type } from './Type';
|
|
18
|
+
export type TypeInfo = {
|
|
19
|
+
readonly name?: string | null;
|
|
20
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
21
|
+
readonly isCollectible?: boolean;
|
|
22
|
+
readonly metadataToken?: number;
|
|
23
|
+
readonly isInterface?: boolean;
|
|
24
|
+
readonly memberType?: TypeInfo.memberType;
|
|
25
|
+
readonly namespace?: string | null;
|
|
26
|
+
readonly assemblyQualifiedName?: string | null;
|
|
27
|
+
readonly fullName?: string | null;
|
|
28
|
+
assembly?: Assembly;
|
|
29
|
+
module?: Module;
|
|
30
|
+
readonly isNested?: boolean;
|
|
31
|
+
declaringType?: Type;
|
|
32
|
+
declaringMethod?: MethodBase;
|
|
33
|
+
reflectedType?: Type;
|
|
34
|
+
underlyingSystemType?: Type;
|
|
35
|
+
readonly isTypeDefinition?: boolean;
|
|
36
|
+
readonly isArray?: boolean;
|
|
37
|
+
readonly isByRef?: boolean;
|
|
38
|
+
readonly isPointer?: boolean;
|
|
39
|
+
readonly isConstructedGenericType?: boolean;
|
|
40
|
+
readonly isGenericParameter?: boolean;
|
|
41
|
+
readonly isGenericTypeParameter?: boolean;
|
|
42
|
+
readonly isGenericMethodParameter?: boolean;
|
|
43
|
+
readonly isGenericType?: boolean;
|
|
44
|
+
readonly isGenericTypeDefinition?: boolean;
|
|
45
|
+
readonly isSZArray?: boolean;
|
|
46
|
+
readonly isVariableBoundArray?: boolean;
|
|
47
|
+
readonly isByRefLike?: boolean;
|
|
48
|
+
readonly isFunctionPointer?: boolean;
|
|
49
|
+
readonly isUnmanagedFunctionPointer?: boolean;
|
|
50
|
+
readonly hasElementType?: boolean;
|
|
51
|
+
readonly genericTypeArguments?: Array<Type> | null;
|
|
52
|
+
readonly genericParameterPosition?: number;
|
|
53
|
+
readonly genericParameterAttributes?: TypeInfo.genericParameterAttributes;
|
|
54
|
+
readonly attributes?: TypeInfo.attributes;
|
|
55
|
+
readonly isAbstract?: boolean;
|
|
56
|
+
readonly isImport?: boolean;
|
|
57
|
+
readonly isSealed?: boolean;
|
|
58
|
+
readonly isSpecialName?: boolean;
|
|
59
|
+
readonly isClass?: boolean;
|
|
60
|
+
readonly isNestedAssembly?: boolean;
|
|
61
|
+
readonly isNestedFamANDAssem?: boolean;
|
|
62
|
+
readonly isNestedFamily?: boolean;
|
|
63
|
+
readonly isNestedFamORAssem?: boolean;
|
|
64
|
+
readonly isNestedPrivate?: boolean;
|
|
65
|
+
readonly isNestedPublic?: boolean;
|
|
66
|
+
readonly isNotPublic?: boolean;
|
|
67
|
+
readonly isPublic?: boolean;
|
|
68
|
+
readonly isAutoLayout?: boolean;
|
|
69
|
+
readonly isExplicitLayout?: boolean;
|
|
70
|
+
readonly isLayoutSequential?: boolean;
|
|
71
|
+
readonly isAnsiClass?: boolean;
|
|
72
|
+
readonly isAutoClass?: boolean;
|
|
73
|
+
readonly isUnicodeClass?: boolean;
|
|
74
|
+
readonly isCOMObject?: boolean;
|
|
75
|
+
readonly isContextful?: boolean;
|
|
76
|
+
readonly isEnum?: boolean;
|
|
77
|
+
readonly isMarshalByRef?: boolean;
|
|
78
|
+
readonly isPrimitive?: boolean;
|
|
79
|
+
readonly isValueType?: boolean;
|
|
80
|
+
readonly isSignatureType?: boolean;
|
|
81
|
+
readonly isSecurityCritical?: boolean;
|
|
82
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
83
|
+
readonly isSecurityTransparent?: boolean;
|
|
84
|
+
structLayoutAttribute?: StructLayoutAttribute;
|
|
85
|
+
typeInitializer?: ConstructorInfo;
|
|
86
|
+
typeHandle?: RuntimeTypeHandle;
|
|
87
|
+
readonly guid?: string;
|
|
88
|
+
baseType?: Type;
|
|
89
|
+
/**
|
|
90
|
+
* @deprecated
|
|
91
|
+
*/
|
|
92
|
+
readonly isSerializable?: boolean;
|
|
93
|
+
readonly containsGenericParameters?: boolean;
|
|
94
|
+
readonly isVisible?: boolean;
|
|
95
|
+
readonly genericTypeParameters?: Array<Type> | null;
|
|
96
|
+
readonly declaredConstructors?: Array<ConstructorInfo> | null;
|
|
97
|
+
readonly declaredEvents?: Array<EventInfo> | null;
|
|
98
|
+
readonly declaredFields?: Array<FieldInfo> | null;
|
|
99
|
+
readonly declaredMembers?: Array<MemberInfo> | null;
|
|
100
|
+
readonly declaredMethods?: Array<MethodInfo> | null;
|
|
101
|
+
readonly declaredNestedTypes?: Array<TypeInfo> | null;
|
|
102
|
+
readonly declaredProperties?: Array<PropertyInfo> | null;
|
|
103
|
+
readonly implementedInterfaces?: Array<Type> | null;
|
|
104
|
+
};
|
|
105
|
+
export namespace TypeInfo {
|
|
106
|
+
export enum memberType {
|
|
107
|
+
'_1' = 1,
|
|
108
|
+
'_2' = 2,
|
|
109
|
+
'_4' = 4,
|
|
110
|
+
'_8' = 8,
|
|
111
|
+
'_16' = 16,
|
|
112
|
+
'_32' = 32,
|
|
113
|
+
'_64' = 64,
|
|
114
|
+
'_128' = 128,
|
|
115
|
+
'_191' = 191,
|
|
116
|
+
}
|
|
117
|
+
export enum genericParameterAttributes {
|
|
118
|
+
'_0' = 0,
|
|
119
|
+
'_1' = 1,
|
|
120
|
+
'_2' = 2,
|
|
121
|
+
'_3' = 3,
|
|
122
|
+
'_4' = 4,
|
|
123
|
+
'_8' = 8,
|
|
124
|
+
'_16' = 16,
|
|
125
|
+
'_28' = 28,
|
|
126
|
+
}
|
|
127
|
+
export enum attributes {
|
|
128
|
+
'_0' = 0,
|
|
129
|
+
'_1' = 1,
|
|
130
|
+
'_2' = 2,
|
|
131
|
+
'_3' = 3,
|
|
132
|
+
'_4' = 4,
|
|
133
|
+
'_5' = 5,
|
|
134
|
+
'_6' = 6,
|
|
135
|
+
'_7' = 7,
|
|
136
|
+
'_8' = 8,
|
|
137
|
+
'_16' = 16,
|
|
138
|
+
'_24' = 24,
|
|
139
|
+
'_32' = 32,
|
|
140
|
+
'_128' = 128,
|
|
141
|
+
'_256' = 256,
|
|
142
|
+
'_1024' = 1024,
|
|
143
|
+
'_2048' = 2048,
|
|
144
|
+
'_4096' = 4096,
|
|
145
|
+
'_8192' = 8192,
|
|
146
|
+
'_16384' = 16384,
|
|
147
|
+
'_65536' = 65536,
|
|
148
|
+
'_131072' = 131072,
|
|
149
|
+
'_196608' = 196608,
|
|
150
|
+
'_262144' = 262144,
|
|
151
|
+
'_264192' = 264192,
|
|
152
|
+
'_1048576' = 1048576,
|
|
153
|
+
'_12582912' = 12582912,
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type WalletDto = {
|
|
6
|
+
id?: string | null;
|
|
7
|
+
timestamp?: string;
|
|
8
|
+
balance?: number;
|
|
9
|
+
type?: string | null;
|
|
10
|
+
testMode?: boolean;
|
|
11
|
+
verified?: boolean;
|
|
12
|
+
currencyId?: string | null;
|
|
13
|
+
forexRate?: number;
|
|
14
|
+
balanceInUsd?: number;
|
|
15
|
+
mainNetEtherBalance?: number;
|
|
16
|
+
ethereumAddress?: string | null;
|
|
17
|
+
ethereumPublicKey?: string | null;
|
|
18
|
+
ethereumPrivateKey?: string | null;
|
|
19
|
+
rollingReservePercent?: number;
|
|
20
|
+
};
|
|
21
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { AggregateException } from './AggregateException';
|
|
6
|
+
import type { WalletDto } from './WalletDto';
|
|
7
|
+
export type WalletDtoTask = {
|
|
8
|
+
readonly id?: number;
|
|
9
|
+
exception?: AggregateException;
|
|
10
|
+
readonly status?: WalletDtoTask.status;
|
|
11
|
+
readonly isCanceled?: boolean;
|
|
12
|
+
readonly isCompleted?: boolean;
|
|
13
|
+
readonly isCompletedSuccessfully?: boolean;
|
|
14
|
+
readonly creationOptions?: WalletDtoTask.creationOptions;
|
|
15
|
+
readonly asyncState?: any;
|
|
16
|
+
readonly isFaulted?: boolean;
|
|
17
|
+
result?: WalletDto;
|
|
18
|
+
};
|
|
19
|
+
export namespace WalletDtoTask {
|
|
20
|
+
export enum status {
|
|
21
|
+
'_0' = 0,
|
|
22
|
+
'_1' = 1,
|
|
23
|
+
'_2' = 2,
|
|
24
|
+
'_3' = 3,
|
|
25
|
+
'_4' = 4,
|
|
26
|
+
'_5' = 5,
|
|
27
|
+
'_6' = 6,
|
|
28
|
+
'_7' = 7,
|
|
29
|
+
}
|
|
30
|
+
export enum creationOptions {
|
|
31
|
+
'_0' = 0,
|
|
32
|
+
'_1' = 1,
|
|
33
|
+
'_2' = 2,
|
|
34
|
+
'_4' = 4,
|
|
35
|
+
'_8' = 8,
|
|
36
|
+
'_16' = 16,
|
|
37
|
+
'_64' = 64,
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { WalletDtoTask } from './WalletDtoTask';
|
|
6
|
+
export type WalletDtoTaskEnvelope = {
|
|
7
|
+
errorMessage?: string | null;
|
|
8
|
+
readonly isSuccess?: boolean;
|
|
9
|
+
readonly timestamp?: string;
|
|
10
|
+
readonly activityId?: string | null;
|
|
11
|
+
correlationId?: string | null;
|
|
12
|
+
result?: WalletDtoTask;
|
|
13
|
+
};
|
|
14
|
+
|