@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,1606 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export interface paths {
|
|
8
|
+
"/version": {
|
|
9
|
+
get: {
|
|
10
|
+
responses: {
|
|
11
|
+
/** @description Success */
|
|
12
|
+
200: {
|
|
13
|
+
content: never;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
"/health": {
|
|
19
|
+
get: {
|
|
20
|
+
responses: {
|
|
21
|
+
/** @description Success */
|
|
22
|
+
200: {
|
|
23
|
+
content: never;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
"/hello": {
|
|
29
|
+
get: {
|
|
30
|
+
responses: {
|
|
31
|
+
/** @description Success */
|
|
32
|
+
200: {
|
|
33
|
+
content: never;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
"/register": {
|
|
39
|
+
post: {
|
|
40
|
+
requestBody?: {
|
|
41
|
+
content: {
|
|
42
|
+
"application/json": components["schemas"]["RegisterRequest"];
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
responses: {
|
|
46
|
+
/** @description Success */
|
|
47
|
+
200: {
|
|
48
|
+
content: never;
|
|
49
|
+
};
|
|
50
|
+
/** @description Bad Request */
|
|
51
|
+
400: {
|
|
52
|
+
content: {
|
|
53
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
"/login": {
|
|
60
|
+
post: {
|
|
61
|
+
parameters: {
|
|
62
|
+
query?: {
|
|
63
|
+
useCookies?: boolean;
|
|
64
|
+
useSessionCookies?: boolean;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
requestBody?: {
|
|
68
|
+
content: {
|
|
69
|
+
"application/json": components["schemas"]["LoginRequest"];
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
responses: {
|
|
73
|
+
/** @description Success */
|
|
74
|
+
200: {
|
|
75
|
+
content: {
|
|
76
|
+
"application/json": components["schemas"]["AccessTokenResponse"];
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
"/refresh": {
|
|
83
|
+
post: {
|
|
84
|
+
requestBody?: {
|
|
85
|
+
content: {
|
|
86
|
+
"application/json": components["schemas"]["RefreshRequest"];
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
responses: {
|
|
90
|
+
/** @description Success */
|
|
91
|
+
200: {
|
|
92
|
+
content: {
|
|
93
|
+
"application/json": components["schemas"]["AccessTokenResponse"];
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
"/confirmEmail": {
|
|
100
|
+
get: operations["MapIdentityApi-/confirmEmail"];
|
|
101
|
+
};
|
|
102
|
+
"/resendConfirmationEmail": {
|
|
103
|
+
post: {
|
|
104
|
+
requestBody?: {
|
|
105
|
+
content: {
|
|
106
|
+
"application/json": components["schemas"]["ResendConfirmationEmailRequest"];
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
responses: {
|
|
110
|
+
/** @description Success */
|
|
111
|
+
200: {
|
|
112
|
+
content: never;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
"/forgotPassword": {
|
|
118
|
+
post: {
|
|
119
|
+
requestBody?: {
|
|
120
|
+
content: {
|
|
121
|
+
"application/json": components["schemas"]["ForgotPasswordRequest"];
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
responses: {
|
|
125
|
+
/** @description Success */
|
|
126
|
+
200: {
|
|
127
|
+
content: never;
|
|
128
|
+
};
|
|
129
|
+
/** @description Bad Request */
|
|
130
|
+
400: {
|
|
131
|
+
content: {
|
|
132
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
"/resetPassword": {
|
|
139
|
+
post: {
|
|
140
|
+
requestBody?: {
|
|
141
|
+
content: {
|
|
142
|
+
"application/json": components["schemas"]["ResetPasswordRequest"];
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
responses: {
|
|
146
|
+
/** @description Success */
|
|
147
|
+
200: {
|
|
148
|
+
content: never;
|
|
149
|
+
};
|
|
150
|
+
/** @description Bad Request */
|
|
151
|
+
400: {
|
|
152
|
+
content: {
|
|
153
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
"/manage/2fa": {
|
|
160
|
+
post: {
|
|
161
|
+
requestBody?: {
|
|
162
|
+
content: {
|
|
163
|
+
"application/json": components["schemas"]["TwoFactorRequest"];
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
responses: {
|
|
167
|
+
/** @description Success */
|
|
168
|
+
200: {
|
|
169
|
+
content: {
|
|
170
|
+
"application/json": components["schemas"]["TwoFactorResponse"];
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
/** @description Bad Request */
|
|
174
|
+
400: {
|
|
175
|
+
content: {
|
|
176
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
/** @description Not Found */
|
|
180
|
+
404: {
|
|
181
|
+
content: never;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
"/manage/info": {
|
|
187
|
+
get: {
|
|
188
|
+
responses: {
|
|
189
|
+
/** @description Success */
|
|
190
|
+
200: {
|
|
191
|
+
content: {
|
|
192
|
+
"application/json": components["schemas"]["InfoResponse"];
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
/** @description Bad Request */
|
|
196
|
+
400: {
|
|
197
|
+
content: {
|
|
198
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
/** @description Not Found */
|
|
202
|
+
404: {
|
|
203
|
+
content: never;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
post: {
|
|
208
|
+
requestBody?: {
|
|
209
|
+
content: {
|
|
210
|
+
"application/json": components["schemas"]["InfoRequest"];
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
responses: {
|
|
214
|
+
/** @description Success */
|
|
215
|
+
200: {
|
|
216
|
+
content: {
|
|
217
|
+
"application/json": components["schemas"]["InfoResponse"];
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
/** @description Bad Request */
|
|
221
|
+
400: {
|
|
222
|
+
content: {
|
|
223
|
+
"application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
/** @description Not Found */
|
|
227
|
+
404: {
|
|
228
|
+
content: never;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
"/Account/PerformExternalLogin": {
|
|
234
|
+
post: {
|
|
235
|
+
requestBody?: {
|
|
236
|
+
content: {
|
|
237
|
+
"multipart/form-data": {
|
|
238
|
+
provider: string;
|
|
239
|
+
returnUrl: string;
|
|
240
|
+
};
|
|
241
|
+
"application/x-www-form-urlencoded": {
|
|
242
|
+
provider: string;
|
|
243
|
+
returnUrl: string;
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
responses: {
|
|
248
|
+
/** @description Success */
|
|
249
|
+
200: {
|
|
250
|
+
content: never;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
"/Account/Logout": {
|
|
256
|
+
post: {
|
|
257
|
+
requestBody?: {
|
|
258
|
+
content: {
|
|
259
|
+
"multipart/form-data": {
|
|
260
|
+
returnUrl: string;
|
|
261
|
+
};
|
|
262
|
+
"application/x-www-form-urlencoded": {
|
|
263
|
+
returnUrl: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
responses: {
|
|
268
|
+
/** @description Success */
|
|
269
|
+
200: {
|
|
270
|
+
content: never;
|
|
271
|
+
};
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
"/Account/Manage/LinkExternalLogin": {
|
|
276
|
+
post: {
|
|
277
|
+
requestBody?: {
|
|
278
|
+
content: {
|
|
279
|
+
"multipart/form-data": {
|
|
280
|
+
provider: string;
|
|
281
|
+
};
|
|
282
|
+
"application/x-www-form-urlencoded": {
|
|
283
|
+
provider: string;
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
responses: {
|
|
288
|
+
/** @description Success */
|
|
289
|
+
200: {
|
|
290
|
+
content: never;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
"/Account/Manage/DownloadPersonalData": {
|
|
296
|
+
post: {
|
|
297
|
+
responses: {
|
|
298
|
+
/** @description Success */
|
|
299
|
+
200: {
|
|
300
|
+
content: never;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
"/api/v2/Tenants/Current": {
|
|
306
|
+
get: {
|
|
307
|
+
parameters: {
|
|
308
|
+
query?: {
|
|
309
|
+
"api-version"?: string;
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
responses: {
|
|
313
|
+
/** @description Success */
|
|
314
|
+
200: {
|
|
315
|
+
content: {
|
|
316
|
+
"application/json": components["schemas"]["BusinessDto"];
|
|
317
|
+
"application/xml": components["schemas"]["BusinessDto"];
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
/** @description Unauthorized */
|
|
321
|
+
401: {
|
|
322
|
+
content: {
|
|
323
|
+
"application/json": components["schemas"]["ResponseStatus"];
|
|
324
|
+
"application/xml": components["schemas"]["ResponseStatus"];
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
};
|
|
330
|
+
"/api/v2/Tenants/{businessId}": {
|
|
331
|
+
get: {
|
|
332
|
+
parameters: {
|
|
333
|
+
query?: {
|
|
334
|
+
"api-version"?: string;
|
|
335
|
+
};
|
|
336
|
+
path: {
|
|
337
|
+
businessId: string;
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
responses: {
|
|
341
|
+
/** @description Success */
|
|
342
|
+
200: {
|
|
343
|
+
content: {
|
|
344
|
+
"application/json": components["schemas"]["BusinessDto"];
|
|
345
|
+
"application/xml": components["schemas"]["BusinessDto"];
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
/** @description Unauthorized */
|
|
349
|
+
401: {
|
|
350
|
+
content: {
|
|
351
|
+
"application/json": components["schemas"]["ResponseStatus"];
|
|
352
|
+
"application/xml": components["schemas"]["ResponseStatus"];
|
|
353
|
+
};
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
"/api/v2/Tenants/{businessId}/Wallet": {
|
|
359
|
+
get: {
|
|
360
|
+
parameters: {
|
|
361
|
+
query?: {
|
|
362
|
+
"api-version"?: string;
|
|
363
|
+
};
|
|
364
|
+
path: {
|
|
365
|
+
businessId: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
responses: {
|
|
369
|
+
/** @description Success */
|
|
370
|
+
200: {
|
|
371
|
+
content: {
|
|
372
|
+
"application/json": components["schemas"]["WalletDtoTaskEnvelope"];
|
|
373
|
+
"application/xml": components["schemas"]["WalletDtoTaskEnvelope"];
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
"/api/v2/Tenants/{businessId}/SocialProfile": {
|
|
380
|
+
get: {
|
|
381
|
+
parameters: {
|
|
382
|
+
query?: {
|
|
383
|
+
"api-version"?: string;
|
|
384
|
+
};
|
|
385
|
+
path: {
|
|
386
|
+
businessId: string;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
responses: {
|
|
390
|
+
/** @description Success */
|
|
391
|
+
200: {
|
|
392
|
+
content: never;
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
};
|
|
397
|
+
"/api/v2/Tenants/{businessId}/Cart": {
|
|
398
|
+
get: {
|
|
399
|
+
parameters: {
|
|
400
|
+
query?: {
|
|
401
|
+
"api-version"?: string;
|
|
402
|
+
};
|
|
403
|
+
path: {
|
|
404
|
+
businessId: string;
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
responses: {
|
|
408
|
+
/** @description Success */
|
|
409
|
+
200: {
|
|
410
|
+
content: never;
|
|
411
|
+
};
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
"/api/v2/Tenants/{businessId}/Enrollments": {
|
|
416
|
+
get: {
|
|
417
|
+
parameters: {
|
|
418
|
+
query?: {
|
|
419
|
+
"api-version"?: string;
|
|
420
|
+
};
|
|
421
|
+
path: {
|
|
422
|
+
businessId: string;
|
|
423
|
+
};
|
|
424
|
+
};
|
|
425
|
+
responses: {
|
|
426
|
+
/** @description Success */
|
|
427
|
+
200: {
|
|
428
|
+
content: {
|
|
429
|
+
"application/json": components["schemas"]["BusinessEnrollmentDtoIReadOnlyListEnvelope"];
|
|
430
|
+
"application/xml": components["schemas"]["BusinessEnrollmentDtoIReadOnlyListEnvelope"];
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
"/api/v2/Tenants/{businessId}/Enrollments/{enrollmentId}": {
|
|
437
|
+
get: {
|
|
438
|
+
parameters: {
|
|
439
|
+
query?: {
|
|
440
|
+
"api-version"?: string;
|
|
441
|
+
};
|
|
442
|
+
path: {
|
|
443
|
+
businessId: string;
|
|
444
|
+
enrollmentId: string;
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
responses: {
|
|
448
|
+
/** @description Success */
|
|
449
|
+
200: {
|
|
450
|
+
content: {
|
|
451
|
+
"application/json": components["schemas"]["BusinessEnrollmentDtoEnvelope"];
|
|
452
|
+
"application/xml": components["schemas"]["BusinessEnrollmentDtoEnvelope"];
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
};
|
|
457
|
+
};
|
|
458
|
+
"/api/v2/Tenants/{businessId}/Enrollments/{EnrollmentID}/Licenses": {
|
|
459
|
+
get: {
|
|
460
|
+
parameters: {
|
|
461
|
+
query?: {
|
|
462
|
+
"api-version"?: string;
|
|
463
|
+
};
|
|
464
|
+
path: {
|
|
465
|
+
businessId: string;
|
|
466
|
+
enrollmentID: string;
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
responses: {
|
|
470
|
+
/** @description Success */
|
|
471
|
+
200: {
|
|
472
|
+
content: never;
|
|
473
|
+
};
|
|
474
|
+
};
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
"/api/v2/Tenants/{businessId}/Enrollments/{EnrollmentID}/Permissions": {
|
|
478
|
+
get: {
|
|
479
|
+
parameters: {
|
|
480
|
+
query?: {
|
|
481
|
+
"api-version"?: string;
|
|
482
|
+
};
|
|
483
|
+
path: {
|
|
484
|
+
businessId: string;
|
|
485
|
+
enrollmentID: string;
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
responses: {
|
|
489
|
+
/** @description Success */
|
|
490
|
+
200: {
|
|
491
|
+
content: {
|
|
492
|
+
"application/json": components["schemas"]["StringListEnvelope"];
|
|
493
|
+
"application/xml": components["schemas"]["StringListEnvelope"];
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
};
|
|
498
|
+
};
|
|
499
|
+
"/api/v2/Tenants/{businessId}/Licenses": {
|
|
500
|
+
get: {
|
|
501
|
+
parameters: {
|
|
502
|
+
query?: {
|
|
503
|
+
"api-version"?: string;
|
|
504
|
+
};
|
|
505
|
+
path: {
|
|
506
|
+
businessId: string;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
responses: {
|
|
510
|
+
/** @description Success */
|
|
511
|
+
200: {
|
|
512
|
+
content: never;
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
"/api/v2/Tenants": {
|
|
518
|
+
post: {
|
|
519
|
+
parameters: {
|
|
520
|
+
query?: {
|
|
521
|
+
"api-version"?: string;
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
requestBody?: {
|
|
525
|
+
content: {
|
|
526
|
+
"application/json": components["schemas"]["BusinessCreateDto"];
|
|
527
|
+
"application/xml": components["schemas"]["BusinessCreateDto"];
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
responses: {
|
|
531
|
+
/** @description Success */
|
|
532
|
+
200: {
|
|
533
|
+
content: never;
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
delete: {
|
|
538
|
+
parameters: {
|
|
539
|
+
query: {
|
|
540
|
+
businessId: string;
|
|
541
|
+
"api-version"?: string;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
responses: {
|
|
545
|
+
/** @description Success */
|
|
546
|
+
200: {
|
|
547
|
+
content: never;
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
"/api/v2/Tenants/{businessId}/Select": {
|
|
553
|
+
get: {
|
|
554
|
+
parameters: {
|
|
555
|
+
query?: {
|
|
556
|
+
backTo?: string;
|
|
557
|
+
enableRedirect?: boolean;
|
|
558
|
+
"api-version"?: string;
|
|
559
|
+
};
|
|
560
|
+
path: {
|
|
561
|
+
businessId: string;
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
responses: {
|
|
565
|
+
/** @description Success */
|
|
566
|
+
200: {
|
|
567
|
+
content: never;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
post: {
|
|
572
|
+
parameters: {
|
|
573
|
+
query?: {
|
|
574
|
+
backTo?: string;
|
|
575
|
+
enableRedirect?: boolean;
|
|
576
|
+
"api-version"?: string;
|
|
577
|
+
};
|
|
578
|
+
path: {
|
|
579
|
+
businessId: string;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
responses: {
|
|
583
|
+
/** @description Success */
|
|
584
|
+
200: {
|
|
585
|
+
content: never;
|
|
586
|
+
};
|
|
587
|
+
};
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
"/api/v2/Tenants/Deselect": {
|
|
591
|
+
get: {
|
|
592
|
+
parameters: {
|
|
593
|
+
query?: {
|
|
594
|
+
backTo?: string;
|
|
595
|
+
enableRedirect?: boolean;
|
|
596
|
+
"api-version"?: string;
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
responses: {
|
|
600
|
+
/** @description Success */
|
|
601
|
+
200: {
|
|
602
|
+
content: never;
|
|
603
|
+
};
|
|
604
|
+
};
|
|
605
|
+
};
|
|
606
|
+
post: {
|
|
607
|
+
parameters: {
|
|
608
|
+
query?: {
|
|
609
|
+
backTo?: string;
|
|
610
|
+
enableRedirect?: boolean;
|
|
611
|
+
"api-version"?: string;
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
responses: {
|
|
615
|
+
/** @description Success */
|
|
616
|
+
200: {
|
|
617
|
+
content: never;
|
|
618
|
+
};
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
"/api/v2/Tenants/{businessId}/AppAuthorization": {
|
|
623
|
+
get: {
|
|
624
|
+
parameters: {
|
|
625
|
+
query?: {
|
|
626
|
+
"api-version"?: string;
|
|
627
|
+
};
|
|
628
|
+
path: {
|
|
629
|
+
businessId: string;
|
|
630
|
+
};
|
|
631
|
+
};
|
|
632
|
+
responses: {
|
|
633
|
+
/** @description Success */
|
|
634
|
+
200: {
|
|
635
|
+
content: never;
|
|
636
|
+
};
|
|
637
|
+
};
|
|
638
|
+
};
|
|
639
|
+
};
|
|
640
|
+
"/api/v2/Tenants/{businessId}/Notifications": {
|
|
641
|
+
get: {
|
|
642
|
+
parameters: {
|
|
643
|
+
query?: {
|
|
644
|
+
"api-version"?: string;
|
|
645
|
+
};
|
|
646
|
+
path: {
|
|
647
|
+
businessId: string;
|
|
648
|
+
};
|
|
649
|
+
};
|
|
650
|
+
responses: {
|
|
651
|
+
/** @description Success */
|
|
652
|
+
200: {
|
|
653
|
+
content: {
|
|
654
|
+
"application/json": components["schemas"]["NotificationDtoListEnvelope"];
|
|
655
|
+
"application/xml": components["schemas"]["NotificationDtoListEnvelope"];
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
};
|
|
661
|
+
"/api/v2/Tenants/{businessId}/UserEnrollments": {
|
|
662
|
+
get: {
|
|
663
|
+
parameters: {
|
|
664
|
+
query?: {
|
|
665
|
+
"api-version"?: string;
|
|
666
|
+
};
|
|
667
|
+
path: {
|
|
668
|
+
businessId: string;
|
|
669
|
+
};
|
|
670
|
+
};
|
|
671
|
+
responses: {
|
|
672
|
+
/** @description Success */
|
|
673
|
+
200: {
|
|
674
|
+
content: {
|
|
675
|
+
"application/json": components["schemas"]["BusinessEnrollmentDto"][];
|
|
676
|
+
"application/xml": components["schemas"]["BusinessEnrollmentDto"][];
|
|
677
|
+
};
|
|
678
|
+
};
|
|
679
|
+
/** @description Unauthorized */
|
|
680
|
+
401: {
|
|
681
|
+
content: {
|
|
682
|
+
"application/json": components["schemas"]["ResponseStatus"];
|
|
683
|
+
"application/xml": components["schemas"]["ResponseStatus"];
|
|
684
|
+
};
|
|
685
|
+
};
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
export type webhooks = Record<string, never>;
|
|
692
|
+
|
|
693
|
+
export interface components {
|
|
694
|
+
schemas: {
|
|
695
|
+
AccessTokenResponse: {
|
|
696
|
+
tokenType?: string | null;
|
|
697
|
+
accessToken?: string | null;
|
|
698
|
+
/** Format: int64 */
|
|
699
|
+
expiresIn?: number;
|
|
700
|
+
refreshToken?: string | null;
|
|
701
|
+
};
|
|
702
|
+
AccountHolderCreateDto: {
|
|
703
|
+
/** Format: uuid */
|
|
704
|
+
id?: string;
|
|
705
|
+
qualifiedName?: string | null;
|
|
706
|
+
/** Format: date-time */
|
|
707
|
+
birthday?: string;
|
|
708
|
+
firstName?: string | null;
|
|
709
|
+
lastName?: string | null;
|
|
710
|
+
publicName?: string | null;
|
|
711
|
+
idProvider?: string | null;
|
|
712
|
+
languageID?: string | null;
|
|
713
|
+
timezoneID?: string | null;
|
|
714
|
+
gender?: string | null;
|
|
715
|
+
cityID?: string | null;
|
|
716
|
+
stateID?: string | null;
|
|
717
|
+
email?: string | null;
|
|
718
|
+
about?: string | null;
|
|
719
|
+
jobTitle?: string | null;
|
|
720
|
+
coverURL?: string | null;
|
|
721
|
+
avatarURL?: string | null;
|
|
722
|
+
gitHubURL?: string | null;
|
|
723
|
+
websiteURL?: string | null;
|
|
724
|
+
twitterUrl?: string | null;
|
|
725
|
+
facebookURL?: string | null;
|
|
726
|
+
youTubeURL?: string | null;
|
|
727
|
+
linkedInURL?: string | null;
|
|
728
|
+
instagramUrl?: string | null;
|
|
729
|
+
countryID?: string | null;
|
|
730
|
+
countryName?: string | null;
|
|
731
|
+
currencyID?: string | null;
|
|
732
|
+
};
|
|
733
|
+
AggregateException: {
|
|
734
|
+
targetSite?: components["schemas"]["MethodBase"];
|
|
735
|
+
data?: {
|
|
736
|
+
[key: string]: unknown;
|
|
737
|
+
} | null;
|
|
738
|
+
innerException?: components["schemas"]["Exception"];
|
|
739
|
+
helpLink?: string | null;
|
|
740
|
+
source?: string | null;
|
|
741
|
+
/** Format: int32 */
|
|
742
|
+
hResult?: number;
|
|
743
|
+
stackTrace?: string | null;
|
|
744
|
+
innerExceptions?: (readonly components["schemas"]["Exception"][]) | null;
|
|
745
|
+
message?: string | null;
|
|
746
|
+
};
|
|
747
|
+
Assembly: {
|
|
748
|
+
definedTypes?: (readonly components["schemas"]["TypeInfo"][]) | null;
|
|
749
|
+
exportedTypes?: (readonly components["schemas"]["Type"][]) | null;
|
|
750
|
+
/** @deprecated */
|
|
751
|
+
codeBase?: string | null;
|
|
752
|
+
entryPoint?: components["schemas"]["MethodInfo"];
|
|
753
|
+
fullName?: string | null;
|
|
754
|
+
imageRuntimeVersion?: string | null;
|
|
755
|
+
isDynamic?: boolean;
|
|
756
|
+
location?: string | null;
|
|
757
|
+
reflectionOnly?: boolean;
|
|
758
|
+
isCollectible?: boolean;
|
|
759
|
+
isFullyTrusted?: boolean;
|
|
760
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
761
|
+
/** @deprecated */
|
|
762
|
+
escapedCodeBase?: string | null;
|
|
763
|
+
manifestModule?: components["schemas"]["Module"];
|
|
764
|
+
modules?: (readonly components["schemas"]["Module"][]) | null;
|
|
765
|
+
/** @deprecated */
|
|
766
|
+
globalAssemblyCache?: boolean;
|
|
767
|
+
/** Format: int64 */
|
|
768
|
+
hostContext?: number;
|
|
769
|
+
/**
|
|
770
|
+
* Format: int32
|
|
771
|
+
* @enum {integer}
|
|
772
|
+
*/
|
|
773
|
+
securityRuleSet?: 0 | 1 | 2;
|
|
774
|
+
};
|
|
775
|
+
BusinessCreateDto: {
|
|
776
|
+
/** Format: uuid */
|
|
777
|
+
id?: string;
|
|
778
|
+
duns?: string | null;
|
|
779
|
+
name?: string | null;
|
|
780
|
+
legalName?: string | null;
|
|
781
|
+
email?: string | null;
|
|
782
|
+
phone?: string | null;
|
|
783
|
+
webUrl?: string | null;
|
|
784
|
+
about?: string | null;
|
|
785
|
+
handler?: string | null;
|
|
786
|
+
currencyID?: string | null;
|
|
787
|
+
countryLanguageID?: string | null;
|
|
788
|
+
timezoneID?: string | null;
|
|
789
|
+
cityID?: string | null;
|
|
790
|
+
countryStateID?: string | null;
|
|
791
|
+
countryID?: string | null;
|
|
792
|
+
taxID?: string | null;
|
|
793
|
+
avatarUrl?: string | null;
|
|
794
|
+
};
|
|
795
|
+
BusinessDto: {
|
|
796
|
+
id?: string | null;
|
|
797
|
+
/** Format: date-time */
|
|
798
|
+
timestamp?: string | null;
|
|
799
|
+
qualifiedName?: string | null;
|
|
800
|
+
taxID?: string | null;
|
|
801
|
+
about?: string | null;
|
|
802
|
+
walletID?: string | null;
|
|
803
|
+
socialFeedID?: string | null;
|
|
804
|
+
businessIndustryID?: string | null;
|
|
805
|
+
businessSegmentID?: string | null;
|
|
806
|
+
socialProfileID?: string | null;
|
|
807
|
+
languageId?: string | null;
|
|
808
|
+
name?: string | null;
|
|
809
|
+
duns?: string | null;
|
|
810
|
+
slogan?: string | null;
|
|
811
|
+
legalName?: string | null;
|
|
812
|
+
coverUrl?: string | null;
|
|
813
|
+
avatarUrl?: string | null;
|
|
814
|
+
cartID?: string | null;
|
|
815
|
+
currencyID?: string | null;
|
|
816
|
+
timezoneID?: string | null;
|
|
817
|
+
countryID?: string | null;
|
|
818
|
+
stateID?: string | null;
|
|
819
|
+
cityID?: string | null;
|
|
820
|
+
/** Format: int32 */
|
|
821
|
+
followsCount?: number | null;
|
|
822
|
+
/** Format: int32 */
|
|
823
|
+
followersCount?: number | null;
|
|
824
|
+
/** Format: int32 */
|
|
825
|
+
enrollmentsCount?: number | null;
|
|
826
|
+
/** Format: int32 */
|
|
827
|
+
socialPostsCount?: number | null;
|
|
828
|
+
/** Format: int32 */
|
|
829
|
+
unreadMessagesCount?: number | null;
|
|
830
|
+
/** Format: int32 */
|
|
831
|
+
unreadNotificationsCount?: number | null;
|
|
832
|
+
enrollmentID?: string | null;
|
|
833
|
+
c2BFollowID?: string | null;
|
|
834
|
+
b2CFollowID?: string | null;
|
|
835
|
+
email?: string | null;
|
|
836
|
+
phone?: string | null;
|
|
837
|
+
webUrl?: string | null;
|
|
838
|
+
facebookUrl?: string | null;
|
|
839
|
+
twitterUrl?: string | null;
|
|
840
|
+
gitHubUrl?: string | null;
|
|
841
|
+
linkedInUrl?: string | null;
|
|
842
|
+
instagramUrl?: string | null;
|
|
843
|
+
youTubeUrl?: string | null;
|
|
844
|
+
whatsAppNumber?: string | null;
|
|
845
|
+
verified?: boolean;
|
|
846
|
+
businessName?: string | null;
|
|
847
|
+
businessLegalName?: string | null;
|
|
848
|
+
twitterUsername?: string | null;
|
|
849
|
+
};
|
|
850
|
+
BusinessEnrollmentDto: {
|
|
851
|
+
id?: string | null;
|
|
852
|
+
isRoot?: boolean;
|
|
853
|
+
isOwner?: boolean;
|
|
854
|
+
isAdmin?: boolean;
|
|
855
|
+
isDisabled?: boolean;
|
|
856
|
+
isBusinessOwner?: boolean;
|
|
857
|
+
businessID?: string | null;
|
|
858
|
+
holderID?: string | null;
|
|
859
|
+
holder?: components["schemas"]["AccountHolderCreateDto"];
|
|
860
|
+
tenant?: components["schemas"]["BusinessDto"];
|
|
861
|
+
};
|
|
862
|
+
BusinessEnrollmentDtoEnvelope: {
|
|
863
|
+
errorMessage?: string | null;
|
|
864
|
+
isSuccess?: boolean;
|
|
865
|
+
/** Format: date-time */
|
|
866
|
+
timestamp?: string;
|
|
867
|
+
activityId?: string | null;
|
|
868
|
+
correlationId?: string | null;
|
|
869
|
+
result?: components["schemas"]["BusinessEnrollmentDto"];
|
|
870
|
+
};
|
|
871
|
+
BusinessEnrollmentDtoIReadOnlyListEnvelope: {
|
|
872
|
+
errorMessage?: string | null;
|
|
873
|
+
isSuccess?: boolean;
|
|
874
|
+
/** Format: date-time */
|
|
875
|
+
timestamp?: string;
|
|
876
|
+
activityId?: string | null;
|
|
877
|
+
correlationId?: string | null;
|
|
878
|
+
result?: components["schemas"]["BusinessEnrollmentDto"][] | null;
|
|
879
|
+
};
|
|
880
|
+
ConstructorInfo: {
|
|
881
|
+
name?: string | null;
|
|
882
|
+
declaringType?: components["schemas"]["Type"];
|
|
883
|
+
reflectedType?: components["schemas"]["Type"];
|
|
884
|
+
module?: components["schemas"]["Module"];
|
|
885
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
886
|
+
isCollectible?: boolean;
|
|
887
|
+
/** Format: int32 */
|
|
888
|
+
metadataToken?: number;
|
|
889
|
+
/**
|
|
890
|
+
* Format: int32
|
|
891
|
+
* @enum {integer}
|
|
892
|
+
*/
|
|
893
|
+
attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 53248;
|
|
894
|
+
/**
|
|
895
|
+
* Format: int32
|
|
896
|
+
* @enum {integer}
|
|
897
|
+
*/
|
|
898
|
+
methodImplementationFlags?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 4096 | 65535;
|
|
899
|
+
/**
|
|
900
|
+
* Format: int32
|
|
901
|
+
* @enum {integer}
|
|
902
|
+
*/
|
|
903
|
+
callingConvention?: 1 | 2 | 3 | 32 | 64;
|
|
904
|
+
isAbstract?: boolean;
|
|
905
|
+
isConstructor?: boolean;
|
|
906
|
+
isFinal?: boolean;
|
|
907
|
+
isHideBySig?: boolean;
|
|
908
|
+
isSpecialName?: boolean;
|
|
909
|
+
isStatic?: boolean;
|
|
910
|
+
isVirtual?: boolean;
|
|
911
|
+
isAssembly?: boolean;
|
|
912
|
+
isFamily?: boolean;
|
|
913
|
+
isFamilyAndAssembly?: boolean;
|
|
914
|
+
isFamilyOrAssembly?: boolean;
|
|
915
|
+
isPrivate?: boolean;
|
|
916
|
+
isPublic?: boolean;
|
|
917
|
+
isConstructedGenericMethod?: boolean;
|
|
918
|
+
isGenericMethod?: boolean;
|
|
919
|
+
isGenericMethodDefinition?: boolean;
|
|
920
|
+
containsGenericParameters?: boolean;
|
|
921
|
+
methodHandle?: components["schemas"]["RuntimeMethodHandle"];
|
|
922
|
+
isSecurityCritical?: boolean;
|
|
923
|
+
isSecuritySafeCritical?: boolean;
|
|
924
|
+
isSecurityTransparent?: boolean;
|
|
925
|
+
/**
|
|
926
|
+
* Format: int32
|
|
927
|
+
* @enum {integer}
|
|
928
|
+
*/
|
|
929
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
930
|
+
};
|
|
931
|
+
CustomAttributeData: {
|
|
932
|
+
attributeType?: components["schemas"]["Type"];
|
|
933
|
+
constructor?: components["schemas"]["ConstructorInfo"];
|
|
934
|
+
constructorArguments?: (readonly components["schemas"]["CustomAttributeTypedArgument"][]) | null;
|
|
935
|
+
namedArguments?: (readonly components["schemas"]["CustomAttributeNamedArgument"][]) | null;
|
|
936
|
+
};
|
|
937
|
+
CustomAttributeNamedArgument: {
|
|
938
|
+
memberInfo?: components["schemas"]["MemberInfo"];
|
|
939
|
+
typedValue?: components["schemas"]["CustomAttributeTypedArgument"];
|
|
940
|
+
memberName?: string | null;
|
|
941
|
+
isField?: boolean;
|
|
942
|
+
};
|
|
943
|
+
CustomAttributeTypedArgument: {
|
|
944
|
+
argumentType?: components["schemas"]["Type"];
|
|
945
|
+
value?: unknown;
|
|
946
|
+
};
|
|
947
|
+
Error: {
|
|
948
|
+
id?: string | null;
|
|
949
|
+
description?: string | null;
|
|
950
|
+
help?: string | null;
|
|
951
|
+
};
|
|
952
|
+
EventInfo: {
|
|
953
|
+
name?: string | null;
|
|
954
|
+
declaringType?: components["schemas"]["Type"];
|
|
955
|
+
reflectedType?: components["schemas"]["Type"];
|
|
956
|
+
module?: components["schemas"]["Module"];
|
|
957
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
958
|
+
isCollectible?: boolean;
|
|
959
|
+
/** Format: int32 */
|
|
960
|
+
metadataToken?: number;
|
|
961
|
+
/**
|
|
962
|
+
* Format: int32
|
|
963
|
+
* @enum {integer}
|
|
964
|
+
*/
|
|
965
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
966
|
+
/**
|
|
967
|
+
* Format: int32
|
|
968
|
+
* @enum {integer}
|
|
969
|
+
*/
|
|
970
|
+
attributes?: 0 | 512 | 1024;
|
|
971
|
+
isSpecialName?: boolean;
|
|
972
|
+
addMethod?: components["schemas"]["MethodInfo"];
|
|
973
|
+
removeMethod?: components["schemas"]["MethodInfo"];
|
|
974
|
+
raiseMethod?: components["schemas"]["MethodInfo"];
|
|
975
|
+
isMulticast?: boolean;
|
|
976
|
+
eventHandlerType?: components["schemas"]["Type"];
|
|
977
|
+
};
|
|
978
|
+
Exception: {
|
|
979
|
+
targetSite?: components["schemas"]["MethodBase"];
|
|
980
|
+
message?: string | null;
|
|
981
|
+
data?: {
|
|
982
|
+
[key: string]: unknown;
|
|
983
|
+
} | null;
|
|
984
|
+
innerException?: components["schemas"]["Exception"];
|
|
985
|
+
helpLink?: string | null;
|
|
986
|
+
source?: string | null;
|
|
987
|
+
/** Format: int32 */
|
|
988
|
+
hResult?: number;
|
|
989
|
+
stackTrace?: string | null;
|
|
990
|
+
};
|
|
991
|
+
FieldInfo: {
|
|
992
|
+
name?: string | null;
|
|
993
|
+
declaringType?: components["schemas"]["Type"];
|
|
994
|
+
reflectedType?: components["schemas"]["Type"];
|
|
995
|
+
module?: components["schemas"]["Module"];
|
|
996
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
997
|
+
isCollectible?: boolean;
|
|
998
|
+
/** Format: int32 */
|
|
999
|
+
metadataToken?: number;
|
|
1000
|
+
/**
|
|
1001
|
+
* Format: int32
|
|
1002
|
+
* @enum {integer}
|
|
1003
|
+
*/
|
|
1004
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1005
|
+
/**
|
|
1006
|
+
* Format: int32
|
|
1007
|
+
* @enum {integer}
|
|
1008
|
+
*/
|
|
1009
|
+
attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 4096 | 8192 | 32768 | 38144;
|
|
1010
|
+
fieldType?: components["schemas"]["Type"];
|
|
1011
|
+
isInitOnly?: boolean;
|
|
1012
|
+
isLiteral?: boolean;
|
|
1013
|
+
/** @deprecated */
|
|
1014
|
+
isNotSerialized?: boolean;
|
|
1015
|
+
isPinvokeImpl?: boolean;
|
|
1016
|
+
isSpecialName?: boolean;
|
|
1017
|
+
isStatic?: boolean;
|
|
1018
|
+
isAssembly?: boolean;
|
|
1019
|
+
isFamily?: boolean;
|
|
1020
|
+
isFamilyAndAssembly?: boolean;
|
|
1021
|
+
isFamilyOrAssembly?: boolean;
|
|
1022
|
+
isPrivate?: boolean;
|
|
1023
|
+
isPublic?: boolean;
|
|
1024
|
+
isSecurityCritical?: boolean;
|
|
1025
|
+
isSecuritySafeCritical?: boolean;
|
|
1026
|
+
isSecurityTransparent?: boolean;
|
|
1027
|
+
fieldHandle?: components["schemas"]["RuntimeFieldHandle"];
|
|
1028
|
+
};
|
|
1029
|
+
ForgotPasswordRequest: {
|
|
1030
|
+
email?: string | null;
|
|
1031
|
+
};
|
|
1032
|
+
HttpValidationProblemDetails: {
|
|
1033
|
+
type?: string | null;
|
|
1034
|
+
title?: string | null;
|
|
1035
|
+
/** Format: int32 */
|
|
1036
|
+
status?: number | null;
|
|
1037
|
+
detail?: string | null;
|
|
1038
|
+
instance?: string | null;
|
|
1039
|
+
errors?: {
|
|
1040
|
+
[key: string]: string[];
|
|
1041
|
+
} | null;
|
|
1042
|
+
[key: string]: unknown;
|
|
1043
|
+
};
|
|
1044
|
+
ICustomAttributeProvider: Record<string, never>;
|
|
1045
|
+
InfoRequest: {
|
|
1046
|
+
newEmail?: string | null;
|
|
1047
|
+
newPassword?: string | null;
|
|
1048
|
+
oldPassword?: string | null;
|
|
1049
|
+
};
|
|
1050
|
+
InfoResponse: {
|
|
1051
|
+
email?: string | null;
|
|
1052
|
+
isEmailConfirmed?: boolean;
|
|
1053
|
+
};
|
|
1054
|
+
IntPtr: Record<string, never>;
|
|
1055
|
+
LoginRequest: {
|
|
1056
|
+
email?: string | null;
|
|
1057
|
+
password?: string | null;
|
|
1058
|
+
twoFactorCode?: string | null;
|
|
1059
|
+
twoFactorRecoveryCode?: string | null;
|
|
1060
|
+
};
|
|
1061
|
+
MemberInfo: {
|
|
1062
|
+
/**
|
|
1063
|
+
* Format: int32
|
|
1064
|
+
* @enum {integer}
|
|
1065
|
+
*/
|
|
1066
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1067
|
+
name?: string | null;
|
|
1068
|
+
declaringType?: components["schemas"]["Type"];
|
|
1069
|
+
reflectedType?: components["schemas"]["Type"];
|
|
1070
|
+
module?: components["schemas"]["Module"];
|
|
1071
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1072
|
+
isCollectible?: boolean;
|
|
1073
|
+
/** Format: int32 */
|
|
1074
|
+
metadataToken?: number;
|
|
1075
|
+
};
|
|
1076
|
+
MethodBase: {
|
|
1077
|
+
/**
|
|
1078
|
+
* Format: int32
|
|
1079
|
+
* @enum {integer}
|
|
1080
|
+
*/
|
|
1081
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1082
|
+
name?: string | null;
|
|
1083
|
+
declaringType?: components["schemas"]["Type"];
|
|
1084
|
+
reflectedType?: components["schemas"]["Type"];
|
|
1085
|
+
module?: components["schemas"]["Module"];
|
|
1086
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1087
|
+
isCollectible?: boolean;
|
|
1088
|
+
/** Format: int32 */
|
|
1089
|
+
metadataToken?: number;
|
|
1090
|
+
/**
|
|
1091
|
+
* Format: int32
|
|
1092
|
+
* @enum {integer}
|
|
1093
|
+
*/
|
|
1094
|
+
attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 53248;
|
|
1095
|
+
/**
|
|
1096
|
+
* Format: int32
|
|
1097
|
+
* @enum {integer}
|
|
1098
|
+
*/
|
|
1099
|
+
methodImplementationFlags?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 4096 | 65535;
|
|
1100
|
+
/**
|
|
1101
|
+
* Format: int32
|
|
1102
|
+
* @enum {integer}
|
|
1103
|
+
*/
|
|
1104
|
+
callingConvention?: 1 | 2 | 3 | 32 | 64;
|
|
1105
|
+
isAbstract?: boolean;
|
|
1106
|
+
isConstructor?: boolean;
|
|
1107
|
+
isFinal?: boolean;
|
|
1108
|
+
isHideBySig?: boolean;
|
|
1109
|
+
isSpecialName?: boolean;
|
|
1110
|
+
isStatic?: boolean;
|
|
1111
|
+
isVirtual?: boolean;
|
|
1112
|
+
isAssembly?: boolean;
|
|
1113
|
+
isFamily?: boolean;
|
|
1114
|
+
isFamilyAndAssembly?: boolean;
|
|
1115
|
+
isFamilyOrAssembly?: boolean;
|
|
1116
|
+
isPrivate?: boolean;
|
|
1117
|
+
isPublic?: boolean;
|
|
1118
|
+
isConstructedGenericMethod?: boolean;
|
|
1119
|
+
isGenericMethod?: boolean;
|
|
1120
|
+
isGenericMethodDefinition?: boolean;
|
|
1121
|
+
containsGenericParameters?: boolean;
|
|
1122
|
+
methodHandle?: components["schemas"]["RuntimeMethodHandle"];
|
|
1123
|
+
isSecurityCritical?: boolean;
|
|
1124
|
+
isSecuritySafeCritical?: boolean;
|
|
1125
|
+
isSecurityTransparent?: boolean;
|
|
1126
|
+
};
|
|
1127
|
+
MethodInfo: {
|
|
1128
|
+
name?: string | null;
|
|
1129
|
+
declaringType?: components["schemas"]["Type"];
|
|
1130
|
+
reflectedType?: components["schemas"]["Type"];
|
|
1131
|
+
module?: components["schemas"]["Module"];
|
|
1132
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1133
|
+
isCollectible?: boolean;
|
|
1134
|
+
/** Format: int32 */
|
|
1135
|
+
metadataToken?: number;
|
|
1136
|
+
/**
|
|
1137
|
+
* Format: int32
|
|
1138
|
+
* @enum {integer}
|
|
1139
|
+
*/
|
|
1140
|
+
attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384 | 32768 | 53248;
|
|
1141
|
+
/**
|
|
1142
|
+
* Format: int32
|
|
1143
|
+
* @enum {integer}
|
|
1144
|
+
*/
|
|
1145
|
+
methodImplementationFlags?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 4096 | 65535;
|
|
1146
|
+
/**
|
|
1147
|
+
* Format: int32
|
|
1148
|
+
* @enum {integer}
|
|
1149
|
+
*/
|
|
1150
|
+
callingConvention?: 1 | 2 | 3 | 32 | 64;
|
|
1151
|
+
isAbstract?: boolean;
|
|
1152
|
+
isConstructor?: boolean;
|
|
1153
|
+
isFinal?: boolean;
|
|
1154
|
+
isHideBySig?: boolean;
|
|
1155
|
+
isSpecialName?: boolean;
|
|
1156
|
+
isStatic?: boolean;
|
|
1157
|
+
isVirtual?: boolean;
|
|
1158
|
+
isAssembly?: boolean;
|
|
1159
|
+
isFamily?: boolean;
|
|
1160
|
+
isFamilyAndAssembly?: boolean;
|
|
1161
|
+
isFamilyOrAssembly?: boolean;
|
|
1162
|
+
isPrivate?: boolean;
|
|
1163
|
+
isPublic?: boolean;
|
|
1164
|
+
isConstructedGenericMethod?: boolean;
|
|
1165
|
+
isGenericMethod?: boolean;
|
|
1166
|
+
isGenericMethodDefinition?: boolean;
|
|
1167
|
+
containsGenericParameters?: boolean;
|
|
1168
|
+
methodHandle?: components["schemas"]["RuntimeMethodHandle"];
|
|
1169
|
+
isSecurityCritical?: boolean;
|
|
1170
|
+
isSecuritySafeCritical?: boolean;
|
|
1171
|
+
isSecurityTransparent?: boolean;
|
|
1172
|
+
/**
|
|
1173
|
+
* Format: int32
|
|
1174
|
+
* @enum {integer}
|
|
1175
|
+
*/
|
|
1176
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1177
|
+
returnParameter?: components["schemas"]["ParameterInfo"];
|
|
1178
|
+
returnType?: components["schemas"]["Type"];
|
|
1179
|
+
returnTypeCustomAttributes?: components["schemas"]["ICustomAttributeProvider"];
|
|
1180
|
+
};
|
|
1181
|
+
Module: {
|
|
1182
|
+
assembly?: components["schemas"]["Assembly"];
|
|
1183
|
+
fullyQualifiedName?: string | null;
|
|
1184
|
+
name?: string | null;
|
|
1185
|
+
/** Format: int32 */
|
|
1186
|
+
mdStreamVersion?: number;
|
|
1187
|
+
/** Format: uuid */
|
|
1188
|
+
moduleVersionId?: string;
|
|
1189
|
+
scopeName?: string | null;
|
|
1190
|
+
moduleHandle?: components["schemas"]["ModuleHandle"];
|
|
1191
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1192
|
+
/** Format: int32 */
|
|
1193
|
+
metadataToken?: number;
|
|
1194
|
+
};
|
|
1195
|
+
ModuleHandle: {
|
|
1196
|
+
/** Format: int32 */
|
|
1197
|
+
mdStreamVersion?: number;
|
|
1198
|
+
};
|
|
1199
|
+
NotificationDto: {
|
|
1200
|
+
id?: string | null;
|
|
1201
|
+
/** Format: date-time */
|
|
1202
|
+
timestamp?: string | null;
|
|
1203
|
+
read?: boolean;
|
|
1204
|
+
icon?: string | null;
|
|
1205
|
+
message?: string | null;
|
|
1206
|
+
redirectUrl?: string | null;
|
|
1207
|
+
socialProfileID?: string | null;
|
|
1208
|
+
/** Format: date-time */
|
|
1209
|
+
readTimestamp?: string;
|
|
1210
|
+
/** Format: date-time */
|
|
1211
|
+
issuedTimestamp?: string;
|
|
1212
|
+
};
|
|
1213
|
+
NotificationDtoListEnvelope: {
|
|
1214
|
+
errorMessage?: string | null;
|
|
1215
|
+
isSuccess?: boolean;
|
|
1216
|
+
/** Format: date-time */
|
|
1217
|
+
timestamp?: string;
|
|
1218
|
+
activityId?: string | null;
|
|
1219
|
+
correlationId?: string | null;
|
|
1220
|
+
result?: components["schemas"]["NotificationDto"][] | null;
|
|
1221
|
+
};
|
|
1222
|
+
ParameterInfo: {
|
|
1223
|
+
/**
|
|
1224
|
+
* Format: int32
|
|
1225
|
+
* @enum {integer}
|
|
1226
|
+
*/
|
|
1227
|
+
attributes?: 0 | 1 | 2 | 4 | 8 | 16 | 4096 | 8192 | 16384 | 32768 | 61440;
|
|
1228
|
+
member?: components["schemas"]["MemberInfo"];
|
|
1229
|
+
name?: string | null;
|
|
1230
|
+
parameterType?: components["schemas"]["Type"];
|
|
1231
|
+
/** Format: int32 */
|
|
1232
|
+
position?: number;
|
|
1233
|
+
isIn?: boolean;
|
|
1234
|
+
isLcid?: boolean;
|
|
1235
|
+
isOptional?: boolean;
|
|
1236
|
+
isOut?: boolean;
|
|
1237
|
+
isRetval?: boolean;
|
|
1238
|
+
defaultValue?: unknown;
|
|
1239
|
+
rawDefaultValue?: unknown;
|
|
1240
|
+
hasDefaultValue?: boolean;
|
|
1241
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1242
|
+
/** Format: int32 */
|
|
1243
|
+
metadataToken?: number;
|
|
1244
|
+
};
|
|
1245
|
+
PropertyInfo: {
|
|
1246
|
+
name?: string | null;
|
|
1247
|
+
declaringType?: components["schemas"]["Type"];
|
|
1248
|
+
reflectedType?: components["schemas"]["Type"];
|
|
1249
|
+
module?: components["schemas"]["Module"];
|
|
1250
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1251
|
+
isCollectible?: boolean;
|
|
1252
|
+
/** Format: int32 */
|
|
1253
|
+
metadataToken?: number;
|
|
1254
|
+
/**
|
|
1255
|
+
* Format: int32
|
|
1256
|
+
* @enum {integer}
|
|
1257
|
+
*/
|
|
1258
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1259
|
+
propertyType?: components["schemas"]["Type"];
|
|
1260
|
+
/**
|
|
1261
|
+
* Format: int32
|
|
1262
|
+
* @enum {integer}
|
|
1263
|
+
*/
|
|
1264
|
+
attributes?: 0 | 512 | 1024 | 4096 | 8192 | 16384 | 32768 | 62464;
|
|
1265
|
+
isSpecialName?: boolean;
|
|
1266
|
+
canRead?: boolean;
|
|
1267
|
+
canWrite?: boolean;
|
|
1268
|
+
getMethod?: components["schemas"]["MethodInfo"];
|
|
1269
|
+
setMethod?: components["schemas"]["MethodInfo"];
|
|
1270
|
+
};
|
|
1271
|
+
RefreshRequest: {
|
|
1272
|
+
refreshToken?: string | null;
|
|
1273
|
+
};
|
|
1274
|
+
RegisterRequest: {
|
|
1275
|
+
email?: string | null;
|
|
1276
|
+
password?: string | null;
|
|
1277
|
+
};
|
|
1278
|
+
ResendConfirmationEmailRequest: {
|
|
1279
|
+
email?: string | null;
|
|
1280
|
+
};
|
|
1281
|
+
ResetPasswordRequest: {
|
|
1282
|
+
email?: string | null;
|
|
1283
|
+
resetCode?: string | null;
|
|
1284
|
+
newPassword?: string | null;
|
|
1285
|
+
};
|
|
1286
|
+
ResponseStatus: {
|
|
1287
|
+
success?: boolean;
|
|
1288
|
+
error?: components["schemas"]["Error"];
|
|
1289
|
+
correlationID?: string | null;
|
|
1290
|
+
/** Format: date-time */
|
|
1291
|
+
utcTimestamp?: string;
|
|
1292
|
+
};
|
|
1293
|
+
RuntimeFieldHandle: {
|
|
1294
|
+
value?: components["schemas"]["IntPtr"];
|
|
1295
|
+
};
|
|
1296
|
+
RuntimeMethodHandle: {
|
|
1297
|
+
value?: components["schemas"]["IntPtr"];
|
|
1298
|
+
};
|
|
1299
|
+
RuntimeTypeHandle: {
|
|
1300
|
+
value?: components["schemas"]["IntPtr"];
|
|
1301
|
+
};
|
|
1302
|
+
StringListEnvelope: {
|
|
1303
|
+
errorMessage?: string | null;
|
|
1304
|
+
isSuccess?: boolean;
|
|
1305
|
+
/** Format: date-time */
|
|
1306
|
+
timestamp?: string;
|
|
1307
|
+
activityId?: string | null;
|
|
1308
|
+
correlationId?: string | null;
|
|
1309
|
+
result?: string[] | null;
|
|
1310
|
+
};
|
|
1311
|
+
StructLayoutAttribute: {
|
|
1312
|
+
typeId?: unknown;
|
|
1313
|
+
/**
|
|
1314
|
+
* Format: int32
|
|
1315
|
+
* @enum {integer}
|
|
1316
|
+
*/
|
|
1317
|
+
value?: 0 | 2 | 3;
|
|
1318
|
+
};
|
|
1319
|
+
TwoFactorRequest: {
|
|
1320
|
+
enable?: boolean | null;
|
|
1321
|
+
twoFactorCode?: string | null;
|
|
1322
|
+
resetSharedKey?: boolean;
|
|
1323
|
+
resetRecoveryCodes?: boolean;
|
|
1324
|
+
forgetMachine?: boolean;
|
|
1325
|
+
};
|
|
1326
|
+
TwoFactorResponse: {
|
|
1327
|
+
sharedKey?: string | null;
|
|
1328
|
+
/** Format: int32 */
|
|
1329
|
+
recoveryCodesLeft?: number;
|
|
1330
|
+
recoveryCodes?: string[] | null;
|
|
1331
|
+
isTwoFactorEnabled?: boolean;
|
|
1332
|
+
isMachineRemembered?: boolean;
|
|
1333
|
+
};
|
|
1334
|
+
Type: {
|
|
1335
|
+
name?: string | null;
|
|
1336
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1337
|
+
isCollectible?: boolean;
|
|
1338
|
+
/** Format: int32 */
|
|
1339
|
+
metadataToken?: number;
|
|
1340
|
+
isInterface?: boolean;
|
|
1341
|
+
/**
|
|
1342
|
+
* Format: int32
|
|
1343
|
+
* @enum {integer}
|
|
1344
|
+
*/
|
|
1345
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1346
|
+
namespace?: string | null;
|
|
1347
|
+
assemblyQualifiedName?: string | null;
|
|
1348
|
+
fullName?: string | null;
|
|
1349
|
+
assembly?: components["schemas"]["Assembly"];
|
|
1350
|
+
module?: components["schemas"]["Module"];
|
|
1351
|
+
isNested?: boolean;
|
|
1352
|
+
declaringType?: components["schemas"]["Type"];
|
|
1353
|
+
declaringMethod?: components["schemas"]["MethodBase"];
|
|
1354
|
+
reflectedType?: components["schemas"]["Type"];
|
|
1355
|
+
underlyingSystemType?: components["schemas"]["Type"];
|
|
1356
|
+
isTypeDefinition?: boolean;
|
|
1357
|
+
isArray?: boolean;
|
|
1358
|
+
isByRef?: boolean;
|
|
1359
|
+
isPointer?: boolean;
|
|
1360
|
+
isConstructedGenericType?: boolean;
|
|
1361
|
+
isGenericParameter?: boolean;
|
|
1362
|
+
isGenericTypeParameter?: boolean;
|
|
1363
|
+
isGenericMethodParameter?: boolean;
|
|
1364
|
+
isGenericType?: boolean;
|
|
1365
|
+
isGenericTypeDefinition?: boolean;
|
|
1366
|
+
isSZArray?: boolean;
|
|
1367
|
+
isVariableBoundArray?: boolean;
|
|
1368
|
+
isByRefLike?: boolean;
|
|
1369
|
+
isFunctionPointer?: boolean;
|
|
1370
|
+
isUnmanagedFunctionPointer?: boolean;
|
|
1371
|
+
hasElementType?: boolean;
|
|
1372
|
+
genericTypeArguments?: (readonly components["schemas"]["Type"][]) | null;
|
|
1373
|
+
/** Format: int32 */
|
|
1374
|
+
genericParameterPosition?: number;
|
|
1375
|
+
/**
|
|
1376
|
+
* Format: int32
|
|
1377
|
+
* @enum {integer}
|
|
1378
|
+
*/
|
|
1379
|
+
genericParameterAttributes?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 28;
|
|
1380
|
+
/**
|
|
1381
|
+
* Format: int32
|
|
1382
|
+
* @enum {integer}
|
|
1383
|
+
*/
|
|
1384
|
+
attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 24 | 32 | 128 | 256 | 1024 | 2048 | 4096 | 8192 | 16384 | 65536 | 131072 | 196608 | 262144 | 264192 | 1048576 | 12582912;
|
|
1385
|
+
isAbstract?: boolean;
|
|
1386
|
+
isImport?: boolean;
|
|
1387
|
+
isSealed?: boolean;
|
|
1388
|
+
isSpecialName?: boolean;
|
|
1389
|
+
isClass?: boolean;
|
|
1390
|
+
isNestedAssembly?: boolean;
|
|
1391
|
+
isNestedFamANDAssem?: boolean;
|
|
1392
|
+
isNestedFamily?: boolean;
|
|
1393
|
+
isNestedFamORAssem?: boolean;
|
|
1394
|
+
isNestedPrivate?: boolean;
|
|
1395
|
+
isNestedPublic?: boolean;
|
|
1396
|
+
isNotPublic?: boolean;
|
|
1397
|
+
isPublic?: boolean;
|
|
1398
|
+
isAutoLayout?: boolean;
|
|
1399
|
+
isExplicitLayout?: boolean;
|
|
1400
|
+
isLayoutSequential?: boolean;
|
|
1401
|
+
isAnsiClass?: boolean;
|
|
1402
|
+
isAutoClass?: boolean;
|
|
1403
|
+
isUnicodeClass?: boolean;
|
|
1404
|
+
isCOMObject?: boolean;
|
|
1405
|
+
isContextful?: boolean;
|
|
1406
|
+
isEnum?: boolean;
|
|
1407
|
+
isMarshalByRef?: boolean;
|
|
1408
|
+
isPrimitive?: boolean;
|
|
1409
|
+
isValueType?: boolean;
|
|
1410
|
+
isSignatureType?: boolean;
|
|
1411
|
+
isSecurityCritical?: boolean;
|
|
1412
|
+
isSecuritySafeCritical?: boolean;
|
|
1413
|
+
isSecurityTransparent?: boolean;
|
|
1414
|
+
structLayoutAttribute?: components["schemas"]["StructLayoutAttribute"];
|
|
1415
|
+
typeInitializer?: components["schemas"]["ConstructorInfo"];
|
|
1416
|
+
typeHandle?: components["schemas"]["RuntimeTypeHandle"];
|
|
1417
|
+
/** Format: uuid */
|
|
1418
|
+
guid?: string;
|
|
1419
|
+
baseType?: components["schemas"]["Type"];
|
|
1420
|
+
/** @deprecated */
|
|
1421
|
+
isSerializable?: boolean;
|
|
1422
|
+
containsGenericParameters?: boolean;
|
|
1423
|
+
isVisible?: boolean;
|
|
1424
|
+
};
|
|
1425
|
+
TypeInfo: {
|
|
1426
|
+
name?: string | null;
|
|
1427
|
+
customAttributes?: (readonly components["schemas"]["CustomAttributeData"][]) | null;
|
|
1428
|
+
isCollectible?: boolean;
|
|
1429
|
+
/** Format: int32 */
|
|
1430
|
+
metadataToken?: number;
|
|
1431
|
+
isInterface?: boolean;
|
|
1432
|
+
/**
|
|
1433
|
+
* Format: int32
|
|
1434
|
+
* @enum {integer}
|
|
1435
|
+
*/
|
|
1436
|
+
memberType?: 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 191;
|
|
1437
|
+
namespace?: string | null;
|
|
1438
|
+
assemblyQualifiedName?: string | null;
|
|
1439
|
+
fullName?: string | null;
|
|
1440
|
+
assembly?: components["schemas"]["Assembly"];
|
|
1441
|
+
module?: components["schemas"]["Module"];
|
|
1442
|
+
isNested?: boolean;
|
|
1443
|
+
declaringType?: components["schemas"]["Type"];
|
|
1444
|
+
declaringMethod?: components["schemas"]["MethodBase"];
|
|
1445
|
+
reflectedType?: components["schemas"]["Type"];
|
|
1446
|
+
underlyingSystemType?: components["schemas"]["Type"];
|
|
1447
|
+
isTypeDefinition?: boolean;
|
|
1448
|
+
isArray?: boolean;
|
|
1449
|
+
isByRef?: boolean;
|
|
1450
|
+
isPointer?: boolean;
|
|
1451
|
+
isConstructedGenericType?: boolean;
|
|
1452
|
+
isGenericParameter?: boolean;
|
|
1453
|
+
isGenericTypeParameter?: boolean;
|
|
1454
|
+
isGenericMethodParameter?: boolean;
|
|
1455
|
+
isGenericType?: boolean;
|
|
1456
|
+
isGenericTypeDefinition?: boolean;
|
|
1457
|
+
isSZArray?: boolean;
|
|
1458
|
+
isVariableBoundArray?: boolean;
|
|
1459
|
+
isByRefLike?: boolean;
|
|
1460
|
+
isFunctionPointer?: boolean;
|
|
1461
|
+
isUnmanagedFunctionPointer?: boolean;
|
|
1462
|
+
hasElementType?: boolean;
|
|
1463
|
+
genericTypeArguments?: (readonly components["schemas"]["Type"][]) | null;
|
|
1464
|
+
/** Format: int32 */
|
|
1465
|
+
genericParameterPosition?: number;
|
|
1466
|
+
/**
|
|
1467
|
+
* Format: int32
|
|
1468
|
+
* @enum {integer}
|
|
1469
|
+
*/
|
|
1470
|
+
genericParameterAttributes?: 0 | 1 | 2 | 3 | 4 | 8 | 16 | 28;
|
|
1471
|
+
/**
|
|
1472
|
+
* Format: int32
|
|
1473
|
+
* @enum {integer}
|
|
1474
|
+
*/
|
|
1475
|
+
attributes?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 16 | 24 | 32 | 128 | 256 | 1024 | 2048 | 4096 | 8192 | 16384 | 65536 | 131072 | 196608 | 262144 | 264192 | 1048576 | 12582912;
|
|
1476
|
+
isAbstract?: boolean;
|
|
1477
|
+
isImport?: boolean;
|
|
1478
|
+
isSealed?: boolean;
|
|
1479
|
+
isSpecialName?: boolean;
|
|
1480
|
+
isClass?: boolean;
|
|
1481
|
+
isNestedAssembly?: boolean;
|
|
1482
|
+
isNestedFamANDAssem?: boolean;
|
|
1483
|
+
isNestedFamily?: boolean;
|
|
1484
|
+
isNestedFamORAssem?: boolean;
|
|
1485
|
+
isNestedPrivate?: boolean;
|
|
1486
|
+
isNestedPublic?: boolean;
|
|
1487
|
+
isNotPublic?: boolean;
|
|
1488
|
+
isPublic?: boolean;
|
|
1489
|
+
isAutoLayout?: boolean;
|
|
1490
|
+
isExplicitLayout?: boolean;
|
|
1491
|
+
isLayoutSequential?: boolean;
|
|
1492
|
+
isAnsiClass?: boolean;
|
|
1493
|
+
isAutoClass?: boolean;
|
|
1494
|
+
isUnicodeClass?: boolean;
|
|
1495
|
+
isCOMObject?: boolean;
|
|
1496
|
+
isContextful?: boolean;
|
|
1497
|
+
isEnum?: boolean;
|
|
1498
|
+
isMarshalByRef?: boolean;
|
|
1499
|
+
isPrimitive?: boolean;
|
|
1500
|
+
isValueType?: boolean;
|
|
1501
|
+
isSignatureType?: boolean;
|
|
1502
|
+
isSecurityCritical?: boolean;
|
|
1503
|
+
isSecuritySafeCritical?: boolean;
|
|
1504
|
+
isSecurityTransparent?: boolean;
|
|
1505
|
+
structLayoutAttribute?: components["schemas"]["StructLayoutAttribute"];
|
|
1506
|
+
typeInitializer?: components["schemas"]["ConstructorInfo"];
|
|
1507
|
+
typeHandle?: components["schemas"]["RuntimeTypeHandle"];
|
|
1508
|
+
/** Format: uuid */
|
|
1509
|
+
guid?: string;
|
|
1510
|
+
baseType?: components["schemas"]["Type"];
|
|
1511
|
+
/** @deprecated */
|
|
1512
|
+
isSerializable?: boolean;
|
|
1513
|
+
containsGenericParameters?: boolean;
|
|
1514
|
+
isVisible?: boolean;
|
|
1515
|
+
genericTypeParameters?: (readonly components["schemas"]["Type"][]) | null;
|
|
1516
|
+
declaredConstructors?: (readonly components["schemas"]["ConstructorInfo"][]) | null;
|
|
1517
|
+
declaredEvents?: (readonly components["schemas"]["EventInfo"][]) | null;
|
|
1518
|
+
declaredFields?: (readonly components["schemas"]["FieldInfo"][]) | null;
|
|
1519
|
+
declaredMembers?: (readonly components["schemas"]["MemberInfo"][]) | null;
|
|
1520
|
+
declaredMethods?: (readonly components["schemas"]["MethodInfo"][]) | null;
|
|
1521
|
+
declaredNestedTypes?: (readonly components["schemas"]["TypeInfo"][]) | null;
|
|
1522
|
+
declaredProperties?: (readonly components["schemas"]["PropertyInfo"][]) | null;
|
|
1523
|
+
implementedInterfaces?: (readonly components["schemas"]["Type"][]) | null;
|
|
1524
|
+
};
|
|
1525
|
+
WalletDto: {
|
|
1526
|
+
id?: string | null;
|
|
1527
|
+
/** Format: date-time */
|
|
1528
|
+
timestamp?: string;
|
|
1529
|
+
/** Format: double */
|
|
1530
|
+
balance?: number;
|
|
1531
|
+
type?: string | null;
|
|
1532
|
+
testMode?: boolean;
|
|
1533
|
+
verified?: boolean;
|
|
1534
|
+
currencyId?: string | null;
|
|
1535
|
+
/** Format: double */
|
|
1536
|
+
forexRate?: number;
|
|
1537
|
+
/** Format: double */
|
|
1538
|
+
balanceInUsd?: number;
|
|
1539
|
+
/** Format: double */
|
|
1540
|
+
mainNetEtherBalance?: number;
|
|
1541
|
+
ethereumAddress?: string | null;
|
|
1542
|
+
ethereumPublicKey?: string | null;
|
|
1543
|
+
ethereumPrivateKey?: string | null;
|
|
1544
|
+
/** Format: double */
|
|
1545
|
+
rollingReservePercent?: number;
|
|
1546
|
+
};
|
|
1547
|
+
WalletDtoTask: {
|
|
1548
|
+
/** Format: int32 */
|
|
1549
|
+
id?: number;
|
|
1550
|
+
exception?: components["schemas"]["AggregateException"];
|
|
1551
|
+
/**
|
|
1552
|
+
* Format: int32
|
|
1553
|
+
* @enum {integer}
|
|
1554
|
+
*/
|
|
1555
|
+
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1556
|
+
isCanceled?: boolean;
|
|
1557
|
+
isCompleted?: boolean;
|
|
1558
|
+
isCompletedSuccessfully?: boolean;
|
|
1559
|
+
/**
|
|
1560
|
+
* Format: int32
|
|
1561
|
+
* @enum {integer}
|
|
1562
|
+
*/
|
|
1563
|
+
creationOptions?: 0 | 1 | 2 | 4 | 8 | 16 | 64;
|
|
1564
|
+
asyncState?: unknown;
|
|
1565
|
+
isFaulted?: boolean;
|
|
1566
|
+
result?: components["schemas"]["WalletDto"];
|
|
1567
|
+
};
|
|
1568
|
+
WalletDtoTaskEnvelope: {
|
|
1569
|
+
errorMessage?: string | null;
|
|
1570
|
+
isSuccess?: boolean;
|
|
1571
|
+
/** Format: date-time */
|
|
1572
|
+
timestamp?: string;
|
|
1573
|
+
activityId?: string | null;
|
|
1574
|
+
correlationId?: string | null;
|
|
1575
|
+
result?: components["schemas"]["WalletDtoTask"];
|
|
1576
|
+
};
|
|
1577
|
+
};
|
|
1578
|
+
responses: never;
|
|
1579
|
+
parameters: never;
|
|
1580
|
+
requestBodies: never;
|
|
1581
|
+
headers: never;
|
|
1582
|
+
pathItems: never;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
export type $defs = Record<string, never>;
|
|
1586
|
+
|
|
1587
|
+
export type external = Record<string, never>;
|
|
1588
|
+
|
|
1589
|
+
export interface operations {
|
|
1590
|
+
|
|
1591
|
+
"MapIdentityApi-/confirmEmail": {
|
|
1592
|
+
parameters: {
|
|
1593
|
+
query?: {
|
|
1594
|
+
userId?: string;
|
|
1595
|
+
code?: string;
|
|
1596
|
+
changedEmail?: string;
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
responses: {
|
|
1600
|
+
/** @description Success */
|
|
1601
|
+
200: {
|
|
1602
|
+
content: never;
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
}
|