@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,17 +6,94 @@
|
|
|
6
6
|
|
|
7
7
|
export interface paths {
|
|
8
8
|
"/api/v2/CrmService/Contacts": {
|
|
9
|
-
/** Get all business owned contacts */
|
|
10
9
|
get: {
|
|
11
10
|
parameters: {
|
|
12
11
|
query: {
|
|
13
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
14
12
|
tenantId: string;
|
|
15
13
|
"api-version"?: string;
|
|
16
14
|
};
|
|
15
|
+
header?: {
|
|
16
|
+
"x-api-version"?: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
responses: {
|
|
20
|
+
/** @description OK */
|
|
21
|
+
200: {
|
|
22
|
+
content: {
|
|
23
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
24
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
/** @description Unauthorized */
|
|
28
|
+
401: {
|
|
29
|
+
content: {
|
|
30
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
31
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
/** @description Forbidden */
|
|
35
|
+
403: {
|
|
36
|
+
content: {
|
|
37
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
38
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
post: {
|
|
44
|
+
parameters: {
|
|
45
|
+
query: {
|
|
46
|
+
tenantId: string;
|
|
47
|
+
"api-version"?: string;
|
|
48
|
+
};
|
|
49
|
+
header?: {
|
|
50
|
+
"x-api-version"?: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
requestBody?: {
|
|
54
|
+
content: {
|
|
55
|
+
"application/json": components["schemas"]["ContactCreateDto"];
|
|
56
|
+
"application/xml": components["schemas"]["ContactCreateDto"];
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
responses: {
|
|
60
|
+
/** @description OK */
|
|
61
|
+
200: {
|
|
62
|
+
content: {
|
|
63
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
64
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
/** @description Unauthorized */
|
|
68
|
+
401: {
|
|
69
|
+
content: {
|
|
70
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
71
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
/** @description Forbidden */
|
|
75
|
+
403: {
|
|
76
|
+
content: {
|
|
77
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
78
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
"/api/v2/CrmService/Contacts/Count": {
|
|
85
|
+
get: {
|
|
86
|
+
parameters: {
|
|
87
|
+
query: {
|
|
88
|
+
tenantId: string;
|
|
89
|
+
"api-version"?: string;
|
|
90
|
+
};
|
|
91
|
+
header?: {
|
|
92
|
+
"x-api-version"?: string;
|
|
93
|
+
};
|
|
17
94
|
};
|
|
18
95
|
responses: {
|
|
19
|
-
/** @description
|
|
96
|
+
/** @description OK */
|
|
20
97
|
200: {
|
|
21
98
|
content: {
|
|
22
99
|
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
@@ -41,24 +118,486 @@ export interface paths {
|
|
|
41
118
|
};
|
|
42
119
|
};
|
|
43
120
|
"/api/v2/CrmService/Contacts/{contactId}": {
|
|
44
|
-
/** Get a contact by ID */
|
|
45
121
|
get: {
|
|
46
122
|
parameters: {
|
|
47
123
|
query: {
|
|
48
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
49
124
|
tenantId: string;
|
|
50
125
|
"api-version"?: string;
|
|
51
126
|
};
|
|
127
|
+
header?: {
|
|
128
|
+
"x-api-version"?: string;
|
|
129
|
+
};
|
|
130
|
+
path: {
|
|
131
|
+
contactId: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
responses: {
|
|
135
|
+
/** @description OK */
|
|
136
|
+
200: {
|
|
137
|
+
content: {
|
|
138
|
+
"application/json": components["schemas"]["ContactDtoEnvelope"];
|
|
139
|
+
"application/xml": components["schemas"]["ContactDtoEnvelope"];
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
/** @description Unauthorized */
|
|
143
|
+
401: {
|
|
144
|
+
content: {
|
|
145
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
146
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
/** @description Forbidden */
|
|
150
|
+
403: {
|
|
151
|
+
content: {
|
|
152
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
153
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
put: {
|
|
159
|
+
parameters: {
|
|
160
|
+
query: {
|
|
161
|
+
tenantId: string;
|
|
162
|
+
"api-version"?: string;
|
|
163
|
+
};
|
|
164
|
+
header?: {
|
|
165
|
+
"x-api-version"?: string;
|
|
166
|
+
};
|
|
52
167
|
path: {
|
|
53
168
|
contactId: string;
|
|
54
169
|
};
|
|
55
170
|
};
|
|
171
|
+
requestBody?: {
|
|
172
|
+
content: {
|
|
173
|
+
"application/json": components["schemas"]["ContactUpdateDto"];
|
|
174
|
+
"application/xml": components["schemas"]["ContactUpdateDto"];
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
responses: {
|
|
178
|
+
/** @description OK */
|
|
179
|
+
200: {
|
|
180
|
+
content: {
|
|
181
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
182
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
/** @description Unauthorized */
|
|
186
|
+
401: {
|
|
187
|
+
content: {
|
|
188
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
189
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
/** @description Forbidden */
|
|
193
|
+
403: {
|
|
194
|
+
content: {
|
|
195
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
196
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
delete: {
|
|
202
|
+
parameters: {
|
|
203
|
+
query: {
|
|
204
|
+
tenantId: string;
|
|
205
|
+
"api-version"?: string;
|
|
206
|
+
};
|
|
207
|
+
header?: {
|
|
208
|
+
"x-api-version"?: string;
|
|
209
|
+
};
|
|
210
|
+
path: {
|
|
211
|
+
contactId: string;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
responses: {
|
|
215
|
+
/** @description OK */
|
|
216
|
+
200: {
|
|
217
|
+
content: {
|
|
218
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
219
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
/** @description Unauthorized */
|
|
223
|
+
401: {
|
|
224
|
+
content: {
|
|
225
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
226
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
/** @description Forbidden */
|
|
230
|
+
403: {
|
|
231
|
+
content: {
|
|
232
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
233
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
patch: {
|
|
239
|
+
parameters: {
|
|
240
|
+
query: {
|
|
241
|
+
tenantId: string;
|
|
242
|
+
"api-version"?: string;
|
|
243
|
+
};
|
|
244
|
+
header?: {
|
|
245
|
+
"x-api-version"?: string;
|
|
246
|
+
};
|
|
247
|
+
path: {
|
|
248
|
+
contactId: string;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
requestBody?: {
|
|
252
|
+
content: {
|
|
253
|
+
"application/json": components["schemas"]["Operation"][];
|
|
254
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
responses: {
|
|
258
|
+
/** @description OK */
|
|
259
|
+
200: {
|
|
260
|
+
content: {
|
|
261
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
262
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
263
|
+
};
|
|
264
|
+
};
|
|
265
|
+
/** @description Unauthorized */
|
|
266
|
+
401: {
|
|
267
|
+
content: {
|
|
268
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
269
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
/** @description Forbidden */
|
|
273
|
+
403: {
|
|
274
|
+
content: {
|
|
275
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
276
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
"/api/v2/CrmService/Contacts/Individuals": {
|
|
283
|
+
get: {
|
|
284
|
+
parameters: {
|
|
285
|
+
query: {
|
|
286
|
+
tenantId: string;
|
|
287
|
+
"api-version"?: string;
|
|
288
|
+
};
|
|
289
|
+
header?: {
|
|
290
|
+
"x-api-version"?: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
responses: {
|
|
294
|
+
/** @description OK */
|
|
295
|
+
200: {
|
|
296
|
+
content: {
|
|
297
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
298
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
299
|
+
};
|
|
300
|
+
};
|
|
301
|
+
/** @description Unauthorized */
|
|
302
|
+
401: {
|
|
303
|
+
content: {
|
|
304
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
305
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
/** @description Forbidden */
|
|
309
|
+
403: {
|
|
310
|
+
content: {
|
|
311
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
312
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
"/api/v2/CrmService/Contacts/Individuals/Count": {
|
|
319
|
+
get: {
|
|
320
|
+
parameters: {
|
|
321
|
+
query: {
|
|
322
|
+
tenantId: string;
|
|
323
|
+
"api-version"?: string;
|
|
324
|
+
};
|
|
325
|
+
header?: {
|
|
326
|
+
"x-api-version"?: string;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
responses: {
|
|
330
|
+
/** @description OK */
|
|
331
|
+
200: {
|
|
332
|
+
content: {
|
|
333
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
334
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
/** @description Unauthorized */
|
|
338
|
+
401: {
|
|
339
|
+
content: {
|
|
340
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
341
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
/** @description Forbidden */
|
|
345
|
+
403: {
|
|
346
|
+
content: {
|
|
347
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
348
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
"/api/v2/CrmService/Contacts/Individuals/{contactId}": {
|
|
355
|
+
get: {
|
|
356
|
+
parameters: {
|
|
357
|
+
query: {
|
|
358
|
+
tenantId: string;
|
|
359
|
+
"api-version"?: string;
|
|
360
|
+
};
|
|
361
|
+
header?: {
|
|
362
|
+
"x-api-version"?: string;
|
|
363
|
+
};
|
|
364
|
+
path: {
|
|
365
|
+
contactId: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
responses: {
|
|
369
|
+
/** @description OK */
|
|
370
|
+
200: {
|
|
371
|
+
content: {
|
|
372
|
+
"application/json": components["schemas"]["ContactDtoEnvelope"];
|
|
373
|
+
"application/xml": components["schemas"]["ContactDtoEnvelope"];
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
/** @description Unauthorized */
|
|
377
|
+
401: {
|
|
378
|
+
content: {
|
|
379
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
380
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
/** @description Forbidden */
|
|
384
|
+
403: {
|
|
385
|
+
content: {
|
|
386
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
387
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
388
|
+
};
|
|
389
|
+
};
|
|
390
|
+
/** @description Not Found */
|
|
391
|
+
404: {
|
|
392
|
+
content: {
|
|
393
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
394
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
395
|
+
};
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
"/api/v2/CrmService/Contacts/Organizations": {
|
|
401
|
+
get: {
|
|
402
|
+
parameters: {
|
|
403
|
+
query: {
|
|
404
|
+
tenantId: string;
|
|
405
|
+
"api-version"?: string;
|
|
406
|
+
};
|
|
407
|
+
header?: {
|
|
408
|
+
"x-api-version"?: string;
|
|
409
|
+
};
|
|
410
|
+
};
|
|
411
|
+
responses: {
|
|
412
|
+
/** @description OK */
|
|
413
|
+
200: {
|
|
414
|
+
content: {
|
|
415
|
+
"application/json": components["schemas"]["ContactDto"][];
|
|
416
|
+
"application/xml": components["schemas"]["ContactDto"][];
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
/** @description Unauthorized */
|
|
420
|
+
401: {
|
|
421
|
+
content: {
|
|
422
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
423
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
/** @description Forbidden */
|
|
427
|
+
403: {
|
|
428
|
+
content: {
|
|
429
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
430
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
"/api/v2/CrmService/Contacts/Organizations/Count": {
|
|
437
|
+
get: {
|
|
438
|
+
parameters: {
|
|
439
|
+
query: {
|
|
440
|
+
tenantId: string;
|
|
441
|
+
"api-version"?: string;
|
|
442
|
+
};
|
|
443
|
+
header?: {
|
|
444
|
+
"x-api-version"?: string;
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
responses: {
|
|
448
|
+
/** @description OK */
|
|
449
|
+
200: {
|
|
450
|
+
content: {
|
|
451
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
452
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
/** @description Unauthorized */
|
|
456
|
+
401: {
|
|
457
|
+
content: {
|
|
458
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
459
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
/** @description Forbidden */
|
|
463
|
+
403: {
|
|
464
|
+
content: {
|
|
465
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
466
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
"/api/v2/CrmService/Contacts/Organizations/{contactId}": {
|
|
473
|
+
get: {
|
|
474
|
+
parameters: {
|
|
475
|
+
query: {
|
|
476
|
+
tenantId: string;
|
|
477
|
+
"api-version"?: string;
|
|
478
|
+
};
|
|
479
|
+
header?: {
|
|
480
|
+
"x-api-version"?: string;
|
|
481
|
+
};
|
|
482
|
+
path: {
|
|
483
|
+
contactId: string;
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
responses: {
|
|
487
|
+
/** @description OK */
|
|
488
|
+
200: {
|
|
489
|
+
content: {
|
|
490
|
+
"application/json": components["schemas"]["ContactDtoEnvelope"];
|
|
491
|
+
"application/xml": components["schemas"]["ContactDtoEnvelope"];
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
/** @description Unauthorized */
|
|
495
|
+
401: {
|
|
496
|
+
content: {
|
|
497
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
498
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
/** @description Forbidden */
|
|
502
|
+
403: {
|
|
503
|
+
content: {
|
|
504
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
505
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
/** @description Not Found */
|
|
509
|
+
404: {
|
|
510
|
+
content: {
|
|
511
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
512
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
};
|
|
518
|
+
"/api/v2/CrmService/Contacts/{contactId}/Cart": {
|
|
519
|
+
get: {
|
|
520
|
+
parameters: {
|
|
521
|
+
query: {
|
|
522
|
+
tenantId: string;
|
|
523
|
+
"api-version"?: string;
|
|
524
|
+
};
|
|
525
|
+
header?: {
|
|
526
|
+
"x-api-version"?: string;
|
|
527
|
+
};
|
|
528
|
+
path: {
|
|
529
|
+
contactId: string;
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
responses: {
|
|
533
|
+
/** @description OK */
|
|
534
|
+
200: {
|
|
535
|
+
content: {
|
|
536
|
+
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
537
|
+
"application/xml": components["schemas"]["CartDtoEnvelope"];
|
|
538
|
+
};
|
|
539
|
+
};
|
|
540
|
+
/** @description Unauthorized */
|
|
541
|
+
401: {
|
|
542
|
+
content: {
|
|
543
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
544
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
/** @description Forbidden */
|
|
548
|
+
403: {
|
|
549
|
+
content: {
|
|
550
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
551
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
/** @description Not Found */
|
|
555
|
+
404: {
|
|
556
|
+
content: {
|
|
557
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
558
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
559
|
+
};
|
|
560
|
+
};
|
|
561
|
+
};
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
"/api/v2/CrmService/Contacts/{contactId}/Avatar": {
|
|
565
|
+
get: operations["GetContactAvatarAsync"];
|
|
566
|
+
post: {
|
|
567
|
+
parameters: {
|
|
568
|
+
query?: {
|
|
569
|
+
tenantId?: string;
|
|
570
|
+
"api-version"?: string;
|
|
571
|
+
};
|
|
572
|
+
header?: {
|
|
573
|
+
"x-api-version"?: string;
|
|
574
|
+
};
|
|
575
|
+
path: {
|
|
576
|
+
contactId: string;
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
requestBody?: {
|
|
580
|
+
content: {
|
|
581
|
+
"multipart/form-data": {
|
|
582
|
+
/** Format: binary */
|
|
583
|
+
avatar?: string;
|
|
584
|
+
};
|
|
585
|
+
"application/json": {
|
|
586
|
+
/** Format: binary */
|
|
587
|
+
avatar?: string;
|
|
588
|
+
};
|
|
589
|
+
"application/xml": {
|
|
590
|
+
/** Format: binary */
|
|
591
|
+
avatar?: string;
|
|
592
|
+
};
|
|
593
|
+
};
|
|
594
|
+
};
|
|
56
595
|
responses: {
|
|
57
|
-
/** @description
|
|
596
|
+
/** @description OK */
|
|
58
597
|
200: {
|
|
59
598
|
content: {
|
|
60
|
-
"application/json": components["schemas"]["
|
|
61
|
-
"application/xml": components["schemas"]["
|
|
599
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
600
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
62
601
|
};
|
|
63
602
|
};
|
|
64
603
|
/** @description Unauthorized */
|
|
@@ -78,22 +617,26 @@ export interface paths {
|
|
|
78
617
|
};
|
|
79
618
|
};
|
|
80
619
|
};
|
|
81
|
-
"/api/v2/CrmService/Contacts/
|
|
82
|
-
/** Get all contacts of type individual */
|
|
620
|
+
"/api/v2/CrmService/Contacts/{contactId}/Wallet": {
|
|
83
621
|
get: {
|
|
84
622
|
parameters: {
|
|
85
623
|
query: {
|
|
86
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
87
624
|
tenantId: string;
|
|
88
625
|
"api-version"?: string;
|
|
89
626
|
};
|
|
627
|
+
header?: {
|
|
628
|
+
"x-api-version"?: string;
|
|
629
|
+
};
|
|
630
|
+
path: {
|
|
631
|
+
contactId: string;
|
|
632
|
+
};
|
|
90
633
|
};
|
|
91
634
|
responses: {
|
|
92
|
-
/** @description
|
|
635
|
+
/** @description OK */
|
|
93
636
|
200: {
|
|
94
637
|
content: {
|
|
95
|
-
"application/json": components["schemas"]["
|
|
96
|
-
"application/xml": components["schemas"]["
|
|
638
|
+
"application/json": components["schemas"]["WalletDtoEnvelope"];
|
|
639
|
+
"application/xml": components["schemas"]["WalletDtoEnvelope"];
|
|
97
640
|
};
|
|
98
641
|
};
|
|
99
642
|
/** @description Unauthorized */
|
|
@@ -110,28 +653,36 @@ export interface paths {
|
|
|
110
653
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
111
654
|
};
|
|
112
655
|
};
|
|
656
|
+
/** @description Not Found */
|
|
657
|
+
404: {
|
|
658
|
+
content: {
|
|
659
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
660
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
661
|
+
};
|
|
662
|
+
};
|
|
113
663
|
};
|
|
114
664
|
};
|
|
115
665
|
};
|
|
116
|
-
"/api/v2/CrmService/Contacts/
|
|
117
|
-
/** Get a Contact of type Individual by ID. */
|
|
666
|
+
"/api/v2/CrmService/Contacts/{contactId}/Profiles": {
|
|
118
667
|
get: {
|
|
119
668
|
parameters: {
|
|
120
669
|
query: {
|
|
121
|
-
/** @description The ID of the tenant to get the contact for */
|
|
122
670
|
tenantId: string;
|
|
123
671
|
"api-version"?: string;
|
|
124
672
|
};
|
|
673
|
+
header?: {
|
|
674
|
+
"x-api-version"?: string;
|
|
675
|
+
};
|
|
125
676
|
path: {
|
|
126
677
|
contactId: string;
|
|
127
678
|
};
|
|
128
679
|
};
|
|
129
680
|
responses: {
|
|
130
|
-
/** @description
|
|
681
|
+
/** @description OK */
|
|
131
682
|
200: {
|
|
132
683
|
content: {
|
|
133
|
-
"application/json": components["schemas"]["
|
|
134
|
-
"application/xml": components["schemas"]["
|
|
684
|
+
"application/json": components["schemas"]["ContactProfileDtoListEnvelope"];
|
|
685
|
+
"application/xml": components["schemas"]["ContactProfileDtoListEnvelope"];
|
|
135
686
|
};
|
|
136
687
|
};
|
|
137
688
|
/** @description Unauthorized */
|
|
@@ -158,22 +709,26 @@ export interface paths {
|
|
|
158
709
|
};
|
|
159
710
|
};
|
|
160
711
|
};
|
|
161
|
-
"/api/v2/CrmService/Contacts/
|
|
162
|
-
/** Get all contacts of type organization */
|
|
712
|
+
"/api/v2/CrmService/Contacts/{contactId}/SocialProfile": {
|
|
163
713
|
get: {
|
|
164
714
|
parameters: {
|
|
165
715
|
query: {
|
|
166
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
167
716
|
tenantId: string;
|
|
168
717
|
"api-version"?: string;
|
|
169
718
|
};
|
|
719
|
+
header?: {
|
|
720
|
+
"x-api-version"?: string;
|
|
721
|
+
};
|
|
722
|
+
path: {
|
|
723
|
+
contactId: string;
|
|
724
|
+
};
|
|
170
725
|
};
|
|
171
726
|
responses: {
|
|
172
|
-
/** @description
|
|
727
|
+
/** @description OK */
|
|
173
728
|
200: {
|
|
174
729
|
content: {
|
|
175
|
-
"application/json": components["schemas"]["
|
|
176
|
-
"application/xml": components["schemas"]["
|
|
730
|
+
"application/json": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
731
|
+
"application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
177
732
|
};
|
|
178
733
|
};
|
|
179
734
|
/** @description Unauthorized */
|
|
@@ -190,28 +745,36 @@ export interface paths {
|
|
|
190
745
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
191
746
|
};
|
|
192
747
|
};
|
|
748
|
+
/** @description Not Found */
|
|
749
|
+
404: {
|
|
750
|
+
content: {
|
|
751
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
752
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
753
|
+
};
|
|
754
|
+
};
|
|
193
755
|
};
|
|
194
756
|
};
|
|
195
757
|
};
|
|
196
|
-
"/api/v2/CrmService/Contacts/
|
|
197
|
-
/** Get a Contact of type Organization by ID. */
|
|
758
|
+
"/api/v2/CrmService/Contacts/Individuals/{contactId}/Organizations": {
|
|
198
759
|
get: {
|
|
199
760
|
parameters: {
|
|
200
761
|
query: {
|
|
201
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
202
762
|
tenantId: string;
|
|
203
763
|
"api-version"?: string;
|
|
204
764
|
};
|
|
765
|
+
header?: {
|
|
766
|
+
"x-api-version"?: string;
|
|
767
|
+
};
|
|
205
768
|
path: {
|
|
206
769
|
contactId: string;
|
|
207
770
|
};
|
|
208
771
|
};
|
|
209
772
|
responses: {
|
|
210
|
-
/** @description
|
|
773
|
+
/** @description OK */
|
|
211
774
|
200: {
|
|
212
775
|
content: {
|
|
213
|
-
"application/json": components["schemas"]["
|
|
214
|
-
"application/xml": components["schemas"]["
|
|
776
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
777
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
215
778
|
};
|
|
216
779
|
};
|
|
217
780
|
/** @description Unauthorized */
|
|
@@ -228,35 +791,29 @@ export interface paths {
|
|
|
228
791
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
229
792
|
};
|
|
230
793
|
};
|
|
231
|
-
/** @description Not Found */
|
|
232
|
-
404: {
|
|
233
|
-
content: {
|
|
234
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
235
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
236
|
-
};
|
|
237
|
-
};
|
|
238
794
|
};
|
|
239
795
|
};
|
|
240
796
|
};
|
|
241
|
-
"/api/v2/CrmService/Contacts/{contactId}/
|
|
242
|
-
/** Get a contact's cart */
|
|
797
|
+
"/api/v2/CrmService/Contacts/Individuals/{contactId}/Individuals": {
|
|
243
798
|
get: {
|
|
244
799
|
parameters: {
|
|
245
800
|
query: {
|
|
246
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
247
801
|
tenantId: string;
|
|
248
802
|
"api-version"?: string;
|
|
249
803
|
};
|
|
804
|
+
header?: {
|
|
805
|
+
"x-api-version"?: string;
|
|
806
|
+
};
|
|
250
807
|
path: {
|
|
251
808
|
contactId: string;
|
|
252
809
|
};
|
|
253
810
|
};
|
|
254
811
|
responses: {
|
|
255
|
-
/** @description
|
|
812
|
+
/** @description OK */
|
|
256
813
|
200: {
|
|
257
814
|
content: {
|
|
258
|
-
"application/json": components["schemas"]["
|
|
259
|
-
"application/xml": components["schemas"]["
|
|
815
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
816
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
260
817
|
};
|
|
261
818
|
};
|
|
262
819
|
/** @description Unauthorized */
|
|
@@ -273,35 +830,29 @@ export interface paths {
|
|
|
273
830
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
274
831
|
};
|
|
275
832
|
};
|
|
276
|
-
/** @description Not Found */
|
|
277
|
-
404: {
|
|
278
|
-
content: {
|
|
279
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
280
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
281
|
-
};
|
|
282
|
-
};
|
|
283
833
|
};
|
|
284
834
|
};
|
|
285
835
|
};
|
|
286
|
-
"/api/v2/CrmService/Contacts/{contactId}/
|
|
287
|
-
/** Get a contact's wallet */
|
|
836
|
+
"/api/v2/CrmService/Contacts/Organizations/{contactId}/Individuals": {
|
|
288
837
|
get: {
|
|
289
838
|
parameters: {
|
|
290
839
|
query: {
|
|
291
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
292
840
|
tenantId: string;
|
|
293
841
|
"api-version"?: string;
|
|
294
842
|
};
|
|
843
|
+
header?: {
|
|
844
|
+
"x-api-version"?: string;
|
|
845
|
+
};
|
|
295
846
|
path: {
|
|
296
847
|
contactId: string;
|
|
297
848
|
};
|
|
298
849
|
};
|
|
299
850
|
responses: {
|
|
300
|
-
/** @description
|
|
851
|
+
/** @description OK */
|
|
301
852
|
200: {
|
|
302
853
|
content: {
|
|
303
|
-
"application/json": components["schemas"]["
|
|
304
|
-
"application/xml": components["schemas"]["
|
|
854
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
855
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
305
856
|
};
|
|
306
857
|
};
|
|
307
858
|
/** @description Unauthorized */
|
|
@@ -318,35 +869,29 @@ export interface paths {
|
|
|
318
869
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
319
870
|
};
|
|
320
871
|
};
|
|
321
|
-
/** @description Not Found */
|
|
322
|
-
404: {
|
|
323
|
-
content: {
|
|
324
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
325
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
326
|
-
};
|
|
327
|
-
};
|
|
328
872
|
};
|
|
329
873
|
};
|
|
330
874
|
};
|
|
331
|
-
"/api/v2/CrmService/Contacts/{contactId}/
|
|
332
|
-
/** Get a contact's social profile */
|
|
875
|
+
"/api/v2/CrmService/Contacts/Organizations/{contactId}/Organizations": {
|
|
333
876
|
get: {
|
|
334
877
|
parameters: {
|
|
335
878
|
query: {
|
|
336
|
-
/** @description The ID of the tenant to get the contacts for */
|
|
337
879
|
tenantId: string;
|
|
338
880
|
"api-version"?: string;
|
|
339
881
|
};
|
|
882
|
+
header?: {
|
|
883
|
+
"x-api-version"?: string;
|
|
884
|
+
};
|
|
340
885
|
path: {
|
|
341
886
|
contactId: string;
|
|
342
887
|
};
|
|
343
888
|
};
|
|
344
889
|
responses: {
|
|
345
|
-
/** @description
|
|
890
|
+
/** @description OK */
|
|
346
891
|
200: {
|
|
347
892
|
content: {
|
|
348
|
-
"application/json": components["schemas"]["
|
|
349
|
-
"application/xml": components["schemas"]["
|
|
893
|
+
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
894
|
+
"application/xml": components["schemas"]["ContactDtoListEnvelope"];
|
|
350
895
|
};
|
|
351
896
|
};
|
|
352
897
|
/** @description Unauthorized */
|
|
@@ -363,30 +908,23 @@ export interface paths {
|
|
|
363
908
|
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
364
909
|
};
|
|
365
910
|
};
|
|
366
|
-
/** @description Not Found */
|
|
367
|
-
404: {
|
|
368
|
-
content: {
|
|
369
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
370
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
371
|
-
};
|
|
372
|
-
};
|
|
373
911
|
};
|
|
374
912
|
};
|
|
375
913
|
};
|
|
376
914
|
"/api/v2/CrmService/Contacts/Organizations/Upsert": {
|
|
377
|
-
/** Upsert a tenant onto another tenant's contact list */
|
|
378
915
|
post: {
|
|
379
916
|
parameters: {
|
|
380
917
|
query: {
|
|
381
|
-
/** @description The ID of the tenant to upsert the contact to */
|
|
382
918
|
tenantId: string;
|
|
383
|
-
/** @description The ID of the tenant to upsert */
|
|
384
919
|
relatedTenantId: string;
|
|
385
920
|
"api-version"?: string;
|
|
386
921
|
};
|
|
922
|
+
header?: {
|
|
923
|
+
"x-api-version"?: string;
|
|
924
|
+
};
|
|
387
925
|
};
|
|
388
926
|
responses: {
|
|
389
|
-
/** @description
|
|
927
|
+
/** @description OK */
|
|
390
928
|
200: {
|
|
391
929
|
content: {
|
|
392
930
|
"application/json": components["schemas"]["ContactDtoEnvelope"];
|
|
@@ -411,19 +949,19 @@ export interface paths {
|
|
|
411
949
|
};
|
|
412
950
|
};
|
|
413
951
|
"/api/v2/CrmService/Contacts/Individuals/Upsert": {
|
|
414
|
-
/** Upsert a user onto a tenant's contact list */
|
|
415
952
|
post: {
|
|
416
953
|
parameters: {
|
|
417
954
|
query: {
|
|
418
|
-
/** @description The ID of the tenant to upsert the contact to */
|
|
419
955
|
tenantId: string;
|
|
420
|
-
/** @description The ID of the user to upsert */
|
|
421
956
|
relatedUserId: string;
|
|
422
957
|
"api-version"?: string;
|
|
423
958
|
};
|
|
959
|
+
header?: {
|
|
960
|
+
"x-api-version"?: string;
|
|
961
|
+
};
|
|
424
962
|
};
|
|
425
963
|
responses: {
|
|
426
|
-
/** @description
|
|
964
|
+
/** @description OK */
|
|
427
965
|
200: {
|
|
428
966
|
content: {
|
|
429
967
|
"application/json": components["schemas"]["ContactDtoEnvelope"];
|
|
@@ -448,17 +986,18 @@ export interface paths {
|
|
|
448
986
|
};
|
|
449
987
|
};
|
|
450
988
|
"/api/v2/CrmService/Sync": {
|
|
451
|
-
/** Sync the current user into a tenant's contact list. */
|
|
452
989
|
post: {
|
|
453
990
|
parameters: {
|
|
454
|
-
query
|
|
455
|
-
|
|
456
|
-
tenantId?: string;
|
|
991
|
+
query: {
|
|
992
|
+
tenantId: string;
|
|
457
993
|
"api-version"?: string;
|
|
458
994
|
};
|
|
995
|
+
header?: {
|
|
996
|
+
"x-api-version"?: string;
|
|
997
|
+
};
|
|
459
998
|
};
|
|
460
999
|
responses: {
|
|
461
|
-
/** @description
|
|
1000
|
+
/** @description OK */
|
|
462
1001
|
200: {
|
|
463
1002
|
content: {
|
|
464
1003
|
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
@@ -483,17 +1022,18 @@ export interface paths {
|
|
|
483
1022
|
};
|
|
484
1023
|
};
|
|
485
1024
|
"/api/v2/CrmService/Sync/Me": {
|
|
486
|
-
/** Sync the user into a tenant's contact list. */
|
|
487
1025
|
post: {
|
|
488
1026
|
parameters: {
|
|
489
1027
|
query: {
|
|
490
|
-
/** @description The id of the record owner tenant. */
|
|
491
1028
|
tenantId: string;
|
|
492
1029
|
"api-version"?: string;
|
|
493
1030
|
};
|
|
1031
|
+
header?: {
|
|
1032
|
+
"x-api-version"?: string;
|
|
1033
|
+
};
|
|
494
1034
|
};
|
|
495
1035
|
responses: {
|
|
496
|
-
/** @description
|
|
1036
|
+
/** @description OK */
|
|
497
1037
|
200: {
|
|
498
1038
|
content: {
|
|
499
1039
|
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
@@ -518,19 +1058,19 @@ export interface paths {
|
|
|
518
1058
|
};
|
|
519
1059
|
};
|
|
520
1060
|
"/api/v2/CrmService/Sync/User": {
|
|
521
|
-
/** Sync a user into a tenant's contact list. */
|
|
522
1061
|
post: {
|
|
523
1062
|
parameters: {
|
|
524
1063
|
query: {
|
|
525
|
-
/** @description The id of the record owner tenant. */
|
|
526
1064
|
tenantId: string;
|
|
527
|
-
/** @description The id of the user to sync against the owner tenant's contact list. */
|
|
528
1065
|
relatedUserId: string;
|
|
529
1066
|
"api-version"?: string;
|
|
530
1067
|
};
|
|
1068
|
+
header?: {
|
|
1069
|
+
"x-api-version"?: string;
|
|
1070
|
+
};
|
|
531
1071
|
};
|
|
532
1072
|
responses: {
|
|
533
|
-
/** @description
|
|
1073
|
+
/** @description OK */
|
|
534
1074
|
200: {
|
|
535
1075
|
content: {
|
|
536
1076
|
"application/json": components["schemas"]["ContactDtoListEnvelope"];
|
|
@@ -555,19 +1095,19 @@ export interface paths {
|
|
|
555
1095
|
};
|
|
556
1096
|
};
|
|
557
1097
|
"/api/v2/CrmService/Sync/Tenant": {
|
|
558
|
-
/** Sync a tenant into another tenant's contact list. */
|
|
559
1098
|
post: {
|
|
560
1099
|
parameters: {
|
|
561
1100
|
query: {
|
|
562
|
-
/** @description The id of the record owner tenant. */
|
|
563
1101
|
tenantId: string;
|
|
564
|
-
/** @description The id of the tenant to sync against the owner tenant's contact list. */
|
|
565
1102
|
relatedTenantId: string;
|
|
566
1103
|
"api-version"?: string;
|
|
567
1104
|
};
|
|
1105
|
+
header?: {
|
|
1106
|
+
"x-api-version"?: string;
|
|
1107
|
+
};
|
|
568
1108
|
};
|
|
569
1109
|
responses: {
|
|
570
|
-
/** @description
|
|
1110
|
+
/** @description OK */
|
|
571
1111
|
200: {
|
|
572
1112
|
content: {
|
|
573
1113
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
@@ -617,98 +1157,273 @@ export interface components {
|
|
|
617
1157
|
itemToCompareRecordsCount?: number | null;
|
|
618
1158
|
};
|
|
619
1159
|
CartDtoEnvelope: {
|
|
620
|
-
errorMessage?: string | null;
|
|
621
1160
|
isSuccess?: boolean;
|
|
1161
|
+
errorMessage?: string | null;
|
|
1162
|
+
correlationId?: string | null;
|
|
622
1163
|
/** Format: date-time */
|
|
623
1164
|
timestamp?: string;
|
|
624
1165
|
activityId?: string | null;
|
|
625
|
-
correlationId?: string | null;
|
|
626
1166
|
result?: components["schemas"]["CartDto"];
|
|
627
1167
|
};
|
|
628
|
-
|
|
629
|
-
|
|
1168
|
+
ContactCreateDto: {
|
|
1169
|
+
/** Format: uuid */
|
|
1170
|
+
id?: string;
|
|
630
1171
|
/** Format: date-time */
|
|
631
|
-
timestamp?: string
|
|
1172
|
+
timestamp?: string;
|
|
1173
|
+
tenantId: string;
|
|
632
1174
|
/**
|
|
633
1175
|
* Format: int32
|
|
634
1176
|
* @enum {integer}
|
|
635
1177
|
*/
|
|
636
|
-
type
|
|
637
|
-
|
|
638
|
-
firstName?: string | null;
|
|
1178
|
+
type: 0 | 1;
|
|
1179
|
+
firstName: string;
|
|
639
1180
|
lastName?: string | null;
|
|
1181
|
+
/** Format: email */
|
|
1182
|
+
email: string;
|
|
1183
|
+
taxId?: string | null;
|
|
640
1184
|
primaryContactId?: string | null;
|
|
641
1185
|
qualifiedName?: string | null;
|
|
642
|
-
email?: string | null;
|
|
643
1186
|
about?: string | null;
|
|
1187
|
+
countryId?: string | null;
|
|
1188
|
+
stateId?: string | null;
|
|
1189
|
+
cityId?: string | null;
|
|
1190
|
+
/** Format: tel */
|
|
644
1191
|
mobilePhone?: string | null;
|
|
1192
|
+
/** Format: tel */
|
|
645
1193
|
businessPhone?: string | null;
|
|
646
|
-
|
|
1194
|
+
postalCode?: string | null;
|
|
1195
|
+
duns?: string | null;
|
|
647
1196
|
jobTitle?: string | null;
|
|
648
|
-
|
|
649
|
-
|
|
1197
|
+
webUrl?: string | null;
|
|
1198
|
+
currencyId?: string | null;
|
|
1199
|
+
languageId?: string | null;
|
|
1200
|
+
timezoneId?: string | null;
|
|
1201
|
+
/** Format: date-time */
|
|
1202
|
+
birthday?: string | null;
|
|
1203
|
+
streetLine1?: string | null;
|
|
1204
|
+
streetLine2?: string | null;
|
|
1205
|
+
gitHubUrl?: string | null;
|
|
1206
|
+
twitchUrl?: string | null;
|
|
1207
|
+
redditUrl?: string | null;
|
|
1208
|
+
tikTokUrl?: string | null;
|
|
650
1209
|
websiteUrl?: string | null;
|
|
1210
|
+
twitterUrl?: string | null;
|
|
651
1211
|
facebookUrl?: string | null;
|
|
1212
|
+
youTubeUrl?: string | null;
|
|
1213
|
+
linkedInUrl?: string | null;
|
|
1214
|
+
instagramUrl?: string | null;
|
|
1215
|
+
githubUsername?: string | null;
|
|
1216
|
+
instagramUsername?: unknown;
|
|
1217
|
+
tikTokUsername?: unknown;
|
|
1218
|
+
stackExchangeUrl?: unknown;
|
|
1219
|
+
stackOverflowUrl?: unknown;
|
|
1220
|
+
parentContactId?: unknown;
|
|
1221
|
+
};
|
|
1222
|
+
ContactDto: {
|
|
1223
|
+
id?: string | null;
|
|
1224
|
+
/** Format: date-time */
|
|
1225
|
+
timestamp?: string | null;
|
|
1226
|
+
qualifiedName?: string | null;
|
|
1227
|
+
tenantId?: string | null;
|
|
1228
|
+
/**
|
|
1229
|
+
* Format: int32
|
|
1230
|
+
* @enum {integer}
|
|
1231
|
+
*/
|
|
1232
|
+
type?: 0 | 1;
|
|
1233
|
+
publicName?: string | null;
|
|
1234
|
+
firstName?: string | null;
|
|
1235
|
+
lastName?: string | null;
|
|
1236
|
+
jobTitle?: string | null;
|
|
1237
|
+
coverUrl?: string | null;
|
|
1238
|
+
avatarUrl?: string | null;
|
|
1239
|
+
countryId?: string | null;
|
|
1240
|
+
timezoneId?: string | null;
|
|
1241
|
+
languageId?: string | null;
|
|
1242
|
+
socialProfileId?: string | null;
|
|
1243
|
+
webUrl?: string | null;
|
|
1244
|
+
gitHubUrl?: string | null;
|
|
1245
|
+
twitchUrl?: string | null;
|
|
1246
|
+
redditUrl?: string | null;
|
|
1247
|
+
tikTokUrl?: string | null;
|
|
1248
|
+
websiteUrl?: string | null;
|
|
652
1249
|
twitterUrl?: string | null;
|
|
653
|
-
|
|
1250
|
+
facebookUrl?: string | null;
|
|
1251
|
+
youTubeUrl?: string | null;
|
|
654
1252
|
linkedInUrl?: string | null;
|
|
1253
|
+
instagramUrl?: string | null;
|
|
655
1254
|
githubUsername?: string | null;
|
|
1255
|
+
duns?: string | null;
|
|
1256
|
+
taxId?: string | null;
|
|
1257
|
+
/** Format: email */
|
|
1258
|
+
email?: string | null;
|
|
1259
|
+
about?: string | null;
|
|
656
1260
|
street?: string | null;
|
|
657
|
-
zipCode?: string | null;
|
|
658
1261
|
cartId?: string | null;
|
|
659
|
-
walletId?: string | null;
|
|
660
1262
|
cityId?: string | null;
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
1263
|
+
zipCode?: string | null;
|
|
1264
|
+
stateId?: string | null;
|
|
1265
|
+
walletId?: string | null;
|
|
1266
|
+
faxNumber?: string | null;
|
|
1267
|
+
postalCode?: string | null;
|
|
664
1268
|
currencyId?: string | null;
|
|
665
|
-
|
|
1269
|
+
streetLine1?: string | null;
|
|
1270
|
+
streetLine2?: string | null;
|
|
666
1271
|
territoryId?: string | null;
|
|
1272
|
+
mobilePhone?: string | null;
|
|
667
1273
|
enrollmentId?: string | null;
|
|
668
|
-
|
|
669
|
-
|
|
1274
|
+
annualRevenue?: string | null;
|
|
1275
|
+
relatedUserId?: string | null;
|
|
1276
|
+
businessPhone?: string | null;
|
|
670
1277
|
ownerContactId?: string | null;
|
|
671
|
-
ownerTenantId?: string | null;
|
|
672
1278
|
relatedTenantId?: string | null;
|
|
673
1279
|
activityFeedId?: string | null;
|
|
674
1280
|
parentContactId?: string | null;
|
|
675
|
-
socialProfileId?: string | null;
|
|
676
|
-
activeDirectoryId?: string | null;
|
|
677
1281
|
identityProvider?: string | null;
|
|
1282
|
+
partnerProfileId?: string | null;
|
|
1283
|
+
primaryContactId?: string | null;
|
|
1284
|
+
activeDirectoryId?: string | null;
|
|
678
1285
|
identityProviderAccessToken?: string | null;
|
|
1286
|
+
/** Format: date-time */
|
|
1287
|
+
birthday?: string | null;
|
|
679
1288
|
};
|
|
680
1289
|
ContactDtoEnvelope: {
|
|
681
|
-
errorMessage?: string | null;
|
|
682
1290
|
isSuccess?: boolean;
|
|
1291
|
+
errorMessage?: string | null;
|
|
1292
|
+
correlationId?: string | null;
|
|
683
1293
|
/** Format: date-time */
|
|
684
1294
|
timestamp?: string;
|
|
685
1295
|
activityId?: string | null;
|
|
686
|
-
correlationId?: string | null;
|
|
687
1296
|
result?: components["schemas"]["ContactDto"];
|
|
688
1297
|
};
|
|
689
1298
|
ContactDtoListEnvelope: {
|
|
690
|
-
errorMessage?: string | null;
|
|
691
1299
|
isSuccess?: boolean;
|
|
1300
|
+
errorMessage?: string | null;
|
|
1301
|
+
correlationId?: string | null;
|
|
692
1302
|
/** Format: date-time */
|
|
693
1303
|
timestamp?: string;
|
|
694
1304
|
activityId?: string | null;
|
|
695
|
-
correlationId?: string | null;
|
|
696
1305
|
result?: components["schemas"]["ContactDto"][] | null;
|
|
697
1306
|
};
|
|
698
|
-
|
|
1307
|
+
ContactProfileDto: {
|
|
1308
|
+
id?: string | null;
|
|
1309
|
+
/** Format: date-time */
|
|
1310
|
+
timestamp?: string;
|
|
1311
|
+
tenantId?: string | null;
|
|
1312
|
+
contactId?: string | null;
|
|
1313
|
+
enrollmentId?: string | null;
|
|
1314
|
+
about?: string | null;
|
|
1315
|
+
verified?: boolean;
|
|
1316
|
+
submitted?: boolean;
|
|
1317
|
+
avatarUrl?: string | null;
|
|
1318
|
+
qualifiedName?: string | null;
|
|
1319
|
+
/** Format: date-time */
|
|
1320
|
+
verificationTimestamp?: string | null;
|
|
1321
|
+
data?: string | null;
|
|
1322
|
+
dataLabel?: string | null;
|
|
1323
|
+
data1?: string | null;
|
|
1324
|
+
data1Label?: string | null;
|
|
1325
|
+
data2?: string | null;
|
|
1326
|
+
data2Label?: string | null;
|
|
1327
|
+
data3?: string | null;
|
|
1328
|
+
data3Label?: string | null;
|
|
1329
|
+
data4?: string | null;
|
|
1330
|
+
data4Label?: string | null;
|
|
1331
|
+
data5?: string | null;
|
|
1332
|
+
data5Label?: string | null;
|
|
1333
|
+
data6?: string | null;
|
|
1334
|
+
data6Label?: string | null;
|
|
1335
|
+
data7?: string | null;
|
|
1336
|
+
data7Label?: string | null;
|
|
1337
|
+
data8?: string | null;
|
|
1338
|
+
data8Label?: string | null;
|
|
1339
|
+
data9?: string | null;
|
|
1340
|
+
data9Label?: string | null;
|
|
1341
|
+
};
|
|
1342
|
+
ContactProfileDtoListEnvelope: {
|
|
1343
|
+
isSuccess?: boolean;
|
|
699
1344
|
errorMessage?: string | null;
|
|
1345
|
+
correlationId?: string | null;
|
|
1346
|
+
/** Format: date-time */
|
|
1347
|
+
timestamp?: string;
|
|
1348
|
+
activityId?: string | null;
|
|
1349
|
+
result?: components["schemas"]["ContactProfileDto"][] | null;
|
|
1350
|
+
};
|
|
1351
|
+
ContactUpdateDto: {
|
|
1352
|
+
/**
|
|
1353
|
+
* Format: int32
|
|
1354
|
+
* @enum {integer}
|
|
1355
|
+
*/
|
|
1356
|
+
type: 0 | 1;
|
|
1357
|
+
/** Format: date-time */
|
|
1358
|
+
birthday?: string | null;
|
|
1359
|
+
duns?: string | null;
|
|
1360
|
+
taxId?: string | null;
|
|
1361
|
+
/** Format: email */
|
|
1362
|
+
email: string;
|
|
1363
|
+
firstName: string;
|
|
1364
|
+
lastName?: string | null;
|
|
1365
|
+
primaryContactId?: string | null;
|
|
1366
|
+
qualifiedName?: string | null;
|
|
1367
|
+
about?: string | null;
|
|
1368
|
+
/** Format: tel */
|
|
1369
|
+
mobilePhone?: string | null;
|
|
1370
|
+
/** Format: tel */
|
|
1371
|
+
businessPhone?: string | null;
|
|
1372
|
+
jobTitle?: string | null;
|
|
1373
|
+
countryId?: string | null;
|
|
1374
|
+
parentContactId?: string | null;
|
|
1375
|
+
stateId?: string | null;
|
|
1376
|
+
cityId?: string | null;
|
|
1377
|
+
postalCode?: string | null;
|
|
1378
|
+
streetLine1?: string | null;
|
|
1379
|
+
streetLine2?: string | null;
|
|
1380
|
+
currencyId?: string | null;
|
|
1381
|
+
languageId?: string | null;
|
|
1382
|
+
timezoneId?: string | null;
|
|
1383
|
+
coverUrl?: string | null;
|
|
1384
|
+
githubUsername?: string | null;
|
|
1385
|
+
instagramUsername?: string | null;
|
|
1386
|
+
twitchUrl?: string | null;
|
|
1387
|
+
redditUrl?: string | null;
|
|
1388
|
+
gitHubUrl?: string | null;
|
|
1389
|
+
githubUrl?: string | null;
|
|
1390
|
+
tikTokUrl?: string | null;
|
|
1391
|
+
twitterUrl?: string | null;
|
|
1392
|
+
youTubeUrl?: string | null;
|
|
1393
|
+
websiteUrl?: string | null;
|
|
1394
|
+
facebookUrl?: string | null;
|
|
1395
|
+
linkedInUrl?: string | null;
|
|
1396
|
+
instagramUrl?: string | null;
|
|
1397
|
+
tikTokUsername?: string | null;
|
|
1398
|
+
stackExchangeUrl?: string | null;
|
|
1399
|
+
stackOverflowUrl?: string | null;
|
|
1400
|
+
};
|
|
1401
|
+
EmptyEnvelope: {
|
|
700
1402
|
isSuccess?: boolean;
|
|
1403
|
+
errorMessage?: string | null;
|
|
1404
|
+
correlationId?: string | null;
|
|
701
1405
|
/** Format: date-time */
|
|
702
1406
|
timestamp?: string;
|
|
703
1407
|
activityId?: string | null;
|
|
704
1408
|
};
|
|
705
1409
|
ErrorEnvelope: {
|
|
706
|
-
errorMessage?: string | null;
|
|
707
1410
|
isSuccess?: boolean;
|
|
1411
|
+
errorMessage?: string | null;
|
|
1412
|
+
correlationId?: string | null;
|
|
708
1413
|
/** Format: date-time */
|
|
709
1414
|
timestamp?: string;
|
|
710
1415
|
activityId?: string | null;
|
|
711
|
-
|
|
1416
|
+
};
|
|
1417
|
+
Operation: {
|
|
1418
|
+
/**
|
|
1419
|
+
* Format: int32
|
|
1420
|
+
* @enum {integer}
|
|
1421
|
+
*/
|
|
1422
|
+
operationType?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
1423
|
+
path?: string | null;
|
|
1424
|
+
op?: string | null;
|
|
1425
|
+
from?: string | null;
|
|
1426
|
+
value?: unknown;
|
|
712
1427
|
};
|
|
713
1428
|
SocialProfileDto: {
|
|
714
1429
|
id?: string | null;
|
|
@@ -748,12 +1463,12 @@ export interface components {
|
|
|
748
1463
|
notes?: string | null;
|
|
749
1464
|
};
|
|
750
1465
|
SocialProfileDtoEnvelope: {
|
|
751
|
-
errorMessage?: string | null;
|
|
752
1466
|
isSuccess?: boolean;
|
|
1467
|
+
errorMessage?: string | null;
|
|
1468
|
+
correlationId?: string | null;
|
|
753
1469
|
/** Format: date-time */
|
|
754
1470
|
timestamp?: string;
|
|
755
1471
|
activityId?: string | null;
|
|
756
|
-
correlationId?: string | null;
|
|
757
1472
|
result?: components["schemas"]["SocialProfileDto"];
|
|
758
1473
|
};
|
|
759
1474
|
WalletDto: {
|
|
@@ -781,12 +1496,12 @@ export interface components {
|
|
|
781
1496
|
rollingReservePercent?: number;
|
|
782
1497
|
};
|
|
783
1498
|
WalletDtoEnvelope: {
|
|
784
|
-
errorMessage?: string | null;
|
|
785
1499
|
isSuccess?: boolean;
|
|
1500
|
+
errorMessage?: string | null;
|
|
1501
|
+
correlationId?: string | null;
|
|
786
1502
|
/** Format: date-time */
|
|
787
1503
|
timestamp?: string;
|
|
788
1504
|
activityId?: string | null;
|
|
789
|
-
correlationId?: string | null;
|
|
790
1505
|
result?: components["schemas"]["WalletDto"];
|
|
791
1506
|
};
|
|
792
1507
|
};
|
|
@@ -801,4 +1516,43 @@ export type $defs = Record<string, never>;
|
|
|
801
1516
|
|
|
802
1517
|
export type external = Record<string, never>;
|
|
803
1518
|
|
|
804
|
-
export
|
|
1519
|
+
export interface operations {
|
|
1520
|
+
|
|
1521
|
+
GetContactAvatarAsync: {
|
|
1522
|
+
parameters: {
|
|
1523
|
+
query: {
|
|
1524
|
+
tenantId: string;
|
|
1525
|
+
"api-version"?: string;
|
|
1526
|
+
};
|
|
1527
|
+
header?: {
|
|
1528
|
+
"x-api-version"?: string;
|
|
1529
|
+
};
|
|
1530
|
+
path: {
|
|
1531
|
+
contactId: string;
|
|
1532
|
+
};
|
|
1533
|
+
};
|
|
1534
|
+
responses: {
|
|
1535
|
+
/** @description OK */
|
|
1536
|
+
200: {
|
|
1537
|
+
content: {
|
|
1538
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1539
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1540
|
+
};
|
|
1541
|
+
};
|
|
1542
|
+
/** @description Unauthorized */
|
|
1543
|
+
401: {
|
|
1544
|
+
content: {
|
|
1545
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1546
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1547
|
+
};
|
|
1548
|
+
};
|
|
1549
|
+
/** @description Forbidden */
|
|
1550
|
+
403: {
|
|
1551
|
+
content: {
|
|
1552
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1553
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1554
|
+
};
|
|
1555
|
+
};
|
|
1556
|
+
};
|
|
1557
|
+
};
|
|
1558
|
+
}
|