@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,1119 +1,744 @@
|
|
|
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
|
-
"/api/v2/Applications/{appID}": {
|
|
9
|
-
get: {
|
|
10
|
-
parameters: {
|
|
11
|
-
query?: {
|
|
12
|
-
"api-version"?: string;
|
|
13
|
-
};
|
|
14
|
-
path: {
|
|
15
|
-
appID: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
responses: {
|
|
19
|
-
/** @description Success */
|
|
20
|
-
200: {
|
|
21
|
-
content: never;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
"/api/v2/Applications/{appID}/RequiredPermissions": {
|
|
27
|
-
get: {
|
|
28
|
-
parameters: {
|
|
29
|
-
query?: {
|
|
30
|
-
"api-version"?: string;
|
|
31
|
-
};
|
|
32
|
-
path: {
|
|
33
|
-
appID: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
responses: {
|
|
37
|
-
/** @description Success */
|
|
38
|
-
200: {
|
|
39
|
-
content: never;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
"/api/v2/Applications/{appID}/GrantedPermissions": {
|
|
45
|
-
get: {
|
|
46
|
-
parameters: {
|
|
47
|
-
query?: {
|
|
48
|
-
tenantID?: string;
|
|
49
|
-
"api-version"?: string;
|
|
50
|
-
};
|
|
51
|
-
path: {
|
|
52
|
-
appID: string;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
responses: {
|
|
56
|
-
/** @description Success */
|
|
57
|
-
200: {
|
|
58
|
-
content: never;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
|
-
"/api/v2/Applications/{appID}/GrantedRoles": {
|
|
64
|
-
get: {
|
|
65
|
-
parameters: {
|
|
66
|
-
query?: {
|
|
67
|
-
tenantID?: string;
|
|
68
|
-
"api-version"?: string;
|
|
69
|
-
};
|
|
70
|
-
path: {
|
|
71
|
-
appID: string;
|
|
72
|
-
};
|
|
73
|
-
};
|
|
74
|
-
responses: {
|
|
75
|
-
/** @description Success */
|
|
76
|
-
200: {
|
|
77
|
-
content: never;
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
"/api/v2/Applications/{appID}/GrantedRoles/{SecurityRoleID}/GrantedPermissions": {
|
|
83
|
-
get: {
|
|
84
|
-
parameters: {
|
|
85
|
-
query?: {
|
|
86
|
-
enrollmentID?: string;
|
|
87
|
-
"api-version"?: string;
|
|
88
|
-
};
|
|
89
|
-
path: {
|
|
90
|
-
appID: string;
|
|
91
|
-
securityRoleID: string;
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
responses: {
|
|
95
|
-
/** @description Success */
|
|
96
|
-
200: {
|
|
97
|
-
content: never;
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
|
-
};
|
|
101
|
-
};
|
|
102
|
-
"/api/v2/Auth/Checker/IsAuthenticated": {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"application/
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
};
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
};
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
"application/
|
|
199
|
-
};
|
|
200
|
-
};
|
|
201
|
-
responses: {
|
|
202
|
-
/** @description Success */
|
|
203
|
-
200: {
|
|
204
|
-
content: {
|
|
205
|
-
"application/json": components["schemas"]["
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
};
|
|
241
|
-
/** @description Bad Request */
|
|
242
|
-
400: {
|
|
243
|
-
content: {
|
|
244
|
-
"application/
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
};
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
};
|
|
268
|
-
};
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
};
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
"application/
|
|
289
|
-
};
|
|
290
|
-
};
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
"application/
|
|
311
|
-
};
|
|
312
|
-
};
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
post: {
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
"
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
email?: string | null;
|
|
746
|
-
about?: string | null;
|
|
747
|
-
jobTitle?: string | null;
|
|
748
|
-
coverUrl?: string | null;
|
|
749
|
-
avatarUrl?: string | null;
|
|
750
|
-
gitHubUrl?: string | null;
|
|
751
|
-
websiteUrl?: string | null;
|
|
752
|
-
twitterUrl?: string | null;
|
|
753
|
-
facebookUrl?: string | null;
|
|
754
|
-
youTubeUrl?: string | null;
|
|
755
|
-
linkedInUrl?: string | null;
|
|
756
|
-
instagramUrl?: string | null;
|
|
757
|
-
lockoutEnabled?: boolean;
|
|
758
|
-
socialFeedId?: string | null;
|
|
759
|
-
socialProfileId?: string | null;
|
|
760
|
-
currentTenantId?: string | null;
|
|
761
|
-
currentEnrollmentId?: string | null;
|
|
762
|
-
cartId?: string | null;
|
|
763
|
-
walletId?: string | null;
|
|
764
|
-
countryId?: string | null;
|
|
765
|
-
currencyId?: string | null;
|
|
766
|
-
userName?: string | null;
|
|
767
|
-
status?: string | null;
|
|
768
|
-
phoneNumber?: string | null;
|
|
769
|
-
publicIdentifier?: string | null;
|
|
770
|
-
identityProvider?: string | null;
|
|
771
|
-
phoneNumberConfirmed?: boolean;
|
|
772
|
-
emailConfirmed?: boolean;
|
|
773
|
-
/**
|
|
774
|
-
* Format: int32
|
|
775
|
-
* @enum {integer}
|
|
776
|
-
*/
|
|
777
|
-
themeMode?: 0 | 1 | 2;
|
|
778
|
-
/**
|
|
779
|
-
* Format: int32
|
|
780
|
-
* @enum {integer}
|
|
781
|
-
*/
|
|
782
|
-
availability?: 0 | 1 | 2 | 3 | 4;
|
|
783
|
-
/** Format: int32 */
|
|
784
|
-
followsCount?: number | null;
|
|
785
|
-
/** Format: int32 */
|
|
786
|
-
followersCount?: number | null;
|
|
787
|
-
/** Format: int32 */
|
|
788
|
-
enrollmentsCount?: number | null;
|
|
789
|
-
/** Format: int32 */
|
|
790
|
-
socialPostsCount?: number | null;
|
|
791
|
-
/** Format: int32 */
|
|
792
|
-
unreadMessagesCount?: number | null;
|
|
793
|
-
/** Format: int32 */
|
|
794
|
-
unreadNotificationsCount?: number | null;
|
|
795
|
-
webUrl?: string | null;
|
|
796
|
-
countryStateId?: string | null;
|
|
797
|
-
selectedBusinessId?: string | null;
|
|
798
|
-
};
|
|
799
|
-
Actor: {
|
|
800
|
-
id?: string | null;
|
|
801
|
-
type?: string | null;
|
|
802
|
-
cartID?: string | null;
|
|
803
|
-
actingAs?: string | null;
|
|
804
|
-
socialProfileID?: string | null;
|
|
805
|
-
};
|
|
806
|
-
ApiResponse: {
|
|
807
|
-
/** Format: uuid */
|
|
808
|
-
id?: string;
|
|
809
|
-
holder?: components["schemas"]["AccountHolderDto"];
|
|
810
|
-
ipLookup?: components["schemas"]["IPLookupDto"];
|
|
811
|
-
tenant?: components["schemas"]["BusinessDto"];
|
|
812
|
-
actor?: components["schemas"]["Actor"];
|
|
813
|
-
status?: components["schemas"]["ResponseStatus"];
|
|
814
|
-
application?: components["schemas"]["ClientApplication"];
|
|
815
|
-
pagination?: components["schemas"]["ResponsePagination"];
|
|
816
|
-
};
|
|
817
|
-
ApiResponseEnvelope: {
|
|
818
|
-
errorMessage?: string | null;
|
|
819
|
-
isSuccess?: boolean;
|
|
820
|
-
/** Format: date-time */
|
|
821
|
-
timestamp?: string;
|
|
822
|
-
activityId?: string | null;
|
|
823
|
-
correlationId?: string | null;
|
|
824
|
-
result?: components["schemas"]["ApiResponse"];
|
|
825
|
-
};
|
|
826
|
-
BusinessDto: {
|
|
827
|
-
id?: string | null;
|
|
828
|
-
/** Format: date-time */
|
|
829
|
-
timestamp?: string | null;
|
|
830
|
-
qualifiedName?: string | null;
|
|
831
|
-
taxID?: string | null;
|
|
832
|
-
about?: string | null;
|
|
833
|
-
walletID?: string | null;
|
|
834
|
-
socialFeedID?: string | null;
|
|
835
|
-
businessIndustryID?: string | null;
|
|
836
|
-
businessSegmentID?: string | null;
|
|
837
|
-
socialProfileID?: string | null;
|
|
838
|
-
languageId?: string | null;
|
|
839
|
-
name?: string | null;
|
|
840
|
-
duns?: string | null;
|
|
841
|
-
slogan?: string | null;
|
|
842
|
-
legalName?: string | null;
|
|
843
|
-
coverUrl?: string | null;
|
|
844
|
-
avatarUrl?: string | null;
|
|
845
|
-
cartID?: string | null;
|
|
846
|
-
currencyID?: string | null;
|
|
847
|
-
timezoneID?: string | null;
|
|
848
|
-
countryID?: string | null;
|
|
849
|
-
stateID?: string | null;
|
|
850
|
-
cityID?: string | null;
|
|
851
|
-
/** Format: int32 */
|
|
852
|
-
followsCount?: number | null;
|
|
853
|
-
/** Format: int32 */
|
|
854
|
-
followersCount?: number | null;
|
|
855
|
-
/** Format: int32 */
|
|
856
|
-
enrollmentsCount?: number | null;
|
|
857
|
-
/** Format: int32 */
|
|
858
|
-
socialPostsCount?: number | null;
|
|
859
|
-
/** Format: int32 */
|
|
860
|
-
unreadMessagesCount?: number | null;
|
|
861
|
-
/** Format: int32 */
|
|
862
|
-
unreadNotificationsCount?: number | null;
|
|
863
|
-
enrollmentID?: string | null;
|
|
864
|
-
c2BFollowID?: string | null;
|
|
865
|
-
b2CFollowID?: string | null;
|
|
866
|
-
email?: string | null;
|
|
867
|
-
phone?: string | null;
|
|
868
|
-
webUrl?: string | null;
|
|
869
|
-
facebookUrl?: string | null;
|
|
870
|
-
twitterUrl?: string | null;
|
|
871
|
-
gitHubUrl?: string | null;
|
|
872
|
-
linkedInUrl?: string | null;
|
|
873
|
-
instagramUrl?: string | null;
|
|
874
|
-
youTubeUrl?: string | null;
|
|
875
|
-
whatsAppNumber?: string | null;
|
|
876
|
-
verified?: boolean;
|
|
877
|
-
businessName?: string | null;
|
|
878
|
-
businessLegalName?: string | null;
|
|
879
|
-
twitterUsername?: string | null;
|
|
880
|
-
};
|
|
881
|
-
ClientApplication: {
|
|
882
|
-
id?: string | null;
|
|
883
|
-
name?: string | null;
|
|
884
|
-
avatar?: string | null;
|
|
885
|
-
tenantID?: string | null;
|
|
886
|
-
tenantName?: string | null;
|
|
887
|
-
tenantAvatar?: string | null;
|
|
888
|
-
privacyPolicy?: string | null;
|
|
889
|
-
termsAndConditions?: string | null;
|
|
890
|
-
grantedPermissions?: string[] | null;
|
|
891
|
-
};
|
|
892
|
-
Error: {
|
|
893
|
-
id?: string | null;
|
|
894
|
-
description?: string | null;
|
|
895
|
-
help?: string | null;
|
|
896
|
-
};
|
|
897
|
-
ErrorEnvelope: {
|
|
898
|
-
errorMessage?: string | null;
|
|
899
|
-
isSuccess?: boolean;
|
|
900
|
-
/** Format: date-time */
|
|
901
|
-
timestamp?: string;
|
|
902
|
-
activityId?: string | null;
|
|
903
|
-
correlationId?: string | null;
|
|
904
|
-
};
|
|
905
|
-
ForgotPasswordRequest: {
|
|
906
|
-
email?: string | null;
|
|
907
|
-
};
|
|
908
|
-
HttpValidationProblemDetails: {
|
|
909
|
-
type?: string | null;
|
|
910
|
-
title?: string | null;
|
|
911
|
-
/** Format: int32 */
|
|
912
|
-
status?: number | null;
|
|
913
|
-
detail?: string | null;
|
|
914
|
-
instance?: string | null;
|
|
915
|
-
errors?: {
|
|
916
|
-
[key: string]: string[];
|
|
917
|
-
} | null;
|
|
918
|
-
[key: string]: unknown;
|
|
919
|
-
};
|
|
920
|
-
IPLookupDto: {
|
|
921
|
-
id?: string | null;
|
|
922
|
-
ip?: string | null;
|
|
923
|
-
ua?: string | null;
|
|
924
|
-
};
|
|
925
|
-
InfoRequest: {
|
|
926
|
-
newEmail?: string | null;
|
|
927
|
-
newPassword?: string | null;
|
|
928
|
-
oldPassword?: string | null;
|
|
929
|
-
};
|
|
930
|
-
InfoResponse: {
|
|
931
|
-
email?: string | null;
|
|
932
|
-
isEmailConfirmed?: boolean;
|
|
933
|
-
};
|
|
934
|
-
JsonWebKey: {
|
|
935
|
-
kid?: string | null;
|
|
936
|
-
/** Format: int64 */
|
|
937
|
-
nbf?: number;
|
|
938
|
-
use?: string | null;
|
|
939
|
-
kty?: string | null;
|
|
940
|
-
e?: string | null;
|
|
941
|
-
n?: string | null;
|
|
942
|
-
};
|
|
943
|
-
JsonWebKeySet: {
|
|
944
|
-
keys?: components["schemas"]["JsonWebKey"][] | null;
|
|
945
|
-
};
|
|
946
|
-
JsonWebKeySetEnvelope: {
|
|
947
|
-
errorMessage?: string | null;
|
|
948
|
-
isSuccess?: boolean;
|
|
949
|
-
/** Format: date-time */
|
|
950
|
-
timestamp?: string;
|
|
951
|
-
activityId?: string | null;
|
|
952
|
-
correlationId?: string | null;
|
|
953
|
-
result?: components["schemas"]["JsonWebKeySet"];
|
|
954
|
-
};
|
|
955
|
-
JsonWebToken: {
|
|
956
|
-
header?: components["schemas"]["JsonWebTokenHeader"];
|
|
957
|
-
payload?: components["schemas"]["JsonWebTokenPayload"];
|
|
958
|
-
signature?: string | null;
|
|
959
|
-
tokenType?: string | null;
|
|
960
|
-
/** Format: int64 */
|
|
961
|
-
expiresIn?: number;
|
|
962
|
-
accessToken?: string | null;
|
|
963
|
-
};
|
|
964
|
-
JsonWebTokenEnvelope: {
|
|
965
|
-
errorMessage?: string | null;
|
|
966
|
-
isSuccess?: boolean;
|
|
967
|
-
/** Format: date-time */
|
|
968
|
-
timestamp?: string;
|
|
969
|
-
activityId?: string | null;
|
|
970
|
-
correlationId?: string | null;
|
|
971
|
-
result?: components["schemas"]["JsonWebToken"];
|
|
972
|
-
};
|
|
973
|
-
JsonWebTokenHeader: {
|
|
974
|
-
alg?: string | null;
|
|
975
|
-
jku?: string | null;
|
|
976
|
-
kid?: string | null;
|
|
977
|
-
typ?: string | null;
|
|
978
|
-
};
|
|
979
|
-
JsonWebTokenPayload: {
|
|
980
|
-
aud?: string | null;
|
|
981
|
-
cid?: string | null;
|
|
982
|
-
iss?: string | null;
|
|
983
|
-
aid?: string | null;
|
|
984
|
-
sub?: string | null;
|
|
985
|
-
act?: string | null;
|
|
986
|
-
/** Format: int64 */
|
|
987
|
-
iat?: number;
|
|
988
|
-
/** Format: int64 */
|
|
989
|
-
nbf?: number;
|
|
990
|
-
/** Format: int64 */
|
|
991
|
-
exp?: number;
|
|
992
|
-
scopes?: string[] | null;
|
|
993
|
-
};
|
|
994
|
-
LoginRequest: {
|
|
995
|
-
email?: string | null;
|
|
996
|
-
password?: string | null;
|
|
997
|
-
twoFactorCode?: string | null;
|
|
998
|
-
twoFactorRecoveryCode?: string | null;
|
|
999
|
-
};
|
|
1000
|
-
OAuthTokenRequest: {
|
|
1001
|
-
client_id?: string | null;
|
|
1002
|
-
client_secret?: string | null;
|
|
1003
|
-
grant_type?: string | null;
|
|
1004
|
-
requested_scopes?: string | null;
|
|
1005
|
-
requested_enrollment?: string | null;
|
|
1006
|
-
};
|
|
1007
|
-
OpenIdConfiguration: {
|
|
1008
|
-
issuer?: string | null;
|
|
1009
|
-
authorizationEndpoint?: string | null;
|
|
1010
|
-
tokenEndpoint?: string | null;
|
|
1011
|
-
endSessionEndpoint?: string | null;
|
|
1012
|
-
jwksUri?: string | null;
|
|
1013
|
-
responseModesSupported?: string[] | null;
|
|
1014
|
-
responseTypesSupported?: string[] | null;
|
|
1015
|
-
scopesSupported?: string[] | null;
|
|
1016
|
-
subjectTypesSupported?: string[] | null;
|
|
1017
|
-
idTokenSigningAlgValuesSupported?: string[] | null;
|
|
1018
|
-
tokenEndpointAuthMethodsSupported?: string[] | null;
|
|
1019
|
-
claimsSupported?: string[] | null;
|
|
1020
|
-
};
|
|
1021
|
-
OpenIdConfigurationEnvelope: {
|
|
1022
|
-
errorMessage?: string | null;
|
|
1023
|
-
isSuccess?: boolean;
|
|
1024
|
-
/** Format: date-time */
|
|
1025
|
-
timestamp?: string;
|
|
1026
|
-
activityId?: string | null;
|
|
1027
|
-
correlationId?: string | null;
|
|
1028
|
-
result?: components["schemas"]["OpenIdConfiguration"];
|
|
1029
|
-
};
|
|
1030
|
-
RefreshRequest: {
|
|
1031
|
-
refreshToken?: string | null;
|
|
1032
|
-
};
|
|
1033
|
-
RegisterRequest: {
|
|
1034
|
-
email?: string | null;
|
|
1035
|
-
password?: string | null;
|
|
1036
|
-
};
|
|
1037
|
-
ResendConfirmationEmailRequest: {
|
|
1038
|
-
email?: string | null;
|
|
1039
|
-
};
|
|
1040
|
-
ResetPasswordRequest: {
|
|
1041
|
-
email?: string | null;
|
|
1042
|
-
resetCode?: string | null;
|
|
1043
|
-
newPassword?: string | null;
|
|
1044
|
-
};
|
|
1045
|
-
ResponsePagination: {
|
|
1046
|
-
selfPageToken?: string | null;
|
|
1047
|
-
nextPageToken?: string | null;
|
|
1048
|
-
prevPageToken?: string | null;
|
|
1049
|
-
orderedBy?: string | null;
|
|
1050
|
-
/** Format: int32 */
|
|
1051
|
-
pageSize?: number;
|
|
1052
|
-
/** Format: int32 */
|
|
1053
|
-
pageIndex?: number;
|
|
1054
|
-
};
|
|
1055
|
-
ResponseStatus: {
|
|
1056
|
-
success?: boolean;
|
|
1057
|
-
error?: components["schemas"]["Error"];
|
|
1058
|
-
correlationID?: string | null;
|
|
1059
|
-
/** Format: date-time */
|
|
1060
|
-
utcTimestamp?: string;
|
|
1061
|
-
};
|
|
1062
|
-
SigninModel: {
|
|
1063
|
-
email?: string | null;
|
|
1064
|
-
password?: string | null;
|
|
1065
|
-
};
|
|
1066
|
-
StringListEnvelope: {
|
|
1067
|
-
errorMessage?: string | null;
|
|
1068
|
-
isSuccess?: boolean;
|
|
1069
|
-
/** Format: date-time */
|
|
1070
|
-
timestamp?: string;
|
|
1071
|
-
activityId?: string | null;
|
|
1072
|
-
correlationId?: string | null;
|
|
1073
|
-
result?: string[] | null;
|
|
1074
|
-
};
|
|
1075
|
-
TwoFactorRequest: {
|
|
1076
|
-
enable?: boolean | null;
|
|
1077
|
-
twoFactorCode?: string | null;
|
|
1078
|
-
resetSharedKey?: boolean;
|
|
1079
|
-
resetRecoveryCodes?: boolean;
|
|
1080
|
-
forgetMachine?: boolean;
|
|
1081
|
-
};
|
|
1082
|
-
TwoFactorResponse: {
|
|
1083
|
-
sharedKey?: string | null;
|
|
1084
|
-
/** Format: int32 */
|
|
1085
|
-
recoveryCodesLeft?: number;
|
|
1086
|
-
recoveryCodes?: string[] | null;
|
|
1087
|
-
isTwoFactorEnabled?: boolean;
|
|
1088
|
-
isMachineRemembered?: boolean;
|
|
1089
|
-
};
|
|
1090
|
-
};
|
|
1091
|
-
responses: never;
|
|
1092
|
-
parameters: never;
|
|
1093
|
-
requestBodies: never;
|
|
1094
|
-
headers: never;
|
|
1095
|
-
pathItems: never;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
export type $defs = Record<string, never>;
|
|
1099
|
-
|
|
1100
|
-
export type external = Record<string, never>;
|
|
1101
|
-
|
|
1102
|
-
export interface operations {
|
|
1103
|
-
|
|
1104
|
-
"MapIdentityApi-/confirmEmail": {
|
|
1105
|
-
parameters: {
|
|
1106
|
-
query?: {
|
|
1107
|
-
userId?: string;
|
|
1108
|
-
code?: string;
|
|
1109
|
-
changedEmail?: string;
|
|
1110
|
-
};
|
|
1111
|
-
};
|
|
1112
|
-
responses: {
|
|
1113
|
-
/** @description Success */
|
|
1114
|
-
200: {
|
|
1115
|
-
content: never;
|
|
1116
|
-
};
|
|
1117
|
-
};
|
|
1118
|
-
};
|
|
1119
|
-
}
|
|
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
|
+
"/api/v2/Applications/{appID}": {
|
|
9
|
+
get: {
|
|
10
|
+
parameters: {
|
|
11
|
+
query?: {
|
|
12
|
+
"api-version"?: string;
|
|
13
|
+
};
|
|
14
|
+
path: {
|
|
15
|
+
appID: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
responses: {
|
|
19
|
+
/** @description Success */
|
|
20
|
+
200: {
|
|
21
|
+
content: never;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
"/api/v2/Applications/{appID}/RequiredPermissions": {
|
|
27
|
+
get: {
|
|
28
|
+
parameters: {
|
|
29
|
+
query?: {
|
|
30
|
+
"api-version"?: string;
|
|
31
|
+
};
|
|
32
|
+
path: {
|
|
33
|
+
appID: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
responses: {
|
|
37
|
+
/** @description Success */
|
|
38
|
+
200: {
|
|
39
|
+
content: never;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
"/api/v2/Applications/{appID}/GrantedPermissions": {
|
|
45
|
+
get: {
|
|
46
|
+
parameters: {
|
|
47
|
+
query?: {
|
|
48
|
+
tenantID?: string;
|
|
49
|
+
"api-version"?: string;
|
|
50
|
+
};
|
|
51
|
+
path: {
|
|
52
|
+
appID: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
responses: {
|
|
56
|
+
/** @description Success */
|
|
57
|
+
200: {
|
|
58
|
+
content: never;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
"/api/v2/Applications/{appID}/GrantedRoles": {
|
|
64
|
+
get: {
|
|
65
|
+
parameters: {
|
|
66
|
+
query?: {
|
|
67
|
+
tenantID?: string;
|
|
68
|
+
"api-version"?: string;
|
|
69
|
+
};
|
|
70
|
+
path: {
|
|
71
|
+
appID: string;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
responses: {
|
|
75
|
+
/** @description Success */
|
|
76
|
+
200: {
|
|
77
|
+
content: never;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
"/api/v2/Applications/{appID}/GrantedRoles/{SecurityRoleID}/GrantedPermissions": {
|
|
83
|
+
get: {
|
|
84
|
+
parameters: {
|
|
85
|
+
query?: {
|
|
86
|
+
enrollmentID?: string;
|
|
87
|
+
"api-version"?: string;
|
|
88
|
+
};
|
|
89
|
+
path: {
|
|
90
|
+
appID: string;
|
|
91
|
+
securityRoleID: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
responses: {
|
|
95
|
+
/** @description Success */
|
|
96
|
+
200: {
|
|
97
|
+
content: never;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
"/api/v2/Auth/Checker/IsAuthenticated": {
|
|
103
|
+
/** Check if a particular user is authenticated. */
|
|
104
|
+
get: {
|
|
105
|
+
parameters: {
|
|
106
|
+
query?: {
|
|
107
|
+
"api-version"?: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
responses: {
|
|
111
|
+
/** @description Success */
|
|
112
|
+
200: {
|
|
113
|
+
content: {
|
|
114
|
+
"application/json": boolean;
|
|
115
|
+
"application/xml": boolean;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
"/api/v2/OAuth/WhoAmI": {
|
|
122
|
+
get: {
|
|
123
|
+
parameters: {
|
|
124
|
+
query?: {
|
|
125
|
+
tenantId?: string;
|
|
126
|
+
"api-version"?: string;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
responses: {
|
|
130
|
+
/** @description Success */
|
|
131
|
+
200: {
|
|
132
|
+
content: {
|
|
133
|
+
"application/json": components["schemas"]["ApiResponseEnvelope"];
|
|
134
|
+
"application/xml": components["schemas"]["ApiResponseEnvelope"];
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
/** @description Unauthorized */
|
|
138
|
+
401: {
|
|
139
|
+
content: {
|
|
140
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
141
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
/** @description Forbidden */
|
|
145
|
+
403: {
|
|
146
|
+
content: {
|
|
147
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
148
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
"/api/v2/OAuth/Permissions": {
|
|
155
|
+
get: {
|
|
156
|
+
parameters: {
|
|
157
|
+
query: {
|
|
158
|
+
tenantId: string;
|
|
159
|
+
userId?: string;
|
|
160
|
+
"api-version"?: string;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
responses: {
|
|
164
|
+
/** @description Success */
|
|
165
|
+
200: {
|
|
166
|
+
content: {
|
|
167
|
+
"application/json": components["schemas"]["StringListEnvelope"];
|
|
168
|
+
"application/xml": components["schemas"]["StringListEnvelope"];
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
/** @description Unauthorized */
|
|
172
|
+
401: {
|
|
173
|
+
content: {
|
|
174
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
175
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
/** @description Forbidden */
|
|
179
|
+
403: {
|
|
180
|
+
content: {
|
|
181
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
182
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
"/api/v2/OAuth/Token": {
|
|
189
|
+
post: {
|
|
190
|
+
parameters: {
|
|
191
|
+
query?: {
|
|
192
|
+
"api-version"?: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
requestBody?: {
|
|
196
|
+
content: {
|
|
197
|
+
"application/json": components["schemas"]["OAuthTokenRequest"];
|
|
198
|
+
"application/xml": components["schemas"]["OAuthTokenRequest"];
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
responses: {
|
|
202
|
+
/** @description Success */
|
|
203
|
+
200: {
|
|
204
|
+
content: {
|
|
205
|
+
"application/json": components["schemas"]["JsonWebTokenEnvelope"];
|
|
206
|
+
"application/xml": components["schemas"]["JsonWebTokenEnvelope"];
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
/** @description Unauthorized */
|
|
210
|
+
401: {
|
|
211
|
+
content: {
|
|
212
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
213
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
/** @description Forbidden */
|
|
217
|
+
403: {
|
|
218
|
+
content: {
|
|
219
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
220
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
"/api/v2/OAuth/SignIn": {
|
|
227
|
+
get: {
|
|
228
|
+
parameters: {
|
|
229
|
+
query?: {
|
|
230
|
+
"api-version"?: string;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
responses: {
|
|
234
|
+
/** @description Success */
|
|
235
|
+
200: {
|
|
236
|
+
content: {
|
|
237
|
+
"application/json": components["schemas"]["AccountHolderCreateDtoEnvelope"];
|
|
238
|
+
"application/xml": components["schemas"]["AccountHolderCreateDtoEnvelope"];
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
/** @description Bad Request */
|
|
242
|
+
400: {
|
|
243
|
+
content: {
|
|
244
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
245
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
/** @description Unauthorized */
|
|
249
|
+
401: {
|
|
250
|
+
content: {
|
|
251
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
252
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
post: {
|
|
258
|
+
parameters: {
|
|
259
|
+
query?: {
|
|
260
|
+
"api-version"?: string;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
requestBody?: {
|
|
264
|
+
content: {
|
|
265
|
+
"application/json": components["schemas"]["SigninModel"];
|
|
266
|
+
"application/xml": components["schemas"]["SigninModel"];
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
responses: {
|
|
270
|
+
/** @description Success */
|
|
271
|
+
200: {
|
|
272
|
+
content: {
|
|
273
|
+
"application/json": components["schemas"]["JsonWebTokenEnvelope"];
|
|
274
|
+
"application/xml": components["schemas"]["JsonWebTokenEnvelope"];
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
/** @description Bad Request */
|
|
278
|
+
400: {
|
|
279
|
+
content: {
|
|
280
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
281
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
/** @description Unauthorized */
|
|
285
|
+
401: {
|
|
286
|
+
content: {
|
|
287
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
288
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
"/api/v2/OAuth/{applicationId}/Keys": {
|
|
295
|
+
/** Gets the signing the keys for a particular application. */
|
|
296
|
+
get: {
|
|
297
|
+
parameters: {
|
|
298
|
+
query?: {
|
|
299
|
+
"api-version"?: string;
|
|
300
|
+
};
|
|
301
|
+
path: {
|
|
302
|
+
applicationId: string;
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
responses: {
|
|
306
|
+
/** @description Success */
|
|
307
|
+
200: {
|
|
308
|
+
content: {
|
|
309
|
+
"application/json": components["schemas"]["JsonWebKeySetEnvelope"];
|
|
310
|
+
"application/xml": components["schemas"]["JsonWebKeySetEnvelope"];
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
"/api/v2/OAuth/{tenantId}/{applicationId}/.Well-Known/OpenId-Configuration": {
|
|
317
|
+
/** Gets OpenID Configuration for a particular application in within the context of a business tenant. */
|
|
318
|
+
get: {
|
|
319
|
+
parameters: {
|
|
320
|
+
query?: {
|
|
321
|
+
"api-version"?: string;
|
|
322
|
+
};
|
|
323
|
+
path: {
|
|
324
|
+
tenantId: string;
|
|
325
|
+
applicationId: string;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
responses: {
|
|
329
|
+
/** @description Success */
|
|
330
|
+
200: {
|
|
331
|
+
content: {
|
|
332
|
+
"application/json": components["schemas"]["OpenIdConfigurationEnvelope"];
|
|
333
|
+
"application/xml": components["schemas"]["OpenIdConfigurationEnvelope"];
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
"/api/v2/IdentityService/Resource/message": {
|
|
340
|
+
get: {
|
|
341
|
+
parameters: {
|
|
342
|
+
query?: {
|
|
343
|
+
"api-version"?: string;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
responses: {
|
|
347
|
+
/** @description Success */
|
|
348
|
+
200: {
|
|
349
|
+
content: never;
|
|
350
|
+
};
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
"/connect/userinfo": {
|
|
355
|
+
get: {
|
|
356
|
+
parameters: {
|
|
357
|
+
query?: {
|
|
358
|
+
"api-version"?: string;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
responses: {
|
|
362
|
+
/** @description Success */
|
|
363
|
+
200: {
|
|
364
|
+
content: never;
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
post: {
|
|
369
|
+
parameters: {
|
|
370
|
+
query?: {
|
|
371
|
+
"api-version"?: string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
responses: {
|
|
375
|
+
/** @description Success */
|
|
376
|
+
200: {
|
|
377
|
+
content: never;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
};
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export type webhooks = Record<string, never>;
|
|
385
|
+
|
|
386
|
+
export interface components {
|
|
387
|
+
schemas: {
|
|
388
|
+
AccountHolderCreateDto: {
|
|
389
|
+
/** Format: uuid */
|
|
390
|
+
id?: string;
|
|
391
|
+
/** Format: date-time */
|
|
392
|
+
timestamp?: string;
|
|
393
|
+
qualifiedName?: string | null;
|
|
394
|
+
/** Format: date-time */
|
|
395
|
+
birthday?: string;
|
|
396
|
+
firstName?: string | null;
|
|
397
|
+
lastName?: string | null;
|
|
398
|
+
publicName?: string | null;
|
|
399
|
+
idProvider?: string | null;
|
|
400
|
+
languageID?: string | null;
|
|
401
|
+
timezoneID?: string | null;
|
|
402
|
+
gender?: string | null;
|
|
403
|
+
cityID?: string | null;
|
|
404
|
+
stateID?: string | null;
|
|
405
|
+
email?: string | null;
|
|
406
|
+
about?: string | null;
|
|
407
|
+
jobTitle?: string | null;
|
|
408
|
+
coverURL?: string | null;
|
|
409
|
+
avatarURL?: string | null;
|
|
410
|
+
gitHubURL?: string | null;
|
|
411
|
+
websiteURL?: string | null;
|
|
412
|
+
twitterUrl?: string | null;
|
|
413
|
+
facebookURL?: string | null;
|
|
414
|
+
youTubeURL?: string | null;
|
|
415
|
+
linkedInURL?: string | null;
|
|
416
|
+
instagramUrl?: string | null;
|
|
417
|
+
countryID?: string | null;
|
|
418
|
+
countryName?: string | null;
|
|
419
|
+
currencyID?: string | null;
|
|
420
|
+
};
|
|
421
|
+
AccountHolderCreateDtoEnvelope: {
|
|
422
|
+
errorMessage?: string | null;
|
|
423
|
+
isSuccess?: boolean;
|
|
424
|
+
/** Format: date-time */
|
|
425
|
+
timestamp?: string;
|
|
426
|
+
activityId?: string | null;
|
|
427
|
+
correlationId?: string | null;
|
|
428
|
+
result?: components["schemas"]["AccountHolderCreateDto"];
|
|
429
|
+
};
|
|
430
|
+
Actor: {
|
|
431
|
+
id?: string | null;
|
|
432
|
+
type?: string | null;
|
|
433
|
+
cartID?: string | null;
|
|
434
|
+
actingAs?: string | null;
|
|
435
|
+
socialProfileID?: string | null;
|
|
436
|
+
};
|
|
437
|
+
ApiResponse: {
|
|
438
|
+
holder?: components["schemas"]["PlatformUserDto"];
|
|
439
|
+
ipLookup?: components["schemas"]["IPLookupDto"];
|
|
440
|
+
tenant?: components["schemas"]["TenantDto"];
|
|
441
|
+
actor?: components["schemas"]["Actor"];
|
|
442
|
+
status?: components["schemas"]["ResponseStatus"];
|
|
443
|
+
application?: components["schemas"]["ClientApplication"];
|
|
444
|
+
pagination?: components["schemas"]["ResponsePagination"];
|
|
445
|
+
};
|
|
446
|
+
ApiResponseEnvelope: {
|
|
447
|
+
errorMessage?: string | null;
|
|
448
|
+
isSuccess?: boolean;
|
|
449
|
+
/** Format: date-time */
|
|
450
|
+
timestamp?: string;
|
|
451
|
+
activityId?: string | null;
|
|
452
|
+
correlationId?: string | null;
|
|
453
|
+
result?: components["schemas"]["ApiResponse"];
|
|
454
|
+
};
|
|
455
|
+
ClientApplication: {
|
|
456
|
+
id?: string | null;
|
|
457
|
+
name?: string | null;
|
|
458
|
+
avatar?: string | null;
|
|
459
|
+
tenantID?: string | null;
|
|
460
|
+
tenantName?: string | null;
|
|
461
|
+
tenantAvatar?: string | null;
|
|
462
|
+
privacyPolicy?: string | null;
|
|
463
|
+
termsAndConditions?: string | null;
|
|
464
|
+
grantedPermissions?: string[] | null;
|
|
465
|
+
};
|
|
466
|
+
Error: {
|
|
467
|
+
id?: string | null;
|
|
468
|
+
description?: string | null;
|
|
469
|
+
help?: string | null;
|
|
470
|
+
};
|
|
471
|
+
ErrorEnvelope: {
|
|
472
|
+
errorMessage?: string | null;
|
|
473
|
+
isSuccess?: boolean;
|
|
474
|
+
/** Format: date-time */
|
|
475
|
+
timestamp?: string;
|
|
476
|
+
activityId?: string | null;
|
|
477
|
+
correlationId?: string | null;
|
|
478
|
+
};
|
|
479
|
+
IPLookupDto: {
|
|
480
|
+
id?: string | null;
|
|
481
|
+
ip?: string | null;
|
|
482
|
+
ua?: string | null;
|
|
483
|
+
};
|
|
484
|
+
JsonWebKey: {
|
|
485
|
+
kid?: string | null;
|
|
486
|
+
/** Format: int64 */
|
|
487
|
+
nbf?: number;
|
|
488
|
+
use?: string | null;
|
|
489
|
+
kty?: string | null;
|
|
490
|
+
e?: string | null;
|
|
491
|
+
n?: string | null;
|
|
492
|
+
};
|
|
493
|
+
JsonWebKeySet: {
|
|
494
|
+
keys?: components["schemas"]["JsonWebKey"][] | null;
|
|
495
|
+
};
|
|
496
|
+
JsonWebKeySetEnvelope: {
|
|
497
|
+
errorMessage?: string | null;
|
|
498
|
+
isSuccess?: boolean;
|
|
499
|
+
/** Format: date-time */
|
|
500
|
+
timestamp?: string;
|
|
501
|
+
activityId?: string | null;
|
|
502
|
+
correlationId?: string | null;
|
|
503
|
+
result?: components["schemas"]["JsonWebKeySet"];
|
|
504
|
+
};
|
|
505
|
+
JsonWebToken: {
|
|
506
|
+
header?: components["schemas"]["JsonWebTokenHeader"];
|
|
507
|
+
payload?: components["schemas"]["JsonWebTokenPayload"];
|
|
508
|
+
signature?: string | null;
|
|
509
|
+
tokenType?: string | null;
|
|
510
|
+
/** Format: int64 */
|
|
511
|
+
expiresIn?: number;
|
|
512
|
+
accessToken?: string | null;
|
|
513
|
+
};
|
|
514
|
+
JsonWebTokenEnvelope: {
|
|
515
|
+
errorMessage?: string | null;
|
|
516
|
+
isSuccess?: boolean;
|
|
517
|
+
/** Format: date-time */
|
|
518
|
+
timestamp?: string;
|
|
519
|
+
activityId?: string | null;
|
|
520
|
+
correlationId?: string | null;
|
|
521
|
+
result?: components["schemas"]["JsonWebToken"];
|
|
522
|
+
};
|
|
523
|
+
JsonWebTokenHeader: {
|
|
524
|
+
alg?: string | null;
|
|
525
|
+
jku?: string | null;
|
|
526
|
+
kid?: string | null;
|
|
527
|
+
typ?: string | null;
|
|
528
|
+
};
|
|
529
|
+
JsonWebTokenPayload: {
|
|
530
|
+
aud?: string | null;
|
|
531
|
+
cid?: string | null;
|
|
532
|
+
iss?: string | null;
|
|
533
|
+
aid?: string | null;
|
|
534
|
+
sub?: string | null;
|
|
535
|
+
act?: string | null;
|
|
536
|
+
/** Format: int64 */
|
|
537
|
+
iat?: number;
|
|
538
|
+
/** Format: int64 */
|
|
539
|
+
nbf?: number;
|
|
540
|
+
/** Format: int64 */
|
|
541
|
+
exp?: number;
|
|
542
|
+
scopes?: string[] | null;
|
|
543
|
+
};
|
|
544
|
+
OAuthTokenRequest: {
|
|
545
|
+
client_id?: string | null;
|
|
546
|
+
client_secret?: string | null;
|
|
547
|
+
grant_type?: string | null;
|
|
548
|
+
requested_scopes?: string | null;
|
|
549
|
+
requested_enrollment?: string | null;
|
|
550
|
+
};
|
|
551
|
+
OpenIdConfiguration: {
|
|
552
|
+
issuer?: string | null;
|
|
553
|
+
authorizationEndpoint?: string | null;
|
|
554
|
+
tokenEndpoint?: string | null;
|
|
555
|
+
endSessionEndpoint?: string | null;
|
|
556
|
+
jwksUri?: string | null;
|
|
557
|
+
responseModesSupported?: string[] | null;
|
|
558
|
+
responseTypesSupported?: string[] | null;
|
|
559
|
+
scopesSupported?: string[] | null;
|
|
560
|
+
subjectTypesSupported?: string[] | null;
|
|
561
|
+
idTokenSigningAlgValuesSupported?: string[] | null;
|
|
562
|
+
tokenEndpointAuthMethodsSupported?: string[] | null;
|
|
563
|
+
claimsSupported?: string[] | null;
|
|
564
|
+
};
|
|
565
|
+
OpenIdConfigurationEnvelope: {
|
|
566
|
+
errorMessage?: string | null;
|
|
567
|
+
isSuccess?: boolean;
|
|
568
|
+
/** Format: date-time */
|
|
569
|
+
timestamp?: string;
|
|
570
|
+
activityId?: string | null;
|
|
571
|
+
correlationId?: string | null;
|
|
572
|
+
result?: components["schemas"]["OpenIdConfiguration"];
|
|
573
|
+
};
|
|
574
|
+
PlatformUserDto: {
|
|
575
|
+
id?: string | null;
|
|
576
|
+
/** Format: date-time */
|
|
577
|
+
timestamp?: string | null;
|
|
578
|
+
qualifiedName?: string | null;
|
|
579
|
+
/** Format: date-time */
|
|
580
|
+
birthday?: string;
|
|
581
|
+
firstName?: string | null;
|
|
582
|
+
lastName?: string | null;
|
|
583
|
+
publicName?: string | null;
|
|
584
|
+
idProvider?: string | null;
|
|
585
|
+
languageId?: string | null;
|
|
586
|
+
timezoneId?: string | null;
|
|
587
|
+
gender?: string | null;
|
|
588
|
+
cityId?: string | null;
|
|
589
|
+
stateId?: string | null;
|
|
590
|
+
email?: string | null;
|
|
591
|
+
about?: string | null;
|
|
592
|
+
jobTitle?: string | null;
|
|
593
|
+
coverUrl?: string | null;
|
|
594
|
+
avatarUrl?: string | null;
|
|
595
|
+
gitHubUrl?: string | null;
|
|
596
|
+
websiteUrl?: string | null;
|
|
597
|
+
twitterUrl?: string | null;
|
|
598
|
+
facebookUrl?: string | null;
|
|
599
|
+
youTubeUrl?: string | null;
|
|
600
|
+
linkedInUrl?: string | null;
|
|
601
|
+
instagramUrl?: string | null;
|
|
602
|
+
lockoutEnabled?: boolean;
|
|
603
|
+
socialFeedId?: string | null;
|
|
604
|
+
socialProfileId?: string | null;
|
|
605
|
+
currentTenantId?: string | null;
|
|
606
|
+
currentEnrollmentId?: string | null;
|
|
607
|
+
cartId?: string | null;
|
|
608
|
+
walletId?: string | null;
|
|
609
|
+
countryId?: string | null;
|
|
610
|
+
currencyId?: string | null;
|
|
611
|
+
userName?: string | null;
|
|
612
|
+
status?: string | null;
|
|
613
|
+
phoneNumber?: string | null;
|
|
614
|
+
publicIdentifier?: string | null;
|
|
615
|
+
identityProvider?: string | null;
|
|
616
|
+
phoneNumberConfirmed?: boolean;
|
|
617
|
+
emailConfirmed?: boolean;
|
|
618
|
+
/**
|
|
619
|
+
* Format: int32
|
|
620
|
+
* @enum {integer}
|
|
621
|
+
*/
|
|
622
|
+
themeMode?: 0 | 1 | 2;
|
|
623
|
+
/**
|
|
624
|
+
* Format: int32
|
|
625
|
+
* @enum {integer}
|
|
626
|
+
*/
|
|
627
|
+
availability?: 0 | 1 | 2 | 3 | 4;
|
|
628
|
+
/** Format: int32 */
|
|
629
|
+
followsCount?: number | null;
|
|
630
|
+
/** Format: int32 */
|
|
631
|
+
followersCount?: number | null;
|
|
632
|
+
/** Format: int32 */
|
|
633
|
+
enrollmentsCount?: number | null;
|
|
634
|
+
/** Format: int32 */
|
|
635
|
+
socialPostsCount?: number | null;
|
|
636
|
+
/** Format: int32 */
|
|
637
|
+
unreadMessagesCount?: number | null;
|
|
638
|
+
/** Format: int32 */
|
|
639
|
+
unreadNotificationsCount?: number | null;
|
|
640
|
+
webUrl?: string | null;
|
|
641
|
+
countryStateId?: string | null;
|
|
642
|
+
selectedBusinessId?: string | null;
|
|
643
|
+
};
|
|
644
|
+
ResponsePagination: {
|
|
645
|
+
selfPageToken?: string | null;
|
|
646
|
+
nextPageToken?: string | null;
|
|
647
|
+
prevPageToken?: string | null;
|
|
648
|
+
orderedBy?: string | null;
|
|
649
|
+
/** Format: int32 */
|
|
650
|
+
pageSize?: number;
|
|
651
|
+
/** Format: int32 */
|
|
652
|
+
pageIndex?: number;
|
|
653
|
+
};
|
|
654
|
+
ResponseStatus: {
|
|
655
|
+
success?: boolean;
|
|
656
|
+
error?: components["schemas"]["Error"];
|
|
657
|
+
correlationID?: string | null;
|
|
658
|
+
/** Format: date-time */
|
|
659
|
+
utcTimestamp?: string;
|
|
660
|
+
};
|
|
661
|
+
SigninModel: {
|
|
662
|
+
email?: string | null;
|
|
663
|
+
password?: string | null;
|
|
664
|
+
};
|
|
665
|
+
StringListEnvelope: {
|
|
666
|
+
errorMessage?: string | null;
|
|
667
|
+
isSuccess?: boolean;
|
|
668
|
+
/** Format: date-time */
|
|
669
|
+
timestamp?: string;
|
|
670
|
+
activityId?: string | null;
|
|
671
|
+
correlationId?: string | null;
|
|
672
|
+
result?: string[] | null;
|
|
673
|
+
};
|
|
674
|
+
TenantDto: {
|
|
675
|
+
id?: string | null;
|
|
676
|
+
/** Format: date-time */
|
|
677
|
+
timestamp?: string | null;
|
|
678
|
+
qualifiedName?: string | null;
|
|
679
|
+
taxId?: string | null;
|
|
680
|
+
about?: string | null;
|
|
681
|
+
walletId?: string | null;
|
|
682
|
+
socialFeedId?: string | null;
|
|
683
|
+
businessIndustryId?: string | null;
|
|
684
|
+
businessSegmentId?: string | null;
|
|
685
|
+
socialProfileId?: string | null;
|
|
686
|
+
languageId?: string | null;
|
|
687
|
+
name?: string | null;
|
|
688
|
+
duns?: string | null;
|
|
689
|
+
slogan?: string | null;
|
|
690
|
+
legalName?: string | null;
|
|
691
|
+
coverUrl?: string | null;
|
|
692
|
+
avatarUrl?: string | null;
|
|
693
|
+
cartId?: string | null;
|
|
694
|
+
currencyId?: string | null;
|
|
695
|
+
timezoneId?: string | null;
|
|
696
|
+
countryId?: string | null;
|
|
697
|
+
countryStateId?: string | null;
|
|
698
|
+
cityId?: string | null;
|
|
699
|
+
/** Format: double */
|
|
700
|
+
reviewsAvg?: number | null;
|
|
701
|
+
/** Format: int32 */
|
|
702
|
+
reviewsCount?: number | null;
|
|
703
|
+
/** Format: int32 */
|
|
704
|
+
followsCount?: number | null;
|
|
705
|
+
/** Format: int32 */
|
|
706
|
+
followersCount?: number | null;
|
|
707
|
+
/** Format: int32 */
|
|
708
|
+
enrollmentsCount?: number | null;
|
|
709
|
+
/** Format: int32 */
|
|
710
|
+
socialPostsCount?: number | null;
|
|
711
|
+
/** Format: int32 */
|
|
712
|
+
unreadMessagesCount?: number | null;
|
|
713
|
+
/** Format: int32 */
|
|
714
|
+
unreadNotificationsCount?: number | null;
|
|
715
|
+
enrollmentID?: string | null;
|
|
716
|
+
email?: string | null;
|
|
717
|
+
phone?: string | null;
|
|
718
|
+
webUrl?: string | null;
|
|
719
|
+
facebookUrl?: string | null;
|
|
720
|
+
twitterUrl?: string | null;
|
|
721
|
+
gitHubUrl?: string | null;
|
|
722
|
+
linkedInUrl?: string | null;
|
|
723
|
+
instagramUrl?: string | null;
|
|
724
|
+
youTubeUrl?: string | null;
|
|
725
|
+
whatsAppNumber?: string | null;
|
|
726
|
+
supportPhoneNumber?: string | null;
|
|
727
|
+
verified?: boolean;
|
|
728
|
+
businessName?: string | null;
|
|
729
|
+
businessLegalName?: string | null;
|
|
730
|
+
twitterUsername?: string | null;
|
|
731
|
+
};
|
|
732
|
+
};
|
|
733
|
+
responses: never;
|
|
734
|
+
parameters: never;
|
|
735
|
+
requestBodies: never;
|
|
736
|
+
headers: never;
|
|
737
|
+
pathItems: never;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
export type $defs = Record<string, never>;
|
|
741
|
+
|
|
742
|
+
export type external = Record<string, never>;
|
|
743
|
+
|
|
744
|
+
export type operations = Record<string, never>;
|