@fenixalliance/abs-api-client 1.0.2 → 1.0.3
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 +4 -3
- 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/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
|
@@ -3,21 +3,35 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
import type { EmptyEnvelope } from '../models/EmptyEnvelope';
|
|
6
|
+
import type { ExtendedInvoiceDtoListEnvelope } from '../models/ExtendedInvoiceDtoListEnvelope';
|
|
7
|
+
import type { Int32Envelope } from '../models/Int32Envelope';
|
|
8
|
+
import type { InvoiceAdjustmentCreateDto } from '../models/InvoiceAdjustmentCreateDto';
|
|
9
|
+
import type { InvoiceAdjustmentDtoEnvelope } from '../models/InvoiceAdjustmentDtoEnvelope';
|
|
10
|
+
import type { InvoiceAdjustmentDtoListEnvelope } from '../models/InvoiceAdjustmentDtoListEnvelope';
|
|
11
|
+
import type { InvoiceAdjustmentUpdateDto } from '../models/InvoiceAdjustmentUpdateDto';
|
|
6
12
|
import type { InvoiceCreateDto } from '../models/InvoiceCreateDto';
|
|
7
13
|
import type { InvoiceDtoEnvelope } from '../models/InvoiceDtoEnvelope';
|
|
8
14
|
import type { InvoiceDtoListEnvelope } from '../models/InvoiceDtoListEnvelope';
|
|
15
|
+
import type { InvoiceLineAppliedTaxCreateDto } from '../models/InvoiceLineAppliedTaxCreateDto';
|
|
16
|
+
import type { InvoiceLineAppliedTaxDtoListEnvelope } from '../models/InvoiceLineAppliedTaxDtoListEnvelope';
|
|
17
|
+
import type { InvoiceLineAppliedTaxUpdateDto } from '../models/InvoiceLineAppliedTaxUpdateDto';
|
|
18
|
+
import type { InvoiceLineCreateDto } from '../models/InvoiceLineCreateDto';
|
|
9
19
|
import type { InvoiceLineDtoEnvelope } from '../models/InvoiceLineDtoEnvelope';
|
|
10
20
|
import type { InvoiceLineDtoListEnvelope } from '../models/InvoiceLineDtoListEnvelope';
|
|
21
|
+
import type { InvoiceLineUpdateDto } from '../models/InvoiceLineUpdateDto';
|
|
22
|
+
import type { InvoiceReferenceCreateDto } from '../models/InvoiceReferenceCreateDto';
|
|
23
|
+
import type { InvoiceReferenceDtoEnvelope } from '../models/InvoiceReferenceDtoEnvelope';
|
|
24
|
+
import type { InvoiceReferenceDtoListEnvelope } from '../models/InvoiceReferenceDtoListEnvelope';
|
|
25
|
+
import type { InvoiceReferenceUpdateDto } from '../models/InvoiceReferenceUpdateDto';
|
|
11
26
|
import type { InvoiceUpdateDto } from '../models/InvoiceUpdateDto';
|
|
12
|
-
import type {
|
|
13
|
-
import type { ItemPriceUpdateDto } from '../models/ItemPriceUpdateDto';
|
|
27
|
+
import type { MoneyEnvelope } from '../models/MoneyEnvelope';
|
|
14
28
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
15
29
|
import { OpenAPI } from '../core/OpenAPI';
|
|
16
30
|
import { request as __request } from '../core/request';
|
|
17
31
|
export class InvoicesService {
|
|
18
32
|
/**
|
|
19
33
|
* @param tenantId
|
|
20
|
-
* @returns InvoiceDtoListEnvelope
|
|
34
|
+
* @returns InvoiceDtoListEnvelope OK
|
|
21
35
|
* @throws ApiError
|
|
22
36
|
*/
|
|
23
37
|
public static getApiV2InvoicingServiceInvoices(
|
|
@@ -37,7 +51,7 @@ export class InvoicesService {
|
|
|
37
51
|
/**
|
|
38
52
|
* @param tenantId
|
|
39
53
|
* @param requestBody
|
|
40
|
-
* @returns EmptyEnvelope
|
|
54
|
+
* @returns EmptyEnvelope OK
|
|
41
55
|
* @throws ApiError
|
|
42
56
|
*/
|
|
43
57
|
public static postApiV2InvoicingServiceInvoices(
|
|
@@ -57,13 +71,94 @@ export class InvoicesService {
|
|
|
57
71
|
},
|
|
58
72
|
});
|
|
59
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* @param tenantId
|
|
76
|
+
* @returns Int32Envelope OK
|
|
77
|
+
* @throws ApiError
|
|
78
|
+
*/
|
|
79
|
+
public static getApiV2InvoicingServiceInvoicesCount(
|
|
80
|
+
tenantId: string,
|
|
81
|
+
): CancelablePromise<Int32Envelope> {
|
|
82
|
+
return __request(OpenAPI, {
|
|
83
|
+
method: 'GET',
|
|
84
|
+
url: '/api/v2/InvoicingService/Invoices/Count',
|
|
85
|
+
query: {
|
|
86
|
+
'tenantId': tenantId,
|
|
87
|
+
},
|
|
88
|
+
errors: {
|
|
89
|
+
404: `Not Found`,
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @param tenantId
|
|
95
|
+
* @returns ExtendedInvoiceDtoListEnvelope OK
|
|
96
|
+
* @throws ApiError
|
|
97
|
+
*/
|
|
98
|
+
public static getApiV2InvoicingServiceInvoicesExtended(
|
|
99
|
+
tenantId: string,
|
|
100
|
+
): CancelablePromise<ExtendedInvoiceDtoListEnvelope> {
|
|
101
|
+
return __request(OpenAPI, {
|
|
102
|
+
method: 'GET',
|
|
103
|
+
url: '/api/v2/InvoicingService/Invoices/Extended',
|
|
104
|
+
query: {
|
|
105
|
+
'tenantId': tenantId,
|
|
106
|
+
},
|
|
107
|
+
errors: {
|
|
108
|
+
404: `Not Found`,
|
|
109
|
+
},
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* @param tenantId
|
|
114
|
+
* @returns Int32Envelope OK
|
|
115
|
+
* @throws ApiError
|
|
116
|
+
*/
|
|
117
|
+
public static getApiV2InvoicingServiceInvoicesExtendedCount(
|
|
118
|
+
tenantId: string,
|
|
119
|
+
): CancelablePromise<Int32Envelope> {
|
|
120
|
+
return __request(OpenAPI, {
|
|
121
|
+
method: 'GET',
|
|
122
|
+
url: '/api/v2/InvoicingService/Invoices/Extended/Count',
|
|
123
|
+
query: {
|
|
124
|
+
'tenantId': tenantId,
|
|
125
|
+
},
|
|
126
|
+
errors: {
|
|
127
|
+
404: `Not Found`,
|
|
128
|
+
},
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* @param tenantId
|
|
133
|
+
* @param invoiceId
|
|
134
|
+
* @returns InvoiceDtoEnvelope OK
|
|
135
|
+
* @throws ApiError
|
|
136
|
+
*/
|
|
137
|
+
public static getApiV2InvoicingServiceInvoicesExtended1(
|
|
138
|
+
tenantId: string,
|
|
139
|
+
invoiceId: string,
|
|
140
|
+
): CancelablePromise<InvoiceDtoEnvelope> {
|
|
141
|
+
return __request(OpenAPI, {
|
|
142
|
+
method: 'GET',
|
|
143
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Extended',
|
|
144
|
+
path: {
|
|
145
|
+
'invoiceId': invoiceId,
|
|
146
|
+
},
|
|
147
|
+
query: {
|
|
148
|
+
'tenantId': tenantId,
|
|
149
|
+
},
|
|
150
|
+
errors: {
|
|
151
|
+
404: `Not Found`,
|
|
152
|
+
},
|
|
153
|
+
});
|
|
154
|
+
}
|
|
60
155
|
/**
|
|
61
156
|
* @param tenantId
|
|
62
157
|
* @param invoiceId
|
|
63
|
-
* @returns InvoiceDtoEnvelope
|
|
158
|
+
* @returns InvoiceDtoEnvelope OK
|
|
64
159
|
* @throws ApiError
|
|
65
160
|
*/
|
|
66
|
-
public static
|
|
161
|
+
public static getInvoiceAsync(
|
|
67
162
|
tenantId: string,
|
|
68
163
|
invoiceId: string,
|
|
69
164
|
): CancelablePromise<InvoiceDtoEnvelope> {
|
|
@@ -85,7 +180,7 @@ export class InvoicesService {
|
|
|
85
180
|
* @param tenantId
|
|
86
181
|
* @param invoiceId
|
|
87
182
|
* @param requestBody
|
|
88
|
-
* @returns EmptyEnvelope
|
|
183
|
+
* @returns EmptyEnvelope OK
|
|
89
184
|
* @throws ApiError
|
|
90
185
|
*/
|
|
91
186
|
public static putApiV2InvoicingServiceInvoices(
|
|
@@ -112,7 +207,7 @@ export class InvoicesService {
|
|
|
112
207
|
/**
|
|
113
208
|
* @param tenantId
|
|
114
209
|
* @param invoiceId
|
|
115
|
-
* @returns EmptyEnvelope
|
|
210
|
+
* @returns EmptyEnvelope OK
|
|
116
211
|
* @throws ApiError
|
|
117
212
|
*/
|
|
118
213
|
public static deleteApiV2InvoicingServiceInvoices(
|
|
@@ -133,11 +228,35 @@ export class InvoicesService {
|
|
|
133
228
|
},
|
|
134
229
|
});
|
|
135
230
|
}
|
|
231
|
+
/**
|
|
232
|
+
* @param tenantId
|
|
233
|
+
* @param invoiceId
|
|
234
|
+
* @returns EmptyEnvelope OK
|
|
235
|
+
* @throws ApiError
|
|
236
|
+
*/
|
|
237
|
+
public static putApiV2InvoicingServiceInvoicesCalculate(
|
|
238
|
+
tenantId: string,
|
|
239
|
+
invoiceId: string,
|
|
240
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
241
|
+
return __request(OpenAPI, {
|
|
242
|
+
method: 'PUT',
|
|
243
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Calculate',
|
|
244
|
+
path: {
|
|
245
|
+
'invoiceId': invoiceId,
|
|
246
|
+
},
|
|
247
|
+
query: {
|
|
248
|
+
'tenantId': tenantId,
|
|
249
|
+
},
|
|
250
|
+
errors: {
|
|
251
|
+
404: `Not Found`,
|
|
252
|
+
},
|
|
253
|
+
});
|
|
254
|
+
}
|
|
136
255
|
/**
|
|
137
256
|
* @param tenantId
|
|
138
257
|
* @param invoiceId
|
|
139
258
|
* @param itemId
|
|
140
|
-
* @returns InvoiceLineDtoListEnvelope
|
|
259
|
+
* @returns InvoiceLineDtoListEnvelope OK
|
|
141
260
|
* @throws ApiError
|
|
142
261
|
*/
|
|
143
262
|
public static getApiV2InvoicingServiceInvoicesLines(
|
|
@@ -164,13 +283,13 @@ export class InvoicesService {
|
|
|
164
283
|
* @param tenantId
|
|
165
284
|
* @param invoiceId
|
|
166
285
|
* @param requestBody
|
|
167
|
-
* @returns EmptyEnvelope
|
|
286
|
+
* @returns EmptyEnvelope OK
|
|
168
287
|
* @throws ApiError
|
|
169
288
|
*/
|
|
170
289
|
public static postApiV2InvoicingServiceInvoicesLines(
|
|
171
290
|
tenantId: string,
|
|
172
291
|
invoiceId: string,
|
|
173
|
-
requestBody?:
|
|
292
|
+
requestBody?: InvoiceLineCreateDto,
|
|
174
293
|
): CancelablePromise<EmptyEnvelope> {
|
|
175
294
|
return __request(OpenAPI, {
|
|
176
295
|
method: 'POST',
|
|
@@ -188,11 +307,35 @@ export class InvoicesService {
|
|
|
188
307
|
},
|
|
189
308
|
});
|
|
190
309
|
}
|
|
310
|
+
/**
|
|
311
|
+
* @param tenantId
|
|
312
|
+
* @param invoiceId
|
|
313
|
+
* @returns Int32Envelope OK
|
|
314
|
+
* @throws ApiError
|
|
315
|
+
*/
|
|
316
|
+
public static getApiV2InvoicingServiceInvoicesLinesCount(
|
|
317
|
+
tenantId: string,
|
|
318
|
+
invoiceId: string,
|
|
319
|
+
): CancelablePromise<Int32Envelope> {
|
|
320
|
+
return __request(OpenAPI, {
|
|
321
|
+
method: 'GET',
|
|
322
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/Count',
|
|
323
|
+
path: {
|
|
324
|
+
'invoiceId': invoiceId,
|
|
325
|
+
},
|
|
326
|
+
query: {
|
|
327
|
+
'tenantId': tenantId,
|
|
328
|
+
},
|
|
329
|
+
errors: {
|
|
330
|
+
404: `Not Found`,
|
|
331
|
+
},
|
|
332
|
+
});
|
|
333
|
+
}
|
|
191
334
|
/**
|
|
192
335
|
* @param tenantId
|
|
193
336
|
* @param invoiceId
|
|
194
337
|
* @param invoiceLineId
|
|
195
|
-
* @returns InvoiceLineDtoEnvelope
|
|
338
|
+
* @returns InvoiceLineDtoEnvelope OK
|
|
196
339
|
* @throws ApiError
|
|
197
340
|
*/
|
|
198
341
|
public static getApiV2InvoicingServiceInvoicesLines1(
|
|
@@ -220,14 +363,14 @@ export class InvoicesService {
|
|
|
220
363
|
* @param invoiceId
|
|
221
364
|
* @param invoiceLineId
|
|
222
365
|
* @param requestBody
|
|
223
|
-
* @returns EmptyEnvelope
|
|
366
|
+
* @returns EmptyEnvelope OK
|
|
224
367
|
* @throws ApiError
|
|
225
368
|
*/
|
|
226
369
|
public static putApiV2InvoicingServiceInvoicesLines(
|
|
227
370
|
tenantId: string,
|
|
228
371
|
invoiceId: string,
|
|
229
372
|
invoiceLineId: string,
|
|
230
|
-
requestBody?:
|
|
373
|
+
requestBody?: InvoiceLineUpdateDto,
|
|
231
374
|
): CancelablePromise<EmptyEnvelope> {
|
|
232
375
|
return __request(OpenAPI, {
|
|
233
376
|
method: 'PUT',
|
|
@@ -250,15 +393,13 @@ export class InvoicesService {
|
|
|
250
393
|
* @param tenantId
|
|
251
394
|
* @param invoiceId
|
|
252
395
|
* @param invoiceLineId
|
|
253
|
-
* @
|
|
254
|
-
* @returns EmptyEnvelope Success
|
|
396
|
+
* @returns EmptyEnvelope OK
|
|
255
397
|
* @throws ApiError
|
|
256
398
|
*/
|
|
257
399
|
public static deleteApiV2InvoicingServiceInvoicesLines(
|
|
258
400
|
tenantId: string,
|
|
259
401
|
invoiceId: string,
|
|
260
402
|
invoiceLineId: string,
|
|
261
|
-
requestBody?: ItemPriceUpdateDto,
|
|
262
403
|
): CancelablePromise<EmptyEnvelope> {
|
|
263
404
|
return __request(OpenAPI, {
|
|
264
405
|
method: 'DELETE',
|
|
@@ -270,6 +411,89 @@ export class InvoicesService {
|
|
|
270
411
|
query: {
|
|
271
412
|
'tenantId': tenantId,
|
|
272
413
|
},
|
|
414
|
+
errors: {
|
|
415
|
+
404: `Not Found`,
|
|
416
|
+
},
|
|
417
|
+
});
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* @param tenantId
|
|
421
|
+
* @param invoiceId
|
|
422
|
+
* @param invoiceLineId
|
|
423
|
+
* @returns EmptyEnvelope OK
|
|
424
|
+
* @throws ApiError
|
|
425
|
+
*/
|
|
426
|
+
public static putApiV2InvoicingServiceInvoicesLinesCalculate(
|
|
427
|
+
tenantId: string,
|
|
428
|
+
invoiceId: string,
|
|
429
|
+
invoiceLineId: string,
|
|
430
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
431
|
+
return __request(OpenAPI, {
|
|
432
|
+
method: 'PUT',
|
|
433
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/{invoiceLineId}/Calculate',
|
|
434
|
+
path: {
|
|
435
|
+
'invoiceId': invoiceId,
|
|
436
|
+
'invoiceLineId': invoiceLineId,
|
|
437
|
+
},
|
|
438
|
+
query: {
|
|
439
|
+
'tenantId': tenantId,
|
|
440
|
+
},
|
|
441
|
+
errors: {
|
|
442
|
+
404: `Not Found`,
|
|
443
|
+
},
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* @param tenantId
|
|
448
|
+
* @param invoiceId
|
|
449
|
+
* @param invoiceLineId
|
|
450
|
+
* @returns InvoiceLineAppliedTaxDtoListEnvelope OK
|
|
451
|
+
* @throws ApiError
|
|
452
|
+
*/
|
|
453
|
+
public static getApiV2InvoicingServiceInvoicesLinesTaxes(
|
|
454
|
+
tenantId: string,
|
|
455
|
+
invoiceId: string,
|
|
456
|
+
invoiceLineId: string,
|
|
457
|
+
): CancelablePromise<InvoiceLineAppliedTaxDtoListEnvelope> {
|
|
458
|
+
return __request(OpenAPI, {
|
|
459
|
+
method: 'GET',
|
|
460
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/{invoiceLineId}/Taxes',
|
|
461
|
+
path: {
|
|
462
|
+
'invoiceId': invoiceId,
|
|
463
|
+
'invoiceLineId': invoiceLineId,
|
|
464
|
+
},
|
|
465
|
+
query: {
|
|
466
|
+
'tenantId': tenantId,
|
|
467
|
+
},
|
|
468
|
+
errors: {
|
|
469
|
+
404: `Not Found`,
|
|
470
|
+
},
|
|
471
|
+
});
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* @param tenantId
|
|
475
|
+
* @param invoiceId
|
|
476
|
+
* @param invoiceLineId
|
|
477
|
+
* @param requestBody
|
|
478
|
+
* @returns EmptyEnvelope OK
|
|
479
|
+
* @throws ApiError
|
|
480
|
+
*/
|
|
481
|
+
public static postApiV2InvoicingServiceInvoicesLinesTaxes(
|
|
482
|
+
tenantId: string,
|
|
483
|
+
invoiceId: string,
|
|
484
|
+
invoiceLineId: string,
|
|
485
|
+
requestBody?: InvoiceLineAppliedTaxCreateDto,
|
|
486
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
487
|
+
return __request(OpenAPI, {
|
|
488
|
+
method: 'POST',
|
|
489
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/{invoiceLineId}/Taxes',
|
|
490
|
+
path: {
|
|
491
|
+
'invoiceId': invoiceId,
|
|
492
|
+
'invoiceLineId': invoiceLineId,
|
|
493
|
+
},
|
|
494
|
+
query: {
|
|
495
|
+
'tenantId': tenantId,
|
|
496
|
+
},
|
|
273
497
|
body: requestBody,
|
|
274
498
|
mediaType: 'application/json',
|
|
275
499
|
errors: {
|
|
@@ -278,20 +502,572 @@ export class InvoicesService {
|
|
|
278
502
|
});
|
|
279
503
|
}
|
|
280
504
|
/**
|
|
281
|
-
*
|
|
282
|
-
* @param invoiceId
|
|
283
|
-
* @
|
|
505
|
+
* @param tenantId
|
|
506
|
+
* @param invoiceId
|
|
507
|
+
* @param invoiceLineId
|
|
508
|
+
* @returns Int32Envelope OK
|
|
284
509
|
* @throws ApiError
|
|
285
510
|
*/
|
|
286
|
-
public static
|
|
511
|
+
public static getApiV2InvoicingServiceInvoicesLinesTaxesCount(
|
|
512
|
+
tenantId: string,
|
|
287
513
|
invoiceId: string,
|
|
288
|
-
|
|
514
|
+
invoiceLineId: string,
|
|
515
|
+
): CancelablePromise<Int32Envelope> {
|
|
289
516
|
return __request(OpenAPI, {
|
|
290
517
|
method: 'GET',
|
|
291
|
-
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/
|
|
518
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/{invoiceLineId}/Taxes/Count',
|
|
519
|
+
path: {
|
|
520
|
+
'invoiceId': invoiceId,
|
|
521
|
+
'invoiceLineId': invoiceLineId,
|
|
522
|
+
},
|
|
523
|
+
query: {
|
|
524
|
+
'tenantId': tenantId,
|
|
525
|
+
},
|
|
526
|
+
errors: {
|
|
527
|
+
404: `Not Found`,
|
|
528
|
+
},
|
|
529
|
+
});
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
* @param tenantId
|
|
533
|
+
* @param invoiceId
|
|
534
|
+
* @param invoiceLineId
|
|
535
|
+
* @param invoiceLineTaxId
|
|
536
|
+
* @param requestBody
|
|
537
|
+
* @returns EmptyEnvelope OK
|
|
538
|
+
* @throws ApiError
|
|
539
|
+
*/
|
|
540
|
+
public static putApiV2InvoicingServiceInvoicesLinesTaxes(
|
|
541
|
+
tenantId: string,
|
|
542
|
+
invoiceId: string,
|
|
543
|
+
invoiceLineId: string,
|
|
544
|
+
invoiceLineTaxId: string,
|
|
545
|
+
requestBody?: InvoiceLineAppliedTaxUpdateDto,
|
|
546
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
547
|
+
return __request(OpenAPI, {
|
|
548
|
+
method: 'PUT',
|
|
549
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/{invoiceLineId}/Taxes/{invoiceLineTaxId}',
|
|
550
|
+
path: {
|
|
551
|
+
'invoiceId': invoiceId,
|
|
552
|
+
'invoiceLineId': invoiceLineId,
|
|
553
|
+
'invoiceLineTaxId': invoiceLineTaxId,
|
|
554
|
+
},
|
|
555
|
+
query: {
|
|
556
|
+
'tenantId': tenantId,
|
|
557
|
+
},
|
|
558
|
+
body: requestBody,
|
|
559
|
+
mediaType: 'application/json',
|
|
560
|
+
errors: {
|
|
561
|
+
404: `Not Found`,
|
|
562
|
+
},
|
|
563
|
+
});
|
|
564
|
+
}
|
|
565
|
+
/**
|
|
566
|
+
* @param tenantId
|
|
567
|
+
* @param invoiceId
|
|
568
|
+
* @param invoiceLineId
|
|
569
|
+
* @param invoiceLineTaxId
|
|
570
|
+
* @returns EmptyEnvelope OK
|
|
571
|
+
* @throws ApiError
|
|
572
|
+
*/
|
|
573
|
+
public static deleteApiV2InvoicingServiceInvoicesLinesTaxes(
|
|
574
|
+
tenantId: string,
|
|
575
|
+
invoiceId: string,
|
|
576
|
+
invoiceLineId: string,
|
|
577
|
+
invoiceLineTaxId: string,
|
|
578
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
579
|
+
return __request(OpenAPI, {
|
|
580
|
+
method: 'DELETE',
|
|
581
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Lines/{invoiceLineId}/Taxes/{invoiceLineTaxId}',
|
|
292
582
|
path: {
|
|
293
583
|
'invoiceId': invoiceId,
|
|
584
|
+
'invoiceLineId': invoiceLineId,
|
|
585
|
+
'invoiceLineTaxId': invoiceLineTaxId,
|
|
294
586
|
},
|
|
587
|
+
query: {
|
|
588
|
+
'tenantId': tenantId,
|
|
589
|
+
},
|
|
590
|
+
errors: {
|
|
591
|
+
404: `Not Found`,
|
|
592
|
+
},
|
|
593
|
+
});
|
|
594
|
+
}
|
|
595
|
+
/**
|
|
596
|
+
* @param tenantId
|
|
597
|
+
* @param invoiceId
|
|
598
|
+
* @returns InvoiceAdjustmentDtoListEnvelope OK
|
|
599
|
+
* @throws ApiError
|
|
600
|
+
*/
|
|
601
|
+
public static getApiV2InvoicingServiceInvoicesAdjustments(
|
|
602
|
+
tenantId: string,
|
|
603
|
+
invoiceId: string,
|
|
604
|
+
): CancelablePromise<InvoiceAdjustmentDtoListEnvelope> {
|
|
605
|
+
return __request(OpenAPI, {
|
|
606
|
+
method: 'GET',
|
|
607
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Adjustments',
|
|
608
|
+
path: {
|
|
609
|
+
'invoiceId': invoiceId,
|
|
610
|
+
},
|
|
611
|
+
query: {
|
|
612
|
+
'tenantId': tenantId,
|
|
613
|
+
},
|
|
614
|
+
errors: {
|
|
615
|
+
404: `Not Found`,
|
|
616
|
+
},
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
/**
|
|
620
|
+
* @param tenantId
|
|
621
|
+
* @param invoiceId
|
|
622
|
+
* @param requestBody
|
|
623
|
+
* @returns EmptyEnvelope OK
|
|
624
|
+
* @throws ApiError
|
|
625
|
+
*/
|
|
626
|
+
public static postApiV2InvoicingServiceInvoicesAdjustments(
|
|
627
|
+
tenantId: string,
|
|
628
|
+
invoiceId: string,
|
|
629
|
+
requestBody?: InvoiceAdjustmentCreateDto,
|
|
630
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
631
|
+
return __request(OpenAPI, {
|
|
632
|
+
method: 'POST',
|
|
633
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Adjustments',
|
|
634
|
+
path: {
|
|
635
|
+
'invoiceId': invoiceId,
|
|
636
|
+
},
|
|
637
|
+
query: {
|
|
638
|
+
'tenantId': tenantId,
|
|
639
|
+
},
|
|
640
|
+
body: requestBody,
|
|
641
|
+
mediaType: 'application/json',
|
|
642
|
+
errors: {
|
|
643
|
+
404: `Not Found`,
|
|
644
|
+
},
|
|
645
|
+
});
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* @param tenantId
|
|
649
|
+
* @param invoiceId
|
|
650
|
+
* @returns Int32Envelope OK
|
|
651
|
+
* @throws ApiError
|
|
652
|
+
*/
|
|
653
|
+
public static getApiV2InvoicingServiceInvoicesAdjustmentsCount(
|
|
654
|
+
tenantId: string,
|
|
655
|
+
invoiceId: string,
|
|
656
|
+
): CancelablePromise<Int32Envelope> {
|
|
657
|
+
return __request(OpenAPI, {
|
|
658
|
+
method: 'GET',
|
|
659
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Adjustments/Count',
|
|
660
|
+
path: {
|
|
661
|
+
'invoiceId': invoiceId,
|
|
662
|
+
},
|
|
663
|
+
query: {
|
|
664
|
+
'tenantId': tenantId,
|
|
665
|
+
},
|
|
666
|
+
errors: {
|
|
667
|
+
404: `Not Found`,
|
|
668
|
+
},
|
|
669
|
+
});
|
|
670
|
+
}
|
|
671
|
+
/**
|
|
672
|
+
* @param tenantId
|
|
673
|
+
* @param invoiceId
|
|
674
|
+
* @param invoiceAdjustmentId
|
|
675
|
+
* @returns InvoiceAdjustmentDtoEnvelope OK
|
|
676
|
+
* @throws ApiError
|
|
677
|
+
*/
|
|
678
|
+
public static getApiV2InvoicingServiceInvoicesAdjustments1(
|
|
679
|
+
tenantId: string,
|
|
680
|
+
invoiceId: string,
|
|
681
|
+
invoiceAdjustmentId: string,
|
|
682
|
+
): CancelablePromise<InvoiceAdjustmentDtoEnvelope> {
|
|
683
|
+
return __request(OpenAPI, {
|
|
684
|
+
method: 'GET',
|
|
685
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Adjustments/{invoiceAdjustmentId}',
|
|
686
|
+
path: {
|
|
687
|
+
'invoiceId': invoiceId,
|
|
688
|
+
'invoiceAdjustmentId': invoiceAdjustmentId,
|
|
689
|
+
},
|
|
690
|
+
query: {
|
|
691
|
+
'tenantId': tenantId,
|
|
692
|
+
},
|
|
693
|
+
errors: {
|
|
694
|
+
404: `Not Found`,
|
|
695
|
+
},
|
|
696
|
+
});
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* @param tenantId
|
|
700
|
+
* @param invoiceId
|
|
701
|
+
* @param invoiceAdjustmentId
|
|
702
|
+
* @param requestBody
|
|
703
|
+
* @returns EmptyEnvelope OK
|
|
704
|
+
* @throws ApiError
|
|
705
|
+
*/
|
|
706
|
+
public static putApiV2InvoicingServiceInvoicesAdjustments(
|
|
707
|
+
tenantId: string,
|
|
708
|
+
invoiceId: string,
|
|
709
|
+
invoiceAdjustmentId: string,
|
|
710
|
+
requestBody?: InvoiceAdjustmentUpdateDto,
|
|
711
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
712
|
+
return __request(OpenAPI, {
|
|
713
|
+
method: 'PUT',
|
|
714
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Adjustments/{invoiceAdjustmentId}',
|
|
715
|
+
path: {
|
|
716
|
+
'invoiceId': invoiceId,
|
|
717
|
+
'invoiceAdjustmentId': invoiceAdjustmentId,
|
|
718
|
+
},
|
|
719
|
+
query: {
|
|
720
|
+
'tenantId': tenantId,
|
|
721
|
+
},
|
|
722
|
+
body: requestBody,
|
|
723
|
+
mediaType: 'application/json',
|
|
724
|
+
errors: {
|
|
725
|
+
404: `Not Found`,
|
|
726
|
+
},
|
|
727
|
+
});
|
|
728
|
+
}
|
|
729
|
+
/**
|
|
730
|
+
* @param tenantId
|
|
731
|
+
* @param invoiceId
|
|
732
|
+
* @param invoiceAdjustmentId
|
|
733
|
+
* @returns EmptyEnvelope OK
|
|
734
|
+
* @throws ApiError
|
|
735
|
+
*/
|
|
736
|
+
public static deleteApiV2InvoicingServiceInvoicesAdjustments(
|
|
737
|
+
tenantId: string,
|
|
738
|
+
invoiceId: string,
|
|
739
|
+
invoiceAdjustmentId: string,
|
|
740
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
741
|
+
return __request(OpenAPI, {
|
|
742
|
+
method: 'DELETE',
|
|
743
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Adjustments/{invoiceAdjustmentId}',
|
|
744
|
+
path: {
|
|
745
|
+
'invoiceId': invoiceId,
|
|
746
|
+
'invoiceAdjustmentId': invoiceAdjustmentId,
|
|
747
|
+
},
|
|
748
|
+
query: {
|
|
749
|
+
'tenantId': tenantId,
|
|
750
|
+
},
|
|
751
|
+
errors: {
|
|
752
|
+
404: `Not Found`,
|
|
753
|
+
},
|
|
754
|
+
});
|
|
755
|
+
}
|
|
756
|
+
/**
|
|
757
|
+
* @param tenantId
|
|
758
|
+
* @param invoiceId
|
|
759
|
+
* @returns InvoiceReferenceDtoListEnvelope OK
|
|
760
|
+
* @throws ApiError
|
|
761
|
+
*/
|
|
762
|
+
public static getApiV2InvoicingServiceInvoicesReferences(
|
|
763
|
+
tenantId: string,
|
|
764
|
+
invoiceId: string,
|
|
765
|
+
): CancelablePromise<InvoiceReferenceDtoListEnvelope> {
|
|
766
|
+
return __request(OpenAPI, {
|
|
767
|
+
method: 'GET',
|
|
768
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/References',
|
|
769
|
+
path: {
|
|
770
|
+
'invoiceId': invoiceId,
|
|
771
|
+
},
|
|
772
|
+
query: {
|
|
773
|
+
'tenantId': tenantId,
|
|
774
|
+
},
|
|
775
|
+
errors: {
|
|
776
|
+
404: `Not Found`,
|
|
777
|
+
},
|
|
778
|
+
});
|
|
779
|
+
}
|
|
780
|
+
/**
|
|
781
|
+
* @param tenantId
|
|
782
|
+
* @param invoiceId
|
|
783
|
+
* @param requestBody
|
|
784
|
+
* @returns EmptyEnvelope OK
|
|
785
|
+
* @throws ApiError
|
|
786
|
+
*/
|
|
787
|
+
public static postApiV2InvoicingServiceInvoicesReferences(
|
|
788
|
+
tenantId: string,
|
|
789
|
+
invoiceId: string,
|
|
790
|
+
requestBody?: InvoiceReferenceCreateDto,
|
|
791
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
792
|
+
return __request(OpenAPI, {
|
|
793
|
+
method: 'POST',
|
|
794
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/References',
|
|
795
|
+
path: {
|
|
796
|
+
'invoiceId': invoiceId,
|
|
797
|
+
},
|
|
798
|
+
query: {
|
|
799
|
+
'tenantId': tenantId,
|
|
800
|
+
},
|
|
801
|
+
body: requestBody,
|
|
802
|
+
mediaType: 'application/json',
|
|
803
|
+
errors: {
|
|
804
|
+
404: `Not Found`,
|
|
805
|
+
},
|
|
806
|
+
});
|
|
807
|
+
}
|
|
808
|
+
/**
|
|
809
|
+
* @param tenantId
|
|
810
|
+
* @param invoiceId
|
|
811
|
+
* @returns Int32Envelope OK
|
|
812
|
+
* @throws ApiError
|
|
813
|
+
*/
|
|
814
|
+
public static getApiV2InvoicingServiceInvoicesReferencesCount(
|
|
815
|
+
tenantId: string,
|
|
816
|
+
invoiceId: string,
|
|
817
|
+
): CancelablePromise<Int32Envelope> {
|
|
818
|
+
return __request(OpenAPI, {
|
|
819
|
+
method: 'GET',
|
|
820
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/References/Count',
|
|
821
|
+
path: {
|
|
822
|
+
'invoiceId': invoiceId,
|
|
823
|
+
},
|
|
824
|
+
query: {
|
|
825
|
+
'tenantId': tenantId,
|
|
826
|
+
},
|
|
827
|
+
errors: {
|
|
828
|
+
404: `Not Found`,
|
|
829
|
+
},
|
|
830
|
+
});
|
|
831
|
+
}
|
|
832
|
+
/**
|
|
833
|
+
* @param tenantId
|
|
834
|
+
* @param invoiceId
|
|
835
|
+
* @param invoiceReferenceId
|
|
836
|
+
* @returns InvoiceReferenceDtoEnvelope OK
|
|
837
|
+
* @throws ApiError
|
|
838
|
+
*/
|
|
839
|
+
public static getApiV2InvoicingServiceInvoicesReferences1(
|
|
840
|
+
tenantId: string,
|
|
841
|
+
invoiceId: string,
|
|
842
|
+
invoiceReferenceId: string,
|
|
843
|
+
): CancelablePromise<InvoiceReferenceDtoEnvelope> {
|
|
844
|
+
return __request(OpenAPI, {
|
|
845
|
+
method: 'GET',
|
|
846
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/References/{invoiceReferenceId}',
|
|
847
|
+
path: {
|
|
848
|
+
'invoiceId': invoiceId,
|
|
849
|
+
'invoiceReferenceId': invoiceReferenceId,
|
|
850
|
+
},
|
|
851
|
+
query: {
|
|
852
|
+
'tenantId': tenantId,
|
|
853
|
+
},
|
|
854
|
+
errors: {
|
|
855
|
+
404: `Not Found`,
|
|
856
|
+
},
|
|
857
|
+
});
|
|
858
|
+
}
|
|
859
|
+
/**
|
|
860
|
+
* @param tenantId
|
|
861
|
+
* @param invoiceId
|
|
862
|
+
* @param invoiceReferenceId
|
|
863
|
+
* @param requestBody
|
|
864
|
+
* @returns EmptyEnvelope OK
|
|
865
|
+
* @throws ApiError
|
|
866
|
+
*/
|
|
867
|
+
public static putApiV2InvoicingServiceInvoicesReferences(
|
|
868
|
+
tenantId: string,
|
|
869
|
+
invoiceId: string,
|
|
870
|
+
invoiceReferenceId: string,
|
|
871
|
+
requestBody?: InvoiceReferenceUpdateDto,
|
|
872
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
873
|
+
return __request(OpenAPI, {
|
|
874
|
+
method: 'PUT',
|
|
875
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/References/{invoiceReferenceId}',
|
|
876
|
+
path: {
|
|
877
|
+
'invoiceId': invoiceId,
|
|
878
|
+
'invoiceReferenceId': invoiceReferenceId,
|
|
879
|
+
},
|
|
880
|
+
query: {
|
|
881
|
+
'tenantId': tenantId,
|
|
882
|
+
},
|
|
883
|
+
body: requestBody,
|
|
884
|
+
mediaType: 'application/json',
|
|
885
|
+
errors: {
|
|
886
|
+
404: `Not Found`,
|
|
887
|
+
},
|
|
888
|
+
});
|
|
889
|
+
}
|
|
890
|
+
/**
|
|
891
|
+
* @param tenantId
|
|
892
|
+
* @param invoiceId
|
|
893
|
+
* @param invoiceReferenceId
|
|
894
|
+
* @returns EmptyEnvelope OK
|
|
895
|
+
* @throws ApiError
|
|
896
|
+
*/
|
|
897
|
+
public static deleteApiV2InvoicingServiceInvoicesReferences(
|
|
898
|
+
tenantId: string,
|
|
899
|
+
invoiceId: string,
|
|
900
|
+
invoiceReferenceId: string,
|
|
901
|
+
): CancelablePromise<EmptyEnvelope> {
|
|
902
|
+
return __request(OpenAPI, {
|
|
903
|
+
method: 'DELETE',
|
|
904
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/References/{invoiceReferenceId}',
|
|
905
|
+
path: {
|
|
906
|
+
'invoiceId': invoiceId,
|
|
907
|
+
'invoiceReferenceId': invoiceReferenceId,
|
|
908
|
+
},
|
|
909
|
+
query: {
|
|
910
|
+
'tenantId': tenantId,
|
|
911
|
+
},
|
|
912
|
+
errors: {
|
|
913
|
+
404: `Not Found`,
|
|
914
|
+
},
|
|
915
|
+
});
|
|
916
|
+
}
|
|
917
|
+
/**
|
|
918
|
+
* @param invoiceId
|
|
919
|
+
* @returns InvoiceDtoListEnvelope OK
|
|
920
|
+
* @throws ApiError
|
|
921
|
+
*/
|
|
922
|
+
public static getApiV2InvoicingServiceInvoicesPayments(
|
|
923
|
+
invoiceId: string,
|
|
924
|
+
): CancelablePromise<InvoiceDtoListEnvelope> {
|
|
925
|
+
return __request(OpenAPI, {
|
|
926
|
+
method: 'GET',
|
|
927
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Payments',
|
|
928
|
+
path: {
|
|
929
|
+
'invoiceId': invoiceId,
|
|
930
|
+
},
|
|
931
|
+
errors: {
|
|
932
|
+
401: `Unauthorized`,
|
|
933
|
+
403: `Forbidden`,
|
|
934
|
+
},
|
|
935
|
+
});
|
|
936
|
+
}
|
|
937
|
+
/**
|
|
938
|
+
* @param invoiceId
|
|
939
|
+
* @returns Int32Envelope OK
|
|
940
|
+
* @throws ApiError
|
|
941
|
+
*/
|
|
942
|
+
public static getApiV2InvoicingServiceInvoicesPaymentsCount(
|
|
943
|
+
invoiceId: string,
|
|
944
|
+
): CancelablePromise<Int32Envelope> {
|
|
945
|
+
return __request(OpenAPI, {
|
|
946
|
+
method: 'GET',
|
|
947
|
+
url: '/api/v2/InvoicingService/Invoices/{invoiceId}/Payments/Count',
|
|
948
|
+
path: {
|
|
949
|
+
'invoiceId': invoiceId,
|
|
950
|
+
},
|
|
951
|
+
errors: {
|
|
952
|
+
401: `Unauthorized`,
|
|
953
|
+
403: `Forbidden`,
|
|
954
|
+
},
|
|
955
|
+
});
|
|
956
|
+
}
|
|
957
|
+
/**
|
|
958
|
+
* @param requestBody
|
|
959
|
+
* @param currencyId
|
|
960
|
+
* @returns MoneyEnvelope OK
|
|
961
|
+
* @throws ApiError
|
|
962
|
+
*/
|
|
963
|
+
public static postApiV2InvoicingServiceInvoicesTotalsAggregate(
|
|
964
|
+
requestBody: Array<string>,
|
|
965
|
+
currencyId?: string,
|
|
966
|
+
): CancelablePromise<MoneyEnvelope> {
|
|
967
|
+
return __request(OpenAPI, {
|
|
968
|
+
method: 'POST',
|
|
969
|
+
url: '/api/v2/InvoicingService/Invoices/TotalsAggregate',
|
|
970
|
+
query: {
|
|
971
|
+
'currencyId': currencyId,
|
|
972
|
+
},
|
|
973
|
+
body: requestBody,
|
|
974
|
+
mediaType: 'application/json',
|
|
975
|
+
errors: {
|
|
976
|
+
401: `Unauthorized`,
|
|
977
|
+
403: `Forbidden`,
|
|
978
|
+
},
|
|
979
|
+
});
|
|
980
|
+
}
|
|
981
|
+
/**
|
|
982
|
+
* @param requestBody
|
|
983
|
+
* @param currencyId
|
|
984
|
+
* @returns MoneyEnvelope OK
|
|
985
|
+
* @throws ApiError
|
|
986
|
+
*/
|
|
987
|
+
public static postApiV2InvoicingServiceInvoicesTaxesAggregate(
|
|
988
|
+
requestBody: Array<string>,
|
|
989
|
+
currencyId?: string,
|
|
990
|
+
): CancelablePromise<MoneyEnvelope> {
|
|
991
|
+
return __request(OpenAPI, {
|
|
992
|
+
method: 'POST',
|
|
993
|
+
url: '/api/v2/InvoicingService/Invoices/TaxesAggregate',
|
|
994
|
+
query: {
|
|
995
|
+
'currencyId': currencyId,
|
|
996
|
+
},
|
|
997
|
+
body: requestBody,
|
|
998
|
+
mediaType: 'application/json',
|
|
999
|
+
errors: {
|
|
1000
|
+
401: `Unauthorized`,
|
|
1001
|
+
403: `Forbidden`,
|
|
1002
|
+
},
|
|
1003
|
+
});
|
|
1004
|
+
}
|
|
1005
|
+
/**
|
|
1006
|
+
* @param requestBody
|
|
1007
|
+
* @param currencyId
|
|
1008
|
+
* @returns MoneyEnvelope OK
|
|
1009
|
+
* @throws ApiError
|
|
1010
|
+
*/
|
|
1011
|
+
public static postApiV2InvoicingServiceInvoicesDiscountsAggregate(
|
|
1012
|
+
requestBody: Array<string>,
|
|
1013
|
+
currencyId?: string,
|
|
1014
|
+
): CancelablePromise<MoneyEnvelope> {
|
|
1015
|
+
return __request(OpenAPI, {
|
|
1016
|
+
method: 'POST',
|
|
1017
|
+
url: '/api/v2/InvoicingService/Invoices/DiscountsAggregate',
|
|
1018
|
+
query: {
|
|
1019
|
+
'currencyId': currencyId,
|
|
1020
|
+
},
|
|
1021
|
+
body: requestBody,
|
|
1022
|
+
mediaType: 'application/json',
|
|
1023
|
+
errors: {
|
|
1024
|
+
401: `Unauthorized`,
|
|
1025
|
+
403: `Forbidden`,
|
|
1026
|
+
},
|
|
1027
|
+
});
|
|
1028
|
+
}
|
|
1029
|
+
/**
|
|
1030
|
+
* @param requestBody
|
|
1031
|
+
* @param currencyId
|
|
1032
|
+
* @returns MoneyEnvelope OK
|
|
1033
|
+
* @throws ApiError
|
|
1034
|
+
*/
|
|
1035
|
+
public static postApiV2InvoicingServiceInvoicesTaxBasesAggregate(
|
|
1036
|
+
requestBody: Array<string>,
|
|
1037
|
+
currencyId?: string,
|
|
1038
|
+
): CancelablePromise<MoneyEnvelope> {
|
|
1039
|
+
return __request(OpenAPI, {
|
|
1040
|
+
method: 'POST',
|
|
1041
|
+
url: '/api/v2/InvoicingService/Invoices/TaxBasesAggregate',
|
|
1042
|
+
query: {
|
|
1043
|
+
'currencyId': currencyId,
|
|
1044
|
+
},
|
|
1045
|
+
body: requestBody,
|
|
1046
|
+
mediaType: 'application/json',
|
|
1047
|
+
errors: {
|
|
1048
|
+
401: `Unauthorized`,
|
|
1049
|
+
403: `Forbidden`,
|
|
1050
|
+
},
|
|
1051
|
+
});
|
|
1052
|
+
}
|
|
1053
|
+
/**
|
|
1054
|
+
* @param requestBody
|
|
1055
|
+
* @param currencyId
|
|
1056
|
+
* @returns MoneyEnvelope OK
|
|
1057
|
+
* @throws ApiError
|
|
1058
|
+
*/
|
|
1059
|
+
public static postApiV2InvoicingServiceInvoicesGlobalSurchargesAggregate(
|
|
1060
|
+
requestBody: Array<string>,
|
|
1061
|
+
currencyId?: string,
|
|
1062
|
+
): CancelablePromise<MoneyEnvelope> {
|
|
1063
|
+
return __request(OpenAPI, {
|
|
1064
|
+
method: 'POST',
|
|
1065
|
+
url: '/api/v2/InvoicingService/Invoices/GlobalSurchargesAggregate',
|
|
1066
|
+
query: {
|
|
1067
|
+
'currencyId': currencyId,
|
|
1068
|
+
},
|
|
1069
|
+
body: requestBody,
|
|
1070
|
+
mediaType: 'application/json',
|
|
295
1071
|
errors: {
|
|
296
1072
|
401: `Unauthorized`,
|
|
297
1073
|
403: `Forbidden`,
|