@getyetty-sdk/pennylane 2026.4.30 → 2026.5.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -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 SchemasCurrency: {
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 SchemasCurrency = (typeof SchemasCurrency)[keyof typeof SchemasCurrency];
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
@@ -3043,6 +3017,13 @@ type BillingSubscriptionsResponse = {
3043
3017
  */
3044
3018
  updated_at: string;
3045
3019
  };
3020
+ declare const PdpAddressStatuses: {
3021
+ readonly PENDING: "pending";
3022
+ readonly ACTIVATED: "activated";
3023
+ readonly PROVISIONED: "provisioned";
3024
+ readonly DRAFT: "draft";
3025
+ };
3026
+ type PdpAddressStatuses = (typeof PdpAddressStatuses)[keyof typeof PdpAddressStatuses];
3046
3027
  type PdpAddressesResponse = {
3047
3028
  id: number;
3048
3029
  /**
@@ -3051,7 +3032,7 @@ type PdpAddressesResponse = {
3051
3032
  */
3052
3033
  siret: string | null;
3053
3034
  siren: string;
3054
- status: 'provisioned' | 'pending' | 'activated';
3035
+ status: 'pending' | 'activated' | 'provisioned' | 'draft';
3055
3036
  exchange_direction: 'emission' | 'reception' | 'emission_and_reception';
3056
3037
  created_at: string;
3057
3038
  updated_at: string;
@@ -3676,10 +3657,7 @@ type CustomerInvoicesPutDraftRequest = {
3676
3657
  *
3677
3658
  */
3678
3659
  type: 'absolute' | 'relative';
3679
- /**
3680
- * Discount value on the total amount before tax of the line
3681
- */
3682
- value: string | null;
3660
+ value: (string & unknown) | null;
3683
3661
  };
3684
3662
  /**
3685
3663
  * 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 +3708,7 @@ type CustomerInvoicesPutDraftRequest = {
3730
3708
  *
3731
3709
  */
3732
3710
  type: 'absolute' | 'relative';
3733
- /**
3734
- * Discount value on the total amount before tax of the line
3735
- */
3736
- value: string;
3711
+ value: string & unknown;
3737
3712
  };
3738
3713
  /**
3739
3714
  * The description of the invoice line
@@ -3776,10 +3751,7 @@ type CustomerInvoicesPutDraftRequest = {
3776
3751
  *
3777
3752
  */
3778
3753
  type: 'absolute' | 'relative';
3779
- /**
3780
- * Discount value on the total amount before tax of the line
3781
- */
3782
- value: string;
3754
+ value: string & unknown;
3783
3755
  };
3784
3756
  /**
3785
3757
  * The description of the invoice line
@@ -3831,10 +3803,7 @@ type CustomerInvoicesPutDraftRequest = {
3831
3803
  *
3832
3804
  */
3833
3805
  type: 'absolute' | 'relative';
3834
- /**
3835
- * Discount value on the total amount before tax of the line
3836
- */
3837
- value: string;
3806
+ value: string & unknown;
3838
3807
  };
3839
3808
  /**
3840
3809
  * Has to correspond to the rank number of an invoice line section in which the invoice line should be
@@ -4724,10 +4693,7 @@ type QuotesResponse = {
4724
4693
  *
4725
4694
  */
4726
4695
  type: 'absolute' | 'relative';
4727
- /**
4728
- * Discount value on the total amount before tax of the line
4729
- */
4730
- value: string;
4696
+ value: string & unknown;
4731
4697
  };
4732
4698
  /**
4733
4699
  * Public URL of the quote file. The URL will expire after 30 minutes.
@@ -4848,10 +4814,7 @@ type QuotesInvoiceLineWithProductRequest = {
4848
4814
  *
4849
4815
  */
4850
4816
  type: 'absolute' | 'relative';
4851
- /**
4852
- * Discount value on the total amount before tax of the line
4853
- */
4854
- value: string;
4817
+ value: string & unknown;
4855
4818
  };
4856
4819
  };
4857
4820
  /**
@@ -4902,10 +4865,7 @@ type QuotesInvoiceLineWithoutProductRequest = {
4902
4865
  *
4903
4866
  */
4904
4867
  type: 'absolute' | 'relative';
4905
- /**
4906
- * Discount value on the total amount before tax of the line
4907
- */
4908
- value: string;
4868
+ value: string & unknown;
4909
4869
  };
4910
4870
  };
4911
4871
  /**
@@ -4957,10 +4917,7 @@ type QuotesPostRequest = {
4957
4917
  *
4958
4918
  */
4959
4919
  type: 'absolute' | 'relative';
4960
- /**
4961
- * Discount value on the total amount before tax of the quote
4962
- */
4963
- value: string;
4920
+ value: string & unknown;
4964
4921
  };
4965
4922
  invoice_line_sections?: Array<{
4966
4923
  /**
@@ -5025,10 +4982,7 @@ type QuotesPostRequest = {
5025
4982
  *
5026
4983
  */
5027
4984
  type: 'absolute' | 'relative';
5028
- /**
5029
- * Discount value on the total amount before tax of the line
5030
- */
5031
- value: string;
4985
+ value: string & unknown;
5032
4986
  };
5033
4987
  } | {
5034
4988
  /**
@@ -5071,10 +5025,7 @@ type QuotesPostRequest = {
5071
5025
  *
5072
5026
  */
5073
5027
  type: 'absolute' | 'relative';
5074
- /**
5075
- * Discount value on the total amount before tax of the line
5076
- */
5077
- value: string;
5028
+ value: string & unknown;
5078
5029
  };
5079
5030
  }>;
5080
5031
  };
@@ -5123,10 +5074,7 @@ type QuotesPutRequest = {
5123
5074
  *
5124
5075
  */
5125
5076
  type: 'absolute' | 'relative';
5126
- /**
5127
- * Discount value on the total amount before tax of the line
5128
- */
5129
- value: string;
5077
+ value: string & unknown;
5130
5078
  };
5131
5079
  /**
5132
5080
  * 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 +5129,7 @@ type QuotesPutRequest = {
5181
5129
  *
5182
5130
  */
5183
5131
  type: 'absolute' | 'relative';
5184
- /**
5185
- * Discount value on the total amount before tax of the line
5186
- */
5187
- value: string;
5132
+ value: string & unknown;
5188
5133
  };
5189
5134
  } | {
5190
5135
  /**
@@ -5227,10 +5172,7 @@ type QuotesPutRequest = {
5227
5172
  *
5228
5173
  */
5229
5174
  type: 'absolute' | 'relative';
5230
- /**
5231
- * Discount value on the total amount before tax of the line
5232
- */
5233
- value: string;
5175
+ value: string & unknown;
5234
5176
  };
5235
5177
  }>;
5236
5178
  update?: Array<{
@@ -7718,14 +7660,8 @@ type PostLedgerEntriesData = {
7718
7660
  *
7719
7661
  */
7720
7662
  ledger_entry_lines: Array<{
7721
- /**
7722
- * Debit amount for the entry line
7723
- */
7724
- debit: string;
7725
- /**
7726
- * Credit amount for the entry line
7727
- */
7728
- credit: string;
7663
+ debit: string & unknown;
7664
+ credit: string & unknown;
7729
7665
  /**
7730
7666
  * Ledger account ID
7731
7667
  */
@@ -8154,14 +8090,8 @@ type PutLedgerEntriesData = {
8154
8090
  */
8155
8091
  ledger_entry_lines?: {
8156
8092
  create?: Array<{
8157
- /**
8158
- * Debit amount for the entry line
8159
- */
8160
- debit: string;
8161
- /**
8162
- * Credit amount for the entry line
8163
- */
8164
- credit: string;
8093
+ debit: string & unknown;
8094
+ credit: string & unknown;
8165
8095
  /**
8166
8096
  * Ledger account ID
8167
8097
  */
@@ -8176,14 +8106,8 @@ type PutLedgerEntriesData = {
8176
8106
  * ID of the entry line
8177
8107
  */
8178
8108
  id: number;
8179
- /**
8180
- * Debit amount for the entry line
8181
- */
8182
- debit?: string;
8183
- /**
8184
- * Credit amount for the entry line
8185
- */
8186
- credit?: string;
8109
+ debit?: string & unknown;
8110
+ credit?: string & unknown;
8187
8111
  /**
8188
8112
  * Ledger account ID
8189
8113
  */
@@ -10036,10 +9960,7 @@ type GetCustomerInvoicesResponses = {
10036
9960
  *
10037
9961
  */
10038
9962
  type: 'absolute' | 'relative';
10039
- /**
10040
- * Discount value on the total amount before tax of the line
10041
- */
10042
- value: string;
9963
+ value: string & unknown;
10043
9964
  };
10044
9965
  ledger_entry: {
10045
9966
  /**
@@ -10439,10 +10360,7 @@ type PostCustomerInvoicesData = {
10439
10360
  *
10440
10361
  */
10441
10362
  type: 'absolute' | 'relative';
10442
- /**
10443
- * Discount value on the total amount before tax of the line
10444
- */
10445
- value: string;
10363
+ value: string & unknown;
10446
10364
  };
10447
10365
  /**
10448
10366
  * The description of the invoice line
@@ -10485,10 +10403,7 @@ type PostCustomerInvoicesData = {
10485
10403
  *
10486
10404
  */
10487
10405
  type: 'absolute' | 'relative';
10488
- /**
10489
- * Discount value on the total amount before tax of the line
10490
- */
10491
- value: string;
10406
+ value: string & unknown;
10492
10407
  };
10493
10408
  /**
10494
10409
  * The description of the invoice line
@@ -10630,10 +10545,7 @@ type PostCustomerInvoicesData = {
10630
10545
  *
10631
10546
  */
10632
10547
  type: 'absolute' | 'relative';
10633
- /**
10634
- * Discount value on the total amount before tax of the line
10635
- */
10636
- value: string;
10548
+ value: string & unknown;
10637
10549
  };
10638
10550
  /**
10639
10551
  * The description of the invoice line
@@ -10686,10 +10598,7 @@ type PostCustomerInvoicesData = {
10686
10598
  *
10687
10599
  */
10688
10600
  type: 'absolute' | 'relative';
10689
- /**
10690
- * Discount value on the total amount before tax of the line
10691
- */
10692
- value: string;
10601
+ value: string & unknown;
10693
10602
  };
10694
10603
  /**
10695
10604
  * The description of the invoice line
@@ -10851,10 +10760,7 @@ type PostCustomerInvoicesResponses = {
10851
10760
  *
10852
10761
  */
10853
10762
  type: 'absolute' | 'relative';
10854
- /**
10855
- * Discount value on the total amount before tax of the line
10856
- */
10857
- value: string;
10763
+ value: string & unknown;
10858
10764
  };
10859
10765
  ledger_entry: {
10860
10766
  /**
@@ -11033,26 +10939,11 @@ type ImportCustomerInvoicesData = {
11033
10939
  */
11034
10940
  invoice_number?: string;
11035
10941
  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
- * Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)
11038
- */
11039
- currency_amount_before_tax: string;
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;
10942
+ currency_amount_before_tax: string & unknown;
10943
+ currency_amount: string & unknown;
10944
+ amount?: string & unknown;
10945
+ currency_tax: string & unknown;
10946
+ tax?: string & unknown;
11056
10947
  /**
11057
10948
  * Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
11058
10949
  */
@@ -11075,22 +10966,10 @@ type ImportCustomerInvoicesData = {
11075
10966
  provider_field_value: string;
11076
10967
  };
11077
10968
  invoice_lines: Array<{
11078
- /**
11079
- * Invoice line total amount in the currency of the invoice.
11080
- */
11081
- currency_amount: string;
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;
10969
+ currency_amount: string & unknown;
10970
+ amount?: string & unknown;
10971
+ currency_tax: string & unknown;
10972
+ tax?: string & unknown;
11094
10973
  /**
11095
10974
  * Line item label.
11096
10975
  *
@@ -11308,10 +11187,7 @@ type ImportCustomerInvoicesResponses = {
11308
11187
  *
11309
11188
  */
11310
11189
  type: 'absolute' | 'relative';
11311
- /**
11312
- * Discount value on the total amount before tax of the line
11313
- */
11314
- value: string;
11190
+ value: string & unknown;
11315
11191
  };
11316
11192
  ledger_entry: {
11317
11193
  /**
@@ -11735,10 +11611,7 @@ type CreateCustomerInvoiceFromQuoteResponses = {
11735
11611
  *
11736
11612
  */
11737
11613
  type: 'absolute' | 'relative';
11738
- /**
11739
- * Discount value on the total amount before tax of the line
11740
- */
11741
- value: string;
11614
+ value: string & unknown;
11742
11615
  };
11743
11616
  ledger_entry: {
11744
11617
  /**
@@ -12261,10 +12134,7 @@ type PostBillingSubscriptionsData = {
12261
12134
  *
12262
12135
  */
12263
12136
  type: 'absolute' | 'relative';
12264
- /**
12265
- * Discount value on the total amount before tax
12266
- */
12267
- value: string;
12137
+ value: string & unknown;
12268
12138
  };
12269
12139
  invoice_line_sections?: Array<{
12270
12140
  /**
@@ -12906,10 +12776,7 @@ type PutBillingSubscriptionsData = {
12906
12776
  *
12907
12777
  */
12908
12778
  type: 'absolute' | 'relative';
12909
- /**
12910
- * Discount value on the total amount before tax
12911
- */
12912
- value: string;
12779
+ value: string & unknown;
12913
12780
  };
12914
12781
  /**
12915
12782
  * Add, update, delete invoice line sections.
@@ -12995,10 +12862,7 @@ type PutBillingSubscriptionsData = {
12995
12862
  *
12996
12863
  */
12997
12864
  type: 'absolute' | 'relative';
12998
- /**
12999
- * Discount value on the total amount before tax of the line
13000
- */
13001
- value: string;
12865
+ value: string & unknown;
13002
12866
  };
13003
12867
  /**
13004
12868
  * The ledger account ID
@@ -13050,10 +12914,7 @@ type PutBillingSubscriptionsData = {
13050
12914
  *
13051
12915
  */
13052
12916
  type: 'absolute' | 'relative';
13053
- /**
13054
- * Discount value on the total amount before tax of the line
13055
- */
13056
- value: string;
12917
+ value: string & unknown;
13057
12918
  };
13058
12919
  /**
13059
12920
  * The ledger account ID
@@ -13712,7 +13573,7 @@ type GetPaRegistrationsResponses = {
13712
13573
  */
13713
13574
  siret: string | null;
13714
13575
  siren: string;
13715
- status: 'provisioned' | 'pending' | 'activated';
13576
+ status: 'pending' | 'activated' | 'provisioned' | 'draft';
13716
13577
  exchange_direction: 'emission' | 'reception' | 'emission_and_reception';
13717
13578
  created_at: string;
13718
13579
  updated_at: string;
@@ -13885,10 +13746,7 @@ type PostProductsData = {
13885
13746
  * 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
13747
  */
13887
13748
  external_reference?: string;
13888
- /**
13889
- * Product price without taxes
13890
- */
13891
- price_before_tax: string;
13749
+ price_before_tax: string & unknown;
13892
13750
  /**
13893
13751
  * Product VAT rate. A 20% VAT in France is FR_200.
13894
13752
  */
@@ -14135,7 +13993,7 @@ type PutProductData = {
14135
13993
  * The unique external reference assigned to this Product, assigned on creation either by you or Pennylane.
14136
13994
  */
14137
13995
  external_reference?: string;
14138
- price_before_tax?: string;
13996
+ price_before_tax?: string & unknown;
14139
13997
  /**
14140
13998
  * Product VAT rate. A 20% VAT in France is FR_200.
14141
13999
  */
@@ -18831,10 +18689,7 @@ type GetCustomerInvoiceResponses = {
18831
18689
  *
18832
18690
  */
18833
18691
  type: 'absolute' | 'relative';
18834
- /**
18835
- * Discount value on the total amount before tax of the line
18836
- */
18837
- value: string;
18692
+ value: string & unknown;
18838
18693
  };
18839
18694
  ledger_entry: {
18840
18695
  /**
@@ -19032,10 +18887,7 @@ type UpdateCustomerInvoiceData = {
19032
18887
  *
19033
18888
  */
19034
18889
  type: 'absolute' | 'relative';
19035
- /**
19036
- * Discount value on the total amount before tax of the line
19037
- */
19038
- value: string | null;
18890
+ value: (string & unknown) | null;
19039
18891
  };
19040
18892
  /**
19041
18893
  * 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 +18938,7 @@ type UpdateCustomerInvoiceData = {
19086
18938
  *
19087
18939
  */
19088
18940
  type: 'absolute' | 'relative';
19089
- /**
19090
- * Discount value on the total amount before tax of the line
19091
- */
19092
- value: string;
18941
+ value: string & unknown;
19093
18942
  };
19094
18943
  /**
19095
18944
  * The description of the invoice line
@@ -19132,10 +18981,7 @@ type UpdateCustomerInvoiceData = {
19132
18981
  *
19133
18982
  */
19134
18983
  type: 'absolute' | 'relative';
19135
- /**
19136
- * Discount value on the total amount before tax of the line
19137
- */
19138
- value: string;
18984
+ value: string & unknown;
19139
18985
  };
19140
18986
  /**
19141
18987
  * The description of the invoice line
@@ -19187,10 +19033,7 @@ type UpdateCustomerInvoiceData = {
19187
19033
  *
19188
19034
  */
19189
19035
  type: 'absolute' | 'relative';
19190
- /**
19191
- * Discount value on the total amount before tax of the line
19192
- */
19193
- value: string;
19036
+ value: string & unknown;
19194
19037
  };
19195
19038
  /**
19196
19039
  * Has to correspond to the rank number of an invoice line section in which the invoice line should be
@@ -19415,10 +19258,7 @@ type UpdateCustomerInvoiceResponses = {
19415
19258
  *
19416
19259
  */
19417
19260
  type: 'absolute' | 'relative';
19418
- /**
19419
- * Discount value on the total amount before tax of the line
19420
- */
19421
- value: string;
19261
+ value: string & unknown;
19422
19262
  };
19423
19263
  ledger_entry: {
19424
19264
  /**
@@ -19943,26 +19783,11 @@ type UpdateImportedCustomerInvoiceData = {
19943
19783
  */
19944
19784
  invoice_number?: string;
19945
19785
  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
- * Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)
19948
- */
19949
- currency_amount_before_tax?: string;
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;
19786
+ currency_amount_before_tax?: string & unknown;
19787
+ currency_amount?: string & unknown;
19788
+ amount?: string & unknown;
19789
+ currency_tax?: string & unknown;
19790
+ tax?: string & unknown;
19966
19791
  /**
19967
19792
  * Schema for creating/updating a transaction reference
19968
19793
  */
@@ -19985,22 +19810,10 @@ type UpdateImportedCustomerInvoiceData = {
19985
19810
  */
19986
19811
  invoice_lines?: {
19987
19812
  create?: Array<{
19988
- /**
19989
- * Invoice line total amount in the currency of the invoice.
19990
- */
19991
- currency_amount: string;
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;
19813
+ currency_amount: string & unknown;
19814
+ amount?: string & unknown;
19815
+ currency_tax: string & unknown;
19816
+ tax?: string & unknown;
20004
19817
  /**
20005
19818
  * Line item label.
20006
19819
  *
@@ -20067,22 +19880,10 @@ type UpdateImportedCustomerInvoiceData = {
20067
19880
  * ID of the invoice line
20068
19881
  */
20069
19882
  id: number;
20070
- /**
20071
- * Invoice line total amount in the currency of the invoice.
20072
- */
20073
- currency_amount?: string;
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;
19883
+ currency_amount?: string & unknown;
19884
+ amount?: string & unknown;
19885
+ currency_tax?: string & unknown;
19886
+ tax?: string & unknown;
20086
19887
  /**
20087
19888
  * Line item label.
20088
19889
  *
@@ -20311,10 +20112,7 @@ type UpdateImportedCustomerInvoiceResponses = {
20311
20112
  *
20312
20113
  */
20313
20114
  type: 'absolute' | 'relative';
20314
- /**
20315
- * Discount value on the total amount before tax of the line
20316
- */
20317
- value: string;
20115
+ value: string & unknown;
20318
20116
  };
20319
20117
  ledger_entry: {
20320
20118
  /**
@@ -20617,10 +20415,7 @@ type FinalizeCustomerInvoiceResponses = {
20617
20415
  *
20618
20416
  */
20619
20417
  type: 'absolute' | 'relative';
20620
- /**
20621
- * Discount value on the total amount before tax of the line
20622
- */
20623
- value: string;
20418
+ value: string & unknown;
20624
20419
  };
20625
20420
  ledger_entry: {
20626
20421
  /**
@@ -20928,10 +20723,7 @@ type LinkCreditNoteResponses = {
20928
20723
  *
20929
20724
  */
20930
20725
  type: 'absolute' | 'relative';
20931
- /**
20932
- * Discount value on the total amount before tax of the line
20933
- */
20934
- value: string;
20726
+ value: string & unknown;
20935
20727
  };
20936
20728
  ledger_entry: {
20937
20729
  /**
@@ -21786,26 +21578,11 @@ type PutSupplierInvoiceData = {
21786
21578
  */
21787
21579
  label?: string | null;
21788
21580
  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
- * Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)
21791
- */
21792
- currency_amount_before_tax?: string;
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;
21581
+ currency_amount_before_tax?: string & unknown;
21582
+ currency_amount?: string & unknown;
21583
+ amount?: string & unknown;
21584
+ currency_tax?: string & unknown;
21585
+ tax?: string & unknown;
21809
21586
  /**
21810
21587
  * 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
21588
  */
@@ -21836,22 +21613,10 @@ type PutSupplierInvoiceData = {
21836
21613
  * Invoice line description
21837
21614
  */
21838
21615
  description?: string;
21839
- /**
21840
- * Invoice line total amount in the currency of the invoice.
21841
- */
21842
- currency_amount: string;
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;
21616
+ currency_amount: string & unknown;
21617
+ amount?: string & unknown;
21618
+ currency_tax: string & unknown;
21619
+ tax?: string & unknown;
21855
21620
  /**
21856
21621
  * The ledger account ID
21857
21622
  */
@@ -21892,22 +21657,10 @@ type PutSupplierInvoiceData = {
21892
21657
  * Invoice line description
21893
21658
  */
21894
21659
  description?: string;
21895
- /**
21896
- * Invoice line amount in the currency of the invoice.
21897
- */
21898
- currency_amount?: string;
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;
21660
+ currency_amount?: string & unknown;
21661
+ amount?: string & unknown;
21662
+ currency_tax?: string & unknown;
21663
+ tax?: string & unknown;
21911
21664
  /**
21912
21665
  * The ledger account ID
21913
21666
  */
@@ -22978,26 +22731,11 @@ type ImportSupplierInvoiceData = {
22978
22731
  */
22979
22732
  invoice_number?: string;
22980
22733
  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
- * Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)
22983
- */
22984
- currency_amount_before_tax: string;
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;
22734
+ currency_amount_before_tax: string & unknown;
22735
+ currency_amount: string & unknown;
22736
+ amount?: string & unknown;
22737
+ currency_tax: string & unknown;
22738
+ tax?: string & unknown;
23001
22739
  /**
23002
22740
  * Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
23003
22741
  */
@@ -23038,22 +22776,10 @@ type ImportSupplierInvoiceData = {
23038
22776
  * @deprecated
23039
22777
  */
23040
22778
  description?: string;
23041
- /**
23042
- * Invoice line total amount in the currency of the invoice.
23043
- */
23044
- currency_amount: string;
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;
22779
+ currency_amount: string & unknown;
22780
+ amount?: string & unknown;
22781
+ currency_tax: string & unknown;
22782
+ tax?: string & unknown;
23057
22783
  /**
23058
22784
  * The ledger account ID
23059
22785
  */
@@ -27420,10 +27146,7 @@ type ListQuotesResponses = {
27420
27146
  *
27421
27147
  */
27422
27148
  type: 'absolute' | 'relative';
27423
- /**
27424
- * Discount value on the total amount before tax of the line
27425
- */
27426
- value: string;
27149
+ value: string & unknown;
27427
27150
  };
27428
27151
  /**
27429
27152
  * Public URL of the quote file. The URL will expire after 30 minutes.
@@ -27544,10 +27267,7 @@ type PostQuotesData = {
27544
27267
  *
27545
27268
  */
27546
27269
  type: 'absolute' | 'relative';
27547
- /**
27548
- * Discount value on the total amount before tax of the quote
27549
- */
27550
- value: string;
27270
+ value: string & unknown;
27551
27271
  };
27552
27272
  invoice_line_sections?: Array<{
27553
27273
  /**
@@ -27612,10 +27332,7 @@ type PostQuotesData = {
27612
27332
  *
27613
27333
  */
27614
27334
  type: 'absolute' | 'relative';
27615
- /**
27616
- * Discount value on the total amount before tax of the line
27617
- */
27618
- value: string;
27335
+ value: string & unknown;
27619
27336
  };
27620
27337
  } | {
27621
27338
  /**
@@ -27658,10 +27375,7 @@ type PostQuotesData = {
27658
27375
  *
27659
27376
  */
27660
27377
  type: 'absolute' | 'relative';
27661
- /**
27662
- * Discount value on the total amount before tax of the line
27663
- */
27664
- value: string;
27378
+ value: string & unknown;
27665
27379
  };
27666
27380
  }>;
27667
27381
  };
@@ -27790,10 +27504,7 @@ type PostQuotesResponses = {
27790
27504
  *
27791
27505
  */
27792
27506
  type: 'absolute' | 'relative';
27793
- /**
27794
- * Discount value on the total amount before tax of the line
27795
- */
27796
- value: string;
27507
+ value: string & unknown;
27797
27508
  };
27798
27509
  /**
27799
27510
  * Public URL of the quote file. The URL will expire after 30 minutes.
@@ -27985,10 +27696,7 @@ type GetQuoteResponses = {
27985
27696
  *
27986
27697
  */
27987
27698
  type: 'absolute' | 'relative';
27988
- /**
27989
- * Discount value on the total amount before tax of the line
27990
- */
27991
- value: string;
27699
+ value: string & unknown;
27992
27700
  };
27993
27701
  /**
27994
27702
  * Public URL of the quote file. The URL will expire after 30 minutes.
@@ -28104,10 +27812,7 @@ type UpdateQuoteData = {
28104
27812
  *
28105
27813
  */
28106
27814
  type: 'absolute' | 'relative';
28107
- /**
28108
- * Discount value on the total amount before tax of the line
28109
- */
28110
- value: string;
27815
+ value: string & unknown;
28111
27816
  };
28112
27817
  /**
28113
27818
  * 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 +27867,7 @@ type UpdateQuoteData = {
28162
27867
  *
28163
27868
  */
28164
27869
  type: 'absolute' | 'relative';
28165
- /**
28166
- * Discount value on the total amount before tax of the line
28167
- */
28168
- value: string;
27870
+ value: string & unknown;
28169
27871
  };
28170
27872
  } | {
28171
27873
  /**
@@ -28208,10 +27910,7 @@ type UpdateQuoteData = {
28208
27910
  *
28209
27911
  */
28210
27912
  type: 'absolute' | 'relative';
28211
- /**
28212
- * Discount value on the total amount before tax of the line
28213
- */
28214
- value: string;
27913
+ value: string & unknown;
28215
27914
  };
28216
27915
  }>;
28217
27916
  update?: Array<{
@@ -28408,10 +28107,7 @@ type UpdateQuoteResponses = {
28408
28107
  *
28409
28108
  */
28410
28109
  type: 'absolute' | 'relative';
28411
- /**
28412
- * Discount value on the total amount before tax of the line
28413
- */
28414
- value: string;
28110
+ value: string & unknown;
28415
28111
  };
28416
28112
  /**
28417
28113
  * Public URL of the quote file. The URL will expire after 30 minutes.
@@ -29205,10 +28901,7 @@ type UpdateStatusQuoteResponses = {
29205
28901
  *
29206
28902
  */
29207
28903
  type: 'absolute' | 'relative';
29208
- /**
29209
- * Discount value on the total amount before tax of the line
29210
- */
29211
- value: string;
28904
+ value: string & unknown;
29212
28905
  };
29213
28906
  /**
29214
28907
  * Public URL of the quote file. The URL will expire after 30 minutes.
@@ -33086,6 +32779,11 @@ declare const CurrencySchema: {
33086
32779
  readonly type: "string";
33087
32780
  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
32781
  };
32782
+ declare const DecimalStringSchema: {
32783
+ readonly type: "string";
32784
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
32785
+ readonly example: "100.00";
32786
+ };
33089
32787
  declare const LedgerEntries__ResponseSchema: {
33090
32788
  readonly type: "object";
33091
32789
  readonly additionalProperties: false;
@@ -33781,7 +33479,7 @@ declare const LedgerEntryLines__Categories__ResponseSchema: {
33781
33479
  };
33782
33480
  readonly required: readonly ["id", "label", "weight", "category_group", "analytical_code", "created_at", "updated_at"];
33783
33481
  };
33784
- declare const schemas_CurrencySchema: {
33482
+ declare const Currency_2Schema: {
33785
33483
  readonly type: "string";
33786
33484
  readonly default: "EUR";
33787
33485
  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 +33594,14 @@ declare const CustomerInvoices__ResponseSchema: {
33896
33594
  readonly enum: readonly ["absolute", "relative"];
33897
33595
  };
33898
33596
  readonly value: {
33899
- readonly description: "Discount value on the total amount before tax of the line";
33900
- readonly type: "string";
33901
- readonly example: "25";
33597
+ readonly allOf: readonly [{
33598
+ readonly type: "string";
33599
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
33600
+ readonly example: "100.00";
33601
+ }, {
33602
+ readonly description: "Discount value on the total amount before tax of the line";
33603
+ readonly example: "25";
33604
+ }];
33902
33605
  };
33903
33606
  };
33904
33607
  readonly required: readonly ["type", "value"];
@@ -34294,7 +33997,7 @@ declare const CustomerInvoices__InvoiceLineSchema: {
34294
33997
  readonly value: {
34295
33998
  readonly description: "Discount value on the total amount before tax of the invoice";
34296
33999
  readonly type: "string";
34297
- readonly example: 25;
34000
+ readonly example: "25";
34298
34001
  };
34299
34002
  };
34300
34003
  readonly required: readonly ["type", "value"];
@@ -34443,7 +34146,7 @@ declare const CustomerInvoices__IncludedInvoiceLinesCollectionSchema: {
34443
34146
  readonly value: {
34444
34147
  readonly description: "Discount value on the total amount before tax of the invoice";
34445
34148
  readonly type: "string";
34446
- readonly example: 25;
34149
+ readonly example: "25";
34447
34150
  };
34448
34151
  };
34449
34152
  readonly required: readonly ["type", "value"];
@@ -34619,7 +34322,7 @@ declare const CustomerInvoices__InclusionsSchema: {
34619
34322
  readonly value: {
34620
34323
  readonly description: "Discount value on the total amount before tax of the invoice";
34621
34324
  readonly type: "string";
34622
- readonly example: 25;
34325
+ readonly example: "25";
34623
34326
  };
34624
34327
  };
34625
34328
  readonly required: readonly ["type", "value"];
@@ -34743,9 +34446,14 @@ declare const CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema: {
34743
34446
  readonly enum: readonly ["absolute", "relative"];
34744
34447
  };
34745
34448
  readonly value: {
34746
- readonly description: "Discount value on the total amount before tax of the line";
34747
- readonly type: "string";
34748
- readonly example: "25";
34449
+ readonly allOf: readonly [{
34450
+ readonly type: "string";
34451
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
34452
+ readonly example: "100.00";
34453
+ }, {
34454
+ readonly description: "Discount value on the total amount before tax of the line";
34455
+ readonly example: "25";
34456
+ }];
34749
34457
  };
34750
34458
  };
34751
34459
  readonly required: readonly ["type", "value"];
@@ -34811,9 +34519,14 @@ declare const CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema: {
34811
34519
  readonly enum: readonly ["absolute", "relative"];
34812
34520
  };
34813
34521
  readonly value: {
34814
- readonly description: "Discount value on the total amount before tax of the line";
34815
- readonly type: "string";
34816
- readonly example: "25";
34522
+ readonly allOf: readonly [{
34523
+ readonly type: "string";
34524
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
34525
+ readonly example: "100.00";
34526
+ }, {
34527
+ readonly description: "Discount value on the total amount before tax of the line";
34528
+ readonly example: "25";
34529
+ }];
34817
34530
  };
34818
34531
  };
34819
34532
  readonly required: readonly ["type", "value"];
@@ -35011,9 +34724,14 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
35011
34724
  readonly enum: readonly ["absolute", "relative"];
35012
34725
  };
35013
34726
  readonly value: {
35014
- readonly description: "Discount value on the total amount before tax of the line";
35015
- readonly type: "string";
35016
- readonly example: "25";
34727
+ readonly allOf: readonly [{
34728
+ readonly type: "string";
34729
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
34730
+ readonly example: "100.00";
34731
+ }, {
34732
+ readonly description: "Discount value on the total amount before tax of the line";
34733
+ readonly example: "25";
34734
+ }];
35017
34735
  };
35018
34736
  };
35019
34737
  readonly required: readonly ["type", "value"];
@@ -35078,9 +34796,14 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
35078
34796
  readonly enum: readonly ["absolute", "relative"];
35079
34797
  };
35080
34798
  readonly value: {
35081
- readonly description: "Discount value on the total amount before tax of the line";
35082
- readonly type: "string";
35083
- readonly example: "25";
34799
+ readonly allOf: readonly [{
34800
+ readonly type: "string";
34801
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
34802
+ readonly example: "100.00";
34803
+ }, {
34804
+ readonly description: "Discount value on the total amount before tax of the line";
34805
+ readonly example: "25";
34806
+ }];
35084
34807
  };
35085
34808
  };
35086
34809
  readonly required: readonly ["type", "value"];
@@ -35158,9 +34881,14 @@ declare const CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema: {
35158
34881
  readonly enum: readonly ["absolute", "relative"];
35159
34882
  };
35160
34883
  readonly value: {
35161
- readonly description: "Discount value on the total amount before tax of the line";
35162
- readonly type: "string";
35163
- readonly example: "25";
34884
+ readonly allOf: readonly [{
34885
+ readonly type: "string";
34886
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
34887
+ readonly example: "100.00";
34888
+ }, {
34889
+ readonly description: "Discount value on the total amount before tax of the line";
34890
+ readonly example: "25";
34891
+ }];
35164
34892
  };
35165
34893
  };
35166
34894
  readonly required: readonly ["type", "value"];
@@ -35246,9 +34974,14 @@ declare const CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema
35246
34974
  readonly enum: readonly ["absolute", "relative"];
35247
34975
  };
35248
34976
  readonly value: {
35249
- readonly description: "Discount value on the total amount before tax of the line";
35250
- readonly type: "string";
35251
- readonly example: "25";
34977
+ readonly allOf: readonly [{
34978
+ readonly type: "string";
34979
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
34980
+ readonly example: "100.00";
34981
+ }, {
34982
+ readonly description: "Discount value on the total amount before tax of the line";
34983
+ readonly example: "25";
34984
+ }];
35252
34985
  };
35253
34986
  };
35254
34987
  readonly required: readonly ["type", "value"];
@@ -35490,9 +35223,14 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
35490
35223
  readonly enum: readonly ["absolute", "relative"];
35491
35224
  };
35492
35225
  readonly value: {
35493
- readonly description: "Discount value on the total amount before tax of the line";
35494
- readonly type: "string";
35495
- readonly example: "25";
35226
+ readonly allOf: readonly [{
35227
+ readonly type: "string";
35228
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
35229
+ readonly example: "100.00";
35230
+ }, {
35231
+ readonly description: "Discount value on the total amount before tax of the line";
35232
+ readonly example: "25";
35233
+ }];
35496
35234
  };
35497
35235
  };
35498
35236
  readonly required: readonly ["type", "value"];
@@ -35577,9 +35315,14 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
35577
35315
  readonly enum: readonly ["absolute", "relative"];
35578
35316
  };
35579
35317
  readonly value: {
35580
- readonly description: "Discount value on the total amount before tax of the line";
35581
- readonly type: "string";
35582
- readonly example: "25";
35318
+ readonly allOf: readonly [{
35319
+ readonly type: "string";
35320
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
35321
+ readonly example: "100.00";
35322
+ }, {
35323
+ readonly description: "Discount value on the total amount before tax of the line";
35324
+ readonly example: "25";
35325
+ }];
35583
35326
  };
35584
35327
  };
35585
35328
  readonly required: readonly ["type", "value"];
@@ -36029,6 +35772,10 @@ declare const BillingSubscriptions__ResponseSchema: {
36029
35772
  };
36030
35773
  readonly required: readonly ["id", "next_occurrence", "prev_occurrence", "stopped_at", "start", "finish", "status", "mode", "activated_at", "payment_conditions", "payment_method", "label", "email_settings", "recurring_rule", "customer", "customer_invoice_data", "created_at", "updated_at"];
36031
35774
  };
35775
+ declare const PDPAddressStatusesSchema: {
35776
+ readonly type: "string";
35777
+ readonly enum: readonly ["pending", "activated", "provisioned", "draft"];
35778
+ };
36032
35779
  declare const PDPAddresses__ResponseSchema: {
36033
35780
  readonly type: "object";
36034
35781
  readonly additionalProperties: false;
@@ -36050,8 +35797,7 @@ declare const PDPAddresses__ResponseSchema: {
36050
35797
  };
36051
35798
  readonly status: {
36052
35799
  readonly type: "string";
36053
- readonly example: "provisioned";
36054
- readonly enum: readonly ["provisioned", "pending", "activated"];
35800
+ readonly enum: readonly ["pending", "activated", "provisioned", "draft"];
36055
35801
  };
36056
35802
  readonly exchange_direction: {
36057
35803
  readonly type: "string";
@@ -37520,10 +37266,20 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
37520
37266
  readonly enum: readonly ["absolute", "relative"];
37521
37267
  };
37522
37268
  readonly value: {
37523
- readonly description: "Discount value on the total amount before tax of the line";
37524
- readonly type: "string";
37525
- readonly nullable: true;
37526
- readonly example: "25";
37269
+ readonly oneOf: readonly [{
37270
+ readonly allOf: readonly [{
37271
+ readonly type: "string";
37272
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
37273
+ readonly example: "100.00";
37274
+ }, {
37275
+ readonly description: "Discount value on the total amount before tax of the line";
37276
+ readonly example: "25";
37277
+ }];
37278
+ }, {
37279
+ readonly type: "string";
37280
+ readonly nullable: true;
37281
+ readonly enum: readonly [null];
37282
+ }];
37527
37283
  };
37528
37284
  };
37529
37285
  readonly required: readonly ["type", "value"];
@@ -37600,9 +37356,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
37600
37356
  readonly enum: readonly ["absolute", "relative"];
37601
37357
  };
37602
37358
  readonly value: {
37603
- readonly description: "Discount value on the total amount before tax of the line";
37604
- readonly type: "string";
37605
- readonly example: "25";
37359
+ readonly allOf: readonly [{
37360
+ readonly type: "string";
37361
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
37362
+ readonly example: "100.00";
37363
+ }, {
37364
+ readonly description: "Discount value on the total amount before tax of the line";
37365
+ readonly example: "25";
37366
+ }];
37606
37367
  };
37607
37368
  };
37608
37369
  readonly required: readonly ["type", "value"];
@@ -37667,9 +37428,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
37667
37428
  readonly enum: readonly ["absolute", "relative"];
37668
37429
  };
37669
37430
  readonly value: {
37670
- readonly description: "Discount value on the total amount before tax of the line";
37671
- readonly type: "string";
37672
- readonly example: "25";
37431
+ readonly allOf: readonly [{
37432
+ readonly type: "string";
37433
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
37434
+ readonly example: "100.00";
37435
+ }, {
37436
+ readonly description: "Discount value on the total amount before tax of the line";
37437
+ readonly example: "25";
37438
+ }];
37673
37439
  };
37674
37440
  };
37675
37441
  readonly required: readonly ["type", "value"];
@@ -37749,9 +37515,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
37749
37515
  readonly enum: readonly ["absolute", "relative"];
37750
37516
  };
37751
37517
  readonly value: {
37752
- readonly description: "Discount value on the total amount before tax of the line";
37753
- readonly type: "string";
37754
- readonly example: "25";
37518
+ readonly allOf: readonly [{
37519
+ readonly type: "string";
37520
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
37521
+ readonly example: "100.00";
37522
+ }, {
37523
+ readonly description: "Discount value on the total amount before tax of the line";
37524
+ readonly example: "25";
37525
+ }];
37755
37526
  };
37756
37527
  };
37757
37528
  readonly required: readonly ["type", "value"];
@@ -39496,9 +39267,14 @@ declare const Quotes__ResponseSchema: {
39496
39267
  readonly enum: readonly ["absolute", "relative"];
39497
39268
  };
39498
39269
  readonly value: {
39499
- readonly description: "Discount value on the total amount before tax of the line";
39500
- readonly type: "string";
39501
- readonly example: "25";
39270
+ readonly allOf: readonly [{
39271
+ readonly type: "string";
39272
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39273
+ readonly example: "100.00";
39274
+ }, {
39275
+ readonly description: "Discount value on the total amount before tax of the line";
39276
+ readonly example: "25";
39277
+ }];
39502
39278
  };
39503
39279
  };
39504
39280
  readonly required: readonly ["type", "value"];
@@ -39704,9 +39480,14 @@ declare const Quotes__InvoiceLineWithProduct_RequestSchema: {
39704
39480
  readonly enum: readonly ["absolute", "relative"];
39705
39481
  };
39706
39482
  readonly value: {
39707
- readonly description: "Discount value on the total amount before tax of the line";
39708
- readonly type: "string";
39709
- readonly example: "10";
39483
+ readonly allOf: readonly [{
39484
+ readonly type: "string";
39485
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39486
+ readonly example: "100.00";
39487
+ }, {
39488
+ readonly description: "Discount value on the total amount before tax of the line";
39489
+ readonly example: "10";
39490
+ }];
39710
39491
  };
39711
39492
  };
39712
39493
  readonly required: readonly ["type", "value"];
@@ -39773,9 +39554,14 @@ declare const Quotes__InvoiceLineWithoutProduct_RequestSchema: {
39773
39554
  readonly enum: readonly ["absolute", "relative"];
39774
39555
  };
39775
39556
  readonly value: {
39776
- readonly description: "Discount value on the total amount before tax of the line";
39777
- readonly type: "string";
39778
- readonly example: "10";
39557
+ readonly allOf: readonly [{
39558
+ readonly type: "string";
39559
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39560
+ readonly example: "100.00";
39561
+ }, {
39562
+ readonly description: "Discount value on the total amount before tax of the line";
39563
+ readonly example: "10";
39564
+ }];
39779
39565
  };
39780
39566
  };
39781
39567
  readonly required: readonly ["type", "value"];
@@ -39856,9 +39642,14 @@ declare const Quotes__Post_RequestSchema: {
39856
39642
  readonly enum: readonly ["absolute", "relative"];
39857
39643
  };
39858
39644
  readonly value: {
39859
- readonly description: "Discount value on the total amount before tax of the quote";
39860
- readonly type: "string";
39861
- readonly example: "25";
39645
+ readonly allOf: readonly [{
39646
+ readonly type: "string";
39647
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39648
+ readonly example: "100.00";
39649
+ }, {
39650
+ readonly description: "Discount value on the total amount before tax of the quote";
39651
+ readonly example: "25";
39652
+ }];
39862
39653
  };
39863
39654
  };
39864
39655
  readonly required: readonly ["type", "value"];
@@ -39962,9 +39753,14 @@ declare const Quotes__Post_RequestSchema: {
39962
39753
  readonly enum: readonly ["absolute", "relative"];
39963
39754
  };
39964
39755
  readonly value: {
39965
- readonly description: "Discount value on the total amount before tax of the line";
39966
- readonly type: "string";
39967
- readonly example: "10";
39756
+ readonly allOf: readonly [{
39757
+ readonly type: "string";
39758
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39759
+ readonly example: "100.00";
39760
+ }, {
39761
+ readonly description: "Discount value on the total amount before tax of the line";
39762
+ readonly example: "10";
39763
+ }];
39968
39764
  };
39969
39765
  };
39970
39766
  readonly required: readonly ["type", "value"];
@@ -40030,9 +39826,14 @@ declare const Quotes__Post_RequestSchema: {
40030
39826
  readonly enum: readonly ["absolute", "relative"];
40031
39827
  };
40032
39828
  readonly value: {
40033
- readonly description: "Discount value on the total amount before tax of the line";
40034
- readonly type: "string";
40035
- readonly example: "10";
39829
+ readonly allOf: readonly [{
39830
+ readonly type: "string";
39831
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39832
+ readonly example: "100.00";
39833
+ }, {
39834
+ readonly description: "Discount value on the total amount before tax of the line";
39835
+ readonly example: "10";
39836
+ }];
40036
39837
  };
40037
39838
  };
40038
39839
  readonly required: readonly ["type", "value"];
@@ -40112,9 +39913,14 @@ declare const Quotes__Put_RequestSchema: {
40112
39913
  readonly enum: readonly ["absolute", "relative"];
40113
39914
  };
40114
39915
  readonly value: {
40115
- readonly description: "Discount value on the total amount before tax of the line";
40116
- readonly type: "string";
40117
- readonly example: "25";
39916
+ readonly allOf: readonly [{
39917
+ readonly type: "string";
39918
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
39919
+ readonly example: "100.00";
39920
+ }, {
39921
+ readonly description: "Discount value on the total amount before tax of the line";
39922
+ readonly example: "25";
39923
+ }];
40118
39924
  };
40119
39925
  };
40120
39926
  readonly required: readonly ["type", "value"];
@@ -40197,9 +40003,14 @@ declare const Quotes__Put_RequestSchema: {
40197
40003
  readonly enum: readonly ["absolute", "relative"];
40198
40004
  };
40199
40005
  readonly value: {
40200
- readonly description: "Discount value on the total amount before tax of the line";
40201
- readonly type: "string";
40202
- readonly example: "10";
40006
+ readonly allOf: readonly [{
40007
+ readonly type: "string";
40008
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
40009
+ readonly example: "100.00";
40010
+ }, {
40011
+ readonly description: "Discount value on the total amount before tax of the line";
40012
+ readonly example: "10";
40013
+ }];
40203
40014
  };
40204
40015
  };
40205
40016
  readonly required: readonly ["type", "value"];
@@ -40265,9 +40076,14 @@ declare const Quotes__Put_RequestSchema: {
40265
40076
  readonly enum: readonly ["absolute", "relative"];
40266
40077
  };
40267
40078
  readonly value: {
40268
- readonly description: "Discount value on the total amount before tax of the line";
40269
- readonly type: "string";
40270
- readonly example: "10";
40079
+ readonly allOf: readonly [{
40080
+ readonly type: "string";
40081
+ readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
40082
+ readonly example: "100.00";
40083
+ }, {
40084
+ readonly description: "Discount value on the total amount before tax of the line";
40085
+ readonly example: "10";
40086
+ }];
40271
40087
  };
40272
40088
  };
40273
40089
  readonly required: readonly ["type", "value"];
@@ -43273,5 +43089,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
43273
43089
  //#region src/index.d.ts
43274
43090
  declare function createClientWithApiKey(apiKey: string): Client;
43275
43091
  //#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 };
43092
+ 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, PDPAddressStatusesSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressStatuses, 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
43093
  //# sourceMappingURL=index.d.mts.map