@getyetty-sdk/sellsy 2026.6.5 → 2026.6.18
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.d.mts +1634 -1291
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +157 -39
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6998,6 +6998,13 @@ const SocialSchema = {
|
|
|
6998
6998
|
deprecated: true,
|
|
6999
6999
|
example: "https://viadeo.com/example",
|
|
7000
7000
|
nullable: true
|
|
7001
|
+
},
|
|
7002
|
+
instagram: {
|
|
7003
|
+
type: "string",
|
|
7004
|
+
format: "url",
|
|
7005
|
+
description: "Instagram account",
|
|
7006
|
+
example: "https://www.instagram.com/example",
|
|
7007
|
+
nullable: true
|
|
7001
7008
|
}
|
|
7002
7009
|
}
|
|
7003
7010
|
};
|
|
@@ -16012,6 +16019,24 @@ const EmailSendBatchBodySchema = {
|
|
|
16012
16019
|
}
|
|
16013
16020
|
}
|
|
16014
16021
|
};
|
|
16022
|
+
const EmailDeleteBatchBodySchema = {
|
|
16023
|
+
type: "object",
|
|
16024
|
+
additionalProperties: false,
|
|
16025
|
+
properties: {
|
|
16026
|
+
batch_ids: {
|
|
16027
|
+
type: "array",
|
|
16028
|
+
description: "Identifiers of email batches whose emails should be deleted",
|
|
16029
|
+
items: { type: "integer" },
|
|
16030
|
+
example: [123, 456]
|
|
16031
|
+
},
|
|
16032
|
+
email_ids: {
|
|
16033
|
+
type: "array",
|
|
16034
|
+
description: "Identifiers of individual emails to delete",
|
|
16035
|
+
items: { type: "string" },
|
|
16036
|
+
example: ["a1b2c3", "d4e5f6"]
|
|
16037
|
+
}
|
|
16038
|
+
}
|
|
16039
|
+
};
|
|
16015
16040
|
const PartialEmailHeaderSchema = {
|
|
16016
16041
|
type: "object",
|
|
16017
16042
|
title: "Mail provider error",
|
|
@@ -19609,31 +19634,25 @@ const ScanListSchema = {
|
|
|
19609
19634
|
items: {
|
|
19610
19635
|
type: "object",
|
|
19611
19636
|
properties: {
|
|
19637
|
+
id: {
|
|
19638
|
+
type: "string",
|
|
19639
|
+
description: "Identifier of the company. In case of French company, it corresponds to the SIREN Number",
|
|
19640
|
+
example: "509961074"
|
|
19641
|
+
},
|
|
19612
19642
|
name: {
|
|
19613
19643
|
description: "name of company",
|
|
19614
19644
|
type: "string",
|
|
19615
19645
|
example: "Sellsy"
|
|
19616
19646
|
},
|
|
19617
|
-
siret: {
|
|
19618
|
-
description: "Siret of company",
|
|
19619
|
-
type: "string",
|
|
19620
|
-
example: "82993087400013",
|
|
19621
|
-
nullable: true
|
|
19622
|
-
},
|
|
19623
19647
|
type: {
|
|
19624
19648
|
type: "string",
|
|
19625
19649
|
description: "type of company",
|
|
19626
19650
|
example: "SAS, société par actions simplifiée"
|
|
19627
19651
|
},
|
|
19628
|
-
|
|
19629
|
-
|
|
19630
|
-
description: "Identifier of the company. In case of French company, it corresponds to the SIREN Number",
|
|
19631
|
-
example: "509961074"
|
|
19632
|
-
},
|
|
19633
|
-
job_code: {
|
|
19652
|
+
siret: {
|
|
19653
|
+
description: "Siret of company",
|
|
19634
19654
|
type: "string",
|
|
19635
|
-
|
|
19636
|
-
example: "58.29C",
|
|
19655
|
+
example: "82993087400013",
|
|
19637
19656
|
nullable: true
|
|
19638
19657
|
},
|
|
19639
19658
|
address: {
|
|
@@ -19676,6 +19695,12 @@ const ScanListSchema = {
|
|
|
19676
19695
|
}
|
|
19677
19696
|
}
|
|
19678
19697
|
},
|
|
19698
|
+
job_code: {
|
|
19699
|
+
type: "string",
|
|
19700
|
+
description: "job code of company",
|
|
19701
|
+
example: "58.29C",
|
|
19702
|
+
nullable: true
|
|
19703
|
+
},
|
|
19679
19704
|
company_employee_range: {
|
|
19680
19705
|
type: "string",
|
|
19681
19706
|
description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")",
|
|
@@ -19690,10 +19715,10 @@ const ScanFetchSchema = {
|
|
|
19690
19715
|
title: "Search results",
|
|
19691
19716
|
description: "Detailed answer for a company returned via the scan route",
|
|
19692
19717
|
properties: {
|
|
19693
|
-
|
|
19694
|
-
description: "name of company",
|
|
19718
|
+
id: {
|
|
19695
19719
|
type: "string",
|
|
19696
|
-
|
|
19720
|
+
description: "Identifier of the company. In case of French company, it corresponds to the SIREN Number",
|
|
19721
|
+
example: "509961074"
|
|
19697
19722
|
},
|
|
19698
19723
|
siret: {
|
|
19699
19724
|
description: "Siret of company",
|
|
@@ -19701,15 +19726,30 @@ const ScanFetchSchema = {
|
|
|
19701
19726
|
example: "82993087400013",
|
|
19702
19727
|
nullable: true
|
|
19703
19728
|
},
|
|
19729
|
+
name: {
|
|
19730
|
+
description: "name of company",
|
|
19731
|
+
type: "string",
|
|
19732
|
+
example: "Sellsy"
|
|
19733
|
+
},
|
|
19734
|
+
company_sign: {
|
|
19735
|
+
type: "string",
|
|
19736
|
+
description: "Sign of company",
|
|
19737
|
+
nullable: true
|
|
19738
|
+
},
|
|
19704
19739
|
type: {
|
|
19705
19740
|
type: "string",
|
|
19706
19741
|
description: "type of company",
|
|
19707
19742
|
example: "SAS, société par actions simplifiée"
|
|
19708
19743
|
},
|
|
19709
|
-
|
|
19744
|
+
rcs: {
|
|
19710
19745
|
type: "string",
|
|
19711
|
-
description: "
|
|
19712
|
-
|
|
19746
|
+
description: "RCS of company",
|
|
19747
|
+
nullable: true
|
|
19748
|
+
},
|
|
19749
|
+
vat: {
|
|
19750
|
+
type: "string",
|
|
19751
|
+
description: "VAT of company",
|
|
19752
|
+
nullable: true
|
|
19713
19753
|
},
|
|
19714
19754
|
job_code: {
|
|
19715
19755
|
type: "string",
|
|
@@ -19717,6 +19757,12 @@ const ScanFetchSchema = {
|
|
|
19717
19757
|
example: "58.29C",
|
|
19718
19758
|
nullable: true
|
|
19719
19759
|
},
|
|
19760
|
+
company_employee_range: {
|
|
19761
|
+
type: "string",
|
|
19762
|
+
description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")",
|
|
19763
|
+
example: "3-5",
|
|
19764
|
+
nullable: true
|
|
19765
|
+
},
|
|
19720
19766
|
address: {
|
|
19721
19767
|
type: "object",
|
|
19722
19768
|
properties: {
|
|
@@ -19757,6 +19803,53 @@ const ScanFetchSchema = {
|
|
|
19757
19803
|
}
|
|
19758
19804
|
}
|
|
19759
19805
|
},
|
|
19806
|
+
business_email: {
|
|
19807
|
+
type: "string",
|
|
19808
|
+
description: "Company email",
|
|
19809
|
+
example: "contact@example-company.com",
|
|
19810
|
+
nullable: true
|
|
19811
|
+
},
|
|
19812
|
+
business_phone: {
|
|
19813
|
+
type: "string",
|
|
19814
|
+
description: "Company phone number",
|
|
19815
|
+
example: "+33100000000",
|
|
19816
|
+
nullable: true
|
|
19817
|
+
},
|
|
19818
|
+
urls: {
|
|
19819
|
+
type: "object",
|
|
19820
|
+
properties: {
|
|
19821
|
+
website: {
|
|
19822
|
+
type: "string",
|
|
19823
|
+
description: "Website URL of the company",
|
|
19824
|
+
example: "https://www.example.com",
|
|
19825
|
+
nullable: true
|
|
19826
|
+
},
|
|
19827
|
+
facebook: {
|
|
19828
|
+
type: "string",
|
|
19829
|
+
description: "Facebook URL of the company",
|
|
19830
|
+
example: "https://www.facebook.com/example",
|
|
19831
|
+
nullable: true
|
|
19832
|
+
},
|
|
19833
|
+
instagram: {
|
|
19834
|
+
type: "string",
|
|
19835
|
+
description: "Instagram URL of the company",
|
|
19836
|
+
example: "https://www.instagram.com/example",
|
|
19837
|
+
nullable: true
|
|
19838
|
+
},
|
|
19839
|
+
linkedin: {
|
|
19840
|
+
type: "string",
|
|
19841
|
+
description: "LinkedIn URL of the company",
|
|
19842
|
+
example: "https://linkedin.com/example",
|
|
19843
|
+
nullable: true
|
|
19844
|
+
},
|
|
19845
|
+
twitter: {
|
|
19846
|
+
type: "string",
|
|
19847
|
+
description: "Twitter URL of the company",
|
|
19848
|
+
example: "https://twitter.com/example",
|
|
19849
|
+
nullable: true
|
|
19850
|
+
}
|
|
19851
|
+
}
|
|
19852
|
+
},
|
|
19760
19853
|
officers: {
|
|
19761
19854
|
type: "array",
|
|
19762
19855
|
nullable: true,
|
|
@@ -19801,26 +19894,37 @@ const ScanFetchSchema = {
|
|
|
19801
19894
|
}
|
|
19802
19895
|
}
|
|
19803
19896
|
},
|
|
19804
|
-
|
|
19897
|
+
einvoicing_status: {
|
|
19805
19898
|
type: "string",
|
|
19806
|
-
|
|
19807
|
-
|
|
19808
|
-
|
|
19809
|
-
|
|
19810
|
-
|
|
19811
|
-
description: "
|
|
19812
|
-
nullable: true
|
|
19813
|
-
},
|
|
19814
|
-
company_sign: {
|
|
19815
|
-
type: "string",
|
|
19816
|
-
description: "Sign of company",
|
|
19817
|
-
nullable: true
|
|
19899
|
+
enum: [
|
|
19900
|
+
"registered_inactive",
|
|
19901
|
+
"registered_active",
|
|
19902
|
+
"unregistered"
|
|
19903
|
+
],
|
|
19904
|
+
description: "Registration status of the entity in the French e-invoicing directory.\n\n- `unregistered`: Not registered in the e-invoicing directory.\n- `registered_active`: Registered with a valid e-invoicing routing address.\n- `registered_inactive`: Registered but without a valid e-invoicing routing address.\n"
|
|
19818
19905
|
},
|
|
19819
|
-
|
|
19820
|
-
|
|
19821
|
-
|
|
19822
|
-
|
|
19823
|
-
|
|
19906
|
+
einvoicing_electronic_addresses: {
|
|
19907
|
+
nullable: true,
|
|
19908
|
+
type: "array",
|
|
19909
|
+
description: "E-invoicing routing addresses listed for the company in the French e-invoicing directory. Null when no routing address is available.",
|
|
19910
|
+
items: {
|
|
19911
|
+
title: "RoutingAddress",
|
|
19912
|
+
type: "object",
|
|
19913
|
+
description: "Electronic invoicing routing address listed in the French electronic invoicing directory.",
|
|
19914
|
+
properties: {
|
|
19915
|
+
id: {
|
|
19916
|
+
type: "string",
|
|
19917
|
+
description: "Routing address identifier.",
|
|
19918
|
+
example: "390199669_39019966900081"
|
|
19919
|
+
},
|
|
19920
|
+
is_active: {
|
|
19921
|
+
type: "boolean",
|
|
19922
|
+
description: "Whether the routing address is active.",
|
|
19923
|
+
example: true
|
|
19924
|
+
}
|
|
19925
|
+
},
|
|
19926
|
+
required: ["id", "is_active"]
|
|
19927
|
+
}
|
|
19824
19928
|
}
|
|
19825
19929
|
}
|
|
19826
19930
|
};
|
|
@@ -59522,6 +59626,20 @@ const createModel = (options) => (options?.client ?? client).post({
|
|
|
59522
59626
|
}
|
|
59523
59627
|
});
|
|
59524
59628
|
/**
|
|
59629
|
+
* Delete document model
|
|
59630
|
+
*
|
|
59631
|
+
* Delete a document model <div style="padding:17px; font-wright:bold; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>This route is available in open beta.</b><br />Please note that its specifications are potentially subject to significant and breaking changes in the coming weeks.</div>
|
|
59632
|
+
*
|
|
59633
|
+
*/
|
|
59634
|
+
const deleteModel = (options) => (options.client ?? client).delete({
|
|
59635
|
+
security: [{
|
|
59636
|
+
scheme: "bearer",
|
|
59637
|
+
type: "http"
|
|
59638
|
+
}],
|
|
59639
|
+
url: "/documents/models/{id}",
|
|
59640
|
+
...options
|
|
59641
|
+
});
|
|
59642
|
+
/**
|
|
59525
59643
|
* Get document model
|
|
59526
59644
|
*
|
|
59527
59645
|
* Get a document model <div style="padding:17px; font-wright:bold; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>This route is available in open beta.</b><br />Please note that its specifications are potentially subject to significant and breaking changes in the coming weeks.</div>
|
|
@@ -60573,5 +60691,5 @@ function createClientWithApiKey(apiKey) {
|
|
|
60573
60691
|
}
|
|
60574
60692
|
|
|
60575
60693
|
//#endregion
|
|
60576
|
-
export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodeSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchAssignedStaffLabelInputSchema, 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, DeliveryFiltersSchema, DeliveryOneSchema, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritableSchema, DepositInvoiceComputeInputSchema, DepositInvoiceComputeInputWritableSchema, DepositInvoiceComputeOutputSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceDocType, DepositInvoiceFilterSchema, DepositInvoiceMetadataSchema, DepositInvoiceMetadataWritableSchema, 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, EmailSendBatchBodySchema, 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, GenerateBackupCodeInputSchema, 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, InvoicingSettingsMetadataSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingCollectionExportStartSchema, ListingExportItemSchema, ListingExportRescheduleSchema, ListingExportStartSchema, ListingExportUpdateSchema, 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, PaymentProviderSchema, 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, StancerSettingsSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritableSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WarehouseSchema, WarehouseWritableSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeDepositInvoice, 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, exportCompanies, exportContacts, exportCrmActivities, exportEstimates, exportExports, exportInvoices, exportOpportunities, 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, getDeliveries, getDelivery, 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, getGocardlessDirectdebitTimeline, 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, getListingExport, 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, getProformaInvoiceCustomFields, 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, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, listListingExports, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, purCreditNoteOneSchema, purCreditNoteOneWritableSchema, purDeliveryOneSchema, purDeliveryOneWritableSchema, purInvoiceOneSchema, purInvoiceOneWritableSchema, purOrderOneSchema, purOrderOneWritableSchema, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, rescheduleListingExport, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDeliveries, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchListingExports, 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, 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, updateListingExport, 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 };
|
|
60694
|
+
export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodeSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchAssignedStaffLabelInputSchema, 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, DeliveryFiltersSchema, DeliveryOneSchema, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritableSchema, DepositInvoiceComputeInputSchema, DepositInvoiceComputeInputWritableSchema, DepositInvoiceComputeOutputSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceDocType, DepositInvoiceFilterSchema, DepositInvoiceMetadataSchema, DepositInvoiceMetadataWritableSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailDeleteBatchBodySchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBatchBodySchema, 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, GenerateBackupCodeInputSchema, 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, InvoicingSettingsMetadataSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingCollectionExportStartSchema, ListingExportItemSchema, ListingExportRescheduleSchema, ListingExportStartSchema, ListingExportUpdateSchema, 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, PaymentProviderSchema, 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, StancerSettingsSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritableSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WarehouseSchema, WarehouseWritableSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeDepositInvoice, 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, deleteModel, deleteNotification, deleteOpportunity, deletePayment, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCompanies, exportContacts, exportCrmActivities, exportEstimates, exportExports, exportInvoices, exportOpportunities, 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, getDeliveries, getDelivery, 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, getGocardlessDirectdebitTimeline, 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, getListingExport, 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, getProformaInvoiceCustomFields, 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, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, listListingExports, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, purCreditNoteOneSchema, purCreditNoteOneWritableSchema, purDeliveryOneSchema, purDeliveryOneWritableSchema, purInvoiceOneSchema, purInvoiceOneWritableSchema, purOrderOneSchema, purOrderOneWritableSchema, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, rescheduleListingExport, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDeliveries, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchListingExports, 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, 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, updateListingExport, 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 };
|
|
60577
60695
|
//# sourceMappingURL=index.mjs.map
|