@fenixalliance/abs-api-client 1.0.2 → 1.0.5
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/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
- package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
- package/clients/accountingService/core/ApiError.ts +25 -0
- package/clients/accountingService/core/ApiRequestOptions.ts +17 -0
- package/clients/accountingService/core/ApiResult.ts +11 -0
- package/clients/accountingService/core/CancelablePromise.ts +131 -0
- package/clients/accountingService/core/OpenAPI.ts +32 -0
- package/clients/accountingService/core/request.ts +322 -0
- package/clients/accountingService/index.ts +97 -0
- package/clients/accountingService/models/AccountCreateDto.ts +30 -0
- package/clients/accountingService/models/AccountDto.ts +41 -0
- package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
- package/clients/{holderService/models/InvoiceDtoListEnvelope.ts → accountingService/models/AccountDtoListEnvelope.ts} +5 -5
- package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
- package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
- package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
- package/clients/accountingService/models/AccountingEntryDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
- package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
- package/clients/accountingService/models/BillingProfileDto.ts +67 -0
- package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
- package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
- package/clients/accountingService/models/BudgetDto.ts +12 -0
- package/clients/{holderService/models/PaymentDtoListEnvelope.ts → accountingService/models/BudgetDtoEnvelope.ts} +5 -5
- package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
- package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
- package/clients/accountingService/models/Currency.ts +9 -0
- package/clients/accountingService/models/EmptyEnvelope.ts +12 -0
- package/clients/accountingService/models/ErrorEnvelope.ts +12 -0
- package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
- package/clients/{holderService/models/InvoiceDto.ts → accountingService/models/FinancialBookDto.ts} +3 -4
- package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/FinancialBookDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
- package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
- package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
- package/clients/accountingService/models/FiscalAuthorityDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
- package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
- package/clients/accountingService/models/FiscalYearDto.ts +16 -0
- package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
- package/clients/accountingService/models/Int32Envelope.ts +13 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
- package/clients/accountingService/models/JournalCreateDto.ts +17 -0
- package/clients/accountingService/models/JournalDto.ts +17 -0
- package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
- package/clients/accountingService/models/JournalEntryDto.ts +31 -0
- package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
- package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
- package/clients/accountingService/models/JournalTypeDto.ts +12 -0
- package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalTypeDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/JournalTypeUpdateDto.ts +10 -0
- package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
- package/clients/accountingService/models/LedgerDto.ts +15 -0
- package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/LoanCreateDto.ts +18 -0
- package/clients/accountingService/models/LoanDto.ts +18 -0
- package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
- package/clients/accountingService/models/Money.ts +10 -0
- package/clients/accountingService/models/Operation.ts +23 -0
- package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
- package/clients/accountingService/models/ReceiptDto.ts +24 -0
- package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
- package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
- package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
- package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
- package/clients/accountingService/services/AccountsService.ts +788 -0
- package/clients/accountingService/services/BillingProfilesService.ts +194 -0
- package/clients/accountingService/services/BudgetsService.ts +167 -0
- package/clients/accountingService/services/FinancialBooksService.ts +194 -0
- package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
- package/clients/accountingService/services/FiscalYearsService.ts +194 -0
- package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
- package/clients/accountingService/services/JournalTypesService.ts +167 -0
- package/clients/accountingService/services/JournalsService.ts +366 -0
- package/clients/accountingService/services/LedgersService.ts +163 -0
- package/clients/accountingService/services/LoansService.ts +194 -0
- package/clients/accountingService/services/ReceiptsService.ts +164 -0
- package/clients/cartService/index.ts +5 -0
- package/clients/cartService/models/BooleanEnvelope.ts +2 -2
- package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
- package/clients/cartService/models/CartUpdateRequest.ts +2 -2
- package/clients/cartService/models/CountryDto.ts +14 -0
- package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
- package/clients/cartService/models/CurrencyDto.ts +13 -0
- package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
- package/clients/cartService/models/EmptyEnvelope.ts +2 -1
- package/clients/cartService/models/ErrorEnvelope.ts +2 -2
- package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -1
- package/clients/cartService/models/ItemCartRecordDto.ts +9 -7
- package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
- package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +2 -2
- package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
- package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
- package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
- package/clients/cartService/models/ItemToCompareCartRecordDtoListEnvelope.ts +2 -2
- package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
- package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
- package/clients/cartService/services/CartsService.ts +1069 -22
- package/clients/cartService/services/CompareService.ts +24 -4
- package/clients/cartService/services/RecordsService.ts +114 -9
- package/clients/cartService/services/WishListsService.ts +116 -9
- package/clients/catalogService/index.ts +14 -6
- package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
- package/clients/catalogService/models/CatalogItemDto.ts +170 -0
- package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
- package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/{StockItemDto.ts → CatalogItemUpdateDto.ts} +138 -105
- package/clients/catalogService/models/Currency.ts +9 -0
- package/clients/catalogService/models/EmptyEnvelope.ts +2 -1
- package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
- package/clients/catalogService/models/Int32Envelope.ts +13 -0
- package/clients/catalogService/models/ItemAttachmentCreateDto.ts +6 -4
- package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
- package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +5 -2
- package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttributeDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemGoogleCategoryDto.ts +2 -1
- package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
- package/clients/catalogService/models/MerchantDto.ts +47 -0
- package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
- package/clients/catalogService/models/Money.ts +10 -0
- package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
- package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
- package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
- package/clients/catalogService/services/ItemAttachmentsService.ts +55 -30
- package/clients/catalogService/services/ItemAttributesService.ts +55 -30
- package/clients/catalogService/services/ItemBrandsService.ts +55 -30
- package/clients/catalogService/services/ItemCategoriesService.ts +74 -49
- package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
- package/clients/catalogService/services/ItemImagesService.ts +55 -30
- package/clients/catalogService/services/ItemQuestionsService.ts +55 -30
- package/clients/catalogService/services/ItemReviewsService.ts +55 -30
- package/clients/catalogService/services/ItemTagsService.ts +55 -30
- package/clients/catalogService/services/ItemTypesService.ts +57 -32
- package/clients/catalogService/services/ItemsService.ts +2176 -0
- package/clients/catalogService/services/MerchantsService.ts +30 -0
- package/clients/catalogService/services/PoliciesService.ts +24 -4
- package/clients/catalogService/services/PricingRulesService.ts +64 -39
- package/clients/crmService/index.ts +5 -0
- package/clients/crmService/models/CartDtoEnvelope.ts +2 -2
- package/clients/crmService/models/ContactCreateDto.ts +55 -0
- package/clients/crmService/models/ContactDto.ts +35 -21
- package/clients/crmService/models/ContactDtoEnvelope.ts +2 -2
- package/clients/crmService/models/ContactDtoListEnvelope.ts +2 -2
- package/clients/crmService/models/ContactProfileDto.ts +38 -0
- package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
- package/clients/crmService/models/ContactUpdateDto.ts +53 -0
- package/clients/crmService/models/EmptyEnvelope.ts +2 -1
- package/clients/crmService/models/ErrorEnvelope.ts +2 -2
- package/clients/crmService/models/Operation.ts +23 -0
- package/clients/crmService/models/SocialProfileDtoEnvelope.ts +2 -2
- package/clients/crmService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/crmService/services/ContactsService.ts +509 -40
- package/clients/crmService/services/SyncService.ts +31 -15
- package/clients/forexService/index.ts +3 -0
- package/clients/forexService/models/Currency.ts +1 -1
- package/clients/forexService/models/ErrorEnvelope.ts +2 -2
- package/clients/forexService/models/ExchangeRate.ts +11 -0
- package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
- package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
- package/clients/forexService/models/Money.ts +1 -1
- package/clients/forexService/models/MoneyEnvelope.ts +2 -2
- package/clients/forexService/services/ExchangeService.ts +9 -11
- package/clients/forexService/services/ExchangeVService.ts +65 -0
- package/clients/forexService/services/RatesService.ts +71 -6
- package/clients/holderService/index.ts +19 -8
- package/clients/holderService/models/AddressDto.ts +1 -1
- package/clients/holderService/models/AddressDtoListEnvelope.ts +2 -2
- package/clients/holderService/models/CartDtoEnvelope.ts +2 -2
- package/clients/holderService/models/EmptyEnvelope.ts +12 -0
- package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
- package/clients/holderService/models/EnrollmentId.ts +5 -0
- package/clients/holderService/models/ErrorEnvelope.ts +2 -2
- package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
- package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
- package/clients/holderService/models/ExtendedTenantDto.ts +51 -0
- package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
- package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/NotificationDtoListEnvelope.ts +2 -2
- package/clients/holderService/models/Operation.ts +23 -0
- package/clients/holderService/models/PlatformUserDto.ts +26 -28
- package/clients/holderService/models/PlatformUserDtoEnvelope.ts +2 -2
- package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
- package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
- package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
- package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
- package/clients/holderService/models/SocialProfileDtoEnvelope.ts +2 -2
- package/clients/holderService/models/TenantDto.ts +1 -10
- package/clients/holderService/models/TenantDtoListEnvelope.ts +2 -2
- package/clients/{tenantService/models/TenantEnrollmentDto.ts → holderService/models/TenantEnrolmentDto.ts} +4 -3
- package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
- package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/holderService/models/TenantInvitationDto.ts +16 -0
- package/clients/holderService/models/{TenantEnrollmentDtoListEnvelope.ts → TenantInvitationDtoListEnvelope.ts} +5 -5
- package/clients/holderService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/holderService/services/HolderService.ts +283 -44
- package/clients/identityService/index.ts +1 -1
- package/clients/identityService/models/AccountHolderCreateDto.ts +20 -15
- package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
- package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
- package/clients/identityService/models/ErrorEnvelope.ts +2 -2
- package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
- package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
- package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
- package/clients/identityService/models/PlatformUserDto.ts +26 -28
- package/clients/identityService/models/StringListEnvelope.ts +2 -2
- package/clients/identityService/models/TenantDto.ts +1 -10
- package/clients/identityService/services/ApplicationsService.ts +30 -5
- package/clients/identityService/services/CheckerService.ts +8 -3
- package/clients/identityService/services/OAuthService.ts +44 -10
- package/clients/identityService/services/ResourceService.ts +8 -2
- package/clients/identityService/services/UserInfoService.ts +16 -4
- package/clients/inventoryService/services/InventoryService.ts +6 -1
- package/clients/invoicingService/index.ts +29 -4
- package/clients/invoicingService/models/Currency.ts +9 -0
- package/clients/invoicingService/models/EmptyEnvelope.ts +2 -1
- package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
- package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
- package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/Int32Envelope.ts +13 -0
- package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
- package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
- package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
- package/clients/invoicingService/models/InvoiceCreateDto.ts +64 -0
- package/clients/invoicingService/models/InvoiceDto.ts +91 -2
- package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +2 -2
- package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
- package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
- package/clients/invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts +8 -0
- package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceLineDto.ts +7 -2
- package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +2 -2
- package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +2 -2
- package/clients/invoicingService/models/{ItemPriceCreateDto.ts → InvoiceLineUpdateDto.ts} +9 -9
- package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
- package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
- package/clients/{tenantService/models/TenantEnrollmentDtoEnvelope.ts → invoicingService/models/InvoiceReferenceDtoEnvelope.ts} +5 -5
- package/clients/{tenantService/models/TenantEnrollmentDtoListEnvelope.ts → invoicingService/models/InvoiceReferenceDtoListEnvelope.ts} +5 -5
- package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
- package/clients/invoicingService/models/InvoiceUpdateDto.ts +29 -1
- package/clients/invoicingService/models/Money.ts +10 -0
- package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
- package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
- package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
- package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
- package/clients/invoicingService/models/TenantDto.ts +45 -0
- package/clients/invoicingService/services/InvoicesService.ts +799 -23
- package/clients/learningService/core/ApiError.ts +25 -0
- package/clients/learningService/core/ApiRequestOptions.ts +17 -0
- package/clients/learningService/core/ApiResult.ts +11 -0
- package/clients/learningService/core/CancelablePromise.ts +131 -0
- package/clients/learningService/core/OpenAPI.ts +32 -0
- package/clients/learningService/core/request.ts +322 -0
- package/clients/learningService/index.ts +50 -0
- package/clients/learningService/models/AverageDto.ts +10 -0
- package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CountDto.ts +10 -0
- package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
- package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
- package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
- package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
- package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
- package/clients/learningService/models/CourseDto.ts +170 -0
- package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
- package/clients/learningService/models/CourseUpdateDto.ts +5 -0
- package/clients/learningService/models/EmptyEnvelope.ts +12 -0
- package/clients/learningService/models/ErrorEnvelope.ts +12 -0
- package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
- package/clients/learningService/models/InstructorProfileDto.ts +39 -0
- package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
- package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
- package/clients/learningService/models/Pagination.ts +9 -0
- package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
- package/clients/learningService/models/StudentProfileDto.ts +38 -0
- package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
- package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
- package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
- package/clients/learningService/services/CourseCertificatesService.ts +270 -0
- package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
- package/clients/learningService/services/CoursesService.ts +128 -0
- package/clients/learningService/services/InstructorProfilesService.ts +152 -0
- package/clients/learningService/services/StudentProfilesService.ts +212 -0
- package/clients/marketingService/core/ApiError.ts +25 -0
- package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
- package/clients/marketingService/core/ApiResult.ts +11 -0
- package/clients/marketingService/core/CancelablePromise.ts +131 -0
- package/clients/marketingService/core/OpenAPI.ts +32 -0
- package/clients/marketingService/core/request.ts +322 -0
- package/clients/marketingService/index.ts +64 -0
- package/clients/marketingService/models/Currency.ts +9 -0
- package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
- package/clients/marketingService/models/EmailGroupDto.ts +14 -0
- package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
- package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
- package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
- package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
- package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
- package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
- package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailTemplateDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
- package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
- package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
- package/clients/marketingService/models/Int32Envelope.ts +13 -0
- package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
- package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
- package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
- package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
- package/clients/marketingService/models/MarketingListDto.ts +33 -0
- package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
- package/clients/marketingService/models/Money.ts +10 -0
- package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
- package/clients/marketingService/models/NewsletterDto.ts +14 -0
- package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
- package/clients/marketingService/models/OrderDto.ts +113 -0
- package/clients/{holderService/models/OrderDtoListEnvelope.ts → marketingService/models/OrderDtoEnvelope.ts} +4 -4
- package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
- package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
- package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
- package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
- package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
- package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
- package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
- package/clients/marketingService/services/EmailGroupsService.ts +193 -0
- package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
- package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
- package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
- package/clients/marketingService/services/MarketingListsService.ts +193 -0
- package/clients/marketingService/services/NewslettersService.ts +193 -0
- package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
- package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
- package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
- package/clients/ordersService/index.ts +7 -4
- package/clients/ordersService/models/Currency.ts +9 -0
- package/clients/ordersService/models/EmptyEnvelope.ts +2 -1
- package/clients/ordersService/models/ErrorEnvelope.ts +2 -2
- package/clients/ordersService/models/Int32Envelope.ts +13 -0
- package/clients/ordersService/models/Money.ts +10 -0
- package/clients/ordersService/models/OrderCreateDto.ts +60 -2
- package/clients/ordersService/models/OrderDto.ts +93 -7
- package/clients/ordersService/models/OrderDtoEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderDtoListEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
- package/clients/ordersService/models/OrderLineDto.ts +7 -2
- package/clients/ordersService/models/OrderLineDtoEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +2 -2
- package/clients/ordersService/models/OrderLineUpdateDto.ts +97 -0
- package/clients/ordersService/models/OrderUpdateDto.ts +29 -1
- package/clients/ordersService/services/OrdersService.ts +115 -21
- package/clients/pricingService/index.ts +1 -0
- package/clients/pricingService/models/Currency.ts +1 -1
- package/clients/pricingService/models/EmptyEnvelope.ts +2 -1
- package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
- package/clients/pricingService/models/Int32Envelope.ts +13 -0
- package/clients/pricingService/models/ItemPriceCreateDto.ts +6 -6
- package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +2 -2
- package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +2 -2
- package/clients/pricingService/models/ItemPriceUpdateDto.ts +2 -1
- package/clients/pricingService/models/Money.ts +1 -1
- package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
- package/clients/pricingService/models/PriceListDtoEnvelope.ts +2 -2
- package/clients/pricingService/models/PriceListDtoListEnvelope.ts +2 -2
- package/clients/pricingService/services/PriceListsService.ts +100 -29
- package/clients/pricingService/services/PricesService.ts +18 -3
- package/clients/securityService/core/ApiError.ts +25 -0
- package/clients/securityService/core/ApiRequestOptions.ts +17 -0
- package/clients/securityService/core/ApiResult.ts +11 -0
- package/clients/securityService/core/CancelablePromise.ts +131 -0
- package/clients/securityService/core/OpenAPI.ts +32 -0
- package/clients/securityService/core/request.ts +322 -0
- package/clients/securityService/index.ts +24 -0
- package/clients/securityService/models/EmptyEnvelope.ts +12 -0
- package/clients/securityService/models/ErrorEnvelope.ts +12 -0
- package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
- package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
- package/clients/securityService/models/SecurityPermissionDtoListEnvelope.ts +14 -0
- package/clients/securityService/models/SecurityPermissionUpdateDto.ts +9 -0
- package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
- package/clients/securityService/models/SecurityRoleDto.ts +13 -0
- package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
- package/clients/securityService/models/SecurityRoleUpdateDto.ts +9 -0
- package/clients/{holderService/models/TenantEnrollmentDto.ts → securityService/models/TenantEnrolmentDto.ts} +4 -3
- package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/securityService/services/PermissionsService.ts +399 -0
- package/clients/securityService/services/RolesService.ts +430 -0
- package/clients/supportService/core/ApiError.ts +25 -0
- package/clients/supportService/core/ApiRequestOptions.ts +17 -0
- package/clients/supportService/core/ApiResult.ts +11 -0
- package/clients/supportService/core/CancelablePromise.ts +131 -0
- package/clients/supportService/core/OpenAPI.ts +32 -0
- package/clients/supportService/core/request.ts +322 -0
- package/clients/supportService/index.ts +54 -0
- package/clients/supportService/models/EmptyEnvelope.ts +12 -0
- package/clients/supportService/models/ErrorEnvelope.ts +12 -0
- package/clients/supportService/models/PrivateMessageDto.ts +15 -0
- package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
- package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
- package/clients/supportService/models/SupportEntitlementDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportEntitlementDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
- package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
- package/clients/supportService/models/SupportRequestAttachmentDto.ts +28 -0
- package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
- package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
- package/clients/supportService/models/SupportRequestDto.ts +18 -0
- package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
- package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
- package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
- package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
- package/clients/supportService/models/SupportTicketDto.ts +17 -0
- package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
- package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
- package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
- package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
- package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
- package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
- package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
- package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
- package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
- package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
- package/clients/supportService/services/SupportRequestsService.ts +290 -0
- package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
- package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
- package/clients/supportService/services/SupportTicketsService.ts +331 -0
- package/clients/systemService/index.ts +19 -0
- package/clients/systemService/models/BooleanEnvelope.ts +13 -0
- package/clients/systemService/models/ErrorEnvelope.ts +2 -2
- package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
- package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
- package/clients/systemService/models/ISwaggerContact.ts +10 -0
- package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
- package/clients/systemService/models/ISwaggerLicense.ts +9 -0
- package/clients/systemService/models/ISwaggerSpec.ts +19 -0
- package/clients/systemService/models/LicenseValidationRequest.ts +8 -0
- package/clients/systemService/models/Module.ts +44 -0
- package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
- package/clients/systemService/models/StringListEnvelope.ts +2 -2
- package/clients/systemService/models/StudioModule.ts +9 -0
- package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → systemService/models/StudioModuleListEnvelope.ts} +5 -5
- package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
- package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
- package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
- package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
- package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
- package/clients/systemService/services/AntiforgeryService.ts +16 -4
- package/clients/systemService/services/LicensingService.ts +230 -0
- package/clients/systemService/services/MigrationsService.ts +14 -3
- package/clients/systemService/services/ModulesService.ts +61 -0
- package/clients/tenantService/index.ts +100 -3
- package/clients/tenantService/models/BooleanEnvelope.ts +2 -2
- package/clients/tenantService/models/CartDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/EmptyEnvelope.ts +2 -1
- package/clients/tenantService/models/ErrorEnvelope.ts +2 -2
- package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
- package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
- package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
- package/clients/tenantService/models/Operation.ts +23 -0
- package/clients/tenantService/models/PlatformUserDto.ts +26 -28
- package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +2 -2
- package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/StringListEnvelope.ts +2 -2
- package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
- package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
- package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/SuiteLicenseFeatureDto.ts +9 -0
- package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantCreateDto.ts +7 -7
- package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
- package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
- package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
- package/clients/tenantService/models/TenantDto.ts +1 -10
- package/clients/tenantService/models/TenantDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
- package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
- package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
- package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
- package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantPositionDto.ts +13 -0
- package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
- package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantSizeDto.ts +12 -0
- package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
- package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
- package/clients/tenantService/models/TenantTeamDto.ts +17 -0
- package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
- package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
- package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
- package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
- package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
- package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantTypeCreateDto.ts +11 -0
- package/clients/tenantService/models/TenantTypeDto.ts +11 -0
- package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
- package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
- package/clients/tenantService/models/TenantUnitDto.ts +18 -0
- package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
- package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
- package/clients/tenantService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/tenantService/models/WebPortalDto.ts +9 -2
- package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +2 -2
- package/clients/tenantService/services/DepartmentsService.ts +198 -0
- package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
- package/clients/tenantService/services/EnrollmentsService.ts +195 -0
- package/clients/tenantService/services/IndustriesService.ts +190 -0
- package/clients/tenantService/services/InvitationsService.ts +150 -0
- package/clients/tenantService/services/PositionsService.ts +192 -0
- package/clients/tenantService/services/SegmentsService.ts +191 -0
- package/clients/tenantService/services/SizesService.ts +194 -0
- package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
- package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
- package/clients/tenantService/services/TeamRecordsService.ts +192 -0
- package/clients/tenantService/services/TeamsService.ts +192 -0
- package/clients/tenantService/services/TenantsService.ts +580 -49
- package/clients/tenantService/services/TerritoriesService.ts +192 -0
- package/clients/tenantService/services/TypesService.ts +176 -0
- package/clients/tenantService/services/UnitsService.ts +190 -0
- package/clients/walletsService/index.ts +5 -3
- package/clients/walletsService/models/Currency.ts +9 -0
- package/clients/walletsService/models/ErrorEnvelope.ts +2 -2
- package/clients/walletsService/models/InvoiceDto.ts +91 -2
- package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/LocationDto.ts +1 -1
- package/clients/walletsService/models/LocationDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/Money.ts +10 -0
- package/clients/walletsService/models/OrderDto.ts +93 -7
- package/clients/walletsService/models/OrderDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/PaymentDto.ts +81 -4
- package/clients/walletsService/models/PaymentDtoListEnvelope.ts +2 -2
- package/clients/walletsService/models/WalletDtoEnvelope.ts +2 -2
- package/clients/walletsService/services/WalletsService.ts +73 -8
- package/package.json +5 -4
- package/schemas/accountingService/schema.s.ts +5108 -0
- package/schemas/cartService/schema.s.ts +1716 -78
- package/schemas/catalogService/schema.s.ts +2810 -1736
- package/schemas/crmService/schema.s.ts +892 -138
- package/schemas/forexService/schema.s.ts +116 -345
- package/schemas/holderService/schema.s.ts +693 -197
- package/schemas/identityService/schema.s.ts +125 -103
- package/schemas/inventoryService/schema.s.ts +4 -1
- package/schemas/invoicingService/schema.s.ts +1758 -105
- package/schemas/learningService/schema.s.ts +1723 -0
- package/schemas/marketingService/schema.s.ts +3027 -0
- package/schemas/ordersService/schema.s.ts +632 -108
- package/schemas/pricingService/schema.s.ts +181 -102
- package/schemas/securityService/schema.s.ts +1226 -0
- package/schemas/supportService/schema.s.ts +2114 -0
- package/schemas/systemService/schema.s.ts +1215 -5
- package/schemas/tenantService/schema.s.ts +5405 -427
- package/schemas/walletsService/schema.s.ts +374 -34
- package/wwwroot/build/bundle.js +1 -1
- package/clients/catalogService/models/StockItemCreateDto.ts +0 -108
- package/clients/catalogService/models/StockItemUpdateDto.ts +0 -106
- package/clients/catalogService/services/ProductsService.ts +0 -1706
- package/clients/holderService/models/OrderDto.ts +0 -27
- package/clients/holderService/models/PaymentDto.ts +0 -17
- package/clients/invoicingService/models/ItemPriceUpdateDto.ts +0 -14
- package/clients/ordersService/models/ItemPriceCreateDto.ts +0 -20
- package/clients/ordersService/models/ItemPriceUpdateDto.ts +0 -14
|
@@ -6,19 +6,196 @@
|
|
|
6
6
|
|
|
7
7
|
export interface paths {
|
|
8
8
|
"/api/v2/Me": {
|
|
9
|
-
/** Get the current user profile */
|
|
10
9
|
get: {
|
|
11
10
|
parameters: {
|
|
12
11
|
query?: {
|
|
13
12
|
"api-version"?: string;
|
|
14
13
|
};
|
|
14
|
+
header?: {
|
|
15
|
+
"x-api-version"?: string;
|
|
16
|
+
};
|
|
15
17
|
};
|
|
16
18
|
responses: {
|
|
17
|
-
/** @description
|
|
19
|
+
/** @description OK */
|
|
18
20
|
200: {
|
|
19
21
|
content: {
|
|
20
22
|
"application/json": components["schemas"]["PlatformUserDtoEnvelope"];
|
|
21
23
|
"application/xml": components["schemas"]["PlatformUserDtoEnvelope"];
|
|
24
|
+
"multipart/form-data": components["schemas"]["PlatformUserDtoEnvelope"];
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
/** @description Unauthorized */
|
|
28
|
+
401: {
|
|
29
|
+
content: {
|
|
30
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
31
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
32
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
put: {
|
|
38
|
+
parameters: {
|
|
39
|
+
query?: {
|
|
40
|
+
"api-version"?: string;
|
|
41
|
+
};
|
|
42
|
+
header?: {
|
|
43
|
+
"x-api-version"?: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
requestBody?: {
|
|
47
|
+
content: {
|
|
48
|
+
"application/json": components["schemas"]["PlatformUserUpdateDto"];
|
|
49
|
+
"application/xml": components["schemas"]["PlatformUserUpdateDto"];
|
|
50
|
+
"multipart/form-data": components["schemas"]["PlatformUserUpdateDto"];
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
responses: {
|
|
54
|
+
/** @description OK */
|
|
55
|
+
200: {
|
|
56
|
+
content: {
|
|
57
|
+
"application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
|
|
58
|
+
"application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
|
|
59
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
/** @description Unauthorized */
|
|
63
|
+
401: {
|
|
64
|
+
content: {
|
|
65
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
66
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
67
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
patch: {
|
|
73
|
+
parameters: {
|
|
74
|
+
query?: {
|
|
75
|
+
"api-version"?: string;
|
|
76
|
+
};
|
|
77
|
+
header?: {
|
|
78
|
+
"x-api-version"?: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
requestBody?: {
|
|
82
|
+
content: {
|
|
83
|
+
"application/json": components["schemas"]["Operation"][];
|
|
84
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
85
|
+
"multipart/form-data": components["schemas"]["Operation"][];
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
responses: {
|
|
89
|
+
/** @description OK */
|
|
90
|
+
200: {
|
|
91
|
+
content: {
|
|
92
|
+
"application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
|
|
93
|
+
"application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
|
|
94
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
/** @description Unauthorized */
|
|
98
|
+
401: {
|
|
99
|
+
content: {
|
|
100
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
101
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
102
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
"/api/v2/Me/Extended": {
|
|
109
|
+
get: {
|
|
110
|
+
parameters: {
|
|
111
|
+
query?: {
|
|
112
|
+
"api-version"?: string;
|
|
113
|
+
};
|
|
114
|
+
header?: {
|
|
115
|
+
"x-api-version"?: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
responses: {
|
|
119
|
+
/** @description OK */
|
|
120
|
+
200: {
|
|
121
|
+
content: {
|
|
122
|
+
"application/json": components["schemas"]["ExtendedPlatformUserDtoEnvelope"];
|
|
123
|
+
"application/xml": components["schemas"]["ExtendedPlatformUserDtoEnvelope"];
|
|
124
|
+
"multipart/form-data": components["schemas"]["ExtendedPlatformUserDtoEnvelope"];
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
/** @description Unauthorized */
|
|
128
|
+
401: {
|
|
129
|
+
content: {
|
|
130
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
131
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
132
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
"/api/v2/Me/Avatar": {
|
|
139
|
+
get: {
|
|
140
|
+
parameters: {
|
|
141
|
+
query?: {
|
|
142
|
+
"api-version"?: string;
|
|
143
|
+
};
|
|
144
|
+
header?: {
|
|
145
|
+
"x-api-version"?: string;
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
responses: {
|
|
149
|
+
/** @description OK */
|
|
150
|
+
200: {
|
|
151
|
+
content: {
|
|
152
|
+
"application/json": components["schemas"]["FollowRecordDto"][];
|
|
153
|
+
"application/xml": components["schemas"]["FollowRecordDto"][];
|
|
154
|
+
"multipart/form-data": components["schemas"]["FollowRecordDto"][];
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
/** @description Unauthorized */
|
|
158
|
+
401: {
|
|
159
|
+
content: {
|
|
160
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
161
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
162
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
post: {
|
|
168
|
+
parameters: {
|
|
169
|
+
query?: {
|
|
170
|
+
"api-version"?: string;
|
|
171
|
+
};
|
|
172
|
+
header?: {
|
|
173
|
+
"x-api-version"?: string;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
requestBody?: {
|
|
177
|
+
content: {
|
|
178
|
+
"multipart/form-data": {
|
|
179
|
+
/** Format: binary */
|
|
180
|
+
avatar?: string;
|
|
181
|
+
};
|
|
182
|
+
"application/json": {
|
|
183
|
+
/** Format: binary */
|
|
184
|
+
avatar?: string;
|
|
185
|
+
};
|
|
186
|
+
"application/xml": {
|
|
187
|
+
/** Format: binary */
|
|
188
|
+
avatar?: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
responses: {
|
|
193
|
+
/** @description OK */
|
|
194
|
+
200: {
|
|
195
|
+
content: {
|
|
196
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
197
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
198
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelope"];
|
|
22
199
|
};
|
|
23
200
|
};
|
|
24
201
|
/** @description Unauthorized */
|
|
@@ -26,6 +203,15 @@ export interface paths {
|
|
|
26
203
|
content: {
|
|
27
204
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
28
205
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
206
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
/** @description Forbidden */
|
|
210
|
+
403: {
|
|
211
|
+
content: {
|
|
212
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
213
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
214
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
29
215
|
};
|
|
30
216
|
};
|
|
31
217
|
};
|
|
@@ -39,13 +225,17 @@ export interface paths {
|
|
|
39
225
|
pageIndex?: number;
|
|
40
226
|
"api-version"?: string;
|
|
41
227
|
};
|
|
228
|
+
header?: {
|
|
229
|
+
"x-api-version"?: string;
|
|
230
|
+
};
|
|
42
231
|
};
|
|
43
232
|
responses: {
|
|
44
|
-
/** @description
|
|
233
|
+
/** @description OK */
|
|
45
234
|
200: {
|
|
46
235
|
content: {
|
|
47
236
|
"application/json": components["schemas"]["FollowRecordDto"][];
|
|
48
237
|
"application/xml": components["schemas"]["FollowRecordDto"][];
|
|
238
|
+
"multipart/form-data": components["schemas"]["FollowRecordDto"][];
|
|
49
239
|
};
|
|
50
240
|
};
|
|
51
241
|
/** @description Unauthorized */
|
|
@@ -53,6 +243,7 @@ export interface paths {
|
|
|
53
243
|
content: {
|
|
54
244
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
55
245
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
246
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
56
247
|
};
|
|
57
248
|
};
|
|
58
249
|
};
|
|
@@ -66,13 +257,17 @@ export interface paths {
|
|
|
66
257
|
pageIndex?: number;
|
|
67
258
|
"api-version"?: string;
|
|
68
259
|
};
|
|
260
|
+
header?: {
|
|
261
|
+
"x-api-version"?: string;
|
|
262
|
+
};
|
|
69
263
|
};
|
|
70
264
|
responses: {
|
|
71
|
-
/** @description
|
|
265
|
+
/** @description OK */
|
|
72
266
|
200: {
|
|
73
267
|
content: {
|
|
74
268
|
"application/json": components["schemas"]["FollowRecordDto"][];
|
|
75
269
|
"application/xml": components["schemas"]["FollowRecordDto"][];
|
|
270
|
+
"multipart/form-data": components["schemas"]["FollowRecordDto"][];
|
|
76
271
|
};
|
|
77
272
|
};
|
|
78
273
|
/** @description Unauthorized */
|
|
@@ -80,6 +275,7 @@ export interface paths {
|
|
|
80
275
|
content: {
|
|
81
276
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
82
277
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
278
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
83
279
|
};
|
|
84
280
|
};
|
|
85
281
|
};
|
|
@@ -91,13 +287,17 @@ export interface paths {
|
|
|
91
287
|
query?: {
|
|
92
288
|
"api-version"?: string;
|
|
93
289
|
};
|
|
290
|
+
header?: {
|
|
291
|
+
"x-api-version"?: string;
|
|
292
|
+
};
|
|
94
293
|
};
|
|
95
294
|
responses: {
|
|
96
|
-
/** @description
|
|
295
|
+
/** @description OK */
|
|
97
296
|
200: {
|
|
98
297
|
content: {
|
|
99
298
|
"application/json": components["schemas"]["TenantDtoListEnvelope"];
|
|
100
299
|
"application/xml": components["schemas"]["TenantDtoListEnvelope"];
|
|
300
|
+
"multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
|
|
101
301
|
};
|
|
102
302
|
};
|
|
103
303
|
/** @description Unauthorized */
|
|
@@ -105,6 +305,7 @@ export interface paths {
|
|
|
105
305
|
content: {
|
|
106
306
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
107
307
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
308
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
108
309
|
};
|
|
109
310
|
};
|
|
110
311
|
/** @description Forbidden */
|
|
@@ -112,24 +313,29 @@ export interface paths {
|
|
|
112
313
|
content: {
|
|
113
314
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
114
315
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
316
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
115
317
|
};
|
|
116
318
|
};
|
|
117
319
|
};
|
|
118
320
|
};
|
|
119
321
|
};
|
|
120
|
-
"/api/v2/Me/
|
|
322
|
+
"/api/v2/Me/Businesses/Extended": {
|
|
121
323
|
get: {
|
|
122
324
|
parameters: {
|
|
123
325
|
query?: {
|
|
124
326
|
"api-version"?: string;
|
|
125
327
|
};
|
|
328
|
+
header?: {
|
|
329
|
+
"x-api-version"?: string;
|
|
330
|
+
};
|
|
126
331
|
};
|
|
127
332
|
responses: {
|
|
128
|
-
/** @description
|
|
333
|
+
/** @description OK */
|
|
129
334
|
200: {
|
|
130
335
|
content: {
|
|
131
|
-
"application/json": components["schemas"]["
|
|
132
|
-
"application/xml": components["schemas"]["
|
|
336
|
+
"application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
|
|
337
|
+
"application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
|
|
338
|
+
"multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
|
|
133
339
|
};
|
|
134
340
|
};
|
|
135
341
|
/** @description Unauthorized */
|
|
@@ -137,24 +343,37 @@ export interface paths {
|
|
|
137
343
|
content: {
|
|
138
344
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
139
345
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
346
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
/** @description Forbidden */
|
|
350
|
+
403: {
|
|
351
|
+
content: {
|
|
352
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
353
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
354
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
140
355
|
};
|
|
141
356
|
};
|
|
142
357
|
};
|
|
143
358
|
};
|
|
144
359
|
};
|
|
145
|
-
"/api/v2/Me/
|
|
360
|
+
"/api/v2/Me/Enrollments": {
|
|
146
361
|
get: {
|
|
147
362
|
parameters: {
|
|
148
363
|
query?: {
|
|
149
364
|
"api-version"?: string;
|
|
150
365
|
};
|
|
366
|
+
header?: {
|
|
367
|
+
"x-api-version"?: string;
|
|
368
|
+
};
|
|
151
369
|
};
|
|
152
370
|
responses: {
|
|
153
|
-
/** @description
|
|
371
|
+
/** @description OK */
|
|
154
372
|
200: {
|
|
155
373
|
content: {
|
|
156
|
-
"application/json": components["schemas"]["
|
|
157
|
-
"application/xml": components["schemas"]["
|
|
374
|
+
"application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
375
|
+
"application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
376
|
+
"multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
158
377
|
};
|
|
159
378
|
};
|
|
160
379
|
/** @description Unauthorized */
|
|
@@ -162,24 +381,29 @@ export interface paths {
|
|
|
162
381
|
content: {
|
|
163
382
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
164
383
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
384
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
165
385
|
};
|
|
166
386
|
};
|
|
167
387
|
};
|
|
168
388
|
};
|
|
169
389
|
};
|
|
170
|
-
"/api/v2/Me/
|
|
390
|
+
"/api/v2/Me/Enrollments/Extended": {
|
|
171
391
|
get: {
|
|
172
392
|
parameters: {
|
|
173
393
|
query?: {
|
|
174
394
|
"api-version"?: string;
|
|
175
395
|
};
|
|
396
|
+
header?: {
|
|
397
|
+
"x-api-version"?: string;
|
|
398
|
+
};
|
|
176
399
|
};
|
|
177
400
|
responses: {
|
|
178
|
-
/** @description
|
|
401
|
+
/** @description OK */
|
|
179
402
|
200: {
|
|
180
403
|
content: {
|
|
181
|
-
"application/json": components["schemas"]["
|
|
182
|
-
"application/xml": components["schemas"]["
|
|
404
|
+
"application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
|
|
405
|
+
"application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
|
|
406
|
+
"multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
|
|
183
407
|
};
|
|
184
408
|
};
|
|
185
409
|
/** @description Unauthorized */
|
|
@@ -187,24 +411,39 @@ export interface paths {
|
|
|
187
411
|
content: {
|
|
188
412
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
189
413
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
414
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
190
415
|
};
|
|
191
416
|
};
|
|
192
417
|
};
|
|
193
418
|
};
|
|
194
419
|
};
|
|
195
|
-
"/api/v2/Me/
|
|
420
|
+
"/api/v2/Me/Enrollments/{enrollmentId}": {
|
|
196
421
|
get: {
|
|
197
422
|
parameters: {
|
|
198
423
|
query?: {
|
|
199
424
|
"api-version"?: string;
|
|
200
425
|
};
|
|
426
|
+
header?: {
|
|
427
|
+
"x-api-version"?: string;
|
|
428
|
+
};
|
|
429
|
+
path: {
|
|
430
|
+
enrollmentId: string;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
requestBody?: {
|
|
434
|
+
content: {
|
|
435
|
+
"application/json": components["schemas"]["EnrollmentId"];
|
|
436
|
+
"application/xml": components["schemas"]["EnrollmentId"];
|
|
437
|
+
"multipart/form-data": components["schemas"]["EnrollmentId"];
|
|
438
|
+
};
|
|
201
439
|
};
|
|
202
440
|
responses: {
|
|
203
|
-
/** @description
|
|
441
|
+
/** @description OK */
|
|
204
442
|
200: {
|
|
205
443
|
content: {
|
|
206
|
-
"application/json": components["schemas"]["
|
|
207
|
-
"application/xml": components["schemas"]["
|
|
444
|
+
"application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
|
|
445
|
+
"application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
|
|
446
|
+
"multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
|
|
208
447
|
};
|
|
209
448
|
};
|
|
210
449
|
/** @description Unauthorized */
|
|
@@ -212,24 +451,29 @@ export interface paths {
|
|
|
212
451
|
content: {
|
|
213
452
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
214
453
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
454
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
215
455
|
};
|
|
216
456
|
};
|
|
217
457
|
};
|
|
218
458
|
};
|
|
219
459
|
};
|
|
220
|
-
"/api/v2/Me/
|
|
460
|
+
"/api/v2/Me/SocialProfile": {
|
|
221
461
|
get: {
|
|
222
462
|
parameters: {
|
|
223
463
|
query?: {
|
|
224
464
|
"api-version"?: string;
|
|
225
465
|
};
|
|
466
|
+
header?: {
|
|
467
|
+
"x-api-version"?: string;
|
|
468
|
+
};
|
|
226
469
|
};
|
|
227
470
|
responses: {
|
|
228
|
-
/** @description
|
|
471
|
+
/** @description OK */
|
|
229
472
|
200: {
|
|
230
473
|
content: {
|
|
231
|
-
"application/json": components["schemas"]["
|
|
232
|
-
"application/xml": components["schemas"]["
|
|
474
|
+
"application/json": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
475
|
+
"application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
476
|
+
"multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
233
477
|
};
|
|
234
478
|
};
|
|
235
479
|
/** @description Unauthorized */
|
|
@@ -237,64 +481,89 @@ export interface paths {
|
|
|
237
481
|
content: {
|
|
238
482
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
239
483
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
484
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
240
485
|
};
|
|
241
486
|
};
|
|
242
487
|
};
|
|
243
488
|
};
|
|
244
489
|
};
|
|
245
|
-
"/api/v2/Me/
|
|
490
|
+
"/api/v2/Me/Cart": {
|
|
246
491
|
get: {
|
|
247
492
|
parameters: {
|
|
248
493
|
query?: {
|
|
249
494
|
"api-version"?: string;
|
|
250
495
|
};
|
|
496
|
+
header?: {
|
|
497
|
+
"x-api-version"?: string;
|
|
498
|
+
};
|
|
251
499
|
};
|
|
252
500
|
responses: {
|
|
501
|
+
/** @description OK */
|
|
502
|
+
200: {
|
|
503
|
+
content: {
|
|
504
|
+
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
505
|
+
"application/xml": components["schemas"]["CartDtoEnvelope"];
|
|
506
|
+
"multipart/form-data": components["schemas"]["CartDtoEnvelope"];
|
|
507
|
+
};
|
|
508
|
+
};
|
|
253
509
|
/** @description Unauthorized */
|
|
254
510
|
401: {
|
|
255
511
|
content: {
|
|
256
512
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
257
513
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
514
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
258
515
|
};
|
|
259
516
|
};
|
|
260
517
|
};
|
|
261
518
|
};
|
|
262
519
|
};
|
|
263
|
-
"/api/v2/Me/
|
|
520
|
+
"/api/v2/Me/Wallet": {
|
|
264
521
|
get: {
|
|
265
522
|
parameters: {
|
|
266
523
|
query?: {
|
|
267
524
|
"api-version"?: string;
|
|
268
525
|
};
|
|
526
|
+
header?: {
|
|
527
|
+
"x-api-version"?: string;
|
|
528
|
+
};
|
|
269
529
|
};
|
|
270
530
|
responses: {
|
|
271
|
-
/** @description
|
|
531
|
+
/** @description OK */
|
|
272
532
|
200: {
|
|
273
|
-
content:
|
|
533
|
+
content: {
|
|
534
|
+
"application/json": components["schemas"]["WalletDtoEnvelope"];
|
|
535
|
+
"application/xml": components["schemas"]["WalletDtoEnvelope"];
|
|
536
|
+
"multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
|
|
537
|
+
};
|
|
274
538
|
};
|
|
275
539
|
/** @description Unauthorized */
|
|
276
540
|
401: {
|
|
277
541
|
content: {
|
|
278
542
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
279
543
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
544
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
280
545
|
};
|
|
281
546
|
};
|
|
282
547
|
};
|
|
283
548
|
};
|
|
284
549
|
};
|
|
285
|
-
"/api/v2/Me/
|
|
550
|
+
"/api/v2/Me/Notifications": {
|
|
286
551
|
get: {
|
|
287
552
|
parameters: {
|
|
288
553
|
query?: {
|
|
289
554
|
"api-version"?: string;
|
|
290
555
|
};
|
|
556
|
+
header?: {
|
|
557
|
+
"x-api-version"?: string;
|
|
558
|
+
};
|
|
291
559
|
};
|
|
292
560
|
responses: {
|
|
293
|
-
/** @description
|
|
561
|
+
/** @description OK */
|
|
294
562
|
200: {
|
|
295
563
|
content: {
|
|
296
|
-
"application/json": components["schemas"]["
|
|
297
|
-
"application/xml": components["schemas"]["
|
|
564
|
+
"application/json": components["schemas"]["NotificationDtoListEnvelope"];
|
|
565
|
+
"application/xml": components["schemas"]["NotificationDtoListEnvelope"];
|
|
566
|
+
"multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
|
|
298
567
|
};
|
|
299
568
|
};
|
|
300
569
|
/** @description Unauthorized */
|
|
@@ -302,24 +571,64 @@ export interface paths {
|
|
|
302
571
|
content: {
|
|
303
572
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
304
573
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
574
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
305
575
|
};
|
|
306
576
|
};
|
|
307
577
|
};
|
|
308
578
|
};
|
|
309
579
|
};
|
|
310
|
-
"/api/v2/Me/
|
|
580
|
+
"/api/v2/Me/Settings": {
|
|
311
581
|
get: {
|
|
312
582
|
parameters: {
|
|
313
583
|
query?: {
|
|
314
584
|
"api-version"?: string;
|
|
315
585
|
};
|
|
586
|
+
header?: {
|
|
587
|
+
"x-api-version"?: string;
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
responses: {
|
|
591
|
+
/** @description OK */
|
|
592
|
+
200: {
|
|
593
|
+
content: {
|
|
594
|
+
"application/json": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
|
|
595
|
+
"application/xml": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
|
|
596
|
+
"multipart/form-data": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
/** @description Unauthorized */
|
|
600
|
+
401: {
|
|
601
|
+
content: {
|
|
602
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
603
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
604
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
put: {
|
|
610
|
+
parameters: {
|
|
611
|
+
query?: {
|
|
612
|
+
"api-version"?: string;
|
|
613
|
+
};
|
|
614
|
+
header?: {
|
|
615
|
+
"x-api-version"?: string;
|
|
616
|
+
};
|
|
617
|
+
};
|
|
618
|
+
requestBody?: {
|
|
619
|
+
content: {
|
|
620
|
+
"application/json": components["schemas"]["PlatformUserSettingsUpdateDto"];
|
|
621
|
+
"application/xml": components["schemas"]["PlatformUserSettingsUpdateDto"];
|
|
622
|
+
"multipart/form-data": components["schemas"]["PlatformUserSettingsUpdateDto"];
|
|
623
|
+
};
|
|
316
624
|
};
|
|
317
625
|
responses: {
|
|
318
|
-
/** @description
|
|
626
|
+
/** @description OK */
|
|
319
627
|
200: {
|
|
320
628
|
content: {
|
|
321
|
-
"application/json": components["schemas"]["
|
|
322
|
-
"application/xml": components["schemas"]["
|
|
629
|
+
"application/json": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
|
|
630
|
+
"application/xml": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
|
|
631
|
+
"multipart/form-data": components["schemas"]["PlatformUserSettingsDtoEnvelope"];
|
|
323
632
|
};
|
|
324
633
|
};
|
|
325
634
|
/** @description Unauthorized */
|
|
@@ -327,24 +636,29 @@ export interface paths {
|
|
|
327
636
|
content: {
|
|
328
637
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
329
638
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
639
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
330
640
|
};
|
|
331
641
|
};
|
|
332
642
|
};
|
|
333
643
|
};
|
|
334
644
|
};
|
|
335
|
-
"/api/v2/Me/
|
|
645
|
+
"/api/v2/Me/Addresses": {
|
|
336
646
|
get: {
|
|
337
647
|
parameters: {
|
|
338
648
|
query?: {
|
|
339
649
|
"api-version"?: string;
|
|
340
650
|
};
|
|
651
|
+
header?: {
|
|
652
|
+
"x-api-version"?: string;
|
|
653
|
+
};
|
|
341
654
|
};
|
|
342
655
|
responses: {
|
|
343
|
-
/** @description
|
|
656
|
+
/** @description OK */
|
|
344
657
|
200: {
|
|
345
658
|
content: {
|
|
346
|
-
"application/json": components["schemas"]["
|
|
347
|
-
"application/xml": components["schemas"]["
|
|
659
|
+
"application/json": components["schemas"]["AddressDtoListEnvelope"];
|
|
660
|
+
"application/xml": components["schemas"]["AddressDtoListEnvelope"];
|
|
661
|
+
"multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
|
|
348
662
|
};
|
|
349
663
|
};
|
|
350
664
|
/** @description Unauthorized */
|
|
@@ -352,24 +666,29 @@ export interface paths {
|
|
|
352
666
|
content: {
|
|
353
667
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
354
668
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
669
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
355
670
|
};
|
|
356
671
|
};
|
|
357
672
|
};
|
|
358
673
|
};
|
|
359
674
|
};
|
|
360
|
-
"/api/v2/Me/
|
|
675
|
+
"/api/v2/Me/Invitations": {
|
|
361
676
|
get: {
|
|
362
677
|
parameters: {
|
|
363
678
|
query?: {
|
|
364
679
|
"api-version"?: string;
|
|
365
680
|
};
|
|
681
|
+
header?: {
|
|
682
|
+
"x-api-version"?: string;
|
|
683
|
+
};
|
|
366
684
|
};
|
|
367
685
|
responses: {
|
|
368
|
-
/** @description
|
|
686
|
+
/** @description OK */
|
|
369
687
|
200: {
|
|
370
688
|
content: {
|
|
371
|
-
"application/json": components["schemas"]["
|
|
372
|
-
"application/xml": components["schemas"]["
|
|
689
|
+
"application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
|
|
690
|
+
"application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
|
|
691
|
+
"multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
|
|
373
692
|
};
|
|
374
693
|
};
|
|
375
694
|
/** @description Unauthorized */
|
|
@@ -377,6 +696,7 @@ export interface paths {
|
|
|
377
696
|
content: {
|
|
378
697
|
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
379
698
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
699
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
380
700
|
};
|
|
381
701
|
};
|
|
382
702
|
};
|
|
@@ -402,7 +722,7 @@ export interface components {
|
|
|
402
722
|
address3?: string | null;
|
|
403
723
|
unit?: string | null;
|
|
404
724
|
cityId?: string | null;
|
|
405
|
-
|
|
725
|
+
stateId?: string | null;
|
|
406
726
|
postalCode?: string | null;
|
|
407
727
|
countryId?: string | null;
|
|
408
728
|
/** Format: double */
|
|
@@ -418,12 +738,12 @@ export interface components {
|
|
|
418
738
|
isDefaultSuppingLocation?: boolean;
|
|
419
739
|
};
|
|
420
740
|
AddressDtoListEnvelope: {
|
|
421
|
-
errorMessage?: string | null;
|
|
422
741
|
isSuccess?: boolean;
|
|
742
|
+
errorMessage?: string | null;
|
|
743
|
+
correlationId?: string | null;
|
|
423
744
|
/** Format: date-time */
|
|
424
745
|
timestamp?: string;
|
|
425
746
|
activityId?: string | null;
|
|
426
|
-
correlationId?: string | null;
|
|
427
747
|
result?: components["schemas"]["AddressDto"][] | null;
|
|
428
748
|
};
|
|
429
749
|
CartDto: {
|
|
@@ -446,154 +766,243 @@ export interface components {
|
|
|
446
766
|
itemToCompareRecordsCount?: number | null;
|
|
447
767
|
};
|
|
448
768
|
CartDtoEnvelope: {
|
|
449
|
-
errorMessage?: string | null;
|
|
450
769
|
isSuccess?: boolean;
|
|
770
|
+
errorMessage?: string | null;
|
|
771
|
+
correlationId?: string | null;
|
|
451
772
|
/** Format: date-time */
|
|
452
773
|
timestamp?: string;
|
|
453
774
|
activityId?: string | null;
|
|
454
|
-
correlationId?: string | null;
|
|
455
775
|
result?: components["schemas"]["CartDto"];
|
|
456
776
|
};
|
|
457
|
-
|
|
458
|
-
errorMessage?: string | null;
|
|
777
|
+
EmptyEnvelope: {
|
|
459
778
|
isSuccess?: boolean;
|
|
779
|
+
errorMessage?: string | null;
|
|
780
|
+
correlationId?: string | null;
|
|
460
781
|
/** Format: date-time */
|
|
461
782
|
timestamp?: string;
|
|
462
783
|
activityId?: string | null;
|
|
463
|
-
correlationId?: string | null;
|
|
464
|
-
};
|
|
465
|
-
FollowRecordDto: {
|
|
466
|
-
id?: string | null;
|
|
467
|
-
type?: string | null;
|
|
468
|
-
followerID?: string | null;
|
|
469
|
-
followedID?: string | null;
|
|
470
|
-
alerts?: boolean;
|
|
471
784
|
};
|
|
472
|
-
|
|
473
|
-
|
|
785
|
+
EmptyEnvelopeEnvelope: {
|
|
786
|
+
isSuccess?: boolean;
|
|
787
|
+
errorMessage?: string | null;
|
|
788
|
+
correlationId?: string | null;
|
|
474
789
|
/** Format: date-time */
|
|
475
|
-
timestamp?: string
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
/** Format: double */
|
|
479
|
-
forexRate?: number;
|
|
480
|
-
/** Format: double */
|
|
481
|
-
totalAmountInUsd?: number;
|
|
790
|
+
timestamp?: string;
|
|
791
|
+
activityId?: string | null;
|
|
792
|
+
result?: components["schemas"]["EmptyEnvelope"];
|
|
482
793
|
};
|
|
483
|
-
|
|
484
|
-
|
|
794
|
+
EnrollmentId: Record<string, never>;
|
|
795
|
+
ErrorEnvelope: {
|
|
485
796
|
isSuccess?: boolean;
|
|
797
|
+
errorMessage?: string | null;
|
|
798
|
+
correlationId?: string | null;
|
|
486
799
|
/** Format: date-time */
|
|
487
800
|
timestamp?: string;
|
|
488
801
|
activityId?: string | null;
|
|
489
|
-
correlationId?: string | null;
|
|
490
|
-
result?: components["schemas"]["InvoiceDto"][] | null;
|
|
491
802
|
};
|
|
492
|
-
|
|
803
|
+
ExtendedPlatformUserDto: {
|
|
493
804
|
id?: string | null;
|
|
494
805
|
/** Format: date-time */
|
|
495
806
|
timestamp?: string | null;
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
807
|
+
fullName?: string | null;
|
|
808
|
+
socialProfileId?: string | null;
|
|
809
|
+
publicName?: string | null;
|
|
810
|
+
firstName?: string | null;
|
|
811
|
+
lastName?: string | null;
|
|
812
|
+
coverUrl?: string | null;
|
|
813
|
+
avatarUrl?: string | null;
|
|
814
|
+
timezoneId?: string | null;
|
|
815
|
+
gitHubUrl?: string | null;
|
|
816
|
+
websiteUrl?: string | null;
|
|
817
|
+
twitterUrl?: string | null;
|
|
818
|
+
facebookUrl?: string | null;
|
|
819
|
+
youTubeUrl?: string | null;
|
|
820
|
+
linkedInUrl?: string | null;
|
|
821
|
+
instagramUrl?: string | null;
|
|
822
|
+
countryId?: string | null;
|
|
823
|
+
/** Format: date-time */
|
|
824
|
+
birthday?: string | null;
|
|
825
|
+
qualifiedName?: string | null;
|
|
826
|
+
idProvider?: string | null;
|
|
827
|
+
languageId?: string | null;
|
|
828
|
+
/**
|
|
829
|
+
* Format: int32
|
|
830
|
+
* @enum {integer|null}
|
|
831
|
+
*/
|
|
832
|
+
gender?: 0 | 1 | 2 | null;
|
|
833
|
+
cityId?: string | null;
|
|
834
|
+
stateId?: string | null;
|
|
835
|
+
email?: string | null;
|
|
836
|
+
about?: string | null;
|
|
837
|
+
jobTitle?: string | null;
|
|
838
|
+
socialFeedId?: string | null;
|
|
839
|
+
currentTenantId?: string | null;
|
|
840
|
+
currentEnrollmentId?: string | null;
|
|
841
|
+
status?: string | null;
|
|
842
|
+
cartId?: string | null;
|
|
843
|
+
walletId?: string | null;
|
|
844
|
+
userName?: string | null;
|
|
845
|
+
currencyId?: string | null;
|
|
846
|
+
phoneNumber?: string | null;
|
|
847
|
+
publicIdentifier?: string | null;
|
|
848
|
+
identityProvider?: string | null;
|
|
849
|
+
phoneNumberConfirmed?: boolean;
|
|
850
|
+
emailConfirmed?: boolean;
|
|
851
|
+
lockoutEnabled?: boolean;
|
|
852
|
+
/**
|
|
853
|
+
* Format: int32
|
|
854
|
+
* @enum {integer|null}
|
|
855
|
+
*/
|
|
856
|
+
availability?: 0 | 1 | 2 | 3 | 4 | null;
|
|
857
|
+
/** Format: int32 */
|
|
858
|
+
enrollmentsCount?: number | null;
|
|
859
|
+
/**
|
|
860
|
+
* Format: int32
|
|
861
|
+
* @enum {integer|null}
|
|
862
|
+
*/
|
|
863
|
+
siteTheme?: 0 | 1 | 2 | null;
|
|
864
|
+
cart?: components["schemas"]["CartDto"];
|
|
865
|
+
wallet?: components["schemas"]["WalletDto"];
|
|
866
|
+
socialProfile?: components["schemas"]["SocialProfileDto"];
|
|
867
|
+
settings?: components["schemas"]["PlatformUserSettingsDto"];
|
|
868
|
+
};
|
|
869
|
+
ExtendedPlatformUserDtoEnvelope: {
|
|
508
870
|
isSuccess?: boolean;
|
|
871
|
+
errorMessage?: string | null;
|
|
872
|
+
correlationId?: string | null;
|
|
509
873
|
/** Format: date-time */
|
|
510
874
|
timestamp?: string;
|
|
511
875
|
activityId?: string | null;
|
|
512
|
-
|
|
513
|
-
result?: components["schemas"]["NotificationDto"][] | null;
|
|
876
|
+
result?: components["schemas"]["ExtendedPlatformUserDto"];
|
|
514
877
|
};
|
|
515
|
-
|
|
878
|
+
ExtendedTenantDto: {
|
|
516
879
|
id?: string | null;
|
|
517
880
|
/** Format: date-time */
|
|
518
881
|
timestamp?: string | null;
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
882
|
+
qualifiedName?: string | null;
|
|
883
|
+
taxId?: string | null;
|
|
884
|
+
about?: string | null;
|
|
885
|
+
walletId?: string | null;
|
|
886
|
+
socialFeedId?: string | null;
|
|
887
|
+
businessIndustryId?: string | null;
|
|
888
|
+
businessSegmentId?: string | null;
|
|
889
|
+
socialProfileId?: string | null;
|
|
890
|
+
languageId?: string | null;
|
|
891
|
+
name?: string | null;
|
|
892
|
+
duns?: string | null;
|
|
893
|
+
slogan?: string | null;
|
|
894
|
+
legalName?: string | null;
|
|
895
|
+
coverUrl?: string | null;
|
|
896
|
+
avatarUrl?: string | null;
|
|
897
|
+
cartId?: string | null;
|
|
898
|
+
currencyId?: string | null;
|
|
899
|
+
timezoneId?: string | null;
|
|
526
900
|
countryId?: string | null;
|
|
527
|
-
|
|
901
|
+
stateId?: string | null;
|
|
528
902
|
cityId?: string | null;
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
903
|
+
email?: string | null;
|
|
904
|
+
phone?: string | null;
|
|
905
|
+
webUrl?: string | null;
|
|
906
|
+
facebookUrl?: string | null;
|
|
907
|
+
twitterUrl?: string | null;
|
|
908
|
+
gitHubUrl?: string | null;
|
|
909
|
+
linkedInUrl?: string | null;
|
|
910
|
+
instagramUrl?: string | null;
|
|
911
|
+
youTubeUrl?: string | null;
|
|
912
|
+
whatsAppNumber?: string | null;
|
|
913
|
+
supportPhoneNumber?: string | null;
|
|
914
|
+
verified?: boolean;
|
|
915
|
+
businessName?: string | null;
|
|
916
|
+
businessLegalName?: string | null;
|
|
917
|
+
twitterUsername?: string | null;
|
|
918
|
+
cart?: components["schemas"]["CartDto"];
|
|
919
|
+
wallet?: components["schemas"]["WalletDto"];
|
|
920
|
+
socialProfile?: components["schemas"]["SocialProfileDto"];
|
|
541
921
|
};
|
|
542
|
-
|
|
543
|
-
errorMessage?: string | null;
|
|
922
|
+
ExtendedTenantDtoListEnvelope: {
|
|
544
923
|
isSuccess?: boolean;
|
|
924
|
+
errorMessage?: string | null;
|
|
925
|
+
correlationId?: string | null;
|
|
545
926
|
/** Format: date-time */
|
|
546
927
|
timestamp?: string;
|
|
547
928
|
activityId?: string | null;
|
|
548
|
-
|
|
549
|
-
result?: components["schemas"]["OrderDto"][] | null;
|
|
929
|
+
result?: components["schemas"]["ExtendedTenantDto"][] | null;
|
|
550
930
|
};
|
|
551
|
-
|
|
931
|
+
ExtendedTenantEnrolmentDto: {
|
|
552
932
|
id?: string | null;
|
|
553
933
|
/** Format: date-time */
|
|
554
|
-
timestamp?: string;
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
totalCost?: number;
|
|
564
|
-
/** Format: double */
|
|
565
|
-
totalTaxes?: number;
|
|
934
|
+
timestamp?: string | null;
|
|
935
|
+
tenantId?: string | null;
|
|
936
|
+
userId?: string | null;
|
|
937
|
+
isRoot?: boolean;
|
|
938
|
+
isOwner?: boolean;
|
|
939
|
+
isAdmin?: boolean;
|
|
940
|
+
isDisabled?: boolean;
|
|
941
|
+
tenant?: components["schemas"]["TenantDto"];
|
|
942
|
+
user?: components["schemas"]["PlatformUserDto"];
|
|
566
943
|
};
|
|
567
|
-
|
|
568
|
-
errorMessage?: string | null;
|
|
944
|
+
ExtendedTenantEnrolmentDtoListEnvelope: {
|
|
569
945
|
isSuccess?: boolean;
|
|
946
|
+
errorMessage?: string | null;
|
|
947
|
+
correlationId?: string | null;
|
|
570
948
|
/** Format: date-time */
|
|
571
949
|
timestamp?: string;
|
|
572
950
|
activityId?: string | null;
|
|
951
|
+
result?: components["schemas"]["ExtendedTenantEnrolmentDto"][] | null;
|
|
952
|
+
};
|
|
953
|
+
FollowRecordDto: {
|
|
954
|
+
id?: string | null;
|
|
955
|
+
type?: string | null;
|
|
956
|
+
followerID?: string | null;
|
|
957
|
+
followedID?: string | null;
|
|
958
|
+
alerts?: boolean;
|
|
959
|
+
};
|
|
960
|
+
NotificationDto: {
|
|
961
|
+
id?: string | null;
|
|
962
|
+
/** Format: date-time */
|
|
963
|
+
timestamp?: string | null;
|
|
964
|
+
read?: boolean;
|
|
965
|
+
icon?: string | null;
|
|
966
|
+
message?: string | null;
|
|
967
|
+
redirectUrl?: string | null;
|
|
968
|
+
socialProfileID?: string | null;
|
|
969
|
+
/** Format: date-time */
|
|
970
|
+
readTimestamp?: string;
|
|
971
|
+
/** Format: date-time */
|
|
972
|
+
issuedTimestamp?: string;
|
|
973
|
+
};
|
|
974
|
+
NotificationDtoListEnvelope: {
|
|
975
|
+
isSuccess?: boolean;
|
|
976
|
+
errorMessage?: string | null;
|
|
573
977
|
correlationId?: string | null;
|
|
574
|
-
|
|
978
|
+
/** Format: date-time */
|
|
979
|
+
timestamp?: string;
|
|
980
|
+
activityId?: string | null;
|
|
981
|
+
result?: components["schemas"]["NotificationDto"][] | null;
|
|
982
|
+
};
|
|
983
|
+
Operation: {
|
|
984
|
+
/**
|
|
985
|
+
* Format: int32
|
|
986
|
+
* @enum {integer}
|
|
987
|
+
*/
|
|
988
|
+
operationType?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
989
|
+
path?: string | null;
|
|
990
|
+
op?: string | null;
|
|
991
|
+
from?: string | null;
|
|
992
|
+
value?: unknown;
|
|
575
993
|
};
|
|
576
994
|
PlatformUserDto: {
|
|
577
995
|
id?: string | null;
|
|
578
996
|
/** Format: date-time */
|
|
579
997
|
timestamp?: string | null;
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
998
|
+
fullName?: string | null;
|
|
999
|
+
socialProfileId?: string | null;
|
|
1000
|
+
publicName?: string | null;
|
|
583
1001
|
firstName?: string | null;
|
|
584
1002
|
lastName?: string | null;
|
|
585
|
-
publicName?: string | null;
|
|
586
|
-
idProvider?: string | null;
|
|
587
|
-
languageId?: string | null;
|
|
588
|
-
timezoneId?: string | null;
|
|
589
|
-
gender?: string | null;
|
|
590
|
-
cityId?: string | null;
|
|
591
|
-
stateId?: string | null;
|
|
592
|
-
email?: string | null;
|
|
593
|
-
about?: string | null;
|
|
594
|
-
jobTitle?: string | null;
|
|
595
1003
|
coverUrl?: string | null;
|
|
596
1004
|
avatarUrl?: string | null;
|
|
1005
|
+
timezoneId?: string | null;
|
|
597
1006
|
gitHubUrl?: string | null;
|
|
598
1007
|
websiteUrl?: string | null;
|
|
599
1008
|
twitterUrl?: string | null;
|
|
@@ -601,57 +1010,128 @@ export interface components {
|
|
|
601
1010
|
youTubeUrl?: string | null;
|
|
602
1011
|
linkedInUrl?: string | null;
|
|
603
1012
|
instagramUrl?: string | null;
|
|
604
|
-
|
|
1013
|
+
countryId?: string | null;
|
|
1014
|
+
/** Format: date-time */
|
|
1015
|
+
birthday?: string | null;
|
|
1016
|
+
qualifiedName?: string | null;
|
|
1017
|
+
idProvider?: string | null;
|
|
1018
|
+
languageId?: string | null;
|
|
1019
|
+
/**
|
|
1020
|
+
* Format: int32
|
|
1021
|
+
* @enum {integer|null}
|
|
1022
|
+
*/
|
|
1023
|
+
gender?: 0 | 1 | 2 | null;
|
|
1024
|
+
cityId?: string | null;
|
|
1025
|
+
stateId?: string | null;
|
|
1026
|
+
email?: string | null;
|
|
1027
|
+
about?: string | null;
|
|
1028
|
+
jobTitle?: string | null;
|
|
605
1029
|
socialFeedId?: string | null;
|
|
606
|
-
socialProfileId?: string | null;
|
|
607
1030
|
currentTenantId?: string | null;
|
|
608
1031
|
currentEnrollmentId?: string | null;
|
|
1032
|
+
status?: string | null;
|
|
609
1033
|
cartId?: string | null;
|
|
610
1034
|
walletId?: string | null;
|
|
611
|
-
countryId?: string | null;
|
|
612
|
-
currencyId?: string | null;
|
|
613
1035
|
userName?: string | null;
|
|
614
|
-
|
|
1036
|
+
currencyId?: string | null;
|
|
615
1037
|
phoneNumber?: string | null;
|
|
616
1038
|
publicIdentifier?: string | null;
|
|
617
1039
|
identityProvider?: string | null;
|
|
618
1040
|
phoneNumberConfirmed?: boolean;
|
|
619
1041
|
emailConfirmed?: boolean;
|
|
1042
|
+
lockoutEnabled?: boolean;
|
|
620
1043
|
/**
|
|
621
1044
|
* Format: int32
|
|
622
|
-
* @enum {integer}
|
|
1045
|
+
* @enum {integer|null}
|
|
623
1046
|
*/
|
|
624
|
-
|
|
1047
|
+
availability?: 0 | 1 | 2 | 3 | 4 | null;
|
|
1048
|
+
/** Format: int32 */
|
|
1049
|
+
enrollmentsCount?: number | null;
|
|
625
1050
|
/**
|
|
626
1051
|
* Format: int32
|
|
627
|
-
* @enum {integer}
|
|
1052
|
+
* @enum {integer|null}
|
|
628
1053
|
*/
|
|
629
|
-
|
|
630
|
-
/** Format: int32 */
|
|
631
|
-
followsCount?: number | null;
|
|
632
|
-
/** Format: int32 */
|
|
633
|
-
followersCount?: number | null;
|
|
634
|
-
/** Format: int32 */
|
|
635
|
-
enrollmentsCount?: number | null;
|
|
636
|
-
/** Format: int32 */
|
|
637
|
-
socialPostsCount?: number | null;
|
|
638
|
-
/** Format: int32 */
|
|
639
|
-
unreadMessagesCount?: number | null;
|
|
640
|
-
/** Format: int32 */
|
|
641
|
-
unreadNotificationsCount?: number | null;
|
|
642
|
-
webUrl?: string | null;
|
|
643
|
-
countryStateId?: string | null;
|
|
644
|
-
selectedBusinessId?: string | null;
|
|
1054
|
+
siteTheme?: 0 | 1 | 2 | null;
|
|
645
1055
|
};
|
|
646
1056
|
PlatformUserDtoEnvelope: {
|
|
647
|
-
errorMessage?: string | null;
|
|
648
1057
|
isSuccess?: boolean;
|
|
1058
|
+
errorMessage?: string | null;
|
|
1059
|
+
correlationId?: string | null;
|
|
649
1060
|
/** Format: date-time */
|
|
650
1061
|
timestamp?: string;
|
|
651
1062
|
activityId?: string | null;
|
|
652
|
-
correlationId?: string | null;
|
|
653
1063
|
result?: components["schemas"]["PlatformUserDto"];
|
|
654
1064
|
};
|
|
1065
|
+
PlatformUserSettingsDto: {
|
|
1066
|
+
id?: string | null;
|
|
1067
|
+
/** Format: date-time */
|
|
1068
|
+
timestamp?: string | null;
|
|
1069
|
+
/** Format: int32 */
|
|
1070
|
+
pageSize?: number;
|
|
1071
|
+
dateFormat?: string | null;
|
|
1072
|
+
currencyFormat?: string | null;
|
|
1073
|
+
dateTimeFormat?: string | null;
|
|
1074
|
+
/**
|
|
1075
|
+
* Format: int32
|
|
1076
|
+
* @enum {integer}
|
|
1077
|
+
*/
|
|
1078
|
+
siteTheme?: 0 | 1 | 2;
|
|
1079
|
+
};
|
|
1080
|
+
PlatformUserSettingsDtoEnvelope: {
|
|
1081
|
+
isSuccess?: boolean;
|
|
1082
|
+
errorMessage?: string | null;
|
|
1083
|
+
correlationId?: string | null;
|
|
1084
|
+
/** Format: date-time */
|
|
1085
|
+
timestamp?: string;
|
|
1086
|
+
activityId?: string | null;
|
|
1087
|
+
result?: components["schemas"]["PlatformUserSettingsDto"];
|
|
1088
|
+
};
|
|
1089
|
+
PlatformUserSettingsUpdateDto: {
|
|
1090
|
+
/** Format: int32 */
|
|
1091
|
+
pageSize?: number | null;
|
|
1092
|
+
dateFormat: string;
|
|
1093
|
+
currencyFormat: string;
|
|
1094
|
+
dateTimeFormat: string;
|
|
1095
|
+
/**
|
|
1096
|
+
* Format: int32
|
|
1097
|
+
* @enum {integer}
|
|
1098
|
+
*/
|
|
1099
|
+
siteTheme: 0 | 1 | 2;
|
|
1100
|
+
};
|
|
1101
|
+
PlatformUserUpdateDto: {
|
|
1102
|
+
/** Format: date-time */
|
|
1103
|
+
birthday?: string | null;
|
|
1104
|
+
firstName?: string | null;
|
|
1105
|
+
lastName?: string | null;
|
|
1106
|
+
publicName?: string | null;
|
|
1107
|
+
idProvider?: string | null;
|
|
1108
|
+
languageId?: string | null;
|
|
1109
|
+
timezoneId?: string | null;
|
|
1110
|
+
gender?: string | null;
|
|
1111
|
+
cityId?: string | null;
|
|
1112
|
+
currencyId?: string | null;
|
|
1113
|
+
status?: string | null;
|
|
1114
|
+
stateId?: string | null;
|
|
1115
|
+
about?: string | null;
|
|
1116
|
+
webUrl?: string | null;
|
|
1117
|
+
jobTitle?: string | null;
|
|
1118
|
+
coverUrl?: string | null;
|
|
1119
|
+
avatarUrl?: string | null;
|
|
1120
|
+
gitHubUrl?: string | null;
|
|
1121
|
+
websiteUrl?: string | null;
|
|
1122
|
+
twitterUrl?: string | null;
|
|
1123
|
+
facebookUrl?: string | null;
|
|
1124
|
+
youTubeUrl?: string | null;
|
|
1125
|
+
linkedInUrl?: string | null;
|
|
1126
|
+
instagramUrl?: string | null;
|
|
1127
|
+
countryId?: string | null;
|
|
1128
|
+
githubUsername?: string | null;
|
|
1129
|
+
/**
|
|
1130
|
+
* Format: int32
|
|
1131
|
+
* @enum {integer}
|
|
1132
|
+
*/
|
|
1133
|
+
availability?: 0 | 1 | 2 | 3 | 4;
|
|
1134
|
+
};
|
|
655
1135
|
SocialProfileDto: {
|
|
656
1136
|
id?: string | null;
|
|
657
1137
|
/** Format: date-time */
|
|
@@ -690,12 +1170,12 @@ export interface components {
|
|
|
690
1170
|
notes?: string | null;
|
|
691
1171
|
};
|
|
692
1172
|
SocialProfileDtoEnvelope: {
|
|
693
|
-
errorMessage?: string | null;
|
|
694
1173
|
isSuccess?: boolean;
|
|
1174
|
+
errorMessage?: string | null;
|
|
1175
|
+
correlationId?: string | null;
|
|
695
1176
|
/** Format: date-time */
|
|
696
1177
|
timestamp?: string;
|
|
697
1178
|
activityId?: string | null;
|
|
698
|
-
correlationId?: string | null;
|
|
699
1179
|
result?: components["schemas"]["SocialProfileDto"];
|
|
700
1180
|
};
|
|
701
1181
|
TenantDto: {
|
|
@@ -721,25 +1201,8 @@ export interface components {
|
|
|
721
1201
|
currencyId?: string | null;
|
|
722
1202
|
timezoneId?: string | null;
|
|
723
1203
|
countryId?: string | null;
|
|
724
|
-
|
|
1204
|
+
stateId?: string | null;
|
|
725
1205
|
cityId?: string | null;
|
|
726
|
-
/** Format: double */
|
|
727
|
-
reviewsAvg?: number | null;
|
|
728
|
-
/** Format: int32 */
|
|
729
|
-
reviewsCount?: number | null;
|
|
730
|
-
/** Format: int32 */
|
|
731
|
-
followsCount?: number | null;
|
|
732
|
-
/** Format: int32 */
|
|
733
|
-
followersCount?: number | null;
|
|
734
|
-
/** Format: int32 */
|
|
735
|
-
enrollmentsCount?: number | null;
|
|
736
|
-
/** Format: int32 */
|
|
737
|
-
socialPostsCount?: number | null;
|
|
738
|
-
/** Format: int32 */
|
|
739
|
-
unreadMessagesCount?: number | null;
|
|
740
|
-
/** Format: int32 */
|
|
741
|
-
unreadNotificationsCount?: number | null;
|
|
742
|
-
enrollmentID?: string | null;
|
|
743
1206
|
email?: string | null;
|
|
744
1207
|
phone?: string | null;
|
|
745
1208
|
webUrl?: string | null;
|
|
@@ -757,31 +1220,64 @@ export interface components {
|
|
|
757
1220
|
twitterUsername?: string | null;
|
|
758
1221
|
};
|
|
759
1222
|
TenantDtoListEnvelope: {
|
|
760
|
-
errorMessage?: string | null;
|
|
761
1223
|
isSuccess?: boolean;
|
|
1224
|
+
errorMessage?: string | null;
|
|
1225
|
+
correlationId?: string | null;
|
|
762
1226
|
/** Format: date-time */
|
|
763
1227
|
timestamp?: string;
|
|
764
1228
|
activityId?: string | null;
|
|
765
|
-
correlationId?: string | null;
|
|
766
1229
|
result?: components["schemas"]["TenantDto"][] | null;
|
|
767
1230
|
};
|
|
768
|
-
|
|
1231
|
+
TenantEnrolmentDto: {
|
|
769
1232
|
id?: string | null;
|
|
1233
|
+
/** Format: date-time */
|
|
1234
|
+
timestamp?: string | null;
|
|
1235
|
+
tenantId?: string | null;
|
|
1236
|
+
userId?: string | null;
|
|
770
1237
|
isRoot?: boolean;
|
|
771
1238
|
isOwner?: boolean;
|
|
772
1239
|
isAdmin?: boolean;
|
|
773
1240
|
isDisabled?: boolean;
|
|
774
|
-
tenantId?: string | null;
|
|
775
|
-
userId?: string | null;
|
|
776
1241
|
};
|
|
777
|
-
|
|
1242
|
+
TenantEnrolmentDtoEnvelope: {
|
|
1243
|
+
isSuccess?: boolean;
|
|
778
1244
|
errorMessage?: string | null;
|
|
1245
|
+
correlationId?: string | null;
|
|
1246
|
+
/** Format: date-time */
|
|
1247
|
+
timestamp?: string;
|
|
1248
|
+
activityId?: string | null;
|
|
1249
|
+
result?: components["schemas"]["TenantEnrolmentDto"];
|
|
1250
|
+
};
|
|
1251
|
+
TenantEnrolmentDtoListEnvelope: {
|
|
779
1252
|
isSuccess?: boolean;
|
|
1253
|
+
errorMessage?: string | null;
|
|
1254
|
+
correlationId?: string | null;
|
|
780
1255
|
/** Format: date-time */
|
|
781
1256
|
timestamp?: string;
|
|
782
1257
|
activityId?: string | null;
|
|
1258
|
+
result?: components["schemas"]["TenantEnrolmentDto"][] | null;
|
|
1259
|
+
};
|
|
1260
|
+
TenantInvitationDto: {
|
|
1261
|
+
id?: string | null;
|
|
1262
|
+
/** Format: date-time */
|
|
1263
|
+
timestamp?: string | null;
|
|
1264
|
+
tenantId?: string | null;
|
|
1265
|
+
revoked?: boolean;
|
|
1266
|
+
redeemed?: boolean;
|
|
1267
|
+
/** Format: date-time */
|
|
1268
|
+
redeemedTimestamp?: string | null;
|
|
1269
|
+
userEmail?: string | null;
|
|
1270
|
+
creatorEnrollmentId?: string | null;
|
|
1271
|
+
relatedEnrollmentId?: string | null;
|
|
1272
|
+
};
|
|
1273
|
+
TenantInvitationDtoListEnvelope: {
|
|
1274
|
+
isSuccess?: boolean;
|
|
1275
|
+
errorMessage?: string | null;
|
|
783
1276
|
correlationId?: string | null;
|
|
784
|
-
|
|
1277
|
+
/** Format: date-time */
|
|
1278
|
+
timestamp?: string;
|
|
1279
|
+
activityId?: string | null;
|
|
1280
|
+
result?: components["schemas"]["TenantInvitationDto"][] | null;
|
|
785
1281
|
};
|
|
786
1282
|
WalletDto: {
|
|
787
1283
|
id?: string | null;
|
|
@@ -808,12 +1304,12 @@ export interface components {
|
|
|
808
1304
|
rollingReservePercent?: number;
|
|
809
1305
|
};
|
|
810
1306
|
WalletDtoEnvelope: {
|
|
811
|
-
errorMessage?: string | null;
|
|
812
1307
|
isSuccess?: boolean;
|
|
1308
|
+
errorMessage?: string | null;
|
|
1309
|
+
correlationId?: string | null;
|
|
813
1310
|
/** Format: date-time */
|
|
814
1311
|
timestamp?: string;
|
|
815
1312
|
activityId?: string | null;
|
|
816
|
-
correlationId?: string | null;
|
|
817
1313
|
result?: components["schemas"]["WalletDto"];
|
|
818
1314
|
};
|
|
819
1315
|
};
|