@getyetty-sdk/sellsy 2026.5.8 → 2026.5.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 +43 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +15 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -60082,6 +60082,40 @@ type SearchMandatesResponses = {
|
|
|
60082
60082
|
};
|
|
60083
60083
|
};
|
|
60084
60084
|
type SearchMandatesResponse = SearchMandatesResponses[keyof SearchMandatesResponses];
|
|
60085
|
+
type GetGocardlessDirectdebitTimelineData = {
|
|
60086
|
+
body?: never;
|
|
60087
|
+
path: {
|
|
60088
|
+
/**
|
|
60089
|
+
* Directdebit identifier
|
|
60090
|
+
*/
|
|
60091
|
+
id: number;
|
|
60092
|
+
};
|
|
60093
|
+
query?: never;
|
|
60094
|
+
url: '/gocardless/directdebit/{id}/timeline';
|
|
60095
|
+
};
|
|
60096
|
+
type GetGocardlessDirectdebitTimelineResponses = {
|
|
60097
|
+
/**
|
|
60098
|
+
* GoCardless Directdebit Timeline
|
|
60099
|
+
*
|
|
60100
|
+
* GoCardless directdebit timeline fetched
|
|
60101
|
+
*/
|
|
60102
|
+
200: {
|
|
60103
|
+
/**
|
|
60104
|
+
* Ordered list of all past statuses
|
|
60105
|
+
*/
|
|
60106
|
+
history: Array<{
|
|
60107
|
+
/**
|
|
60108
|
+
* Directdebit status
|
|
60109
|
+
*/
|
|
60110
|
+
status: 'pending_submission' | 'created' | 'submitted' | 'customer_approval_granted' | 'customer_approval_denied' | 'confirmed' | 'cancelled' | 'failed' | 'charged_back' | 'paid_out' | 'chargeback_cancelled' | 'late_failure_settled' | 'chargeback_settled' | 'resubmission_requested' | 'surcharge_fee_debited' | 'sds_settlement_delayed';
|
|
60111
|
+
/**
|
|
60112
|
+
* Date of status change
|
|
60113
|
+
*/
|
|
60114
|
+
date: string;
|
|
60115
|
+
}>;
|
|
60116
|
+
};
|
|
60117
|
+
};
|
|
60118
|
+
type GetGocardlessDirectdebitTimelineResponse = GetGocardlessDirectdebitTimelineResponses[keyof GetGocardlessDirectdebitTimelineResponses];
|
|
60085
60119
|
type GetModelsData = {
|
|
60086
60120
|
body?: never;
|
|
60087
60121
|
path?: never;
|
|
@@ -60158,7 +60192,7 @@ type UpdateModelData = {
|
|
|
60158
60192
|
* Invoice's owner (staff id)
|
|
60159
60193
|
*/
|
|
60160
60194
|
owner_id?: number;
|
|
60161
|
-
rows?: Array<
|
|
60195
|
+
rows?: Array<_heyapi_2204_> | null;
|
|
60162
60196
|
};
|
|
60163
60197
|
path: {
|
|
60164
60198
|
/**
|
|
@@ -117537,6 +117571,13 @@ declare const getMandates: <ThrowOnError extends boolean = false>(options?: Opti
|
|
|
117537
117571
|
*
|
|
117538
117572
|
*/
|
|
117539
117573
|
declare const searchMandates: <ThrowOnError extends boolean = false>(options?: Options<SearchMandatesData, ThrowOnError>) => RequestResult<SearchMandatesResponses, SearchMandatesErrors, ThrowOnError, "fields">;
|
|
117574
|
+
/**
|
|
117575
|
+
* Get timeline of a GoCardless directdebit
|
|
117576
|
+
*
|
|
117577
|
+
* Get timeline of a GoCardless directdebit <div style="padding:17px; 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 may be subject to significant and breaking changes in the coming weeks.</div>
|
|
117578
|
+
*
|
|
117579
|
+
*/
|
|
117580
|
+
declare const getGocardlessDirectdebitTimeline: <ThrowOnError extends boolean = false>(options: Options<GetGocardlessDirectdebitTimelineData, ThrowOnError>) => RequestResult<GetGocardlessDirectdebitTimelineResponses, unknown, ThrowOnError, "fields">;
|
|
117540
117581
|
/**
|
|
117541
117582
|
* List document models
|
|
117542
117583
|
*
|
|
@@ -117872,5 +117913,5 @@ declare const createEsignProposalDocument: <ThrowOnError extends boolean = false
|
|
|
117872
117913
|
//#region src/index.d.ts
|
|
117873
117914
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
117874
117915
|
//#endregion
|
|
117875
|
-
export { AccountDocumentCollection, AccountDocumentCollectionSchema, AccountDocumentCollectionWritable, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregations, AccountingAggregationsSchema, AccountingCode, AccountingCodeCreate, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritable, AccountingCodeWritableSchema, AccountingEmbed, AccountingJournal, AccountingJournalExportParams, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritable, AccountingJournalWritableSchema, AccountingMetas, AccountingMetasSchema, AccountingOrder, ActivateInvoicingConformityData, ActivateInvoicingConformityErrors, ActivateInvoicingConformityResponse, ActivateInvoicingConformityResponses, Activity, ActivityEmbed, ActivityFilters, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritable, ActivityWritableSchema, Address, AddressCreate, AddressCreateSchema, AddressSchema, AddressUpdate, AddressUpdateSchema, AddressWritable, AddressWritableSchema, AdyenSettings, AdyenSettingsSchema, AssignedStaffLabel, AssignedStaffLabelEmbed, AssignedStaffLabelSchema, Autocomplete, AutocompleteSmartTagsData, AutocompleteSmartTagsResponse, AutocompleteSmartTagsResponses, BackupCode, BackupCodeSchema, BackupCodes, BackupCodesSchema, BankAccount, BankAccountSchema, BankAccountWritable, BankAccountWritableSchema, BarcodeReadItem, BarcodeReadItemSchema, BatchAssignedStaffLabelInput, BatchAssignedStaffLabelInputSchema, BatchUnitInput, BatchUnitInputSchema, CalendarEventCreateItem, CalendarEventCreateItemSchema, CalendarEventEmbed, CalendarEventFilters, CalendarEventFiltersSchema, CalendarEventItem, CalendarEventItemSchema, CalendarEventItemWritable, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItem, CalendarEventUpdateItemSchema, CancelEsignEstimateData, CancelEsignEstimateResponse, CancelEsignEstimateResponses, CancelEsignOrderData, CancelEsignOrderResponse, CancelEsignOrderResponses, CancelEsignProposalDocumentData, CancelEsignProposalDocumentResponse, CancelEsignProposalDocumentResponses, CheckLabel, CheckLabelEmbed, CheckLabelOrders, CheckLabelSchema, type Client, ClientCreate, ClientCreateSchema, ClientCreateWritable, ClientCreateWritableSchema, type ClientOptions, ClientSchema, ClientUpdate, ClientUpdateSchema, ClientUpdateWritable, ClientUpdateWritableSchema, ClientWSecret, ClientWSecretSchema, ClientWSecretWritable, ClientWSecretWritableSchema, ClientWritable, ClientWritableSchema, CommentCreateItem, CommentCreateItemSchema, CommentFilters, CommentFiltersSchema, CommentItem, CommentItemEmbed, CommentItemSchema, CommentItemWritable, CommentItemWritableSchema, CommentOrder, CommentUpdateItem, CommentUpdateItemSchema, CompanyPreferences, CompanyPreferencesSchema, CompanyPreferencesWritable, CompanyPreferencesWritableSchema, ComputeCreditNoteData, ComputeCreditNoteResponse, ComputeCreditNoteResponses, ComputeDepositInvoiceData, ComputeDepositInvoiceResponse, ComputeDepositInvoiceResponses, ComputeEstimateData, ComputeEstimateResponse, ComputeEstimateResponses, ComputeInvoiceData, ComputeInvoiceResponse, ComputeInvoiceResponses, ComputeOrderData, ComputeOrderResponse, ComputeOrderResponses, ComputeProgressInvoiceData, ComputeProgressInvoiceResponse, ComputeProgressInvoiceResponses, ComputedProgresssInvoice, ComputedProgresssInvoiceSchema, type Config, ConsentMarketingSettingsInput, ConsentMarketingSettingsInputSchema, ConsentSettingsInput, ConsentSettingsInputSchema, ConsentSettingsOuput, ConsentSettingsOuputSchema, ContactCollectionItem, ContactCollectionItemSchema, ContactCollectionItemWritable, ContactCollectionItemWritableSchema, ContactCreateItem, ContactCreateItemSchema, ContactCreateItemWritable, ContactCreateItemWritableSchema, ContactEmbed, ContactFilters, ContactFiltersSchema, ContactItem, ContactItemSchema, ContactItemWritable, ContactItemWritableSchema, ContactOrders, ContactUpdateItem, ContactUpdateItemSchema, ContactUpdateItemWritable, ContactUpdateItemWritableSchema, ConvertCompanyData, ConvertCompanyResponse, ConvertCompanyResponses, ConvertIndividualData, ConvertIndividualResponse, ConvertIndividualResponses, ConvertModelData, ConvertModelResponse, ConvertModelResponses, CorporationStaffAggregation, CorporationStaffAggregationWritable, CorporationStaffEmbed, CorporationSubscription, CorporationSubscriptionSchema, Country, CountrySchema, CreateAccountingCodeData, CreateAccountingCodeErrors, CreateAccountingCodeResponse, CreateAccountingCodeResponses, CreateBatchData, CreateBatchResponse, CreateBatchResponses, CreateCalendarEventData, CreateCalendarEventResponse, CreateCalendarEventResponses, type CreateClientConfig, CreateCommentData, CreateCommentResponse, CreateCommentResponses, CreateCompanyAddressData, CreateCompanyAddressResponse, CreateCompanyAddressResponses, CreateCompanyData, CreateCompanyPaymentData, CreateCompanyPaymentResponse, CreateCompanyPaymentResponses, CreateCompanyResponse, CreateCompanyResponses, CreateContactAddressData, CreateContactAddressResponse, CreateContactAddressResponses, CreateContactData, CreateContactResponse, CreateContactResponses, CreateCreditNoteData, CreateCreditNoteResponse, CreateCreditNoteResponses, CreateDepositInvoiceData, CreateDepositInvoiceResponse, CreateDepositInvoiceResponses, CreateDirectory, CreateDirectoryData, CreateDirectoryErrors, CreateDirectoryResponse, CreateDirectoryResponses, CreateDirectorySchema, CreateDiscountInclTaxesData, CreateDiscountInclTaxesErrors, CreateDiscountInclTaxesResponse, CreateDiscountInclTaxesResponses, CreateEsignEstimateData, CreateEsignEstimateResponse, CreateEsignEstimateResponses, CreateEsignOrderData, CreateEsignOrderResponse, CreateEsignOrderResponses, CreateEsignProposalDocumentData, CreateEsignProposalDocumentResponse, CreateEsignProposalDocumentResponses, CreateEstimateData, CreateEstimateResponse, CreateEstimateResponses, CreateIndividualAddressData, CreateIndividualAddressResponse, CreateIndividualAddressResponses, CreateIndividualData, CreateIndividualPaymentData, CreateIndividualPaymentResponse, CreateIndividualPaymentResponses, CreateIndividualResponse, CreateIndividualResponses, CreateInvoiceData, CreateInvoiceResponse, CreateInvoiceResponses, CreateItem, CreateItemData, CreateItemResponse, CreateItemResponses, CreateItemSchema, CreateModel, CreateModelData, CreateModelResponse, CreateModelResponses, CreateModelSchema, CreateModelWritable, CreateModelWritableSchema, CreateOpportunityData, CreateOpportunityResponse, CreateOpportunityResponses, CreateOrderData, CreateOrderResponse, CreateOrderResponses, CreatePayment, CreatePaymentSchema, CreatePhoneCallData, CreatePhoneCallResponse, CreatePhoneCallResponses, CreateProgressInvoiceData, CreateProgressInvoiceResponse, CreateProgressInvoiceResponses, CreateRateCategoryData, CreateRateCategoryErrors, CreateRateCategoryResponse, CreateRateCategoryResponses, CreateStaffData, CreateStaffResponse, CreateStaffResponses, CreateSubscriptionData, CreateSubscriptionResponse, CreateSubscriptionResponses, CreateTaskData, CreateTaskResponse, CreateTaskResponses, CreateTaxData, CreateTaxResponse, CreateTaxResponses, CreateWebhookData, CreateWebhookResponse, CreateWebhookResponses, CreditNote, CreditNoteCompute, CreditNoteComputeSchema, CreditNoteComputeWritable, CreditNoteComputeWritableSchema, CreditNoteCreate, CreditNoteCreateSchema, CreditNoteCreateWritable, CreditNoteCreateWritableSchema, CreditNoteEmbed, CreditNoteFilters, CreditNoteFiltersSchema, CreditNoteOne, CreditNoteOneEmbed, CreditNoteOneSchema, CreditNoteOneWritable, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdate, CreditNoteUpdateSchema, CreditNoteUpdateWritable, CreditNoteUpdateWritableSchema, CreditNoteValidate, CreditNoteValidateSchema, CreditNoteWritable, CreditNoteWritableSchema, CrmActivity, CrmActivityAggregations, CrmActivityAggregationsSchema, CrmActivityEmbed, CrmActivityFilters, CrmActivityFiltersSchema, CrmActivityMetas, CrmActivityMetasSchema, CrmActivityMetasWritable, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritable, CrmActivityWritableSchema, Currency, CurrencySchema, CurrencyWritable, CurrencyWritableSchema, CustomActivity, CustomActivityCreate, CustomActivityCreateSchema, CustomActivityCreateWritable, CustomActivityCreateWritableSchema, CustomActivityFilters, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityType, CustomActivityTypeSchema, CustomActivityTypeWritable, CustomActivityTypeWritableSchema, CustomActivityWritable, CustomActivityWritableSchema, Deals, DealsActivityOrder, DealsBatch, DealsBatchSchema, DealsFilters, DealsFiltersSchema, DealsSchema, DealsWritable, DealsWritableSchema, DeclinationRead, DeclinationReadSchema, DeleteAccountingCodeData, DeleteAccountingCodeErrors, DeleteAccountingCodeResponse, DeleteAccountingCodeResponses, DeleteCalendarEventData, DeleteCalendarEventResponse, DeleteCalendarEventResponses, DeleteClientsData, DeleteClientsResponse, DeleteClientsResponses, DeleteCommentData, DeleteCommentResponse, DeleteCommentResponses, DeleteCompanyAddressData, DeleteCompanyAddressResponse, DeleteCompanyAddressResponses, DeleteCompanyData, DeleteCompanyResponse, DeleteCompanyResponses, DeleteContactAddressData, DeleteContactAddressResponse, DeleteContactAddressResponses, DeleteContactData, DeleteContactResponse, DeleteContactResponses, DeleteCustomActivitiesIdData, DeleteCustomActivitiesIdResponse, DeleteCustomActivitiesIdResponses, DeleteDirectoryData, DeleteDirectoryErrors, DeleteDirectoryResponse, DeleteDirectoryResponses, DeleteDiscountInclTaxesData, DeleteDiscountInclTaxesErrors, DeleteDiscountInclTaxesResponse, DeleteDiscountInclTaxesResponses, DeleteFileData, DeleteFileResponse, DeleteFileResponses, DeleteIndividualAddressData, DeleteIndividualAddressResponse, DeleteIndividualAddressResponses, DeleteIndividualData, DeleteIndividualResponse, DeleteIndividualResponses, DeleteItemData, DeleteItemResponse, DeleteItemResponses, DeleteNotificationData, DeleteNotificationResponse, DeleteNotificationResponses, DeleteOpportunityData, DeleteOpportunityResponse, DeleteOpportunityResponses, DeletePaymentData, DeletePaymentResponse, DeletePaymentResponses, DeletePhoneCallData, DeletePhoneCallResponse, DeletePhoneCallResponses, DeleteRateCategoryData, DeleteRateCategoryResponse, DeleteRateCategoryResponses, DeleteSmartTagsData, DeleteSmartTagsResponses, DeleteStaffLicensesData, DeleteStaffLicensesResponse, DeleteStaffLicensesResponses, DeleteSubscriptionData, DeleteSubscriptionResponse, DeleteSubscriptionResponses, DeleteTaskData, DeleteTaskResponse, DeleteTaskResponses, DeleteTaxData, DeleteTaxResponse, DeleteTaxResponses, DeleteWebhookData, DeleteWebhookResponse, DeleteWebhookResponses, Delivery, DeliveryEmbed, DeliveryEmbedOne, DeliveryFilters, DeliveryFiltersSchema, DeliveryOne, DeliveryOneSchema, DeliveryOneWritable, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritable, DeliveryWritableSchema, DepositInvoiceComputeInput, DepositInvoiceComputeInputSchema, DepositInvoiceComputeInputWritable, DepositInvoiceComputeInputWritableSchema, DepositInvoiceComputeOutput, DepositInvoiceComputeOutputSchema, DepositInvoiceCreate, DepositInvoiceCreateSchema, DepositInvoiceCreateWritable, DepositInvoiceCreateWritableSchema, DepositInvoiceDocType, DepositInvoiceFilter, DepositInvoiceFilterSchema, DepositInvoiceMetadata, DepositInvoiceMetadataSchema, DepositInvoiceMetadataWritable, DepositInvoiceMetadataWritableSchema, DepositInvoiceOne, DepositInvoiceOneSchema, DepositInvoiceOneWritable, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInput, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutput, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdate, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritable, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInput, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInput, DiscountInclTaxesInputSchema, DiscountInclTaxesOutput, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritable, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollection, DocumentLayoutsCollectionSchema, EInvoicingMandate, EInvoicingMandateInput, EInvoicingMandateInputSchema, EInvoicingMandateInputWritable, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutput, EmailAttachmentOutputSchema, EmailAuthenticationItem, EmailAuthenticationItemSchema, EmailEngineItem, EmailEngineItemSchema, EmailEngineItemWritable, EmailEngineItemWritableSchema, EmailItem, EmailItemSchema, EmailItemWritable, EmailItemWritableSchema, EmailProviderMessage, EmailProviderMessageSchema, EmailProviderMessageWritable, EmailProviderMessageWritableSchema, EmailProviderThread, EmailProviderThreadSchema, EmailProviderThreadUpdate, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutput, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritable, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutput, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutput, EmailRecipientsOutputSchema, EmailSendBatchBody, EmailSendBatchBodySchema, EmailSendBody, EmailSendBodySchema, EmailSettings, EmailSettingsInput, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInput, EmailTemplateCreateInputSchema, EmailTemplateInput, EmailTemplateInputSchema, EmailTemplateItemOutput, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritable, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutput, EmailTemplateListItemOutputSchema, EmailTemplateOutput, EmailTemplateOutputSchema, EmailTemplateOutputWritable, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInput, EmailTemplateUpdateInputSchema, EmailValidationItem, EmailValidationItemSchema, EmailVerificationInput, EmailVerificationInputSchema, EmailVerificationValidateInput, EmailVerificationValidateInputSchema, EmailVerificationValidateOutput, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettings, EsignSettingsSchema, Estimate, EstimateAggregations, EstimateAggregationsSchema, EstimateCollection, EstimateCollectionSchema, EstimateCollectionWritable, EstimateCollectionWritableSchema, EstimateCompute, EstimateComputeSchema, EstimateComputeWritable, EstimateComputeWritableSchema, EstimateCreate, EstimateCreateSchema, EstimateCreateWritable, EstimateCreateWritableSchema, EstimateFilters, EstimateFiltersSchema, EstimateOne, EstimateOneEmbed, EstimateOneEmbed2, EstimateOneEmbedSchema, EstimateOneEmbedWritable, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritable, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdate, EstimateStatusUpdateSchema, EstimateUpdate, EstimateUpdateSchema, EstimateUpdateWritable, EstimateUpdateWritableSchema, EstimateWritable, EstimateWritableSchema, ExportAccountingJournalData, ExportAccountingJournalResponses, ExportCompaniesData, ExportCompaniesResponse, ExportCompaniesResponses, ExportContactsData, ExportContactsResponse, ExportContactsResponses, ExportCrmActivitiesData, ExportCrmActivitiesResponses, ExportEstimatesData, ExportEstimatesResponse, ExportEstimatesResponses, ExportExportsData, ExportExportsResponse, ExportExportsResponses, ExportInvoicesData, ExportInvoicesResponse, ExportInvoicesResponses, ExportOpportunitiesData, ExportOpportunitiesResponse, ExportOpportunitiesResponses, ExportParams, ExportParamsSchema, FavouriteFilters, FavouriteFiltersOrder, FavouriteFiltersSchema, FetchClientsData, FetchClientsResponse, FetchClientsResponses, Fields, FileOutput, FileOutputSchema, FileOutputWritable, FileOutputWritableSchema, FiscalYear, FiscalYearSchema, GenerateBackupCodeInput, GenerateBackupCodeInputSchema, GenerateProposalDocumentData, GenerateProposalDocumentResponse, GenerateProposalDocumentResponses, GetAccountSubscriptionData, GetAccountSubscriptionResponse, GetAccountSubscriptionResponses, GetAccountingChartsSettingsData, GetAccountingChartsSettingsResponse, GetAccountingChartsSettingsResponses, GetAccountingCodesData, GetAccountingCodesResponse, GetAccountingCodesResponses, GetAccountingJournalData, GetAccountingJournalResponse, GetAccountingJournalResponses, GetAccountsDocumentsData, GetAccountsDocumentsResponse, GetAccountsDocumentsResponses, GetAddressesData, GetAddressesResponse, GetAddressesResponses, GetAssignedStaffLabelsData, GetAssignedStaffLabelsResponse, GetAssignedStaffLabelsResponses, GetBankAccountsData, GetBankAccountsResponse, GetBankAccountsResponses, GetCalendarEventData, GetCalendarEventResponse, GetCalendarEventResponses, GetCalendarEventsData, GetCalendarEventsLabelsData, GetCalendarEventsLabelsResponse, GetCalendarEventsLabelsResponses, GetCalendarEventsResponse, GetCalendarEventsResponses, GetCheckLabelsData, GetCheckLabelsResponse, GetCheckLabelsResponses, GetCommentData, GetCommentResponse, GetCommentResponses, GetCommentsData, GetCommentsResponse, GetCommentsResponses, GetCompaniesData, GetCompaniesResponse, GetCompaniesResponses, GetCompanyAddressData, GetCompanyAddressResponse, GetCompanyAddressResponses, GetCompanyAddressesData, GetCompanyAddressesResponse, GetCompanyAddressesResponses, GetCompanyContactsData, GetCompanyContactsResponse, GetCompanyContactsResponses, GetCompanyCustomFieldsData, GetCompanyCustomFieldsResponse, GetCompanyCustomFieldsResponses, GetCompanyData, GetCompanyFavouriteFiltersData, GetCompanyFavouriteFiltersResponse, GetCompanyFavouriteFiltersResponses, GetCompanyFilesData, GetCompanyFilesResponse, GetCompanyFilesResponses, GetCompanyResponse, GetCompanyResponses, GetCompanySmartTagsData, GetCompanySmartTagsResponse, GetCompanySmartTagsResponses, GetContactAddressData, GetContactAddressResponse, GetContactAddressResponses, GetContactAddressesData, GetContactAddressesResponse, GetContactAddressesResponses, GetContactCompaniesData, GetContactCompaniesResponse, GetContactCompaniesResponses, GetContactCustomFieldsData, GetContactCustomFieldsResponse, GetContactCustomFieldsResponses, GetContactData, GetContactFavouriteFiltersData, GetContactFavouriteFiltersResponse, GetContactFavouriteFiltersResponses, GetContactFilesData, GetContactFilesResponse, GetContactFilesResponses, GetContactResponse, GetContactResponses, GetContactSmartTagsData, GetContactSmartTagsResponse, GetContactSmartTagsResponses, GetContactsData, GetContactsResponse, GetContactsResponses, GetCountriesData, GetCountriesResponse, GetCountriesResponses, GetCreditNoteCustomFieldsData, GetCreditNoteCustomFieldsResponse, GetCreditNoteCustomFieldsResponses, GetCreditNoteData, GetCreditNoteFavouriteFiltersData, GetCreditNoteFavouriteFiltersResponse, GetCreditNoteFavouriteFiltersResponses, GetCreditNoteFilesData, GetCreditNoteFilesResponse, GetCreditNoteFilesResponses, GetCreditNoteInvoicesData, GetCreditNoteInvoicesResponse, GetCreditNoteInvoicesResponses, GetCreditNotePaymentsData, GetCreditNotePaymentsResponse, GetCreditNotePaymentsResponses, GetCreditNoteResponse, GetCreditNoteResponses, GetCreditNoteSmartTagsData, GetCreditNoteSmartTagsResponse, GetCreditNoteSmartTagsResponses, GetCreditNotesData, GetCreditNotesResponse, GetCreditNotesResponses, GetCrmActivitiesData, GetCrmActivitiesResponse, GetCrmActivitiesResponses, GetCurrenciesData, GetCurrenciesResponse, GetCurrenciesResponses, GetCustomActivitiesData, GetCustomActivitiesIdData, GetCustomActivitiesIdResponse, GetCustomActivitiesIdResponses, GetCustomActivitiesResponse, GetCustomActivitiesResponses, GetCustomActivityTypesData, GetCustomActivityTypesIdData, GetCustomActivityTypesIdResponse, GetCustomActivityTypesIdResponses, GetCustomActivityTypesResponse, GetCustomActivityTypesResponses, GetCustomFieldData, GetCustomFieldResponse, GetCustomFieldResponses, GetCustomFieldsData, GetCustomFieldsResponse, GetCustomFieldsResponses, GetDeliveriesData, GetDeliveriesResponse, GetDeliveriesResponses, GetDeliveryData, GetDeliveryResponse, GetDeliveryResponses, GetDepositInvoiceCreditNotesData, GetDepositInvoiceCreditNotesResponse, GetDepositInvoiceCreditNotesResponses, GetDepositInvoiceCustomFieldsData, GetDepositInvoiceCustomFieldsResponse, GetDepositInvoiceCustomFieldsResponses, GetDepositInvoiceData, GetDepositInvoiceFilesData, GetDepositInvoiceFilesResponse, GetDepositInvoiceFilesResponses, GetDepositInvoicePaymentsData, GetDepositInvoicePaymentsResponse, GetDepositInvoicePaymentsResponses, GetDepositInvoiceResponse, GetDepositInvoiceResponses, GetDepositInvoiceSmartTagsData, GetDepositInvoiceSmartTagsResponse, GetDepositInvoiceSmartTagsResponses, GetDepositInvoicesData, GetDepositInvoicesResponse, GetDepositInvoicesResponses, GetDirectoryData, GetDirectoryFilesData, GetDirectoryFilesResponse, GetDirectoryFilesResponses, GetDirectoryResponse, GetDirectoryResponses, GetDiscountInclTaxesData, GetDiscountInclTaxesErrors, GetDiscountInclTaxesResponse, GetDiscountInclTaxesResponses, GetDiscountsInclTaxesData, GetDiscountsInclTaxesErrors, GetDiscountsInclTaxesResponse, GetDiscountsInclTaxesResponses, GetDocumentLayoutsData, GetDocumentLayoutsResponse, GetDocumentLayoutsResponses, GetEmailData, GetEmailDomainDnsDataData, GetEmailDomainDnsDataResponse, GetEmailDomainDnsDataResponses, GetEmailResponse, GetEmailResponses, GetEmailSettingsData, GetEmailSettingsResponse, GetEmailSettingsResponses, GetEmailSignatureTagsData, GetEmailSignatureTagsResponse, GetEmailSignatureTagsResponses, GetEmailTemplateData, GetEmailTemplateResponse, GetEmailTemplateResponses, GetEmailTemplateTagsData, GetEmailTemplateTagsResponse, GetEmailTemplateTagsResponses, GetEmailTemplateWithContentData, GetEmailTemplateWithContentResponse, GetEmailTemplateWithContentResponses, GetEmailTemplatesData, GetEmailTemplatesResponse, GetEmailTemplatesResponses, GetEmailThreadData, GetEmailThreadResponse, GetEmailThreadResponses, GetEsignEstimateData, GetEsignEstimateResponse, GetEsignEstimateResponses, GetEsignOrderData, GetEsignOrderResponse, GetEsignOrderResponses, GetEsignProposalDocumentData, GetEsignProposalDocumentResponse, GetEsignProposalDocumentResponses, GetEstimateCustomFieldsData, GetEstimateCustomFieldsResponse, GetEstimateCustomFieldsResponses, GetEstimateData, GetEstimateErrors, GetEstimateFavouriteFiltersData, GetEstimateFavouriteFiltersResponse, GetEstimateFavouriteFiltersResponses, GetEstimateFilesData, GetEstimateFilesResponse, GetEstimateFilesResponses, GetEstimatePaymentsData, GetEstimatePaymentsResponse, GetEstimatePaymentsResponses, GetEstimateResponse, GetEstimateResponses, GetEstimateSmartTagsData, GetEstimateSmartTagsResponse, GetEstimateSmartTagsResponses, GetEstimatesData, GetEstimatesResponse, GetEstimatesResponses, GetFileData, GetFileResponse, GetFileResponses, GetFiscalYearsData, GetFiscalYearsResponse, GetFiscalYearsResponses, GetIndividualAddressData, GetIndividualAddressResponse, GetIndividualAddressResponses, GetIndividualAddressesData, GetIndividualAddressesResponse, GetIndividualAddressesResponses, GetIndividualContactsData, GetIndividualContactsResponse, GetIndividualContactsResponses, GetIndividualCustomFieldsData, GetIndividualCustomFieldsResponse, GetIndividualCustomFieldsResponses, GetIndividualData, GetIndividualFavouriteFiltersData, GetIndividualFavouriteFiltersResponse, GetIndividualFavouriteFiltersResponses, GetIndividualFilesData, GetIndividualFilesResponse, GetIndividualFilesResponses, GetIndividualResponse, GetIndividualResponses, GetIndividualSmartTagsData, GetIndividualSmartTagsResponse, GetIndividualSmartTagsResponses, GetIndividualsData, GetIndividualsResponse, GetIndividualsResponses, GetInvoiceCreditNotesData, GetInvoiceCreditNotesResponse, GetInvoiceCreditNotesResponses, GetInvoiceCustomFieldsData, GetInvoiceCustomFieldsResponse, GetInvoiceCustomFieldsResponses, GetInvoiceData, GetInvoiceFavouriteFiltersData, GetInvoiceFavouriteFiltersResponse, GetInvoiceFavouriteFiltersResponses, GetInvoiceFilesData, GetInvoiceFilesResponse, GetInvoiceFilesResponses, GetInvoicePaymentsData, GetInvoicePaymentsResponse, GetInvoicePaymentsResponses, GetInvoiceResponse, GetInvoiceResponses, GetInvoiceSmartTagsData, GetInvoiceSmartTagsResponse, GetInvoiceSmartTagsResponses, GetInvoicesData, GetInvoicesResponse, GetInvoicesResponses, GetInvoicingConformityStateData, GetInvoicingConformityStateResponse, GetInvoicingConformityStateResponses, GetItemData, GetItemDeclinationPricesData, GetItemDeclinationPricesResponse, GetItemDeclinationPricesResponses, GetItemDeclinationsData, GetItemDeclinationsResponse, GetItemDeclinationsResponses, GetItemFavouriteFiltersData, GetItemFavouriteFiltersResponse, GetItemFavouriteFiltersResponses, GetItemPricesData, GetItemPricesResponse, GetItemPricesResponses, GetItemResponse, GetItemResponses, GetItemsData, GetItemsResponse, GetItemsResponses, GetLanguagesData, GetLanguagesResponse, GetLanguagesResponses, GetListingExportData, GetListingExportResponse, GetListingExportResponses, GetMandatesData, GetMandatesErrors, GetMandatesResponse, GetMandatesResponses, GetModelData, GetModelResponse, GetModelResponses, GetModelTagsData, GetModelTagsResponse, GetModelTagsResponses, GetModelsData, GetModelsResponse, GetModelsResponses, GetNotificationsData, GetNotificationsResponse, GetNotificationsResponses, GetNotificationsSettingsData, GetNotificationsSettingsResponse, GetNotificationsSettingsResponses, GetOcrPurInvoiceData, GetOcrPurInvoiceMetasData, GetOcrPurInvoiceMetasResponse, GetOcrPurInvoiceMetasResponses, GetOcrPurInvoiceResponse, GetOcrPurInvoiceResponses, GetOpportunitiesCategoriesData, GetOpportunitiesCategoriesResponse, GetOpportunitiesCategoriesResponses, GetOpportunitiesCategoryData, GetOpportunitiesCategoryResponse, GetOpportunitiesCategoryResponses, GetOpportunitiesData, GetOpportunitiesResponse, GetOpportunitiesResponses, GetOpportunityCategorySourcesData, GetOpportunityCategorySourcesResponse, GetOpportunityCategorySourcesResponses, GetOpportunityCustomFieldsData, GetOpportunityCustomFieldsResponse, GetOpportunityCustomFieldsResponses, GetOpportunityData, GetOpportunityFavouriteFiltersData, GetOpportunityFavouriteFiltersResponse, GetOpportunityFavouriteFiltersResponses, GetOpportunityFilesData, GetOpportunityFilesResponse, GetOpportunityFilesResponses, GetOpportunityPipelineStepsData, GetOpportunityPipelineStepsResponse, GetOpportunityPipelineStepsResponses, GetOpportunityPipelinesData, GetOpportunityPipelinesResponse, GetOpportunityPipelinesResponses, GetOpportunityResponse, GetOpportunityResponses, GetOpportunitySmartTagsData, GetOpportunitySmartTagsResponse, GetOpportunitySmartTagsResponses, GetOpportunitySourcesData, GetOpportunitySourcesResponse, GetOpportunitySourcesResponses, GetOrderCustomFieldsData, GetOrderCustomFieldsResponse, GetOrderCustomFieldsResponses, GetOrderData, GetOrderFavouriteFiltersData, GetOrderFavouriteFiltersResponse, GetOrderFavouriteFiltersResponses, GetOrderFilesData, GetOrderFilesResponse, GetOrderFilesResponses, GetOrderPaymentsData, GetOrderPaymentsResponse, GetOrderPaymentsResponses, GetOrderResponse, GetOrderResponses, GetOrderSmartTagsData, GetOrderSmartTagsResponse, GetOrderSmartTagsResponses, GetOrdersData, GetOrdersResponse, GetOrdersResponses, GetPaymentData, GetPaymentMethodData, GetPaymentMethodResponse, GetPaymentMethodResponses, GetPaymentMethodsData, GetPaymentMethodsResponse, GetPaymentMethodsResponses, GetPaymentResponse, GetPaymentResponses, GetPaymentTermsData, GetPaymentTermsResponse, GetPaymentTermsResponses, GetPaymentsData, GetPaymentsResponse, GetPaymentsResponses, GetPhoneCallData, GetPhoneCallResponse, GetPhoneCallResponses, GetPhoneCallsData, GetPhoneCallsResponse, GetPhoneCallsResponses, GetPrimesData, GetPrimesResponse, GetPrimesResponses, GetProfilesData, GetProfilesResponse, GetProfilesResponses, GetProformaInvoiceCustomFieldsData, GetProformaInvoiceCustomFieldsResponse, GetProformaInvoiceCustomFieldsResponses, GetProposalDocumentData, GetProposalDocumentResponse, GetProposalDocumentResponses, GetProposalModelData, GetProposalModelResponse, GetProposalModelResponses, GetProposalsModelsData, GetProposalsModelsResponse, GetProposalsModelsResponses, GetQuotasData, GetQuotasResponse, GetQuotasResponses, GetRateCategoriesData, GetRateCategoriesResponse, GetRateCategoriesResponses, GetRateCategoryData, GetRateCategoryResponse, GetRateCategoryResponses, GetScopesData, GetScopesResponse, GetScopesResponses, GetScopesTreeData, GetScopesTreeResponse, GetScopesTreeResponses, GetStaffData, GetStaffErrors, GetStaffResponse, GetStaffResponses, GetStaffsData, GetStaffsResponse, GetStaffsResponses, GetSubscriptionData, GetSubscriptionResponse, GetSubscriptionResponses, GetSubscriptionsData, GetSubscriptionsPaymentInstallmentsData, GetSubscriptionsPaymentInstallmentsResponse, GetSubscriptionsPaymentInstallmentsResponses, GetSubscriptionsResponse, GetSubscriptionsResponses, GetSystemEmailTemplateWithContentData, GetSystemEmailTemplateWithContentErrors, GetSystemEmailTemplateWithContentResponse, GetSystemEmailTemplateWithContentResponses, GetTaskData, GetTaskResponse, GetTaskResponses, GetTasksData, GetTasksLabelsData, GetTasksLabelsResponse, GetTasksLabelsResponses, GetTasksResponse, GetTasksResponses, GetTaxAccountingChartData, GetTaxAccountingChartResponse, GetTaxAccountingChartResponses, GetTaxData, GetTaxResponse, GetTaxResponses, GetTaxesAccountingChartsData, GetTaxesAccountingChartsResponse, GetTaxesAccountingChartsResponses, GetTaxesData, GetTaxesResponse, GetTaxesResponses, GetTeamsData, GetTeamsResponse, GetTeamsResponses, GetUnitsData, GetUnitsResponse, GetUnitsResponses, GetWebhookData, GetWebhookEventsData, GetWebhookEventsResponse, GetWebhookEventsResponses, GetWebhookResponse, GetWebhookResponses, GetWebhooksData, GetWebhooksResponse, GetWebhooksResponses, ImportModel, ImportModelSchema, ImportPrepareInput, ImportPrepareInputSchema, ImportStartInput, ImportStartInputSchema, ImportType, ImportValidateInput, ImportValidateInputSchema, IndividualPreferences, IndividualPreferencesSchema, IndividualPreferencesWritable, IndividualPreferencesWritableSchema, Invoice, InvoiceCompute, InvoiceComputeSchema, InvoiceComputeWritable, InvoiceComputeWritableSchema, InvoiceCreate, InvoiceCreateSchema, InvoiceCreateWritable, InvoiceCreateWritableSchema, InvoiceEmbed, InvoiceFilters, InvoiceFiltersSchema, InvoiceOne, InvoiceOneEmbed, InvoiceOneSchema, InvoiceOneWritable, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOne, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritable, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdate, InvoiceUpdateSchema, InvoiceUpdateWritable, InvoiceUpdateWritableSchema, InvoiceWritable, InvoiceWritableSchema, InvoicingConformityState, InvoicingConformityStateSchema, InvoicingConformityStateWritable, InvoicingConformityStateWritableSchema, InvoicingPayment, InvoicingPaymentSchema, InvoicingSearch, InvoicingSearchFilters, InvoicingSearchFiltersSchema, InvoicingSearchSchema, InvoicingSettingsMetadata, InvoicingSettingsMetadataSchema, ItemInputPrice, ItemInputPriceSchema, ItemOrder, ItemPrice, ItemPriceSchema, ItemReadItem, ItemReadItemSchema, Label, LabelBaseItem, LabelBaseItemSchema, LabelBaseItemWritable, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritable, LabelWritableSchema, Language, LanguageCollection, LanguageCollectionSchema, LicenseEdit, LicenseEditSchema, LicenseRead, LicenseReadSchema, Limit, LinkCompanyContact, LinkCompanyContactData, LinkCompanyContactResponses, LinkCompanyContactSchema, LinkCompanySmartTagsData, LinkCompanySmartTagsResponse, LinkCompanySmartTagsResponses, LinkContactSmartTagsData, LinkContactSmartTagsResponse, LinkContactSmartTagsResponses, LinkCreditNoteDiscountInclTaxesData, LinkCreditNoteDiscountInclTaxesErrors, LinkCreditNoteDiscountInclTaxesResponses, LinkCreditNotePaymentData, LinkCreditNotePaymentResponse, LinkCreditNotePaymentResponses, LinkCreditNotePrimeData, LinkCreditNotePrimeErrors, LinkCreditNotePrimeResponses, LinkCreditNoteSmartTagsData, LinkCreditNoteSmartTagsResponse, LinkCreditNoteSmartTagsResponses, LinkCreditNoteToInvoiceData, LinkCreditNoteToInvoiceResponse, LinkCreditNoteToInvoiceResponses, LinkDepositInvoicePaymentData, LinkDepositInvoicePaymentResponse, LinkDepositInvoicePaymentResponses, LinkDepositInvoiceSmartTagsData, LinkDepositInvoiceSmartTagsResponse, LinkDepositInvoiceSmartTagsResponses, LinkEstimateDiscountInclTaxesData, LinkEstimateDiscountInclTaxesErrors, LinkEstimateDiscountInclTaxesResponses, LinkEstimatePaymentData, LinkEstimatePaymentResponse, LinkEstimatePaymentResponses, LinkEstimatePrimeData, LinkEstimatePrimeErrors, LinkEstimatePrimeResponses, LinkEstimateSmartTagsData, LinkEstimateSmartTagsResponse, LinkEstimateSmartTagsResponses, LinkIndividualSmartTagsData, LinkIndividualSmartTagsResponse, LinkIndividualSmartTagsResponses, LinkInvoiceDiscountInclTaxesData, LinkInvoiceDiscountInclTaxesErrors, LinkInvoiceDiscountInclTaxesResponses, LinkInvoicePaymentData, LinkInvoicePaymentResponse, LinkInvoicePaymentResponses, LinkInvoicePrimeData, LinkInvoicePrimeErrors, LinkInvoicePrimeResponses, LinkInvoiceSmartTagsData, LinkInvoiceSmartTagsResponse, LinkInvoiceSmartTagsResponses, LinkInvoiceToCreditNoteData, LinkInvoiceToCreditNoteResponse, LinkInvoiceToCreditNoteResponses, LinkOpportunitySmartTagsData, LinkOpportunitySmartTagsResponse, LinkOpportunitySmartTagsResponses, LinkOrderDiscountInclTaxesData, LinkOrderDiscountInclTaxesErrors, LinkOrderDiscountInclTaxesResponses, LinkOrderPaymentData, LinkOrderPaymentResponse, LinkOrderPaymentResponses, LinkOrderPrimeData, LinkOrderPrimeErrors, LinkOrderPrimeResponses, LinkOrderSmartTagsData, LinkOrderSmartTagsResponse, LinkOrderSmartTagsResponses, LinkPaymentToDocument, LinkPaymentToDocumentSchema, ListClientsData, ListClientsResponse, ListClientsResponses, ListFilesOutput, ListFilesOutputSchema, ListFilesOutputWritable, ListFilesOutputWritableSchema, ListListingExportsData, ListListingExportsResponse, ListListingExportsResponses, ListingCollectionExportStart, ListingCollectionExportStartSchema, ListingExportItem, ListingExportItemSchema, ListingExportReschedule, ListingExportRescheduleSchema, ListingExportStart, ListingExportStartSchema, ListingExportUpdate, ListingExportUpdateSchema, ListingUserContext, ListingUserContextSchema, MailchimpSettings, MailchimpSettingsSchema, MailjetSettings, MailjetSettingsSchema, MarkAllNotificationsAsReadData, MarkAllNotificationsAsReadResponse, MarkAllNotificationsAsReadResponses, MarkNotificationAsReadData, MarkNotificationAsReadResponse, MarkNotificationAsReadResponses, MarketingAttributeDiffOutput, MarketingAttributeDiffOutputSchema, MarketingAttributeInput, MarketingAttributeInputSchema, MarketingAttributeOutput, MarketingAttributeOutputSchema, MarketingProviders, MarketingProvidersSchema, MetaAccountingJournalData, MetaAccountingJournalResponse, MetaAccountingJournalResponses, MetaCrmActivitiesData, MetaCrmActivitiesResponse, MetaCrmActivitiesResponses, Model, ModelOne, ModelOneSchema, ModelOneWritable, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritable, ModelWritableSchema, MoveFileData, MoveFileErrors, MoveFileInput, MoveFileInputSchema, MoveFileResponse, MoveFileResponses, Notification, NotificationFilters, NotificationFiltersSchema, NotificationMarkAsRead, NotificationMarkAsReadSchema, NotificationMetadata, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInput, NotificationSettingsInputSchema, NotificationSettingsOutput, NotificationSettingsOutputSchema, NotificationWritable, NotificationWritableSchema, ObjectiveCategory, ObjectiveCollectionOutput, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritable, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInput, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutput, ObjectiveComputeTurnoverOutputSchema, ObjectiveEmbed, ObjectiveMetadata, ObjectiveMetadataSchema, ObjectiveMetadataUpsell, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutput, ObjectiveOutputSchema, ObjectiveSearchInput, ObjectiveSearchInputSchema, ObjectiveTurnoverInput, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInput, ObjectiveTurnoverUpdateInputSchema, Ocr, OcrOrder, OcrPurInvoiceMetas, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritable, OcrWritableSchema, Offset, OnboardingScreenOutput, OnboardingScreenOutputSchema, OpportunitiesAggregations, OpportunitiesAggregationsSchema, OpportunitiesCategoryItem, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritable, OpportunitiesCategoryItemWritableSchema, OpportunityCreate, OpportunityCreateSchema, OpportunityEmbed, OpportunityEmbedWithAggregations, OpportunityFilters, OpportunityFiltersSchema, OpportunityItem, OpportunityItemSchema, OpportunityItemWritable, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatch, OpportunityPatchSchema, OpportunityPipelineCollectionItem, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritable, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFilters, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdate, OpportunityRankUpdateSchema, OpportunitySourceCollectionItem, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritable, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFilters, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdate, OpportunityUpdateSchema, OpportuntiyCategoryEmbed, Options, Order, Order2, OrderCompute, OrderComputeSchema, OrderComputeWritable, OrderComputeWritableSchema, OrderCreate, OrderCreateSchema, OrderCreateWritable, OrderCreateWritableSchema, OrderEmbed, OrderEmbedOne, OrderFilters, OrderFiltersSchema, OrderOne, OrderOneSchema, OrderOneWritable, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdate, OrderUpdateSchema, OrderUpdateWritable, OrderUpdateWritableSchema, OrderWritable, OrderWritableSchema, Owner, OwnerSchema, Pagination, PaginationSchema, PartialEmailHeader, PartialEmailHeaderSchema, PatchOpportunityData, PatchOpportunityResponse, PatchOpportunityResponses, PatchSubscriptionPaymentInstallmentData, PatchSubscriptionPaymentInstallmentErrors, PatchSubscriptionPaymentInstallmentResponses, Payment, PaymentMethod, PaymentMethodEmbed, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritable, PaymentMethodWritableSchema, PaymentProvider, PaymentProviderSchema, PaymentSchema, PaymentTerm, PaymentTermEmbed, PaymentTermSchema, PaymentWritable, PaymentWritableSchema, PersonalAccessTokenCreateItem, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItem, PersonalAccessTokenItemSchema, PersonalAccessTokenMetas, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritable, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItem, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritable, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItem, PhoneCallCreateItemSchema, PhoneCallEmbed, PhoneCallFilter, PhoneCallFilterSchema, PhoneCallItem, PhoneCallItemSchema, PhoneCallItemWritable, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItem, PhoneCallUpdateItemSchema, PipelineStepEmbed, PipelineStepFilters, PipelineStepFiltersSchema, PipelineStepOrder, PostCustomActivitiesData, PostCustomActivitiesResponse, PostCustomActivitiesResponses, PostCustomActivitiesSearchData, PostCustomActivitiesSearchResponse, PostCustomActivitiesSearchResponses, PostCustomActivityTypesData, PostCustomActivityTypesResponse, PostCustomActivityTypesResponses, PredictPlan, PredictPlanSchema, PrepareDepositInvoiceData, PrepareDepositInvoiceResponse, PrepareDepositInvoiceResponses, ProfileOrder, Profiles, ProfilesSchema, ProgressInvoiceCompute, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritable, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreate, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritable, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocId, ProgressInvoiceDocType, ProgressInvoiceMetadata, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritable, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOne, ProgressInvoiceOneSchema, ProgressInvoiceOneWritable, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdate, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritable, ProgressInvoiceUpdateWritableSchema, ProposalDocument, ProposalDocumentSchema, ProposalDocumentWritable, ProposalDocumentWritableSchema, ProposalModel, ProposalModelSchema, ProposalModelWritable, ProposalModelWritableSchema, PurCreditNoteOne, PurCreditNoteOneWritable, PurDeliveryOne, PurDeliveryOneWritable, PurInvoiceOne, PurInvoiceOneWritable, PurOrderOne, PurOrderOneWritable, PutAccountingChartsSettingsData, PutAccountingChartsSettingsResponse, PutAccountingChartsSettingsResponses, PutCustomActivitiesIdData, PutCustomActivitiesIdResponse, PutCustomActivitiesIdResponses, PutCustomActivityTypesIdData, PutCustomActivityTypesIdResponse, PutCustomActivityTypesIdResponses, PutEmailSettingsData, PutEmailSettingsResponse, PutEmailSettingsResponses, PutItemPricesData, PutItemPricesResponse, PutItemPricesResponses, PutNotificationsSettingsData, PutNotificationsSettingsResponse, PutNotificationsSettingsResponses, PutStaffLicensesData, PutStaffLicensesResponse, PutStaffLicensesResponses, QuickCreateDepositInvoiceData, QuickCreateDepositInvoiceResponse, QuickCreateDepositInvoiceResponses, Quotas, QuotasSchema, RateCategoryMetadata, RateCategoryMetadataSchema, Related, RelatedSchema, Report, ReportAggregation, ReportAggregationSchema, ReportEmbed, ReportSchema, ReportWritable, ReportWritableSchema, type RequestOptions, type RequestResult, RescheduleListingExportData, RescheduleListingExportResponse, RescheduleListingExportResponses, type ResolvedRequestOptions, type ResponseStyle, SaleEmbed, SaleEmbed2, SaleEmbedSchema, SaleEmbedWritable, SaleEmbedWritableSchema, SaleOrder, ScanFetch, ScanFetchSchema, ScanList, ScanListSchema, SearchAccountingCodesData, SearchAccountingCodesResponse, SearchAccountingCodesResponses, SearchAccountingJournalData, SearchAccountingJournalResponse, SearchAccountingJournalResponses, SearchActivitiesData, SearchActivitiesResponse, SearchActivitiesResponses, SearchAllOpportunityPipelineStepsData, SearchAllOpportunityPipelineStepsResponse, SearchAllOpportunityPipelineStepsResponses, SearchBarcodesData, SearchBarcodesResponse, SearchBarcodesResponses, SearchCalendarEventsData, SearchCalendarEventsResponse, SearchCalendarEventsResponses, SearchCommentsData, SearchCommentsResponse, SearchCommentsResponses, SearchCompaniesData, SearchCompaniesResponse, SearchCompaniesResponses, SearchContactsData, SearchContactsResponse, SearchContactsResponses, SearchCreditNotesData, SearchCreditNotesResponse, SearchCreditNotesResponses, SearchCrmActivitiesData, SearchCrmActivitiesResponse, SearchCrmActivitiesResponses, SearchCustomFieldsData, SearchCustomFieldsResponse, SearchCustomFieldsResponses, SearchData, SearchDeliveriesData, SearchDeliveriesResponse, SearchDeliveriesResponses, SearchDepositInvoicesData, SearchDepositInvoicesResponse, SearchDepositInvoicesResponses, SearchEstimatesData, SearchEstimatesErrors, SearchEstimatesResponse, SearchEstimatesResponses, SearchIndividualsData, SearchIndividualsResponse, SearchIndividualsResponses, SearchInvoicesData, SearchInvoicesResponse, SearchInvoicesResponses, SearchItemDeclinationsData, SearchItemDeclinationsResponse, SearchItemDeclinationsResponses, SearchItemsData, SearchItemsResponse, SearchItemsResponses, SearchListingExportsData, SearchListingExportsResponse, SearchListingExportsResponses, SearchMandatesData, SearchMandatesErrors, SearchMandatesResponse, SearchMandatesResponses, SearchModelsData, SearchModelsResponse, SearchModelsResponses, SearchNotificationsData, SearchNotificationsResponse, SearchNotificationsResponses, SearchOcrPurInvoiceData, SearchOcrPurInvoiceResponse, SearchOcrPurInvoiceResponses, SearchOpportunitiesData, SearchOpportunitiesResponse, SearchOpportunitiesResponses, SearchOpportunityPipelineStepsData, SearchOpportunityPipelineStepsResponse, SearchOpportunityPipelineStepsResponses, SearchOpportunityPipelinesData, SearchOpportunityPipelinesResponse, SearchOpportunityPipelinesResponses, SearchOpportunitySourcesData, SearchOpportunitySourcesResponse, SearchOpportunitySourcesResponses, SearchOrdersData, SearchOrdersResponse, SearchOrdersResponses, SearchPaymentMethodsData, SearchPaymentMethodsResponse, SearchPaymentMethodsResponses, SearchPaymentsData, SearchPaymentsResponse, SearchPaymentsResponses, SearchPhoneCallsData, SearchPhoneCallsResponse, SearchPhoneCallsResponses, SearchProposalsModelsData, SearchProposalsModelsResponse, SearchProposalsModelsResponses, SearchResponse, SearchResponses, SearchResult, SearchResultAggregations, SearchResultAggregationsSchema, SearchResultBaseItem, SearchResultBaseItemSchema, SearchResultBaseItemWritable, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritable, SearchResultWritableSchema, SearchStaffsData, SearchStaffsResponse, SearchStaffsResponses, SearchSubscriptionsData, SearchSubscriptionsPaymentInstallmentsData, SearchSubscriptionsPaymentInstallmentsResponse, SearchSubscriptionsPaymentInstallmentsResponses, SearchSubscriptionsResponse, SearchSubscriptionsResponses, SearchTasksData, SearchTasksResponse, SearchTasksResponses, SearchTaxesData, SearchTaxesResponse, SearchTaxesResponses, SearchTimelineData, SearchTimelineResponse, SearchTimelineResponses, SearchType, SearchWebhooksData, SearchWebhooksResponse, SearchWebhooksResponses, SendEmailData, SendEmailErrors, SendEmailResponse, SendEmailResponses, Social, SocialSchema, Staff, StaffAcl, StaffAclSchema, StaffAutocompleteResultItem, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritable, StaffAutocompleteResultItemWritableSchema, StaffCreateItem, StaffCreateItemSchema, StaffEmbed, StaffFilters, StaffFiltersSchema, StaffItemEmbed, StaffOrder, StaffPreferences, StaffPreferencesSchema, StaffPreferencesWritable, StaffPreferencesWritableSchema, StaffRestrictedView, StaffRestrictedViewSchema, StaffRestrictedViewWritable, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItem, StaffUpdateItemSchema, StaffWritable, StaffWritableSchema, StancerSettings, StancerSettingsSchema, Subscription, SubscriptionCreate, SubscriptionCreateSchema, SubscriptionOne, SubscriptionOneSchema, SubscriptionSchema, type TDataShape, TaskCollectionItem, TaskCollectionItemSchema, TaskCollectionItemWritable, TaskCollectionItemWritableSchema, TaskCreateItem, TaskCreateItemSchema, TaskEmbed, TaskFilter, TaskFilterSchema, TaskItem, TaskItemSchema, TaskItemWritable, TaskItemWritableSchema, TaskOrder, TaskUpdateItem, TaskUpdateItemSchema, TaxFilter, TaxFilterSchema, TaxSettingsInput, TaxSettingsInputSchema, TaxSettingsOutput, TaxSettingsOutputSchema, TaxesMetadata, TaxesMetadataSchema, Team, TeamSchema, TeamWritable, TeamWritableSchema, TwoFactorAuthenticationSettings, TwoFactorAuthenticationSettingsInput, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritable, TwoFactorAuthenticationSettingsWritableSchema, Unit, UnitEmbed, UnitOrder, UnitSchema, UnitSuggestionInput, UnitSuggestionInputSchema, UnitSuggestionOutput, UnitSuggestionOutputSchema, UnitWritable, UnitWritableSchema, UnitsSettings, UnitsSettingsSchema, UnlinkCompanyContactData, UnlinkCompanyContactResponse, UnlinkCompanyContactResponses, UnlinkCreditNoteDiscountInclTaxesData, UnlinkCreditNoteDiscountInclTaxesErrors, UnlinkCreditNoteDiscountInclTaxesResponse, UnlinkCreditNoteDiscountInclTaxesResponses, UnlinkCreditNoteInvoicesData, UnlinkCreditNoteInvoicesResponse, UnlinkCreditNoteInvoicesResponses, UnlinkCreditNotePaymentData, UnlinkCreditNotePaymentResponse, UnlinkCreditNotePaymentResponses, UnlinkCreditNotePrimeData, UnlinkCreditNotePrimeErrors, UnlinkCreditNotePrimeResponse, UnlinkCreditNotePrimeResponses, UnlinkDepositInvoicePaymentData, UnlinkDepositInvoicePaymentResponse, UnlinkDepositInvoicePaymentResponses, UnlinkEstimateDiscountInclTaxesData, UnlinkEstimateDiscountInclTaxesErrors, UnlinkEstimateDiscountInclTaxesResponse, UnlinkEstimateDiscountInclTaxesResponses, UnlinkEstimatePaymentData, UnlinkEstimatePaymentResponse, UnlinkEstimatePaymentResponses, UnlinkEstimatePrimeData, UnlinkEstimatePrimeErrors, UnlinkEstimatePrimeResponse, UnlinkEstimatePrimeResponses, UnlinkInvoiceDiscountInclTaxesData, UnlinkInvoiceDiscountInclTaxesErrors, UnlinkInvoiceDiscountInclTaxesResponse, UnlinkInvoiceDiscountInclTaxesResponses, UnlinkInvoicePaymentData, UnlinkInvoicePaymentResponse, UnlinkInvoicePaymentResponses, UnlinkInvoicePrimeData, UnlinkInvoicePrimeErrors, UnlinkInvoicePrimeResponse, UnlinkInvoicePrimeResponses, UnlinkInvoicesCreditNoteData, UnlinkInvoicesCreditNoteResponse, UnlinkInvoicesCreditNoteResponses, UnlinkOrderDiscountInclTaxesData, UnlinkOrderDiscountInclTaxesErrors, UnlinkOrderDiscountInclTaxesResponse, UnlinkOrderDiscountInclTaxesResponses, UnlinkOrderPaymentData, UnlinkOrderPaymentResponse, UnlinkOrderPaymentResponses, UnlinkOrderPrimeData, UnlinkOrderPrimeErrors, UnlinkOrderPrimeResponse, UnlinkOrderPrimeResponses, UpdateCalendarEventData, UpdateCalendarEventResponse, UpdateCalendarEventResponses, UpdateCommentData, UpdateCommentResponse, UpdateCommentResponses, UpdateCompanyAddressData, UpdateCompanyAddressResponse, UpdateCompanyAddressResponses, UpdateCompanyContactData, UpdateCompanyContactResponses, UpdateCompanyCustomFieldsData, UpdateCompanyCustomFieldsResponse, UpdateCompanyCustomFieldsResponses, UpdateCompanyData, UpdateCompanyPreferences, UpdateCompanyPreferencesSchema, UpdateCompanyResponse, UpdateCompanyResponses, UpdateContactAddressData, UpdateContactAddressResponse, UpdateContactAddressResponses, UpdateContactCustomFieldsData, UpdateContactCustomFieldsResponse, UpdateContactCustomFieldsResponses, UpdateContactData, UpdateContactResponse, UpdateContactResponses, UpdateCreditNoteCustomFieldsData, UpdateCreditNoteCustomFieldsResponse, UpdateCreditNoteCustomFieldsResponses, UpdateCreditNoteData, UpdateCreditNoteResponse, UpdateCreditNoteResponses, UpdateDepositInvoiceCustomFieldsData, UpdateDepositInvoiceCustomFieldsResponse, UpdateDepositInvoiceCustomFieldsResponses, UpdateDepositInvoiceData, UpdateDepositInvoiceResponse, UpdateDepositInvoiceResponses, UpdateDirectory, UpdateDirectoryData, UpdateDirectoryErrors, UpdateDirectoryResponse, UpdateDirectoryResponses, UpdateDirectorySchema, UpdateDiscountInclTaxes, UpdateDiscountInclTaxesData, UpdateDiscountInclTaxesErrors, UpdateDiscountInclTaxesResponse, UpdateDiscountInclTaxesResponses, UpdateDiscountInclTaxesSchema, UpdateEstimateCustomFieldsData, UpdateEstimateCustomFieldsResponse, UpdateEstimateCustomFieldsResponses, UpdateEstimateData, UpdateEstimateResponse, UpdateEstimateResponses, UpdateEstimateStatusData, UpdateEstimateStatusResponse, UpdateEstimateStatusResponses, UpdateIndividualAddressData, UpdateIndividualAddressResponse, UpdateIndividualAddressResponses, UpdateIndividualCustomFieldsData, UpdateIndividualCustomFieldsResponse, UpdateIndividualCustomFieldsResponses, UpdateIndividualData, UpdateIndividualPreferences, UpdateIndividualPreferencesSchema, UpdateIndividualResponse, UpdateIndividualResponses, UpdateInvoiceCustomFieldsData, UpdateInvoiceCustomFieldsResponse, UpdateInvoiceCustomFieldsResponses, UpdateInvoiceData, UpdateInvoiceResponse, UpdateInvoiceResponses, UpdateItem, UpdateItemData, UpdateItemResponse, UpdateItemResponses, UpdateItemSchema, UpdateLinkCompanyContact, UpdateLinkCompanyContactSchema, UpdateListingExportData, UpdateListingExportResponse, UpdateListingExportResponses, UpdateModelData, UpdateModelResponse, UpdateModelResponses, UpdateOpportunityCustomFieldsData, UpdateOpportunityCustomFieldsResponse, UpdateOpportunityCustomFieldsResponses, UpdateOpportunityData, UpdateOpportunityRankData, UpdateOpportunityRankResponse, UpdateOpportunityRankResponses, UpdateOpportunityResponse, UpdateOpportunityResponses, UpdateOrderCustomFieldsData, UpdateOrderCustomFieldsResponse, UpdateOrderCustomFieldsResponses, UpdateOrderData, UpdateOrderResponse, UpdateOrderResponses, UpdatePhoneCallData, UpdatePhoneCallResponse, UpdatePhoneCallResponses, UpdateProgressInvoiceData, UpdateProgressInvoiceResponse, UpdateProgressInvoiceResponses, UpdateRateCategoryData, UpdateRateCategoryResponse, UpdateRateCategoryResponses, UpdateStaffData, UpdateStaffResponse, UpdateStaffResponses, UpdateTaskData, UpdateTaskResponse, UpdateTaskResponses, UpdateTaxAccountingChartData, UpdateTaxAccountingChartResponse, UpdateTaxAccountingChartResponses, UpdateTaxData, UpdateTaxResponse, UpdateTaxResponses, UpdateWebhookData, UpdateWebhookResponse, UpdateWebhookResponses, UploadCompanyFileData, UploadCompanyFileResponse, UploadCompanyFileResponses, UploadContactFileData, UploadContactFileResponses, UploadCreditNoteFileData, UploadCreditNoteFileResponse, UploadCreditNoteFileResponses, UploadDepositInvoiceFileData, UploadDepositInvoiceFileResponse, UploadDepositInvoiceFileResponses, UploadDirectoryFileData, UploadDirectoryFileResponses, UploadEmailAttachmentData, UploadEmailAttachmentResponse, UploadEmailAttachmentResponses, UploadEstimateFileData, UploadEstimateFileResponse, UploadEstimateFileResponses, UploadFileInput, UploadFileInputSchema, UploadIndividualFileData, UploadIndividualFileResponse, UploadIndividualFileResponses, UploadInvoiceFileData, UploadInvoiceFileResponse, UploadInvoiceFileResponses, UploadOpportunityFileData, UploadOpportunityFileResponse, UploadOpportunityFileResponses, UploadOrderFileData, UploadOrderFileResponse, UploadOrderFileResponses, UserTwoFactorAuthenticationSettings, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettings, UserUpdateTwoFactorAuthenticationSettingsResponse, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateCreditNoteData, ValidateCreditNoteResponse, ValidateCreditNoteResponses, ValidateDepositInvoiceData, ValidateDepositInvoiceResponse, ValidateDepositInvoiceResponses, ValidateEmailDomainDnsData, ValidateEmailDomainDnsErrors, ValidateEmailDomainDnsResponse, ValidateEmailDomainDnsResponses, ValidateInvoice, ValidateInvoiceData, ValidateInvoiceResponse, ValidateInvoiceResponses, ValidateInvoiceSchema, Verify, Warehouse, WarehouseSchema, WarehouseWritable, WarehouseWritableSchema, WebhookCreateItem, WebhookCreateItemSchema, WebhookEditItem, WebhookEditItemSchema, WebhookEventsList, WebhookEventsListSchema, WebhookFilters, WebhookFiltersSchema, WebhookReadItem, WebhookReadItemSchema, _Error, 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, 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 };
|
|
117916
|
+
export { AccountDocumentCollection, AccountDocumentCollectionSchema, AccountDocumentCollectionWritable, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregations, AccountingAggregationsSchema, AccountingCode, AccountingCodeCreate, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritable, AccountingCodeWritableSchema, AccountingEmbed, AccountingJournal, AccountingJournalExportParams, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritable, AccountingJournalWritableSchema, AccountingMetas, AccountingMetasSchema, AccountingOrder, ActivateInvoicingConformityData, ActivateInvoicingConformityErrors, ActivateInvoicingConformityResponse, ActivateInvoicingConformityResponses, Activity, ActivityEmbed, ActivityFilters, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritable, ActivityWritableSchema, Address, AddressCreate, AddressCreateSchema, AddressSchema, AddressUpdate, AddressUpdateSchema, AddressWritable, AddressWritableSchema, AdyenSettings, AdyenSettingsSchema, AssignedStaffLabel, AssignedStaffLabelEmbed, AssignedStaffLabelSchema, Autocomplete, AutocompleteSmartTagsData, AutocompleteSmartTagsResponse, AutocompleteSmartTagsResponses, BackupCode, BackupCodeSchema, BackupCodes, BackupCodesSchema, BankAccount, BankAccountSchema, BankAccountWritable, BankAccountWritableSchema, BarcodeReadItem, BarcodeReadItemSchema, BatchAssignedStaffLabelInput, BatchAssignedStaffLabelInputSchema, BatchUnitInput, BatchUnitInputSchema, CalendarEventCreateItem, CalendarEventCreateItemSchema, CalendarEventEmbed, CalendarEventFilters, CalendarEventFiltersSchema, CalendarEventItem, CalendarEventItemSchema, CalendarEventItemWritable, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItem, CalendarEventUpdateItemSchema, CancelEsignEstimateData, CancelEsignEstimateResponse, CancelEsignEstimateResponses, CancelEsignOrderData, CancelEsignOrderResponse, CancelEsignOrderResponses, CancelEsignProposalDocumentData, CancelEsignProposalDocumentResponse, CancelEsignProposalDocumentResponses, CheckLabel, CheckLabelEmbed, CheckLabelOrders, CheckLabelSchema, type Client, ClientCreate, ClientCreateSchema, ClientCreateWritable, ClientCreateWritableSchema, type ClientOptions, ClientSchema, ClientUpdate, ClientUpdateSchema, ClientUpdateWritable, ClientUpdateWritableSchema, ClientWSecret, ClientWSecretSchema, ClientWSecretWritable, ClientWSecretWritableSchema, ClientWritable, ClientWritableSchema, CommentCreateItem, CommentCreateItemSchema, CommentFilters, CommentFiltersSchema, CommentItem, CommentItemEmbed, CommentItemSchema, CommentItemWritable, CommentItemWritableSchema, CommentOrder, CommentUpdateItem, CommentUpdateItemSchema, CompanyPreferences, CompanyPreferencesSchema, CompanyPreferencesWritable, CompanyPreferencesWritableSchema, ComputeCreditNoteData, ComputeCreditNoteResponse, ComputeCreditNoteResponses, ComputeDepositInvoiceData, ComputeDepositInvoiceResponse, ComputeDepositInvoiceResponses, ComputeEstimateData, ComputeEstimateResponse, ComputeEstimateResponses, ComputeInvoiceData, ComputeInvoiceResponse, ComputeInvoiceResponses, ComputeOrderData, ComputeOrderResponse, ComputeOrderResponses, ComputeProgressInvoiceData, ComputeProgressInvoiceResponse, ComputeProgressInvoiceResponses, ComputedProgresssInvoice, ComputedProgresssInvoiceSchema, type Config, ConsentMarketingSettingsInput, ConsentMarketingSettingsInputSchema, ConsentSettingsInput, ConsentSettingsInputSchema, ConsentSettingsOuput, ConsentSettingsOuputSchema, ContactCollectionItem, ContactCollectionItemSchema, ContactCollectionItemWritable, ContactCollectionItemWritableSchema, ContactCreateItem, ContactCreateItemSchema, ContactCreateItemWritable, ContactCreateItemWritableSchema, ContactEmbed, ContactFilters, ContactFiltersSchema, ContactItem, ContactItemSchema, ContactItemWritable, ContactItemWritableSchema, ContactOrders, ContactUpdateItem, ContactUpdateItemSchema, ContactUpdateItemWritable, ContactUpdateItemWritableSchema, ConvertCompanyData, ConvertCompanyResponse, ConvertCompanyResponses, ConvertIndividualData, ConvertIndividualResponse, ConvertIndividualResponses, ConvertModelData, ConvertModelResponse, ConvertModelResponses, CorporationStaffAggregation, CorporationStaffAggregationWritable, CorporationStaffEmbed, CorporationSubscription, CorporationSubscriptionSchema, Country, CountrySchema, CreateAccountingCodeData, CreateAccountingCodeErrors, CreateAccountingCodeResponse, CreateAccountingCodeResponses, CreateBatchData, CreateBatchResponse, CreateBatchResponses, CreateCalendarEventData, CreateCalendarEventResponse, CreateCalendarEventResponses, type CreateClientConfig, CreateCommentData, CreateCommentResponse, CreateCommentResponses, CreateCompanyAddressData, CreateCompanyAddressResponse, CreateCompanyAddressResponses, CreateCompanyData, CreateCompanyPaymentData, CreateCompanyPaymentResponse, CreateCompanyPaymentResponses, CreateCompanyResponse, CreateCompanyResponses, CreateContactAddressData, CreateContactAddressResponse, CreateContactAddressResponses, CreateContactData, CreateContactResponse, CreateContactResponses, CreateCreditNoteData, CreateCreditNoteResponse, CreateCreditNoteResponses, CreateDepositInvoiceData, CreateDepositInvoiceResponse, CreateDepositInvoiceResponses, CreateDirectory, CreateDirectoryData, CreateDirectoryErrors, CreateDirectoryResponse, CreateDirectoryResponses, CreateDirectorySchema, CreateDiscountInclTaxesData, CreateDiscountInclTaxesErrors, CreateDiscountInclTaxesResponse, CreateDiscountInclTaxesResponses, CreateEsignEstimateData, CreateEsignEstimateResponse, CreateEsignEstimateResponses, CreateEsignOrderData, CreateEsignOrderResponse, CreateEsignOrderResponses, CreateEsignProposalDocumentData, CreateEsignProposalDocumentResponse, CreateEsignProposalDocumentResponses, CreateEstimateData, CreateEstimateResponse, CreateEstimateResponses, CreateIndividualAddressData, CreateIndividualAddressResponse, CreateIndividualAddressResponses, CreateIndividualData, CreateIndividualPaymentData, CreateIndividualPaymentResponse, CreateIndividualPaymentResponses, CreateIndividualResponse, CreateIndividualResponses, CreateInvoiceData, CreateInvoiceResponse, CreateInvoiceResponses, CreateItem, CreateItemData, CreateItemResponse, CreateItemResponses, CreateItemSchema, CreateModel, CreateModelData, CreateModelResponse, CreateModelResponses, CreateModelSchema, CreateModelWritable, CreateModelWritableSchema, CreateOpportunityData, CreateOpportunityResponse, CreateOpportunityResponses, CreateOrderData, CreateOrderResponse, CreateOrderResponses, CreatePayment, CreatePaymentSchema, CreatePhoneCallData, CreatePhoneCallResponse, CreatePhoneCallResponses, CreateProgressInvoiceData, CreateProgressInvoiceResponse, CreateProgressInvoiceResponses, CreateRateCategoryData, CreateRateCategoryErrors, CreateRateCategoryResponse, CreateRateCategoryResponses, CreateStaffData, CreateStaffResponse, CreateStaffResponses, CreateSubscriptionData, CreateSubscriptionResponse, CreateSubscriptionResponses, CreateTaskData, CreateTaskResponse, CreateTaskResponses, CreateTaxData, CreateTaxResponse, CreateTaxResponses, CreateWebhookData, CreateWebhookResponse, CreateWebhookResponses, CreditNote, CreditNoteCompute, CreditNoteComputeSchema, CreditNoteComputeWritable, CreditNoteComputeWritableSchema, CreditNoteCreate, CreditNoteCreateSchema, CreditNoteCreateWritable, CreditNoteCreateWritableSchema, CreditNoteEmbed, CreditNoteFilters, CreditNoteFiltersSchema, CreditNoteOne, CreditNoteOneEmbed, CreditNoteOneSchema, CreditNoteOneWritable, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdate, CreditNoteUpdateSchema, CreditNoteUpdateWritable, CreditNoteUpdateWritableSchema, CreditNoteValidate, CreditNoteValidateSchema, CreditNoteWritable, CreditNoteWritableSchema, CrmActivity, CrmActivityAggregations, CrmActivityAggregationsSchema, CrmActivityEmbed, CrmActivityFilters, CrmActivityFiltersSchema, CrmActivityMetas, CrmActivityMetasSchema, CrmActivityMetasWritable, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritable, CrmActivityWritableSchema, Currency, CurrencySchema, CurrencyWritable, CurrencyWritableSchema, CustomActivity, CustomActivityCreate, CustomActivityCreateSchema, CustomActivityCreateWritable, CustomActivityCreateWritableSchema, CustomActivityFilters, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityType, CustomActivityTypeSchema, CustomActivityTypeWritable, CustomActivityTypeWritableSchema, CustomActivityWritable, CustomActivityWritableSchema, Deals, DealsActivityOrder, DealsBatch, DealsBatchSchema, DealsFilters, DealsFiltersSchema, DealsSchema, DealsWritable, DealsWritableSchema, DeclinationRead, DeclinationReadSchema, DeleteAccountingCodeData, DeleteAccountingCodeErrors, DeleteAccountingCodeResponse, DeleteAccountingCodeResponses, DeleteCalendarEventData, DeleteCalendarEventResponse, DeleteCalendarEventResponses, DeleteClientsData, DeleteClientsResponse, DeleteClientsResponses, DeleteCommentData, DeleteCommentResponse, DeleteCommentResponses, DeleteCompanyAddressData, DeleteCompanyAddressResponse, DeleteCompanyAddressResponses, DeleteCompanyData, DeleteCompanyResponse, DeleteCompanyResponses, DeleteContactAddressData, DeleteContactAddressResponse, DeleteContactAddressResponses, DeleteContactData, DeleteContactResponse, DeleteContactResponses, DeleteCustomActivitiesIdData, DeleteCustomActivitiesIdResponse, DeleteCustomActivitiesIdResponses, DeleteDirectoryData, DeleteDirectoryErrors, DeleteDirectoryResponse, DeleteDirectoryResponses, DeleteDiscountInclTaxesData, DeleteDiscountInclTaxesErrors, DeleteDiscountInclTaxesResponse, DeleteDiscountInclTaxesResponses, DeleteFileData, DeleteFileResponse, DeleteFileResponses, DeleteIndividualAddressData, DeleteIndividualAddressResponse, DeleteIndividualAddressResponses, DeleteIndividualData, DeleteIndividualResponse, DeleteIndividualResponses, DeleteItemData, DeleteItemResponse, DeleteItemResponses, DeleteNotificationData, DeleteNotificationResponse, DeleteNotificationResponses, DeleteOpportunityData, DeleteOpportunityResponse, DeleteOpportunityResponses, DeletePaymentData, DeletePaymentResponse, DeletePaymentResponses, DeletePhoneCallData, DeletePhoneCallResponse, DeletePhoneCallResponses, DeleteRateCategoryData, DeleteRateCategoryResponse, DeleteRateCategoryResponses, DeleteSmartTagsData, DeleteSmartTagsResponses, DeleteStaffLicensesData, DeleteStaffLicensesResponse, DeleteStaffLicensesResponses, DeleteSubscriptionData, DeleteSubscriptionResponse, DeleteSubscriptionResponses, DeleteTaskData, DeleteTaskResponse, DeleteTaskResponses, DeleteTaxData, DeleteTaxResponse, DeleteTaxResponses, DeleteWebhookData, DeleteWebhookResponse, DeleteWebhookResponses, Delivery, DeliveryEmbed, DeliveryEmbedOne, DeliveryFilters, DeliveryFiltersSchema, DeliveryOne, DeliveryOneSchema, DeliveryOneWritable, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritable, DeliveryWritableSchema, DepositInvoiceComputeInput, DepositInvoiceComputeInputSchema, DepositInvoiceComputeInputWritable, DepositInvoiceComputeInputWritableSchema, DepositInvoiceComputeOutput, DepositInvoiceComputeOutputSchema, DepositInvoiceCreate, DepositInvoiceCreateSchema, DepositInvoiceCreateWritable, DepositInvoiceCreateWritableSchema, DepositInvoiceDocType, DepositInvoiceFilter, DepositInvoiceFilterSchema, DepositInvoiceMetadata, DepositInvoiceMetadataSchema, DepositInvoiceMetadataWritable, DepositInvoiceMetadataWritableSchema, DepositInvoiceOne, DepositInvoiceOneSchema, DepositInvoiceOneWritable, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInput, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutput, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdate, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritable, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInput, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInput, DiscountInclTaxesInputSchema, DiscountInclTaxesOutput, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritable, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollection, DocumentLayoutsCollectionSchema, EInvoicingMandate, EInvoicingMandateInput, EInvoicingMandateInputSchema, EInvoicingMandateInputWritable, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutput, EmailAttachmentOutputSchema, EmailAuthenticationItem, EmailAuthenticationItemSchema, EmailEngineItem, EmailEngineItemSchema, EmailEngineItemWritable, EmailEngineItemWritableSchema, EmailItem, EmailItemSchema, EmailItemWritable, EmailItemWritableSchema, EmailProviderMessage, EmailProviderMessageSchema, EmailProviderMessageWritable, EmailProviderMessageWritableSchema, EmailProviderThread, EmailProviderThreadSchema, EmailProviderThreadUpdate, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutput, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritable, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutput, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutput, EmailRecipientsOutputSchema, EmailSendBatchBody, EmailSendBatchBodySchema, EmailSendBody, EmailSendBodySchema, EmailSettings, EmailSettingsInput, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInput, EmailTemplateCreateInputSchema, EmailTemplateInput, EmailTemplateInputSchema, EmailTemplateItemOutput, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritable, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutput, EmailTemplateListItemOutputSchema, EmailTemplateOutput, EmailTemplateOutputSchema, EmailTemplateOutputWritable, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInput, EmailTemplateUpdateInputSchema, EmailValidationItem, EmailValidationItemSchema, EmailVerificationInput, EmailVerificationInputSchema, EmailVerificationValidateInput, EmailVerificationValidateInputSchema, EmailVerificationValidateOutput, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettings, EsignSettingsSchema, Estimate, EstimateAggregations, EstimateAggregationsSchema, EstimateCollection, EstimateCollectionSchema, EstimateCollectionWritable, EstimateCollectionWritableSchema, EstimateCompute, EstimateComputeSchema, EstimateComputeWritable, EstimateComputeWritableSchema, EstimateCreate, EstimateCreateSchema, EstimateCreateWritable, EstimateCreateWritableSchema, EstimateFilters, EstimateFiltersSchema, EstimateOne, EstimateOneEmbed, EstimateOneEmbed2, EstimateOneEmbedSchema, EstimateOneEmbedWritable, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritable, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdate, EstimateStatusUpdateSchema, EstimateUpdate, EstimateUpdateSchema, EstimateUpdateWritable, EstimateUpdateWritableSchema, EstimateWritable, EstimateWritableSchema, ExportAccountingJournalData, ExportAccountingJournalResponses, ExportCompaniesData, ExportCompaniesResponse, ExportCompaniesResponses, ExportContactsData, ExportContactsResponse, ExportContactsResponses, ExportCrmActivitiesData, ExportCrmActivitiesResponses, ExportEstimatesData, ExportEstimatesResponse, ExportEstimatesResponses, ExportExportsData, ExportExportsResponse, ExportExportsResponses, ExportInvoicesData, ExportInvoicesResponse, ExportInvoicesResponses, ExportOpportunitiesData, ExportOpportunitiesResponse, ExportOpportunitiesResponses, ExportParams, ExportParamsSchema, FavouriteFilters, FavouriteFiltersOrder, FavouriteFiltersSchema, FetchClientsData, FetchClientsResponse, FetchClientsResponses, Fields, FileOutput, FileOutputSchema, FileOutputWritable, FileOutputWritableSchema, FiscalYear, FiscalYearSchema, GenerateBackupCodeInput, GenerateBackupCodeInputSchema, GenerateProposalDocumentData, GenerateProposalDocumentResponse, GenerateProposalDocumentResponses, GetAccountSubscriptionData, GetAccountSubscriptionResponse, GetAccountSubscriptionResponses, GetAccountingChartsSettingsData, GetAccountingChartsSettingsResponse, GetAccountingChartsSettingsResponses, GetAccountingCodesData, GetAccountingCodesResponse, GetAccountingCodesResponses, GetAccountingJournalData, GetAccountingJournalResponse, GetAccountingJournalResponses, GetAccountsDocumentsData, GetAccountsDocumentsResponse, GetAccountsDocumentsResponses, GetAddressesData, GetAddressesResponse, GetAddressesResponses, GetAssignedStaffLabelsData, GetAssignedStaffLabelsResponse, GetAssignedStaffLabelsResponses, GetBankAccountsData, GetBankAccountsResponse, GetBankAccountsResponses, GetCalendarEventData, GetCalendarEventResponse, GetCalendarEventResponses, GetCalendarEventsData, GetCalendarEventsLabelsData, GetCalendarEventsLabelsResponse, GetCalendarEventsLabelsResponses, GetCalendarEventsResponse, GetCalendarEventsResponses, GetCheckLabelsData, GetCheckLabelsResponse, GetCheckLabelsResponses, GetCommentData, GetCommentResponse, GetCommentResponses, GetCommentsData, GetCommentsResponse, GetCommentsResponses, GetCompaniesData, GetCompaniesResponse, GetCompaniesResponses, GetCompanyAddressData, GetCompanyAddressResponse, GetCompanyAddressResponses, GetCompanyAddressesData, GetCompanyAddressesResponse, GetCompanyAddressesResponses, GetCompanyContactsData, GetCompanyContactsResponse, GetCompanyContactsResponses, GetCompanyCustomFieldsData, GetCompanyCustomFieldsResponse, GetCompanyCustomFieldsResponses, GetCompanyData, GetCompanyFavouriteFiltersData, GetCompanyFavouriteFiltersResponse, GetCompanyFavouriteFiltersResponses, GetCompanyFilesData, GetCompanyFilesResponse, GetCompanyFilesResponses, GetCompanyResponse, GetCompanyResponses, GetCompanySmartTagsData, GetCompanySmartTagsResponse, GetCompanySmartTagsResponses, GetContactAddressData, GetContactAddressResponse, GetContactAddressResponses, GetContactAddressesData, GetContactAddressesResponse, GetContactAddressesResponses, GetContactCompaniesData, GetContactCompaniesResponse, GetContactCompaniesResponses, GetContactCustomFieldsData, GetContactCustomFieldsResponse, GetContactCustomFieldsResponses, GetContactData, GetContactFavouriteFiltersData, GetContactFavouriteFiltersResponse, GetContactFavouriteFiltersResponses, GetContactFilesData, GetContactFilesResponse, GetContactFilesResponses, GetContactResponse, GetContactResponses, GetContactSmartTagsData, GetContactSmartTagsResponse, GetContactSmartTagsResponses, GetContactsData, GetContactsResponse, GetContactsResponses, GetCountriesData, GetCountriesResponse, GetCountriesResponses, GetCreditNoteCustomFieldsData, GetCreditNoteCustomFieldsResponse, GetCreditNoteCustomFieldsResponses, GetCreditNoteData, GetCreditNoteFavouriteFiltersData, GetCreditNoteFavouriteFiltersResponse, GetCreditNoteFavouriteFiltersResponses, GetCreditNoteFilesData, GetCreditNoteFilesResponse, GetCreditNoteFilesResponses, GetCreditNoteInvoicesData, GetCreditNoteInvoicesResponse, GetCreditNoteInvoicesResponses, GetCreditNotePaymentsData, GetCreditNotePaymentsResponse, GetCreditNotePaymentsResponses, GetCreditNoteResponse, GetCreditNoteResponses, GetCreditNoteSmartTagsData, GetCreditNoteSmartTagsResponse, GetCreditNoteSmartTagsResponses, GetCreditNotesData, GetCreditNotesResponse, GetCreditNotesResponses, GetCrmActivitiesData, GetCrmActivitiesResponse, GetCrmActivitiesResponses, GetCurrenciesData, GetCurrenciesResponse, GetCurrenciesResponses, GetCustomActivitiesData, GetCustomActivitiesIdData, GetCustomActivitiesIdResponse, GetCustomActivitiesIdResponses, GetCustomActivitiesResponse, GetCustomActivitiesResponses, GetCustomActivityTypesData, GetCustomActivityTypesIdData, GetCustomActivityTypesIdResponse, GetCustomActivityTypesIdResponses, GetCustomActivityTypesResponse, GetCustomActivityTypesResponses, GetCustomFieldData, GetCustomFieldResponse, GetCustomFieldResponses, GetCustomFieldsData, GetCustomFieldsResponse, GetCustomFieldsResponses, GetDeliveriesData, GetDeliveriesResponse, GetDeliveriesResponses, GetDeliveryData, GetDeliveryResponse, GetDeliveryResponses, GetDepositInvoiceCreditNotesData, GetDepositInvoiceCreditNotesResponse, GetDepositInvoiceCreditNotesResponses, GetDepositInvoiceCustomFieldsData, GetDepositInvoiceCustomFieldsResponse, GetDepositInvoiceCustomFieldsResponses, GetDepositInvoiceData, GetDepositInvoiceFilesData, GetDepositInvoiceFilesResponse, GetDepositInvoiceFilesResponses, GetDepositInvoicePaymentsData, GetDepositInvoicePaymentsResponse, GetDepositInvoicePaymentsResponses, GetDepositInvoiceResponse, GetDepositInvoiceResponses, GetDepositInvoiceSmartTagsData, GetDepositInvoiceSmartTagsResponse, GetDepositInvoiceSmartTagsResponses, GetDepositInvoicesData, GetDepositInvoicesResponse, GetDepositInvoicesResponses, GetDirectoryData, GetDirectoryFilesData, GetDirectoryFilesResponse, GetDirectoryFilesResponses, GetDirectoryResponse, GetDirectoryResponses, GetDiscountInclTaxesData, GetDiscountInclTaxesErrors, GetDiscountInclTaxesResponse, GetDiscountInclTaxesResponses, GetDiscountsInclTaxesData, GetDiscountsInclTaxesErrors, GetDiscountsInclTaxesResponse, GetDiscountsInclTaxesResponses, GetDocumentLayoutsData, GetDocumentLayoutsResponse, GetDocumentLayoutsResponses, GetEmailData, GetEmailDomainDnsDataData, GetEmailDomainDnsDataResponse, GetEmailDomainDnsDataResponses, GetEmailResponse, GetEmailResponses, GetEmailSettingsData, GetEmailSettingsResponse, GetEmailSettingsResponses, GetEmailSignatureTagsData, GetEmailSignatureTagsResponse, GetEmailSignatureTagsResponses, GetEmailTemplateData, GetEmailTemplateResponse, GetEmailTemplateResponses, GetEmailTemplateTagsData, GetEmailTemplateTagsResponse, GetEmailTemplateTagsResponses, GetEmailTemplateWithContentData, GetEmailTemplateWithContentResponse, GetEmailTemplateWithContentResponses, GetEmailTemplatesData, GetEmailTemplatesResponse, GetEmailTemplatesResponses, GetEmailThreadData, GetEmailThreadResponse, GetEmailThreadResponses, GetEsignEstimateData, GetEsignEstimateResponse, GetEsignEstimateResponses, GetEsignOrderData, GetEsignOrderResponse, GetEsignOrderResponses, GetEsignProposalDocumentData, GetEsignProposalDocumentResponse, GetEsignProposalDocumentResponses, GetEstimateCustomFieldsData, GetEstimateCustomFieldsResponse, GetEstimateCustomFieldsResponses, GetEstimateData, GetEstimateErrors, GetEstimateFavouriteFiltersData, GetEstimateFavouriteFiltersResponse, GetEstimateFavouriteFiltersResponses, GetEstimateFilesData, GetEstimateFilesResponse, GetEstimateFilesResponses, GetEstimatePaymentsData, GetEstimatePaymentsResponse, GetEstimatePaymentsResponses, GetEstimateResponse, GetEstimateResponses, GetEstimateSmartTagsData, GetEstimateSmartTagsResponse, GetEstimateSmartTagsResponses, GetEstimatesData, GetEstimatesResponse, GetEstimatesResponses, GetFileData, GetFileResponse, GetFileResponses, GetFiscalYearsData, GetFiscalYearsResponse, GetFiscalYearsResponses, GetGocardlessDirectdebitTimelineData, GetGocardlessDirectdebitTimelineResponse, GetGocardlessDirectdebitTimelineResponses, GetIndividualAddressData, GetIndividualAddressResponse, GetIndividualAddressResponses, GetIndividualAddressesData, GetIndividualAddressesResponse, GetIndividualAddressesResponses, GetIndividualContactsData, GetIndividualContactsResponse, GetIndividualContactsResponses, GetIndividualCustomFieldsData, GetIndividualCustomFieldsResponse, GetIndividualCustomFieldsResponses, GetIndividualData, GetIndividualFavouriteFiltersData, GetIndividualFavouriteFiltersResponse, GetIndividualFavouriteFiltersResponses, GetIndividualFilesData, GetIndividualFilesResponse, GetIndividualFilesResponses, GetIndividualResponse, GetIndividualResponses, GetIndividualSmartTagsData, GetIndividualSmartTagsResponse, GetIndividualSmartTagsResponses, GetIndividualsData, GetIndividualsResponse, GetIndividualsResponses, GetInvoiceCreditNotesData, GetInvoiceCreditNotesResponse, GetInvoiceCreditNotesResponses, GetInvoiceCustomFieldsData, GetInvoiceCustomFieldsResponse, GetInvoiceCustomFieldsResponses, GetInvoiceData, GetInvoiceFavouriteFiltersData, GetInvoiceFavouriteFiltersResponse, GetInvoiceFavouriteFiltersResponses, GetInvoiceFilesData, GetInvoiceFilesResponse, GetInvoiceFilesResponses, GetInvoicePaymentsData, GetInvoicePaymentsResponse, GetInvoicePaymentsResponses, GetInvoiceResponse, GetInvoiceResponses, GetInvoiceSmartTagsData, GetInvoiceSmartTagsResponse, GetInvoiceSmartTagsResponses, GetInvoicesData, GetInvoicesResponse, GetInvoicesResponses, GetInvoicingConformityStateData, GetInvoicingConformityStateResponse, GetInvoicingConformityStateResponses, GetItemData, GetItemDeclinationPricesData, GetItemDeclinationPricesResponse, GetItemDeclinationPricesResponses, GetItemDeclinationsData, GetItemDeclinationsResponse, GetItemDeclinationsResponses, GetItemFavouriteFiltersData, GetItemFavouriteFiltersResponse, GetItemFavouriteFiltersResponses, GetItemPricesData, GetItemPricesResponse, GetItemPricesResponses, GetItemResponse, GetItemResponses, GetItemsData, GetItemsResponse, GetItemsResponses, GetLanguagesData, GetLanguagesResponse, GetLanguagesResponses, GetListingExportData, GetListingExportResponse, GetListingExportResponses, GetMandatesData, GetMandatesErrors, GetMandatesResponse, GetMandatesResponses, GetModelData, GetModelResponse, GetModelResponses, GetModelTagsData, GetModelTagsResponse, GetModelTagsResponses, GetModelsData, GetModelsResponse, GetModelsResponses, GetNotificationsData, GetNotificationsResponse, GetNotificationsResponses, GetNotificationsSettingsData, GetNotificationsSettingsResponse, GetNotificationsSettingsResponses, GetOcrPurInvoiceData, GetOcrPurInvoiceMetasData, GetOcrPurInvoiceMetasResponse, GetOcrPurInvoiceMetasResponses, GetOcrPurInvoiceResponse, GetOcrPurInvoiceResponses, GetOpportunitiesCategoriesData, GetOpportunitiesCategoriesResponse, GetOpportunitiesCategoriesResponses, GetOpportunitiesCategoryData, GetOpportunitiesCategoryResponse, GetOpportunitiesCategoryResponses, GetOpportunitiesData, GetOpportunitiesResponse, GetOpportunitiesResponses, GetOpportunityCategorySourcesData, GetOpportunityCategorySourcesResponse, GetOpportunityCategorySourcesResponses, GetOpportunityCustomFieldsData, GetOpportunityCustomFieldsResponse, GetOpportunityCustomFieldsResponses, GetOpportunityData, GetOpportunityFavouriteFiltersData, GetOpportunityFavouriteFiltersResponse, GetOpportunityFavouriteFiltersResponses, GetOpportunityFilesData, GetOpportunityFilesResponse, GetOpportunityFilesResponses, GetOpportunityPipelineStepsData, GetOpportunityPipelineStepsResponse, GetOpportunityPipelineStepsResponses, GetOpportunityPipelinesData, GetOpportunityPipelinesResponse, GetOpportunityPipelinesResponses, GetOpportunityResponse, GetOpportunityResponses, GetOpportunitySmartTagsData, GetOpportunitySmartTagsResponse, GetOpportunitySmartTagsResponses, GetOpportunitySourcesData, GetOpportunitySourcesResponse, GetOpportunitySourcesResponses, GetOrderCustomFieldsData, GetOrderCustomFieldsResponse, GetOrderCustomFieldsResponses, GetOrderData, GetOrderFavouriteFiltersData, GetOrderFavouriteFiltersResponse, GetOrderFavouriteFiltersResponses, GetOrderFilesData, GetOrderFilesResponse, GetOrderFilesResponses, GetOrderPaymentsData, GetOrderPaymentsResponse, GetOrderPaymentsResponses, GetOrderResponse, GetOrderResponses, GetOrderSmartTagsData, GetOrderSmartTagsResponse, GetOrderSmartTagsResponses, GetOrdersData, GetOrdersResponse, GetOrdersResponses, GetPaymentData, GetPaymentMethodData, GetPaymentMethodResponse, GetPaymentMethodResponses, GetPaymentMethodsData, GetPaymentMethodsResponse, GetPaymentMethodsResponses, GetPaymentResponse, GetPaymentResponses, GetPaymentTermsData, GetPaymentTermsResponse, GetPaymentTermsResponses, GetPaymentsData, GetPaymentsResponse, GetPaymentsResponses, GetPhoneCallData, GetPhoneCallResponse, GetPhoneCallResponses, GetPhoneCallsData, GetPhoneCallsResponse, GetPhoneCallsResponses, GetPrimesData, GetPrimesResponse, GetPrimesResponses, GetProfilesData, GetProfilesResponse, GetProfilesResponses, GetProformaInvoiceCustomFieldsData, GetProformaInvoiceCustomFieldsResponse, GetProformaInvoiceCustomFieldsResponses, GetProposalDocumentData, GetProposalDocumentResponse, GetProposalDocumentResponses, GetProposalModelData, GetProposalModelResponse, GetProposalModelResponses, GetProposalsModelsData, GetProposalsModelsResponse, GetProposalsModelsResponses, GetQuotasData, GetQuotasResponse, GetQuotasResponses, GetRateCategoriesData, GetRateCategoriesResponse, GetRateCategoriesResponses, GetRateCategoryData, GetRateCategoryResponse, GetRateCategoryResponses, GetScopesData, GetScopesResponse, GetScopesResponses, GetScopesTreeData, GetScopesTreeResponse, GetScopesTreeResponses, GetStaffData, GetStaffErrors, GetStaffResponse, GetStaffResponses, GetStaffsData, GetStaffsResponse, GetStaffsResponses, GetSubscriptionData, GetSubscriptionResponse, GetSubscriptionResponses, GetSubscriptionsData, GetSubscriptionsPaymentInstallmentsData, GetSubscriptionsPaymentInstallmentsResponse, GetSubscriptionsPaymentInstallmentsResponses, GetSubscriptionsResponse, GetSubscriptionsResponses, GetSystemEmailTemplateWithContentData, GetSystemEmailTemplateWithContentErrors, GetSystemEmailTemplateWithContentResponse, GetSystemEmailTemplateWithContentResponses, GetTaskData, GetTaskResponse, GetTaskResponses, GetTasksData, GetTasksLabelsData, GetTasksLabelsResponse, GetTasksLabelsResponses, GetTasksResponse, GetTasksResponses, GetTaxAccountingChartData, GetTaxAccountingChartResponse, GetTaxAccountingChartResponses, GetTaxData, GetTaxResponse, GetTaxResponses, GetTaxesAccountingChartsData, GetTaxesAccountingChartsResponse, GetTaxesAccountingChartsResponses, GetTaxesData, GetTaxesResponse, GetTaxesResponses, GetTeamsData, GetTeamsResponse, GetTeamsResponses, GetUnitsData, GetUnitsResponse, GetUnitsResponses, GetWebhookData, GetWebhookEventsData, GetWebhookEventsResponse, GetWebhookEventsResponses, GetWebhookResponse, GetWebhookResponses, GetWebhooksData, GetWebhooksResponse, GetWebhooksResponses, ImportModel, ImportModelSchema, ImportPrepareInput, ImportPrepareInputSchema, ImportStartInput, ImportStartInputSchema, ImportType, ImportValidateInput, ImportValidateInputSchema, IndividualPreferences, IndividualPreferencesSchema, IndividualPreferencesWritable, IndividualPreferencesWritableSchema, Invoice, InvoiceCompute, InvoiceComputeSchema, InvoiceComputeWritable, InvoiceComputeWritableSchema, InvoiceCreate, InvoiceCreateSchema, InvoiceCreateWritable, InvoiceCreateWritableSchema, InvoiceEmbed, InvoiceFilters, InvoiceFiltersSchema, InvoiceOne, InvoiceOneEmbed, InvoiceOneSchema, InvoiceOneWritable, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOne, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritable, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdate, InvoiceUpdateSchema, InvoiceUpdateWritable, InvoiceUpdateWritableSchema, InvoiceWritable, InvoiceWritableSchema, InvoicingConformityState, InvoicingConformityStateSchema, InvoicingConformityStateWritable, InvoicingConformityStateWritableSchema, InvoicingPayment, InvoicingPaymentSchema, InvoicingSearch, InvoicingSearchFilters, InvoicingSearchFiltersSchema, InvoicingSearchSchema, InvoicingSettingsMetadata, InvoicingSettingsMetadataSchema, ItemInputPrice, ItemInputPriceSchema, ItemOrder, ItemPrice, ItemPriceSchema, ItemReadItem, ItemReadItemSchema, Label, LabelBaseItem, LabelBaseItemSchema, LabelBaseItemWritable, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritable, LabelWritableSchema, Language, LanguageCollection, LanguageCollectionSchema, LicenseEdit, LicenseEditSchema, LicenseRead, LicenseReadSchema, Limit, LinkCompanyContact, LinkCompanyContactData, LinkCompanyContactResponses, LinkCompanyContactSchema, LinkCompanySmartTagsData, LinkCompanySmartTagsResponse, LinkCompanySmartTagsResponses, LinkContactSmartTagsData, LinkContactSmartTagsResponse, LinkContactSmartTagsResponses, LinkCreditNoteDiscountInclTaxesData, LinkCreditNoteDiscountInclTaxesErrors, LinkCreditNoteDiscountInclTaxesResponses, LinkCreditNotePaymentData, LinkCreditNotePaymentResponse, LinkCreditNotePaymentResponses, LinkCreditNotePrimeData, LinkCreditNotePrimeErrors, LinkCreditNotePrimeResponses, LinkCreditNoteSmartTagsData, LinkCreditNoteSmartTagsResponse, LinkCreditNoteSmartTagsResponses, LinkCreditNoteToInvoiceData, LinkCreditNoteToInvoiceResponse, LinkCreditNoteToInvoiceResponses, LinkDepositInvoicePaymentData, LinkDepositInvoicePaymentResponse, LinkDepositInvoicePaymentResponses, LinkDepositInvoiceSmartTagsData, LinkDepositInvoiceSmartTagsResponse, LinkDepositInvoiceSmartTagsResponses, LinkEstimateDiscountInclTaxesData, LinkEstimateDiscountInclTaxesErrors, LinkEstimateDiscountInclTaxesResponses, LinkEstimatePaymentData, LinkEstimatePaymentResponse, LinkEstimatePaymentResponses, LinkEstimatePrimeData, LinkEstimatePrimeErrors, LinkEstimatePrimeResponses, LinkEstimateSmartTagsData, LinkEstimateSmartTagsResponse, LinkEstimateSmartTagsResponses, LinkIndividualSmartTagsData, LinkIndividualSmartTagsResponse, LinkIndividualSmartTagsResponses, LinkInvoiceDiscountInclTaxesData, LinkInvoiceDiscountInclTaxesErrors, LinkInvoiceDiscountInclTaxesResponses, LinkInvoicePaymentData, LinkInvoicePaymentResponse, LinkInvoicePaymentResponses, LinkInvoicePrimeData, LinkInvoicePrimeErrors, LinkInvoicePrimeResponses, LinkInvoiceSmartTagsData, LinkInvoiceSmartTagsResponse, LinkInvoiceSmartTagsResponses, LinkInvoiceToCreditNoteData, LinkInvoiceToCreditNoteResponse, LinkInvoiceToCreditNoteResponses, LinkOpportunitySmartTagsData, LinkOpportunitySmartTagsResponse, LinkOpportunitySmartTagsResponses, LinkOrderDiscountInclTaxesData, LinkOrderDiscountInclTaxesErrors, LinkOrderDiscountInclTaxesResponses, LinkOrderPaymentData, LinkOrderPaymentResponse, LinkOrderPaymentResponses, LinkOrderPrimeData, LinkOrderPrimeErrors, LinkOrderPrimeResponses, LinkOrderSmartTagsData, LinkOrderSmartTagsResponse, LinkOrderSmartTagsResponses, LinkPaymentToDocument, LinkPaymentToDocumentSchema, ListClientsData, ListClientsResponse, ListClientsResponses, ListFilesOutput, ListFilesOutputSchema, ListFilesOutputWritable, ListFilesOutputWritableSchema, ListListingExportsData, ListListingExportsResponse, ListListingExportsResponses, ListingCollectionExportStart, ListingCollectionExportStartSchema, ListingExportItem, ListingExportItemSchema, ListingExportReschedule, ListingExportRescheduleSchema, ListingExportStart, ListingExportStartSchema, ListingExportUpdate, ListingExportUpdateSchema, ListingUserContext, ListingUserContextSchema, MailchimpSettings, MailchimpSettingsSchema, MailjetSettings, MailjetSettingsSchema, MarkAllNotificationsAsReadData, MarkAllNotificationsAsReadResponse, MarkAllNotificationsAsReadResponses, MarkNotificationAsReadData, MarkNotificationAsReadResponse, MarkNotificationAsReadResponses, MarketingAttributeDiffOutput, MarketingAttributeDiffOutputSchema, MarketingAttributeInput, MarketingAttributeInputSchema, MarketingAttributeOutput, MarketingAttributeOutputSchema, MarketingProviders, MarketingProvidersSchema, MetaAccountingJournalData, MetaAccountingJournalResponse, MetaAccountingJournalResponses, MetaCrmActivitiesData, MetaCrmActivitiesResponse, MetaCrmActivitiesResponses, Model, ModelOne, ModelOneSchema, ModelOneWritable, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritable, ModelWritableSchema, MoveFileData, MoveFileErrors, MoveFileInput, MoveFileInputSchema, MoveFileResponse, MoveFileResponses, Notification, NotificationFilters, NotificationFiltersSchema, NotificationMarkAsRead, NotificationMarkAsReadSchema, NotificationMetadata, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInput, NotificationSettingsInputSchema, NotificationSettingsOutput, NotificationSettingsOutputSchema, NotificationWritable, NotificationWritableSchema, ObjectiveCategory, ObjectiveCollectionOutput, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritable, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInput, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutput, ObjectiveComputeTurnoverOutputSchema, ObjectiveEmbed, ObjectiveMetadata, ObjectiveMetadataSchema, ObjectiveMetadataUpsell, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutput, ObjectiveOutputSchema, ObjectiveSearchInput, ObjectiveSearchInputSchema, ObjectiveTurnoverInput, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInput, ObjectiveTurnoverUpdateInputSchema, Ocr, OcrOrder, OcrPurInvoiceMetas, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritable, OcrWritableSchema, Offset, OnboardingScreenOutput, OnboardingScreenOutputSchema, OpportunitiesAggregations, OpportunitiesAggregationsSchema, OpportunitiesCategoryItem, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritable, OpportunitiesCategoryItemWritableSchema, OpportunityCreate, OpportunityCreateSchema, OpportunityEmbed, OpportunityEmbedWithAggregations, OpportunityFilters, OpportunityFiltersSchema, OpportunityItem, OpportunityItemSchema, OpportunityItemWritable, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatch, OpportunityPatchSchema, OpportunityPipelineCollectionItem, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritable, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFilters, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdate, OpportunityRankUpdateSchema, OpportunitySourceCollectionItem, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritable, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFilters, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdate, OpportunityUpdateSchema, OpportuntiyCategoryEmbed, Options, Order, Order2, OrderCompute, OrderComputeSchema, OrderComputeWritable, OrderComputeWritableSchema, OrderCreate, OrderCreateSchema, OrderCreateWritable, OrderCreateWritableSchema, OrderEmbed, OrderEmbedOne, OrderFilters, OrderFiltersSchema, OrderOne, OrderOneSchema, OrderOneWritable, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdate, OrderUpdateSchema, OrderUpdateWritable, OrderUpdateWritableSchema, OrderWritable, OrderWritableSchema, Owner, OwnerSchema, Pagination, PaginationSchema, PartialEmailHeader, PartialEmailHeaderSchema, PatchOpportunityData, PatchOpportunityResponse, PatchOpportunityResponses, PatchSubscriptionPaymentInstallmentData, PatchSubscriptionPaymentInstallmentErrors, PatchSubscriptionPaymentInstallmentResponses, Payment, PaymentMethod, PaymentMethodEmbed, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritable, PaymentMethodWritableSchema, PaymentProvider, PaymentProviderSchema, PaymentSchema, PaymentTerm, PaymentTermEmbed, PaymentTermSchema, PaymentWritable, PaymentWritableSchema, PersonalAccessTokenCreateItem, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItem, PersonalAccessTokenItemSchema, PersonalAccessTokenMetas, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritable, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItem, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritable, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItem, PhoneCallCreateItemSchema, PhoneCallEmbed, PhoneCallFilter, PhoneCallFilterSchema, PhoneCallItem, PhoneCallItemSchema, PhoneCallItemWritable, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItem, PhoneCallUpdateItemSchema, PipelineStepEmbed, PipelineStepFilters, PipelineStepFiltersSchema, PipelineStepOrder, PostCustomActivitiesData, PostCustomActivitiesResponse, PostCustomActivitiesResponses, PostCustomActivitiesSearchData, PostCustomActivitiesSearchResponse, PostCustomActivitiesSearchResponses, PostCustomActivityTypesData, PostCustomActivityTypesResponse, PostCustomActivityTypesResponses, PredictPlan, PredictPlanSchema, PrepareDepositInvoiceData, PrepareDepositInvoiceResponse, PrepareDepositInvoiceResponses, ProfileOrder, Profiles, ProfilesSchema, ProgressInvoiceCompute, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritable, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreate, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritable, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocId, ProgressInvoiceDocType, ProgressInvoiceMetadata, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritable, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOne, ProgressInvoiceOneSchema, ProgressInvoiceOneWritable, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdate, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritable, ProgressInvoiceUpdateWritableSchema, ProposalDocument, ProposalDocumentSchema, ProposalDocumentWritable, ProposalDocumentWritableSchema, ProposalModel, ProposalModelSchema, ProposalModelWritable, ProposalModelWritableSchema, PurCreditNoteOne, PurCreditNoteOneWritable, PurDeliveryOne, PurDeliveryOneWritable, PurInvoiceOne, PurInvoiceOneWritable, PurOrderOne, PurOrderOneWritable, PutAccountingChartsSettingsData, PutAccountingChartsSettingsResponse, PutAccountingChartsSettingsResponses, PutCustomActivitiesIdData, PutCustomActivitiesIdResponse, PutCustomActivitiesIdResponses, PutCustomActivityTypesIdData, PutCustomActivityTypesIdResponse, PutCustomActivityTypesIdResponses, PutEmailSettingsData, PutEmailSettingsResponse, PutEmailSettingsResponses, PutItemPricesData, PutItemPricesResponse, PutItemPricesResponses, PutNotificationsSettingsData, PutNotificationsSettingsResponse, PutNotificationsSettingsResponses, PutStaffLicensesData, PutStaffLicensesResponse, PutStaffLicensesResponses, QuickCreateDepositInvoiceData, QuickCreateDepositInvoiceResponse, QuickCreateDepositInvoiceResponses, Quotas, QuotasSchema, RateCategoryMetadata, RateCategoryMetadataSchema, Related, RelatedSchema, Report, ReportAggregation, ReportAggregationSchema, ReportEmbed, ReportSchema, ReportWritable, ReportWritableSchema, type RequestOptions, type RequestResult, RescheduleListingExportData, RescheduleListingExportResponse, RescheduleListingExportResponses, type ResolvedRequestOptions, type ResponseStyle, SaleEmbed, SaleEmbed2, SaleEmbedSchema, SaleEmbedWritable, SaleEmbedWritableSchema, SaleOrder, ScanFetch, ScanFetchSchema, ScanList, ScanListSchema, SearchAccountingCodesData, SearchAccountingCodesResponse, SearchAccountingCodesResponses, SearchAccountingJournalData, SearchAccountingJournalResponse, SearchAccountingJournalResponses, SearchActivitiesData, SearchActivitiesResponse, SearchActivitiesResponses, SearchAllOpportunityPipelineStepsData, SearchAllOpportunityPipelineStepsResponse, SearchAllOpportunityPipelineStepsResponses, SearchBarcodesData, SearchBarcodesResponse, SearchBarcodesResponses, SearchCalendarEventsData, SearchCalendarEventsResponse, SearchCalendarEventsResponses, SearchCommentsData, SearchCommentsResponse, SearchCommentsResponses, SearchCompaniesData, SearchCompaniesResponse, SearchCompaniesResponses, SearchContactsData, SearchContactsResponse, SearchContactsResponses, SearchCreditNotesData, SearchCreditNotesResponse, SearchCreditNotesResponses, SearchCrmActivitiesData, SearchCrmActivitiesResponse, SearchCrmActivitiesResponses, SearchCustomFieldsData, SearchCustomFieldsResponse, SearchCustomFieldsResponses, SearchData, SearchDeliveriesData, SearchDeliveriesResponse, SearchDeliveriesResponses, SearchDepositInvoicesData, SearchDepositInvoicesResponse, SearchDepositInvoicesResponses, SearchEstimatesData, SearchEstimatesErrors, SearchEstimatesResponse, SearchEstimatesResponses, SearchIndividualsData, SearchIndividualsResponse, SearchIndividualsResponses, SearchInvoicesData, SearchInvoicesResponse, SearchInvoicesResponses, SearchItemDeclinationsData, SearchItemDeclinationsResponse, SearchItemDeclinationsResponses, SearchItemsData, SearchItemsResponse, SearchItemsResponses, SearchListingExportsData, SearchListingExportsResponse, SearchListingExportsResponses, SearchMandatesData, SearchMandatesErrors, SearchMandatesResponse, SearchMandatesResponses, SearchModelsData, SearchModelsResponse, SearchModelsResponses, SearchNotificationsData, SearchNotificationsResponse, SearchNotificationsResponses, SearchOcrPurInvoiceData, SearchOcrPurInvoiceResponse, SearchOcrPurInvoiceResponses, SearchOpportunitiesData, SearchOpportunitiesResponse, SearchOpportunitiesResponses, SearchOpportunityPipelineStepsData, SearchOpportunityPipelineStepsResponse, SearchOpportunityPipelineStepsResponses, SearchOpportunityPipelinesData, SearchOpportunityPipelinesResponse, SearchOpportunityPipelinesResponses, SearchOpportunitySourcesData, SearchOpportunitySourcesResponse, SearchOpportunitySourcesResponses, SearchOrdersData, SearchOrdersResponse, SearchOrdersResponses, SearchPaymentMethodsData, SearchPaymentMethodsResponse, SearchPaymentMethodsResponses, SearchPaymentsData, SearchPaymentsResponse, SearchPaymentsResponses, SearchPhoneCallsData, SearchPhoneCallsResponse, SearchPhoneCallsResponses, SearchProposalsModelsData, SearchProposalsModelsResponse, SearchProposalsModelsResponses, SearchResponse, SearchResponses, SearchResult, SearchResultAggregations, SearchResultAggregationsSchema, SearchResultBaseItem, SearchResultBaseItemSchema, SearchResultBaseItemWritable, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritable, SearchResultWritableSchema, SearchStaffsData, SearchStaffsResponse, SearchStaffsResponses, SearchSubscriptionsData, SearchSubscriptionsPaymentInstallmentsData, SearchSubscriptionsPaymentInstallmentsResponse, SearchSubscriptionsPaymentInstallmentsResponses, SearchSubscriptionsResponse, SearchSubscriptionsResponses, SearchTasksData, SearchTasksResponse, SearchTasksResponses, SearchTaxesData, SearchTaxesResponse, SearchTaxesResponses, SearchTimelineData, SearchTimelineResponse, SearchTimelineResponses, SearchType, SearchWebhooksData, SearchWebhooksResponse, SearchWebhooksResponses, SendEmailData, SendEmailErrors, SendEmailResponse, SendEmailResponses, Social, SocialSchema, Staff, StaffAcl, StaffAclSchema, StaffAutocompleteResultItem, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritable, StaffAutocompleteResultItemWritableSchema, StaffCreateItem, StaffCreateItemSchema, StaffEmbed, StaffFilters, StaffFiltersSchema, StaffItemEmbed, StaffOrder, StaffPreferences, StaffPreferencesSchema, StaffPreferencesWritable, StaffPreferencesWritableSchema, StaffRestrictedView, StaffRestrictedViewSchema, StaffRestrictedViewWritable, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItem, StaffUpdateItemSchema, StaffWritable, StaffWritableSchema, StancerSettings, StancerSettingsSchema, Subscription, SubscriptionCreate, SubscriptionCreateSchema, SubscriptionOne, SubscriptionOneSchema, SubscriptionSchema, type TDataShape, TaskCollectionItem, TaskCollectionItemSchema, TaskCollectionItemWritable, TaskCollectionItemWritableSchema, TaskCreateItem, TaskCreateItemSchema, TaskEmbed, TaskFilter, TaskFilterSchema, TaskItem, TaskItemSchema, TaskItemWritable, TaskItemWritableSchema, TaskOrder, TaskUpdateItem, TaskUpdateItemSchema, TaxFilter, TaxFilterSchema, TaxSettingsInput, TaxSettingsInputSchema, TaxSettingsOutput, TaxSettingsOutputSchema, TaxesMetadata, TaxesMetadataSchema, Team, TeamSchema, TeamWritable, TeamWritableSchema, TwoFactorAuthenticationSettings, TwoFactorAuthenticationSettingsInput, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritable, TwoFactorAuthenticationSettingsWritableSchema, Unit, UnitEmbed, UnitOrder, UnitSchema, UnitSuggestionInput, UnitSuggestionInputSchema, UnitSuggestionOutput, UnitSuggestionOutputSchema, UnitWritable, UnitWritableSchema, UnitsSettings, UnitsSettingsSchema, UnlinkCompanyContactData, UnlinkCompanyContactResponse, UnlinkCompanyContactResponses, UnlinkCreditNoteDiscountInclTaxesData, UnlinkCreditNoteDiscountInclTaxesErrors, UnlinkCreditNoteDiscountInclTaxesResponse, UnlinkCreditNoteDiscountInclTaxesResponses, UnlinkCreditNoteInvoicesData, UnlinkCreditNoteInvoicesResponse, UnlinkCreditNoteInvoicesResponses, UnlinkCreditNotePaymentData, UnlinkCreditNotePaymentResponse, UnlinkCreditNotePaymentResponses, UnlinkCreditNotePrimeData, UnlinkCreditNotePrimeErrors, UnlinkCreditNotePrimeResponse, UnlinkCreditNotePrimeResponses, UnlinkDepositInvoicePaymentData, UnlinkDepositInvoicePaymentResponse, UnlinkDepositInvoicePaymentResponses, UnlinkEstimateDiscountInclTaxesData, UnlinkEstimateDiscountInclTaxesErrors, UnlinkEstimateDiscountInclTaxesResponse, UnlinkEstimateDiscountInclTaxesResponses, UnlinkEstimatePaymentData, UnlinkEstimatePaymentResponse, UnlinkEstimatePaymentResponses, UnlinkEstimatePrimeData, UnlinkEstimatePrimeErrors, UnlinkEstimatePrimeResponse, UnlinkEstimatePrimeResponses, UnlinkInvoiceDiscountInclTaxesData, UnlinkInvoiceDiscountInclTaxesErrors, UnlinkInvoiceDiscountInclTaxesResponse, UnlinkInvoiceDiscountInclTaxesResponses, UnlinkInvoicePaymentData, UnlinkInvoicePaymentResponse, UnlinkInvoicePaymentResponses, UnlinkInvoicePrimeData, UnlinkInvoicePrimeErrors, UnlinkInvoicePrimeResponse, UnlinkInvoicePrimeResponses, UnlinkInvoicesCreditNoteData, UnlinkInvoicesCreditNoteResponse, UnlinkInvoicesCreditNoteResponses, UnlinkOrderDiscountInclTaxesData, UnlinkOrderDiscountInclTaxesErrors, UnlinkOrderDiscountInclTaxesResponse, UnlinkOrderDiscountInclTaxesResponses, UnlinkOrderPaymentData, UnlinkOrderPaymentResponse, UnlinkOrderPaymentResponses, UnlinkOrderPrimeData, UnlinkOrderPrimeErrors, UnlinkOrderPrimeResponse, UnlinkOrderPrimeResponses, UpdateCalendarEventData, UpdateCalendarEventResponse, UpdateCalendarEventResponses, UpdateCommentData, UpdateCommentResponse, UpdateCommentResponses, UpdateCompanyAddressData, UpdateCompanyAddressResponse, UpdateCompanyAddressResponses, UpdateCompanyContactData, UpdateCompanyContactResponses, UpdateCompanyCustomFieldsData, UpdateCompanyCustomFieldsResponse, UpdateCompanyCustomFieldsResponses, UpdateCompanyData, UpdateCompanyPreferences, UpdateCompanyPreferencesSchema, UpdateCompanyResponse, UpdateCompanyResponses, UpdateContactAddressData, UpdateContactAddressResponse, UpdateContactAddressResponses, UpdateContactCustomFieldsData, UpdateContactCustomFieldsResponse, UpdateContactCustomFieldsResponses, UpdateContactData, UpdateContactResponse, UpdateContactResponses, UpdateCreditNoteCustomFieldsData, UpdateCreditNoteCustomFieldsResponse, UpdateCreditNoteCustomFieldsResponses, UpdateCreditNoteData, UpdateCreditNoteResponse, UpdateCreditNoteResponses, UpdateDepositInvoiceCustomFieldsData, UpdateDepositInvoiceCustomFieldsResponse, UpdateDepositInvoiceCustomFieldsResponses, UpdateDepositInvoiceData, UpdateDepositInvoiceResponse, UpdateDepositInvoiceResponses, UpdateDirectory, UpdateDirectoryData, UpdateDirectoryErrors, UpdateDirectoryResponse, UpdateDirectoryResponses, UpdateDirectorySchema, UpdateDiscountInclTaxes, UpdateDiscountInclTaxesData, UpdateDiscountInclTaxesErrors, UpdateDiscountInclTaxesResponse, UpdateDiscountInclTaxesResponses, UpdateDiscountInclTaxesSchema, UpdateEstimateCustomFieldsData, UpdateEstimateCustomFieldsResponse, UpdateEstimateCustomFieldsResponses, UpdateEstimateData, UpdateEstimateResponse, UpdateEstimateResponses, UpdateEstimateStatusData, UpdateEstimateStatusResponse, UpdateEstimateStatusResponses, UpdateIndividualAddressData, UpdateIndividualAddressResponse, UpdateIndividualAddressResponses, UpdateIndividualCustomFieldsData, UpdateIndividualCustomFieldsResponse, UpdateIndividualCustomFieldsResponses, UpdateIndividualData, UpdateIndividualPreferences, UpdateIndividualPreferencesSchema, UpdateIndividualResponse, UpdateIndividualResponses, UpdateInvoiceCustomFieldsData, UpdateInvoiceCustomFieldsResponse, UpdateInvoiceCustomFieldsResponses, UpdateInvoiceData, UpdateInvoiceResponse, UpdateInvoiceResponses, UpdateItem, UpdateItemData, UpdateItemResponse, UpdateItemResponses, UpdateItemSchema, UpdateLinkCompanyContact, UpdateLinkCompanyContactSchema, UpdateListingExportData, UpdateListingExportResponse, UpdateListingExportResponses, UpdateModelData, UpdateModelResponse, UpdateModelResponses, UpdateOpportunityCustomFieldsData, UpdateOpportunityCustomFieldsResponse, UpdateOpportunityCustomFieldsResponses, UpdateOpportunityData, UpdateOpportunityRankData, UpdateOpportunityRankResponse, UpdateOpportunityRankResponses, UpdateOpportunityResponse, UpdateOpportunityResponses, UpdateOrderCustomFieldsData, UpdateOrderCustomFieldsResponse, UpdateOrderCustomFieldsResponses, UpdateOrderData, UpdateOrderResponse, UpdateOrderResponses, UpdatePhoneCallData, UpdatePhoneCallResponse, UpdatePhoneCallResponses, UpdateProgressInvoiceData, UpdateProgressInvoiceResponse, UpdateProgressInvoiceResponses, UpdateRateCategoryData, UpdateRateCategoryResponse, UpdateRateCategoryResponses, UpdateStaffData, UpdateStaffResponse, UpdateStaffResponses, UpdateTaskData, UpdateTaskResponse, UpdateTaskResponses, UpdateTaxAccountingChartData, UpdateTaxAccountingChartResponse, UpdateTaxAccountingChartResponses, UpdateTaxData, UpdateTaxResponse, UpdateTaxResponses, UpdateWebhookData, UpdateWebhookResponse, UpdateWebhookResponses, UploadCompanyFileData, UploadCompanyFileResponse, UploadCompanyFileResponses, UploadContactFileData, UploadContactFileResponses, UploadCreditNoteFileData, UploadCreditNoteFileResponse, UploadCreditNoteFileResponses, UploadDepositInvoiceFileData, UploadDepositInvoiceFileResponse, UploadDepositInvoiceFileResponses, UploadDirectoryFileData, UploadDirectoryFileResponses, UploadEmailAttachmentData, UploadEmailAttachmentResponse, UploadEmailAttachmentResponses, UploadEstimateFileData, UploadEstimateFileResponse, UploadEstimateFileResponses, UploadFileInput, UploadFileInputSchema, UploadIndividualFileData, UploadIndividualFileResponse, UploadIndividualFileResponses, UploadInvoiceFileData, UploadInvoiceFileResponse, UploadInvoiceFileResponses, UploadOpportunityFileData, UploadOpportunityFileResponse, UploadOpportunityFileResponses, UploadOrderFileData, UploadOrderFileResponse, UploadOrderFileResponses, UserTwoFactorAuthenticationSettings, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettings, UserUpdateTwoFactorAuthenticationSettingsResponse, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateCreditNoteData, ValidateCreditNoteResponse, ValidateCreditNoteResponses, ValidateDepositInvoiceData, ValidateDepositInvoiceResponse, ValidateDepositInvoiceResponses, ValidateEmailDomainDnsData, ValidateEmailDomainDnsErrors, ValidateEmailDomainDnsResponse, ValidateEmailDomainDnsResponses, ValidateInvoice, ValidateInvoiceData, ValidateInvoiceResponse, ValidateInvoiceResponses, ValidateInvoiceSchema, Verify, Warehouse, WarehouseSchema, WarehouseWritable, WarehouseWritableSchema, WebhookCreateItem, WebhookCreateItemSchema, WebhookEditItem, WebhookEditItemSchema, WebhookEventsList, WebhookEventsListSchema, WebhookFilters, WebhookFiltersSchema, WebhookReadItem, WebhookReadItemSchema, _Error, 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 };
|
|
117876
117917
|
//# sourceMappingURL=index.d.mts.map
|