@getyetty-sdk/sellsy 2026.5.19 → 2026.5.26
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 +659 -25
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +502 -16
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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
|
|
@@ -12896,6 +12920,10 @@ type Invoice = {
|
|
|
12896
12920
|
* Analytic code of document
|
|
12897
12921
|
*/
|
|
12898
12922
|
analytic_code?: string | null;
|
|
12923
|
+
/**
|
|
12924
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
12925
|
+
*/
|
|
12926
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
12899
12927
|
};
|
|
12900
12928
|
/**
|
|
12901
12929
|
* Invoice
|
|
@@ -13200,6 +13228,10 @@ type InvoiceOne = {
|
|
|
13200
13228
|
* Analytic code of document
|
|
13201
13229
|
*/
|
|
13202
13230
|
analytic_code?: string | null;
|
|
13231
|
+
/**
|
|
13232
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
13233
|
+
*/
|
|
13234
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
13203
13235
|
} & {
|
|
13204
13236
|
rows?: Array<{
|
|
13205
13237
|
/**
|
|
@@ -13866,6 +13898,14 @@ type InvoiceOrProgressInvoiceOne = InvoiceOne | (_heyapi_554_ & {
|
|
|
13866
13898
|
* Show legal text on late payment interests
|
|
13867
13899
|
*/
|
|
13868
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;
|
|
13869
13909
|
};
|
|
13870
13910
|
} & _heyapi_462_;
|
|
13871
13911
|
file?: _heyapi_615_;
|
|
@@ -14222,6 +14262,10 @@ type InvoiceCreate = {
|
|
|
14222
14262
|
* Analytic code of document
|
|
14223
14263
|
*/
|
|
14224
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';
|
|
14225
14269
|
} & {
|
|
14226
14270
|
parent?: {
|
|
14227
14271
|
/**
|
|
@@ -14554,7 +14598,7 @@ type DepositInvoiceCreate = {
|
|
|
14554
14598
|
/**
|
|
14555
14599
|
* PDF option
|
|
14556
14600
|
*
|
|
14557
|
-
* 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`.
|
|
14558
14602
|
*/
|
|
14559
14603
|
pdf_display?: {
|
|
14560
14604
|
/**
|
|
@@ -14609,12 +14653,24 @@ type DepositInvoiceCreate = {
|
|
|
14609
14653
|
* Show legal text on late payment interests
|
|
14610
14654
|
*/
|
|
14611
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;
|
|
14612
14664
|
};
|
|
14613
14665
|
/**
|
|
14614
14666
|
* Assigned staff label displayed on document.
|
|
14615
14667
|
*/
|
|
14616
14668
|
assigned_staff_label_id?: number | null;
|
|
14617
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';
|
|
14618
14674
|
};
|
|
14619
14675
|
/**
|
|
14620
14676
|
* Invoice
|
|
@@ -14728,6 +14784,10 @@ type DepositInvoiceUpdate = {
|
|
|
14728
14784
|
*/
|
|
14729
14785
|
layout_id?: number;
|
|
14730
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';
|
|
14731
14791
|
};
|
|
14732
14792
|
/**
|
|
14733
14793
|
* Prepare Deposit Invoice
|
|
@@ -15613,6 +15673,14 @@ type DepositInvoiceMetadata = {
|
|
|
15613
15673
|
*/
|
|
15614
15674
|
value?: string;
|
|
15615
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;
|
|
15616
15684
|
};
|
|
15617
15685
|
/**
|
|
15618
15686
|
* Progress Invoice
|
|
@@ -15959,7 +16027,7 @@ type ProgressInvoiceCreate = {
|
|
|
15959
16027
|
/**
|
|
15960
16028
|
* PDF option
|
|
15961
16029
|
*
|
|
15962
|
-
* 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`.
|
|
15963
16031
|
*/
|
|
15964
16032
|
pdf_display?: {
|
|
15965
16033
|
/**
|
|
@@ -16060,10 +16128,18 @@ type ProgressInvoiceCreate = {
|
|
|
16060
16128
|
* Show legal text on late payment interests
|
|
16061
16129
|
*/
|
|
16062
16130
|
show_late_penalty_warning_text?: boolean;
|
|
16131
|
+
/**
|
|
16132
|
+
* Show sale type column on documents
|
|
16133
|
+
*/
|
|
16134
|
+
show_sale_type?: boolean;
|
|
16063
16135
|
/**
|
|
16064
16136
|
* Show progress invoice summary
|
|
16065
16137
|
*/
|
|
16066
16138
|
show_progress_invoice_summary?: boolean;
|
|
16139
|
+
/**
|
|
16140
|
+
* Show terms and conditions text page
|
|
16141
|
+
*/
|
|
16142
|
+
show_terms_and_conditions_text?: boolean;
|
|
16067
16143
|
};
|
|
16068
16144
|
/**
|
|
16069
16145
|
* Shipping options
|
|
@@ -16100,6 +16176,10 @@ type ProgressInvoiceCreate = {
|
|
|
16100
16176
|
* Analytic code of document
|
|
16101
16177
|
*/
|
|
16102
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';
|
|
16103
16183
|
};
|
|
16104
16184
|
/**
|
|
16105
16185
|
* Progress Invoice
|
|
@@ -16672,6 +16752,10 @@ type CreditNote = {
|
|
|
16672
16752
|
* Analytic code of document
|
|
16673
16753
|
*/
|
|
16674
16754
|
analytic_code?: string | null;
|
|
16755
|
+
/**
|
|
16756
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
16757
|
+
*/
|
|
16758
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
16675
16759
|
/**
|
|
16676
16760
|
* Credit Note Embed
|
|
16677
16761
|
*/
|
|
@@ -16938,6 +17022,10 @@ type CreditNoteOne = {
|
|
|
16938
17022
|
* Analytic code of document
|
|
16939
17023
|
*/
|
|
16940
17024
|
analytic_code?: string | null;
|
|
17025
|
+
/**
|
|
17026
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
17027
|
+
*/
|
|
17028
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
16941
17029
|
_embed?: _heyapi_747_;
|
|
16942
17030
|
} & {
|
|
16943
17031
|
rows?: Array<_heyapi_466_>;
|
|
@@ -17031,6 +17119,10 @@ type CreditNoteCreate = {
|
|
|
17031
17119
|
* Analytic code of document
|
|
17032
17120
|
*/
|
|
17033
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';
|
|
17034
17126
|
/**
|
|
17035
17127
|
* Invoicing address, by default take invoicing address of company/individual.
|
|
17036
17128
|
*/
|
|
@@ -17301,6 +17393,10 @@ type OrderCreate = {
|
|
|
17301
17393
|
* Analytic code of document
|
|
17302
17394
|
*/
|
|
17303
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';
|
|
17304
17400
|
/**
|
|
17305
17401
|
* Bank account ID
|
|
17306
17402
|
*/
|
|
@@ -17613,6 +17709,10 @@ type Order = {
|
|
|
17613
17709
|
* @deprecated
|
|
17614
17710
|
*/
|
|
17615
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';
|
|
17616
17716
|
/**
|
|
17617
17717
|
* Check label ID
|
|
17618
17718
|
*/
|
|
@@ -17857,6 +17957,10 @@ type OrderOne = {
|
|
|
17857
17957
|
* @deprecated
|
|
17858
17958
|
*/
|
|
17859
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';
|
|
17860
17964
|
/**
|
|
17861
17965
|
* Check label ID
|
|
17862
17966
|
*/
|
|
@@ -18277,6 +18381,10 @@ type Delivery = {
|
|
|
18277
18381
|
* Analytic code of document
|
|
18278
18382
|
*/
|
|
18279
18383
|
analytic_code?: string | null;
|
|
18384
|
+
/**
|
|
18385
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
18386
|
+
*/
|
|
18387
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
18280
18388
|
/**
|
|
18281
18389
|
* Bank account ID
|
|
18282
18390
|
*/
|
|
@@ -18534,6 +18642,10 @@ type DeliveryOne = {
|
|
|
18534
18642
|
* Analytic code of document
|
|
18535
18643
|
*/
|
|
18536
18644
|
analytic_code?: string | null;
|
|
18645
|
+
/**
|
|
18646
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
18647
|
+
*/
|
|
18648
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
18537
18649
|
/**
|
|
18538
18650
|
* Bank account ID
|
|
18539
18651
|
*/
|
|
@@ -21327,6 +21439,19 @@ type InvoicingSettingsMetadata = {
|
|
|
21327
21439
|
* List of preference keys that are forced when enforce_display_rules is true
|
|
21328
21440
|
*/
|
|
21329
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
|
+
}>;
|
|
21330
21455
|
};
|
|
21331
21456
|
/**
|
|
21332
21457
|
* The consent settings
|
|
@@ -22129,6 +22254,14 @@ type ProgressInvoiceMetadata = {
|
|
|
22129
22254
|
*/
|
|
22130
22255
|
value?: string;
|
|
22131
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;
|
|
22132
22265
|
};
|
|
22133
22266
|
/**
|
|
22134
22267
|
* Update Progress Invoice
|
|
@@ -22261,6 +22394,10 @@ type ProgressInvoiceUpdate = {
|
|
|
22261
22394
|
* Analytic code of document
|
|
22262
22395
|
*/
|
|
22263
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';
|
|
22264
22401
|
};
|
|
22265
22402
|
/**
|
|
22266
22403
|
* Bank Account
|
|
@@ -23432,6 +23569,10 @@ type EstimateWritable = {
|
|
|
23432
23569
|
* Analytic code of document
|
|
23433
23570
|
*/
|
|
23434
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';
|
|
23435
23576
|
shipping_weight?: _heyapi_446_;
|
|
23436
23577
|
/**
|
|
23437
23578
|
* Total volume of product to ship in m3
|
|
@@ -23580,7 +23721,7 @@ type EstimateCreateWritable = _heyapi_448_ & {
|
|
|
23580
23721
|
/**
|
|
23581
23722
|
* PDF option
|
|
23582
23723
|
*
|
|
23583
|
-
* 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`.
|
|
23584
23725
|
*/
|
|
23585
23726
|
pdf_display?: {
|
|
23586
23727
|
/**
|
|
@@ -23681,6 +23822,14 @@ type EstimateCreateWritable = _heyapi_448_ & {
|
|
|
23681
23822
|
* Show legal text on late payment interests
|
|
23682
23823
|
*/
|
|
23683
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;
|
|
23684
23833
|
};
|
|
23685
23834
|
/**
|
|
23686
23835
|
* Shipping options
|
|
@@ -24908,6 +25057,14 @@ type SaleEmbedWritable = {
|
|
|
24908
25057
|
* Show legal text on late payment interests
|
|
24909
25058
|
*/
|
|
24910
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;
|
|
24911
25068
|
};
|
|
24912
25069
|
/**
|
|
24913
25070
|
* Shipping settings
|
|
@@ -28640,6 +28797,10 @@ type InvoiceWritable = {
|
|
|
28640
28797
|
* Analytic code of document
|
|
28641
28798
|
*/
|
|
28642
28799
|
analytic_code?: string | null;
|
|
28800
|
+
/**
|
|
28801
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
28802
|
+
*/
|
|
28803
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
28643
28804
|
};
|
|
28644
28805
|
/**
|
|
28645
28806
|
* Invoice
|
|
@@ -28820,6 +28981,10 @@ type InvoiceOneWritable = {
|
|
|
28820
28981
|
* Analytic code of document
|
|
28821
28982
|
*/
|
|
28822
28983
|
analytic_code?: string | null;
|
|
28984
|
+
/**
|
|
28985
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
28986
|
+
*/
|
|
28987
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
28823
28988
|
} & {
|
|
28824
28989
|
rows?: Array<{
|
|
28825
28990
|
type: 'single';
|
|
@@ -29350,6 +29515,14 @@ type InvoiceOrProgressInvoiceOneWritable = InvoiceOneWritable | (_heyapi_554_ &
|
|
|
29350
29515
|
* Show legal text on late payment interests
|
|
29351
29516
|
*/
|
|
29352
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;
|
|
29353
29526
|
};
|
|
29354
29527
|
} & _heyapi_462_;
|
|
29355
29528
|
file?: _heyapi_615_;
|
|
@@ -29553,6 +29726,10 @@ type InvoiceCreateWritable = {
|
|
|
29553
29726
|
* Analytic code of document
|
|
29554
29727
|
*/
|
|
29555
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';
|
|
29556
29733
|
} & {
|
|
29557
29734
|
parent?: {
|
|
29558
29735
|
/**
|
|
@@ -29885,7 +30062,7 @@ type DepositInvoiceCreateWritable = {
|
|
|
29885
30062
|
/**
|
|
29886
30063
|
* PDF option
|
|
29887
30064
|
*
|
|
29888
|
-
* 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`.
|
|
29889
30066
|
*/
|
|
29890
30067
|
pdf_display?: {
|
|
29891
30068
|
/**
|
|
@@ -29936,12 +30113,24 @@ type DepositInvoiceCreateWritable = {
|
|
|
29936
30113
|
* Show legal text on late payment interests
|
|
29937
30114
|
*/
|
|
29938
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;
|
|
29939
30124
|
};
|
|
29940
30125
|
/**
|
|
29941
30126
|
* Assigned staff label displayed on document.
|
|
29942
30127
|
*/
|
|
29943
30128
|
assigned_staff_label_id?: number | null;
|
|
29944
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';
|
|
29945
30134
|
};
|
|
29946
30135
|
/**
|
|
29947
30136
|
* Invoice
|
|
@@ -30055,6 +30244,10 @@ type DepositInvoiceUpdateWritable = {
|
|
|
30055
30244
|
*/
|
|
30056
30245
|
layout_id?: number;
|
|
30057
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';
|
|
30058
30251
|
};
|
|
30059
30252
|
/**
|
|
30060
30253
|
* Deposit Invoice Compute
|
|
@@ -30656,6 +30849,14 @@ type DepositInvoiceMetadataWritable = {
|
|
|
30656
30849
|
*/
|
|
30657
30850
|
value?: string;
|
|
30658
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;
|
|
30659
30860
|
};
|
|
30660
30861
|
/**
|
|
30661
30862
|
* Progress Invoice
|
|
@@ -31002,7 +31203,7 @@ type ProgressInvoiceCreateWritable = {
|
|
|
31002
31203
|
/**
|
|
31003
31204
|
* PDF option
|
|
31004
31205
|
*
|
|
31005
|
-
* 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`.
|
|
31006
31207
|
*/
|
|
31007
31208
|
pdf_display?: {
|
|
31008
31209
|
/**
|
|
@@ -31103,10 +31304,18 @@ type ProgressInvoiceCreateWritable = {
|
|
|
31103
31304
|
* Show legal text on late payment interests
|
|
31104
31305
|
*/
|
|
31105
31306
|
show_late_penalty_warning_text?: boolean;
|
|
31307
|
+
/**
|
|
31308
|
+
* Show sale type column on documents
|
|
31309
|
+
*/
|
|
31310
|
+
show_sale_type?: boolean;
|
|
31106
31311
|
/**
|
|
31107
31312
|
* Show progress invoice summary
|
|
31108
31313
|
*/
|
|
31109
31314
|
show_progress_invoice_summary?: boolean;
|
|
31315
|
+
/**
|
|
31316
|
+
* Show terms and conditions text page
|
|
31317
|
+
*/
|
|
31318
|
+
show_terms_and_conditions_text?: boolean;
|
|
31110
31319
|
};
|
|
31111
31320
|
/**
|
|
31112
31321
|
* Shipping options
|
|
@@ -31143,6 +31352,10 @@ type ProgressInvoiceCreateWritable = {
|
|
|
31143
31352
|
* Analytic code of document
|
|
31144
31353
|
*/
|
|
31145
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';
|
|
31146
31359
|
};
|
|
31147
31360
|
/**
|
|
31148
31361
|
* Progress Invoice
|
|
@@ -31419,6 +31632,10 @@ type CreditNoteWritable = {
|
|
|
31419
31632
|
* Analytic code of document
|
|
31420
31633
|
*/
|
|
31421
31634
|
analytic_code?: string | null;
|
|
31635
|
+
/**
|
|
31636
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
31637
|
+
*/
|
|
31638
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
31422
31639
|
/**
|
|
31423
31640
|
* Credit Note Embed
|
|
31424
31641
|
*/
|
|
@@ -31638,6 +31855,10 @@ type CreditNoteOneWritable = {
|
|
|
31638
31855
|
* Analytic code of document
|
|
31639
31856
|
*/
|
|
31640
31857
|
analytic_code?: string | null;
|
|
31858
|
+
/**
|
|
31859
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
31860
|
+
*/
|
|
31861
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
31641
31862
|
_embed?: _heyapi_747_;
|
|
31642
31863
|
} & {
|
|
31643
31864
|
rows?: Array<_heyapi_466_>;
|
|
@@ -31731,6 +31952,10 @@ type CreditNoteCreateWritable = {
|
|
|
31731
31952
|
* Analytic code of document
|
|
31732
31953
|
*/
|
|
31733
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';
|
|
31734
31959
|
/**
|
|
31735
31960
|
* Invoicing address, by default take invoicing address of company/individual.
|
|
31736
31961
|
*/
|
|
@@ -31961,6 +32186,10 @@ type OrderCreateWritable = {
|
|
|
31961
32186
|
* Analytic code of document
|
|
31962
32187
|
*/
|
|
31963
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';
|
|
31964
32193
|
/**
|
|
31965
32194
|
* Bank account ID
|
|
31966
32195
|
*/
|
|
@@ -32165,6 +32394,10 @@ type OrderWritable = {
|
|
|
32165
32394
|
* @deprecated
|
|
32166
32395
|
*/
|
|
32167
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';
|
|
32168
32401
|
/**
|
|
32169
32402
|
* Check label ID
|
|
32170
32403
|
*/
|
|
@@ -32301,6 +32534,10 @@ type OrderOneWritable = {
|
|
|
32301
32534
|
* @deprecated
|
|
32302
32535
|
*/
|
|
32303
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';
|
|
32304
32541
|
/**
|
|
32305
32542
|
* Check label ID
|
|
32306
32543
|
*/
|
|
@@ -32540,6 +32777,10 @@ type DeliveryWritable = {
|
|
|
32540
32777
|
* Analytic code of document
|
|
32541
32778
|
*/
|
|
32542
32779
|
analytic_code?: string | null;
|
|
32780
|
+
/**
|
|
32781
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
32782
|
+
*/
|
|
32783
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
32543
32784
|
/**
|
|
32544
32785
|
* Bank account ID
|
|
32545
32786
|
*/
|
|
@@ -32694,6 +32935,10 @@ type DeliveryOneWritable = {
|
|
|
32694
32935
|
* Analytic code of document
|
|
32695
32936
|
*/
|
|
32696
32937
|
analytic_code?: string | null;
|
|
32938
|
+
/**
|
|
32939
|
+
* Sale type of the document: product (goods), service, or mixed
|
|
32940
|
+
*/
|
|
32941
|
+
sale_type?: 'product' | 'service' | 'mixed';
|
|
32697
32942
|
/**
|
|
32698
32943
|
* Bank account ID
|
|
32699
32944
|
*/
|
|
@@ -33962,6 +34207,14 @@ type ProgressInvoiceMetadataWritable = {
|
|
|
33962
34207
|
*/
|
|
33963
34208
|
value?: string;
|
|
33964
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;
|
|
33965
34218
|
};
|
|
33966
34219
|
/**
|
|
33967
34220
|
* Update Progress Invoice
|
|
@@ -34094,6 +34347,10 @@ type ProgressInvoiceUpdateWritable = {
|
|
|
34094
34347
|
* Analytic code of document
|
|
34095
34348
|
*/
|
|
34096
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';
|
|
34097
34354
|
};
|
|
34098
34355
|
/**
|
|
34099
34356
|
* Bank Account
|
|
@@ -52315,6 +52572,17 @@ type UpdateStaffData = {
|
|
|
52315
52572
|
};
|
|
52316
52573
|
url: '/staffs/{id}';
|
|
52317
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];
|
|
52318
52586
|
type UpdateStaffResponses = {
|
|
52319
52587
|
/**
|
|
52320
52588
|
* Staff updated, schema content depends on current user level of visibility on staffs, a restricted version could be return
|
|
@@ -60115,7 +60383,7 @@ type GetGocardlessDirectdebitTimelineResponses = {
|
|
|
60115
60383
|
/**
|
|
60116
60384
|
* Directdebit status
|
|
60117
60385
|
*/
|
|
60118
|
-
status: 'pending_submission' | 'created' | 'submitted' | 'customer_approval_granted' | 'customer_approval_denied' | 'confirmed' | 'cancelled' | 'failed' | 'charged_back' | 'paid_out' | 'chargeback_cancelled' | 'late_failure_settled' | 'chargeback_settled' | 'resubmission_requested' | 'surcharge_fee_debited' | 'sds_settlement_delayed';
|
|
60386
|
+
status: 'pending_submission' | 'created' | 'submitted' | 'customer_approval_granted' | 'customer_approval_denied' | 'confirmed' | 'cancelled' | 'failed' | 'charged_back' | 'paid_out' | 'chargeback_cancelled' | 'late_failure_settled' | 'chargeback_settled' | 'resubmission_requested' | 'surcharge_fee_debited' | 'sds_settlement_delayed' | 'resubmission_requested_auto';
|
|
60119
60387
|
/**
|
|
60120
60388
|
* Date of status change
|
|
60121
60389
|
*/
|
|
@@ -60200,7 +60468,7 @@ type UpdateModelData = {
|
|
|
60200
60468
|
* Invoice's owner (staff id)
|
|
60201
60469
|
*/
|
|
60202
60470
|
owner_id?: number;
|
|
60203
|
-
rows?: Array<
|
|
60471
|
+
rows?: Array<_heyapi_2206_> | null;
|
|
60204
60472
|
};
|
|
60205
60473
|
path: {
|
|
60206
60474
|
/**
|
|
@@ -65065,6 +65333,12 @@ declare const EstimateSchema: {
|
|
|
65065
65333
|
readonly description: "Analytic code of document";
|
|
65066
65334
|
readonly example: "divers";
|
|
65067
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
|
+
};
|
|
65068
65342
|
readonly shipping_weight: {
|
|
65069
65343
|
readonly $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight";
|
|
65070
65344
|
};
|
|
@@ -65348,7 +65622,7 @@ declare const EstimateCreateSchema: {
|
|
|
65348
65622
|
readonly pdf_display: {
|
|
65349
65623
|
readonly type: "object";
|
|
65350
65624
|
readonly title: "PDF option";
|
|
65351
|
-
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`.";
|
|
65352
65626
|
readonly additionalProperties: false;
|
|
65353
65627
|
readonly properties: {
|
|
65354
65628
|
readonly show_vat_mention: {
|
|
@@ -65472,6 +65746,16 @@ declare const EstimateCreateSchema: {
|
|
|
65472
65746
|
readonly description: "Show legal text on late payment interests";
|
|
65473
65747
|
readonly example: true;
|
|
65474
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
|
+
};
|
|
65475
65759
|
};
|
|
65476
65760
|
};
|
|
65477
65761
|
readonly shipping: {
|
|
@@ -67843,6 +68127,16 @@ declare const SaleEmbedSchema: {
|
|
|
67843
68127
|
readonly description: "Show legal text on late payment interests";
|
|
67844
68128
|
readonly example: true;
|
|
67845
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
|
+
};
|
|
67846
68140
|
};
|
|
67847
68141
|
};
|
|
67848
68142
|
readonly shipping: {
|
|
@@ -68667,7 +68961,7 @@ declare const StaffUpdateItemSchema: {
|
|
|
68667
68961
|
readonly email: {
|
|
68668
68962
|
readonly type: "string";
|
|
68669
68963
|
readonly format: "email";
|
|
68670
|
-
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.";
|
|
68671
68965
|
readonly example: "john@example-company.com";
|
|
68672
68966
|
};
|
|
68673
68967
|
readonly phone_number: {
|
|
@@ -68750,6 +69044,13 @@ declare const StaffUpdateItemSchema: {
|
|
|
68750
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";
|
|
68751
69045
|
readonly example: true;
|
|
68752
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
|
+
};
|
|
68753
69054
|
};
|
|
68754
69055
|
};
|
|
68755
69056
|
declare const StaffPreferencesSchema: {
|
|
@@ -83058,6 +83359,12 @@ declare const InvoiceSchema: {
|
|
|
83058
83359
|
readonly description: "Analytic code of document";
|
|
83059
83360
|
readonly example: "divers";
|
|
83060
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
|
+
};
|
|
83061
83368
|
};
|
|
83062
83369
|
};
|
|
83063
83370
|
declare const InvoiceOneSchema: {
|
|
@@ -83475,6 +83782,12 @@ declare const InvoiceOneSchema: {
|
|
|
83475
83782
|
readonly description: "Analytic code of document";
|
|
83476
83783
|
readonly example: "divers";
|
|
83477
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
|
+
};
|
|
83478
83791
|
};
|
|
83479
83792
|
}, {
|
|
83480
83793
|
readonly type: "object";
|
|
@@ -84587,6 +84900,16 @@ declare const InvoiceOrProgressInvoiceOneSchema: {
|
|
|
84587
84900
|
readonly description: "Show legal text on late payment interests";
|
|
84588
84901
|
readonly example: true;
|
|
84589
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
|
+
};
|
|
84590
84913
|
};
|
|
84591
84914
|
}];
|
|
84592
84915
|
};
|
|
@@ -85113,6 +85436,12 @@ declare const InvoiceCreateSchema: {
|
|
|
85113
85436
|
readonly description: "Analytic code of document";
|
|
85114
85437
|
readonly example: "divers";
|
|
85115
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
|
+
};
|
|
85116
85445
|
};
|
|
85117
85446
|
}, {
|
|
85118
85447
|
readonly type: "object";
|
|
@@ -85652,7 +85981,7 @@ declare const DepositInvoiceCreateSchema: {
|
|
|
85652
85981
|
readonly pdf_display: {
|
|
85653
85982
|
readonly type: "object";
|
|
85654
85983
|
readonly title: "PDF option";
|
|
85655
|
-
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`.";
|
|
85656
85985
|
readonly additionalProperties: false;
|
|
85657
85986
|
readonly properties: {
|
|
85658
85987
|
readonly show_vat_mention: {
|
|
@@ -85721,6 +86050,16 @@ declare const DepositInvoiceCreateSchema: {
|
|
|
85721
86050
|
readonly description: "Show legal text on late payment interests";
|
|
85722
86051
|
readonly example: true;
|
|
85723
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
|
+
};
|
|
85724
86063
|
};
|
|
85725
86064
|
};
|
|
85726
86065
|
readonly assigned_staff_label_id: {
|
|
@@ -85731,6 +86070,12 @@ declare const DepositInvoiceCreateSchema: {
|
|
|
85731
86070
|
};
|
|
85732
86071
|
};
|
|
85733
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
|
+
};
|
|
85734
86079
|
};
|
|
85735
86080
|
readonly required: readonly ["parent", "rows"];
|
|
85736
86081
|
};
|
|
@@ -85908,6 +86253,12 @@ declare const DepositInvoiceUpdateSchema: {
|
|
|
85908
86253
|
readonly settings: {
|
|
85909
86254
|
readonly $ref: "#/components/schemas/DepositInvoiceCreate/properties/settings";
|
|
85910
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
|
+
};
|
|
85911
86262
|
};
|
|
85912
86263
|
};
|
|
85913
86264
|
declare const DepositInvoicePrepareInputSchema: {
|
|
@@ -87312,6 +87663,18 @@ declare const DepositInvoiceMetadataSchema: {
|
|
|
87312
87663
|
};
|
|
87313
87664
|
};
|
|
87314
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
|
+
};
|
|
87315
87678
|
};
|
|
87316
87679
|
};
|
|
87317
87680
|
declare const ProgressInvoiceCreateSchema: {
|
|
@@ -87901,7 +88264,7 @@ declare const ProgressInvoiceCreateSchema: {
|
|
|
87901
88264
|
readonly pdf_display: {
|
|
87902
88265
|
readonly type: "object";
|
|
87903
88266
|
readonly title: "PDF option";
|
|
87904
|
-
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`.";
|
|
87905
88268
|
readonly additionalProperties: false;
|
|
87906
88269
|
readonly properties: {
|
|
87907
88270
|
readonly show_vat_mention: {
|
|
@@ -88025,11 +88388,21 @@ declare const ProgressInvoiceCreateSchema: {
|
|
|
88025
88388
|
readonly description: "Show legal text on late payment interests";
|
|
88026
88389
|
readonly example: true;
|
|
88027
88390
|
};
|
|
88391
|
+
readonly show_sale_type: {
|
|
88392
|
+
readonly type: "boolean";
|
|
88393
|
+
readonly description: "Show sale type column on documents";
|
|
88394
|
+
readonly example: true;
|
|
88395
|
+
};
|
|
88028
88396
|
readonly show_progress_invoice_summary: {
|
|
88029
88397
|
readonly type: "boolean";
|
|
88030
88398
|
readonly description: "Show progress invoice summary";
|
|
88031
88399
|
readonly example: true;
|
|
88032
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
|
+
};
|
|
88033
88406
|
};
|
|
88034
88407
|
};
|
|
88035
88408
|
readonly shipping: {
|
|
@@ -88092,6 +88465,12 @@ declare const ProgressInvoiceCreateSchema: {
|
|
|
88092
88465
|
readonly description: "Analytic code of document";
|
|
88093
88466
|
readonly example: "divers";
|
|
88094
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
|
+
};
|
|
88095
88474
|
};
|
|
88096
88475
|
readonly required: readonly ["parent", "rows"];
|
|
88097
88476
|
};
|
|
@@ -88887,6 +89266,12 @@ declare const CreditNoteSchema: {
|
|
|
88887
89266
|
readonly description: "Analytic code of document";
|
|
88888
89267
|
readonly example: "divers";
|
|
88889
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
|
+
};
|
|
88890
89275
|
readonly _embed: {
|
|
88891
89276
|
readonly title: "Credit Note Embed";
|
|
88892
89277
|
readonly allOf: readonly [{
|
|
@@ -89261,6 +89646,12 @@ declare const CreditNoteOneSchema: {
|
|
|
89261
89646
|
readonly description: "Analytic code of document";
|
|
89262
89647
|
readonly example: "divers";
|
|
89263
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
|
+
};
|
|
89264
89655
|
readonly _embed: {
|
|
89265
89656
|
readonly $ref: "#/components/schemas/CreditNote/properties/_embed";
|
|
89266
89657
|
};
|
|
@@ -89411,6 +89802,12 @@ declare const CreditNoteCreateSchema: {
|
|
|
89411
89802
|
readonly description: "Analytic code of document";
|
|
89412
89803
|
readonly example: "divers";
|
|
89413
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
|
+
};
|
|
89414
89811
|
readonly invoicing_address_id: {
|
|
89415
89812
|
readonly description: "Invoicing address, by default take invoicing address of company/individual.";
|
|
89416
89813
|
readonly type: "integer";
|
|
@@ -89817,6 +90214,12 @@ declare const OrderCreateSchema: {
|
|
|
89817
90214
|
readonly description: "Analytic code of document";
|
|
89818
90215
|
readonly example: "divers";
|
|
89819
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
|
+
};
|
|
89820
90223
|
readonly bank_account_id: {
|
|
89821
90224
|
readonly type: "integer";
|
|
89822
90225
|
readonly description: "Bank account ID";
|
|
@@ -90308,6 +90711,12 @@ declare const OrderSchema: {
|
|
|
90308
90711
|
readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
|
|
90309
90712
|
readonly nullable: true;
|
|
90310
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
|
+
};
|
|
90311
90720
|
readonly check_label_id: {
|
|
90312
90721
|
readonly type: "integer";
|
|
90313
90722
|
readonly description: "Check label ID";
|
|
@@ -90660,6 +91069,12 @@ declare const OrderOneSchema: {
|
|
|
90660
91069
|
readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
|
|
90661
91070
|
readonly nullable: true;
|
|
90662
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
|
+
};
|
|
90663
91078
|
readonly check_label_id: {
|
|
90664
91079
|
readonly type: "integer";
|
|
90665
91080
|
readonly description: "Check label ID";
|
|
@@ -91323,6 +91738,12 @@ declare const DeliverySchema: {
|
|
|
91323
91738
|
readonly description: "Analytic code of document";
|
|
91324
91739
|
readonly example: "divers";
|
|
91325
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
|
+
};
|
|
91326
91747
|
readonly bank_account_id: {
|
|
91327
91748
|
readonly type: "integer";
|
|
91328
91749
|
readonly description: "Bank account ID";
|
|
@@ -91718,6 +92139,12 @@ declare const DeliveryOneSchema: {
|
|
|
91718
92139
|
readonly description: "Analytic code of document";
|
|
91719
92140
|
readonly example: "divers";
|
|
91720
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
|
+
};
|
|
91721
92148
|
readonly bank_account_id: {
|
|
91722
92149
|
readonly type: "integer";
|
|
91723
92150
|
readonly description: "Bank account ID";
|
|
@@ -96289,6 +96716,25 @@ declare const InvoicingSettingsMetadataSchema: {
|
|
|
96289
96716
|
readonly example: "show_address";
|
|
96290
96717
|
};
|
|
96291
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
|
+
};
|
|
96292
96738
|
};
|
|
96293
96739
|
};
|
|
96294
96740
|
declare const ConsentSettingsOuputSchema: {
|
|
@@ -97231,6 +97677,18 @@ declare const ProgressInvoiceMetadataSchema: {
|
|
|
97231
97677
|
};
|
|
97232
97678
|
};
|
|
97233
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
|
+
};
|
|
97234
97692
|
};
|
|
97235
97693
|
};
|
|
97236
97694
|
declare const ProgressInvoiceUpdateSchema: {
|
|
@@ -97455,6 +97913,12 @@ declare const ProgressInvoiceUpdateSchema: {
|
|
|
97455
97913
|
readonly description: "Analytic code of document";
|
|
97456
97914
|
readonly example: "divers";
|
|
97457
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
|
+
};
|
|
97458
97922
|
};
|
|
97459
97923
|
};
|
|
97460
97924
|
declare const BankAccountSchema: {
|
|
@@ -99333,6 +99797,12 @@ declare const EstimateWritableSchema: {
|
|
|
99333
99797
|
readonly description: "Analytic code of document";
|
|
99334
99798
|
readonly example: "divers";
|
|
99335
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
|
+
};
|
|
99336
99806
|
readonly shipping_weight: {
|
|
99337
99807
|
readonly $ref: "#/components/schemas/EstimateCompute/properties/shipping_weight";
|
|
99338
99808
|
};
|
|
@@ -99590,7 +100060,7 @@ declare const EstimateCreateWritableSchema: {
|
|
|
99590
100060
|
readonly pdf_display: {
|
|
99591
100061
|
readonly type: "object";
|
|
99592
100062
|
readonly title: "PDF option";
|
|
99593
|
-
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`.";
|
|
99594
100064
|
readonly additionalProperties: false;
|
|
99595
100065
|
readonly properties: {
|
|
99596
100066
|
readonly show_vat_mention: {
|
|
@@ -99714,6 +100184,16 @@ declare const EstimateCreateWritableSchema: {
|
|
|
99714
100184
|
readonly description: "Show legal text on late payment interests";
|
|
99715
100185
|
readonly example: true;
|
|
99716
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
|
+
};
|
|
99717
100197
|
};
|
|
99718
100198
|
};
|
|
99719
100199
|
readonly shipping: {
|
|
@@ -101684,6 +102164,16 @@ declare const SaleEmbedWritableSchema: {
|
|
|
101684
102164
|
readonly description: "Show legal text on late payment interests";
|
|
101685
102165
|
readonly example: true;
|
|
101686
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
|
+
};
|
|
101687
102177
|
};
|
|
101688
102178
|
};
|
|
101689
102179
|
readonly shipping: {
|
|
@@ -106849,6 +107339,12 @@ declare const InvoiceWritableSchema: {
|
|
|
106849
107339
|
readonly description: "Analytic code of document";
|
|
106850
107340
|
readonly example: "divers";
|
|
106851
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
|
+
};
|
|
106852
107348
|
};
|
|
106853
107349
|
};
|
|
106854
107350
|
declare const InvoiceOneWritableSchema: {
|
|
@@ -107083,6 +107579,12 @@ declare const InvoiceOneWritableSchema: {
|
|
|
107083
107579
|
readonly description: "Analytic code of document";
|
|
107084
107580
|
readonly example: "divers";
|
|
107085
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
|
+
};
|
|
107086
107588
|
};
|
|
107087
107589
|
}, {
|
|
107088
107590
|
readonly type: "object";
|
|
@@ -108001,6 +108503,16 @@ declare const InvoiceOrProgressInvoiceOneWritableSchema: {
|
|
|
108001
108503
|
readonly description: "Show legal text on late payment interests";
|
|
108002
108504
|
readonly example: true;
|
|
108003
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
|
+
};
|
|
108004
108516
|
};
|
|
108005
108517
|
}];
|
|
108006
108518
|
};
|
|
@@ -108288,6 +108800,12 @@ declare const InvoiceCreateWritableSchema: {
|
|
|
108288
108800
|
readonly description: "Analytic code of document";
|
|
108289
108801
|
readonly example: "divers";
|
|
108290
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
|
+
};
|
|
108291
108809
|
};
|
|
108292
108810
|
}, {
|
|
108293
108811
|
readonly type: "object";
|
|
@@ -108827,7 +109345,7 @@ declare const DepositInvoiceCreateWritableSchema: {
|
|
|
108827
109345
|
readonly pdf_display: {
|
|
108828
109346
|
readonly type: "object";
|
|
108829
109347
|
readonly title: "PDF option";
|
|
108830
|
-
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`.";
|
|
108831
109349
|
readonly additionalProperties: false;
|
|
108832
109350
|
readonly properties: {
|
|
108833
109351
|
readonly show_bank_account: {
|
|
@@ -108890,6 +109408,16 @@ declare const DepositInvoiceCreateWritableSchema: {
|
|
|
108890
109408
|
readonly description: "Show legal text on late payment interests";
|
|
108891
109409
|
readonly example: true;
|
|
108892
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
|
+
};
|
|
108893
109421
|
};
|
|
108894
109422
|
};
|
|
108895
109423
|
readonly assigned_staff_label_id: {
|
|
@@ -108900,6 +109428,12 @@ declare const DepositInvoiceCreateWritableSchema: {
|
|
|
108900
109428
|
};
|
|
108901
109429
|
};
|
|
108902
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
|
+
};
|
|
108903
109437
|
};
|
|
108904
109438
|
readonly required: readonly ["parent", "rows"];
|
|
108905
109439
|
};
|
|
@@ -109077,6 +109611,12 @@ declare const DepositInvoiceUpdateWritableSchema: {
|
|
|
109077
109611
|
readonly settings: {
|
|
109078
109612
|
readonly $ref: "#/components/schemas/DepositInvoiceCreate/properties/settings";
|
|
109079
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
|
+
};
|
|
109080
109620
|
};
|
|
109081
109621
|
};
|
|
109082
109622
|
declare const DepositInvoiceComputeInputWritableSchema: {
|
|
@@ -110051,6 +110591,18 @@ declare const DepositInvoiceMetadataWritableSchema: {
|
|
|
110051
110591
|
};
|
|
110052
110592
|
};
|
|
110053
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
|
+
};
|
|
110054
110606
|
};
|
|
110055
110607
|
};
|
|
110056
110608
|
declare const ProgressInvoiceCreateWritableSchema: {
|
|
@@ -110640,7 +111192,7 @@ declare const ProgressInvoiceCreateWritableSchema: {
|
|
|
110640
111192
|
readonly pdf_display: {
|
|
110641
111193
|
readonly type: "object";
|
|
110642
111194
|
readonly title: "PDF option";
|
|
110643
|
-
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`.";
|
|
110644
111196
|
readonly additionalProperties: false;
|
|
110645
111197
|
readonly properties: {
|
|
110646
111198
|
readonly show_vat_mention: {
|
|
@@ -110764,11 +111316,21 @@ declare const ProgressInvoiceCreateWritableSchema: {
|
|
|
110764
111316
|
readonly description: "Show legal text on late payment interests";
|
|
110765
111317
|
readonly example: true;
|
|
110766
111318
|
};
|
|
111319
|
+
readonly show_sale_type: {
|
|
111320
|
+
readonly type: "boolean";
|
|
111321
|
+
readonly description: "Show sale type column on documents";
|
|
111322
|
+
readonly example: true;
|
|
111323
|
+
};
|
|
110767
111324
|
readonly show_progress_invoice_summary: {
|
|
110768
111325
|
readonly type: "boolean";
|
|
110769
111326
|
readonly description: "Show progress invoice summary";
|
|
110770
111327
|
readonly example: true;
|
|
110771
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
|
+
};
|
|
110772
111334
|
};
|
|
110773
111335
|
};
|
|
110774
111336
|
readonly shipping: {
|
|
@@ -110831,6 +111393,12 @@ declare const ProgressInvoiceCreateWritableSchema: {
|
|
|
110831
111393
|
readonly description: "Analytic code of document";
|
|
110832
111394
|
readonly example: "divers";
|
|
110833
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
|
+
};
|
|
110834
111402
|
};
|
|
110835
111403
|
readonly required: readonly ["parent", "rows"];
|
|
110836
111404
|
};
|
|
@@ -111249,6 +111817,12 @@ declare const CreditNoteWritableSchema: {
|
|
|
111249
111817
|
readonly description: "Analytic code of document";
|
|
111250
111818
|
readonly example: "divers";
|
|
111251
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
|
+
};
|
|
111252
111826
|
readonly _embed: {
|
|
111253
111827
|
readonly title: "Credit Note Embed";
|
|
111254
111828
|
readonly allOf: readonly [{
|
|
@@ -111558,6 +112132,12 @@ declare const CreditNoteOneWritableSchema: {
|
|
|
111558
112132
|
readonly description: "Analytic code of document";
|
|
111559
112133
|
readonly example: "divers";
|
|
111560
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
|
+
};
|
|
111561
112141
|
readonly _embed: {
|
|
111562
112142
|
readonly $ref: "#/components/schemas/CreditNote/properties/_embed";
|
|
111563
112143
|
};
|
|
@@ -111708,6 +112288,12 @@ declare const CreditNoteCreateWritableSchema: {
|
|
|
111708
112288
|
readonly description: "Analytic code of document";
|
|
111709
112289
|
readonly example: "divers";
|
|
111710
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
|
+
};
|
|
111711
112297
|
readonly invoicing_address_id: {
|
|
111712
112298
|
readonly description: "Invoicing address, by default take invoicing address of company/individual.";
|
|
111713
112299
|
readonly type: "integer";
|
|
@@ -112049,6 +112635,12 @@ declare const OrderCreateWritableSchema: {
|
|
|
112049
112635
|
readonly description: "Analytic code of document";
|
|
112050
112636
|
readonly example: "divers";
|
|
112051
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
|
+
};
|
|
112052
112644
|
readonly bank_account_id: {
|
|
112053
112645
|
readonly type: "integer";
|
|
112054
112646
|
readonly description: "Bank account ID";
|
|
@@ -112372,6 +112964,12 @@ declare const OrderWritableSchema: {
|
|
|
112372
112964
|
readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
|
|
112373
112965
|
readonly nullable: true;
|
|
112374
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
|
+
};
|
|
112375
112973
|
readonly check_label_id: {
|
|
112376
112974
|
readonly type: "integer";
|
|
112377
112975
|
readonly description: "Check label ID";
|
|
@@ -112556,6 +113154,12 @@ declare const OrderOneWritableSchema: {
|
|
|
112556
113154
|
readonly description: "Deprecated field: eco tax use now product tax_id <br/> Eco tax ID\n";
|
|
112557
113155
|
readonly nullable: true;
|
|
112558
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
|
+
};
|
|
112559
113163
|
readonly check_label_id: {
|
|
112560
113164
|
readonly type: "integer";
|
|
112561
113165
|
readonly description: "Check label ID";
|
|
@@ -112918,6 +113522,12 @@ declare const DeliveryWritableSchema: {
|
|
|
112918
113522
|
readonly description: "Analytic code of document";
|
|
112919
113523
|
readonly example: "divers";
|
|
112920
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
|
+
};
|
|
112921
113531
|
readonly bank_account_id: {
|
|
112922
113532
|
readonly type: "integer";
|
|
112923
113533
|
readonly description: "Bank account ID";
|
|
@@ -113150,6 +113760,12 @@ declare const DeliveryOneWritableSchema: {
|
|
|
113150
113760
|
readonly description: "Analytic code of document";
|
|
113151
113761
|
readonly example: "divers";
|
|
113152
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
|
+
};
|
|
113153
113769
|
readonly bank_account_id: {
|
|
113154
113770
|
readonly type: "integer";
|
|
113155
113771
|
readonly description: "Bank account ID";
|
|
@@ -114751,6 +115367,18 @@ declare const ProgressInvoiceMetadataWritableSchema: {
|
|
|
114751
115367
|
};
|
|
114752
115368
|
};
|
|
114753
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
|
+
};
|
|
114754
115382
|
};
|
|
114755
115383
|
};
|
|
114756
115384
|
declare const ProgressInvoiceUpdateWritableSchema: {
|
|
@@ -114975,6 +115603,12 @@ declare const ProgressInvoiceUpdateWritableSchema: {
|
|
|
114975
115603
|
readonly description: "Analytic code of document";
|
|
114976
115604
|
readonly example: "divers";
|
|
114977
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
|
+
};
|
|
114978
115612
|
};
|
|
114979
115613
|
};
|
|
114980
115614
|
declare const BankAccountWritableSchema: {
|
|
@@ -116668,7 +117302,7 @@ declare const getStaff: <ThrowOnError extends boolean = false>(options: Options<
|
|
|
116668
117302
|
*
|
|
116669
117303
|
* Update staff informations
|
|
116670
117304
|
*/
|
|
116671
|
-
declare const updateStaff: <ThrowOnError extends boolean = false>(options: Options<UpdateStaffData, ThrowOnError>) => RequestResult<UpdateStaffResponses,
|
|
117305
|
+
declare const updateStaff: <ThrowOnError extends boolean = false>(options: Options<UpdateStaffData, ThrowOnError>) => RequestResult<UpdateStaffResponses, UpdateStaffErrors, ThrowOnError, "fields">;
|
|
116672
117306
|
/**
|
|
116673
117307
|
* Get Staffs
|
|
116674
117308
|
*
|
|
@@ -117092,7 +117726,7 @@ declare const getInvoice: <ThrowOnError extends boolean = false>(options: Option
|
|
|
117092
117726
|
/**
|
|
117093
117727
|
* Update invoice
|
|
117094
117728
|
*
|
|
117095
|
-
* 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>
|
|
117096
117730
|
*/
|
|
117097
117731
|
declare const updateInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateInvoiceData, ThrowOnError>) => RequestResult<UpdateInvoiceResponses, unknown, ThrowOnError, "fields">;
|
|
117098
117732
|
/**
|
|
@@ -117104,7 +117738,7 @@ declare const getInvoices: <ThrowOnError extends boolean = false>(options?: Opti
|
|
|
117104
117738
|
/**
|
|
117105
117739
|
* Create invoice
|
|
117106
117740
|
*
|
|
117107
|
-
* 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>
|
|
117108
117742
|
*/
|
|
117109
117743
|
declare const createInvoice: <ThrowOnError extends boolean = false>(options?: Options<CreateInvoiceData, ThrowOnError>) => RequestResult<CreateInvoiceResponses, unknown, ThrowOnError, "fields">;
|
|
117110
117744
|
/**
|
|
@@ -117258,7 +117892,7 @@ declare const getCreditNote: <ThrowOnError extends boolean = false>(options: Opt
|
|
|
117258
117892
|
/**
|
|
117259
117893
|
* Update credit note
|
|
117260
117894
|
*
|
|
117261
|
-
* 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>
|
|
117262
117896
|
*
|
|
117263
117897
|
*/
|
|
117264
117898
|
declare const updateCreditNote: <ThrowOnError extends boolean = false>(options: Options<UpdateCreditNoteData, ThrowOnError>) => RequestResult<UpdateCreditNoteResponses, unknown, ThrowOnError, "fields">;
|
|
@@ -117271,7 +117905,7 @@ declare const getCreditNotes: <ThrowOnError extends boolean = false>(options?: O
|
|
|
117271
117905
|
/**
|
|
117272
117906
|
* Create credit note
|
|
117273
117907
|
*
|
|
117274
|
-
* 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>
|
|
117275
117909
|
*
|
|
117276
117910
|
*/
|
|
117277
117911
|
declare const createCreditNote: <ThrowOnError extends boolean = false>(options?: Options<CreateCreditNoteData, ThrowOnError>) => RequestResult<CreateCreditNoteResponses, unknown, ThrowOnError, "fields">;
|
|
@@ -117694,7 +118328,7 @@ declare const getDepositInvoices: <ThrowOnError extends boolean = false>(options
|
|
|
117694
118328
|
/**
|
|
117695
118329
|
* Create a deposit invoice
|
|
117696
118330
|
*
|
|
117697
|
-
* 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>
|
|
117698
118332
|
*
|
|
117699
118333
|
*/
|
|
117700
118334
|
declare const createDepositInvoice: <ThrowOnError extends boolean = false>(options?: Options<CreateDepositInvoiceData, ThrowOnError>) => RequestResult<CreateDepositInvoiceResponses, unknown, ThrowOnError, "fields">;
|
|
@@ -117823,7 +118457,7 @@ declare const getProformaInvoiceCustomFields: <ThrowOnError extends boolean = fa
|
|
|
117823
118457
|
/**
|
|
117824
118458
|
* Create a Progress invoice
|
|
117825
118459
|
*
|
|
117826
|
-
* 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>
|
|
117827
118461
|
*
|
|
117828
118462
|
*/
|
|
117829
118463
|
declare const createProgressInvoice: <ThrowOnError extends boolean = false>(options?: Options<CreateProgressInvoiceData, ThrowOnError>) => RequestResult<CreateProgressInvoiceResponses, unknown, ThrowOnError, "fields">;
|
|
@@ -117837,7 +118471,7 @@ declare const computeProgressInvoice: <ThrowOnError extends boolean = false>(opt
|
|
|
117837
118471
|
/**
|
|
117838
118472
|
* Update a progress invoice
|
|
117839
118473
|
*
|
|
117840
|
-
* 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>
|
|
117841
118475
|
*
|
|
117842
118476
|
*/
|
|
117843
118477
|
declare const updateProgressInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateProgressInvoiceData, ThrowOnError>) => RequestResult<UpdateProgressInvoiceResponses, unknown, ThrowOnError, "fields">;
|
|
@@ -117933,5 +118567,5 @@ declare const createEsignProposalDocument: <ThrowOnError extends boolean = false
|
|
|
117933
118567
|
//#region src/index.d.ts
|
|
117934
118568
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
117935
118569
|
//#endregion
|
|
117936
|
-
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 };
|
|
117937
118571
|
//# sourceMappingURL=index.d.mts.map
|