@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,103 @@
|
|
|
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 { Module } from './Module';
|
|
7
|
+
import type { RuntimeMethodHandle } from './RuntimeMethodHandle';
|
|
8
|
+
import type { Type } from './Type';
|
|
9
|
+
export type ConstructorInfo = {
|
|
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 attributes?: ConstructorInfo.attributes;
|
|
18
|
+
readonly methodImplementationFlags?: ConstructorInfo.methodImplementationFlags;
|
|
19
|
+
readonly callingConvention?: ConstructorInfo.callingConvention;
|
|
20
|
+
readonly isAbstract?: boolean;
|
|
21
|
+
readonly isConstructor?: boolean;
|
|
22
|
+
readonly isFinal?: boolean;
|
|
23
|
+
readonly isHideBySig?: boolean;
|
|
24
|
+
readonly isSpecialName?: boolean;
|
|
25
|
+
readonly isStatic?: boolean;
|
|
26
|
+
readonly isVirtual?: boolean;
|
|
27
|
+
readonly isAssembly?: boolean;
|
|
28
|
+
readonly isFamily?: boolean;
|
|
29
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
30
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
31
|
+
readonly isPrivate?: boolean;
|
|
32
|
+
readonly isPublic?: boolean;
|
|
33
|
+
readonly isConstructedGenericMethod?: boolean;
|
|
34
|
+
readonly isGenericMethod?: boolean;
|
|
35
|
+
readonly isGenericMethodDefinition?: boolean;
|
|
36
|
+
readonly containsGenericParameters?: boolean;
|
|
37
|
+
methodHandle?: RuntimeMethodHandle;
|
|
38
|
+
readonly isSecurityCritical?: boolean;
|
|
39
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
40
|
+
readonly isSecurityTransparent?: boolean;
|
|
41
|
+
readonly memberType?: ConstructorInfo.memberType;
|
|
42
|
+
};
|
|
43
|
+
export namespace ConstructorInfo {
|
|
44
|
+
export enum attributes {
|
|
45
|
+
'_0' = 0,
|
|
46
|
+
'_1' = 1,
|
|
47
|
+
'_2' = 2,
|
|
48
|
+
'_3' = 3,
|
|
49
|
+
'_4' = 4,
|
|
50
|
+
'_5' = 5,
|
|
51
|
+
'_6' = 6,
|
|
52
|
+
'_7' = 7,
|
|
53
|
+
'_8' = 8,
|
|
54
|
+
'_16' = 16,
|
|
55
|
+
'_32' = 32,
|
|
56
|
+
'_64' = 64,
|
|
57
|
+
'_128' = 128,
|
|
58
|
+
'_256' = 256,
|
|
59
|
+
'_512' = 512,
|
|
60
|
+
'_1024' = 1024,
|
|
61
|
+
'_2048' = 2048,
|
|
62
|
+
'_4096' = 4096,
|
|
63
|
+
'_8192' = 8192,
|
|
64
|
+
'_16384' = 16384,
|
|
65
|
+
'_32768' = 32768,
|
|
66
|
+
'_53248' = 53248,
|
|
67
|
+
}
|
|
68
|
+
export enum methodImplementationFlags {
|
|
69
|
+
'_0' = 0,
|
|
70
|
+
'_1' = 1,
|
|
71
|
+
'_2' = 2,
|
|
72
|
+
'_3' = 3,
|
|
73
|
+
'_4' = 4,
|
|
74
|
+
'_8' = 8,
|
|
75
|
+
'_16' = 16,
|
|
76
|
+
'_32' = 32,
|
|
77
|
+
'_64' = 64,
|
|
78
|
+
'_128' = 128,
|
|
79
|
+
'_256' = 256,
|
|
80
|
+
'_512' = 512,
|
|
81
|
+
'_4096' = 4096,
|
|
82
|
+
'_65535' = 65535,
|
|
83
|
+
}
|
|
84
|
+
export enum callingConvention {
|
|
85
|
+
'_1' = 1,
|
|
86
|
+
'_2' = 2,
|
|
87
|
+
'_3' = 3,
|
|
88
|
+
'_32' = 32,
|
|
89
|
+
'_64' = 64,
|
|
90
|
+
}
|
|
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
|
+
}
|
|
103
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ConstructorInfo } from './ConstructorInfo';
|
|
6
|
+
import type { CustomAttributeNamedArgument } from './CustomAttributeNamedArgument';
|
|
7
|
+
import type { CustomAttributeTypedArgument } from './CustomAttributeTypedArgument';
|
|
8
|
+
import type { Type } from './Type';
|
|
9
|
+
export type CustomAttributeData = {
|
|
10
|
+
attributeType?: Type;
|
|
11
|
+
constructor?: ConstructorInfo;
|
|
12
|
+
readonly constructorArguments?: Array<CustomAttributeTypedArgument> | null;
|
|
13
|
+
readonly namedArguments?: Array<CustomAttributeNamedArgument> | null;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { CustomAttributeTypedArgument } from './CustomAttributeTypedArgument';
|
|
6
|
+
import type { MemberInfo } from './MemberInfo';
|
|
7
|
+
export type CustomAttributeNamedArgument = {
|
|
8
|
+
memberInfo?: MemberInfo;
|
|
9
|
+
typedValue?: CustomAttributeTypedArgument;
|
|
10
|
+
readonly memberName?: string | null;
|
|
11
|
+
readonly isField?: boolean;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Type } from './Type';
|
|
6
|
+
export type CustomAttributeTypedArgument = {
|
|
7
|
+
argumentType?: Type;
|
|
8
|
+
value?: any;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
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 EventInfo = {
|
|
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?: EventInfo.memberType;
|
|
18
|
+
readonly attributes?: EventInfo.attributes;
|
|
19
|
+
readonly isSpecialName?: boolean;
|
|
20
|
+
addMethod?: MethodInfo;
|
|
21
|
+
removeMethod?: MethodInfo;
|
|
22
|
+
raiseMethod?: MethodInfo;
|
|
23
|
+
readonly isMulticast?: boolean;
|
|
24
|
+
eventHandlerType?: Type;
|
|
25
|
+
};
|
|
26
|
+
export namespace EventInfo {
|
|
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
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { MethodBase } from './MethodBase';
|
|
6
|
+
export type Exception = {
|
|
7
|
+
targetSite?: MethodBase;
|
|
8
|
+
readonly message?: string | null;
|
|
9
|
+
readonly data?: Record<string, any> | null;
|
|
10
|
+
innerException?: Exception;
|
|
11
|
+
helpLink?: string | null;
|
|
12
|
+
source?: string | null;
|
|
13
|
+
hResult?: number;
|
|
14
|
+
readonly stackTrace?: string | null;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -0,0 +1,74 @@
|
|
|
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 { Module } from './Module';
|
|
7
|
+
import type { RuntimeFieldHandle } from './RuntimeFieldHandle';
|
|
8
|
+
import type { Type } from './Type';
|
|
9
|
+
export type FieldInfo = {
|
|
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?: FieldInfo.memberType;
|
|
18
|
+
readonly attributes?: FieldInfo.attributes;
|
|
19
|
+
fieldType?: Type;
|
|
20
|
+
readonly isInitOnly?: boolean;
|
|
21
|
+
readonly isLiteral?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated
|
|
24
|
+
*/
|
|
25
|
+
readonly isNotSerialized?: boolean;
|
|
26
|
+
readonly isPinvokeImpl?: boolean;
|
|
27
|
+
readonly isSpecialName?: boolean;
|
|
28
|
+
readonly isStatic?: boolean;
|
|
29
|
+
readonly isAssembly?: boolean;
|
|
30
|
+
readonly isFamily?: boolean;
|
|
31
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
32
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
33
|
+
readonly isPrivate?: boolean;
|
|
34
|
+
readonly isPublic?: boolean;
|
|
35
|
+
readonly isSecurityCritical?: boolean;
|
|
36
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
37
|
+
readonly isSecurityTransparent?: boolean;
|
|
38
|
+
fieldHandle?: RuntimeFieldHandle;
|
|
39
|
+
};
|
|
40
|
+
export namespace FieldInfo {
|
|
41
|
+
export enum memberType {
|
|
42
|
+
'_1' = 1,
|
|
43
|
+
'_2' = 2,
|
|
44
|
+
'_4' = 4,
|
|
45
|
+
'_8' = 8,
|
|
46
|
+
'_16' = 16,
|
|
47
|
+
'_32' = 32,
|
|
48
|
+
'_64' = 64,
|
|
49
|
+
'_128' = 128,
|
|
50
|
+
'_191' = 191,
|
|
51
|
+
}
|
|
52
|
+
export enum attributes {
|
|
53
|
+
'_0' = 0,
|
|
54
|
+
'_1' = 1,
|
|
55
|
+
'_2' = 2,
|
|
56
|
+
'_3' = 3,
|
|
57
|
+
'_4' = 4,
|
|
58
|
+
'_5' = 5,
|
|
59
|
+
'_6' = 6,
|
|
60
|
+
'_7' = 7,
|
|
61
|
+
'_16' = 16,
|
|
62
|
+
'_32' = 32,
|
|
63
|
+
'_64' = 64,
|
|
64
|
+
'_128' = 128,
|
|
65
|
+
'_256' = 256,
|
|
66
|
+
'_512' = 512,
|
|
67
|
+
'_1024' = 1024,
|
|
68
|
+
'_4096' = 4096,
|
|
69
|
+
'_8192' = 8192,
|
|
70
|
+
'_32768' = 32768,
|
|
71
|
+
'_38144' = 38144,
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
@@ -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 InfoRequest = {
|
|
6
|
+
newEmail?: string | null;
|
|
7
|
+
newPassword?: string | null;
|
|
8
|
+
oldPassword?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type LoginRequest = {
|
|
6
|
+
email?: string | null;
|
|
7
|
+
password?: string | null;
|
|
8
|
+
twoFactorCode?: string | null;
|
|
9
|
+
twoFactorRecoveryCode?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { Module } from './Module';
|
|
7
|
+
import type { Type } from './Type';
|
|
8
|
+
export type MemberInfo = {
|
|
9
|
+
readonly memberType?: MemberInfo.memberType;
|
|
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
|
+
};
|
|
18
|
+
export namespace MemberInfo {
|
|
19
|
+
export enum memberType {
|
|
20
|
+
'_1' = 1,
|
|
21
|
+
'_2' = 2,
|
|
22
|
+
'_4' = 4,
|
|
23
|
+
'_8' = 8,
|
|
24
|
+
'_16' = 16,
|
|
25
|
+
'_32' = 32,
|
|
26
|
+
'_64' = 64,
|
|
27
|
+
'_128' = 128,
|
|
28
|
+
'_191' = 191,
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,103 @@
|
|
|
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 { Module } from './Module';
|
|
7
|
+
import type { RuntimeMethodHandle } from './RuntimeMethodHandle';
|
|
8
|
+
import type { Type } from './Type';
|
|
9
|
+
export type MethodBase = {
|
|
10
|
+
readonly memberType?: MethodBase.memberType;
|
|
11
|
+
readonly name?: string | null;
|
|
12
|
+
declaringType?: Type;
|
|
13
|
+
reflectedType?: Type;
|
|
14
|
+
module?: Module;
|
|
15
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
16
|
+
readonly isCollectible?: boolean;
|
|
17
|
+
readonly metadataToken?: number;
|
|
18
|
+
readonly attributes?: MethodBase.attributes;
|
|
19
|
+
readonly methodImplementationFlags?: MethodBase.methodImplementationFlags;
|
|
20
|
+
readonly callingConvention?: MethodBase.callingConvention;
|
|
21
|
+
readonly isAbstract?: boolean;
|
|
22
|
+
readonly isConstructor?: boolean;
|
|
23
|
+
readonly isFinal?: boolean;
|
|
24
|
+
readonly isHideBySig?: boolean;
|
|
25
|
+
readonly isSpecialName?: boolean;
|
|
26
|
+
readonly isStatic?: boolean;
|
|
27
|
+
readonly isVirtual?: boolean;
|
|
28
|
+
readonly isAssembly?: boolean;
|
|
29
|
+
readonly isFamily?: boolean;
|
|
30
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
31
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
32
|
+
readonly isPrivate?: boolean;
|
|
33
|
+
readonly isPublic?: boolean;
|
|
34
|
+
readonly isConstructedGenericMethod?: boolean;
|
|
35
|
+
readonly isGenericMethod?: boolean;
|
|
36
|
+
readonly isGenericMethodDefinition?: boolean;
|
|
37
|
+
readonly containsGenericParameters?: boolean;
|
|
38
|
+
methodHandle?: RuntimeMethodHandle;
|
|
39
|
+
readonly isSecurityCritical?: boolean;
|
|
40
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
41
|
+
readonly isSecurityTransparent?: boolean;
|
|
42
|
+
};
|
|
43
|
+
export namespace MethodBase {
|
|
44
|
+
export enum memberType {
|
|
45
|
+
'_1' = 1,
|
|
46
|
+
'_2' = 2,
|
|
47
|
+
'_4' = 4,
|
|
48
|
+
'_8' = 8,
|
|
49
|
+
'_16' = 16,
|
|
50
|
+
'_32' = 32,
|
|
51
|
+
'_64' = 64,
|
|
52
|
+
'_128' = 128,
|
|
53
|
+
'_191' = 191,
|
|
54
|
+
}
|
|
55
|
+
export enum attributes {
|
|
56
|
+
'_0' = 0,
|
|
57
|
+
'_1' = 1,
|
|
58
|
+
'_2' = 2,
|
|
59
|
+
'_3' = 3,
|
|
60
|
+
'_4' = 4,
|
|
61
|
+
'_5' = 5,
|
|
62
|
+
'_6' = 6,
|
|
63
|
+
'_7' = 7,
|
|
64
|
+
'_8' = 8,
|
|
65
|
+
'_16' = 16,
|
|
66
|
+
'_32' = 32,
|
|
67
|
+
'_64' = 64,
|
|
68
|
+
'_128' = 128,
|
|
69
|
+
'_256' = 256,
|
|
70
|
+
'_512' = 512,
|
|
71
|
+
'_1024' = 1024,
|
|
72
|
+
'_2048' = 2048,
|
|
73
|
+
'_4096' = 4096,
|
|
74
|
+
'_8192' = 8192,
|
|
75
|
+
'_16384' = 16384,
|
|
76
|
+
'_32768' = 32768,
|
|
77
|
+
'_53248' = 53248,
|
|
78
|
+
}
|
|
79
|
+
export enum methodImplementationFlags {
|
|
80
|
+
'_0' = 0,
|
|
81
|
+
'_1' = 1,
|
|
82
|
+
'_2' = 2,
|
|
83
|
+
'_3' = 3,
|
|
84
|
+
'_4' = 4,
|
|
85
|
+
'_8' = 8,
|
|
86
|
+
'_16' = 16,
|
|
87
|
+
'_32' = 32,
|
|
88
|
+
'_64' = 64,
|
|
89
|
+
'_128' = 128,
|
|
90
|
+
'_256' = 256,
|
|
91
|
+
'_512' = 512,
|
|
92
|
+
'_4096' = 4096,
|
|
93
|
+
'_65535' = 65535,
|
|
94
|
+
}
|
|
95
|
+
export enum callingConvention {
|
|
96
|
+
'_1' = 1,
|
|
97
|
+
'_2' = 2,
|
|
98
|
+
'_3' = 3,
|
|
99
|
+
'_32' = 32,
|
|
100
|
+
'_64' = 64,
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
@@ -0,0 +1,108 @@
|
|
|
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 { ICustomAttributeProvider } from './ICustomAttributeProvider';
|
|
7
|
+
import type { Module } from './Module';
|
|
8
|
+
import type { ParameterInfo } from './ParameterInfo';
|
|
9
|
+
import type { RuntimeMethodHandle } from './RuntimeMethodHandle';
|
|
10
|
+
import type { Type } from './Type';
|
|
11
|
+
export type MethodInfo = {
|
|
12
|
+
readonly name?: string | null;
|
|
13
|
+
declaringType?: Type;
|
|
14
|
+
reflectedType?: Type;
|
|
15
|
+
module?: Module;
|
|
16
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
17
|
+
readonly isCollectible?: boolean;
|
|
18
|
+
readonly metadataToken?: number;
|
|
19
|
+
readonly attributes?: MethodInfo.attributes;
|
|
20
|
+
readonly methodImplementationFlags?: MethodInfo.methodImplementationFlags;
|
|
21
|
+
readonly callingConvention?: MethodInfo.callingConvention;
|
|
22
|
+
readonly isAbstract?: boolean;
|
|
23
|
+
readonly isConstructor?: boolean;
|
|
24
|
+
readonly isFinal?: boolean;
|
|
25
|
+
readonly isHideBySig?: boolean;
|
|
26
|
+
readonly isSpecialName?: boolean;
|
|
27
|
+
readonly isStatic?: boolean;
|
|
28
|
+
readonly isVirtual?: boolean;
|
|
29
|
+
readonly isAssembly?: boolean;
|
|
30
|
+
readonly isFamily?: boolean;
|
|
31
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
32
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
33
|
+
readonly isPrivate?: boolean;
|
|
34
|
+
readonly isPublic?: boolean;
|
|
35
|
+
readonly isConstructedGenericMethod?: boolean;
|
|
36
|
+
readonly isGenericMethod?: boolean;
|
|
37
|
+
readonly isGenericMethodDefinition?: boolean;
|
|
38
|
+
readonly containsGenericParameters?: boolean;
|
|
39
|
+
methodHandle?: RuntimeMethodHandle;
|
|
40
|
+
readonly isSecurityCritical?: boolean;
|
|
41
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
42
|
+
readonly isSecurityTransparent?: boolean;
|
|
43
|
+
readonly memberType?: MethodInfo.memberType;
|
|
44
|
+
returnParameter?: ParameterInfo;
|
|
45
|
+
returnType?: Type;
|
|
46
|
+
returnTypeCustomAttributes?: ICustomAttributeProvider;
|
|
47
|
+
};
|
|
48
|
+
export namespace MethodInfo {
|
|
49
|
+
export enum attributes {
|
|
50
|
+
'_0' = 0,
|
|
51
|
+
'_1' = 1,
|
|
52
|
+
'_2' = 2,
|
|
53
|
+
'_3' = 3,
|
|
54
|
+
'_4' = 4,
|
|
55
|
+
'_5' = 5,
|
|
56
|
+
'_6' = 6,
|
|
57
|
+
'_7' = 7,
|
|
58
|
+
'_8' = 8,
|
|
59
|
+
'_16' = 16,
|
|
60
|
+
'_32' = 32,
|
|
61
|
+
'_64' = 64,
|
|
62
|
+
'_128' = 128,
|
|
63
|
+
'_256' = 256,
|
|
64
|
+
'_512' = 512,
|
|
65
|
+
'_1024' = 1024,
|
|
66
|
+
'_2048' = 2048,
|
|
67
|
+
'_4096' = 4096,
|
|
68
|
+
'_8192' = 8192,
|
|
69
|
+
'_16384' = 16384,
|
|
70
|
+
'_32768' = 32768,
|
|
71
|
+
'_53248' = 53248,
|
|
72
|
+
}
|
|
73
|
+
export enum methodImplementationFlags {
|
|
74
|
+
'_0' = 0,
|
|
75
|
+
'_1' = 1,
|
|
76
|
+
'_2' = 2,
|
|
77
|
+
'_3' = 3,
|
|
78
|
+
'_4' = 4,
|
|
79
|
+
'_8' = 8,
|
|
80
|
+
'_16' = 16,
|
|
81
|
+
'_32' = 32,
|
|
82
|
+
'_64' = 64,
|
|
83
|
+
'_128' = 128,
|
|
84
|
+
'_256' = 256,
|
|
85
|
+
'_512' = 512,
|
|
86
|
+
'_4096' = 4096,
|
|
87
|
+
'_65535' = 65535,
|
|
88
|
+
}
|
|
89
|
+
export enum callingConvention {
|
|
90
|
+
'_1' = 1,
|
|
91
|
+
'_2' = 2,
|
|
92
|
+
'_3' = 3,
|
|
93
|
+
'_32' = 32,
|
|
94
|
+
'_64' = 64,
|
|
95
|
+
}
|
|
96
|
+
export enum memberType {
|
|
97
|
+
'_1' = 1,
|
|
98
|
+
'_2' = 2,
|
|
99
|
+
'_4' = 4,
|
|
100
|
+
'_8' = 8,
|
|
101
|
+
'_16' = 16,
|
|
102
|
+
'_32' = 32,
|
|
103
|
+
'_64' = 64,
|
|
104
|
+
'_128' = 128,
|
|
105
|
+
'_191' = 191,
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
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 { CustomAttributeData } from './CustomAttributeData';
|
|
7
|
+
import type { ModuleHandle } from './ModuleHandle';
|
|
8
|
+
export type Module = {
|
|
9
|
+
assembly?: Assembly;
|
|
10
|
+
readonly fullyQualifiedName?: string | null;
|
|
11
|
+
readonly name?: string | null;
|
|
12
|
+
readonly mdStreamVersion?: number;
|
|
13
|
+
readonly moduleVersionId?: string;
|
|
14
|
+
readonly scopeName?: string | null;
|
|
15
|
+
moduleHandle?: ModuleHandle;
|
|
16
|
+
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
17
|
+
readonly metadataToken?: number;
|
|
18
|
+
};
|
|
19
|
+
|
|
@@ -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 NotificationDto = {
|
|
6
|
+
id?: string | null;
|
|
7
|
+
timestamp?: string | null;
|
|
8
|
+
read?: boolean;
|
|
9
|
+
icon?: string | null;
|
|
10
|
+
message?: string | null;
|
|
11
|
+
redirectUrl?: string | null;
|
|
12
|
+
socialProfileID?: string | null;
|
|
13
|
+
readTimestamp?: string;
|
|
14
|
+
issuedTimestamp?: string;
|
|
15
|
+
};
|
|
16
|
+
|
|
@@ -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 { NotificationDto } from './NotificationDto';
|
|
6
|
+
export type NotificationDtoListEnvelope = {
|
|
7
|
+
errorMessage?: string | null;
|
|
8
|
+
readonly isSuccess?: boolean;
|
|
9
|
+
readonly timestamp?: string;
|
|
10
|
+
readonly activityId?: string | null;
|
|
11
|
+
correlationId?: string | null;
|
|
12
|
+
result?: Array<NotificationDto> | null;
|
|
13
|
+
};
|
|
14
|
+
|