@getyetty-sdk/pennylane 2026.3.20 → 2026.3.25
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 +203 -87
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +86 -39
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1371,10 +1371,17 @@ declare const SchemasCurrency: {
|
|
|
1371
1371
|
readonly ZWL: "ZWL";
|
|
1372
1372
|
};
|
|
1373
1373
|
type SchemasCurrency = (typeof SchemasCurrency)[keyof typeof SchemasCurrency];
|
|
1374
|
+
/**
|
|
1375
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
1376
|
+
*/
|
|
1374
1377
|
declare const TemplatesAvailablesLocales: {
|
|
1375
1378
|
readonly FR_FR: "fr_FR";
|
|
1376
1379
|
readonly EN_GB: "en_GB";
|
|
1380
|
+
readonly DE_DE: "de_DE";
|
|
1377
1381
|
};
|
|
1382
|
+
/**
|
|
1383
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
1384
|
+
*/
|
|
1378
1385
|
type TemplatesAvailablesLocales = (typeof TemplatesAvailablesLocales)[keyof typeof TemplatesAvailablesLocales];
|
|
1379
1386
|
declare const InvoiceStatuses: {
|
|
1380
1387
|
readonly ARCHIVED: "archived";
|
|
@@ -1458,7 +1465,10 @@ type CustomerInvoicesResponse = {
|
|
|
1458
1465
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
1459
1466
|
*/
|
|
1460
1467
|
tax: string;
|
|
1461
|
-
|
|
1468
|
+
/**
|
|
1469
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
1470
|
+
*/
|
|
1471
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
1462
1472
|
/**
|
|
1463
1473
|
* Invoice paid status (set to True if the invoice is paid)
|
|
1464
1474
|
*/
|
|
@@ -2255,7 +2265,10 @@ type CustomerInvoicesPostDraftRequest = {
|
|
|
2255
2265
|
* Additional details. maximum 20,000 characters.
|
|
2256
2266
|
*/
|
|
2257
2267
|
special_mention?: string | null;
|
|
2258
|
-
|
|
2268
|
+
/**
|
|
2269
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
2270
|
+
*/
|
|
2271
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
2259
2272
|
discount?: {
|
|
2260
2273
|
/**
|
|
2261
2274
|
* Discount type.
|
|
@@ -2563,7 +2576,10 @@ type CustomerInvoicesPostFinalizedRequest = {
|
|
|
2563
2576
|
* Additional details. maximum 20,000 characters.
|
|
2564
2577
|
*/
|
|
2565
2578
|
special_mention?: string | null;
|
|
2566
|
-
|
|
2579
|
+
/**
|
|
2580
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
2581
|
+
*/
|
|
2582
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
2567
2583
|
/**
|
|
2568
2584
|
* Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
|
|
2569
2585
|
*/
|
|
@@ -2828,12 +2844,12 @@ declare const BillingSubscriptionPaymentMethod: {
|
|
|
2828
2844
|
*
|
|
2829
2845
|
*/
|
|
2830
2846
|
type BillingSubscriptionPaymentMethod = (typeof BillingSubscriptionPaymentMethod)[keyof typeof BillingSubscriptionPaymentMethod];
|
|
2831
|
-
declare const
|
|
2847
|
+
declare const BillingSubscriptionRuleTypes: {
|
|
2832
2848
|
readonly WEEKLY: "weekly";
|
|
2833
2849
|
readonly MONTHLY: "monthly";
|
|
2834
2850
|
readonly YEARLY: "yearly";
|
|
2835
2851
|
};
|
|
2836
|
-
type
|
|
2852
|
+
type BillingSubscriptionRuleTypes = (typeof BillingSubscriptionRuleTypes)[keyof typeof BillingSubscriptionRuleTypes];
|
|
2837
2853
|
type BillingSubscriptionsResponse = {
|
|
2838
2854
|
/**
|
|
2839
2855
|
* Billing subscription identifier
|
|
@@ -2936,7 +2952,10 @@ type BillingSubscriptionsResponse = {
|
|
|
2936
2952
|
* Invoice taxable amount (in euros. If the currency is euro, `currency_amount` and `amount` are identical)
|
|
2937
2953
|
*/
|
|
2938
2954
|
currency_tax: string;
|
|
2939
|
-
|
|
2955
|
+
/**
|
|
2956
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
2957
|
+
*/
|
|
2958
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
2940
2959
|
customer_invoice_template: {
|
|
2941
2960
|
id: number;
|
|
2942
2961
|
} | null;
|
|
@@ -3073,7 +3092,7 @@ type PaymentConditions = (typeof PaymentConditions)[keyof typeof PaymentConditio
|
|
|
3073
3092
|
/**
|
|
3074
3093
|
* The language in which the customer will receive invoices. Default is `fr_FR`
|
|
3075
3094
|
*/
|
|
3076
|
-
declare const
|
|
3095
|
+
declare const Language: {
|
|
3077
3096
|
readonly FR_FR: "fr_FR";
|
|
3078
3097
|
readonly EN_GB: "en_GB";
|
|
3079
3098
|
readonly DE_DE: "de_DE";
|
|
@@ -3081,7 +3100,7 @@ declare const CustomerBillingLanguage: {
|
|
|
3081
3100
|
/**
|
|
3082
3101
|
* The language in which the customer will receive invoices. Default is `fr_FR`
|
|
3083
3102
|
*/
|
|
3084
|
-
type
|
|
3103
|
+
type Language = (typeof Language)[keyof typeof Language];
|
|
3085
3104
|
type CompanyCustomersResponse = {
|
|
3086
3105
|
id: number;
|
|
3087
3106
|
name: string;
|
|
@@ -3371,7 +3390,7 @@ type CustomersContactsResponse = {
|
|
|
3371
3390
|
created_at: string;
|
|
3372
3391
|
updated_at: string;
|
|
3373
3392
|
};
|
|
3374
|
-
declare const
|
|
3393
|
+
declare const SupplierPaymentMethods: {
|
|
3375
3394
|
readonly AUTOMATIC_TRANSFER: "automatic_transfer";
|
|
3376
3395
|
readonly MANUAL_TRANSFER: "manual_transfer";
|
|
3377
3396
|
readonly AUTOMATIC_DEBITING: "automatic_debiting";
|
|
@@ -3379,13 +3398,14 @@ declare const SupplierPaymentMethod: {
|
|
|
3379
3398
|
readonly CHECK: "check";
|
|
3380
3399
|
readonly CASH: "cash";
|
|
3381
3400
|
readonly CARD: "card";
|
|
3401
|
+
readonly OTHER: "other";
|
|
3382
3402
|
};
|
|
3383
|
-
type
|
|
3384
|
-
declare const
|
|
3403
|
+
type SupplierPaymentMethods = (typeof SupplierPaymentMethods)[keyof typeof SupplierPaymentMethods];
|
|
3404
|
+
declare const ThirdpartySupplierDueDateRule: {
|
|
3385
3405
|
readonly DAYS: "days";
|
|
3386
3406
|
readonly DAYS_OR_END_OF_MONTH: "days_or_end_of_month";
|
|
3387
3407
|
};
|
|
3388
|
-
type
|
|
3408
|
+
type ThirdpartySupplierDueDateRule = (typeof ThirdpartySupplierDueDateRule)[keyof typeof ThirdpartySupplierDueDateRule];
|
|
3389
3409
|
type SuppliersResponse = {
|
|
3390
3410
|
id: number;
|
|
3391
3411
|
name: string;
|
|
@@ -3418,7 +3438,7 @@ type SuppliersResponse = {
|
|
|
3418
3438
|
city: string;
|
|
3419
3439
|
country_alpha2: string;
|
|
3420
3440
|
};
|
|
3421
|
-
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
3441
|
+
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
3422
3442
|
supplier_due_date_delay: number | null;
|
|
3423
3443
|
supplier_due_date_rule: 'days' | 'days_or_end_of_month';
|
|
3424
3444
|
/**
|
|
@@ -3605,7 +3625,10 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3605
3625
|
*/
|
|
3606
3626
|
value: string | null;
|
|
3607
3627
|
};
|
|
3608
|
-
|
|
3628
|
+
/**
|
|
3629
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
3630
|
+
*/
|
|
3631
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
3609
3632
|
/**
|
|
3610
3633
|
* Add, update, delete invoice lines.
|
|
3611
3634
|
*/
|
|
@@ -4388,14 +4411,14 @@ type CategoryGroupsResponse = {
|
|
|
4388
4411
|
/**
|
|
4389
4412
|
* Only applicable for _treasury_ categories
|
|
4390
4413
|
*/
|
|
4391
|
-
declare const
|
|
4414
|
+
declare const TransactionDirection: {
|
|
4392
4415
|
readonly CASH_IN: "cash_in";
|
|
4393
4416
|
readonly CASH_OUT: "cash_out";
|
|
4394
4417
|
};
|
|
4395
4418
|
/**
|
|
4396
4419
|
* Only applicable for _treasury_ categories
|
|
4397
4420
|
*/
|
|
4398
|
-
type
|
|
4421
|
+
type TransactionDirection = (typeof TransactionDirection)[keyof typeof TransactionDirection];
|
|
4399
4422
|
type CategoriesResponse = {
|
|
4400
4423
|
id: number;
|
|
4401
4424
|
label: string;
|
|
@@ -4545,7 +4568,7 @@ type TransactionsCategoriesResponse2 = {
|
|
|
4545
4568
|
* - pending: quote to be denied or accepted
|
|
4546
4569
|
*
|
|
4547
4570
|
*/
|
|
4548
|
-
declare const
|
|
4571
|
+
declare const EstimateStatus: {
|
|
4549
4572
|
readonly PENDING: "pending";
|
|
4550
4573
|
readonly ACCEPTED: "accepted";
|
|
4551
4574
|
readonly DENIED: "denied";
|
|
@@ -4560,7 +4583,7 @@ declare const QuoteStatus: {
|
|
|
4560
4583
|
* - pending: quote to be denied or accepted
|
|
4561
4584
|
*
|
|
4562
4585
|
*/
|
|
4563
|
-
type
|
|
4586
|
+
type EstimateStatus = (typeof EstimateStatus)[keyof typeof EstimateStatus];
|
|
4564
4587
|
type QuotesResponse = {
|
|
4565
4588
|
/**
|
|
4566
4589
|
* Quote identifier
|
|
@@ -4601,7 +4624,10 @@ type QuotesResponse = {
|
|
|
4601
4624
|
* Quote taxable amount (in quote currency)
|
|
4602
4625
|
*/
|
|
4603
4626
|
tax: string;
|
|
4604
|
-
|
|
4627
|
+
/**
|
|
4628
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
4629
|
+
*/
|
|
4630
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
4605
4631
|
/**
|
|
4606
4632
|
* - accepted: quote has been accepted
|
|
4607
4633
|
* - denied: quote has been denied
|
|
@@ -4727,7 +4753,10 @@ type QuotesPostRequest = {
|
|
|
4727
4753
|
* Additional details
|
|
4728
4754
|
*/
|
|
4729
4755
|
special_mention?: string | null;
|
|
4730
|
-
|
|
4756
|
+
/**
|
|
4757
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
4758
|
+
*/
|
|
4759
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
4731
4760
|
discount?: {
|
|
4732
4761
|
/**
|
|
4733
4762
|
* Discount type.
|
|
@@ -4861,7 +4890,10 @@ type QuotesPutRequest = {
|
|
|
4861
4890
|
*/
|
|
4862
4891
|
value: string;
|
|
4863
4892
|
};
|
|
4864
|
-
|
|
4893
|
+
/**
|
|
4894
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
4895
|
+
*/
|
|
4896
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
4865
4897
|
/**
|
|
4866
4898
|
* Add, update, delete invoice lines.
|
|
4867
4899
|
*/
|
|
@@ -5095,12 +5127,12 @@ type QuotesInvoiceLineSectionsResponse = {
|
|
|
5095
5127
|
created_at: string;
|
|
5096
5128
|
updated_at: string;
|
|
5097
5129
|
};
|
|
5098
|
-
declare const
|
|
5130
|
+
declare const CustomerInvoiceDocumentTypes: {
|
|
5099
5131
|
readonly PROFORMA: "proforma";
|
|
5100
5132
|
readonly SHIPPING_ORDER: "shipping_order";
|
|
5101
5133
|
readonly PURCHASING_ORDER: "purchasing_order";
|
|
5102
5134
|
};
|
|
5103
|
-
type
|
|
5135
|
+
type CustomerInvoiceDocumentTypes = (typeof CustomerInvoiceDocumentTypes)[keyof typeof CustomerInvoiceDocumentTypes];
|
|
5104
5136
|
type CommercialDocumentsResponse = {
|
|
5105
5137
|
/**
|
|
5106
5138
|
* Commercial document identifier
|
|
@@ -5142,7 +5174,10 @@ type CommercialDocumentsResponse = {
|
|
|
5142
5174
|
* Document taxable amount (in document currency)
|
|
5143
5175
|
*/
|
|
5144
5176
|
tax: string;
|
|
5145
|
-
|
|
5177
|
+
/**
|
|
5178
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
5179
|
+
*/
|
|
5180
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
5146
5181
|
discount: {
|
|
5147
5182
|
/**
|
|
5148
5183
|
* Discount type.
|
|
@@ -9792,7 +9827,10 @@ type GetCustomerInvoicesResponses = {
|
|
|
9792
9827
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
9793
9828
|
*/
|
|
9794
9829
|
tax: string;
|
|
9795
|
-
|
|
9830
|
+
/**
|
|
9831
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
9832
|
+
*/
|
|
9833
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
9796
9834
|
/**
|
|
9797
9835
|
* Invoice paid status (set to True if the invoice is paid)
|
|
9798
9836
|
*/
|
|
@@ -10125,7 +10163,10 @@ type PostCustomerInvoicesData = {
|
|
|
10125
10163
|
* Additional details. maximum 20,000 characters.
|
|
10126
10164
|
*/
|
|
10127
10165
|
special_mention?: string | null;
|
|
10128
|
-
|
|
10166
|
+
/**
|
|
10167
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
10168
|
+
*/
|
|
10169
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
10129
10170
|
discount?: {
|
|
10130
10171
|
/**
|
|
10131
10172
|
* Discount type.
|
|
@@ -10296,7 +10337,10 @@ type PostCustomerInvoicesData = {
|
|
|
10296
10337
|
* Additional details. maximum 20,000 characters.
|
|
10297
10338
|
*/
|
|
10298
10339
|
special_mention?: string | null;
|
|
10299
|
-
|
|
10340
|
+
/**
|
|
10341
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
10342
|
+
*/
|
|
10343
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
10300
10344
|
/**
|
|
10301
10345
|
* Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
|
|
10302
10346
|
*/
|
|
@@ -10598,7 +10642,10 @@ type PostCustomerInvoicesResponses = {
|
|
|
10598
10642
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
10599
10643
|
*/
|
|
10600
10644
|
tax: string;
|
|
10601
|
-
|
|
10645
|
+
/**
|
|
10646
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
10647
|
+
*/
|
|
10648
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
10602
10649
|
/**
|
|
10603
10650
|
* Invoice paid status (set to True if the invoice is paid)
|
|
10604
10651
|
*/
|
|
@@ -11052,7 +11099,10 @@ type ImportCustomerInvoicesResponses = {
|
|
|
11052
11099
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
11053
11100
|
*/
|
|
11054
11101
|
tax: string;
|
|
11055
|
-
|
|
11102
|
+
/**
|
|
11103
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
11104
|
+
*/
|
|
11105
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
11056
11106
|
/**
|
|
11057
11107
|
* Invoice paid status (set to True if the invoice is paid)
|
|
11058
11108
|
*/
|
|
@@ -11472,7 +11522,10 @@ type CreateCustomerInvoiceFromQuoteResponses = {
|
|
|
11472
11522
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
11473
11523
|
*/
|
|
11474
11524
|
tax: string;
|
|
11475
|
-
|
|
11525
|
+
/**
|
|
11526
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
11527
|
+
*/
|
|
11528
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
11476
11529
|
/**
|
|
11477
11530
|
* Invoice paid status (set to True if the invoice is paid)
|
|
11478
11531
|
*/
|
|
@@ -11847,7 +11900,10 @@ type GetBillingSubscriptionsResponses = {
|
|
|
11847
11900
|
* Invoice taxable amount (in euros. If the currency is euro, `currency_amount` and `amount` are identical)
|
|
11848
11901
|
*/
|
|
11849
11902
|
currency_tax: string;
|
|
11850
|
-
|
|
11903
|
+
/**
|
|
11904
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
11905
|
+
*/
|
|
11906
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
11851
11907
|
customer_invoice_template: {
|
|
11852
11908
|
id: number;
|
|
11853
11909
|
} | null;
|
|
@@ -11997,7 +12053,10 @@ type PostBillingSubscriptionsData = {
|
|
|
11997
12053
|
* Additional details
|
|
11998
12054
|
*/
|
|
11999
12055
|
special_mention?: string | null;
|
|
12000
|
-
|
|
12056
|
+
/**
|
|
12057
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
12058
|
+
*/
|
|
12059
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
12001
12060
|
discount?: {
|
|
12002
12061
|
/**
|
|
12003
12062
|
* Discount type.
|
|
@@ -12244,7 +12303,10 @@ type PostBillingSubscriptionsResponses = {
|
|
|
12244
12303
|
* Invoice taxable amount (in euros. If the currency is euro, `currency_amount` and `amount` are identical)
|
|
12245
12304
|
*/
|
|
12246
12305
|
currency_tax: string;
|
|
12247
|
-
|
|
12306
|
+
/**
|
|
12307
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
12308
|
+
*/
|
|
12309
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
12248
12310
|
customer_invoice_template: {
|
|
12249
12311
|
id: number;
|
|
12250
12312
|
} | null;
|
|
@@ -12481,7 +12543,10 @@ type GetBillingSubscriptionResponses = {
|
|
|
12481
12543
|
* Invoice taxable amount (in euros. If the currency is euro, `currency_amount` and `amount` are identical)
|
|
12482
12544
|
*/
|
|
12483
12545
|
currency_tax: string;
|
|
12484
|
-
|
|
12546
|
+
/**
|
|
12547
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
12548
|
+
*/
|
|
12549
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
12485
12550
|
customer_invoice_template: {
|
|
12486
12551
|
id: number;
|
|
12487
12552
|
} | null;
|
|
@@ -12633,7 +12698,10 @@ type PutBillingSubscriptionsData = {
|
|
|
12633
12698
|
* Additional details
|
|
12634
12699
|
*/
|
|
12635
12700
|
special_mention?: string | null;
|
|
12636
|
-
|
|
12701
|
+
/**
|
|
12702
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
12703
|
+
*/
|
|
12704
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
12637
12705
|
discount?: {
|
|
12638
12706
|
/**
|
|
12639
12707
|
* Discount type.
|
|
@@ -13003,7 +13071,10 @@ type PutBillingSubscriptionsResponses = {
|
|
|
13003
13071
|
* Invoice taxable amount (in euros. If the currency is euro, `currency_amount` and `amount` are identical)
|
|
13004
13072
|
*/
|
|
13005
13073
|
currency_tax: string;
|
|
13006
|
-
|
|
13074
|
+
/**
|
|
13075
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
13076
|
+
*/
|
|
13077
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
13007
13078
|
customer_invoice_template: {
|
|
13008
13079
|
id: number;
|
|
13009
13080
|
} | null;
|
|
@@ -16527,7 +16598,7 @@ type GetSuppliersResponses = {
|
|
|
16527
16598
|
city: string;
|
|
16528
16599
|
country_alpha2: string;
|
|
16529
16600
|
};
|
|
16530
|
-
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
16601
|
+
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
16531
16602
|
supplier_due_date_delay: number | null;
|
|
16532
16603
|
supplier_due_date_rule: 'days' | 'days_or_end_of_month';
|
|
16533
16604
|
/**
|
|
@@ -16569,7 +16640,7 @@ type PostSupplierData = {
|
|
|
16569
16640
|
} | null;
|
|
16570
16641
|
emails?: Array<string>;
|
|
16571
16642
|
iban?: string;
|
|
16572
|
-
supplier_payment_method?: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
16643
|
+
supplier_payment_method?: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
16573
16644
|
supplier_due_date_delay?: number;
|
|
16574
16645
|
supplier_due_date_rule?: 'days' | 'days_or_end_of_month';
|
|
16575
16646
|
/**
|
|
@@ -16680,7 +16751,7 @@ type PostSupplierResponses = {
|
|
|
16680
16751
|
city: string;
|
|
16681
16752
|
country_alpha2: string;
|
|
16682
16753
|
};
|
|
16683
|
-
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
16754
|
+
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
16684
16755
|
supplier_due_date_delay: number | null;
|
|
16685
16756
|
supplier_due_date_rule: 'days' | 'days_or_end_of_month';
|
|
16686
16757
|
/**
|
|
@@ -16811,7 +16882,7 @@ type GetSupplierResponses = {
|
|
|
16811
16882
|
city: string;
|
|
16812
16883
|
country_alpha2: string;
|
|
16813
16884
|
};
|
|
16814
|
-
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
16885
|
+
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
16815
16886
|
supplier_due_date_delay: number | null;
|
|
16816
16887
|
supplier_due_date_rule: 'days' | 'days_or_end_of_month';
|
|
16817
16888
|
/**
|
|
@@ -16849,7 +16920,7 @@ type PutSupplierData = {
|
|
|
16849
16920
|
vat_number?: string;
|
|
16850
16921
|
emails?: Array<string>;
|
|
16851
16922
|
iban?: string;
|
|
16852
|
-
supplier_payment_method?: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
16923
|
+
supplier_payment_method?: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
16853
16924
|
supplier_due_date_delay?: number | null;
|
|
16854
16925
|
supplier_due_date_rule?: 'days' | 'days_or_end_of_month';
|
|
16855
16926
|
/**
|
|
@@ -16978,7 +17049,7 @@ type PutSupplierResponses = {
|
|
|
16978
17049
|
city: string;
|
|
16979
17050
|
country_alpha2: string;
|
|
16980
17051
|
};
|
|
16981
|
-
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card';
|
|
17052
|
+
supplier_payment_method: 'automatic_transfer' | 'manual_transfer' | 'automatic_debiting' | 'bill_of_exchange' | 'check' | 'cash' | 'card' | 'other';
|
|
16982
17053
|
supplier_due_date_delay: number | null;
|
|
16983
17054
|
supplier_due_date_rule: 'days' | 'days_or_end_of_month';
|
|
16984
17055
|
/**
|
|
@@ -18403,7 +18474,10 @@ type GetCustomerInvoiceResponses = {
|
|
|
18403
18474
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
18404
18475
|
*/
|
|
18405
18476
|
tax: string;
|
|
18406
|
-
|
|
18477
|
+
/**
|
|
18478
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
18479
|
+
*/
|
|
18480
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
18407
18481
|
/**
|
|
18408
18482
|
* Invoice paid status (set to True if the invoice is paid)
|
|
18409
18483
|
*/
|
|
@@ -18623,7 +18697,10 @@ type UpdateCustomerInvoiceData = {
|
|
|
18623
18697
|
*/
|
|
18624
18698
|
value: string | null;
|
|
18625
18699
|
};
|
|
18626
|
-
|
|
18700
|
+
/**
|
|
18701
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
18702
|
+
*/
|
|
18703
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
18627
18704
|
/**
|
|
18628
18705
|
* Add, update, delete invoice lines.
|
|
18629
18706
|
*/
|
|
@@ -18981,7 +19058,10 @@ type UpdateCustomerInvoiceResponses = {
|
|
|
18981
19058
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
18982
19059
|
*/
|
|
18983
19060
|
tax: string;
|
|
18984
|
-
|
|
19061
|
+
/**
|
|
19062
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
19063
|
+
*/
|
|
19064
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
18985
19065
|
/**
|
|
18986
19066
|
* Invoice paid status (set to True if the invoice is paid)
|
|
18987
19067
|
*/
|
|
@@ -19874,7 +19954,10 @@ type UpdateImportedCustomerInvoiceResponses = {
|
|
|
19874
19954
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
19875
19955
|
*/
|
|
19876
19956
|
tax: string;
|
|
19877
|
-
|
|
19957
|
+
/**
|
|
19958
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
19959
|
+
*/
|
|
19960
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
19878
19961
|
/**
|
|
19879
19962
|
* Invoice paid status (set to True if the invoice is paid)
|
|
19880
19963
|
*/
|
|
@@ -20177,7 +20260,10 @@ type FinalizeCustomerInvoiceResponses = {
|
|
|
20177
20260
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
20178
20261
|
*/
|
|
20179
20262
|
tax: string;
|
|
20180
|
-
|
|
20263
|
+
/**
|
|
20264
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
20265
|
+
*/
|
|
20266
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
20181
20267
|
/**
|
|
20182
20268
|
* Invoice paid status (set to True if the invoice is paid)
|
|
20183
20269
|
*/
|
|
@@ -20485,7 +20571,10 @@ type LinkCreditNoteResponses = {
|
|
|
20485
20571
|
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
20486
20572
|
*/
|
|
20487
20573
|
tax: string;
|
|
20488
|
-
|
|
20574
|
+
/**
|
|
20575
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
20576
|
+
*/
|
|
20577
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
20489
20578
|
/**
|
|
20490
20579
|
* Invoice paid status (set to True if the invoice is paid)
|
|
20491
20580
|
*/
|
|
@@ -26733,7 +26822,10 @@ type ListQuotesResponses = {
|
|
|
26733
26822
|
* Quote taxable amount (in quote currency)
|
|
26734
26823
|
*/
|
|
26735
26824
|
tax: string;
|
|
26736
|
-
|
|
26825
|
+
/**
|
|
26826
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
26827
|
+
*/
|
|
26828
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
26737
26829
|
/**
|
|
26738
26830
|
* - accepted: quote has been accepted
|
|
26739
26831
|
* - denied: quote has been denied
|
|
@@ -26863,7 +26955,10 @@ type PostQuotesData = {
|
|
|
26863
26955
|
* Additional details
|
|
26864
26956
|
*/
|
|
26865
26957
|
special_mention?: string | null;
|
|
26866
|
-
|
|
26958
|
+
/**
|
|
26959
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
26960
|
+
*/
|
|
26961
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
26867
26962
|
discount?: {
|
|
26868
26963
|
/**
|
|
26869
26964
|
* Discount type.
|
|
@@ -27051,7 +27146,10 @@ type PostQuotesResponses = {
|
|
|
27051
27146
|
* Quote taxable amount (in quote currency)
|
|
27052
27147
|
*/
|
|
27053
27148
|
tax: string;
|
|
27054
|
-
|
|
27149
|
+
/**
|
|
27150
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
27151
|
+
*/
|
|
27152
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
27055
27153
|
/**
|
|
27056
27154
|
* - accepted: quote has been accepted
|
|
27057
27155
|
* - denied: quote has been denied
|
|
@@ -27243,7 +27341,10 @@ type GetQuoteResponses = {
|
|
|
27243
27341
|
* Quote taxable amount (in quote currency)
|
|
27244
27342
|
*/
|
|
27245
27343
|
tax: string;
|
|
27246
|
-
|
|
27344
|
+
/**
|
|
27345
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
27346
|
+
*/
|
|
27347
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
27247
27348
|
/**
|
|
27248
27349
|
* - accepted: quote has been accepted
|
|
27249
27350
|
* - denied: quote has been denied
|
|
@@ -27385,7 +27486,10 @@ type UpdateQuoteData = {
|
|
|
27385
27486
|
*/
|
|
27386
27487
|
value: string;
|
|
27387
27488
|
};
|
|
27388
|
-
|
|
27489
|
+
/**
|
|
27490
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
27491
|
+
*/
|
|
27492
|
+
language?: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
27389
27493
|
/**
|
|
27390
27494
|
* Add, update, delete invoice lines.
|
|
27391
27495
|
*/
|
|
@@ -27614,7 +27718,10 @@ type UpdateQuoteResponses = {
|
|
|
27614
27718
|
* Quote taxable amount (in quote currency)
|
|
27615
27719
|
*/
|
|
27616
27720
|
tax: string;
|
|
27617
|
-
|
|
27721
|
+
/**
|
|
27722
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
27723
|
+
*/
|
|
27724
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
27618
27725
|
/**
|
|
27619
27726
|
* - accepted: quote has been accepted
|
|
27620
27727
|
* - denied: quote has been denied
|
|
@@ -28408,7 +28515,10 @@ type UpdateStatusQuoteResponses = {
|
|
|
28408
28515
|
* Quote taxable amount (in quote currency)
|
|
28409
28516
|
*/
|
|
28410
28517
|
tax: string;
|
|
28411
|
-
|
|
28518
|
+
/**
|
|
28519
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
28520
|
+
*/
|
|
28521
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
28412
28522
|
/**
|
|
28413
28523
|
* - accepted: quote has been accepted
|
|
28414
28524
|
* - denied: quote has been denied
|
|
@@ -28649,7 +28759,10 @@ type ListCommercialDocumentsResponses = {
|
|
|
28649
28759
|
* Document taxable amount (in document currency)
|
|
28650
28760
|
*/
|
|
28651
28761
|
tax: string;
|
|
28652
|
-
|
|
28762
|
+
/**
|
|
28763
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
28764
|
+
*/
|
|
28765
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
28653
28766
|
discount: {
|
|
28654
28767
|
/**
|
|
28655
28768
|
* Discount type.
|
|
@@ -28835,7 +28948,10 @@ type GetCommercialDocumentResponses = {
|
|
|
28835
28948
|
* Document taxable amount (in document currency)
|
|
28836
28949
|
*/
|
|
28837
28950
|
tax: string;
|
|
28838
|
-
|
|
28951
|
+
/**
|
|
28952
|
+
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
28953
|
+
*/
|
|
28954
|
+
language: 'fr_FR' | 'en_GB' | 'de_DE';
|
|
28839
28955
|
discount: {
|
|
28840
28956
|
/**
|
|
28841
28957
|
* Discount type.
|
|
@@ -33003,8 +33119,8 @@ declare const schemas_CurrencySchema: {
|
|
|
33003
33119
|
};
|
|
33004
33120
|
declare const TemplatesAvailablesLocalesSchema: {
|
|
33005
33121
|
readonly type: "string";
|
|
33006
|
-
readonly
|
|
33007
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
33122
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
33123
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
33008
33124
|
};
|
|
33009
33125
|
declare const InvoiceStatusesSchema: {
|
|
33010
33126
|
readonly type: "string";
|
|
@@ -33089,8 +33205,8 @@ declare const CustomerInvoices__ResponseSchema: {
|
|
|
33089
33205
|
};
|
|
33090
33206
|
readonly language: {
|
|
33091
33207
|
readonly type: "string";
|
|
33092
|
-
readonly
|
|
33093
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
33208
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
33209
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
33094
33210
|
};
|
|
33095
33211
|
readonly paid: {
|
|
33096
33212
|
readonly description: "Invoice paid status (set to True if the invoice is paid)";
|
|
@@ -34101,8 +34217,8 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
|
|
|
34101
34217
|
};
|
|
34102
34218
|
readonly language: {
|
|
34103
34219
|
readonly type: "string";
|
|
34104
|
-
readonly
|
|
34105
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
34220
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
34221
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
34106
34222
|
};
|
|
34107
34223
|
readonly discount: {
|
|
34108
34224
|
readonly type: "object";
|
|
@@ -34556,8 +34672,8 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
|
|
|
34556
34672
|
};
|
|
34557
34673
|
readonly language: {
|
|
34558
34674
|
readonly type: "string";
|
|
34559
|
-
readonly
|
|
34560
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
34675
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
34676
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
34561
34677
|
};
|
|
34562
34678
|
readonly label: {
|
|
34563
34679
|
readonly description: "Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.";
|
|
@@ -34908,7 +35024,7 @@ declare const BillingSubscriptionPaymentMethodSchema: {
|
|
|
34908
35024
|
readonly type: "string";
|
|
34909
35025
|
readonly enum: readonly ["offline", "gocardless_direct_debit"];
|
|
34910
35026
|
};
|
|
34911
|
-
declare const
|
|
35027
|
+
declare const BillingSubscriptionRuleTypesSchema: {
|
|
34912
35028
|
readonly type: "string";
|
|
34913
35029
|
readonly example: "monthly";
|
|
34914
35030
|
readonly enum: readonly ["weekly", "monthly", "yearly"];
|
|
@@ -35135,8 +35251,8 @@ declare const BillingSubscriptions__ResponseSchema: {
|
|
|
35135
35251
|
};
|
|
35136
35252
|
readonly language: {
|
|
35137
35253
|
readonly type: "string";
|
|
35138
|
-
readonly
|
|
35139
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
35254
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
35255
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
35140
35256
|
};
|
|
35141
35257
|
readonly customer_invoice_template: {
|
|
35142
35258
|
readonly type: "object";
|
|
@@ -35381,7 +35497,7 @@ declare const PaymentConditionsSchema: {
|
|
|
35381
35497
|
readonly type: "string";
|
|
35382
35498
|
readonly enum: readonly ["upon_receipt", "custom", "7_days", "15_days", "30_days", "30_days_end_of_month", "45_days", "45_days_end_of_month", "60_days"];
|
|
35383
35499
|
};
|
|
35384
|
-
declare const
|
|
35500
|
+
declare const LanguageSchema: {
|
|
35385
35501
|
readonly description: "The language in which the customer will receive invoices. Default is `fr_FR`";
|
|
35386
35502
|
readonly type: "string";
|
|
35387
35503
|
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
@@ -36158,12 +36274,12 @@ declare const Customers__Contacts__ResponseSchema: {
|
|
|
36158
36274
|
};
|
|
36159
36275
|
readonly required: readonly ["id", "first_name", "last_name", "role", "email", "telephone_number", "mobile_number", "created_at", "updated_at"];
|
|
36160
36276
|
};
|
|
36161
|
-
declare const
|
|
36277
|
+
declare const SupplierPaymentMethodsSchema: {
|
|
36162
36278
|
readonly type: "string";
|
|
36163
36279
|
readonly nullable: true;
|
|
36164
|
-
readonly enum: readonly ["automatic_transfer", "manual_transfer", "automatic_debiting", "bill_of_exchange", "check", "cash", "card"];
|
|
36280
|
+
readonly enum: readonly ["automatic_transfer", "manual_transfer", "automatic_debiting", "bill_of_exchange", "check", "cash", "card", "other"];
|
|
36165
36281
|
};
|
|
36166
|
-
declare const
|
|
36282
|
+
declare const ThirdpartySupplierDueDateRuleSchema: {
|
|
36167
36283
|
readonly type: "string";
|
|
36168
36284
|
readonly nullable: true;
|
|
36169
36285
|
readonly enum: readonly ["days", "days_or_end_of_month"];
|
|
@@ -36243,7 +36359,7 @@ declare const Suppliers__ResponseSchema: {
|
|
|
36243
36359
|
readonly supplier_payment_method: {
|
|
36244
36360
|
readonly type: "string";
|
|
36245
36361
|
readonly nullable: true;
|
|
36246
|
-
readonly enum: readonly ["automatic_transfer", "manual_transfer", "automatic_debiting", "bill_of_exchange", "check", "cash", "card"];
|
|
36362
|
+
readonly enum: readonly ["automatic_transfer", "manual_transfer", "automatic_debiting", "bill_of_exchange", "check", "cash", "card", "other"];
|
|
36247
36363
|
};
|
|
36248
36364
|
readonly supplier_due_date_delay: {
|
|
36249
36365
|
readonly type: "integer";
|
|
@@ -36688,8 +36804,8 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
36688
36804
|
};
|
|
36689
36805
|
readonly language: {
|
|
36690
36806
|
readonly type: "string";
|
|
36691
|
-
readonly
|
|
36692
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
36807
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
36808
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
36693
36809
|
};
|
|
36694
36810
|
readonly invoice_lines: {
|
|
36695
36811
|
readonly description: "Add, update, delete invoice lines.";
|
|
@@ -37770,7 +37886,7 @@ declare const CategoryGroups__ResponseSchema: {
|
|
|
37770
37886
|
};
|
|
37771
37887
|
readonly required: readonly ["id", "label", "categories", "created_at", "updated_at"];
|
|
37772
37888
|
};
|
|
37773
|
-
declare const
|
|
37889
|
+
declare const TransactionDirectionSchema: {
|
|
37774
37890
|
readonly type: "string";
|
|
37775
37891
|
readonly description: "Only applicable for _treasury_ categories";
|
|
37776
37892
|
readonly enum: readonly ["cash_in", "cash_out"];
|
|
@@ -38251,7 +38367,7 @@ declare const Transactions__Categories__ResponseSchema: {
|
|
|
38251
38367
|
};
|
|
38252
38368
|
readonly required: readonly ["id", "label", "weight", "category_group", "analytical_code", "created_at", "updated_at"];
|
|
38253
38369
|
};
|
|
38254
|
-
declare const
|
|
38370
|
+
declare const EstimateStatusSchema: {
|
|
38255
38371
|
readonly description: "- accepted: quote has been accepted\n- denied: quote has been denied\n- expired: quote has expired\n- invoiced: quote has been invoiced\n- pending: quote to be denied or accepted\n";
|
|
38256
38372
|
readonly type: "string";
|
|
38257
38373
|
readonly enum: readonly ["pending", "accepted", "denied", "invoiced", "expired"];
|
|
@@ -38326,8 +38442,8 @@ declare const Quotes__ResponseSchema: {
|
|
|
38326
38442
|
};
|
|
38327
38443
|
readonly language: {
|
|
38328
38444
|
readonly type: "string";
|
|
38329
|
-
readonly
|
|
38330
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
38445
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
38446
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
38331
38447
|
};
|
|
38332
38448
|
readonly status: {
|
|
38333
38449
|
readonly description: "- accepted: quote has been accepted\n- denied: quote has been denied\n- expired: quote has expired\n- invoiced: quote has been invoiced\n- pending: quote to be denied or accepted\n";
|
|
@@ -38547,8 +38663,8 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
38547
38663
|
};
|
|
38548
38664
|
readonly language: {
|
|
38549
38665
|
readonly type: "string";
|
|
38550
|
-
readonly
|
|
38551
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
38666
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
38667
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
38552
38668
|
};
|
|
38553
38669
|
readonly discount: {
|
|
38554
38670
|
readonly type: "object";
|
|
@@ -38753,8 +38869,8 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
38753
38869
|
};
|
|
38754
38870
|
readonly language: {
|
|
38755
38871
|
readonly type: "string";
|
|
38756
|
-
readonly
|
|
38757
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
38872
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
38873
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
38758
38874
|
};
|
|
38759
38875
|
readonly invoice_lines: {
|
|
38760
38876
|
readonly description: "Add, update, delete invoice lines.";
|
|
@@ -39133,7 +39249,7 @@ declare const Quotes__InvoiceLineSections__ResponseSchema: {
|
|
|
39133
39249
|
};
|
|
39134
39250
|
readonly required: readonly ["id", "title", "description", "rank", "created_at", "updated_at"];
|
|
39135
39251
|
};
|
|
39136
|
-
declare const
|
|
39252
|
+
declare const CustomerInvoiceDocumentTypesSchema: {
|
|
39137
39253
|
readonly type: "string";
|
|
39138
39254
|
readonly enum: readonly ["proforma", "shipping_order", "purchasing_order"];
|
|
39139
39255
|
};
|
|
@@ -39211,8 +39327,8 @@ declare const CommercialDocuments__ResponseSchema: {
|
|
|
39211
39327
|
};
|
|
39212
39328
|
readonly language: {
|
|
39213
39329
|
readonly type: "string";
|
|
39214
|
-
readonly
|
|
39215
|
-
readonly enum: readonly ["fr_FR", "en_GB"];
|
|
39330
|
+
readonly description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.";
|
|
39331
|
+
readonly enum: readonly ["fr_FR", "en_GB", "de_DE"];
|
|
39216
39332
|
};
|
|
39217
39333
|
readonly discount: {
|
|
39218
39334
|
readonly type: "object";
|
|
@@ -41820,5 +41936,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
41820
41936
|
//#region src/index.d.ts
|
|
41821
41937
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
41822
41938
|
//#endregion
|
|
41823
|
-
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionOcurrenceRuleType, BillingSubscriptionOcurrenceRuleTypeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryDirection, CategoryDirectionSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentType, CommercialDocumentTypeSchema, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, CurrencySchema, CustomerBillingLanguage, CustomerBillingLanguageSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuoteStatus, QuoteStatusSchema, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SchemasCurrency, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierDueDateRule, SupplierDueDateRuleSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethod, SupplierPaymentMethodSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRate, VatRateSchema, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getFileAttachments, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
41939
|
+
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, CurrencySchema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SchemasCurrency, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRate, VatRateSchema, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getFileAttachments, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
41824
41940
|
//# sourceMappingURL=index.d.mts.map
|