@fenixalliance/abs-api-client 1.0.0 → 1.0.2
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/app/index.ts +5 -0
- package/clients/cartService/core/ApiError.ts +24 -24
- package/clients/cartService/core/ApiRequestOptions.ts +16 -16
- package/clients/cartService/core/ApiResult.ts +10 -10
- package/clients/cartService/core/CancelablePromise.ts +130 -130
- package/clients/cartService/core/OpenAPI.ts +31 -31
- package/clients/cartService/core/request.ts +321 -321
- package/clients/cartService/index.ts +36 -52
- package/clients/cartService/models/CartDto.ts +1 -0
- package/clients/cartService/models/{RegisterRequest.ts → CartUpdateRequest.ts} +3 -3
- package/clients/cartService/models/{InfoResponse.ts → CountrySwitchRequest.ts} +3 -3
- package/clients/cartService/models/EmptyEnvelope.ts +11 -0
- package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -0
- package/clients/cartService/models/ItemCartRecordDto.ts +3 -1
- package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → cartService/models/ItemCartRecordDtoListEnvelope.ts} +3 -3
- package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +1 -1
- package/clients/cartService/models/WishListDto.ts +2 -1
- package/clients/cartService/services/CartsService.ts +53 -7
- package/clients/cartService/services/CompareService.ts +7 -6
- package/clients/cartService/services/RecordsService.ts +23 -20
- package/clients/cartService/services/WishListsService.ts +17 -17
- package/clients/catalogService/core/ApiError.ts +24 -24
- package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
- package/clients/catalogService/core/ApiResult.ts +10 -10
- package/clients/catalogService/core/CancelablePromise.ts +130 -130
- package/clients/catalogService/core/OpenAPI.ts +31 -31
- package/clients/catalogService/core/request.ts +321 -321
- package/clients/catalogService/index.ts +102 -124
- package/clients/catalogService/models/EmptyEnvelope.ts +11 -0
- package/clients/catalogService/models/ItemAttachmentCreateDto.ts +4 -8
- package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +2 -5
- package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
- package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +1 -1
- package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
- package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
- package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemGoogleCategoryDto.ts +12 -3
- package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
- package/clients/catalogService/models/ItemImageDto.ts +0 -1
- package/clients/catalogService/models/{ItemImagesUpdateDto.ts → ItemImageUpdateDto.ts} +6 -9
- package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
- package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
- package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
- package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
- package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
- package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
- package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
- package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
- package/clients/catalogService/models/ItemTypeDto.ts +4 -4
- package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
- package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
- package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
- package/clients/catalogService/models/PricingRuleDto.ts +0 -1
- package/clients/catalogService/models/StockItemCreateDto.ts +100 -3
- package/clients/catalogService/models/StockItemDto.ts +133 -4
- package/clients/catalogService/models/StockItemUpdateDto.ts +99 -2
- package/clients/catalogService/services/ItemAttachmentsService.ts +24 -13
- package/clients/catalogService/services/ItemAttributesService.ts +19 -9
- package/clients/catalogService/services/ItemBrandsService.ts +19 -9
- package/clients/catalogService/services/ItemCategoriesService.ts +19 -9
- package/clients/catalogService/services/ItemImagesService.ts +23 -13
- package/clients/catalogService/services/ItemQuestionsService.ts +19 -9
- package/clients/catalogService/services/ItemReviewsService.ts +18 -8
- package/clients/catalogService/services/ItemTagsService.ts +17 -12
- package/clients/catalogService/services/ItemTypesService.ts +19 -9
- package/clients/catalogService/services/PricingRulesService.ts +19 -11
- package/clients/catalogService/services/ProductsService.ts +177 -214
- package/clients/{contactService → crmService}/core/ApiError.ts +24 -24
- package/clients/{contactService → crmService}/core/ApiRequestOptions.ts +16 -16
- package/clients/{contactService → crmService}/core/ApiResult.ts +10 -10
- package/clients/{contactService → crmService}/core/CancelablePromise.ts +130 -130
- package/clients/{contactService → crmService}/core/OpenAPI.ts +31 -31
- package/clients/{contactService → crmService}/core/request.ts +321 -321
- package/clients/crmService/index.ts +23 -0
- package/clients/crmService/models/CartDto.ts +18 -0
- package/clients/{cartService/models/WishListDtoEnvelope.ts → crmService/models/CartDtoEnvelope.ts} +3 -3
- package/clients/crmService/models/ContactDto.ts +57 -0
- package/clients/crmService/models/EmptyEnvelope.ts +11 -0
- package/clients/crmService/models/SocialProfileDto.ts +39 -0
- package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
- package/clients/crmService/models/WalletDto.ts +22 -0
- package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/crmService/services/ContactsService.ts +286 -0
- package/clients/crmService/services/SyncService.ts +101 -0
- package/clients/forexService/core/ApiError.ts +24 -24
- package/clients/forexService/core/ApiRequestOptions.ts +16 -16
- package/clients/forexService/core/ApiResult.ts +10 -10
- package/clients/forexService/core/CancelablePromise.ts +130 -130
- package/clients/forexService/core/OpenAPI.ts +31 -31
- package/clients/forexService/core/request.ts +321 -321
- package/clients/forexService/index.ts +18 -30
- package/clients/{cartService/models/Envelope.ts → forexService/models/ErrorEnvelope.ts} +1 -2
- package/clients/forexService/models/ForexRatesDto.ts +1 -1
- package/clients/forexService/models/Money.ts +1 -1
- package/clients/forexService/services/ExchangeService.ts +17 -7
- package/clients/forexService/services/RatesService.ts +11 -1
- package/clients/holderService/core/ApiError.ts +24 -24
- package/clients/holderService/core/ApiRequestOptions.ts +16 -16
- package/clients/holderService/core/ApiResult.ts +10 -10
- package/clients/holderService/core/CancelablePromise.ts +130 -130
- package/clients/holderService/core/OpenAPI.ts +31 -31
- package/clients/holderService/core/request.ts +321 -321
- package/clients/holderService/index.ts +35 -31
- package/clients/holderService/models/AddressDto.ts +31 -0
- package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/CartDto.ts +18 -0
- package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
- package/clients/holderService/models/InvoiceDto.ts +13 -0
- package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → holderService/models/InvoiceDtoListEnvelope.ts} +1 -1
- package/clients/holderService/models/NotificationDto.ts +16 -0
- package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/OrderDto.ts +27 -0
- package/clients/holderService/models/OrderDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/PaymentDto.ts +17 -0
- package/clients/holderService/models/PaymentDtoListEnvelope.ts +14 -0
- package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +4 -4
- package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
- package/clients/holderService/models/SocialProfileDto.ts +39 -0
- package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
- package/clients/{identityService/models/BusinessDto.ts → holderService/models/TenantDto.ts} +16 -15
- package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/TenantEnrollmentDto.ts +14 -0
- package/clients/holderService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/WalletDto.ts +22 -0
- package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/holderService/services/HolderService.ts +99 -28
- package/clients/identityService/core/ApiError.ts +24 -24
- package/clients/identityService/core/ApiRequestOptions.ts +16 -16
- package/clients/identityService/core/ApiResult.ts +10 -10
- package/clients/identityService/core/CancelablePromise.ts +130 -130
- package/clients/identityService/core/OpenAPI.ts +31 -31
- package/clients/identityService/core/request.ts +321 -321
- package/clients/identityService/index.ts +40 -53
- package/clients/identityService/models/AccountHolderCreateDto.ts +1 -0
- package/clients/identityService/models/ApiResponse.ts +4 -5
- package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +4 -4
- package/clients/{holderService/models/BusinessDto.ts → identityService/models/TenantDto.ts} +16 -15
- package/clients/identityService/services/CheckerService.ts +3 -2
- package/clients/identityService/services/OAuthService.ts +8 -6
- package/clients/inventoryService/core/ApiError.ts +24 -24
- package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
- package/clients/inventoryService/core/ApiResult.ts +10 -10
- package/clients/inventoryService/core/CancelablePromise.ts +130 -130
- package/clients/inventoryService/core/OpenAPI.ts +31 -31
- package/clients/inventoryService/core/request.ts +321 -321
- package/clients/inventoryService/index.ts +10 -24
- package/clients/invoicingService/core/ApiError.ts +24 -24
- package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
- package/clients/invoicingService/core/ApiResult.ts +10 -10
- package/clients/invoicingService/core/CancelablePromise.ts +130 -130
- package/clients/invoicingService/core/OpenAPI.ts +31 -31
- package/clients/invoicingService/core/request.ts +321 -321
- package/clients/invoicingService/index.ts +23 -28
- package/clients/invoicingService/models/EmptyEnvelope.ts +11 -0
- package/clients/invoicingService/models/InvoiceCreateDto.ts +11 -0
- package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
- package/clients/{cartService/models/ProductCartRecordDto.ts → invoicingService/models/InvoiceLineDto.ts} +7 -10
- package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
- package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → invoicingService/models/InvoiceLineDtoListEnvelope.ts} +3 -3
- package/clients/{tenantService/models/IntPtr.ts → invoicingService/models/InvoiceUpdateDto.ts} +1 -1
- package/clients/invoicingService/models/ItemPriceCreateDto.ts +20 -0
- package/clients/invoicingService/models/ItemPriceUpdateDto.ts +14 -0
- package/clients/invoicingService/services/InvoicesService.ts +253 -15
- package/clients/ordersService/core/ApiError.ts +25 -0
- package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
- package/clients/ordersService/core/ApiResult.ts +11 -0
- package/clients/ordersService/core/CancelablePromise.ts +131 -0
- package/clients/ordersService/core/OpenAPI.ts +32 -0
- package/clients/ordersService/core/request.ts +322 -0
- package/clients/ordersService/index.ts +23 -0
- package/clients/ordersService/models/EmptyEnvelope.ts +11 -0
- package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
- package/clients/ordersService/models/ItemPriceCreateDto.ts +20 -0
- package/clients/ordersService/models/ItemPriceUpdateDto.ts +14 -0
- package/clients/ordersService/models/OrderCreateDto.ts +16 -0
- package/clients/ordersService/models/OrderDto.ts +27 -0
- package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderLineDto.ts +95 -0
- package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +14 -0
- package/clients/ordersService/models/OrderUpdateDto.ts +12 -0
- package/clients/ordersService/services/OrdersService.ts +296 -0
- package/clients/pricingService/core/ApiError.ts +24 -24
- package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
- package/clients/pricingService/core/ApiResult.ts +10 -10
- package/clients/pricingService/core/CancelablePromise.ts +130 -130
- package/clients/pricingService/core/OpenAPI.ts +31 -31
- package/clients/pricingService/core/request.ts +321 -321
- package/clients/pricingService/index.ts +27 -29
- package/clients/pricingService/models/EmptyEnvelope.ts +11 -0
- package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
- package/clients/pricingService/models/ItemPriceDto.ts +20 -0
- package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
- package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
- package/clients/pricingService/models/ItemPriceUpdateDto.ts +14 -0
- package/clients/pricingService/models/Money.ts +1 -1
- package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
- package/clients/pricingService/models/PriceListDto.ts +17 -0
- package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
- package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
- package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
- package/clients/pricingService/services/PriceListsService.ts +254 -8
- package/clients/systemService/core/ApiError.ts +25 -0
- package/clients/systemService/core/ApiRequestOptions.ts +17 -0
- package/clients/systemService/core/ApiResult.ts +11 -0
- package/clients/systemService/core/CancelablePromise.ts +131 -0
- package/clients/systemService/core/OpenAPI.ts +32 -0
- package/clients/systemService/core/request.ts +322 -0
- package/clients/systemService/index.ts +14 -0
- package/clients/systemService/models/ErrorEnvelope.ts +12 -0
- package/clients/systemService/models/StringListEnvelope.ts +13 -0
- package/clients/systemService/services/AntiforgeryService.ts +29 -0
- package/clients/systemService/services/MigrationsService.ts +44 -0
- package/clients/tenantService/core/ApiError.ts +24 -24
- package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
- package/clients/tenantService/core/ApiResult.ts +10 -10
- package/clients/tenantService/core/CancelablePromise.ts +130 -130
- package/clients/tenantService/core/OpenAPI.ts +31 -31
- package/clients/tenantService/core/request.ts +321 -321
- package/clients/tenantService/index.ts +33 -62
- package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
- package/clients/tenantService/models/CartDto.ts +18 -0
- package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/EmptyEnvelope.ts +11 -0
- package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
- package/clients/tenantService/models/PlatformUserDto.ts +73 -0
- package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/SocialProfileDto.ts +39 -0
- package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +2 -1
- package/clients/tenantService/models/{BusinessDto.ts → TenantDto.ts} +16 -15
- package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantEnrollmentDto.ts +14 -0
- package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → tenantService/models/TenantEnrollmentDtoEnvelope.ts} +3 -3
- package/clients/tenantService/models/TenantEnrollmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/WalletDto.ts +2 -1
- package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/{Error.ts → WebPortalDto.ts} +5 -3
- package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
- package/clients/tenantService/services/TenantsService.ts +230 -105
- package/clients/walletsService/core/ApiError.ts +25 -0
- package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
- package/clients/walletsService/core/ApiResult.ts +11 -0
- package/clients/walletsService/core/CancelablePromise.ts +131 -0
- package/clients/walletsService/core/OpenAPI.ts +32 -0
- package/clients/walletsService/core/request.ts +322 -0
- package/clients/walletsService/index.ts +22 -0
- package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
- package/clients/walletsService/models/InvoiceDto.ts +13 -0
- package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/LocationDto.ts +31 -0
- package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/OrderDto.ts +27 -0
- package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/PaymentDto.ts +17 -0
- package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
- package/clients/walletsService/models/WalletDto.ts +22 -0
- package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
- package/clients/walletsService/services/WalletsService.ts +174 -0
- package/package.json +23 -21
- package/schemas/cartService/schema.s.ts +1166 -1560
- package/schemas/catalogService/schema.s.ts +5982 -6109
- package/schemas/crmService/schema.s.ts +804 -0
- package/schemas/forexService/schema.s.ts +602 -526
- package/schemas/holderService/schema.s.ts +831 -831
- package/schemas/identityService/schema.s.ts +744 -1119
- package/schemas/inventoryService/schema.s.ts +43 -425
- package/schemas/invoicingService/schema.s.ts +590 -521
- package/schemas/ordersService/schema.s.ts +605 -0
- package/schemas/pricingService/schema.s.ts +579 -549
- package/schemas/systemService/schema.s.ts +138 -0
- package/schemas/tenantService/schema.s.ts +1116 -1606
- package/schemas/walletsService/schema.s.ts +466 -0
- package/tsconfig.json +110 -0
- package/vite.config.js +29 -0
- package/wwwroot/build/bundle.js +1 -0
- package/clients/cartService/models/AccessTokenResponse.ts +0 -11
- package/clients/cartService/models/Error.ts +0 -10
- package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/cartService/models/InfoRequest.ts +0 -10
- package/clients/cartService/models/LoginRequest.ts +0 -11
- package/clients/cartService/models/RefreshRequest.ts +0 -8
- package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
- package/clients/cartService/models/ResponseStatus.ts +0 -12
- package/clients/cartService/models/TwoFactorRequest.ts +0 -12
- package/clients/cartService/models/TwoFactorResponse.ts +0 -12
- package/clients/cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts +0 -14
- package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
- package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/catalogService/models/InfoRequest.ts +0 -10
- package/clients/catalogService/models/InfoResponse.ts +0 -9
- package/clients/catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
- package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/LoginRequest.ts +0 -11
- package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
- package/clients/catalogService/models/RefreshRequest.ts +0 -8
- package/clients/catalogService/models/RegisterRequest.ts +0 -9
- package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
- package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
- package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
- package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/contactService/index.ts +0 -28
- package/clients/contactService/models/AccessTokenResponse.ts +0 -11
- package/clients/contactService/models/ContactDto.ts +0 -44
- package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/contactService/models/InfoRequest.ts +0 -10
- package/clients/contactService/models/InfoResponse.ts +0 -9
- package/clients/contactService/models/LoginRequest.ts +0 -11
- package/clients/contactService/models/RefreshRequest.ts +0 -8
- package/clients/contactService/models/RegisterRequest.ts +0 -9
- package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
- package/clients/contactService/models/TwoFactorRequest.ts +0 -12
- package/clients/contactService/models/TwoFactorResponse.ts +0 -12
- package/clients/contactService/services/ContactsService.ts +0 -140
- package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/forexService/models/AccessTokenResponse.ts +0 -11
- package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/forexService/models/InfoRequest.ts +0 -10
- package/clients/forexService/models/InfoResponse.ts +0 -9
- package/clients/forexService/models/LoginRequest.ts +0 -11
- package/clients/forexService/models/RefreshRequest.ts +0 -8
- package/clients/forexService/models/RegisterRequest.ts +0 -9
- package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
- package/clients/forexService/models/TwoFactorRequest.ts +0 -12
- package/clients/forexService/models/TwoFactorResponse.ts +0 -12
- package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/holderService/models/AccessTokenResponse.ts +0 -11
- package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
- package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
- package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
- package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/holderService/models/InfoRequest.ts +0 -10
- package/clients/holderService/models/InfoResponse.ts +0 -9
- package/clients/holderService/models/LoginRequest.ts +0 -11
- package/clients/holderService/models/RefreshRequest.ts +0 -8
- package/clients/holderService/models/RegisterRequest.ts +0 -9
- package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
- package/clients/holderService/models/TwoFactorRequest.ts +0 -12
- package/clients/holderService/models/TwoFactorResponse.ts +0 -12
- package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/identityService/models/AccessTokenResponse.ts +0 -11
- package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/identityService/models/InfoRequest.ts +0 -10
- package/clients/identityService/models/InfoResponse.ts +0 -9
- package/clients/identityService/models/LoginRequest.ts +0 -11
- package/clients/identityService/models/RefreshRequest.ts +0 -8
- package/clients/identityService/models/RegisterRequest.ts +0 -9
- package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
- package/clients/identityService/models/TwoFactorRequest.ts +0 -12
- package/clients/identityService/models/TwoFactorResponse.ts +0 -12
- package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
- package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/inventoryService/models/InfoRequest.ts +0 -10
- package/clients/inventoryService/models/InfoResponse.ts +0 -9
- package/clients/inventoryService/models/LoginRequest.ts +0 -11
- package/clients/inventoryService/models/RefreshRequest.ts +0 -8
- package/clients/inventoryService/models/RegisterRequest.ts +0 -9
- package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
- package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
- package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
- package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
- package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/invoicingService/models/InfoRequest.ts +0 -10
- package/clients/invoicingService/models/InfoResponse.ts +0 -9
- package/clients/invoicingService/models/LoginRequest.ts +0 -11
- package/clients/invoicingService/models/RefreshRequest.ts +0 -8
- package/clients/invoicingService/models/RegisterRequest.ts +0 -9
- package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
- package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
- package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
- package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/pricingService/models/InfoRequest.ts +0 -10
- package/clients/pricingService/models/InfoResponse.ts +0 -9
- package/clients/pricingService/models/LoginRequest.ts +0 -11
- package/clients/pricingService/models/RefreshRequest.ts +0 -8
- package/clients/pricingService/models/RegisterRequest.ts +0 -9
- package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
- package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
- package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
- package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
- package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
- package/clients/tenantService/models/AggregateException.ts +0 -18
- package/clients/tenantService/models/Assembly.ts +0 -46
- package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
- package/clients/tenantService/models/BusinessEnrollmentDtoEnvelope.ts +0 -14
- package/clients/tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts +0 -14
- package/clients/tenantService/models/ConstructorInfo.ts +0 -103
- package/clients/tenantService/models/CustomAttributeData.ts +0 -15
- package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
- package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
- package/clients/tenantService/models/EventInfo.ts +0 -44
- package/clients/tenantService/models/Exception.ts +0 -16
- package/clients/tenantService/models/FieldInfo.ts +0 -74
- package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/tenantService/models/ICustomAttributeProvider.ts +0 -5
- package/clients/tenantService/models/InfoRequest.ts +0 -10
- package/clients/tenantService/models/InfoResponse.ts +0 -9
- package/clients/tenantService/models/LoginRequest.ts +0 -11
- package/clients/tenantService/models/MemberInfo.ts +0 -31
- package/clients/tenantService/models/MethodBase.ts +0 -103
- package/clients/tenantService/models/MethodInfo.ts +0 -108
- package/clients/tenantService/models/Module.ts +0 -19
- package/clients/tenantService/models/ModuleHandle.ts +0 -8
- package/clients/tenantService/models/ParameterInfo.ts +0 -40
- package/clients/tenantService/models/PropertyInfo.ts +0 -49
- package/clients/tenantService/models/RefreshRequest.ts +0 -8
- package/clients/tenantService/models/RegisterRequest.ts +0 -9
- package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
- package/clients/tenantService/models/ResponseStatus.ts +0 -12
- package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
- package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
- package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
- package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
- package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
- package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
- package/clients/tenantService/models/Type.ts +0 -141
- package/clients/tenantService/models/TypeInfo.ts +0 -156
- package/clients/tenantService/models/WalletDtoTask.ts +0 -40
- package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
- package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
- package/schemas/contactService/schema.s.ts +0 -674
- /package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +0 -0
- /package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +0 -0
- /package/clients/{contactService → crmService}/models/ErrorEnvelope.ts +0 -0
|
@@ -1,293 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
import type { AccessTokenResponse } from '../models/AccessTokenResponse';
|
|
6
|
-
import type { ForgotPasswordRequest } from '../models/ForgotPasswordRequest';
|
|
7
|
-
import type { InfoRequest } from '../models/InfoRequest';
|
|
8
|
-
import type { InfoResponse } from '../models/InfoResponse';
|
|
9
|
-
import type { LoginRequest } from '../models/LoginRequest';
|
|
10
|
-
import type { RefreshRequest } from '../models/RefreshRequest';
|
|
11
|
-
import type { RegisterRequest } from '../models/RegisterRequest';
|
|
12
|
-
import type { ResendConfirmationEmailRequest } from '../models/ResendConfirmationEmailRequest';
|
|
13
|
-
import type { ResetPasswordRequest } from '../models/ResetPasswordRequest';
|
|
14
|
-
import type { TwoFactorRequest } from '../models/TwoFactorRequest';
|
|
15
|
-
import type { TwoFactorResponse } from '../models/TwoFactorResponse';
|
|
16
|
-
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
17
|
-
import { OpenAPI } from '../core/OpenAPI';
|
|
18
|
-
import { request as __request } from '../core/request';
|
|
19
|
-
export class FenixAllianceAbsWebService {
|
|
20
|
-
/**
|
|
21
|
-
* @returns any Success
|
|
22
|
-
* @throws ApiError
|
|
23
|
-
*/
|
|
24
|
-
public static getVersion(): CancelablePromise<any> {
|
|
25
|
-
return __request(OpenAPI, {
|
|
26
|
-
method: 'GET',
|
|
27
|
-
url: '/version',
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* @returns any Success
|
|
32
|
-
* @throws ApiError
|
|
33
|
-
*/
|
|
34
|
-
public static getHealth(): CancelablePromise<any> {
|
|
35
|
-
return __request(OpenAPI, {
|
|
36
|
-
method: 'GET',
|
|
37
|
-
url: '/health',
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* @returns any Success
|
|
42
|
-
* @throws ApiError
|
|
43
|
-
*/
|
|
44
|
-
public static getHello(): CancelablePromise<any> {
|
|
45
|
-
return __request(OpenAPI, {
|
|
46
|
-
method: 'GET',
|
|
47
|
-
url: '/hello',
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* @param requestBody
|
|
52
|
-
* @returns any Success
|
|
53
|
-
* @throws ApiError
|
|
54
|
-
*/
|
|
55
|
-
public static postRegister(
|
|
56
|
-
requestBody?: RegisterRequest,
|
|
57
|
-
): CancelablePromise<any> {
|
|
58
|
-
return __request(OpenAPI, {
|
|
59
|
-
method: 'POST',
|
|
60
|
-
url: '/register',
|
|
61
|
-
body: requestBody,
|
|
62
|
-
mediaType: 'application/json',
|
|
63
|
-
errors: {
|
|
64
|
-
400: `Bad Request`,
|
|
65
|
-
},
|
|
66
|
-
});
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* @param useCookies
|
|
70
|
-
* @param useSessionCookies
|
|
71
|
-
* @param requestBody
|
|
72
|
-
* @returns AccessTokenResponse Success
|
|
73
|
-
* @throws ApiError
|
|
74
|
-
*/
|
|
75
|
-
public static postLogin(
|
|
76
|
-
useCookies?: boolean,
|
|
77
|
-
useSessionCookies?: boolean,
|
|
78
|
-
requestBody?: LoginRequest,
|
|
79
|
-
): CancelablePromise<AccessTokenResponse> {
|
|
80
|
-
return __request(OpenAPI, {
|
|
81
|
-
method: 'POST',
|
|
82
|
-
url: '/login',
|
|
83
|
-
query: {
|
|
84
|
-
'useCookies': useCookies,
|
|
85
|
-
'useSessionCookies': useSessionCookies,
|
|
86
|
-
},
|
|
87
|
-
body: requestBody,
|
|
88
|
-
mediaType: 'application/json',
|
|
89
|
-
});
|
|
90
|
-
}
|
|
91
|
-
/**
|
|
92
|
-
* @param requestBody
|
|
93
|
-
* @returns AccessTokenResponse Success
|
|
94
|
-
* @throws ApiError
|
|
95
|
-
*/
|
|
96
|
-
public static postRefresh(
|
|
97
|
-
requestBody?: RefreshRequest,
|
|
98
|
-
): CancelablePromise<AccessTokenResponse> {
|
|
99
|
-
return __request(OpenAPI, {
|
|
100
|
-
method: 'POST',
|
|
101
|
-
url: '/refresh',
|
|
102
|
-
body: requestBody,
|
|
103
|
-
mediaType: 'application/json',
|
|
104
|
-
});
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* @param userId
|
|
108
|
-
* @param code
|
|
109
|
-
* @param changedEmail
|
|
110
|
-
* @returns any Success
|
|
111
|
-
* @throws ApiError
|
|
112
|
-
*/
|
|
113
|
-
public static mapIdentityApiConfirmEmail(
|
|
114
|
-
userId?: string,
|
|
115
|
-
code?: string,
|
|
116
|
-
changedEmail?: string,
|
|
117
|
-
): CancelablePromise<any> {
|
|
118
|
-
return __request(OpenAPI, {
|
|
119
|
-
method: 'GET',
|
|
120
|
-
url: '/confirmEmail',
|
|
121
|
-
query: {
|
|
122
|
-
'userId': userId,
|
|
123
|
-
'code': code,
|
|
124
|
-
'changedEmail': changedEmail,
|
|
125
|
-
},
|
|
126
|
-
});
|
|
127
|
-
}
|
|
128
|
-
/**
|
|
129
|
-
* @param requestBody
|
|
130
|
-
* @returns any Success
|
|
131
|
-
* @throws ApiError
|
|
132
|
-
*/
|
|
133
|
-
public static postResendConfirmationEmail(
|
|
134
|
-
requestBody?: ResendConfirmationEmailRequest,
|
|
135
|
-
): CancelablePromise<any> {
|
|
136
|
-
return __request(OpenAPI, {
|
|
137
|
-
method: 'POST',
|
|
138
|
-
url: '/resendConfirmationEmail',
|
|
139
|
-
body: requestBody,
|
|
140
|
-
mediaType: 'application/json',
|
|
141
|
-
});
|
|
142
|
-
}
|
|
143
|
-
/**
|
|
144
|
-
* @param requestBody
|
|
145
|
-
* @returns any Success
|
|
146
|
-
* @throws ApiError
|
|
147
|
-
*/
|
|
148
|
-
public static postForgotPassword(
|
|
149
|
-
requestBody?: ForgotPasswordRequest,
|
|
150
|
-
): CancelablePromise<any> {
|
|
151
|
-
return __request(OpenAPI, {
|
|
152
|
-
method: 'POST',
|
|
153
|
-
url: '/forgotPassword',
|
|
154
|
-
body: requestBody,
|
|
155
|
-
mediaType: 'application/json',
|
|
156
|
-
errors: {
|
|
157
|
-
400: `Bad Request`,
|
|
158
|
-
},
|
|
159
|
-
});
|
|
160
|
-
}
|
|
161
|
-
/**
|
|
162
|
-
* @param requestBody
|
|
163
|
-
* @returns any Success
|
|
164
|
-
* @throws ApiError
|
|
165
|
-
*/
|
|
166
|
-
public static postResetPassword(
|
|
167
|
-
requestBody?: ResetPasswordRequest,
|
|
168
|
-
): CancelablePromise<any> {
|
|
169
|
-
return __request(OpenAPI, {
|
|
170
|
-
method: 'POST',
|
|
171
|
-
url: '/resetPassword',
|
|
172
|
-
body: requestBody,
|
|
173
|
-
mediaType: 'application/json',
|
|
174
|
-
errors: {
|
|
175
|
-
400: `Bad Request`,
|
|
176
|
-
},
|
|
177
|
-
});
|
|
178
|
-
}
|
|
179
|
-
/**
|
|
180
|
-
* @param requestBody
|
|
181
|
-
* @returns TwoFactorResponse Success
|
|
182
|
-
* @throws ApiError
|
|
183
|
-
*/
|
|
184
|
-
public static postManage2Fa(
|
|
185
|
-
requestBody?: TwoFactorRequest,
|
|
186
|
-
): CancelablePromise<TwoFactorResponse> {
|
|
187
|
-
return __request(OpenAPI, {
|
|
188
|
-
method: 'POST',
|
|
189
|
-
url: '/manage/2fa',
|
|
190
|
-
body: requestBody,
|
|
191
|
-
mediaType: 'application/json',
|
|
192
|
-
errors: {
|
|
193
|
-
400: `Bad Request`,
|
|
194
|
-
404: `Not Found`,
|
|
195
|
-
},
|
|
196
|
-
});
|
|
197
|
-
}
|
|
198
|
-
/**
|
|
199
|
-
* @returns InfoResponse Success
|
|
200
|
-
* @throws ApiError
|
|
201
|
-
*/
|
|
202
|
-
public static getManageInfo(): CancelablePromise<InfoResponse> {
|
|
203
|
-
return __request(OpenAPI, {
|
|
204
|
-
method: 'GET',
|
|
205
|
-
url: '/manage/info',
|
|
206
|
-
errors: {
|
|
207
|
-
400: `Bad Request`,
|
|
208
|
-
404: `Not Found`,
|
|
209
|
-
},
|
|
210
|
-
});
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
* @param requestBody
|
|
214
|
-
* @returns InfoResponse Success
|
|
215
|
-
* @throws ApiError
|
|
216
|
-
*/
|
|
217
|
-
public static postManageInfo(
|
|
218
|
-
requestBody?: InfoRequest,
|
|
219
|
-
): CancelablePromise<InfoResponse> {
|
|
220
|
-
return __request(OpenAPI, {
|
|
221
|
-
method: 'POST',
|
|
222
|
-
url: '/manage/info',
|
|
223
|
-
body: requestBody,
|
|
224
|
-
mediaType: 'application/json',
|
|
225
|
-
errors: {
|
|
226
|
-
400: `Bad Request`,
|
|
227
|
-
404: `Not Found`,
|
|
228
|
-
},
|
|
229
|
-
});
|
|
230
|
-
}
|
|
231
|
-
/**
|
|
232
|
-
* @param formData
|
|
233
|
-
* @returns any Success
|
|
234
|
-
* @throws ApiError
|
|
235
|
-
*/
|
|
236
|
-
public static postAccountPerformExternalLogin(
|
|
237
|
-
formData?: {
|
|
238
|
-
provider: string;
|
|
239
|
-
returnUrl: string;
|
|
240
|
-
},
|
|
241
|
-
): CancelablePromise<any> {
|
|
242
|
-
return __request(OpenAPI, {
|
|
243
|
-
method: 'POST',
|
|
244
|
-
url: '/Account/PerformExternalLogin',
|
|
245
|
-
formData: formData,
|
|
246
|
-
mediaType: 'multipart/form-data',
|
|
247
|
-
});
|
|
248
|
-
}
|
|
249
|
-
/**
|
|
250
|
-
* @param formData
|
|
251
|
-
* @returns any Success
|
|
252
|
-
* @throws ApiError
|
|
253
|
-
*/
|
|
254
|
-
public static postAccountLogout(
|
|
255
|
-
formData?: {
|
|
256
|
-
returnUrl: string;
|
|
257
|
-
},
|
|
258
|
-
): CancelablePromise<any> {
|
|
259
|
-
return __request(OpenAPI, {
|
|
260
|
-
method: 'POST',
|
|
261
|
-
url: '/Account/Logout',
|
|
262
|
-
formData: formData,
|
|
263
|
-
mediaType: 'multipart/form-data',
|
|
264
|
-
});
|
|
265
|
-
}
|
|
266
|
-
/**
|
|
267
|
-
* @param formData
|
|
268
|
-
* @returns any Success
|
|
269
|
-
* @throws ApiError
|
|
270
|
-
*/
|
|
271
|
-
public static postAccountManageLinkExternalLogin(
|
|
272
|
-
formData?: {
|
|
273
|
-
provider: string;
|
|
274
|
-
},
|
|
275
|
-
): CancelablePromise<any> {
|
|
276
|
-
return __request(OpenAPI, {
|
|
277
|
-
method: 'POST',
|
|
278
|
-
url: '/Account/Manage/LinkExternalLogin',
|
|
279
|
-
formData: formData,
|
|
280
|
-
mediaType: 'multipart/form-data',
|
|
281
|
-
});
|
|
282
|
-
}
|
|
283
|
-
/**
|
|
284
|
-
* @returns any Success
|
|
285
|
-
* @throws ApiError
|
|
286
|
-
*/
|
|
287
|
-
public static postAccountManageDownloadPersonalData(): CancelablePromise<any> {
|
|
288
|
-
return __request(OpenAPI, {
|
|
289
|
-
method: 'POST',
|
|
290
|
-
url: '/Account/Manage/DownloadPersonalData',
|
|
291
|
-
});
|
|
292
|
-
}
|
|
293
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
export type AccessTokenResponse = {
|
|
6
|
-
readonly tokenType?: string | null;
|
|
7
|
-
accessToken?: string | null;
|
|
8
|
-
expiresIn?: number;
|
|
9
|
-
refreshToken?: string | null;
|
|
10
|
-
};
|
|
11
|
-
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
export type AccountHolderCreateDto = {
|
|
6
|
-
readonly id?: string;
|
|
7
|
-
qualifiedName?: string | null;
|
|
8
|
-
birthday?: string;
|
|
9
|
-
firstName?: string | null;
|
|
10
|
-
lastName?: string | null;
|
|
11
|
-
publicName?: string | null;
|
|
12
|
-
idProvider?: string | null;
|
|
13
|
-
languageID?: string | null;
|
|
14
|
-
timezoneID?: string | null;
|
|
15
|
-
gender?: string | null;
|
|
16
|
-
cityID?: string | null;
|
|
17
|
-
stateID?: string | null;
|
|
18
|
-
email?: string | null;
|
|
19
|
-
about?: string | null;
|
|
20
|
-
jobTitle?: string | null;
|
|
21
|
-
coverURL?: string | null;
|
|
22
|
-
avatarURL?: string | null;
|
|
23
|
-
gitHubURL?: string | null;
|
|
24
|
-
websiteURL?: string | null;
|
|
25
|
-
twitterUrl?: string | null;
|
|
26
|
-
facebookURL?: string | null;
|
|
27
|
-
youTubeURL?: string | null;
|
|
28
|
-
linkedInURL?: string | null;
|
|
29
|
-
instagramUrl?: string | null;
|
|
30
|
-
countryID?: string | null;
|
|
31
|
-
countryName?: string | null;
|
|
32
|
-
currencyID?: string | null;
|
|
33
|
-
};
|
|
34
|
-
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
import type { Exception } from './Exception';
|
|
6
|
-
import type { MethodBase } from './MethodBase';
|
|
7
|
-
export type AggregateException = {
|
|
8
|
-
targetSite?: MethodBase;
|
|
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
|
-
readonly innerExceptions?: Array<Exception> | null;
|
|
16
|
-
readonly message?: string | null;
|
|
17
|
-
};
|
|
18
|
-
|
|
@@ -1,46 +0,0 @@
|
|
|
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
|
-
import type { TypeInfo } from './TypeInfo';
|
|
10
|
-
export type Assembly = {
|
|
11
|
-
readonly definedTypes?: Array<TypeInfo> | null;
|
|
12
|
-
readonly exportedTypes?: Array<Type> | null;
|
|
13
|
-
/**
|
|
14
|
-
* @deprecated
|
|
15
|
-
*/
|
|
16
|
-
readonly codeBase?: string | null;
|
|
17
|
-
entryPoint?: MethodInfo;
|
|
18
|
-
readonly fullName?: string | null;
|
|
19
|
-
readonly imageRuntimeVersion?: string | null;
|
|
20
|
-
readonly isDynamic?: boolean;
|
|
21
|
-
readonly location?: string | null;
|
|
22
|
-
readonly reflectionOnly?: boolean;
|
|
23
|
-
readonly isCollectible?: boolean;
|
|
24
|
-
readonly isFullyTrusted?: boolean;
|
|
25
|
-
readonly customAttributes?: Array<CustomAttributeData> | null;
|
|
26
|
-
/**
|
|
27
|
-
* @deprecated
|
|
28
|
-
*/
|
|
29
|
-
readonly escapedCodeBase?: string | null;
|
|
30
|
-
manifestModule?: Module;
|
|
31
|
-
readonly modules?: Array<Module> | null;
|
|
32
|
-
/**
|
|
33
|
-
* @deprecated
|
|
34
|
-
*/
|
|
35
|
-
readonly globalAssemblyCache?: boolean;
|
|
36
|
-
readonly hostContext?: number;
|
|
37
|
-
readonly securityRuleSet?: Assembly.securityRuleSet;
|
|
38
|
-
};
|
|
39
|
-
export namespace Assembly {
|
|
40
|
-
export enum securityRuleSet {
|
|
41
|
-
'_0' = 0,
|
|
42
|
-
'_1' = 1,
|
|
43
|
-
'_2' = 2,
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
import type { AccountHolderCreateDto } from './AccountHolderCreateDto';
|
|
6
|
-
import type { BusinessDto } from './BusinessDto';
|
|
7
|
-
export type BusinessEnrollmentDto = {
|
|
8
|
-
id?: string | null;
|
|
9
|
-
isRoot?: boolean;
|
|
10
|
-
isOwner?: boolean;
|
|
11
|
-
isAdmin?: boolean;
|
|
12
|
-
isDisabled?: boolean;
|
|
13
|
-
isBusinessOwner?: boolean;
|
|
14
|
-
businessID?: string | null;
|
|
15
|
-
holderID?: string | null;
|
|
16
|
-
holder?: AccountHolderCreateDto;
|
|
17
|
-
tenant?: BusinessDto;
|
|
18
|
-
};
|
|
19
|
-
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
import type { BusinessEnrollmentDto } from './BusinessEnrollmentDto';
|
|
6
|
-
export type BusinessEnrollmentDtoEnvelope = {
|
|
7
|
-
errorMessage?: string | null;
|
|
8
|
-
readonly isSuccess?: boolean;
|
|
9
|
-
readonly timestamp?: string;
|
|
10
|
-
readonly activityId?: string | null;
|
|
11
|
-
correlationId?: string | null;
|
|
12
|
-
result?: BusinessEnrollmentDto;
|
|
13
|
-
};
|
|
14
|
-
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
import type { BusinessEnrollmentDto } from './BusinessEnrollmentDto';
|
|
6
|
-
export type BusinessEnrollmentDtoIReadOnlyListEnvelope = {
|
|
7
|
-
errorMessage?: string | null;
|
|
8
|
-
readonly isSuccess?: boolean;
|
|
9
|
-
readonly timestamp?: string;
|
|
10
|
-
readonly activityId?: string | null;
|
|
11
|
-
correlationId?: string | null;
|
|
12
|
-
result?: Array<BusinessEnrollmentDto> | null;
|
|
13
|
-
};
|
|
14
|
-
|
|
@@ -1,103 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,15 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,10 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,44 +0,0 @@
|
|
|
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
|
-
|
|
@@ -1,16 +0,0 @@
|
|
|
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
|
-
|