@getyetty-sdk/sellsy 2026.2.13 → 2026.3.4

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/dist/index.mjs CHANGED
@@ -2868,6 +2868,16 @@ const EstimateCreateSchema = { allOf: [{ $ref: "#/components/schemas/Estimate/al
2868
2868
  type: "boolean",
2869
2869
  description: "Show discount column",
2870
2870
  example: true
2871
+ },
2872
+ show_vat_law_text: {
2873
+ type: "boolean",
2874
+ description: "Show legal text dedicated to European VAT",
2875
+ example: true
2876
+ },
2877
+ show_late_penalty_warning_text: {
2878
+ type: "boolean",
2879
+ description: "Show legal text on late payment interests",
2880
+ example: true
2871
2881
  }
2872
2882
  }
2873
2883
  },
@@ -5248,6 +5258,16 @@ const SaleEmbedSchema = {
5248
5258
  type: "boolean",
5249
5259
  description: "Show discount column",
5250
5260
  example: true
5261
+ },
5262
+ show_vat_law_text: {
5263
+ type: "boolean",
5264
+ description: "Show legal text dedicated to European VAT",
5265
+ example: true
5266
+ },
5267
+ show_late_penalty_warning_text: {
5268
+ type: "boolean",
5269
+ description: "Show legal text on late payment interests",
5270
+ example: true
5251
5271
  }
5252
5272
  }
5253
5273
  },
@@ -21945,6 +21965,16 @@ const InvoiceOrProgressInvoiceOneSchema = { oneOf: [{ $ref: "#/components/schema
21945
21965
  type: "boolean",
21946
21966
  description: "Show barcode image",
21947
21967
  example: true
21968
+ },
21969
+ show_vat_law_text: {
21970
+ type: "boolean",
21971
+ description: "Show legal text dedicated to European VAT",
21972
+ example: true
21973
+ },
21974
+ show_late_penalty_warning_text: {
21975
+ type: "boolean",
21976
+ description: "Show legal text on late payment interests",
21977
+ example: true
21948
21978
  }
21949
21979
  }
21950
21980
  }] } }
@@ -33982,6 +34012,16 @@ const EstimateCreateWritableSchema = { allOf: [{ $ref: "#/components/schemas/Est
33982
34012
  type: "boolean",
33983
34013
  description: "Show discount column",
33984
34014
  example: true
34015
+ },
34016
+ show_vat_law_text: {
34017
+ type: "boolean",
34018
+ description: "Show legal text dedicated to European VAT",
34019
+ example: true
34020
+ },
34021
+ show_late_penalty_warning_text: {
34022
+ type: "boolean",
34023
+ description: "Show legal text on late payment interests",
34024
+ example: true
33985
34025
  }
33986
34026
  }
33987
34027
  },
@@ -35919,6 +35959,16 @@ const SaleEmbedWritableSchema = {
35919
35959
  type: "boolean",
35920
35960
  description: "Show discount column",
35921
35961
  example: true
35962
+ },
35963
+ show_vat_law_text: {
35964
+ type: "boolean",
35965
+ description: "Show legal text dedicated to European VAT",
35966
+ example: true
35967
+ },
35968
+ show_late_penalty_warning_text: {
35969
+ type: "boolean",
35970
+ description: "Show legal text on late payment interests",
35971
+ example: true
35922
35972
  }
35923
35973
  }
35924
35974
  },
@@ -42313,6 +42363,16 @@ const InvoiceOrProgressInvoiceOneWritableSchema = { oneOf: [{ $ref: "#/component
42313
42363
  type: "boolean",
42314
42364
  description: "Show barcode image",
42315
42365
  example: true
42366
+ },
42367
+ show_vat_law_text: {
42368
+ type: "boolean",
42369
+ description: "Show legal text dedicated to European VAT",
42370
+ example: true
42371
+ },
42372
+ show_late_penalty_warning_text: {
42373
+ type: "boolean",
42374
+ description: "Show legal text on late payment interests",
42375
+ example: true
42316
42376
  }
42317
42377
  }
42318
42378
  }] } }
@@ -49147,23 +49207,6 @@ const listClients = (options) => (options?.client ?? client).get({
49147
49207
  ...options
49148
49208
  });
49149
49209
  /**
49150
- * Create OAuth client
49151
- *
49152
- * Create OAuth2 client for API
49153
- */
49154
- const createClients = (options) => (options?.client ?? client).post({
49155
- security: [{
49156
- scheme: "bearer",
49157
- type: "http"
49158
- }],
49159
- url: "/clients",
49160
- ...options,
49161
- headers: {
49162
- "Content-Type": "application/json",
49163
- ...options?.headers
49164
- }
49165
- });
49166
- /**
49167
49210
  * Delete OAuth client
49168
49211
  *
49169
49212
  * Delete OAuth 2 client for API
@@ -49190,102 +49233,6 @@ const fetchClients = (options) => (options.client ?? client).get({
49190
49233
  ...options
49191
49234
  });
49192
49235
  /**
49193
- * Update OAuth client
49194
- *
49195
- * Update OAuth2 client for API
49196
- */
49197
- const updateClients = (options) => (options.client ?? client).put({
49198
- security: [{
49199
- scheme: "bearer",
49200
- type: "http"
49201
- }],
49202
- url: "/clients/{id}",
49203
- ...options,
49204
- headers: {
49205
- "Content-Type": "application/json",
49206
- ...options.headers
49207
- }
49208
- });
49209
- /**
49210
- * List personal access tokens
49211
- *
49212
- * List the personal access tokens for API
49213
- *
49214
- * @deprecated
49215
- */
49216
- const listPersonalAccessTokens = (options) => (options?.client ?? client).get({
49217
- security: [{
49218
- scheme: "bearer",
49219
- type: "http"
49220
- }],
49221
- url: "/personal-access-tokens",
49222
- ...options
49223
- });
49224
- /**
49225
- * Create personal access token
49226
- *
49227
- * Create OAuth2 personal access token for API
49228
- *
49229
- * @deprecated
49230
- */
49231
- const createPersonalAccessTokens = (options) => (options?.client ?? client).post({
49232
- security: [{
49233
- scheme: "bearer",
49234
- type: "http"
49235
- }],
49236
- url: "/personal-access-tokens",
49237
- ...options,
49238
- headers: {
49239
- "Content-Type": "application/json",
49240
- ...options?.headers
49241
- }
49242
- });
49243
- /**
49244
- * Get meta informations for personal access tokens
49245
- *
49246
- * Get metadata, ie everything you need to build the form
49247
- *
49248
- * @deprecated
49249
- */
49250
- const personalAccessTokensMeta = (options) => (options?.client ?? client).get({
49251
- security: [{
49252
- scheme: "bearer",
49253
- type: "http"
49254
- }],
49255
- url: "/personal-access-tokens/metas",
49256
- ...options
49257
- });
49258
- /**
49259
- * Delete personal access token
49260
- *
49261
- * Delete OAuth2 personal access token for API
49262
- *
49263
- * @deprecated
49264
- */
49265
- const deletePersonalAccessTokens = (options) => (options.client ?? client).delete({
49266
- security: [{
49267
- scheme: "bearer",
49268
- type: "http"
49269
- }],
49270
- url: "/personal-access-tokens/{id}",
49271
- ...options
49272
- });
49273
- /**
49274
- * Get personal access token
49275
- *
49276
- * Fetch OAuth2 personal access token for API
49277
- *
49278
- * @deprecated
49279
- */
49280
- const fetchPersonalAccessTokens = (options) => (options.client ?? client).get({
49281
- security: [{
49282
- scheme: "bearer",
49283
- type: "http"
49284
- }],
49285
- url: "/personal-access-tokens/{id}",
49286
- ...options
49287
- });
49288
- /**
49289
49236
  * Get accounting codes
49290
49237
  *
49291
49238
  * Get list of accounting codes
@@ -53742,5 +53689,5 @@ function createClientWithApiKey(apiKey) {
53742
53689
  }
53743
53690
 
53744
53691
  //#endregion
53745
- export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchUnitInputSchema, CalendarEventCreateItemSchema, CalendarEventFiltersSchema, CalendarEventItemSchema, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItemSchema, CheckLabelOrders, CheckLabelSchema, ClientCreateSchema, ClientCreateWritableSchema, ClientSchema, ClientUpdateSchema, ClientUpdateWritableSchema, ClientWSecretSchema, ClientWSecretWritableSchema, ClientWritableSchema, CommentCreateItemSchema, CommentFiltersSchema, CommentItemSchema, CommentItemWritableSchema, CommentOrder, CommentUpdateItemSchema, CompanyPreferencesSchema, CompanyPreferencesWritableSchema, ComputedProgresssInvoiceSchema, ConsentMarketingSettingsInputSchema, ConsentSettingsInputSchema, ConsentSettingsOuputSchema, ContactCollectionItemSchema, ContactCollectionItemWritableSchema, ContactCreateItemSchema, ContactCreateItemWritableSchema, ContactFiltersSchema, ContactItemSchema, ContactItemWritableSchema, ContactOrders, ContactUpdateItemSchema, ContactUpdateItemWritableSchema, CorporationSubscriptionSchema, CountrySchema, CreateDirectorySchema, CreateItemSchema, CreateModelSchema, CreateModelWritableSchema, CreatePaymentSchema, CreditNoteComputeSchema, CreditNoteComputeWritableSchema, CreditNoteCreateSchema, CreditNoteCreateWritableSchema, CreditNoteFiltersSchema, CreditNoteOneSchema, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdateSchema, CreditNoteUpdateWritableSchema, CreditNoteValidateSchema, CreditNoteWritableSchema, CrmActivityAggregationsSchema, CrmActivityFiltersSchema, CrmActivityMetasSchema, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritableSchema, CurrencySchema, CurrencyWritableSchema, CustomActivityCreateSchema, CustomActivityCreateWritableSchema, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityTypeSchema, CustomActivityTypeWritableSchema, CustomActivityWritableSchema, DealsActivityOrder, DealsBatchSchema, DealsFiltersSchema, DealsSchema, DealsWritableSchema, DeclinationReadSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceFilterSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBodySchema, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInputSchema, EmailTemplateInputSchema, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutputSchema, EmailTemplateOutputSchema, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInputSchema, EmailValidationItemSchema, EmailVerificationInputSchema, EmailVerificationValidateInputSchema, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettingsSchema, EstimateAggregationsSchema, EstimateCollectionSchema, EstimateCollectionWritableSchema, EstimateComputeSchema, EstimateComputeWritableSchema, EstimateCreateSchema, EstimateCreateWritableSchema, EstimateFiltersSchema, EstimateOneEmbedSchema, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdateSchema, EstimateUpdateSchema, EstimateUpdateWritableSchema, EstimateWritableSchema, ExportParamsSchema, FavouriteFiltersOrder, FavouriteFiltersSchema, FileOutputSchema, FileOutputWritableSchema, FiscalYearSchema, ImportModelSchema, ImportPrepareInputSchema, ImportStartInputSchema, ImportType, ImportValidateInputSchema, IndividualPreferencesSchema, IndividualPreferencesWritableSchema, InvoiceComputeSchema, InvoiceComputeWritableSchema, InvoiceCreateSchema, InvoiceCreateWritableSchema, InvoiceFiltersSchema, InvoiceOneSchema, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdateSchema, InvoiceUpdateWritableSchema, InvoiceWritableSchema, InvoicingConformityStateSchema, InvoicingConformityStateWritableSchema, InvoicingPaymentSchema, InvoicingSearchFiltersSchema, InvoicingSearchSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingUserContextSchema, MailchimpSettingsSchema, MailjetSettingsSchema, MarketingAttributeDiffOutputSchema, MarketingAttributeInputSchema, MarketingAttributeOutputSchema, MarketingProvidersSchema, ModelOneSchema, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritableSchema, MoveFileInputSchema, NotificationFiltersSchema, NotificationMarkAsReadSchema, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInputSchema, NotificationSettingsOutputSchema, NotificationWritableSchema, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutputSchema, ObjectiveMetadataSchema, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutputSchema, ObjectiveSearchInputSchema, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInputSchema, OcrOrder, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritableSchema, OnboardingScreenOutputSchema, OpportunitiesAggregationsSchema, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritableSchema, OpportunityCreateSchema, OpportunityFiltersSchema, OpportunityItemSchema, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatchSchema, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdateSchema, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdateSchema, OrderComputeSchema, OrderComputeWritableSchema, OrderCreateSchema, OrderCreateWritableSchema, OrderFiltersSchema, OrderOneSchema, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdateSchema, OrderUpdateWritableSchema, OrderWritableSchema, OwnerSchema, PaginationSchema, PartialEmailHeaderSchema, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritableSchema, PaymentSchema, PaymentTermSchema, PaymentWritableSchema, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItemSchema, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItemSchema, PhoneCallFilterSchema, PhoneCallItemSchema, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItemSchema, PipelineStepFiltersSchema, PipelineStepOrder, PredictPlanSchema, ProfileOrder, ProfilesSchema, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocType, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOneSchema, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritableSchema, ProposalDocumentSchema, ProposalDocumentWritableSchema, ProposalModelSchema, ProposalModelWritableSchema, QuotasSchema, RateCategoryMetadataSchema, RelatedSchema, ReportAggregationSchema, ReportSchema, ReportWritableSchema, SaleEmbedSchema, SaleEmbedWritableSchema, SaleOrder, ScanFetchSchema, ScanListSchema, SearchResultAggregationsSchema, SearchResultBaseItemSchema, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritableSchema, SocialSchema, StaffAclSchema, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritableSchema, StaffCreateItemSchema, StaffFiltersSchema, StaffOrder, StaffPreferencesSchema, StaffPreferencesWritableSchema, StaffRestrictedViewSchema, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItemSchema, StaffWritableSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeEstimate, computeInvoice, computeOrder, computeProgressInvoice, convertCompany, convertIndividual, convertModel, corporationStaffAggregationSchema, corporationStaffAggregationWritableSchema, createAccountingCode, createBatch, createCalendarEvent, createClient, createClientWithApiKey, createClients, createComment, createCompany, createCompanyAddress, createCompanyPayment, createConfig, createContact, createContactAddress, createCreditNote, createDepositInvoice, createDirectory, createDiscountInclTaxes, createEsignEstimate, createEsignOrder, createEsignProposalDocument, createEstimate, createIndividual, createIndividualAddress, createIndividualPayment, createInvoice, createItem, createModel, createOpportunity, createOrder, createPersonalAccessTokens, createPhoneCall, createProgressInvoice, createRateCategory, createStaff, createSubscription, createTask, createTax, createWebhook, deleteAccountingCode, deleteCalendarEvent, deleteClients, deleteComment, deleteCompany, deleteCompanyAddress, deleteContact, deleteContactAddress, deleteCustomActivitiesId, deleteDirectory, deleteDiscountInclTaxes, deleteFile, deleteIndividual, deleteIndividualAddress, deleteItem, deleteNotification, deleteOpportunity, deletePayment, deletePersonalAccessTokens, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCrmActivities, fetchClients, fetchPersonalAccessTokens, generateProposalDocument, getAccountSubscription, getAccountingChartsSettings, getAccountingCodes, getAccountingJournal, getAccountsDocuments, getAddresses, getAssignedStaffLabels, getBankAccounts, getCalendarEvent, getCalendarEvents, getCalendarEventsLabels, getCheckLabels, getComment, getComments, getCompanies, getCompany, getCompanyAddress, getCompanyAddresses, getCompanyContacts, getCompanyCustomFields, getCompanyFavouriteFilters, getCompanyFiles, getCompanySmartTags, getContact, getContactAddress, getContactAddresses, getContactCompanies, getContactCustomFields, getContactFavouriteFilters, getContactFiles, getContactSmartTags, getContacts, getCountries, getCreditNote, getCreditNoteCustomFields, getCreditNoteFavouriteFilters, getCreditNoteFiles, getCreditNoteInvoices, getCreditNotePayments, getCreditNoteSmartTags, getCreditNotes, getCrmActivities, getCurrencies, getCustomActivities, getCustomActivitiesId, getCustomActivityTypes, getCustomActivityTypesId, getCustomField, getCustomFields, getDepositInvoice, getDepositInvoiceCreditNotes, getDepositInvoiceCustomFields, getDepositInvoiceFiles, getDepositInvoicePayments, getDepositInvoiceSmartTags, getDepositInvoices, getDirectory, getDirectoryFiles, getDiscountInclTaxes, getDiscountsInclTaxes, getDocumentLayouts, getEmail, getEmailDomainDnsData, getEmailSettings, getEmailSignatureTags, getEmailTemplate, getEmailTemplateTags, getEmailTemplateWithContent, getEmailTemplates, getEmailThread, getEsignEstimate, getEsignOrder, getEsignProposalDocument, getEstimate, getEstimateCustomFields, getEstimateFavouriteFilters, getEstimateFiles, getEstimatePayments, getEstimateSmartTags, getEstimates, getFile, getFiscalYears, getIndividual, getIndividualAddress, getIndividualAddresses, getIndividualContacts, getIndividualCustomFields, getIndividualFavouriteFilters, getIndividualFiles, getIndividualSmartTags, getIndividuals, getInvoice, getInvoiceCreditNotes, getInvoiceCustomFields, getInvoiceFavouriteFilters, getInvoiceFiles, getInvoicePayments, getInvoiceSmartTags, getInvoices, getInvoicingConformityState, getItem, getItemDeclinationPrices, getItemDeclinations, getItemFavouriteFilters, getItemPrices, getItems, getLanguages, getMandates, getModel, getModelTags, getModels, getNotifications, getNotificationsSettings, getOcrPurInvoice, getOcrPurInvoiceMetas, getOpportunities, getOpportunitiesCategories, getOpportunitiesCategory, getOpportunity, getOpportunityCategorySources, getOpportunityCustomFields, getOpportunityFavouriteFilters, getOpportunityFiles, getOpportunityPipelineSteps, getOpportunityPipelines, getOpportunitySmartTags, getOpportunitySources, getOrder, getOrderCustomFields, getOrderFavouriteFilters, getOrderFiles, getOrderPayments, getOrderSmartTags, getOrders, getPayment, getPaymentMethod, getPaymentMethods, getPaymentTerms, getPayments, getPhoneCall, getPhoneCalls, getPrimes, getProfiles, getProposalDocument, getProposalModel, getProposalsModels, getQuotas, getRateCategories, getRateCategory, getScopes, getScopesTree, getStaff, getStaffs, getSubscription, getSubscriptions, getSubscriptionsPaymentInstallments, getSystemEmailTemplateWithContent, getTask, getTasks, getTasksLabels, getTax, getTaxAccountingChart, getTaxes, getTaxesAccountingCharts, getTeams, getUnits, getWebhook, getWebhookEvents, getWebhooks, linkCompanyContact, linkCompanySmartTags, linkContactSmartTags, linkCreditNoteDiscountInclTaxes, linkCreditNotePayment, linkCreditNotePrime, linkCreditNoteSmartTags, linkCreditNoteToInvoice, linkDepositInvoicePayment, linkDepositInvoiceSmartTags, linkEstimateDiscountInclTaxes, linkEstimatePayment, linkEstimatePrime, linkEstimateSmartTags, linkIndividualContact, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, listPersonalAccessTokens, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, personalAccessTokensMeta, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchMandates, searchModels, searchNotifications, searchOcrPurInvoice, searchOpportunities, searchOpportunityPipelineSteps, searchOpportunityPipelines, searchOpportunitySources, searchOrders, searchPaymentMethods, searchPayments, searchPhoneCalls, searchProposalsModels, searchStaffs, searchSubscriptions, searchSubscriptionsPaymentInstallments, searchTasks, searchTaxes, searchTimeline, searchWebhooks, sendEmail, unlinkCompanyContact, unlinkCreditNoteDiscountInclTaxes, unlinkCreditNoteInvoices, unlinkCreditNotePayment, unlinkCreditNotePrime, unlinkDepositInvoicePayment, unlinkEstimateDiscountInclTaxes, unlinkEstimatePayment, unlinkEstimatePrime, unlinkIndividualContact, unlinkInvoiceDiscountInclTaxes, unlinkInvoicePayment, unlinkInvoicePrime, unlinkInvoicesCreditNote, unlinkOrderDiscountInclTaxes, unlinkOrderPayment, unlinkOrderPrime, updateCalendarEvent, updateClients, updateComment, updateCompany, updateCompanyAddress, updateCompanyContact, updateCompanyCustomFields, updateContact, updateContactAddress, updateContactCustomFields, updateCreditNote, updateCreditNoteCustomFields, updateDepositInvoice, updateDepositInvoiceCustomFields, updateDirectory, updateDiscountInclTaxes, updateEstimate, updateEstimateCustomFields, updateEstimateStatus, updateIndividual, updateIndividualAddress, updateIndividualCustomFields, updateInvoice, updateInvoiceCustomFields, updateItem, updateModel, updateOpportunity, updateOpportunityCustomFields, updateOpportunityRank, updateOrder, updateOrderCustomFields, updatePhoneCall, updateProgressInvoice, updateRateCategory, updateStaff, updateTask, updateTax, updateTaxAccountingChart, updateWebhook, uploadCompanyFile, uploadContactFile, uploadCreditNoteFile, uploadDepositInvoiceFile, uploadDirectoryFile, uploadEmailAttachment, uploadEstimateFile, uploadIndividualFile, uploadInvoiceFile, uploadOpportunityFile, uploadOrderFile, validateCreditNote, validateDepositInvoice, validateEmailDomainDns, validateInvoice };
53692
+ export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchUnitInputSchema, CalendarEventCreateItemSchema, CalendarEventFiltersSchema, CalendarEventItemSchema, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItemSchema, CheckLabelOrders, CheckLabelSchema, ClientCreateSchema, ClientCreateWritableSchema, ClientSchema, ClientUpdateSchema, ClientUpdateWritableSchema, ClientWSecretSchema, ClientWSecretWritableSchema, ClientWritableSchema, CommentCreateItemSchema, CommentFiltersSchema, CommentItemSchema, CommentItemWritableSchema, CommentOrder, CommentUpdateItemSchema, CompanyPreferencesSchema, CompanyPreferencesWritableSchema, ComputedProgresssInvoiceSchema, ConsentMarketingSettingsInputSchema, ConsentSettingsInputSchema, ConsentSettingsOuputSchema, ContactCollectionItemSchema, ContactCollectionItemWritableSchema, ContactCreateItemSchema, ContactCreateItemWritableSchema, ContactFiltersSchema, ContactItemSchema, ContactItemWritableSchema, ContactOrders, ContactUpdateItemSchema, ContactUpdateItemWritableSchema, CorporationSubscriptionSchema, CountrySchema, CreateDirectorySchema, CreateItemSchema, CreateModelSchema, CreateModelWritableSchema, CreatePaymentSchema, CreditNoteComputeSchema, CreditNoteComputeWritableSchema, CreditNoteCreateSchema, CreditNoteCreateWritableSchema, CreditNoteFiltersSchema, CreditNoteOneSchema, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdateSchema, CreditNoteUpdateWritableSchema, CreditNoteValidateSchema, CreditNoteWritableSchema, CrmActivityAggregationsSchema, CrmActivityFiltersSchema, CrmActivityMetasSchema, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritableSchema, CurrencySchema, CurrencyWritableSchema, CustomActivityCreateSchema, CustomActivityCreateWritableSchema, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityTypeSchema, CustomActivityTypeWritableSchema, CustomActivityWritableSchema, DealsActivityOrder, DealsBatchSchema, DealsFiltersSchema, DealsSchema, DealsWritableSchema, DeclinationReadSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceFilterSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBodySchema, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInputSchema, EmailTemplateInputSchema, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutputSchema, EmailTemplateOutputSchema, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInputSchema, EmailValidationItemSchema, EmailVerificationInputSchema, EmailVerificationValidateInputSchema, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettingsSchema, EstimateAggregationsSchema, EstimateCollectionSchema, EstimateCollectionWritableSchema, EstimateComputeSchema, EstimateComputeWritableSchema, EstimateCreateSchema, EstimateCreateWritableSchema, EstimateFiltersSchema, EstimateOneEmbedSchema, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdateSchema, EstimateUpdateSchema, EstimateUpdateWritableSchema, EstimateWritableSchema, ExportParamsSchema, FavouriteFiltersOrder, FavouriteFiltersSchema, FileOutputSchema, FileOutputWritableSchema, FiscalYearSchema, ImportModelSchema, ImportPrepareInputSchema, ImportStartInputSchema, ImportType, ImportValidateInputSchema, IndividualPreferencesSchema, IndividualPreferencesWritableSchema, InvoiceComputeSchema, InvoiceComputeWritableSchema, InvoiceCreateSchema, InvoiceCreateWritableSchema, InvoiceFiltersSchema, InvoiceOneSchema, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdateSchema, InvoiceUpdateWritableSchema, InvoiceWritableSchema, InvoicingConformityStateSchema, InvoicingConformityStateWritableSchema, InvoicingPaymentSchema, InvoicingSearchFiltersSchema, InvoicingSearchSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingUserContextSchema, MailchimpSettingsSchema, MailjetSettingsSchema, MarketingAttributeDiffOutputSchema, MarketingAttributeInputSchema, MarketingAttributeOutputSchema, MarketingProvidersSchema, ModelOneSchema, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritableSchema, MoveFileInputSchema, NotificationFiltersSchema, NotificationMarkAsReadSchema, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInputSchema, NotificationSettingsOutputSchema, NotificationWritableSchema, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutputSchema, ObjectiveMetadataSchema, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutputSchema, ObjectiveSearchInputSchema, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInputSchema, OcrOrder, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritableSchema, OnboardingScreenOutputSchema, OpportunitiesAggregationsSchema, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritableSchema, OpportunityCreateSchema, OpportunityFiltersSchema, OpportunityItemSchema, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatchSchema, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdateSchema, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdateSchema, OrderComputeSchema, OrderComputeWritableSchema, OrderCreateSchema, OrderCreateWritableSchema, OrderFiltersSchema, OrderOneSchema, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdateSchema, OrderUpdateWritableSchema, OrderWritableSchema, OwnerSchema, PaginationSchema, PartialEmailHeaderSchema, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritableSchema, PaymentSchema, PaymentTermSchema, PaymentWritableSchema, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItemSchema, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItemSchema, PhoneCallFilterSchema, PhoneCallItemSchema, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItemSchema, PipelineStepFiltersSchema, PipelineStepOrder, PredictPlanSchema, ProfileOrder, ProfilesSchema, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocType, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOneSchema, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritableSchema, ProposalDocumentSchema, ProposalDocumentWritableSchema, ProposalModelSchema, ProposalModelWritableSchema, QuotasSchema, RateCategoryMetadataSchema, RelatedSchema, ReportAggregationSchema, ReportSchema, ReportWritableSchema, SaleEmbedSchema, SaleEmbedWritableSchema, SaleOrder, ScanFetchSchema, ScanListSchema, SearchResultAggregationsSchema, SearchResultBaseItemSchema, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritableSchema, SocialSchema, StaffAclSchema, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritableSchema, StaffCreateItemSchema, StaffFiltersSchema, StaffOrder, StaffPreferencesSchema, StaffPreferencesWritableSchema, StaffRestrictedViewSchema, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItemSchema, StaffWritableSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeEstimate, computeInvoice, computeOrder, computeProgressInvoice, convertCompany, convertIndividual, convertModel, corporationStaffAggregationSchema, corporationStaffAggregationWritableSchema, createAccountingCode, createBatch, createCalendarEvent, createClient, createClientWithApiKey, createComment, createCompany, createCompanyAddress, createCompanyPayment, createConfig, createContact, createContactAddress, createCreditNote, createDepositInvoice, createDirectory, createDiscountInclTaxes, createEsignEstimate, createEsignOrder, createEsignProposalDocument, createEstimate, createIndividual, createIndividualAddress, createIndividualPayment, createInvoice, createItem, createModel, createOpportunity, createOrder, createPhoneCall, createProgressInvoice, createRateCategory, createStaff, createSubscription, createTask, createTax, createWebhook, deleteAccountingCode, deleteCalendarEvent, deleteClients, deleteComment, deleteCompany, deleteCompanyAddress, deleteContact, deleteContactAddress, deleteCustomActivitiesId, deleteDirectory, deleteDiscountInclTaxes, deleteFile, deleteIndividual, deleteIndividualAddress, deleteItem, deleteNotification, deleteOpportunity, deletePayment, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCrmActivities, fetchClients, generateProposalDocument, getAccountSubscription, getAccountingChartsSettings, getAccountingCodes, getAccountingJournal, getAccountsDocuments, getAddresses, getAssignedStaffLabels, getBankAccounts, getCalendarEvent, getCalendarEvents, getCalendarEventsLabels, getCheckLabels, getComment, getComments, getCompanies, getCompany, getCompanyAddress, getCompanyAddresses, getCompanyContacts, getCompanyCustomFields, getCompanyFavouriteFilters, getCompanyFiles, getCompanySmartTags, getContact, getContactAddress, getContactAddresses, getContactCompanies, getContactCustomFields, getContactFavouriteFilters, getContactFiles, getContactSmartTags, getContacts, getCountries, getCreditNote, getCreditNoteCustomFields, getCreditNoteFavouriteFilters, getCreditNoteFiles, getCreditNoteInvoices, getCreditNotePayments, getCreditNoteSmartTags, getCreditNotes, getCrmActivities, getCurrencies, getCustomActivities, getCustomActivitiesId, getCustomActivityTypes, getCustomActivityTypesId, getCustomField, getCustomFields, getDepositInvoice, getDepositInvoiceCreditNotes, getDepositInvoiceCustomFields, getDepositInvoiceFiles, getDepositInvoicePayments, getDepositInvoiceSmartTags, getDepositInvoices, getDirectory, getDirectoryFiles, getDiscountInclTaxes, getDiscountsInclTaxes, getDocumentLayouts, getEmail, getEmailDomainDnsData, getEmailSettings, getEmailSignatureTags, getEmailTemplate, getEmailTemplateTags, getEmailTemplateWithContent, getEmailTemplates, getEmailThread, getEsignEstimate, getEsignOrder, getEsignProposalDocument, getEstimate, getEstimateCustomFields, getEstimateFavouriteFilters, getEstimateFiles, getEstimatePayments, getEstimateSmartTags, getEstimates, getFile, getFiscalYears, getIndividual, getIndividualAddress, getIndividualAddresses, getIndividualContacts, getIndividualCustomFields, getIndividualFavouriteFilters, getIndividualFiles, getIndividualSmartTags, getIndividuals, getInvoice, getInvoiceCreditNotes, getInvoiceCustomFields, getInvoiceFavouriteFilters, getInvoiceFiles, getInvoicePayments, getInvoiceSmartTags, getInvoices, getInvoicingConformityState, getItem, getItemDeclinationPrices, getItemDeclinations, getItemFavouriteFilters, getItemPrices, getItems, getLanguages, getMandates, getModel, getModelTags, getModels, getNotifications, getNotificationsSettings, getOcrPurInvoice, getOcrPurInvoiceMetas, getOpportunities, getOpportunitiesCategories, getOpportunitiesCategory, getOpportunity, getOpportunityCategorySources, getOpportunityCustomFields, getOpportunityFavouriteFilters, getOpportunityFiles, getOpportunityPipelineSteps, getOpportunityPipelines, getOpportunitySmartTags, getOpportunitySources, getOrder, getOrderCustomFields, getOrderFavouriteFilters, getOrderFiles, getOrderPayments, getOrderSmartTags, getOrders, getPayment, getPaymentMethod, getPaymentMethods, getPaymentTerms, getPayments, getPhoneCall, getPhoneCalls, getPrimes, getProfiles, getProposalDocument, getProposalModel, getProposalsModels, getQuotas, getRateCategories, getRateCategory, getScopes, getScopesTree, getStaff, getStaffs, getSubscription, getSubscriptions, getSubscriptionsPaymentInstallments, getSystemEmailTemplateWithContent, getTask, getTasks, getTasksLabels, getTax, getTaxAccountingChart, getTaxes, getTaxesAccountingCharts, getTeams, getUnits, getWebhook, getWebhookEvents, getWebhooks, linkCompanyContact, linkCompanySmartTags, linkContactSmartTags, linkCreditNoteDiscountInclTaxes, linkCreditNotePayment, linkCreditNotePrime, linkCreditNoteSmartTags, linkCreditNoteToInvoice, linkDepositInvoicePayment, linkDepositInvoiceSmartTags, linkEstimateDiscountInclTaxes, linkEstimatePayment, linkEstimatePrime, linkEstimateSmartTags, linkIndividualContact, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchMandates, searchModels, searchNotifications, searchOcrPurInvoice, searchOpportunities, searchOpportunityPipelineSteps, searchOpportunityPipelines, searchOpportunitySources, searchOrders, searchPaymentMethods, searchPayments, searchPhoneCalls, searchProposalsModels, searchStaffs, searchSubscriptions, searchSubscriptionsPaymentInstallments, searchTasks, searchTaxes, searchTimeline, searchWebhooks, sendEmail, unlinkCompanyContact, unlinkCreditNoteDiscountInclTaxes, unlinkCreditNoteInvoices, unlinkCreditNotePayment, unlinkCreditNotePrime, unlinkDepositInvoicePayment, unlinkEstimateDiscountInclTaxes, unlinkEstimatePayment, unlinkEstimatePrime, unlinkIndividualContact, unlinkInvoiceDiscountInclTaxes, unlinkInvoicePayment, unlinkInvoicePrime, unlinkInvoicesCreditNote, unlinkOrderDiscountInclTaxes, unlinkOrderPayment, unlinkOrderPrime, updateCalendarEvent, updateComment, updateCompany, updateCompanyAddress, updateCompanyContact, updateCompanyCustomFields, updateContact, updateContactAddress, updateContactCustomFields, updateCreditNote, updateCreditNoteCustomFields, updateDepositInvoice, updateDepositInvoiceCustomFields, updateDirectory, updateDiscountInclTaxes, updateEstimate, updateEstimateCustomFields, updateEstimateStatus, updateIndividual, updateIndividualAddress, updateIndividualCustomFields, updateInvoice, updateInvoiceCustomFields, updateItem, updateModel, updateOpportunity, updateOpportunityCustomFields, updateOpportunityRank, updateOrder, updateOrderCustomFields, updatePhoneCall, updateProgressInvoice, updateRateCategory, updateStaff, updateTask, updateTax, updateTaxAccountingChart, updateWebhook, uploadCompanyFile, uploadContactFile, uploadCreditNoteFile, uploadDepositInvoiceFile, uploadDirectoryFile, uploadEmailAttachment, uploadEstimateFile, uploadIndividualFile, uploadInvoiceFile, uploadOpportunityFile, uploadOrderFile, validateCreditNote, validateDepositInvoice, validateEmailDomainDns, validateInvoice };
53746
53693
  //# sourceMappingURL=index.mjs.map