@getyetty-sdk/sellsy 2026.5.18 → 2026.5.21

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 CHANGED
@@ -1472,6 +1472,10 @@ type Estimate = {
1472
1472
  * Analytic code of document
1473
1473
  */
1474
1474
  analytic_code?: string | null;
1475
+ /**
1476
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
1477
+ */
1478
+ sale_type?: 'product' | 'service' | 'mixed';
1475
1479
  shipping_weight?: _heyapi_446_;
1476
1480
  /**
1477
1481
  * Total volume of product to ship in m3
@@ -1640,7 +1644,7 @@ type EstimateCreate = _heyapi_448_ & {
1640
1644
  /**
1641
1645
  * PDF option
1642
1646
  *
1643
- * PDF generation option
1647
+ * PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.
1644
1648
  */
1645
1649
  pdf_display?: {
1646
1650
  /**
@@ -1741,6 +1745,14 @@ type EstimateCreate = _heyapi_448_ & {
1741
1745
  * Show legal text on late payment interests
1742
1746
  */
1743
1747
  show_late_penalty_warning_text?: boolean;
1748
+ /**
1749
+ * Show sale type column on documents
1750
+ */
1751
+ show_sale_type?: boolean;
1752
+ /**
1753
+ * Show terms and conditions text page
1754
+ */
1755
+ show_terms_and_conditions_text?: boolean;
1744
1756
  };
1745
1757
  /**
1746
1758
  * Shipping options
@@ -3243,6 +3255,14 @@ type SaleEmbed = {
3243
3255
  * Show legal text on late payment interests
3244
3256
  */
3245
3257
  show_late_penalty_warning_text?: boolean;
3258
+ /**
3259
+ * Show sale type column on documents
3260
+ */
3261
+ show_sale_type?: boolean;
3262
+ /**
3263
+ * Show terms and conditions text page
3264
+ */
3265
+ show_terms_and_conditions_text?: boolean;
3246
3266
  };
3247
3267
  /**
3248
3268
  * Shipping settings
@@ -4425,7 +4445,7 @@ type StaffUpdateItem = {
4425
4445
  */
4426
4446
  firstname?: string;
4427
4447
  /**
4428
- * Staff email address
4448
+ * Staff email address. <br>If 2FA is enabled on the account, the `totp_code` field is required to update this field.
4429
4449
  */
4430
4450
  email?: string;
4431
4451
  /**
@@ -4482,6 +4502,10 @@ type StaffUpdateItem = {
4482
4502
  *
4483
4503
  */
4484
4504
  is_active?: boolean;
4505
+ /**
4506
+ * 6-digit TOTP code for verification. <br>Required when updating the email address if 2FA is enabled on the account.
4507
+ */
4508
+ totp_code?: string;
4485
4509
  };
4486
4510
  /**
4487
4511
  * Staff preferences
@@ -6791,7 +6815,7 @@ type Ocr = {
6791
6815
  /**
6792
6816
  * Source of the incoming document
6793
6817
  */
6794
- source?: 'ocr' | 'facturx';
6818
+ source?: 'ocr' | 'einvoicing';
6795
6819
  /**
6796
6820
  * Supplier name
6797
6821
  */
@@ -12003,6 +12027,10 @@ type ScanList = Array<{
12003
12027
  */
12004
12028
  address_line_2?: string | null;
12005
12029
  };
12030
+ /**
12031
+ * Employee count range of the company (e.g. "3-5", "10-19")
12032
+ */
12033
+ company_employee_range?: string | null;
12006
12034
  }>;
12007
12035
  /**
12008
12036
  * Search results
@@ -12108,6 +12136,10 @@ type ScanFetch = {
12108
12136
  * Sign of company
12109
12137
  */
12110
12138
  company_sign?: string | null;
12139
+ /**
12140
+ * Employee count range of the company (e.g. "3-5", "10-19")
12141
+ */
12142
+ company_employee_range?: string | null;
12111
12143
  };
12112
12144
  /**
12113
12145
  * Notification
@@ -12888,6 +12920,10 @@ type Invoice = {
12888
12920
  * Analytic code of document
12889
12921
  */
12890
12922
  analytic_code?: string | null;
12923
+ /**
12924
+ * Sale type of the document: product (goods), service, or mixed
12925
+ */
12926
+ sale_type?: 'product' | 'service' | 'mixed';
12891
12927
  };
12892
12928
  /**
12893
12929
  * Invoice
@@ -13192,6 +13228,10 @@ type InvoiceOne = {
13192
13228
  * Analytic code of document
13193
13229
  */
13194
13230
  analytic_code?: string | null;
13231
+ /**
13232
+ * Sale type of the document: product (goods), service, or mixed
13233
+ */
13234
+ sale_type?: 'product' | 'service' | 'mixed';
13195
13235
  } & {
13196
13236
  rows?: Array<{
13197
13237
  /**
@@ -13858,6 +13898,14 @@ type InvoiceOrProgressInvoiceOne = InvoiceOne | (_heyapi_554_ & {
13858
13898
  * Show legal text on late payment interests
13859
13899
  */
13860
13900
  show_late_penalty_warning_text?: boolean;
13901
+ /**
13902
+ * Show sale type column on documents
13903
+ */
13904
+ show_sale_type?: boolean;
13905
+ /**
13906
+ * Show terms and conditions text page
13907
+ */
13908
+ show_terms_and_conditions_text?: boolean;
13861
13909
  };
13862
13910
  } & _heyapi_462_;
13863
13911
  file?: _heyapi_615_;
@@ -14214,6 +14262,10 @@ type InvoiceCreate = {
14214
14262
  * Analytic code of document
14215
14263
  */
14216
14264
  analytic_code?: string | null;
14265
+ /**
14266
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
14267
+ */
14268
+ sale_type?: 'product' | 'service' | 'mixed';
14217
14269
  } & {
14218
14270
  parent?: {
14219
14271
  /**
@@ -14546,7 +14598,7 @@ type DepositInvoiceCreate = {
14546
14598
  /**
14547
14599
  * PDF option
14548
14600
  *
14549
- * PDF generation option
14601
+ * PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.
14550
14602
  */
14551
14603
  pdf_display?: {
14552
14604
  /**
@@ -14601,12 +14653,24 @@ type DepositInvoiceCreate = {
14601
14653
  * Show legal text on late payment interests
14602
14654
  */
14603
14655
  show_late_penalty_warning_text?: boolean;
14656
+ /**
14657
+ * Show sale type column on documents
14658
+ */
14659
+ show_sale_type?: boolean;
14660
+ /**
14661
+ * Show terms and conditions text page
14662
+ */
14663
+ show_terms_and_conditions_text?: boolean;
14604
14664
  };
14605
14665
  /**
14606
14666
  * Assigned staff label displayed on document.
14607
14667
  */
14608
14668
  assigned_staff_label_id?: number | null;
14609
14669
  };
14670
+ /**
14671
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
14672
+ */
14673
+ sale_type?: 'product' | 'service' | 'mixed';
14610
14674
  };
14611
14675
  /**
14612
14676
  * Invoice
@@ -14720,6 +14784,10 @@ type DepositInvoiceUpdate = {
14720
14784
  */
14721
14785
  layout_id?: number;
14722
14786
  settings?: _heyapi_710_;
14787
+ /**
14788
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
14789
+ */
14790
+ sale_type?: 'product' | 'service' | 'mixed';
14723
14791
  };
14724
14792
  /**
14725
14793
  * Prepare Deposit Invoice
@@ -15605,6 +15673,14 @@ type DepositInvoiceMetadata = {
15605
15673
  */
15606
15674
  value?: string;
15607
15675
  }>;
15676
+ /**
15677
+ * List of preference keys that are forced when enforce_display_rules is true
15678
+ */
15679
+ forced_prefs?: Array<string>;
15680
+ /**
15681
+ * Compliance state of the parent document on creation, or of the edited document on update
15682
+ */
15683
+ is_document_compliant?: boolean;
15608
15684
  };
15609
15685
  /**
15610
15686
  * Progress Invoice
@@ -15951,7 +16027,7 @@ type ProgressInvoiceCreate = {
15951
16027
  /**
15952
16028
  * PDF option
15953
16029
  *
15954
- * PDF generation option
16030
+ * PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.
15955
16031
  */
15956
16032
  pdf_display?: {
15957
16033
  /**
@@ -16052,10 +16128,18 @@ type ProgressInvoiceCreate = {
16052
16128
  * Show legal text on late payment interests
16053
16129
  */
16054
16130
  show_late_penalty_warning_text?: boolean;
16131
+ /**
16132
+ * Show sale type column on documents
16133
+ */
16134
+ show_sale_type?: boolean;
16055
16135
  /**
16056
16136
  * Show progress invoice summary
16057
16137
  */
16058
16138
  show_progress_invoice_summary?: boolean;
16139
+ /**
16140
+ * Show terms and conditions text page
16141
+ */
16142
+ show_terms_and_conditions_text?: boolean;
16059
16143
  };
16060
16144
  /**
16061
16145
  * Shipping options
@@ -16092,6 +16176,10 @@ type ProgressInvoiceCreate = {
16092
16176
  * Analytic code of document
16093
16177
  */
16094
16178
  analytic_code?: string | null;
16179
+ /**
16180
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
16181
+ */
16182
+ sale_type?: 'product' | 'service' | 'mixed';
16095
16183
  };
16096
16184
  /**
16097
16185
  * Progress Invoice
@@ -16664,6 +16752,10 @@ type CreditNote = {
16664
16752
  * Analytic code of document
16665
16753
  */
16666
16754
  analytic_code?: string | null;
16755
+ /**
16756
+ * Sale type of the document: product (goods), service, or mixed
16757
+ */
16758
+ sale_type?: 'product' | 'service' | 'mixed';
16667
16759
  /**
16668
16760
  * Credit Note Embed
16669
16761
  */
@@ -16930,6 +17022,10 @@ type CreditNoteOne = {
16930
17022
  * Analytic code of document
16931
17023
  */
16932
17024
  analytic_code?: string | null;
17025
+ /**
17026
+ * Sale type of the document: product (goods), service, or mixed
17027
+ */
17028
+ sale_type?: 'product' | 'service' | 'mixed';
16933
17029
  _embed?: _heyapi_747_;
16934
17030
  } & {
16935
17031
  rows?: Array<_heyapi_466_>;
@@ -17023,6 +17119,10 @@ type CreditNoteCreate = {
17023
17119
  * Analytic code of document
17024
17120
  */
17025
17121
  analytic_code?: string | null;
17122
+ /**
17123
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
17124
+ */
17125
+ sale_type?: 'product' | 'service' | 'mixed';
17026
17126
  /**
17027
17127
  * Invoicing address, by default take invoicing address of company/individual.
17028
17128
  */
@@ -17293,6 +17393,10 @@ type OrderCreate = {
17293
17393
  * Analytic code of document
17294
17394
  */
17295
17395
  analytic_code?: string | null;
17396
+ /**
17397
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
17398
+ */
17399
+ sale_type?: 'product' | 'service' | 'mixed';
17296
17400
  /**
17297
17401
  * Bank account ID
17298
17402
  */
@@ -17605,6 +17709,10 @@ type Order = {
17605
17709
  * @deprecated
17606
17710
  */
17607
17711
  eco_tax_id?: number | null;
17712
+ /**
17713
+ * Sale type of the document: product (goods), service, or mixed
17714
+ */
17715
+ sale_type?: 'product' | 'service' | 'mixed';
17608
17716
  /**
17609
17717
  * Check label ID
17610
17718
  */
@@ -17849,6 +17957,10 @@ type OrderOne = {
17849
17957
  * @deprecated
17850
17958
  */
17851
17959
  eco_tax_id?: number | null;
17960
+ /**
17961
+ * Sale type of the document: product (goods), service, or mixed
17962
+ */
17963
+ sale_type?: 'product' | 'service' | 'mixed';
17852
17964
  /**
17853
17965
  * Check label ID
17854
17966
  */
@@ -18269,6 +18381,10 @@ type Delivery = {
18269
18381
  * Analytic code of document
18270
18382
  */
18271
18383
  analytic_code?: string | null;
18384
+ /**
18385
+ * Sale type of the document: product (goods), service, or mixed
18386
+ */
18387
+ sale_type?: 'product' | 'service' | 'mixed';
18272
18388
  /**
18273
18389
  * Bank account ID
18274
18390
  */
@@ -18526,6 +18642,10 @@ type DeliveryOne = {
18526
18642
  * Analytic code of document
18527
18643
  */
18528
18644
  analytic_code?: string | null;
18645
+ /**
18646
+ * Sale type of the document: product (goods), service, or mixed
18647
+ */
18648
+ sale_type?: 'product' | 'service' | 'mixed';
18529
18649
  /**
18530
18650
  * Bank account ID
18531
18651
  */
@@ -21319,6 +21439,19 @@ type InvoicingSettingsMetadata = {
21319
21439
  * List of preference keys that are forced when enforce_display_rules is true
21320
21440
  */
21321
21441
  forced_prefs?: Array<string>;
21442
+ /**
21443
+ * List of available languages for conditions and acceptances translations
21444
+ */
21445
+ ui_langs?: Array<{
21446
+ /**
21447
+ * Language code
21448
+ */
21449
+ id?: string;
21450
+ /**
21451
+ * Language label
21452
+ */
21453
+ label?: string;
21454
+ }>;
21322
21455
  };
21323
21456
  /**
21324
21457
  * The consent settings
@@ -22121,6 +22254,14 @@ type ProgressInvoiceMetadata = {
22121
22254
  */
22122
22255
  value?: string;
22123
22256
  }>;
22257
+ /**
22258
+ * List of preference keys that are forced when enforce_display_rules is true
22259
+ */
22260
+ forced_prefs?: Array<string>;
22261
+ /**
22262
+ * Compliance state of the parent document on creation, or of the edited document on update
22263
+ */
22264
+ is_document_compliant?: boolean;
22124
22265
  };
22125
22266
  /**
22126
22267
  * Update Progress Invoice
@@ -22253,6 +22394,10 @@ type ProgressInvoiceUpdate = {
22253
22394
  * Analytic code of document
22254
22395
  */
22255
22396
  analytic_code?: string | null;
22397
+ /**
22398
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
22399
+ */
22400
+ sale_type?: 'product' | 'service' | 'mixed';
22256
22401
  };
22257
22402
  /**
22258
22403
  * Bank Account
@@ -23424,6 +23569,10 @@ type EstimateWritable = {
23424
23569
  * Analytic code of document
23425
23570
  */
23426
23571
  analytic_code?: string | null;
23572
+ /**
23573
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
23574
+ */
23575
+ sale_type?: 'product' | 'service' | 'mixed';
23427
23576
  shipping_weight?: _heyapi_446_;
23428
23577
  /**
23429
23578
  * Total volume of product to ship in m3
@@ -23572,7 +23721,7 @@ type EstimateCreateWritable = _heyapi_448_ & {
23572
23721
  /**
23573
23722
  * PDF option
23574
23723
  *
23575
- * PDF generation option
23724
+ * PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.
23576
23725
  */
23577
23726
  pdf_display?: {
23578
23727
  /**
@@ -23673,6 +23822,14 @@ type EstimateCreateWritable = _heyapi_448_ & {
23673
23822
  * Show legal text on late payment interests
23674
23823
  */
23675
23824
  show_late_penalty_warning_text?: boolean;
23825
+ /**
23826
+ * Show sale type column on documents
23827
+ */
23828
+ show_sale_type?: boolean;
23829
+ /**
23830
+ * Show terms and conditions text page
23831
+ */
23832
+ show_terms_and_conditions_text?: boolean;
23676
23833
  };
23677
23834
  /**
23678
23835
  * Shipping options
@@ -24900,6 +25057,14 @@ type SaleEmbedWritable = {
24900
25057
  * Show legal text on late payment interests
24901
25058
  */
24902
25059
  show_late_penalty_warning_text?: boolean;
25060
+ /**
25061
+ * Show sale type column on documents
25062
+ */
25063
+ show_sale_type?: boolean;
25064
+ /**
25065
+ * Show terms and conditions text page
25066
+ */
25067
+ show_terms_and_conditions_text?: boolean;
24903
25068
  };
24904
25069
  /**
24905
25070
  * Shipping settings
@@ -26849,7 +27014,7 @@ type OcrWritable = {
26849
27014
  /**
26850
27015
  * Source of the incoming document
26851
27016
  */
26852
- source?: 'ocr' | 'facturx';
27017
+ source?: 'ocr' | 'einvoicing';
26853
27018
  /**
26854
27019
  * Supplier name
26855
27020
  */
@@ -28632,6 +28797,10 @@ type InvoiceWritable = {
28632
28797
  * Analytic code of document
28633
28798
  */
28634
28799
  analytic_code?: string | null;
28800
+ /**
28801
+ * Sale type of the document: product (goods), service, or mixed
28802
+ */
28803
+ sale_type?: 'product' | 'service' | 'mixed';
28635
28804
  };
28636
28805
  /**
28637
28806
  * Invoice
@@ -28812,6 +28981,10 @@ type InvoiceOneWritable = {
28812
28981
  * Analytic code of document
28813
28982
  */
28814
28983
  analytic_code?: string | null;
28984
+ /**
28985
+ * Sale type of the document: product (goods), service, or mixed
28986
+ */
28987
+ sale_type?: 'product' | 'service' | 'mixed';
28815
28988
  } & {
28816
28989
  rows?: Array<{
28817
28990
  type: 'single';
@@ -29342,6 +29515,14 @@ type InvoiceOrProgressInvoiceOneWritable = InvoiceOneWritable | (_heyapi_554_ &
29342
29515
  * Show legal text on late payment interests
29343
29516
  */
29344
29517
  show_late_penalty_warning_text?: boolean;
29518
+ /**
29519
+ * Show sale type column on documents
29520
+ */
29521
+ show_sale_type?: boolean;
29522
+ /**
29523
+ * Show terms and conditions text page
29524
+ */
29525
+ show_terms_and_conditions_text?: boolean;
29345
29526
  };
29346
29527
  } & _heyapi_462_;
29347
29528
  file?: _heyapi_615_;
@@ -29545,6 +29726,10 @@ type InvoiceCreateWritable = {
29545
29726
  * Analytic code of document
29546
29727
  */
29547
29728
  analytic_code?: string | null;
29729
+ /**
29730
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
29731
+ */
29732
+ sale_type?: 'product' | 'service' | 'mixed';
29548
29733
  } & {
29549
29734
  parent?: {
29550
29735
  /**
@@ -29877,7 +30062,7 @@ type DepositInvoiceCreateWritable = {
29877
30062
  /**
29878
30063
  * PDF option
29879
30064
  *
29880
- * PDF generation option
30065
+ * PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.
29881
30066
  */
29882
30067
  pdf_display?: {
29883
30068
  /**
@@ -29928,12 +30113,24 @@ type DepositInvoiceCreateWritable = {
29928
30113
  * Show legal text on late payment interests
29929
30114
  */
29930
30115
  show_late_penalty_warning_text?: boolean;
30116
+ /**
30117
+ * Show sale type column on documents
30118
+ */
30119
+ show_sale_type?: boolean;
30120
+ /**
30121
+ * Show terms and conditions text page
30122
+ */
30123
+ show_terms_and_conditions_text?: boolean;
29931
30124
  };
29932
30125
  /**
29933
30126
  * Assigned staff label displayed on document.
29934
30127
  */
29935
30128
  assigned_staff_label_id?: number | null;
29936
30129
  };
30130
+ /**
30131
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
30132
+ */
30133
+ sale_type?: 'product' | 'service' | 'mixed';
29937
30134
  };
29938
30135
  /**
29939
30136
  * Invoice
@@ -30047,6 +30244,10 @@ type DepositInvoiceUpdateWritable = {
30047
30244
  */
30048
30245
  layout_id?: number;
30049
30246
  settings?: _heyapi_710_;
30247
+ /**
30248
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
30249
+ */
30250
+ sale_type?: 'product' | 'service' | 'mixed';
30050
30251
  };
30051
30252
  /**
30052
30253
  * Deposit Invoice Compute
@@ -30648,6 +30849,14 @@ type DepositInvoiceMetadataWritable = {
30648
30849
  */
30649
30850
  value?: string;
30650
30851
  }>;
30852
+ /**
30853
+ * List of preference keys that are forced when enforce_display_rules is true
30854
+ */
30855
+ forced_prefs?: Array<string>;
30856
+ /**
30857
+ * Compliance state of the parent document on creation, or of the edited document on update
30858
+ */
30859
+ is_document_compliant?: boolean;
30651
30860
  };
30652
30861
  /**
30653
30862
  * Progress Invoice
@@ -30994,7 +31203,7 @@ type ProgressInvoiceCreateWritable = {
30994
31203
  /**
30995
31204
  * PDF option
30996
31205
  *
30997
- * PDF generation option
31206
+ * PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.
30998
31207
  */
30999
31208
  pdf_display?: {
31000
31209
  /**
@@ -31095,10 +31304,18 @@ type ProgressInvoiceCreateWritable = {
31095
31304
  * Show legal text on late payment interests
31096
31305
  */
31097
31306
  show_late_penalty_warning_text?: boolean;
31307
+ /**
31308
+ * Show sale type column on documents
31309
+ */
31310
+ show_sale_type?: boolean;
31098
31311
  /**
31099
31312
  * Show progress invoice summary
31100
31313
  */
31101
31314
  show_progress_invoice_summary?: boolean;
31315
+ /**
31316
+ * Show terms and conditions text page
31317
+ */
31318
+ show_terms_and_conditions_text?: boolean;
31102
31319
  };
31103
31320
  /**
31104
31321
  * Shipping options
@@ -31135,6 +31352,10 @@ type ProgressInvoiceCreateWritable = {
31135
31352
  * Analytic code of document
31136
31353
  */
31137
31354
  analytic_code?: string | null;
31355
+ /**
31356
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
31357
+ */
31358
+ sale_type?: 'product' | 'service' | 'mixed';
31138
31359
  };
31139
31360
  /**
31140
31361
  * Progress Invoice
@@ -31411,6 +31632,10 @@ type CreditNoteWritable = {
31411
31632
  * Analytic code of document
31412
31633
  */
31413
31634
  analytic_code?: string | null;
31635
+ /**
31636
+ * Sale type of the document: product (goods), service, or mixed
31637
+ */
31638
+ sale_type?: 'product' | 'service' | 'mixed';
31414
31639
  /**
31415
31640
  * Credit Note Embed
31416
31641
  */
@@ -31630,6 +31855,10 @@ type CreditNoteOneWritable = {
31630
31855
  * Analytic code of document
31631
31856
  */
31632
31857
  analytic_code?: string | null;
31858
+ /**
31859
+ * Sale type of the document: product (goods), service, or mixed
31860
+ */
31861
+ sale_type?: 'product' | 'service' | 'mixed';
31633
31862
  _embed?: _heyapi_747_;
31634
31863
  } & {
31635
31864
  rows?: Array<_heyapi_466_>;
@@ -31723,6 +31952,10 @@ type CreditNoteCreateWritable = {
31723
31952
  * Analytic code of document
31724
31953
  */
31725
31954
  analytic_code?: string | null;
31955
+ /**
31956
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
31957
+ */
31958
+ sale_type?: 'product' | 'service' | 'mixed';
31726
31959
  /**
31727
31960
  * Invoicing address, by default take invoicing address of company/individual.
31728
31961
  */
@@ -31953,6 +32186,10 @@ type OrderCreateWritable = {
31953
32186
  * Analytic code of document
31954
32187
  */
31955
32188
  analytic_code?: string | null;
32189
+ /**
32190
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
32191
+ */
32192
+ sale_type?: 'product' | 'service' | 'mixed';
31956
32193
  /**
31957
32194
  * Bank account ID
31958
32195
  */
@@ -32157,6 +32394,10 @@ type OrderWritable = {
32157
32394
  * @deprecated
32158
32395
  */
32159
32396
  eco_tax_id?: number | null;
32397
+ /**
32398
+ * Sale type of the document: product (goods), service, or mixed
32399
+ */
32400
+ sale_type?: 'product' | 'service' | 'mixed';
32160
32401
  /**
32161
32402
  * Check label ID
32162
32403
  */
@@ -32293,6 +32534,10 @@ type OrderOneWritable = {
32293
32534
  * @deprecated
32294
32535
  */
32295
32536
  eco_tax_id?: number | null;
32537
+ /**
32538
+ * Sale type of the document: product (goods), service, or mixed
32539
+ */
32540
+ sale_type?: 'product' | 'service' | 'mixed';
32296
32541
  /**
32297
32542
  * Check label ID
32298
32543
  */
@@ -32532,6 +32777,10 @@ type DeliveryWritable = {
32532
32777
  * Analytic code of document
32533
32778
  */
32534
32779
  analytic_code?: string | null;
32780
+ /**
32781
+ * Sale type of the document: product (goods), service, or mixed
32782
+ */
32783
+ sale_type?: 'product' | 'service' | 'mixed';
32535
32784
  /**
32536
32785
  * Bank account ID
32537
32786
  */
@@ -32686,6 +32935,10 @@ type DeliveryOneWritable = {
32686
32935
  * Analytic code of document
32687
32936
  */
32688
32937
  analytic_code?: string | null;
32938
+ /**
32939
+ * Sale type of the document: product (goods), service, or mixed
32940
+ */
32941
+ sale_type?: 'product' | 'service' | 'mixed';
32689
32942
  /**
32690
32943
  * Bank account ID
32691
32944
  */
@@ -33954,6 +34207,14 @@ type ProgressInvoiceMetadataWritable = {
33954
34207
  */
33955
34208
  value?: string;
33956
34209
  }>;
34210
+ /**
34211
+ * List of preference keys that are forced when enforce_display_rules is true
34212
+ */
34213
+ forced_prefs?: Array<string>;
34214
+ /**
34215
+ * Compliance state of the parent document on creation, or of the edited document on update
34216
+ */
34217
+ is_document_compliant?: boolean;
33957
34218
  };
33958
34219
  /**
33959
34220
  * Update Progress Invoice
@@ -34086,6 +34347,10 @@ type ProgressInvoiceUpdateWritable = {
34086
34347
  * Analytic code of document
34087
34348
  */
34088
34349
  analytic_code?: string | null;
34350
+ /**
34351
+ * Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.
34352
+ */
34353
+ sale_type?: 'product' | 'service' | 'mixed';
34089
34354
  };
34090
34355
  /**
34091
34356
  * Bank Account
@@ -52307,6 +52572,17 @@ type UpdateStaffData = {
52307
52572
  };
52308
52573
  url: '/staffs/{id}';
52309
52574
  };
52575
+ type UpdateStaffErrors = {
52576
+ /**
52577
+ * The request requires validation of a two-factor authentication code.
52578
+ */
52579
+ 401: _Error & {
52580
+ error?: {
52581
+ message?: unknown;
52582
+ };
52583
+ };
52584
+ };
52585
+ type UpdateStaffError = UpdateStaffErrors[keyof UpdateStaffErrors];
52310
52586
  type UpdateStaffResponses = {
52311
52587
  /**
52312
52588
  * Staff updated, schema content depends on current user level of visibility on staffs, a restricted version could be return
@@ -60192,7 +60468,7 @@ type UpdateModelData = {
60192
60468
  * Invoice's owner (staff id)
60193
60469
  */
60194
60470
  owner_id?: number;
60195
- rows?: Array<_heyapi_2204_> | null;
60471
+ rows?: Array<_heyapi_2206_> | null;
60196
60472
  };
60197
60473
  path: {
60198
60474
  /**
@@ -65057,6 +65333,12 @@ declare const EstimateSchema: {
65057
65333
  readonly description: "Analytic code of document";
65058
65334
  readonly example: "divers";
65059
65335
  };
65336
+ readonly sale_type: {
65337
+ readonly type: "string";
65338
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
65339
+ readonly enum: readonly ["product", "service", "mixed"];
65340
+ readonly example: "product";
65341
+ };
65060
65342
  readonly shipping_weight: {
65061
65343
  readonly $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight";
65062
65344
  };
@@ -65340,7 +65622,7 @@ declare const EstimateCreateSchema: {
65340
65622
  readonly pdf_display: {
65341
65623
  readonly type: "object";
65342
65624
  readonly title: "PDF option";
65343
- readonly description: "PDF generation option";
65625
+ readonly description: "PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.";
65344
65626
  readonly additionalProperties: false;
65345
65627
  readonly properties: {
65346
65628
  readonly show_vat_mention: {
@@ -65464,6 +65746,16 @@ declare const EstimateCreateSchema: {
65464
65746
  readonly description: "Show legal text on late payment interests";
65465
65747
  readonly example: true;
65466
65748
  };
65749
+ readonly show_sale_type: {
65750
+ readonly type: "boolean";
65751
+ readonly description: "Show sale type column on documents";
65752
+ readonly example: true;
65753
+ };
65754
+ readonly show_terms_and_conditions_text: {
65755
+ readonly type: "boolean";
65756
+ readonly description: "Show terms and conditions text page";
65757
+ readonly example: true;
65758
+ };
65467
65759
  };
65468
65760
  };
65469
65761
  readonly shipping: {
@@ -67835,6 +68127,16 @@ declare const SaleEmbedSchema: {
67835
68127
  readonly description: "Show legal text on late payment interests";
67836
68128
  readonly example: true;
67837
68129
  };
68130
+ readonly show_sale_type: {
68131
+ readonly type: "boolean";
68132
+ readonly description: "Show sale type column on documents";
68133
+ readonly example: true;
68134
+ };
68135
+ readonly show_terms_and_conditions_text: {
68136
+ readonly type: "boolean";
68137
+ readonly description: "Show terms and conditions text page";
68138
+ readonly example: true;
68139
+ };
67838
68140
  };
67839
68141
  };
67840
68142
  readonly shipping: {
@@ -68659,7 +68961,7 @@ declare const StaffUpdateItemSchema: {
68659
68961
  readonly email: {
68660
68962
  readonly type: "string";
68661
68963
  readonly format: "email";
68662
- readonly description: "Staff email address";
68964
+ readonly description: "Staff email address. <br>If 2FA is enabled on the account, the `totp_code` field is required to update this field.";
68663
68965
  readonly example: "john@example-company.com";
68664
68966
  };
68665
68967
  readonly phone_number: {
@@ -68742,6 +69044,13 @@ declare const StaffUpdateItemSchema: {
68742
69044
  readonly description: "Status of the staff access <br>If your account contains licenses, those already attached to this collaborator will remain so, you will have to specify the \"licenses\" property to free the licenses\n";
68743
69045
  readonly example: true;
68744
69046
  };
69047
+ readonly totp_code: {
69048
+ readonly type: "string";
69049
+ readonly description: "6-digit TOTP code for verification. <br>Required when updating the email address if 2FA is enabled on the account.";
69050
+ readonly example: "123456";
69051
+ readonly minLength: 6;
69052
+ readonly maxLength: 6;
69053
+ };
68745
69054
  };
68746
69055
  };
68747
69056
  declare const StaffPreferencesSchema: {
@@ -72794,7 +73103,7 @@ declare const OcrSchema: {
72794
73103
  readonly source: {
72795
73104
  readonly type: "string";
72796
73105
  readonly description: "Source of the incoming document";
72797
- readonly enum: readonly ["ocr", "facturx"];
73106
+ readonly enum: readonly ["ocr", "einvoicing"];
72798
73107
  readonly example: "ocr";
72799
73108
  };
72800
73109
  readonly supplier: {
@@ -78031,7 +78340,7 @@ declare const EmailSendBatchBodySchema: {
78031
78340
  readonly type: "array";
78032
78341
  readonly description: "List of related objects for the email. All items must have the same type.";
78033
78342
  readonly minItems: 1;
78034
- readonly maxItems: 1000;
78343
+ readonly maxItems: 2000;
78035
78344
  readonly items: {
78036
78345
  readonly type: "object";
78037
78346
  readonly required: readonly ["type", "id"];
@@ -81703,6 +82012,12 @@ declare const ScanListSchema: {
81703
82012
  };
81704
82013
  };
81705
82014
  };
82015
+ readonly company_employee_range: {
82016
+ readonly type: "string";
82017
+ readonly description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")";
82018
+ readonly example: "3-5";
82019
+ readonly nullable: true;
82020
+ };
81706
82021
  };
81707
82022
  };
81708
82023
  };
@@ -81850,6 +82165,12 @@ declare const ScanFetchSchema: {
81850
82165
  readonly description: "Sign of company";
81851
82166
  readonly nullable: true;
81852
82167
  };
82168
+ readonly company_employee_range: {
82169
+ readonly type: "string";
82170
+ readonly description: "Employee count range of the company (e.g. \"3-5\", \"10-19\")";
82171
+ readonly example: "3-5";
82172
+ readonly nullable: true;
82173
+ };
81853
82174
  };
81854
82175
  };
81855
82176
  declare const NotificationSchema: {
@@ -83038,6 +83359,12 @@ declare const InvoiceSchema: {
83038
83359
  readonly description: "Analytic code of document";
83039
83360
  readonly example: "divers";
83040
83361
  };
83362
+ readonly sale_type: {
83363
+ readonly type: "string";
83364
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
83365
+ readonly enum: readonly ["product", "service", "mixed"];
83366
+ readonly example: "product";
83367
+ };
83041
83368
  };
83042
83369
  };
83043
83370
  declare const InvoiceOneSchema: {
@@ -83455,6 +83782,12 @@ declare const InvoiceOneSchema: {
83455
83782
  readonly description: "Analytic code of document";
83456
83783
  readonly example: "divers";
83457
83784
  };
83785
+ readonly sale_type: {
83786
+ readonly type: "string";
83787
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
83788
+ readonly enum: readonly ["product", "service", "mixed"];
83789
+ readonly example: "product";
83790
+ };
83458
83791
  };
83459
83792
  }, {
83460
83793
  readonly type: "object";
@@ -84567,6 +84900,16 @@ declare const InvoiceOrProgressInvoiceOneSchema: {
84567
84900
  readonly description: "Show legal text on late payment interests";
84568
84901
  readonly example: true;
84569
84902
  };
84903
+ readonly show_sale_type: {
84904
+ readonly type: "boolean";
84905
+ readonly description: "Show sale type column on documents";
84906
+ readonly example: true;
84907
+ };
84908
+ readonly show_terms_and_conditions_text: {
84909
+ readonly type: "boolean";
84910
+ readonly description: "Show terms and conditions text page";
84911
+ readonly example: true;
84912
+ };
84570
84913
  };
84571
84914
  }];
84572
84915
  };
@@ -85093,6 +85436,12 @@ declare const InvoiceCreateSchema: {
85093
85436
  readonly description: "Analytic code of document";
85094
85437
  readonly example: "divers";
85095
85438
  };
85439
+ readonly sale_type: {
85440
+ readonly type: "string";
85441
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
85442
+ readonly enum: readonly ["product", "service", "mixed"];
85443
+ readonly example: "product";
85444
+ };
85096
85445
  };
85097
85446
  }, {
85098
85447
  readonly type: "object";
@@ -85632,7 +85981,7 @@ declare const DepositInvoiceCreateSchema: {
85632
85981
  readonly pdf_display: {
85633
85982
  readonly type: "object";
85634
85983
  readonly title: "PDF option";
85635
- readonly description: "PDF generation option";
85984
+ readonly description: "PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.";
85636
85985
  readonly additionalProperties: false;
85637
85986
  readonly properties: {
85638
85987
  readonly show_vat_mention: {
@@ -85701,6 +86050,16 @@ declare const DepositInvoiceCreateSchema: {
85701
86050
  readonly description: "Show legal text on late payment interests";
85702
86051
  readonly example: true;
85703
86052
  };
86053
+ readonly show_sale_type: {
86054
+ readonly type: "boolean";
86055
+ readonly description: "Show sale type column on documents";
86056
+ readonly example: true;
86057
+ };
86058
+ readonly show_terms_and_conditions_text: {
86059
+ readonly type: "boolean";
86060
+ readonly description: "Show terms and conditions text page";
86061
+ readonly example: true;
86062
+ };
85704
86063
  };
85705
86064
  };
85706
86065
  readonly assigned_staff_label_id: {
@@ -85711,6 +86070,12 @@ declare const DepositInvoiceCreateSchema: {
85711
86070
  };
85712
86071
  };
85713
86072
  };
86073
+ readonly sale_type: {
86074
+ readonly type: "string";
86075
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
86076
+ readonly enum: readonly ["product", "service", "mixed"];
86077
+ readonly example: "product";
86078
+ };
85714
86079
  };
85715
86080
  readonly required: readonly ["parent", "rows"];
85716
86081
  };
@@ -85888,6 +86253,12 @@ declare const DepositInvoiceUpdateSchema: {
85888
86253
  readonly settings: {
85889
86254
  readonly $ref: "#/components/schemas/DepositInvoiceCreate/properties/settings";
85890
86255
  };
86256
+ readonly sale_type: {
86257
+ readonly type: "string";
86258
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
86259
+ readonly enum: readonly ["product", "service", "mixed"];
86260
+ readonly example: "product";
86261
+ };
85891
86262
  };
85892
86263
  };
85893
86264
  declare const DepositInvoicePrepareInputSchema: {
@@ -87292,6 +87663,18 @@ declare const DepositInvoiceMetadataSchema: {
87292
87663
  };
87293
87664
  };
87294
87665
  };
87666
+ readonly forced_prefs: {
87667
+ readonly type: "array";
87668
+ readonly description: "List of preference keys that are forced when enforce_display_rules is true";
87669
+ readonly items: {
87670
+ readonly type: "string";
87671
+ };
87672
+ readonly example: readonly ["show_address", "show_vat_number"];
87673
+ };
87674
+ readonly is_document_compliant: {
87675
+ readonly type: "boolean";
87676
+ readonly description: "Compliance state of the parent document on creation, or of the edited document on update";
87677
+ };
87295
87678
  };
87296
87679
  };
87297
87680
  declare const ProgressInvoiceCreateSchema: {
@@ -87881,7 +88264,7 @@ declare const ProgressInvoiceCreateSchema: {
87881
88264
  readonly pdf_display: {
87882
88265
  readonly type: "object";
87883
88266
  readonly title: "PDF option";
87884
- readonly description: "PDF generation option";
88267
+ readonly description: "PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.";
87885
88268
  readonly additionalProperties: false;
87886
88269
  readonly properties: {
87887
88270
  readonly show_vat_mention: {
@@ -88005,11 +88388,21 @@ declare const ProgressInvoiceCreateSchema: {
88005
88388
  readonly description: "Show legal text on late payment interests";
88006
88389
  readonly example: true;
88007
88390
  };
88391
+ readonly show_sale_type: {
88392
+ readonly type: "boolean";
88393
+ readonly description: "Show sale type column on documents";
88394
+ readonly example: true;
88395
+ };
88008
88396
  readonly show_progress_invoice_summary: {
88009
88397
  readonly type: "boolean";
88010
88398
  readonly description: "Show progress invoice summary";
88011
88399
  readonly example: true;
88012
88400
  };
88401
+ readonly show_terms_and_conditions_text: {
88402
+ readonly type: "boolean";
88403
+ readonly description: "Show terms and conditions text page";
88404
+ readonly example: true;
88405
+ };
88013
88406
  };
88014
88407
  };
88015
88408
  readonly shipping: {
@@ -88072,6 +88465,12 @@ declare const ProgressInvoiceCreateSchema: {
88072
88465
  readonly description: "Analytic code of document";
88073
88466
  readonly example: "divers";
88074
88467
  };
88468
+ readonly sale_type: {
88469
+ readonly type: "string";
88470
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
88471
+ readonly enum: readonly ["product", "service", "mixed"];
88472
+ readonly example: "product";
88473
+ };
88075
88474
  };
88076
88475
  readonly required: readonly ["parent", "rows"];
88077
88476
  };
@@ -88867,6 +89266,12 @@ declare const CreditNoteSchema: {
88867
89266
  readonly description: "Analytic code of document";
88868
89267
  readonly example: "divers";
88869
89268
  };
89269
+ readonly sale_type: {
89270
+ readonly type: "string";
89271
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
89272
+ readonly enum: readonly ["product", "service", "mixed"];
89273
+ readonly example: "product";
89274
+ };
88870
89275
  readonly _embed: {
88871
89276
  readonly title: "Credit Note Embed";
88872
89277
  readonly allOf: readonly [{
@@ -89241,6 +89646,12 @@ declare const CreditNoteOneSchema: {
89241
89646
  readonly description: "Analytic code of document";
89242
89647
  readonly example: "divers";
89243
89648
  };
89649
+ readonly sale_type: {
89650
+ readonly type: "string";
89651
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
89652
+ readonly enum: readonly ["product", "service", "mixed"];
89653
+ readonly example: "product";
89654
+ };
89244
89655
  readonly _embed: {
89245
89656
  readonly $ref: "#/components/schemas/CreditNote/properties/_embed";
89246
89657
  };
@@ -89391,6 +89802,12 @@ declare const CreditNoteCreateSchema: {
89391
89802
  readonly description: "Analytic code of document";
89392
89803
  readonly example: "divers";
89393
89804
  };
89805
+ readonly sale_type: {
89806
+ readonly type: "string";
89807
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
89808
+ readonly enum: readonly ["product", "service", "mixed"];
89809
+ readonly example: "product";
89810
+ };
89394
89811
  readonly invoicing_address_id: {
89395
89812
  readonly description: "Invoicing address, by default take invoicing address of company/individual.";
89396
89813
  readonly type: "integer";
@@ -89797,6 +90214,12 @@ declare const OrderCreateSchema: {
89797
90214
  readonly description: "Analytic code of document";
89798
90215
  readonly example: "divers";
89799
90216
  };
90217
+ readonly sale_type: {
90218
+ readonly type: "string";
90219
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
90220
+ readonly enum: readonly ["product", "service", "mixed"];
90221
+ readonly example: "product";
90222
+ };
89800
90223
  readonly bank_account_id: {
89801
90224
  readonly type: "integer";
89802
90225
  readonly description: "Bank account ID";
@@ -90288,6 +90711,12 @@ declare const OrderSchema: {
90288
90711
  readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
90289
90712
  readonly nullable: true;
90290
90713
  };
90714
+ readonly sale_type: {
90715
+ readonly type: "string";
90716
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
90717
+ readonly enum: readonly ["product", "service", "mixed"];
90718
+ readonly example: "product";
90719
+ };
90291
90720
  readonly check_label_id: {
90292
90721
  readonly type: "integer";
90293
90722
  readonly description: "Check label ID";
@@ -90640,6 +91069,12 @@ declare const OrderOneSchema: {
90640
91069
  readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
90641
91070
  readonly nullable: true;
90642
91071
  };
91072
+ readonly sale_type: {
91073
+ readonly type: "string";
91074
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
91075
+ readonly enum: readonly ["product", "service", "mixed"];
91076
+ readonly example: "product";
91077
+ };
90643
91078
  readonly check_label_id: {
90644
91079
  readonly type: "integer";
90645
91080
  readonly description: "Check label ID";
@@ -91303,6 +91738,12 @@ declare const DeliverySchema: {
91303
91738
  readonly description: "Analytic code of document";
91304
91739
  readonly example: "divers";
91305
91740
  };
91741
+ readonly sale_type: {
91742
+ readonly type: "string";
91743
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
91744
+ readonly enum: readonly ["product", "service", "mixed"];
91745
+ readonly example: "product";
91746
+ };
91306
91747
  readonly bank_account_id: {
91307
91748
  readonly type: "integer";
91308
91749
  readonly description: "Bank account ID";
@@ -91698,6 +92139,12 @@ declare const DeliveryOneSchema: {
91698
92139
  readonly description: "Analytic code of document";
91699
92140
  readonly example: "divers";
91700
92141
  };
92142
+ readonly sale_type: {
92143
+ readonly type: "string";
92144
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
92145
+ readonly enum: readonly ["product", "service", "mixed"];
92146
+ readonly example: "product";
92147
+ };
91701
92148
  readonly bank_account_id: {
91702
92149
  readonly type: "integer";
91703
92150
  readonly description: "Bank account ID";
@@ -96269,6 +96716,25 @@ declare const InvoicingSettingsMetadataSchema: {
96269
96716
  readonly example: "show_address";
96270
96717
  };
96271
96718
  };
96719
+ readonly ui_langs: {
96720
+ readonly type: "array";
96721
+ readonly description: "List of available languages for conditions and acceptances translations";
96722
+ readonly items: {
96723
+ readonly type: "object";
96724
+ readonly properties: {
96725
+ readonly id: {
96726
+ readonly type: "string";
96727
+ readonly description: "Language code";
96728
+ readonly example: "fr";
96729
+ };
96730
+ readonly label: {
96731
+ readonly type: "string";
96732
+ readonly description: "Language label";
96733
+ readonly example: "Français";
96734
+ };
96735
+ };
96736
+ };
96737
+ };
96272
96738
  };
96273
96739
  };
96274
96740
  declare const ConsentSettingsOuputSchema: {
@@ -97211,6 +97677,18 @@ declare const ProgressInvoiceMetadataSchema: {
97211
97677
  };
97212
97678
  };
97213
97679
  };
97680
+ readonly forced_prefs: {
97681
+ readonly type: "array";
97682
+ readonly description: "List of preference keys that are forced when enforce_display_rules is true";
97683
+ readonly items: {
97684
+ readonly type: "string";
97685
+ };
97686
+ readonly example: readonly ["show_address", "show_vat_number"];
97687
+ };
97688
+ readonly is_document_compliant: {
97689
+ readonly type: "boolean";
97690
+ readonly description: "Compliance state of the parent document on creation, or of the edited document on update";
97691
+ };
97214
97692
  };
97215
97693
  };
97216
97694
  declare const ProgressInvoiceUpdateSchema: {
@@ -97435,6 +97913,12 @@ declare const ProgressInvoiceUpdateSchema: {
97435
97913
  readonly description: "Analytic code of document";
97436
97914
  readonly example: "divers";
97437
97915
  };
97916
+ readonly sale_type: {
97917
+ readonly type: "string";
97918
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
97919
+ readonly enum: readonly ["product", "service", "mixed"];
97920
+ readonly example: "product";
97921
+ };
97438
97922
  };
97439
97923
  };
97440
97924
  declare const BankAccountSchema: {
@@ -99313,6 +99797,12 @@ declare const EstimateWritableSchema: {
99313
99797
  readonly description: "Analytic code of document";
99314
99798
  readonly example: "divers";
99315
99799
  };
99800
+ readonly sale_type: {
99801
+ readonly type: "string";
99802
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
99803
+ readonly enum: readonly ["product", "service", "mixed"];
99804
+ readonly example: "product";
99805
+ };
99316
99806
  readonly shipping_weight: {
99317
99807
  readonly $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight";
99318
99808
  };
@@ -99570,7 +100060,7 @@ declare const EstimateCreateWritableSchema: {
99570
100060
  readonly pdf_display: {
99571
100061
  readonly type: "object";
99572
100062
  readonly title: "PDF option";
99573
- readonly description: "PDF generation option";
100063
+ readonly description: "PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.";
99574
100064
  readonly additionalProperties: false;
99575
100065
  readonly properties: {
99576
100066
  readonly show_vat_mention: {
@@ -99694,6 +100184,16 @@ declare const EstimateCreateWritableSchema: {
99694
100184
  readonly description: "Show legal text on late payment interests";
99695
100185
  readonly example: true;
99696
100186
  };
100187
+ readonly show_sale_type: {
100188
+ readonly type: "boolean";
100189
+ readonly description: "Show sale type column on documents";
100190
+ readonly example: true;
100191
+ };
100192
+ readonly show_terms_and_conditions_text: {
100193
+ readonly type: "boolean";
100194
+ readonly description: "Show terms and conditions text page";
100195
+ readonly example: true;
100196
+ };
99697
100197
  };
99698
100198
  };
99699
100199
  readonly shipping: {
@@ -101664,6 +102164,16 @@ declare const SaleEmbedWritableSchema: {
101664
102164
  readonly description: "Show legal text on late payment interests";
101665
102165
  readonly example: true;
101666
102166
  };
102167
+ readonly show_sale_type: {
102168
+ readonly type: "boolean";
102169
+ readonly description: "Show sale type column on documents";
102170
+ readonly example: true;
102171
+ };
102172
+ readonly show_terms_and_conditions_text: {
102173
+ readonly type: "boolean";
102174
+ readonly description: "Show terms and conditions text page";
102175
+ readonly example: true;
102176
+ };
101667
102177
  };
101668
102178
  };
101669
102179
  readonly shipping: {
@@ -103836,7 +104346,7 @@ declare const OcrWritableSchema: {
103836
104346
  readonly source: {
103837
104347
  readonly type: "string";
103838
104348
  readonly description: "Source of the incoming document";
103839
- readonly enum: readonly ["ocr", "facturx"];
104349
+ readonly enum: readonly ["ocr", "einvoicing"];
103840
104350
  readonly example: "ocr";
103841
104351
  };
103842
104352
  readonly supplier: {
@@ -106829,6 +107339,12 @@ declare const InvoiceWritableSchema: {
106829
107339
  readonly description: "Analytic code of document";
106830
107340
  readonly example: "divers";
106831
107341
  };
107342
+ readonly sale_type: {
107343
+ readonly type: "string";
107344
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
107345
+ readonly enum: readonly ["product", "service", "mixed"];
107346
+ readonly example: "product";
107347
+ };
106832
107348
  };
106833
107349
  };
106834
107350
  declare const InvoiceOneWritableSchema: {
@@ -107063,6 +107579,12 @@ declare const InvoiceOneWritableSchema: {
107063
107579
  readonly description: "Analytic code of document";
107064
107580
  readonly example: "divers";
107065
107581
  };
107582
+ readonly sale_type: {
107583
+ readonly type: "string";
107584
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
107585
+ readonly enum: readonly ["product", "service", "mixed"];
107586
+ readonly example: "product";
107587
+ };
107066
107588
  };
107067
107589
  }, {
107068
107590
  readonly type: "object";
@@ -107981,6 +108503,16 @@ declare const InvoiceOrProgressInvoiceOneWritableSchema: {
107981
108503
  readonly description: "Show legal text on late payment interests";
107982
108504
  readonly example: true;
107983
108505
  };
108506
+ readonly show_sale_type: {
108507
+ readonly type: "boolean";
108508
+ readonly description: "Show sale type column on documents";
108509
+ readonly example: true;
108510
+ };
108511
+ readonly show_terms_and_conditions_text: {
108512
+ readonly type: "boolean";
108513
+ readonly description: "Show terms and conditions text page";
108514
+ readonly example: true;
108515
+ };
107984
108516
  };
107985
108517
  }];
107986
108518
  };
@@ -108268,6 +108800,12 @@ declare const InvoiceCreateWritableSchema: {
108268
108800
  readonly description: "Analytic code of document";
108269
108801
  readonly example: "divers";
108270
108802
  };
108803
+ readonly sale_type: {
108804
+ readonly type: "string";
108805
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
108806
+ readonly enum: readonly ["product", "service", "mixed"];
108807
+ readonly example: "product";
108808
+ };
108271
108809
  };
108272
108810
  }, {
108273
108811
  readonly type: "object";
@@ -108807,7 +109345,7 @@ declare const DepositInvoiceCreateWritableSchema: {
108807
109345
  readonly pdf_display: {
108808
109346
  readonly type: "object";
108809
109347
  readonly title: "PDF option";
108810
- readonly description: "PDF generation option";
109348
+ readonly description: "PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.";
108811
109349
  readonly additionalProperties: false;
108812
109350
  readonly properties: {
108813
109351
  readonly show_bank_account: {
@@ -108870,6 +109408,16 @@ declare const DepositInvoiceCreateWritableSchema: {
108870
109408
  readonly description: "Show legal text on late payment interests";
108871
109409
  readonly example: true;
108872
109410
  };
109411
+ readonly show_sale_type: {
109412
+ readonly type: "boolean";
109413
+ readonly description: "Show sale type column on documents";
109414
+ readonly example: true;
109415
+ };
109416
+ readonly show_terms_and_conditions_text: {
109417
+ readonly type: "boolean";
109418
+ readonly description: "Show terms and conditions text page";
109419
+ readonly example: true;
109420
+ };
108873
109421
  };
108874
109422
  };
108875
109423
  readonly assigned_staff_label_id: {
@@ -108880,6 +109428,12 @@ declare const DepositInvoiceCreateWritableSchema: {
108880
109428
  };
108881
109429
  };
108882
109430
  };
109431
+ readonly sale_type: {
109432
+ readonly type: "string";
109433
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
109434
+ readonly enum: readonly ["product", "service", "mixed"];
109435
+ readonly example: "product";
109436
+ };
108883
109437
  };
108884
109438
  readonly required: readonly ["parent", "rows"];
108885
109439
  };
@@ -109057,6 +109611,12 @@ declare const DepositInvoiceUpdateWritableSchema: {
109057
109611
  readonly settings: {
109058
109612
  readonly $ref: "#/components/schemas/DepositInvoiceCreate/properties/settings";
109059
109613
  };
109614
+ readonly sale_type: {
109615
+ readonly type: "string";
109616
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
109617
+ readonly enum: readonly ["product", "service", "mixed"];
109618
+ readonly example: "product";
109619
+ };
109060
109620
  };
109061
109621
  };
109062
109622
  declare const DepositInvoiceComputeInputWritableSchema: {
@@ -110031,6 +110591,18 @@ declare const DepositInvoiceMetadataWritableSchema: {
110031
110591
  };
110032
110592
  };
110033
110593
  };
110594
+ readonly forced_prefs: {
110595
+ readonly type: "array";
110596
+ readonly description: "List of preference keys that are forced when enforce_display_rules is true";
110597
+ readonly items: {
110598
+ readonly type: "string";
110599
+ };
110600
+ readonly example: readonly ["show_address", "show_vat_number"];
110601
+ };
110602
+ readonly is_document_compliant: {
110603
+ readonly type: "boolean";
110604
+ readonly description: "Compliance state of the parent document on creation, or of the edited document on update";
110605
+ };
110034
110606
  };
110035
110607
  };
110036
110608
  declare const ProgressInvoiceCreateWritableSchema: {
@@ -110620,7 +111192,7 @@ declare const ProgressInvoiceCreateWritableSchema: {
110620
111192
  readonly pdf_display: {
110621
111193
  readonly type: "object";
110622
111194
  readonly title: "PDF option";
110623
- readonly description: "PDF generation option";
111195
+ readonly description: "PDF generation option. When the electronic invoicing reform applies, the following fields are forced to `true` and any provided value will be ignored: `show_vat_number`, `show_siren`, `show_quantity_column`, `show_unit_cost_column`, `show_amount_column`, `show_taxes_column`, `show_discount_column`, `show_payment_terms`, `show_payment_deadlines`, `show_payment_methods`.";
110624
111196
  readonly additionalProperties: false;
110625
111197
  readonly properties: {
110626
111198
  readonly show_vat_mention: {
@@ -110744,11 +111316,21 @@ declare const ProgressInvoiceCreateWritableSchema: {
110744
111316
  readonly description: "Show legal text on late payment interests";
110745
111317
  readonly example: true;
110746
111318
  };
111319
+ readonly show_sale_type: {
111320
+ readonly type: "boolean";
111321
+ readonly description: "Show sale type column on documents";
111322
+ readonly example: true;
111323
+ };
110747
111324
  readonly show_progress_invoice_summary: {
110748
111325
  readonly type: "boolean";
110749
111326
  readonly description: "Show progress invoice summary";
110750
111327
  readonly example: true;
110751
111328
  };
111329
+ readonly show_terms_and_conditions_text: {
111330
+ readonly type: "boolean";
111331
+ readonly description: "Show terms and conditions text page";
111332
+ readonly example: true;
111333
+ };
110752
111334
  };
110753
111335
  };
110754
111336
  readonly shipping: {
@@ -110811,6 +111393,12 @@ declare const ProgressInvoiceCreateWritableSchema: {
110811
111393
  readonly description: "Analytic code of document";
110812
111394
  readonly example: "divers";
110813
111395
  };
111396
+ readonly sale_type: {
111397
+ readonly type: "string";
111398
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
111399
+ readonly enum: readonly ["product", "service", "mixed"];
111400
+ readonly example: "product";
111401
+ };
110814
111402
  };
110815
111403
  readonly required: readonly ["parent", "rows"];
110816
111404
  };
@@ -111229,6 +111817,12 @@ declare const CreditNoteWritableSchema: {
111229
111817
  readonly description: "Analytic code of document";
111230
111818
  readonly example: "divers";
111231
111819
  };
111820
+ readonly sale_type: {
111821
+ readonly type: "string";
111822
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
111823
+ readonly enum: readonly ["product", "service", "mixed"];
111824
+ readonly example: "product";
111825
+ };
111232
111826
  readonly _embed: {
111233
111827
  readonly title: "Credit Note Embed";
111234
111828
  readonly allOf: readonly [{
@@ -111538,6 +112132,12 @@ declare const CreditNoteOneWritableSchema: {
111538
112132
  readonly description: "Analytic code of document";
111539
112133
  readonly example: "divers";
111540
112134
  };
112135
+ readonly sale_type: {
112136
+ readonly type: "string";
112137
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
112138
+ readonly enum: readonly ["product", "service", "mixed"];
112139
+ readonly example: "product";
112140
+ };
111541
112141
  readonly _embed: {
111542
112142
  readonly $ref: "#/components/schemas/CreditNote/properties/_embed";
111543
112143
  };
@@ -111688,6 +112288,12 @@ declare const CreditNoteCreateWritableSchema: {
111688
112288
  readonly description: "Analytic code of document";
111689
112289
  readonly example: "divers";
111690
112290
  };
112291
+ readonly sale_type: {
112292
+ readonly type: "string";
112293
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
112294
+ readonly enum: readonly ["product", "service", "mixed"];
112295
+ readonly example: "product";
112296
+ };
111691
112297
  readonly invoicing_address_id: {
111692
112298
  readonly description: "Invoicing address, by default take invoicing address of company/individual.";
111693
112299
  readonly type: "integer";
@@ -112029,6 +112635,12 @@ declare const OrderCreateWritableSchema: {
112029
112635
  readonly description: "Analytic code of document";
112030
112636
  readonly example: "divers";
112031
112637
  };
112638
+ readonly sale_type: {
112639
+ readonly type: "string";
112640
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
112641
+ readonly enum: readonly ["product", "service", "mixed"];
112642
+ readonly example: "product";
112643
+ };
112032
112644
  readonly bank_account_id: {
112033
112645
  readonly type: "integer";
112034
112646
  readonly description: "Bank account ID";
@@ -112352,6 +112964,12 @@ declare const OrderWritableSchema: {
112352
112964
  readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
112353
112965
  readonly nullable: true;
112354
112966
  };
112967
+ readonly sale_type: {
112968
+ readonly type: "string";
112969
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
112970
+ readonly enum: readonly ["product", "service", "mixed"];
112971
+ readonly example: "product";
112972
+ };
112355
112973
  readonly check_label_id: {
112356
112974
  readonly type: "integer";
112357
112975
  readonly description: "Check label ID";
@@ -112536,6 +113154,12 @@ declare const OrderOneWritableSchema: {
112536
113154
  readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
112537
113155
  readonly nullable: true;
112538
113156
  };
113157
+ readonly sale_type: {
113158
+ readonly type: "string";
113159
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
113160
+ readonly enum: readonly ["product", "service", "mixed"];
113161
+ readonly example: "product";
113162
+ };
112539
113163
  readonly check_label_id: {
112540
113164
  readonly type: "integer";
112541
113165
  readonly description: "Check label ID";
@@ -112898,6 +113522,12 @@ declare const DeliveryWritableSchema: {
112898
113522
  readonly description: "Analytic code of document";
112899
113523
  readonly example: "divers";
112900
113524
  };
113525
+ readonly sale_type: {
113526
+ readonly type: "string";
113527
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
113528
+ readonly enum: readonly ["product", "service", "mixed"];
113529
+ readonly example: "product";
113530
+ };
112901
113531
  readonly bank_account_id: {
112902
113532
  readonly type: "integer";
112903
113533
  readonly description: "Bank account ID";
@@ -113130,6 +113760,12 @@ declare const DeliveryOneWritableSchema: {
113130
113760
  readonly description: "Analytic code of document";
113131
113761
  readonly example: "divers";
113132
113762
  };
113763
+ readonly sale_type: {
113764
+ readonly type: "string";
113765
+ readonly description: "Sale type of the document: product (goods), service, or mixed";
113766
+ readonly enum: readonly ["product", "service", "mixed"];
113767
+ readonly example: "product";
113768
+ };
113133
113769
  readonly bank_account_id: {
113134
113770
  readonly type: "integer";
113135
113771
  readonly description: "Bank account ID";
@@ -114731,6 +115367,18 @@ declare const ProgressInvoiceMetadataWritableSchema: {
114731
115367
  };
114732
115368
  };
114733
115369
  };
115370
+ readonly forced_prefs: {
115371
+ readonly type: "array";
115372
+ readonly description: "List of preference keys that are forced when enforce_display_rules is true";
115373
+ readonly items: {
115374
+ readonly type: "string";
115375
+ };
115376
+ readonly example: readonly ["show_address", "show_vat_number"];
115377
+ };
115378
+ readonly is_document_compliant: {
115379
+ readonly type: "boolean";
115380
+ readonly description: "Compliance state of the parent document on creation, or of the edited document on update";
115381
+ };
114734
115382
  };
114735
115383
  };
114736
115384
  declare const ProgressInvoiceUpdateWritableSchema: {
@@ -114955,6 +115603,12 @@ declare const ProgressInvoiceUpdateWritableSchema: {
114955
115603
  readonly description: "Analytic code of document";
114956
115604
  readonly example: "divers";
114957
115605
  };
115606
+ readonly sale_type: {
115607
+ readonly type: "string";
115608
+ readonly description: "Sale type of the document: product (goods), service, or mixed. If not provided, it is automatically detected from the document rows.";
115609
+ readonly enum: readonly ["product", "service", "mixed"];
115610
+ readonly example: "product";
115611
+ };
114958
115612
  };
114959
115613
  };
114960
115614
  declare const BankAccountWritableSchema: {
@@ -116648,7 +117302,7 @@ declare const getStaff: <ThrowOnError extends boolean = false>(options: Options<
116648
117302
  *
116649
117303
  * Update staff informations
116650
117304
  */
116651
- declare const updateStaff: <ThrowOnError extends boolean = false>(options: Options<UpdateStaffData, ThrowOnError>) => RequestResult<UpdateStaffResponses, unknown, ThrowOnError, "fields">;
117305
+ declare const updateStaff: <ThrowOnError extends boolean = false>(options: Options<UpdateStaffData, ThrowOnError>) => RequestResult<UpdateStaffResponses, UpdateStaffErrors, ThrowOnError, "fields">;
116652
117306
  /**
116653
117307
  * Get Staffs
116654
117308
  *
@@ -117072,7 +117726,7 @@ declare const getInvoice: <ThrowOnError extends boolean = false>(options: Option
117072
117726
  /**
117073
117727
  * Update invoice
117074
117728
  *
117075
- * Update an invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li></ul></div>
117729
+ * Update an invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117076
117730
  */
117077
117731
  declare const updateInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateInvoiceData, ThrowOnError>) => RequestResult<UpdateInvoiceResponses, unknown, ThrowOnError, "fields">;
117078
117732
  /**
@@ -117084,7 +117738,7 @@ declare const getInvoices: <ThrowOnError extends boolean = false>(options?: Opti
117084
117738
  /**
117085
117739
  * Create invoice
117086
117740
  *
117087
- * Create an invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li></ul></div>
117741
+ * Create an invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117088
117742
  */
117089
117743
  declare const createInvoice: <ThrowOnError extends boolean = false>(options?: Options<CreateInvoiceData, ThrowOnError>) => RequestResult<CreateInvoiceResponses, unknown, ThrowOnError, "fields">;
117090
117744
  /**
@@ -117238,7 +117892,7 @@ declare const getCreditNote: <ThrowOnError extends boolean = false>(options: Opt
117238
117892
  /**
117239
117893
  * Update credit note
117240
117894
  *
117241
- * Update a credit note <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li></ul></div>
117895
+ * Update a credit note <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117242
117896
  *
117243
117897
  */
117244
117898
  declare const updateCreditNote: <ThrowOnError extends boolean = false>(options: Options<UpdateCreditNoteData, ThrowOnError>) => RequestResult<UpdateCreditNoteResponses, unknown, ThrowOnError, "fields">;
@@ -117251,7 +117905,7 @@ declare const getCreditNotes: <ThrowOnError extends boolean = false>(options?: O
117251
117905
  /**
117252
117906
  * Create credit note
117253
117907
  *
117254
- * Create a credit note <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li></ul></div>
117908
+ * Create a credit note <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes. (<a href="https://help.sellsy.com/fr/articles/13376781-gerer-sa-tva-dans-le-cadre-de-la-facturation-electronique">Managing VAT for electronic invoicing</a>)</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117255
117909
  *
117256
117910
  */
117257
117911
  declare const createCreditNote: <ThrowOnError extends boolean = false>(options?: Options<CreateCreditNoteData, ThrowOnError>) => RequestResult<CreateCreditNoteResponses, unknown, ThrowOnError, "fields">;
@@ -117674,7 +118328,7 @@ declare const getDepositInvoices: <ThrowOnError extends boolean = false>(options
117674
118328
  /**
117675
118329
  * Create a deposit invoice
117676
118330
  *
117677
- * Create a deposit invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update.</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes.</li></ul></div>
118331
+ * Create a deposit invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update.</li><li>The field <code>rows[x].tax_id</code> no longer accepts non-compliant taxes.</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117678
118332
  *
117679
118333
  */
117680
118334
  declare const createDepositInvoice: <ThrowOnError extends boolean = false>(options?: Options<CreateDepositInvoiceData, ThrowOnError>) => RequestResult<CreateDepositInvoiceResponses, unknown, ThrowOnError, "fields">;
@@ -117803,7 +118457,7 @@ declare const getProformaInvoiceCustomFields: <ThrowOnError extends boolean = fa
117803
118457
  /**
117804
118458
  * Create a Progress invoice
117805
118459
  *
117806
- * Create a Progress invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li></ul></div>
118460
+ * Create a Progress invoice <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117807
118461
  *
117808
118462
  */
117809
118463
  declare const createProgressInvoice: <ThrowOnError extends boolean = false>(options?: Options<CreateProgressInvoiceData, ThrowOnError>) => RequestResult<CreateProgressInvoiceResponses, unknown, ThrowOnError, "fields">;
@@ -117817,7 +118471,7 @@ declare const computeProgressInvoice: <ThrowOnError extends boolean = false>(opt
117817
118471
  /**
117818
118472
  * Update a progress invoice
117819
118473
  *
117820
- * Update a progress invoice. <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li></ul></div>
118474
+ * Update a progress invoice. <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 are potentially subject to significant and breaking changes in the coming weeks.</div> <br /> <div style="padding:17px; border-radius: 2px; margin-bottom: 4px; line-height: 1.5em; color: #9A7D36; background-color: #fff2cf; cursor: default;"><b>Electronic invoicing reform</b><br /> <br /> <ul><li>The field <code>rows[x].description</code> will become <u>required</u> in a future update. (<a href="https://help.sellsy.com/fr/articles/12301857-description-et-nom-commercial-dans-les-documents-de-vente">Description and trade name in sales documents</a>)</li><li>Some <code>settings.pdf_display</code> fields will be forced to <code>true</code> and any provided value will be ignored. (<a href="https://help.sellsy.com/fr/articles/14756178-les-informations-obligatoires-d-une-facture">Display preferences and electronic invoicing</a>)</li></ul></div>
117821
118475
  *
117822
118476
  */
117823
118477
  declare const updateProgressInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateProgressInvoiceData, ThrowOnError>) => RequestResult<UpdateProgressInvoiceResponses, unknown, ThrowOnError, "fields">;
@@ -117913,5 +118567,5 @@ declare const createEsignProposalDocument: <ThrowOnError extends boolean = false
117913
118567
  //#region src/index.d.ts
117914
118568
  declare function createClientWithApiKey(apiKey: string): Client;
117915
118569
  //#endregion
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 };
118570
+ 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, UpdateStaffError, UpdateStaffErrors, 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 };
117917
118571
  //# sourceMappingURL=index.d.mts.map