@getyetty-sdk/pennylane 2026.4.30 → 2026.5.7
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 +301 -495
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +146 -72
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -878,6 +878,7 @@ declare const Currency: {
|
|
|
878
878
|
readonly ZWL: "ZWL";
|
|
879
879
|
};
|
|
880
880
|
type Currency = (typeof Currency)[keyof typeof Currency];
|
|
881
|
+
type DecimalString = string;
|
|
881
882
|
type LedgerEntriesResponse = {
|
|
882
883
|
/**
|
|
883
884
|
* ID of the ledger entry
|
|
@@ -1203,7 +1204,7 @@ type LedgerEntryLinesCategoriesResponse = {
|
|
|
1203
1204
|
created_at: string;
|
|
1204
1205
|
updated_at: string;
|
|
1205
1206
|
};
|
|
1206
|
-
declare const
|
|
1207
|
+
declare const Currency2: {
|
|
1207
1208
|
readonly EUR: "EUR";
|
|
1208
1209
|
readonly USD: "USD";
|
|
1209
1210
|
readonly GBP: "GBP";
|
|
@@ -1373,7 +1374,7 @@ declare const SchemasCurrency: {
|
|
|
1373
1374
|
readonly ZMW: "ZMW";
|
|
1374
1375
|
readonly ZWL: "ZWL";
|
|
1375
1376
|
};
|
|
1376
|
-
type
|
|
1377
|
+
type Currency2 = (typeof Currency2)[keyof typeof Currency2];
|
|
1377
1378
|
/**
|
|
1378
1379
|
* 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.
|
|
1379
1380
|
*/
|
|
@@ -1492,10 +1493,7 @@ type CustomerInvoicesResponse = {
|
|
|
1492
1493
|
*
|
|
1493
1494
|
*/
|
|
1494
1495
|
type: 'absolute' | 'relative';
|
|
1495
|
-
|
|
1496
|
-
* Discount value on the total amount before tax of the line
|
|
1497
|
-
*/
|
|
1498
|
-
value: string;
|
|
1496
|
+
value: string & unknown;
|
|
1499
1497
|
};
|
|
1500
1498
|
ledger_entry: {
|
|
1501
1499
|
/**
|
|
@@ -2197,10 +2195,7 @@ type CustomerInvoicesDraftInvoiceLineWithProductRequest = {
|
|
|
2197
2195
|
*
|
|
2198
2196
|
*/
|
|
2199
2197
|
type: 'absolute' | 'relative';
|
|
2200
|
-
|
|
2201
|
-
* Discount value on the total amount before tax of the line
|
|
2202
|
-
*/
|
|
2203
|
-
value: string;
|
|
2198
|
+
value: string & unknown;
|
|
2204
2199
|
};
|
|
2205
2200
|
/**
|
|
2206
2201
|
* The description of the invoice line
|
|
@@ -2251,10 +2246,7 @@ type CustomerInvoicesDraftInvoiceLineWithoutProductRequest = {
|
|
|
2251
2246
|
*
|
|
2252
2247
|
*/
|
|
2253
2248
|
type: 'absolute' | 'relative';
|
|
2254
|
-
|
|
2255
|
-
* Discount value on the total amount before tax of the line
|
|
2256
|
-
*/
|
|
2257
|
-
value: string;
|
|
2249
|
+
value: string & unknown;
|
|
2258
2250
|
};
|
|
2259
2251
|
/**
|
|
2260
2252
|
* The description of the invoice line
|
|
@@ -2382,10 +2374,7 @@ type CustomerInvoicesPostDraftRequest = {
|
|
|
2382
2374
|
*
|
|
2383
2375
|
*/
|
|
2384
2376
|
type: 'absolute' | 'relative';
|
|
2385
|
-
|
|
2386
|
-
* Discount value on the total amount before tax of the line
|
|
2387
|
-
*/
|
|
2388
|
-
value: string;
|
|
2377
|
+
value: string & unknown;
|
|
2389
2378
|
};
|
|
2390
2379
|
/**
|
|
2391
2380
|
* The description of the invoice line
|
|
@@ -2428,10 +2417,7 @@ type CustomerInvoicesPostDraftRequest = {
|
|
|
2428
2417
|
*
|
|
2429
2418
|
*/
|
|
2430
2419
|
type: 'absolute' | 'relative';
|
|
2431
|
-
|
|
2432
|
-
* Discount value on the total amount before tax of the line
|
|
2433
|
-
*/
|
|
2434
|
-
value: string;
|
|
2420
|
+
value: string & unknown;
|
|
2435
2421
|
};
|
|
2436
2422
|
/**
|
|
2437
2423
|
* The description of the invoice line
|
|
@@ -2488,10 +2474,7 @@ type CustomerInvoicesFinalizedInvoiceLineWithProductRequest = {
|
|
|
2488
2474
|
*
|
|
2489
2475
|
*/
|
|
2490
2476
|
type: 'absolute' | 'relative';
|
|
2491
|
-
|
|
2492
|
-
* Discount value on the total amount before tax of the line
|
|
2493
|
-
*/
|
|
2494
|
-
value: string;
|
|
2477
|
+
value: string & unknown;
|
|
2495
2478
|
};
|
|
2496
2479
|
/**
|
|
2497
2480
|
* The description of the invoice line
|
|
@@ -2552,10 +2535,7 @@ type CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest = {
|
|
|
2552
2535
|
*
|
|
2553
2536
|
*/
|
|
2554
2537
|
type: 'absolute' | 'relative';
|
|
2555
|
-
|
|
2556
|
-
* Discount value on the total amount before tax of the line
|
|
2557
|
-
*/
|
|
2558
|
-
value: string;
|
|
2538
|
+
value: string & unknown;
|
|
2559
2539
|
};
|
|
2560
2540
|
/**
|
|
2561
2541
|
* The description of the invoice line
|
|
@@ -2710,10 +2690,7 @@ type CustomerInvoicesPostFinalizedRequest = {
|
|
|
2710
2690
|
*
|
|
2711
2691
|
*/
|
|
2712
2692
|
type: 'absolute' | 'relative';
|
|
2713
|
-
|
|
2714
|
-
* Discount value on the total amount before tax of the line
|
|
2715
|
-
*/
|
|
2716
|
-
value: string;
|
|
2693
|
+
value: string & unknown;
|
|
2717
2694
|
};
|
|
2718
2695
|
/**
|
|
2719
2696
|
* The description of the invoice line
|
|
@@ -2766,10 +2743,7 @@ type CustomerInvoicesPostFinalizedRequest = {
|
|
|
2766
2743
|
*
|
|
2767
2744
|
*/
|
|
2768
2745
|
type: 'absolute' | 'relative';
|
|
2769
|
-
|
|
2770
|
-
* Discount value on the total amount before tax of the line
|
|
2771
|
-
*/
|
|
2772
|
-
value: string;
|
|
2746
|
+
value: string & unknown;
|
|
2773
2747
|
};
|
|
2774
2748
|
/**
|
|
2775
2749
|
* The description of the invoice line
|
|
@@ -3676,10 +3650,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3676
3650
|
*
|
|
3677
3651
|
*/
|
|
3678
3652
|
type: 'absolute' | 'relative';
|
|
3679
|
-
|
|
3680
|
-
* Discount value on the total amount before tax of the line
|
|
3681
|
-
*/
|
|
3682
|
-
value: string | null;
|
|
3653
|
+
value: (string & unknown) | null;
|
|
3683
3654
|
};
|
|
3684
3655
|
/**
|
|
3685
3656
|
* 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.
|
|
@@ -3730,10 +3701,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3730
3701
|
*
|
|
3731
3702
|
*/
|
|
3732
3703
|
type: 'absolute' | 'relative';
|
|
3733
|
-
|
|
3734
|
-
* Discount value on the total amount before tax of the line
|
|
3735
|
-
*/
|
|
3736
|
-
value: string;
|
|
3704
|
+
value: string & unknown;
|
|
3737
3705
|
};
|
|
3738
3706
|
/**
|
|
3739
3707
|
* The description of the invoice line
|
|
@@ -3776,10 +3744,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3776
3744
|
*
|
|
3777
3745
|
*/
|
|
3778
3746
|
type: 'absolute' | 'relative';
|
|
3779
|
-
|
|
3780
|
-
* Discount value on the total amount before tax of the line
|
|
3781
|
-
*/
|
|
3782
|
-
value: string;
|
|
3747
|
+
value: string & unknown;
|
|
3783
3748
|
};
|
|
3784
3749
|
/**
|
|
3785
3750
|
* The description of the invoice line
|
|
@@ -3831,10 +3796,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3831
3796
|
*
|
|
3832
3797
|
*/
|
|
3833
3798
|
type: 'absolute' | 'relative';
|
|
3834
|
-
|
|
3835
|
-
* Discount value on the total amount before tax of the line
|
|
3836
|
-
*/
|
|
3837
|
-
value: string;
|
|
3799
|
+
value: string & unknown;
|
|
3838
3800
|
};
|
|
3839
3801
|
/**
|
|
3840
3802
|
* Has to correspond to the rank number of an invoice line section in which the invoice line should be
|
|
@@ -4724,10 +4686,7 @@ type QuotesResponse = {
|
|
|
4724
4686
|
*
|
|
4725
4687
|
*/
|
|
4726
4688
|
type: 'absolute' | 'relative';
|
|
4727
|
-
|
|
4728
|
-
* Discount value on the total amount before tax of the line
|
|
4729
|
-
*/
|
|
4730
|
-
value: string;
|
|
4689
|
+
value: string & unknown;
|
|
4731
4690
|
};
|
|
4732
4691
|
/**
|
|
4733
4692
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -4848,10 +4807,7 @@ type QuotesInvoiceLineWithProductRequest = {
|
|
|
4848
4807
|
*
|
|
4849
4808
|
*/
|
|
4850
4809
|
type: 'absolute' | 'relative';
|
|
4851
|
-
|
|
4852
|
-
* Discount value on the total amount before tax of the line
|
|
4853
|
-
*/
|
|
4854
|
-
value: string;
|
|
4810
|
+
value: string & unknown;
|
|
4855
4811
|
};
|
|
4856
4812
|
};
|
|
4857
4813
|
/**
|
|
@@ -4902,10 +4858,7 @@ type QuotesInvoiceLineWithoutProductRequest = {
|
|
|
4902
4858
|
*
|
|
4903
4859
|
*/
|
|
4904
4860
|
type: 'absolute' | 'relative';
|
|
4905
|
-
|
|
4906
|
-
* Discount value on the total amount before tax of the line
|
|
4907
|
-
*/
|
|
4908
|
-
value: string;
|
|
4861
|
+
value: string & unknown;
|
|
4909
4862
|
};
|
|
4910
4863
|
};
|
|
4911
4864
|
/**
|
|
@@ -4957,10 +4910,7 @@ type QuotesPostRequest = {
|
|
|
4957
4910
|
*
|
|
4958
4911
|
*/
|
|
4959
4912
|
type: 'absolute' | 'relative';
|
|
4960
|
-
|
|
4961
|
-
* Discount value on the total amount before tax of the quote
|
|
4962
|
-
*/
|
|
4963
|
-
value: string;
|
|
4913
|
+
value: string & unknown;
|
|
4964
4914
|
};
|
|
4965
4915
|
invoice_line_sections?: Array<{
|
|
4966
4916
|
/**
|
|
@@ -5025,10 +4975,7 @@ type QuotesPostRequest = {
|
|
|
5025
4975
|
*
|
|
5026
4976
|
*/
|
|
5027
4977
|
type: 'absolute' | 'relative';
|
|
5028
|
-
|
|
5029
|
-
* Discount value on the total amount before tax of the line
|
|
5030
|
-
*/
|
|
5031
|
-
value: string;
|
|
4978
|
+
value: string & unknown;
|
|
5032
4979
|
};
|
|
5033
4980
|
} | {
|
|
5034
4981
|
/**
|
|
@@ -5071,10 +5018,7 @@ type QuotesPostRequest = {
|
|
|
5071
5018
|
*
|
|
5072
5019
|
*/
|
|
5073
5020
|
type: 'absolute' | 'relative';
|
|
5074
|
-
|
|
5075
|
-
* Discount value on the total amount before tax of the line
|
|
5076
|
-
*/
|
|
5077
|
-
value: string;
|
|
5021
|
+
value: string & unknown;
|
|
5078
5022
|
};
|
|
5079
5023
|
}>;
|
|
5080
5024
|
};
|
|
@@ -5123,10 +5067,7 @@ type QuotesPutRequest = {
|
|
|
5123
5067
|
*
|
|
5124
5068
|
*/
|
|
5125
5069
|
type: 'absolute' | 'relative';
|
|
5126
|
-
|
|
5127
|
-
* Discount value on the total amount before tax of the line
|
|
5128
|
-
*/
|
|
5129
|
-
value: string;
|
|
5070
|
+
value: string & unknown;
|
|
5130
5071
|
};
|
|
5131
5072
|
/**
|
|
5132
5073
|
* 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.
|
|
@@ -5181,10 +5122,7 @@ type QuotesPutRequest = {
|
|
|
5181
5122
|
*
|
|
5182
5123
|
*/
|
|
5183
5124
|
type: 'absolute' | 'relative';
|
|
5184
|
-
|
|
5185
|
-
* Discount value on the total amount before tax of the line
|
|
5186
|
-
*/
|
|
5187
|
-
value: string;
|
|
5125
|
+
value: string & unknown;
|
|
5188
5126
|
};
|
|
5189
5127
|
} | {
|
|
5190
5128
|
/**
|
|
@@ -5227,10 +5165,7 @@ type QuotesPutRequest = {
|
|
|
5227
5165
|
*
|
|
5228
5166
|
*/
|
|
5229
5167
|
type: 'absolute' | 'relative';
|
|
5230
|
-
|
|
5231
|
-
* Discount value on the total amount before tax of the line
|
|
5232
|
-
*/
|
|
5233
|
-
value: string;
|
|
5168
|
+
value: string & unknown;
|
|
5234
5169
|
};
|
|
5235
5170
|
}>;
|
|
5236
5171
|
update?: Array<{
|
|
@@ -7718,14 +7653,8 @@ type PostLedgerEntriesData = {
|
|
|
7718
7653
|
*
|
|
7719
7654
|
*/
|
|
7720
7655
|
ledger_entry_lines: Array<{
|
|
7721
|
-
|
|
7722
|
-
|
|
7723
|
-
*/
|
|
7724
|
-
debit: string;
|
|
7725
|
-
/**
|
|
7726
|
-
* Credit amount for the entry line
|
|
7727
|
-
*/
|
|
7728
|
-
credit: string;
|
|
7656
|
+
debit: string & unknown;
|
|
7657
|
+
credit: string & unknown;
|
|
7729
7658
|
/**
|
|
7730
7659
|
* Ledger account ID
|
|
7731
7660
|
*/
|
|
@@ -8154,14 +8083,8 @@ type PutLedgerEntriesData = {
|
|
|
8154
8083
|
*/
|
|
8155
8084
|
ledger_entry_lines?: {
|
|
8156
8085
|
create?: Array<{
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
*/
|
|
8160
|
-
debit: string;
|
|
8161
|
-
/**
|
|
8162
|
-
* Credit amount for the entry line
|
|
8163
|
-
*/
|
|
8164
|
-
credit: string;
|
|
8086
|
+
debit: string & unknown;
|
|
8087
|
+
credit: string & unknown;
|
|
8165
8088
|
/**
|
|
8166
8089
|
* Ledger account ID
|
|
8167
8090
|
*/
|
|
@@ -8176,14 +8099,8 @@ type PutLedgerEntriesData = {
|
|
|
8176
8099
|
* ID of the entry line
|
|
8177
8100
|
*/
|
|
8178
8101
|
id: number;
|
|
8179
|
-
|
|
8180
|
-
|
|
8181
|
-
*/
|
|
8182
|
-
debit?: string;
|
|
8183
|
-
/**
|
|
8184
|
-
* Credit amount for the entry line
|
|
8185
|
-
*/
|
|
8186
|
-
credit?: string;
|
|
8102
|
+
debit?: string & unknown;
|
|
8103
|
+
credit?: string & unknown;
|
|
8187
8104
|
/**
|
|
8188
8105
|
* Ledger account ID
|
|
8189
8106
|
*/
|
|
@@ -10036,10 +9953,7 @@ type GetCustomerInvoicesResponses = {
|
|
|
10036
9953
|
*
|
|
10037
9954
|
*/
|
|
10038
9955
|
type: 'absolute' | 'relative';
|
|
10039
|
-
|
|
10040
|
-
* Discount value on the total amount before tax of the line
|
|
10041
|
-
*/
|
|
10042
|
-
value: string;
|
|
9956
|
+
value: string & unknown;
|
|
10043
9957
|
};
|
|
10044
9958
|
ledger_entry: {
|
|
10045
9959
|
/**
|
|
@@ -10439,10 +10353,7 @@ type PostCustomerInvoicesData = {
|
|
|
10439
10353
|
*
|
|
10440
10354
|
*/
|
|
10441
10355
|
type: 'absolute' | 'relative';
|
|
10442
|
-
|
|
10443
|
-
* Discount value on the total amount before tax of the line
|
|
10444
|
-
*/
|
|
10445
|
-
value: string;
|
|
10356
|
+
value: string & unknown;
|
|
10446
10357
|
};
|
|
10447
10358
|
/**
|
|
10448
10359
|
* The description of the invoice line
|
|
@@ -10485,10 +10396,7 @@ type PostCustomerInvoicesData = {
|
|
|
10485
10396
|
*
|
|
10486
10397
|
*/
|
|
10487
10398
|
type: 'absolute' | 'relative';
|
|
10488
|
-
|
|
10489
|
-
* Discount value on the total amount before tax of the line
|
|
10490
|
-
*/
|
|
10491
|
-
value: string;
|
|
10399
|
+
value: string & unknown;
|
|
10492
10400
|
};
|
|
10493
10401
|
/**
|
|
10494
10402
|
* The description of the invoice line
|
|
@@ -10630,10 +10538,7 @@ type PostCustomerInvoicesData = {
|
|
|
10630
10538
|
*
|
|
10631
10539
|
*/
|
|
10632
10540
|
type: 'absolute' | 'relative';
|
|
10633
|
-
|
|
10634
|
-
* Discount value on the total amount before tax of the line
|
|
10635
|
-
*/
|
|
10636
|
-
value: string;
|
|
10541
|
+
value: string & unknown;
|
|
10637
10542
|
};
|
|
10638
10543
|
/**
|
|
10639
10544
|
* The description of the invoice line
|
|
@@ -10686,10 +10591,7 @@ type PostCustomerInvoicesData = {
|
|
|
10686
10591
|
*
|
|
10687
10592
|
*/
|
|
10688
10593
|
type: 'absolute' | 'relative';
|
|
10689
|
-
|
|
10690
|
-
* Discount value on the total amount before tax of the line
|
|
10691
|
-
*/
|
|
10692
|
-
value: string;
|
|
10594
|
+
value: string & unknown;
|
|
10693
10595
|
};
|
|
10694
10596
|
/**
|
|
10695
10597
|
* The description of the invoice line
|
|
@@ -10851,10 +10753,7 @@ type PostCustomerInvoicesResponses = {
|
|
|
10851
10753
|
*
|
|
10852
10754
|
*/
|
|
10853
10755
|
type: 'absolute' | 'relative';
|
|
10854
|
-
|
|
10855
|
-
* Discount value on the total amount before tax of the line
|
|
10856
|
-
*/
|
|
10857
|
-
value: string;
|
|
10756
|
+
value: string & unknown;
|
|
10858
10757
|
};
|
|
10859
10758
|
ledger_entry: {
|
|
10860
10759
|
/**
|
|
@@ -11033,26 +10932,11 @@ type ImportCustomerInvoicesData = {
|
|
|
11033
10932
|
*/
|
|
11034
10933
|
invoice_number?: string;
|
|
11035
10934
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
11036
|
-
|
|
11037
|
-
|
|
11038
|
-
|
|
11039
|
-
|
|
11040
|
-
|
|
11041
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
11042
|
-
*/
|
|
11043
|
-
currency_amount: string;
|
|
11044
|
-
/**
|
|
11045
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
11046
|
-
*/
|
|
11047
|
-
amount?: string;
|
|
11048
|
-
/**
|
|
11049
|
-
* Invoice taxable amount (in invoice currency)
|
|
11050
|
-
*/
|
|
11051
|
-
currency_tax: string;
|
|
11052
|
-
/**
|
|
11053
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
11054
|
-
*/
|
|
11055
|
-
tax?: string;
|
|
10935
|
+
currency_amount_before_tax: string & unknown;
|
|
10936
|
+
currency_amount: string & unknown;
|
|
10937
|
+
amount?: string & unknown;
|
|
10938
|
+
currency_tax: string & unknown;
|
|
10939
|
+
tax?: string & unknown;
|
|
11056
10940
|
/**
|
|
11057
10941
|
* Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
|
|
11058
10942
|
*/
|
|
@@ -11075,22 +10959,10 @@ type ImportCustomerInvoicesData = {
|
|
|
11075
10959
|
provider_field_value: string;
|
|
11076
10960
|
};
|
|
11077
10961
|
invoice_lines: Array<{
|
|
11078
|
-
|
|
11079
|
-
|
|
11080
|
-
|
|
11081
|
-
|
|
11082
|
-
/**
|
|
11083
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
11084
|
-
*/
|
|
11085
|
-
amount?: string;
|
|
11086
|
-
/**
|
|
11087
|
-
* Invoice line taxable amount (in invoice currency)
|
|
11088
|
-
*/
|
|
11089
|
-
currency_tax: string;
|
|
11090
|
-
/**
|
|
11091
|
-
* Invoice line taxable amount (in euros). If the currency is euro, currency_tax and tax are identical.
|
|
11092
|
-
*/
|
|
11093
|
-
tax?: string;
|
|
10962
|
+
currency_amount: string & unknown;
|
|
10963
|
+
amount?: string & unknown;
|
|
10964
|
+
currency_tax: string & unknown;
|
|
10965
|
+
tax?: string & unknown;
|
|
11094
10966
|
/**
|
|
11095
10967
|
* Line item label.
|
|
11096
10968
|
*
|
|
@@ -11308,10 +11180,7 @@ type ImportCustomerInvoicesResponses = {
|
|
|
11308
11180
|
*
|
|
11309
11181
|
*/
|
|
11310
11182
|
type: 'absolute' | 'relative';
|
|
11311
|
-
|
|
11312
|
-
* Discount value on the total amount before tax of the line
|
|
11313
|
-
*/
|
|
11314
|
-
value: string;
|
|
11183
|
+
value: string & unknown;
|
|
11315
11184
|
};
|
|
11316
11185
|
ledger_entry: {
|
|
11317
11186
|
/**
|
|
@@ -11735,10 +11604,7 @@ type CreateCustomerInvoiceFromQuoteResponses = {
|
|
|
11735
11604
|
*
|
|
11736
11605
|
*/
|
|
11737
11606
|
type: 'absolute' | 'relative';
|
|
11738
|
-
|
|
11739
|
-
* Discount value on the total amount before tax of the line
|
|
11740
|
-
*/
|
|
11741
|
-
value: string;
|
|
11607
|
+
value: string & unknown;
|
|
11742
11608
|
};
|
|
11743
11609
|
ledger_entry: {
|
|
11744
11610
|
/**
|
|
@@ -12261,10 +12127,7 @@ type PostBillingSubscriptionsData = {
|
|
|
12261
12127
|
*
|
|
12262
12128
|
*/
|
|
12263
12129
|
type: 'absolute' | 'relative';
|
|
12264
|
-
|
|
12265
|
-
* Discount value on the total amount before tax
|
|
12266
|
-
*/
|
|
12267
|
-
value: string;
|
|
12130
|
+
value: string & unknown;
|
|
12268
12131
|
};
|
|
12269
12132
|
invoice_line_sections?: Array<{
|
|
12270
12133
|
/**
|
|
@@ -12906,10 +12769,7 @@ type PutBillingSubscriptionsData = {
|
|
|
12906
12769
|
*
|
|
12907
12770
|
*/
|
|
12908
12771
|
type: 'absolute' | 'relative';
|
|
12909
|
-
|
|
12910
|
-
* Discount value on the total amount before tax
|
|
12911
|
-
*/
|
|
12912
|
-
value: string;
|
|
12772
|
+
value: string & unknown;
|
|
12913
12773
|
};
|
|
12914
12774
|
/**
|
|
12915
12775
|
* Add, update, delete invoice line sections.
|
|
@@ -12995,10 +12855,7 @@ type PutBillingSubscriptionsData = {
|
|
|
12995
12855
|
*
|
|
12996
12856
|
*/
|
|
12997
12857
|
type: 'absolute' | 'relative';
|
|
12998
|
-
|
|
12999
|
-
* Discount value on the total amount before tax of the line
|
|
13000
|
-
*/
|
|
13001
|
-
value: string;
|
|
12858
|
+
value: string & unknown;
|
|
13002
12859
|
};
|
|
13003
12860
|
/**
|
|
13004
12861
|
* The ledger account ID
|
|
@@ -13050,10 +12907,7 @@ type PutBillingSubscriptionsData = {
|
|
|
13050
12907
|
*
|
|
13051
12908
|
*/
|
|
13052
12909
|
type: 'absolute' | 'relative';
|
|
13053
|
-
|
|
13054
|
-
* Discount value on the total amount before tax of the line
|
|
13055
|
-
*/
|
|
13056
|
-
value: string;
|
|
12910
|
+
value: string & unknown;
|
|
13057
12911
|
};
|
|
13058
12912
|
/**
|
|
13059
12913
|
* The ledger account ID
|
|
@@ -13885,10 +13739,7 @@ type PostProductsData = {
|
|
|
13885
13739
|
* You can use your own unique value when creating the product. If not provided, Pennylane will pick one for you. Value must be unique
|
|
13886
13740
|
*/
|
|
13887
13741
|
external_reference?: string;
|
|
13888
|
-
|
|
13889
|
-
* Product price without taxes
|
|
13890
|
-
*/
|
|
13891
|
-
price_before_tax: string;
|
|
13742
|
+
price_before_tax: string & unknown;
|
|
13892
13743
|
/**
|
|
13893
13744
|
* Product VAT rate. A 20% VAT in France is FR_200.
|
|
13894
13745
|
*/
|
|
@@ -14135,7 +13986,7 @@ type PutProductData = {
|
|
|
14135
13986
|
* The unique external reference assigned to this Product, assigned on creation either by you or Pennylane.
|
|
14136
13987
|
*/
|
|
14137
13988
|
external_reference?: string;
|
|
14138
|
-
price_before_tax?: string;
|
|
13989
|
+
price_before_tax?: string & unknown;
|
|
14139
13990
|
/**
|
|
14140
13991
|
* Product VAT rate. A 20% VAT in France is FR_200.
|
|
14141
13992
|
*/
|
|
@@ -18831,10 +18682,7 @@ type GetCustomerInvoiceResponses = {
|
|
|
18831
18682
|
*
|
|
18832
18683
|
*/
|
|
18833
18684
|
type: 'absolute' | 'relative';
|
|
18834
|
-
|
|
18835
|
-
* Discount value on the total amount before tax of the line
|
|
18836
|
-
*/
|
|
18837
|
-
value: string;
|
|
18685
|
+
value: string & unknown;
|
|
18838
18686
|
};
|
|
18839
18687
|
ledger_entry: {
|
|
18840
18688
|
/**
|
|
@@ -19032,10 +18880,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19032
18880
|
*
|
|
19033
18881
|
*/
|
|
19034
18882
|
type: 'absolute' | 'relative';
|
|
19035
|
-
|
|
19036
|
-
* Discount value on the total amount before tax of the line
|
|
19037
|
-
*/
|
|
19038
|
-
value: string | null;
|
|
18883
|
+
value: (string & unknown) | null;
|
|
19039
18884
|
};
|
|
19040
18885
|
/**
|
|
19041
18886
|
* 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.
|
|
@@ -19086,10 +18931,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19086
18931
|
*
|
|
19087
18932
|
*/
|
|
19088
18933
|
type: 'absolute' | 'relative';
|
|
19089
|
-
|
|
19090
|
-
* Discount value on the total amount before tax of the line
|
|
19091
|
-
*/
|
|
19092
|
-
value: string;
|
|
18934
|
+
value: string & unknown;
|
|
19093
18935
|
};
|
|
19094
18936
|
/**
|
|
19095
18937
|
* The description of the invoice line
|
|
@@ -19132,10 +18974,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19132
18974
|
*
|
|
19133
18975
|
*/
|
|
19134
18976
|
type: 'absolute' | 'relative';
|
|
19135
|
-
|
|
19136
|
-
* Discount value on the total amount before tax of the line
|
|
19137
|
-
*/
|
|
19138
|
-
value: string;
|
|
18977
|
+
value: string & unknown;
|
|
19139
18978
|
};
|
|
19140
18979
|
/**
|
|
19141
18980
|
* The description of the invoice line
|
|
@@ -19187,10 +19026,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19187
19026
|
*
|
|
19188
19027
|
*/
|
|
19189
19028
|
type: 'absolute' | 'relative';
|
|
19190
|
-
|
|
19191
|
-
* Discount value on the total amount before tax of the line
|
|
19192
|
-
*/
|
|
19193
|
-
value: string;
|
|
19029
|
+
value: string & unknown;
|
|
19194
19030
|
};
|
|
19195
19031
|
/**
|
|
19196
19032
|
* Has to correspond to the rank number of an invoice line section in which the invoice line should be
|
|
@@ -19415,10 +19251,7 @@ type UpdateCustomerInvoiceResponses = {
|
|
|
19415
19251
|
*
|
|
19416
19252
|
*/
|
|
19417
19253
|
type: 'absolute' | 'relative';
|
|
19418
|
-
|
|
19419
|
-
* Discount value on the total amount before tax of the line
|
|
19420
|
-
*/
|
|
19421
|
-
value: string;
|
|
19254
|
+
value: string & unknown;
|
|
19422
19255
|
};
|
|
19423
19256
|
ledger_entry: {
|
|
19424
19257
|
/**
|
|
@@ -19943,26 +19776,11 @@ type UpdateImportedCustomerInvoiceData = {
|
|
|
19943
19776
|
*/
|
|
19944
19777
|
invoice_number?: string;
|
|
19945
19778
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
19946
|
-
|
|
19947
|
-
|
|
19948
|
-
|
|
19949
|
-
|
|
19950
|
-
|
|
19951
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
19952
|
-
*/
|
|
19953
|
-
currency_amount?: string;
|
|
19954
|
-
/**
|
|
19955
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
19956
|
-
*/
|
|
19957
|
-
amount?: string;
|
|
19958
|
-
/**
|
|
19959
|
-
* Invoice taxable amount (in invoice currency)
|
|
19960
|
-
*/
|
|
19961
|
-
currency_tax?: string;
|
|
19962
|
-
/**
|
|
19963
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
19964
|
-
*/
|
|
19965
|
-
tax?: string;
|
|
19779
|
+
currency_amount_before_tax?: string & unknown;
|
|
19780
|
+
currency_amount?: string & unknown;
|
|
19781
|
+
amount?: string & unknown;
|
|
19782
|
+
currency_tax?: string & unknown;
|
|
19783
|
+
tax?: string & unknown;
|
|
19966
19784
|
/**
|
|
19967
19785
|
* Schema for creating/updating a transaction reference
|
|
19968
19786
|
*/
|
|
@@ -19985,22 +19803,10 @@ type UpdateImportedCustomerInvoiceData = {
|
|
|
19985
19803
|
*/
|
|
19986
19804
|
invoice_lines?: {
|
|
19987
19805
|
create?: Array<{
|
|
19988
|
-
|
|
19989
|
-
|
|
19990
|
-
|
|
19991
|
-
|
|
19992
|
-
/**
|
|
19993
|
-
* Invoice line amount in euros.
|
|
19994
|
-
*/
|
|
19995
|
-
amount?: string;
|
|
19996
|
-
/**
|
|
19997
|
-
* Invoice line taxable amount (in invoice currency)
|
|
19998
|
-
*/
|
|
19999
|
-
currency_tax: string;
|
|
20000
|
-
/**
|
|
20001
|
-
* Invoice line taxable amount (in euros). If the currency is euro, currency_tax and tax are identical.
|
|
20002
|
-
*/
|
|
20003
|
-
tax?: string;
|
|
19806
|
+
currency_amount: string & unknown;
|
|
19807
|
+
amount?: string & unknown;
|
|
19808
|
+
currency_tax: string & unknown;
|
|
19809
|
+
tax?: string & unknown;
|
|
20004
19810
|
/**
|
|
20005
19811
|
* Line item label.
|
|
20006
19812
|
*
|
|
@@ -20067,22 +19873,10 @@ type UpdateImportedCustomerInvoiceData = {
|
|
|
20067
19873
|
* ID of the invoice line
|
|
20068
19874
|
*/
|
|
20069
19875
|
id: number;
|
|
20070
|
-
|
|
20071
|
-
|
|
20072
|
-
|
|
20073
|
-
|
|
20074
|
-
/**
|
|
20075
|
-
* Invoice line amount in euros.
|
|
20076
|
-
*/
|
|
20077
|
-
amount?: string;
|
|
20078
|
-
/**
|
|
20079
|
-
* Invoice line taxable amount (in invoice currency)
|
|
20080
|
-
*/
|
|
20081
|
-
currency_tax?: string;
|
|
20082
|
-
/**
|
|
20083
|
-
* Invoice line taxable amount (in euros). If the currency is euro, currency_tax and tax are identical.
|
|
20084
|
-
*/
|
|
20085
|
-
tax?: string;
|
|
19876
|
+
currency_amount?: string & unknown;
|
|
19877
|
+
amount?: string & unknown;
|
|
19878
|
+
currency_tax?: string & unknown;
|
|
19879
|
+
tax?: string & unknown;
|
|
20086
19880
|
/**
|
|
20087
19881
|
* Line item label.
|
|
20088
19882
|
*
|
|
@@ -20311,10 +20105,7 @@ type UpdateImportedCustomerInvoiceResponses = {
|
|
|
20311
20105
|
*
|
|
20312
20106
|
*/
|
|
20313
20107
|
type: 'absolute' | 'relative';
|
|
20314
|
-
|
|
20315
|
-
* Discount value on the total amount before tax of the line
|
|
20316
|
-
*/
|
|
20317
|
-
value: string;
|
|
20108
|
+
value: string & unknown;
|
|
20318
20109
|
};
|
|
20319
20110
|
ledger_entry: {
|
|
20320
20111
|
/**
|
|
@@ -20617,10 +20408,7 @@ type FinalizeCustomerInvoiceResponses = {
|
|
|
20617
20408
|
*
|
|
20618
20409
|
*/
|
|
20619
20410
|
type: 'absolute' | 'relative';
|
|
20620
|
-
|
|
20621
|
-
* Discount value on the total amount before tax of the line
|
|
20622
|
-
*/
|
|
20623
|
-
value: string;
|
|
20411
|
+
value: string & unknown;
|
|
20624
20412
|
};
|
|
20625
20413
|
ledger_entry: {
|
|
20626
20414
|
/**
|
|
@@ -20928,10 +20716,7 @@ type LinkCreditNoteResponses = {
|
|
|
20928
20716
|
*
|
|
20929
20717
|
*/
|
|
20930
20718
|
type: 'absolute' | 'relative';
|
|
20931
|
-
|
|
20932
|
-
* Discount value on the total amount before tax of the line
|
|
20933
|
-
*/
|
|
20934
|
-
value: string;
|
|
20719
|
+
value: string & unknown;
|
|
20935
20720
|
};
|
|
20936
20721
|
ledger_entry: {
|
|
20937
20722
|
/**
|
|
@@ -21786,26 +21571,11 @@ type PutSupplierInvoiceData = {
|
|
|
21786
21571
|
*/
|
|
21787
21572
|
label?: string | null;
|
|
21788
21573
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
21789
|
-
|
|
21790
|
-
|
|
21791
|
-
|
|
21792
|
-
|
|
21793
|
-
|
|
21794
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
21795
|
-
*/
|
|
21796
|
-
currency_amount?: string;
|
|
21797
|
-
/**
|
|
21798
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
21799
|
-
*/
|
|
21800
|
-
amount?: string;
|
|
21801
|
-
/**
|
|
21802
|
-
* Invoice taxable amount (in invoice currency)
|
|
21803
|
-
*/
|
|
21804
|
-
currency_tax?: string;
|
|
21805
|
-
/**
|
|
21806
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
21807
|
-
*/
|
|
21808
|
-
tax?: string;
|
|
21574
|
+
currency_amount_before_tax?: string & unknown;
|
|
21575
|
+
currency_amount?: string & unknown;
|
|
21576
|
+
amount?: string & unknown;
|
|
21577
|
+
currency_tax?: string & unknown;
|
|
21578
|
+
tax?: string & unknown;
|
|
21809
21579
|
/**
|
|
21810
21580
|
* By adding this field you can automatically reconcile the newly imported invoice with a transaction. See documentation about [automatic payment matching](https://pennylane.readme.io/v2.0/docs/automating-payment-matching).
|
|
21811
21581
|
*/
|
|
@@ -21836,22 +21606,10 @@ type PutSupplierInvoiceData = {
|
|
|
21836
21606
|
* Invoice line description
|
|
21837
21607
|
*/
|
|
21838
21608
|
description?: string;
|
|
21839
|
-
|
|
21840
|
-
|
|
21841
|
-
|
|
21842
|
-
|
|
21843
|
-
/**
|
|
21844
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
21845
|
-
*/
|
|
21846
|
-
amount?: string;
|
|
21847
|
-
/**
|
|
21848
|
-
* Invoice line taxable amount (in invoice currency)
|
|
21849
|
-
*/
|
|
21850
|
-
currency_tax: string;
|
|
21851
|
-
/**
|
|
21852
|
-
* Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
21853
|
-
*/
|
|
21854
|
-
tax?: string;
|
|
21609
|
+
currency_amount: string & unknown;
|
|
21610
|
+
amount?: string & unknown;
|
|
21611
|
+
currency_tax: string & unknown;
|
|
21612
|
+
tax?: string & unknown;
|
|
21855
21613
|
/**
|
|
21856
21614
|
* The ledger account ID
|
|
21857
21615
|
*/
|
|
@@ -21892,22 +21650,10 @@ type PutSupplierInvoiceData = {
|
|
|
21892
21650
|
* Invoice line description
|
|
21893
21651
|
*/
|
|
21894
21652
|
description?: string;
|
|
21895
|
-
|
|
21896
|
-
|
|
21897
|
-
|
|
21898
|
-
|
|
21899
|
-
/**
|
|
21900
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
21901
|
-
*/
|
|
21902
|
-
amount?: string;
|
|
21903
|
-
/**
|
|
21904
|
-
* Invoice line taxable amount (in invoice currency)
|
|
21905
|
-
*/
|
|
21906
|
-
currency_tax?: string;
|
|
21907
|
-
/**
|
|
21908
|
-
* Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
21909
|
-
*/
|
|
21910
|
-
tax?: string;
|
|
21653
|
+
currency_amount?: string & unknown;
|
|
21654
|
+
amount?: string & unknown;
|
|
21655
|
+
currency_tax?: string & unknown;
|
|
21656
|
+
tax?: string & unknown;
|
|
21911
21657
|
/**
|
|
21912
21658
|
* The ledger account ID
|
|
21913
21659
|
*/
|
|
@@ -22978,26 +22724,11 @@ type ImportSupplierInvoiceData = {
|
|
|
22978
22724
|
*/
|
|
22979
22725
|
invoice_number?: string;
|
|
22980
22726
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
22981
|
-
|
|
22982
|
-
|
|
22983
|
-
|
|
22984
|
-
|
|
22985
|
-
|
|
22986
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
22987
|
-
*/
|
|
22988
|
-
currency_amount: string;
|
|
22989
|
-
/**
|
|
22990
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
22991
|
-
*/
|
|
22992
|
-
amount?: string;
|
|
22993
|
-
/**
|
|
22994
|
-
* Invoice taxable amount (in invoice currency)
|
|
22995
|
-
*/
|
|
22996
|
-
currency_tax: string;
|
|
22997
|
-
/**
|
|
22998
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
22999
|
-
*/
|
|
23000
|
-
tax?: string;
|
|
22727
|
+
currency_amount_before_tax: string & unknown;
|
|
22728
|
+
currency_amount: string & unknown;
|
|
22729
|
+
amount?: string & unknown;
|
|
22730
|
+
currency_tax: string & unknown;
|
|
22731
|
+
tax?: string & unknown;
|
|
23001
22732
|
/**
|
|
23002
22733
|
* Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
|
|
23003
22734
|
*/
|
|
@@ -23038,22 +22769,10 @@ type ImportSupplierInvoiceData = {
|
|
|
23038
22769
|
* @deprecated
|
|
23039
22770
|
*/
|
|
23040
22771
|
description?: string;
|
|
23041
|
-
|
|
23042
|
-
|
|
23043
|
-
|
|
23044
|
-
|
|
23045
|
-
/**
|
|
23046
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
23047
|
-
*/
|
|
23048
|
-
amount?: string;
|
|
23049
|
-
/**
|
|
23050
|
-
* Invoice line taxable amount (in invoice currency)
|
|
23051
|
-
*/
|
|
23052
|
-
currency_tax: string;
|
|
23053
|
-
/**
|
|
23054
|
-
* Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
23055
|
-
*/
|
|
23056
|
-
tax?: string;
|
|
22772
|
+
currency_amount: string & unknown;
|
|
22773
|
+
amount?: string & unknown;
|
|
22774
|
+
currency_tax: string & unknown;
|
|
22775
|
+
tax?: string & unknown;
|
|
23057
22776
|
/**
|
|
23058
22777
|
* The ledger account ID
|
|
23059
22778
|
*/
|
|
@@ -27420,10 +27139,7 @@ type ListQuotesResponses = {
|
|
|
27420
27139
|
*
|
|
27421
27140
|
*/
|
|
27422
27141
|
type: 'absolute' | 'relative';
|
|
27423
|
-
|
|
27424
|
-
* Discount value on the total amount before tax of the line
|
|
27425
|
-
*/
|
|
27426
|
-
value: string;
|
|
27142
|
+
value: string & unknown;
|
|
27427
27143
|
};
|
|
27428
27144
|
/**
|
|
27429
27145
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -27544,10 +27260,7 @@ type PostQuotesData = {
|
|
|
27544
27260
|
*
|
|
27545
27261
|
*/
|
|
27546
27262
|
type: 'absolute' | 'relative';
|
|
27547
|
-
|
|
27548
|
-
* Discount value on the total amount before tax of the quote
|
|
27549
|
-
*/
|
|
27550
|
-
value: string;
|
|
27263
|
+
value: string & unknown;
|
|
27551
27264
|
};
|
|
27552
27265
|
invoice_line_sections?: Array<{
|
|
27553
27266
|
/**
|
|
@@ -27612,10 +27325,7 @@ type PostQuotesData = {
|
|
|
27612
27325
|
*
|
|
27613
27326
|
*/
|
|
27614
27327
|
type: 'absolute' | 'relative';
|
|
27615
|
-
|
|
27616
|
-
* Discount value on the total amount before tax of the line
|
|
27617
|
-
*/
|
|
27618
|
-
value: string;
|
|
27328
|
+
value: string & unknown;
|
|
27619
27329
|
};
|
|
27620
27330
|
} | {
|
|
27621
27331
|
/**
|
|
@@ -27658,10 +27368,7 @@ type PostQuotesData = {
|
|
|
27658
27368
|
*
|
|
27659
27369
|
*/
|
|
27660
27370
|
type: 'absolute' | 'relative';
|
|
27661
|
-
|
|
27662
|
-
* Discount value on the total amount before tax of the line
|
|
27663
|
-
*/
|
|
27664
|
-
value: string;
|
|
27371
|
+
value: string & unknown;
|
|
27665
27372
|
};
|
|
27666
27373
|
}>;
|
|
27667
27374
|
};
|
|
@@ -27790,10 +27497,7 @@ type PostQuotesResponses = {
|
|
|
27790
27497
|
*
|
|
27791
27498
|
*/
|
|
27792
27499
|
type: 'absolute' | 'relative';
|
|
27793
|
-
|
|
27794
|
-
* Discount value on the total amount before tax of the line
|
|
27795
|
-
*/
|
|
27796
|
-
value: string;
|
|
27500
|
+
value: string & unknown;
|
|
27797
27501
|
};
|
|
27798
27502
|
/**
|
|
27799
27503
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -27985,10 +27689,7 @@ type GetQuoteResponses = {
|
|
|
27985
27689
|
*
|
|
27986
27690
|
*/
|
|
27987
27691
|
type: 'absolute' | 'relative';
|
|
27988
|
-
|
|
27989
|
-
* Discount value on the total amount before tax of the line
|
|
27990
|
-
*/
|
|
27991
|
-
value: string;
|
|
27692
|
+
value: string & unknown;
|
|
27992
27693
|
};
|
|
27993
27694
|
/**
|
|
27994
27695
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -28104,10 +27805,7 @@ type UpdateQuoteData = {
|
|
|
28104
27805
|
*
|
|
28105
27806
|
*/
|
|
28106
27807
|
type: 'absolute' | 'relative';
|
|
28107
|
-
|
|
28108
|
-
* Discount value on the total amount before tax of the line
|
|
28109
|
-
*/
|
|
28110
|
-
value: string;
|
|
27808
|
+
value: string & unknown;
|
|
28111
27809
|
};
|
|
28112
27810
|
/**
|
|
28113
27811
|
* 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.
|
|
@@ -28162,10 +27860,7 @@ type UpdateQuoteData = {
|
|
|
28162
27860
|
*
|
|
28163
27861
|
*/
|
|
28164
27862
|
type: 'absolute' | 'relative';
|
|
28165
|
-
|
|
28166
|
-
* Discount value on the total amount before tax of the line
|
|
28167
|
-
*/
|
|
28168
|
-
value: string;
|
|
27863
|
+
value: string & unknown;
|
|
28169
27864
|
};
|
|
28170
27865
|
} | {
|
|
28171
27866
|
/**
|
|
@@ -28208,10 +27903,7 @@ type UpdateQuoteData = {
|
|
|
28208
27903
|
*
|
|
28209
27904
|
*/
|
|
28210
27905
|
type: 'absolute' | 'relative';
|
|
28211
|
-
|
|
28212
|
-
* Discount value on the total amount before tax of the line
|
|
28213
|
-
*/
|
|
28214
|
-
value: string;
|
|
27906
|
+
value: string & unknown;
|
|
28215
27907
|
};
|
|
28216
27908
|
}>;
|
|
28217
27909
|
update?: Array<{
|
|
@@ -28408,10 +28100,7 @@ type UpdateQuoteResponses = {
|
|
|
28408
28100
|
*
|
|
28409
28101
|
*/
|
|
28410
28102
|
type: 'absolute' | 'relative';
|
|
28411
|
-
|
|
28412
|
-
* Discount value on the total amount before tax of the line
|
|
28413
|
-
*/
|
|
28414
|
-
value: string;
|
|
28103
|
+
value: string & unknown;
|
|
28415
28104
|
};
|
|
28416
28105
|
/**
|
|
28417
28106
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -29205,10 +28894,7 @@ type UpdateStatusQuoteResponses = {
|
|
|
29205
28894
|
*
|
|
29206
28895
|
*/
|
|
29207
28896
|
type: 'absolute' | 'relative';
|
|
29208
|
-
|
|
29209
|
-
* Discount value on the total amount before tax of the line
|
|
29210
|
-
*/
|
|
29211
|
-
value: string;
|
|
28897
|
+
value: string & unknown;
|
|
29212
28898
|
};
|
|
29213
28899
|
/**
|
|
29214
28900
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -33086,6 +32772,11 @@ declare const CurrencySchema: {
|
|
|
33086
32772
|
readonly type: "string";
|
|
33087
32773
|
readonly enum: readonly ["EUR", "USD", "GBP", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYN", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CLF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MRU", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SLE", "SOS", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZMW", "ZWL"];
|
|
33088
32774
|
};
|
|
32775
|
+
declare const DecimalStringSchema: {
|
|
32776
|
+
readonly type: "string";
|
|
32777
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
32778
|
+
readonly example: "100.00";
|
|
32779
|
+
};
|
|
33089
32780
|
declare const LedgerEntries__ResponseSchema: {
|
|
33090
32781
|
readonly type: "object";
|
|
33091
32782
|
readonly additionalProperties: false;
|
|
@@ -33781,7 +33472,7 @@ declare const LedgerEntryLines__Categories__ResponseSchema: {
|
|
|
33781
33472
|
};
|
|
33782
33473
|
readonly required: readonly ["id", "label", "weight", "category_group", "analytical_code", "created_at", "updated_at"];
|
|
33783
33474
|
};
|
|
33784
|
-
declare const
|
|
33475
|
+
declare const Currency_2Schema: {
|
|
33785
33476
|
readonly type: "string";
|
|
33786
33477
|
readonly default: "EUR";
|
|
33787
33478
|
readonly enum: readonly ["EUR", "USD", "GBP", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYN", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CLF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MRU", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SLE", "SOS", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZMW", "ZWL"];
|
|
@@ -33896,9 +33587,14 @@ declare const CustomerInvoices__ResponseSchema: {
|
|
|
33896
33587
|
readonly enum: readonly ["absolute", "relative"];
|
|
33897
33588
|
};
|
|
33898
33589
|
readonly value: {
|
|
33899
|
-
readonly
|
|
33900
|
-
|
|
33901
|
-
|
|
33590
|
+
readonly allOf: readonly [{
|
|
33591
|
+
readonly type: "string";
|
|
33592
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
33593
|
+
readonly example: "100.00";
|
|
33594
|
+
}, {
|
|
33595
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
33596
|
+
readonly example: "25";
|
|
33597
|
+
}];
|
|
33902
33598
|
};
|
|
33903
33599
|
};
|
|
33904
33600
|
readonly required: readonly ["type", "value"];
|
|
@@ -34294,7 +33990,7 @@ declare const CustomerInvoices__InvoiceLineSchema: {
|
|
|
34294
33990
|
readonly value: {
|
|
34295
33991
|
readonly description: "Discount value on the total amount before tax of the invoice";
|
|
34296
33992
|
readonly type: "string";
|
|
34297
|
-
readonly example: 25;
|
|
33993
|
+
readonly example: "25";
|
|
34298
33994
|
};
|
|
34299
33995
|
};
|
|
34300
33996
|
readonly required: readonly ["type", "value"];
|
|
@@ -34443,7 +34139,7 @@ declare const CustomerInvoices__IncludedInvoiceLinesCollectionSchema: {
|
|
|
34443
34139
|
readonly value: {
|
|
34444
34140
|
readonly description: "Discount value on the total amount before tax of the invoice";
|
|
34445
34141
|
readonly type: "string";
|
|
34446
|
-
readonly example: 25;
|
|
34142
|
+
readonly example: "25";
|
|
34447
34143
|
};
|
|
34448
34144
|
};
|
|
34449
34145
|
readonly required: readonly ["type", "value"];
|
|
@@ -34619,7 +34315,7 @@ declare const CustomerInvoices__InclusionsSchema: {
|
|
|
34619
34315
|
readonly value: {
|
|
34620
34316
|
readonly description: "Discount value on the total amount before tax of the invoice";
|
|
34621
34317
|
readonly type: "string";
|
|
34622
|
-
readonly example: 25;
|
|
34318
|
+
readonly example: "25";
|
|
34623
34319
|
};
|
|
34624
34320
|
};
|
|
34625
34321
|
readonly required: readonly ["type", "value"];
|
|
@@ -34743,9 +34439,14 @@ declare const CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema: {
|
|
|
34743
34439
|
readonly enum: readonly ["absolute", "relative"];
|
|
34744
34440
|
};
|
|
34745
34441
|
readonly value: {
|
|
34746
|
-
readonly
|
|
34747
|
-
|
|
34748
|
-
|
|
34442
|
+
readonly allOf: readonly [{
|
|
34443
|
+
readonly type: "string";
|
|
34444
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34445
|
+
readonly example: "100.00";
|
|
34446
|
+
}, {
|
|
34447
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34448
|
+
readonly example: "25";
|
|
34449
|
+
}];
|
|
34749
34450
|
};
|
|
34750
34451
|
};
|
|
34751
34452
|
readonly required: readonly ["type", "value"];
|
|
@@ -34811,9 +34512,14 @@ declare const CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema: {
|
|
|
34811
34512
|
readonly enum: readonly ["absolute", "relative"];
|
|
34812
34513
|
};
|
|
34813
34514
|
readonly value: {
|
|
34814
|
-
readonly
|
|
34815
|
-
|
|
34816
|
-
|
|
34515
|
+
readonly allOf: readonly [{
|
|
34516
|
+
readonly type: "string";
|
|
34517
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34518
|
+
readonly example: "100.00";
|
|
34519
|
+
}, {
|
|
34520
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34521
|
+
readonly example: "25";
|
|
34522
|
+
}];
|
|
34817
34523
|
};
|
|
34818
34524
|
};
|
|
34819
34525
|
readonly required: readonly ["type", "value"];
|
|
@@ -35011,9 +34717,14 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
|
|
|
35011
34717
|
readonly enum: readonly ["absolute", "relative"];
|
|
35012
34718
|
};
|
|
35013
34719
|
readonly value: {
|
|
35014
|
-
readonly
|
|
35015
|
-
|
|
35016
|
-
|
|
34720
|
+
readonly allOf: readonly [{
|
|
34721
|
+
readonly type: "string";
|
|
34722
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34723
|
+
readonly example: "100.00";
|
|
34724
|
+
}, {
|
|
34725
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34726
|
+
readonly example: "25";
|
|
34727
|
+
}];
|
|
35017
34728
|
};
|
|
35018
34729
|
};
|
|
35019
34730
|
readonly required: readonly ["type", "value"];
|
|
@@ -35078,9 +34789,14 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
|
|
|
35078
34789
|
readonly enum: readonly ["absolute", "relative"];
|
|
35079
34790
|
};
|
|
35080
34791
|
readonly value: {
|
|
35081
|
-
readonly
|
|
35082
|
-
|
|
35083
|
-
|
|
34792
|
+
readonly allOf: readonly [{
|
|
34793
|
+
readonly type: "string";
|
|
34794
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34795
|
+
readonly example: "100.00";
|
|
34796
|
+
}, {
|
|
34797
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34798
|
+
readonly example: "25";
|
|
34799
|
+
}];
|
|
35084
34800
|
};
|
|
35085
34801
|
};
|
|
35086
34802
|
readonly required: readonly ["type", "value"];
|
|
@@ -35158,9 +34874,14 @@ declare const CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema: {
|
|
|
35158
34874
|
readonly enum: readonly ["absolute", "relative"];
|
|
35159
34875
|
};
|
|
35160
34876
|
readonly value: {
|
|
35161
|
-
readonly
|
|
35162
|
-
|
|
35163
|
-
|
|
34877
|
+
readonly allOf: readonly [{
|
|
34878
|
+
readonly type: "string";
|
|
34879
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34880
|
+
readonly example: "100.00";
|
|
34881
|
+
}, {
|
|
34882
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34883
|
+
readonly example: "25";
|
|
34884
|
+
}];
|
|
35164
34885
|
};
|
|
35165
34886
|
};
|
|
35166
34887
|
readonly required: readonly ["type", "value"];
|
|
@@ -35246,9 +34967,14 @@ declare const CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema
|
|
|
35246
34967
|
readonly enum: readonly ["absolute", "relative"];
|
|
35247
34968
|
};
|
|
35248
34969
|
readonly value: {
|
|
35249
|
-
readonly
|
|
35250
|
-
|
|
35251
|
-
|
|
34970
|
+
readonly allOf: readonly [{
|
|
34971
|
+
readonly type: "string";
|
|
34972
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34973
|
+
readonly example: "100.00";
|
|
34974
|
+
}, {
|
|
34975
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34976
|
+
readonly example: "25";
|
|
34977
|
+
}];
|
|
35252
34978
|
};
|
|
35253
34979
|
};
|
|
35254
34980
|
readonly required: readonly ["type", "value"];
|
|
@@ -35490,9 +35216,14 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
|
|
|
35490
35216
|
readonly enum: readonly ["absolute", "relative"];
|
|
35491
35217
|
};
|
|
35492
35218
|
readonly value: {
|
|
35493
|
-
readonly
|
|
35494
|
-
|
|
35495
|
-
|
|
35219
|
+
readonly allOf: readonly [{
|
|
35220
|
+
readonly type: "string";
|
|
35221
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
35222
|
+
readonly example: "100.00";
|
|
35223
|
+
}, {
|
|
35224
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
35225
|
+
readonly example: "25";
|
|
35226
|
+
}];
|
|
35496
35227
|
};
|
|
35497
35228
|
};
|
|
35498
35229
|
readonly required: readonly ["type", "value"];
|
|
@@ -35577,9 +35308,14 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
|
|
|
35577
35308
|
readonly enum: readonly ["absolute", "relative"];
|
|
35578
35309
|
};
|
|
35579
35310
|
readonly value: {
|
|
35580
|
-
readonly
|
|
35581
|
-
|
|
35582
|
-
|
|
35311
|
+
readonly allOf: readonly [{
|
|
35312
|
+
readonly type: "string";
|
|
35313
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
35314
|
+
readonly example: "100.00";
|
|
35315
|
+
}, {
|
|
35316
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
35317
|
+
readonly example: "25";
|
|
35318
|
+
}];
|
|
35583
35319
|
};
|
|
35584
35320
|
};
|
|
35585
35321
|
readonly required: readonly ["type", "value"];
|
|
@@ -37520,10 +37256,20 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37520
37256
|
readonly enum: readonly ["absolute", "relative"];
|
|
37521
37257
|
};
|
|
37522
37258
|
readonly value: {
|
|
37523
|
-
readonly
|
|
37524
|
-
|
|
37525
|
-
|
|
37526
|
-
|
|
37259
|
+
readonly oneOf: readonly [{
|
|
37260
|
+
readonly allOf: readonly [{
|
|
37261
|
+
readonly type: "string";
|
|
37262
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37263
|
+
readonly example: "100.00";
|
|
37264
|
+
}, {
|
|
37265
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37266
|
+
readonly example: "25";
|
|
37267
|
+
}];
|
|
37268
|
+
}, {
|
|
37269
|
+
readonly type: "string";
|
|
37270
|
+
readonly nullable: true;
|
|
37271
|
+
readonly enum: readonly [null];
|
|
37272
|
+
}];
|
|
37527
37273
|
};
|
|
37528
37274
|
};
|
|
37529
37275
|
readonly required: readonly ["type", "value"];
|
|
@@ -37600,9 +37346,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37600
37346
|
readonly enum: readonly ["absolute", "relative"];
|
|
37601
37347
|
};
|
|
37602
37348
|
readonly value: {
|
|
37603
|
-
readonly
|
|
37604
|
-
|
|
37605
|
-
|
|
37349
|
+
readonly allOf: readonly [{
|
|
37350
|
+
readonly type: "string";
|
|
37351
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37352
|
+
readonly example: "100.00";
|
|
37353
|
+
}, {
|
|
37354
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37355
|
+
readonly example: "25";
|
|
37356
|
+
}];
|
|
37606
37357
|
};
|
|
37607
37358
|
};
|
|
37608
37359
|
readonly required: readonly ["type", "value"];
|
|
@@ -37667,9 +37418,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37667
37418
|
readonly enum: readonly ["absolute", "relative"];
|
|
37668
37419
|
};
|
|
37669
37420
|
readonly value: {
|
|
37670
|
-
readonly
|
|
37671
|
-
|
|
37672
|
-
|
|
37421
|
+
readonly allOf: readonly [{
|
|
37422
|
+
readonly type: "string";
|
|
37423
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37424
|
+
readonly example: "100.00";
|
|
37425
|
+
}, {
|
|
37426
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37427
|
+
readonly example: "25";
|
|
37428
|
+
}];
|
|
37673
37429
|
};
|
|
37674
37430
|
};
|
|
37675
37431
|
readonly required: readonly ["type", "value"];
|
|
@@ -37749,9 +37505,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37749
37505
|
readonly enum: readonly ["absolute", "relative"];
|
|
37750
37506
|
};
|
|
37751
37507
|
readonly value: {
|
|
37752
|
-
readonly
|
|
37753
|
-
|
|
37754
|
-
|
|
37508
|
+
readonly allOf: readonly [{
|
|
37509
|
+
readonly type: "string";
|
|
37510
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37511
|
+
readonly example: "100.00";
|
|
37512
|
+
}, {
|
|
37513
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37514
|
+
readonly example: "25";
|
|
37515
|
+
}];
|
|
37755
37516
|
};
|
|
37756
37517
|
};
|
|
37757
37518
|
readonly required: readonly ["type", "value"];
|
|
@@ -39496,9 +39257,14 @@ declare const Quotes__ResponseSchema: {
|
|
|
39496
39257
|
readonly enum: readonly ["absolute", "relative"];
|
|
39497
39258
|
};
|
|
39498
39259
|
readonly value: {
|
|
39499
|
-
readonly
|
|
39500
|
-
|
|
39501
|
-
|
|
39260
|
+
readonly allOf: readonly [{
|
|
39261
|
+
readonly type: "string";
|
|
39262
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39263
|
+
readonly example: "100.00";
|
|
39264
|
+
}, {
|
|
39265
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39266
|
+
readonly example: "25";
|
|
39267
|
+
}];
|
|
39502
39268
|
};
|
|
39503
39269
|
};
|
|
39504
39270
|
readonly required: readonly ["type", "value"];
|
|
@@ -39704,9 +39470,14 @@ declare const Quotes__InvoiceLineWithProduct_RequestSchema: {
|
|
|
39704
39470
|
readonly enum: readonly ["absolute", "relative"];
|
|
39705
39471
|
};
|
|
39706
39472
|
readonly value: {
|
|
39707
|
-
readonly
|
|
39708
|
-
|
|
39709
|
-
|
|
39473
|
+
readonly allOf: readonly [{
|
|
39474
|
+
readonly type: "string";
|
|
39475
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39476
|
+
readonly example: "100.00";
|
|
39477
|
+
}, {
|
|
39478
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39479
|
+
readonly example: "10";
|
|
39480
|
+
}];
|
|
39710
39481
|
};
|
|
39711
39482
|
};
|
|
39712
39483
|
readonly required: readonly ["type", "value"];
|
|
@@ -39773,9 +39544,14 @@ declare const Quotes__InvoiceLineWithoutProduct_RequestSchema: {
|
|
|
39773
39544
|
readonly enum: readonly ["absolute", "relative"];
|
|
39774
39545
|
};
|
|
39775
39546
|
readonly value: {
|
|
39776
|
-
readonly
|
|
39777
|
-
|
|
39778
|
-
|
|
39547
|
+
readonly allOf: readonly [{
|
|
39548
|
+
readonly type: "string";
|
|
39549
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39550
|
+
readonly example: "100.00";
|
|
39551
|
+
}, {
|
|
39552
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39553
|
+
readonly example: "10";
|
|
39554
|
+
}];
|
|
39779
39555
|
};
|
|
39780
39556
|
};
|
|
39781
39557
|
readonly required: readonly ["type", "value"];
|
|
@@ -39856,9 +39632,14 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
39856
39632
|
readonly enum: readonly ["absolute", "relative"];
|
|
39857
39633
|
};
|
|
39858
39634
|
readonly value: {
|
|
39859
|
-
readonly
|
|
39860
|
-
|
|
39861
|
-
|
|
39635
|
+
readonly allOf: readonly [{
|
|
39636
|
+
readonly type: "string";
|
|
39637
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39638
|
+
readonly example: "100.00";
|
|
39639
|
+
}, {
|
|
39640
|
+
readonly description: "Discount value on the total amount before tax of the quote";
|
|
39641
|
+
readonly example: "25";
|
|
39642
|
+
}];
|
|
39862
39643
|
};
|
|
39863
39644
|
};
|
|
39864
39645
|
readonly required: readonly ["type", "value"];
|
|
@@ -39962,9 +39743,14 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
39962
39743
|
readonly enum: readonly ["absolute", "relative"];
|
|
39963
39744
|
};
|
|
39964
39745
|
readonly value: {
|
|
39965
|
-
readonly
|
|
39966
|
-
|
|
39967
|
-
|
|
39746
|
+
readonly allOf: readonly [{
|
|
39747
|
+
readonly type: "string";
|
|
39748
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39749
|
+
readonly example: "100.00";
|
|
39750
|
+
}, {
|
|
39751
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39752
|
+
readonly example: "10";
|
|
39753
|
+
}];
|
|
39968
39754
|
};
|
|
39969
39755
|
};
|
|
39970
39756
|
readonly required: readonly ["type", "value"];
|
|
@@ -40030,9 +39816,14 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
40030
39816
|
readonly enum: readonly ["absolute", "relative"];
|
|
40031
39817
|
};
|
|
40032
39818
|
readonly value: {
|
|
40033
|
-
readonly
|
|
40034
|
-
|
|
40035
|
-
|
|
39819
|
+
readonly allOf: readonly [{
|
|
39820
|
+
readonly type: "string";
|
|
39821
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39822
|
+
readonly example: "100.00";
|
|
39823
|
+
}, {
|
|
39824
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39825
|
+
readonly example: "10";
|
|
39826
|
+
}];
|
|
40036
39827
|
};
|
|
40037
39828
|
};
|
|
40038
39829
|
readonly required: readonly ["type", "value"];
|
|
@@ -40112,9 +39903,14 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
40112
39903
|
readonly enum: readonly ["absolute", "relative"];
|
|
40113
39904
|
};
|
|
40114
39905
|
readonly value: {
|
|
40115
|
-
readonly
|
|
40116
|
-
|
|
40117
|
-
|
|
39906
|
+
readonly allOf: readonly [{
|
|
39907
|
+
readonly type: "string";
|
|
39908
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39909
|
+
readonly example: "100.00";
|
|
39910
|
+
}, {
|
|
39911
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39912
|
+
readonly example: "25";
|
|
39913
|
+
}];
|
|
40118
39914
|
};
|
|
40119
39915
|
};
|
|
40120
39916
|
readonly required: readonly ["type", "value"];
|
|
@@ -40197,9 +39993,14 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
40197
39993
|
readonly enum: readonly ["absolute", "relative"];
|
|
40198
39994
|
};
|
|
40199
39995
|
readonly value: {
|
|
40200
|
-
readonly
|
|
40201
|
-
|
|
40202
|
-
|
|
39996
|
+
readonly allOf: readonly [{
|
|
39997
|
+
readonly type: "string";
|
|
39998
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39999
|
+
readonly example: "100.00";
|
|
40000
|
+
}, {
|
|
40001
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
40002
|
+
readonly example: "10";
|
|
40003
|
+
}];
|
|
40203
40004
|
};
|
|
40204
40005
|
};
|
|
40205
40006
|
readonly required: readonly ["type", "value"];
|
|
@@ -40265,9 +40066,14 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
40265
40066
|
readonly enum: readonly ["absolute", "relative"];
|
|
40266
40067
|
};
|
|
40267
40068
|
readonly value: {
|
|
40268
|
-
readonly
|
|
40269
|
-
|
|
40270
|
-
|
|
40069
|
+
readonly allOf: readonly [{
|
|
40070
|
+
readonly type: "string";
|
|
40071
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
40072
|
+
readonly example: "100.00";
|
|
40073
|
+
}, {
|
|
40074
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
40075
|
+
readonly example: "10";
|
|
40076
|
+
}];
|
|
40271
40077
|
};
|
|
40272
40078
|
};
|
|
40273
40079
|
readonly required: readonly ["type", "value"];
|
|
@@ -43273,5 +43079,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
43273
43079
|
//#region src/index.d.ts
|
|
43274
43080
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
43275
43081
|
//#endregion
|
|
43276
|
-
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, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, 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, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, 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, 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, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, 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, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressesResponse, 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, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, 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, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, 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, 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, exportGeneralLedger, 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, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, 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, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
43082
|
+
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, Currency2, CurrencySchema, Currency_2Schema, 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, DecimalString, DecimalStringSchema, 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, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, 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, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, 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, 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, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, 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, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressesResponse, 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, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, 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, 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, exportGeneralLedger, 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, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, 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, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
43277
43083
|
//# sourceMappingURL=index.d.mts.map
|