@getyetty-sdk/pennylane 2026.4.26 → 2026.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +301 -726
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +146 -116
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -878,6 +878,7 @@ declare const Currency: {
|
|
|
878
878
|
readonly ZWL: "ZWL";
|
|
879
879
|
};
|
|
880
880
|
type Currency = (typeof Currency)[keyof typeof Currency];
|
|
881
|
+
type DecimalString = string;
|
|
881
882
|
type LedgerEntriesResponse = {
|
|
882
883
|
/**
|
|
883
884
|
* ID of the ledger entry
|
|
@@ -1203,7 +1204,7 @@ type LedgerEntryLinesCategoriesResponse = {
|
|
|
1203
1204
|
created_at: string;
|
|
1204
1205
|
updated_at: string;
|
|
1205
1206
|
};
|
|
1206
|
-
declare const
|
|
1207
|
+
declare const Currency2: {
|
|
1207
1208
|
readonly EUR: "EUR";
|
|
1208
1209
|
readonly USD: "USD";
|
|
1209
1210
|
readonly GBP: "GBP";
|
|
@@ -1373,7 +1374,7 @@ declare const SchemasCurrency: {
|
|
|
1373
1374
|
readonly ZMW: "ZMW";
|
|
1374
1375
|
readonly ZWL: "ZWL";
|
|
1375
1376
|
};
|
|
1376
|
-
type
|
|
1377
|
+
type Currency2 = (typeof Currency2)[keyof typeof Currency2];
|
|
1377
1378
|
/**
|
|
1378
1379
|
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
1379
1380
|
*/
|
|
@@ -1492,10 +1493,7 @@ type CustomerInvoicesResponse = {
|
|
|
1492
1493
|
*
|
|
1493
1494
|
*/
|
|
1494
1495
|
type: 'absolute' | 'relative';
|
|
1495
|
-
|
|
1496
|
-
* Discount value on the total amount before tax of the line
|
|
1497
|
-
*/
|
|
1498
|
-
value: string;
|
|
1496
|
+
value: string & unknown;
|
|
1499
1497
|
};
|
|
1500
1498
|
ledger_entry: {
|
|
1501
1499
|
/**
|
|
@@ -2197,10 +2195,7 @@ type CustomerInvoicesDraftInvoiceLineWithProductRequest = {
|
|
|
2197
2195
|
*
|
|
2198
2196
|
*/
|
|
2199
2197
|
type: 'absolute' | 'relative';
|
|
2200
|
-
|
|
2201
|
-
* Discount value on the total amount before tax of the line
|
|
2202
|
-
*/
|
|
2203
|
-
value: string;
|
|
2198
|
+
value: string & unknown;
|
|
2204
2199
|
};
|
|
2205
2200
|
/**
|
|
2206
2201
|
* The description of the invoice line
|
|
@@ -2251,10 +2246,7 @@ type CustomerInvoicesDraftInvoiceLineWithoutProductRequest = {
|
|
|
2251
2246
|
*
|
|
2252
2247
|
*/
|
|
2253
2248
|
type: 'absolute' | 'relative';
|
|
2254
|
-
|
|
2255
|
-
* Discount value on the total amount before tax of the line
|
|
2256
|
-
*/
|
|
2257
|
-
value: string;
|
|
2249
|
+
value: string & unknown;
|
|
2258
2250
|
};
|
|
2259
2251
|
/**
|
|
2260
2252
|
* The description of the invoice line
|
|
@@ -2382,10 +2374,7 @@ type CustomerInvoicesPostDraftRequest = {
|
|
|
2382
2374
|
*
|
|
2383
2375
|
*/
|
|
2384
2376
|
type: 'absolute' | 'relative';
|
|
2385
|
-
|
|
2386
|
-
* Discount value on the total amount before tax of the line
|
|
2387
|
-
*/
|
|
2388
|
-
value: string;
|
|
2377
|
+
value: string & unknown;
|
|
2389
2378
|
};
|
|
2390
2379
|
/**
|
|
2391
2380
|
* The description of the invoice line
|
|
@@ -2428,10 +2417,7 @@ type CustomerInvoicesPostDraftRequest = {
|
|
|
2428
2417
|
*
|
|
2429
2418
|
*/
|
|
2430
2419
|
type: 'absolute' | 'relative';
|
|
2431
|
-
|
|
2432
|
-
* Discount value on the total amount before tax of the line
|
|
2433
|
-
*/
|
|
2434
|
-
value: string;
|
|
2420
|
+
value: string & unknown;
|
|
2435
2421
|
};
|
|
2436
2422
|
/**
|
|
2437
2423
|
* The description of the invoice line
|
|
@@ -2488,10 +2474,7 @@ type CustomerInvoicesFinalizedInvoiceLineWithProductRequest = {
|
|
|
2488
2474
|
*
|
|
2489
2475
|
*/
|
|
2490
2476
|
type: 'absolute' | 'relative';
|
|
2491
|
-
|
|
2492
|
-
* Discount value on the total amount before tax of the line
|
|
2493
|
-
*/
|
|
2494
|
-
value: string;
|
|
2477
|
+
value: string & unknown;
|
|
2495
2478
|
};
|
|
2496
2479
|
/**
|
|
2497
2480
|
* The description of the invoice line
|
|
@@ -2552,10 +2535,7 @@ type CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest = {
|
|
|
2552
2535
|
*
|
|
2553
2536
|
*/
|
|
2554
2537
|
type: 'absolute' | 'relative';
|
|
2555
|
-
|
|
2556
|
-
* Discount value on the total amount before tax of the line
|
|
2557
|
-
*/
|
|
2558
|
-
value: string;
|
|
2538
|
+
value: string & unknown;
|
|
2559
2539
|
};
|
|
2560
2540
|
/**
|
|
2561
2541
|
* The description of the invoice line
|
|
@@ -2710,10 +2690,7 @@ type CustomerInvoicesPostFinalizedRequest = {
|
|
|
2710
2690
|
*
|
|
2711
2691
|
*/
|
|
2712
2692
|
type: 'absolute' | 'relative';
|
|
2713
|
-
|
|
2714
|
-
* Discount value on the total amount before tax of the line
|
|
2715
|
-
*/
|
|
2716
|
-
value: string;
|
|
2693
|
+
value: string & unknown;
|
|
2717
2694
|
};
|
|
2718
2695
|
/**
|
|
2719
2696
|
* The description of the invoice line
|
|
@@ -2766,10 +2743,7 @@ type CustomerInvoicesPostFinalizedRequest = {
|
|
|
2766
2743
|
*
|
|
2767
2744
|
*/
|
|
2768
2745
|
type: 'absolute' | 'relative';
|
|
2769
|
-
|
|
2770
|
-
* Discount value on the total amount before tax of the line
|
|
2771
|
-
*/
|
|
2772
|
-
value: string;
|
|
2746
|
+
value: string & unknown;
|
|
2773
2747
|
};
|
|
2774
2748
|
/**
|
|
2775
2749
|
* The description of the invoice line
|
|
@@ -3676,10 +3650,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3676
3650
|
*
|
|
3677
3651
|
*/
|
|
3678
3652
|
type: 'absolute' | 'relative';
|
|
3679
|
-
|
|
3680
|
-
* Discount value on the total amount before tax of the line
|
|
3681
|
-
*/
|
|
3682
|
-
value: string | null;
|
|
3653
|
+
value: (string & unknown) | null;
|
|
3683
3654
|
};
|
|
3684
3655
|
/**
|
|
3685
3656
|
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
@@ -3730,10 +3701,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3730
3701
|
*
|
|
3731
3702
|
*/
|
|
3732
3703
|
type: 'absolute' | 'relative';
|
|
3733
|
-
|
|
3734
|
-
* Discount value on the total amount before tax of the line
|
|
3735
|
-
*/
|
|
3736
|
-
value: string;
|
|
3704
|
+
value: string & unknown;
|
|
3737
3705
|
};
|
|
3738
3706
|
/**
|
|
3739
3707
|
* The description of the invoice line
|
|
@@ -3776,10 +3744,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3776
3744
|
*
|
|
3777
3745
|
*/
|
|
3778
3746
|
type: 'absolute' | 'relative';
|
|
3779
|
-
|
|
3780
|
-
* Discount value on the total amount before tax of the line
|
|
3781
|
-
*/
|
|
3782
|
-
value: string;
|
|
3747
|
+
value: string & unknown;
|
|
3783
3748
|
};
|
|
3784
3749
|
/**
|
|
3785
3750
|
* The description of the invoice line
|
|
@@ -3831,10 +3796,7 @@ type CustomerInvoicesPutDraftRequest = {
|
|
|
3831
3796
|
*
|
|
3832
3797
|
*/
|
|
3833
3798
|
type: 'absolute' | 'relative';
|
|
3834
|
-
|
|
3835
|
-
* Discount value on the total amount before tax of the line
|
|
3836
|
-
*/
|
|
3837
|
-
value: string;
|
|
3799
|
+
value: string & unknown;
|
|
3838
3800
|
};
|
|
3839
3801
|
/**
|
|
3840
3802
|
* Has to correspond to the rank number of an invoice line section in which the invoice line should be
|
|
@@ -4724,10 +4686,7 @@ type QuotesResponse = {
|
|
|
4724
4686
|
*
|
|
4725
4687
|
*/
|
|
4726
4688
|
type: 'absolute' | 'relative';
|
|
4727
|
-
|
|
4728
|
-
* Discount value on the total amount before tax of the line
|
|
4729
|
-
*/
|
|
4730
|
-
value: string;
|
|
4689
|
+
value: string & unknown;
|
|
4731
4690
|
};
|
|
4732
4691
|
/**
|
|
4733
4692
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -4848,10 +4807,7 @@ type QuotesInvoiceLineWithProductRequest = {
|
|
|
4848
4807
|
*
|
|
4849
4808
|
*/
|
|
4850
4809
|
type: 'absolute' | 'relative';
|
|
4851
|
-
|
|
4852
|
-
* Discount value on the total amount before tax of the line
|
|
4853
|
-
*/
|
|
4854
|
-
value: string;
|
|
4810
|
+
value: string & unknown;
|
|
4855
4811
|
};
|
|
4856
4812
|
};
|
|
4857
4813
|
/**
|
|
@@ -4902,10 +4858,7 @@ type QuotesInvoiceLineWithoutProductRequest = {
|
|
|
4902
4858
|
*
|
|
4903
4859
|
*/
|
|
4904
4860
|
type: 'absolute' | 'relative';
|
|
4905
|
-
|
|
4906
|
-
* Discount value on the total amount before tax of the line
|
|
4907
|
-
*/
|
|
4908
|
-
value: string;
|
|
4861
|
+
value: string & unknown;
|
|
4909
4862
|
};
|
|
4910
4863
|
};
|
|
4911
4864
|
/**
|
|
@@ -4957,10 +4910,7 @@ type QuotesPostRequest = {
|
|
|
4957
4910
|
*
|
|
4958
4911
|
*/
|
|
4959
4912
|
type: 'absolute' | 'relative';
|
|
4960
|
-
|
|
4961
|
-
* Discount value on the total amount before tax of the quote
|
|
4962
|
-
*/
|
|
4963
|
-
value: string;
|
|
4913
|
+
value: string & unknown;
|
|
4964
4914
|
};
|
|
4965
4915
|
invoice_line_sections?: Array<{
|
|
4966
4916
|
/**
|
|
@@ -5025,10 +4975,7 @@ type QuotesPostRequest = {
|
|
|
5025
4975
|
*
|
|
5026
4976
|
*/
|
|
5027
4977
|
type: 'absolute' | 'relative';
|
|
5028
|
-
|
|
5029
|
-
* Discount value on the total amount before tax of the line
|
|
5030
|
-
*/
|
|
5031
|
-
value: string;
|
|
4978
|
+
value: string & unknown;
|
|
5032
4979
|
};
|
|
5033
4980
|
} | {
|
|
5034
4981
|
/**
|
|
@@ -5071,10 +5018,7 @@ type QuotesPostRequest = {
|
|
|
5071
5018
|
*
|
|
5072
5019
|
*/
|
|
5073
5020
|
type: 'absolute' | 'relative';
|
|
5074
|
-
|
|
5075
|
-
* Discount value on the total amount before tax of the line
|
|
5076
|
-
*/
|
|
5077
|
-
value: string;
|
|
5021
|
+
value: string & unknown;
|
|
5078
5022
|
};
|
|
5079
5023
|
}>;
|
|
5080
5024
|
};
|
|
@@ -5123,10 +5067,7 @@ type QuotesPutRequest = {
|
|
|
5123
5067
|
*
|
|
5124
5068
|
*/
|
|
5125
5069
|
type: 'absolute' | 'relative';
|
|
5126
|
-
|
|
5127
|
-
* Discount value on the total amount before tax of the line
|
|
5128
|
-
*/
|
|
5129
|
-
value: string;
|
|
5070
|
+
value: string & unknown;
|
|
5130
5071
|
};
|
|
5131
5072
|
/**
|
|
5132
5073
|
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
@@ -5181,10 +5122,7 @@ type QuotesPutRequest = {
|
|
|
5181
5122
|
*
|
|
5182
5123
|
*/
|
|
5183
5124
|
type: 'absolute' | 'relative';
|
|
5184
|
-
|
|
5185
|
-
* Discount value on the total amount before tax of the line
|
|
5186
|
-
*/
|
|
5187
|
-
value: string;
|
|
5125
|
+
value: string & unknown;
|
|
5188
5126
|
};
|
|
5189
5127
|
} | {
|
|
5190
5128
|
/**
|
|
@@ -5227,10 +5165,7 @@ type QuotesPutRequest = {
|
|
|
5227
5165
|
*
|
|
5228
5166
|
*/
|
|
5229
5167
|
type: 'absolute' | 'relative';
|
|
5230
|
-
|
|
5231
|
-
* Discount value on the total amount before tax of the line
|
|
5232
|
-
*/
|
|
5233
|
-
value: string;
|
|
5168
|
+
value: string & unknown;
|
|
5234
5169
|
};
|
|
5235
5170
|
}>;
|
|
5236
5171
|
update?: Array<{
|
|
@@ -7315,98 +7250,6 @@ type UpdateLedgerAccountResponses = {
|
|
|
7315
7250
|
};
|
|
7316
7251
|
};
|
|
7317
7252
|
type UpdateLedgerAccountResponse = UpdateLedgerAccountResponses[keyof UpdateLedgerAccountResponses];
|
|
7318
|
-
type GetLedgerAttachmentsData = {
|
|
7319
|
-
body?: never;
|
|
7320
|
-
path?: never;
|
|
7321
|
-
query?: {
|
|
7322
|
-
/**
|
|
7323
|
-
* Attachments are paginated, this is the current page which will be returned. The page index is starting at 1.
|
|
7324
|
-
*/
|
|
7325
|
-
page?: number;
|
|
7326
|
-
/**
|
|
7327
|
-
* Attachments are paginated. By default, you get 20 attachments per page. You can specify another number of attachments per page.
|
|
7328
|
-
*/
|
|
7329
|
-
per_page?: number;
|
|
7330
|
-
};
|
|
7331
|
-
url: '/api/external/v2/ledger_attachments';
|
|
7332
|
-
};
|
|
7333
|
-
type GetLedgerAttachmentsErrors = {
|
|
7334
|
-
/**
|
|
7335
|
-
* Bad request
|
|
7336
|
-
*/
|
|
7337
|
-
400: {
|
|
7338
|
-
error: string;
|
|
7339
|
-
status: number;
|
|
7340
|
-
} | {
|
|
7341
|
-
message: string;
|
|
7342
|
-
} | {
|
|
7343
|
-
message: string;
|
|
7344
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
7345
|
-
} | {
|
|
7346
|
-
message: string;
|
|
7347
|
-
field: string;
|
|
7348
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
7349
|
-
} | {
|
|
7350
|
-
message: string;
|
|
7351
|
-
payload: string;
|
|
7352
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
7353
|
-
} | {
|
|
7354
|
-
message: string;
|
|
7355
|
-
field: string;
|
|
7356
|
-
payload: string;
|
|
7357
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
7358
|
-
};
|
|
7359
|
-
/**
|
|
7360
|
-
* Access token is missing or invalid
|
|
7361
|
-
*/
|
|
7362
|
-
401: {
|
|
7363
|
-
error: string;
|
|
7364
|
-
status: number;
|
|
7365
|
-
};
|
|
7366
|
-
/**
|
|
7367
|
-
* Access to this resource forbidden
|
|
7368
|
-
*/
|
|
7369
|
-
403: {
|
|
7370
|
-
error: string;
|
|
7371
|
-
status: number;
|
|
7372
|
-
};
|
|
7373
|
-
/**
|
|
7374
|
-
* The resource was not found
|
|
7375
|
-
*/
|
|
7376
|
-
404: {
|
|
7377
|
-
error: string;
|
|
7378
|
-
status: number;
|
|
7379
|
-
};
|
|
7380
|
-
};
|
|
7381
|
-
type GetLedgerAttachmentsError = GetLedgerAttachmentsErrors[keyof GetLedgerAttachmentsErrors];
|
|
7382
|
-
type GetLedgerAttachmentsResponses = {
|
|
7383
|
-
/**
|
|
7384
|
-
* Returns a list of attachments
|
|
7385
|
-
*/
|
|
7386
|
-
200: {
|
|
7387
|
-
/**
|
|
7388
|
-
* The total number of pages available
|
|
7389
|
-
*/
|
|
7390
|
-
total_pages: number;
|
|
7391
|
-
/**
|
|
7392
|
-
* The current page returned
|
|
7393
|
-
*/
|
|
7394
|
-
current_page: number;
|
|
7395
|
-
/**
|
|
7396
|
-
* The number of items returned per page
|
|
7397
|
-
*/
|
|
7398
|
-
per_page: number;
|
|
7399
|
-
/**
|
|
7400
|
-
* The total number of items available
|
|
7401
|
-
*/
|
|
7402
|
-
total_items: number;
|
|
7403
|
-
items: Array<{
|
|
7404
|
-
id: number;
|
|
7405
|
-
filename: string;
|
|
7406
|
-
}>;
|
|
7407
|
-
};
|
|
7408
|
-
};
|
|
7409
|
-
type GetLedgerAttachmentsResponse = GetLedgerAttachmentsResponses[keyof GetLedgerAttachmentsResponses];
|
|
7410
7253
|
type PostLedgerAttachmentsData = {
|
|
7411
7254
|
body: {
|
|
7412
7255
|
/**
|
|
@@ -7810,14 +7653,8 @@ type PostLedgerEntriesData = {
|
|
|
7810
7653
|
*
|
|
7811
7654
|
*/
|
|
7812
7655
|
ledger_entry_lines: Array<{
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
*/
|
|
7816
|
-
debit: string;
|
|
7817
|
-
/**
|
|
7818
|
-
* Credit amount for the entry line
|
|
7819
|
-
*/
|
|
7820
|
-
credit: string;
|
|
7656
|
+
debit: string & unknown;
|
|
7657
|
+
credit: string & unknown;
|
|
7821
7658
|
/**
|
|
7822
7659
|
* Ledger account ID
|
|
7823
7660
|
*/
|
|
@@ -8246,14 +8083,8 @@ type PutLedgerEntriesData = {
|
|
|
8246
8083
|
*/
|
|
8247
8084
|
ledger_entry_lines?: {
|
|
8248
8085
|
create?: Array<{
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
*/
|
|
8252
|
-
debit: string;
|
|
8253
|
-
/**
|
|
8254
|
-
* Credit amount for the entry line
|
|
8255
|
-
*/
|
|
8256
|
-
credit: string;
|
|
8086
|
+
debit: string & unknown;
|
|
8087
|
+
credit: string & unknown;
|
|
8257
8088
|
/**
|
|
8258
8089
|
* Ledger account ID
|
|
8259
8090
|
*/
|
|
@@ -8268,14 +8099,8 @@ type PutLedgerEntriesData = {
|
|
|
8268
8099
|
* ID of the entry line
|
|
8269
8100
|
*/
|
|
8270
8101
|
id: number;
|
|
8271
|
-
|
|
8272
|
-
|
|
8273
|
-
*/
|
|
8274
|
-
debit?: string;
|
|
8275
|
-
/**
|
|
8276
|
-
* Credit amount for the entry line
|
|
8277
|
-
*/
|
|
8278
|
-
credit?: string;
|
|
8102
|
+
debit?: string & unknown;
|
|
8103
|
+
credit?: string & unknown;
|
|
8279
8104
|
/**
|
|
8280
8105
|
* Ledger account ID
|
|
8281
8106
|
*/
|
|
@@ -10128,10 +9953,7 @@ type GetCustomerInvoicesResponses = {
|
|
|
10128
9953
|
*
|
|
10129
9954
|
*/
|
|
10130
9955
|
type: 'absolute' | 'relative';
|
|
10131
|
-
|
|
10132
|
-
* Discount value on the total amount before tax of the line
|
|
10133
|
-
*/
|
|
10134
|
-
value: string;
|
|
9956
|
+
value: string & unknown;
|
|
10135
9957
|
};
|
|
10136
9958
|
ledger_entry: {
|
|
10137
9959
|
/**
|
|
@@ -10531,10 +10353,7 @@ type PostCustomerInvoicesData = {
|
|
|
10531
10353
|
*
|
|
10532
10354
|
*/
|
|
10533
10355
|
type: 'absolute' | 'relative';
|
|
10534
|
-
|
|
10535
|
-
* Discount value on the total amount before tax of the line
|
|
10536
|
-
*/
|
|
10537
|
-
value: string;
|
|
10356
|
+
value: string & unknown;
|
|
10538
10357
|
};
|
|
10539
10358
|
/**
|
|
10540
10359
|
* The description of the invoice line
|
|
@@ -10577,10 +10396,7 @@ type PostCustomerInvoicesData = {
|
|
|
10577
10396
|
*
|
|
10578
10397
|
*/
|
|
10579
10398
|
type: 'absolute' | 'relative';
|
|
10580
|
-
|
|
10581
|
-
* Discount value on the total amount before tax of the line
|
|
10582
|
-
*/
|
|
10583
|
-
value: string;
|
|
10399
|
+
value: string & unknown;
|
|
10584
10400
|
};
|
|
10585
10401
|
/**
|
|
10586
10402
|
* The description of the invoice line
|
|
@@ -10722,10 +10538,7 @@ type PostCustomerInvoicesData = {
|
|
|
10722
10538
|
*
|
|
10723
10539
|
*/
|
|
10724
10540
|
type: 'absolute' | 'relative';
|
|
10725
|
-
|
|
10726
|
-
* Discount value on the total amount before tax of the line
|
|
10727
|
-
*/
|
|
10728
|
-
value: string;
|
|
10541
|
+
value: string & unknown;
|
|
10729
10542
|
};
|
|
10730
10543
|
/**
|
|
10731
10544
|
* The description of the invoice line
|
|
@@ -10778,10 +10591,7 @@ type PostCustomerInvoicesData = {
|
|
|
10778
10591
|
*
|
|
10779
10592
|
*/
|
|
10780
10593
|
type: 'absolute' | 'relative';
|
|
10781
|
-
|
|
10782
|
-
* Discount value on the total amount before tax of the line
|
|
10783
|
-
*/
|
|
10784
|
-
value: string;
|
|
10594
|
+
value: string & unknown;
|
|
10785
10595
|
};
|
|
10786
10596
|
/**
|
|
10787
10597
|
* The description of the invoice line
|
|
@@ -10943,10 +10753,7 @@ type PostCustomerInvoicesResponses = {
|
|
|
10943
10753
|
*
|
|
10944
10754
|
*/
|
|
10945
10755
|
type: 'absolute' | 'relative';
|
|
10946
|
-
|
|
10947
|
-
* Discount value on the total amount before tax of the line
|
|
10948
|
-
*/
|
|
10949
|
-
value: string;
|
|
10756
|
+
value: string & unknown;
|
|
10950
10757
|
};
|
|
10951
10758
|
ledger_entry: {
|
|
10952
10759
|
/**
|
|
@@ -11125,26 +10932,11 @@ type ImportCustomerInvoicesData = {
|
|
|
11125
10932
|
*/
|
|
11126
10933
|
invoice_number?: string;
|
|
11127
10934
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
11128
|
-
|
|
11129
|
-
|
|
11130
|
-
|
|
11131
|
-
|
|
11132
|
-
|
|
11133
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
11134
|
-
*/
|
|
11135
|
-
currency_amount: string;
|
|
11136
|
-
/**
|
|
11137
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
11138
|
-
*/
|
|
11139
|
-
amount?: string;
|
|
11140
|
-
/**
|
|
11141
|
-
* Invoice taxable amount (in invoice currency)
|
|
11142
|
-
*/
|
|
11143
|
-
currency_tax: string;
|
|
11144
|
-
/**
|
|
11145
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
11146
|
-
*/
|
|
11147
|
-
tax?: string;
|
|
10935
|
+
currency_amount_before_tax: string & unknown;
|
|
10936
|
+
currency_amount: string & unknown;
|
|
10937
|
+
amount?: string & unknown;
|
|
10938
|
+
currency_tax: string & unknown;
|
|
10939
|
+
tax?: string & unknown;
|
|
11148
10940
|
/**
|
|
11149
10941
|
* Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
|
|
11150
10942
|
*/
|
|
@@ -11167,22 +10959,10 @@ type ImportCustomerInvoicesData = {
|
|
|
11167
10959
|
provider_field_value: string;
|
|
11168
10960
|
};
|
|
11169
10961
|
invoice_lines: Array<{
|
|
11170
|
-
|
|
11171
|
-
|
|
11172
|
-
|
|
11173
|
-
|
|
11174
|
-
/**
|
|
11175
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
11176
|
-
*/
|
|
11177
|
-
amount?: string;
|
|
11178
|
-
/**
|
|
11179
|
-
* Invoice line taxable amount (in invoice currency)
|
|
11180
|
-
*/
|
|
11181
|
-
currency_tax: string;
|
|
11182
|
-
/**
|
|
11183
|
-
* Invoice line taxable amount (in euros). If the currency is euro, currency_tax and tax are identical.
|
|
11184
|
-
*/
|
|
11185
|
-
tax?: string;
|
|
10962
|
+
currency_amount: string & unknown;
|
|
10963
|
+
amount?: string & unknown;
|
|
10964
|
+
currency_tax: string & unknown;
|
|
10965
|
+
tax?: string & unknown;
|
|
11186
10966
|
/**
|
|
11187
10967
|
* Line item label.
|
|
11188
10968
|
*
|
|
@@ -11400,10 +11180,7 @@ type ImportCustomerInvoicesResponses = {
|
|
|
11400
11180
|
*
|
|
11401
11181
|
*/
|
|
11402
11182
|
type: 'absolute' | 'relative';
|
|
11403
|
-
|
|
11404
|
-
* Discount value on the total amount before tax of the line
|
|
11405
|
-
*/
|
|
11406
|
-
value: string;
|
|
11183
|
+
value: string & unknown;
|
|
11407
11184
|
};
|
|
11408
11185
|
ledger_entry: {
|
|
11409
11186
|
/**
|
|
@@ -11827,10 +11604,7 @@ type CreateCustomerInvoiceFromQuoteResponses = {
|
|
|
11827
11604
|
*
|
|
11828
11605
|
*/
|
|
11829
11606
|
type: 'absolute' | 'relative';
|
|
11830
|
-
|
|
11831
|
-
* Discount value on the total amount before tax of the line
|
|
11832
|
-
*/
|
|
11833
|
-
value: string;
|
|
11607
|
+
value: string & unknown;
|
|
11834
11608
|
};
|
|
11835
11609
|
ledger_entry: {
|
|
11836
11610
|
/**
|
|
@@ -12353,10 +12127,7 @@ type PostBillingSubscriptionsData = {
|
|
|
12353
12127
|
*
|
|
12354
12128
|
*/
|
|
12355
12129
|
type: 'absolute' | 'relative';
|
|
12356
|
-
|
|
12357
|
-
* Discount value on the total amount before tax
|
|
12358
|
-
*/
|
|
12359
|
-
value: string;
|
|
12130
|
+
value: string & unknown;
|
|
12360
12131
|
};
|
|
12361
12132
|
invoice_line_sections?: Array<{
|
|
12362
12133
|
/**
|
|
@@ -12998,10 +12769,7 @@ type PutBillingSubscriptionsData = {
|
|
|
12998
12769
|
*
|
|
12999
12770
|
*/
|
|
13000
12771
|
type: 'absolute' | 'relative';
|
|
13001
|
-
|
|
13002
|
-
* Discount value on the total amount before tax
|
|
13003
|
-
*/
|
|
13004
|
-
value: string;
|
|
12772
|
+
value: string & unknown;
|
|
13005
12773
|
};
|
|
13006
12774
|
/**
|
|
13007
12775
|
* Add, update, delete invoice line sections.
|
|
@@ -13087,10 +12855,7 @@ type PutBillingSubscriptionsData = {
|
|
|
13087
12855
|
*
|
|
13088
12856
|
*/
|
|
13089
12857
|
type: 'absolute' | 'relative';
|
|
13090
|
-
|
|
13091
|
-
* Discount value on the total amount before tax of the line
|
|
13092
|
-
*/
|
|
13093
|
-
value: string;
|
|
12858
|
+
value: string & unknown;
|
|
13094
12859
|
};
|
|
13095
12860
|
/**
|
|
13096
12861
|
* The ledger account ID
|
|
@@ -13142,10 +12907,7 @@ type PutBillingSubscriptionsData = {
|
|
|
13142
12907
|
*
|
|
13143
12908
|
*/
|
|
13144
12909
|
type: 'absolute' | 'relative';
|
|
13145
|
-
|
|
13146
|
-
* Discount value on the total amount before tax of the line
|
|
13147
|
-
*/
|
|
13148
|
-
value: string;
|
|
12910
|
+
value: string & unknown;
|
|
13149
12911
|
};
|
|
13150
12912
|
/**
|
|
13151
12913
|
* The ledger account ID
|
|
@@ -13977,10 +13739,7 @@ type PostProductsData = {
|
|
|
13977
13739
|
* You can use your own unique value when creating the product. If not provided, Pennylane will pick one for you. Value must be unique
|
|
13978
13740
|
*/
|
|
13979
13741
|
external_reference?: string;
|
|
13980
|
-
|
|
13981
|
-
* Product price without taxes
|
|
13982
|
-
*/
|
|
13983
|
-
price_before_tax: string;
|
|
13742
|
+
price_before_tax: string & unknown;
|
|
13984
13743
|
/**
|
|
13985
13744
|
* Product VAT rate. A 20% VAT in France is FR_200.
|
|
13986
13745
|
*/
|
|
@@ -14227,7 +13986,7 @@ type PutProductData = {
|
|
|
14227
13986
|
* The unique external reference assigned to this Product, assigned on creation either by you or Pennylane.
|
|
14228
13987
|
*/
|
|
14229
13988
|
external_reference?: string;
|
|
14230
|
-
price_before_tax?: string;
|
|
13989
|
+
price_before_tax?: string & unknown;
|
|
14231
13990
|
/**
|
|
14232
13991
|
* Product VAT rate. A 20% VAT in France is FR_200.
|
|
14233
13992
|
*/
|
|
@@ -14350,115 +14109,6 @@ type PutProductResponses = {
|
|
|
14350
14109
|
};
|
|
14351
14110
|
};
|
|
14352
14111
|
type PutProductResponse = PutProductResponses[keyof PutProductResponses];
|
|
14353
|
-
type GetFileAttachmentsData = {
|
|
14354
|
-
body?: never;
|
|
14355
|
-
path?: never;
|
|
14356
|
-
query?: {
|
|
14357
|
-
/**
|
|
14358
|
-
* Cursor for pagination. Use this to fetch the next set of results.
|
|
14359
|
-
* The cursor is an opaque string returned in the previous response's metadata.
|
|
14360
|
-
* Leave empty for the first request.
|
|
14361
|
-
*
|
|
14362
|
-
*/
|
|
14363
|
-
cursor?: string;
|
|
14364
|
-
/**
|
|
14365
|
-
* Number of items to return per request.
|
|
14366
|
-
* Defaults to 20 if not specified.
|
|
14367
|
-
* Must be between 1 and 100.
|
|
14368
|
-
*
|
|
14369
|
-
*/
|
|
14370
|
-
limit?: number;
|
|
14371
|
-
/**
|
|
14372
|
-
* You can choose to sort items on specific attributes
|
|
14373
|
-
* Sort field may be prefixed with `-` for descending order.
|
|
14374
|
-
* Example : `id` will sort by ascending order, `-id` will sort by descending order.
|
|
14375
|
-
* Available fields : `id`
|
|
14376
|
-
*
|
|
14377
|
-
*/
|
|
14378
|
-
sort?: string;
|
|
14379
|
-
};
|
|
14380
|
-
url: '/api/external/v2/file_attachments';
|
|
14381
|
-
};
|
|
14382
|
-
type GetFileAttachmentsErrors = {
|
|
14383
|
-
/**
|
|
14384
|
-
* Bad request
|
|
14385
|
-
*/
|
|
14386
|
-
400: {
|
|
14387
|
-
error: string;
|
|
14388
|
-
status: number;
|
|
14389
|
-
} | {
|
|
14390
|
-
message: string;
|
|
14391
|
-
} | {
|
|
14392
|
-
message: string;
|
|
14393
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
14394
|
-
} | {
|
|
14395
|
-
message: string;
|
|
14396
|
-
field: string;
|
|
14397
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
14398
|
-
} | {
|
|
14399
|
-
message: string;
|
|
14400
|
-
payload: string;
|
|
14401
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
14402
|
-
} | {
|
|
14403
|
-
message: string;
|
|
14404
|
-
field: string;
|
|
14405
|
-
payload: string;
|
|
14406
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
14407
|
-
};
|
|
14408
|
-
/**
|
|
14409
|
-
* Access token is missing or invalid
|
|
14410
|
-
*/
|
|
14411
|
-
401: {
|
|
14412
|
-
error: string;
|
|
14413
|
-
status: number;
|
|
14414
|
-
};
|
|
14415
|
-
/**
|
|
14416
|
-
* Access to this resource forbidden
|
|
14417
|
-
*/
|
|
14418
|
-
403: {
|
|
14419
|
-
error: string;
|
|
14420
|
-
status: number;
|
|
14421
|
-
};
|
|
14422
|
-
/**
|
|
14423
|
-
* The resource was not found
|
|
14424
|
-
*/
|
|
14425
|
-
404: {
|
|
14426
|
-
error: string;
|
|
14427
|
-
status: number;
|
|
14428
|
-
};
|
|
14429
|
-
};
|
|
14430
|
-
type GetFileAttachmentsError = GetFileAttachmentsErrors[keyof GetFileAttachmentsErrors];
|
|
14431
|
-
type GetFileAttachmentsResponses = {
|
|
14432
|
-
/**
|
|
14433
|
-
* A list of attachments
|
|
14434
|
-
*/
|
|
14435
|
-
200: {
|
|
14436
|
-
/**
|
|
14437
|
-
* Indicates whether additional results are available beyond this set.
|
|
14438
|
-
* Use this flag to determine if another request is needed.
|
|
14439
|
-
*
|
|
14440
|
-
*/
|
|
14441
|
-
has_more: boolean;
|
|
14442
|
-
/**
|
|
14443
|
-
* Cursor to retrieve the next set of results.
|
|
14444
|
-
* Include this value in the cursor parameter of your next request to fetch subsequent items.
|
|
14445
|
-
* A `null` `next_cursor` in the response indicates no further results.
|
|
14446
|
-
*
|
|
14447
|
-
*/
|
|
14448
|
-
next_cursor: string | null;
|
|
14449
|
-
items: Array<{
|
|
14450
|
-
id: number;
|
|
14451
|
-
/**
|
|
14452
|
-
* URL to the uploaded file.
|
|
14453
|
-
*/
|
|
14454
|
-
url: string;
|
|
14455
|
-
filename: string;
|
|
14456
|
-
created_at: string;
|
|
14457
|
-
updated_at: string;
|
|
14458
|
-
}>;
|
|
14459
|
-
};
|
|
14460
|
-
};
|
|
14461
|
-
type GetFileAttachmentsResponse = GetFileAttachmentsResponses[keyof GetFileAttachmentsResponses];
|
|
14462
14112
|
type PostFileAttachmentsData = {
|
|
14463
14113
|
body: {
|
|
14464
14114
|
/**
|
|
@@ -19032,10 +18682,7 @@ type GetCustomerInvoiceResponses = {
|
|
|
19032
18682
|
*
|
|
19033
18683
|
*/
|
|
19034
18684
|
type: 'absolute' | 'relative';
|
|
19035
|
-
|
|
19036
|
-
* Discount value on the total amount before tax of the line
|
|
19037
|
-
*/
|
|
19038
|
-
value: string;
|
|
18685
|
+
value: string & unknown;
|
|
19039
18686
|
};
|
|
19040
18687
|
ledger_entry: {
|
|
19041
18688
|
/**
|
|
@@ -19233,10 +18880,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19233
18880
|
*
|
|
19234
18881
|
*/
|
|
19235
18882
|
type: 'absolute' | 'relative';
|
|
19236
|
-
|
|
19237
|
-
* Discount value on the total amount before tax of the line
|
|
19238
|
-
*/
|
|
19239
|
-
value: string | null;
|
|
18883
|
+
value: (string & unknown) | null;
|
|
19240
18884
|
};
|
|
19241
18885
|
/**
|
|
19242
18886
|
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
@@ -19287,10 +18931,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19287
18931
|
*
|
|
19288
18932
|
*/
|
|
19289
18933
|
type: 'absolute' | 'relative';
|
|
19290
|
-
|
|
19291
|
-
* Discount value on the total amount before tax of the line
|
|
19292
|
-
*/
|
|
19293
|
-
value: string;
|
|
18934
|
+
value: string & unknown;
|
|
19294
18935
|
};
|
|
19295
18936
|
/**
|
|
19296
18937
|
* The description of the invoice line
|
|
@@ -19333,10 +18974,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19333
18974
|
*
|
|
19334
18975
|
*/
|
|
19335
18976
|
type: 'absolute' | 'relative';
|
|
19336
|
-
|
|
19337
|
-
* Discount value on the total amount before tax of the line
|
|
19338
|
-
*/
|
|
19339
|
-
value: string;
|
|
18977
|
+
value: string & unknown;
|
|
19340
18978
|
};
|
|
19341
18979
|
/**
|
|
19342
18980
|
* The description of the invoice line
|
|
@@ -19388,10 +19026,7 @@ type UpdateCustomerInvoiceData = {
|
|
|
19388
19026
|
*
|
|
19389
19027
|
*/
|
|
19390
19028
|
type: 'absolute' | 'relative';
|
|
19391
|
-
|
|
19392
|
-
* Discount value on the total amount before tax of the line
|
|
19393
|
-
*/
|
|
19394
|
-
value: string;
|
|
19029
|
+
value: string & unknown;
|
|
19395
19030
|
};
|
|
19396
19031
|
/**
|
|
19397
19032
|
* Has to correspond to the rank number of an invoice line section in which the invoice line should be
|
|
@@ -19616,10 +19251,7 @@ type UpdateCustomerInvoiceResponses = {
|
|
|
19616
19251
|
*
|
|
19617
19252
|
*/
|
|
19618
19253
|
type: 'absolute' | 'relative';
|
|
19619
|
-
|
|
19620
|
-
* Discount value on the total amount before tax of the line
|
|
19621
|
-
*/
|
|
19622
|
-
value: string;
|
|
19254
|
+
value: string & unknown;
|
|
19623
19255
|
};
|
|
19624
19256
|
ledger_entry: {
|
|
19625
19257
|
/**
|
|
@@ -20144,26 +19776,11 @@ type UpdateImportedCustomerInvoiceData = {
|
|
|
20144
19776
|
*/
|
|
20145
19777
|
invoice_number?: string;
|
|
20146
19778
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
20147
|
-
|
|
20148
|
-
|
|
20149
|
-
|
|
20150
|
-
|
|
20151
|
-
|
|
20152
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
20153
|
-
*/
|
|
20154
|
-
currency_amount?: string;
|
|
20155
|
-
/**
|
|
20156
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
20157
|
-
*/
|
|
20158
|
-
amount?: string;
|
|
20159
|
-
/**
|
|
20160
|
-
* Invoice taxable amount (in invoice currency)
|
|
20161
|
-
*/
|
|
20162
|
-
currency_tax?: string;
|
|
20163
|
-
/**
|
|
20164
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
20165
|
-
*/
|
|
20166
|
-
tax?: string;
|
|
19779
|
+
currency_amount_before_tax?: string & unknown;
|
|
19780
|
+
currency_amount?: string & unknown;
|
|
19781
|
+
amount?: string & unknown;
|
|
19782
|
+
currency_tax?: string & unknown;
|
|
19783
|
+
tax?: string & unknown;
|
|
20167
19784
|
/**
|
|
20168
19785
|
* Schema for creating/updating a transaction reference
|
|
20169
19786
|
*/
|
|
@@ -20186,22 +19803,10 @@ type UpdateImportedCustomerInvoiceData = {
|
|
|
20186
19803
|
*/
|
|
20187
19804
|
invoice_lines?: {
|
|
20188
19805
|
create?: Array<{
|
|
20189
|
-
|
|
20190
|
-
|
|
20191
|
-
|
|
20192
|
-
|
|
20193
|
-
/**
|
|
20194
|
-
* Invoice line amount in euros.
|
|
20195
|
-
*/
|
|
20196
|
-
amount?: string;
|
|
20197
|
-
/**
|
|
20198
|
-
* Invoice line taxable amount (in invoice currency)
|
|
20199
|
-
*/
|
|
20200
|
-
currency_tax: string;
|
|
20201
|
-
/**
|
|
20202
|
-
* Invoice line taxable amount (in euros). If the currency is euro, currency_tax and tax are identical.
|
|
20203
|
-
*/
|
|
20204
|
-
tax?: string;
|
|
19806
|
+
currency_amount: string & unknown;
|
|
19807
|
+
amount?: string & unknown;
|
|
19808
|
+
currency_tax: string & unknown;
|
|
19809
|
+
tax?: string & unknown;
|
|
20205
19810
|
/**
|
|
20206
19811
|
* Line item label.
|
|
20207
19812
|
*
|
|
@@ -20268,22 +19873,10 @@ type UpdateImportedCustomerInvoiceData = {
|
|
|
20268
19873
|
* ID of the invoice line
|
|
20269
19874
|
*/
|
|
20270
19875
|
id: number;
|
|
20271
|
-
|
|
20272
|
-
|
|
20273
|
-
|
|
20274
|
-
|
|
20275
|
-
/**
|
|
20276
|
-
* Invoice line amount in euros.
|
|
20277
|
-
*/
|
|
20278
|
-
amount?: string;
|
|
20279
|
-
/**
|
|
20280
|
-
* Invoice line taxable amount (in invoice currency)
|
|
20281
|
-
*/
|
|
20282
|
-
currency_tax?: string;
|
|
20283
|
-
/**
|
|
20284
|
-
* Invoice line taxable amount (in euros). If the currency is euro, currency_tax and tax are identical.
|
|
20285
|
-
*/
|
|
20286
|
-
tax?: string;
|
|
19876
|
+
currency_amount?: string & unknown;
|
|
19877
|
+
amount?: string & unknown;
|
|
19878
|
+
currency_tax?: string & unknown;
|
|
19879
|
+
tax?: string & unknown;
|
|
20287
19880
|
/**
|
|
20288
19881
|
* Line item label.
|
|
20289
19882
|
*
|
|
@@ -20512,10 +20105,7 @@ type UpdateImportedCustomerInvoiceResponses = {
|
|
|
20512
20105
|
*
|
|
20513
20106
|
*/
|
|
20514
20107
|
type: 'absolute' | 'relative';
|
|
20515
|
-
|
|
20516
|
-
* Discount value on the total amount before tax of the line
|
|
20517
|
-
*/
|
|
20518
|
-
value: string;
|
|
20108
|
+
value: string & unknown;
|
|
20519
20109
|
};
|
|
20520
20110
|
ledger_entry: {
|
|
20521
20111
|
/**
|
|
@@ -20818,10 +20408,7 @@ type FinalizeCustomerInvoiceResponses = {
|
|
|
20818
20408
|
*
|
|
20819
20409
|
*/
|
|
20820
20410
|
type: 'absolute' | 'relative';
|
|
20821
|
-
|
|
20822
|
-
* Discount value on the total amount before tax of the line
|
|
20823
|
-
*/
|
|
20824
|
-
value: string;
|
|
20411
|
+
value: string & unknown;
|
|
20825
20412
|
};
|
|
20826
20413
|
ledger_entry: {
|
|
20827
20414
|
/**
|
|
@@ -21129,10 +20716,7 @@ type LinkCreditNoteResponses = {
|
|
|
21129
20716
|
*
|
|
21130
20717
|
*/
|
|
21131
20718
|
type: 'absolute' | 'relative';
|
|
21132
|
-
|
|
21133
|
-
* Discount value on the total amount before tax of the line
|
|
21134
|
-
*/
|
|
21135
|
-
value: string;
|
|
20719
|
+
value: string & unknown;
|
|
21136
20720
|
};
|
|
21137
20721
|
ledger_entry: {
|
|
21138
20722
|
/**
|
|
@@ -21987,26 +21571,11 @@ type PutSupplierInvoiceData = {
|
|
|
21987
21571
|
*/
|
|
21988
21572
|
label?: string | null;
|
|
21989
21573
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
21990
|
-
|
|
21991
|
-
|
|
21992
|
-
|
|
21993
|
-
|
|
21994
|
-
|
|
21995
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
21996
|
-
*/
|
|
21997
|
-
currency_amount?: string;
|
|
21998
|
-
/**
|
|
21999
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
22000
|
-
*/
|
|
22001
|
-
amount?: string;
|
|
22002
|
-
/**
|
|
22003
|
-
* Invoice taxable amount (in invoice currency)
|
|
22004
|
-
*/
|
|
22005
|
-
currency_tax?: string;
|
|
22006
|
-
/**
|
|
22007
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
22008
|
-
*/
|
|
22009
|
-
tax?: string;
|
|
21574
|
+
currency_amount_before_tax?: string & unknown;
|
|
21575
|
+
currency_amount?: string & unknown;
|
|
21576
|
+
amount?: string & unknown;
|
|
21577
|
+
currency_tax?: string & unknown;
|
|
21578
|
+
tax?: string & unknown;
|
|
22010
21579
|
/**
|
|
22011
21580
|
* By adding this field you can automatically reconcile the newly imported invoice with a transaction. See documentation about [automatic payment matching](https://pennylane.readme.io/v2.0/docs/automating-payment-matching).
|
|
22012
21581
|
*/
|
|
@@ -22037,22 +21606,10 @@ type PutSupplierInvoiceData = {
|
|
|
22037
21606
|
* Invoice line description
|
|
22038
21607
|
*/
|
|
22039
21608
|
description?: string;
|
|
22040
|
-
|
|
22041
|
-
|
|
22042
|
-
|
|
22043
|
-
|
|
22044
|
-
/**
|
|
22045
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
22046
|
-
*/
|
|
22047
|
-
amount?: string;
|
|
22048
|
-
/**
|
|
22049
|
-
* Invoice line taxable amount (in invoice currency)
|
|
22050
|
-
*/
|
|
22051
|
-
currency_tax: string;
|
|
22052
|
-
/**
|
|
22053
|
-
* Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
22054
|
-
*/
|
|
22055
|
-
tax?: string;
|
|
21609
|
+
currency_amount: string & unknown;
|
|
21610
|
+
amount?: string & unknown;
|
|
21611
|
+
currency_tax: string & unknown;
|
|
21612
|
+
tax?: string & unknown;
|
|
22056
21613
|
/**
|
|
22057
21614
|
* The ledger account ID
|
|
22058
21615
|
*/
|
|
@@ -22093,22 +21650,10 @@ type PutSupplierInvoiceData = {
|
|
|
22093
21650
|
* Invoice line description
|
|
22094
21651
|
*/
|
|
22095
21652
|
description?: string;
|
|
22096
|
-
|
|
22097
|
-
|
|
22098
|
-
|
|
22099
|
-
|
|
22100
|
-
/**
|
|
22101
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
22102
|
-
*/
|
|
22103
|
-
amount?: string;
|
|
22104
|
-
/**
|
|
22105
|
-
* Invoice line taxable amount (in invoice currency)
|
|
22106
|
-
*/
|
|
22107
|
-
currency_tax?: string;
|
|
22108
|
-
/**
|
|
22109
|
-
* Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
22110
|
-
*/
|
|
22111
|
-
tax?: string;
|
|
21653
|
+
currency_amount?: string & unknown;
|
|
21654
|
+
amount?: string & unknown;
|
|
21655
|
+
currency_tax?: string & unknown;
|
|
21656
|
+
tax?: string & unknown;
|
|
22112
21657
|
/**
|
|
22113
21658
|
* The ledger account ID
|
|
22114
21659
|
*/
|
|
@@ -23179,26 +22724,11 @@ type ImportSupplierInvoiceData = {
|
|
|
23179
22724
|
*/
|
|
23180
22725
|
invoice_number?: string;
|
|
23181
22726
|
currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
23182
|
-
|
|
23183
|
-
|
|
23184
|
-
|
|
23185
|
-
|
|
23186
|
-
|
|
23187
|
-
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
23188
|
-
*/
|
|
23189
|
-
currency_amount: string;
|
|
23190
|
-
/**
|
|
23191
|
-
* Invoice amount in euros (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
23192
|
-
*/
|
|
23193
|
-
amount?: string;
|
|
23194
|
-
/**
|
|
23195
|
-
* Invoice taxable amount (in invoice currency)
|
|
23196
|
-
*/
|
|
23197
|
-
currency_tax: string;
|
|
23198
|
-
/**
|
|
23199
|
-
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
23200
|
-
*/
|
|
23201
|
-
tax?: string;
|
|
22727
|
+
currency_amount_before_tax: string & unknown;
|
|
22728
|
+
currency_amount: string & unknown;
|
|
22729
|
+
amount?: string & unknown;
|
|
22730
|
+
currency_tax: string & unknown;
|
|
22731
|
+
tax?: string & unknown;
|
|
23202
22732
|
/**
|
|
23203
22733
|
* Custom label for the invoice used on accounting (ledger) entries. If not provided, Pennylane generates a label automatically.
|
|
23204
22734
|
*/
|
|
@@ -23239,22 +22769,10 @@ type ImportSupplierInvoiceData = {
|
|
|
23239
22769
|
* @deprecated
|
|
23240
22770
|
*/
|
|
23241
22771
|
description?: string;
|
|
23242
|
-
|
|
23243
|
-
|
|
23244
|
-
|
|
23245
|
-
|
|
23246
|
-
/**
|
|
23247
|
-
* Invoice line amount in euros. If the currency is euro, `currency_amount` and `amount` are identical.
|
|
23248
|
-
*/
|
|
23249
|
-
amount?: string;
|
|
23250
|
-
/**
|
|
23251
|
-
* Invoice line taxable amount (in invoice currency)
|
|
23252
|
-
*/
|
|
23253
|
-
currency_tax: string;
|
|
23254
|
-
/**
|
|
23255
|
-
* Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
23256
|
-
*/
|
|
23257
|
-
tax?: string;
|
|
22772
|
+
currency_amount: string & unknown;
|
|
22773
|
+
amount?: string & unknown;
|
|
22774
|
+
currency_tax: string & unknown;
|
|
22775
|
+
tax?: string & unknown;
|
|
23258
22776
|
/**
|
|
23259
22777
|
* The ledger account ID
|
|
23260
22778
|
*/
|
|
@@ -27621,10 +27139,7 @@ type ListQuotesResponses = {
|
|
|
27621
27139
|
*
|
|
27622
27140
|
*/
|
|
27623
27141
|
type: 'absolute' | 'relative';
|
|
27624
|
-
|
|
27625
|
-
* Discount value on the total amount before tax of the line
|
|
27626
|
-
*/
|
|
27627
|
-
value: string;
|
|
27142
|
+
value: string & unknown;
|
|
27628
27143
|
};
|
|
27629
27144
|
/**
|
|
27630
27145
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -27745,10 +27260,7 @@ type PostQuotesData = {
|
|
|
27745
27260
|
*
|
|
27746
27261
|
*/
|
|
27747
27262
|
type: 'absolute' | 'relative';
|
|
27748
|
-
|
|
27749
|
-
* Discount value on the total amount before tax of the quote
|
|
27750
|
-
*/
|
|
27751
|
-
value: string;
|
|
27263
|
+
value: string & unknown;
|
|
27752
27264
|
};
|
|
27753
27265
|
invoice_line_sections?: Array<{
|
|
27754
27266
|
/**
|
|
@@ -27813,10 +27325,7 @@ type PostQuotesData = {
|
|
|
27813
27325
|
*
|
|
27814
27326
|
*/
|
|
27815
27327
|
type: 'absolute' | 'relative';
|
|
27816
|
-
|
|
27817
|
-
* Discount value on the total amount before tax of the line
|
|
27818
|
-
*/
|
|
27819
|
-
value: string;
|
|
27328
|
+
value: string & unknown;
|
|
27820
27329
|
};
|
|
27821
27330
|
} | {
|
|
27822
27331
|
/**
|
|
@@ -27859,10 +27368,7 @@ type PostQuotesData = {
|
|
|
27859
27368
|
*
|
|
27860
27369
|
*/
|
|
27861
27370
|
type: 'absolute' | 'relative';
|
|
27862
|
-
|
|
27863
|
-
* Discount value on the total amount before tax of the line
|
|
27864
|
-
*/
|
|
27865
|
-
value: string;
|
|
27371
|
+
value: string & unknown;
|
|
27866
27372
|
};
|
|
27867
27373
|
}>;
|
|
27868
27374
|
};
|
|
@@ -27991,10 +27497,7 @@ type PostQuotesResponses = {
|
|
|
27991
27497
|
*
|
|
27992
27498
|
*/
|
|
27993
27499
|
type: 'absolute' | 'relative';
|
|
27994
|
-
|
|
27995
|
-
* Discount value on the total amount before tax of the line
|
|
27996
|
-
*/
|
|
27997
|
-
value: string;
|
|
27500
|
+
value: string & unknown;
|
|
27998
27501
|
};
|
|
27999
27502
|
/**
|
|
28000
27503
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -28186,10 +27689,7 @@ type GetQuoteResponses = {
|
|
|
28186
27689
|
*
|
|
28187
27690
|
*/
|
|
28188
27691
|
type: 'absolute' | 'relative';
|
|
28189
|
-
|
|
28190
|
-
* Discount value on the total amount before tax of the line
|
|
28191
|
-
*/
|
|
28192
|
-
value: string;
|
|
27692
|
+
value: string & unknown;
|
|
28193
27693
|
};
|
|
28194
27694
|
/**
|
|
28195
27695
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -28305,10 +27805,7 @@ type UpdateQuoteData = {
|
|
|
28305
27805
|
*
|
|
28306
27806
|
*/
|
|
28307
27807
|
type: 'absolute' | 'relative';
|
|
28308
|
-
|
|
28309
|
-
* Discount value on the total amount before tax of the line
|
|
28310
|
-
*/
|
|
28311
|
-
value: string;
|
|
27808
|
+
value: string & unknown;
|
|
28312
27809
|
};
|
|
28313
27810
|
/**
|
|
28314
27811
|
* The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.
|
|
@@ -28363,10 +27860,7 @@ type UpdateQuoteData = {
|
|
|
28363
27860
|
*
|
|
28364
27861
|
*/
|
|
28365
27862
|
type: 'absolute' | 'relative';
|
|
28366
|
-
|
|
28367
|
-
* Discount value on the total amount before tax of the line
|
|
28368
|
-
*/
|
|
28369
|
-
value: string;
|
|
27863
|
+
value: string & unknown;
|
|
28370
27864
|
};
|
|
28371
27865
|
} | {
|
|
28372
27866
|
/**
|
|
@@ -28409,10 +27903,7 @@ type UpdateQuoteData = {
|
|
|
28409
27903
|
*
|
|
28410
27904
|
*/
|
|
28411
27905
|
type: 'absolute' | 'relative';
|
|
28412
|
-
|
|
28413
|
-
* Discount value on the total amount before tax of the line
|
|
28414
|
-
*/
|
|
28415
|
-
value: string;
|
|
27906
|
+
value: string & unknown;
|
|
28416
27907
|
};
|
|
28417
27908
|
}>;
|
|
28418
27909
|
update?: Array<{
|
|
@@ -28609,10 +28100,7 @@ type UpdateQuoteResponses = {
|
|
|
28609
28100
|
*
|
|
28610
28101
|
*/
|
|
28611
28102
|
type: 'absolute' | 'relative';
|
|
28612
|
-
|
|
28613
|
-
* Discount value on the total amount before tax of the line
|
|
28614
|
-
*/
|
|
28615
|
-
value: string;
|
|
28103
|
+
value: string & unknown;
|
|
28616
28104
|
};
|
|
28617
28105
|
/**
|
|
28618
28106
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -29406,10 +28894,7 @@ type UpdateStatusQuoteResponses = {
|
|
|
29406
28894
|
*
|
|
29407
28895
|
*/
|
|
29408
28896
|
type: 'absolute' | 'relative';
|
|
29409
|
-
|
|
29410
|
-
* Discount value on the total amount before tax of the line
|
|
29411
|
-
*/
|
|
29412
|
-
value: string;
|
|
28897
|
+
value: string & unknown;
|
|
29413
28898
|
};
|
|
29414
28899
|
/**
|
|
29415
28900
|
* Public URL of the quote file. The URL will expire after 30 minutes.
|
|
@@ -33287,6 +32772,11 @@ declare const CurrencySchema: {
|
|
|
33287
32772
|
readonly type: "string";
|
|
33288
32773
|
readonly enum: readonly ["EUR", "USD", "GBP", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYN", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CLF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MRU", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SLE", "SOS", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZMW", "ZWL"];
|
|
33289
32774
|
};
|
|
32775
|
+
declare const DecimalStringSchema: {
|
|
32776
|
+
readonly type: "string";
|
|
32777
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
32778
|
+
readonly example: "100.00";
|
|
32779
|
+
};
|
|
33290
32780
|
declare const LedgerEntries__ResponseSchema: {
|
|
33291
32781
|
readonly type: "object";
|
|
33292
32782
|
readonly additionalProperties: false;
|
|
@@ -33982,7 +33472,7 @@ declare const LedgerEntryLines__Categories__ResponseSchema: {
|
|
|
33982
33472
|
};
|
|
33983
33473
|
readonly required: readonly ["id", "label", "weight", "category_group", "analytical_code", "created_at", "updated_at"];
|
|
33984
33474
|
};
|
|
33985
|
-
declare const
|
|
33475
|
+
declare const Currency_2Schema: {
|
|
33986
33476
|
readonly type: "string";
|
|
33987
33477
|
readonly default: "EUR";
|
|
33988
33478
|
readonly enum: readonly ["EUR", "USD", "GBP", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYN", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CLF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MRU", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SLE", "SOS", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZMW", "ZWL"];
|
|
@@ -34097,9 +33587,14 @@ declare const CustomerInvoices__ResponseSchema: {
|
|
|
34097
33587
|
readonly enum: readonly ["absolute", "relative"];
|
|
34098
33588
|
};
|
|
34099
33589
|
readonly value: {
|
|
34100
|
-
readonly
|
|
34101
|
-
|
|
34102
|
-
|
|
33590
|
+
readonly allOf: readonly [{
|
|
33591
|
+
readonly type: "string";
|
|
33592
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
33593
|
+
readonly example: "100.00";
|
|
33594
|
+
}, {
|
|
33595
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
33596
|
+
readonly example: "25";
|
|
33597
|
+
}];
|
|
34103
33598
|
};
|
|
34104
33599
|
};
|
|
34105
33600
|
readonly required: readonly ["type", "value"];
|
|
@@ -34495,7 +33990,7 @@ declare const CustomerInvoices__InvoiceLineSchema: {
|
|
|
34495
33990
|
readonly value: {
|
|
34496
33991
|
readonly description: "Discount value on the total amount before tax of the invoice";
|
|
34497
33992
|
readonly type: "string";
|
|
34498
|
-
readonly example: 25;
|
|
33993
|
+
readonly example: "25";
|
|
34499
33994
|
};
|
|
34500
33995
|
};
|
|
34501
33996
|
readonly required: readonly ["type", "value"];
|
|
@@ -34644,7 +34139,7 @@ declare const CustomerInvoices__IncludedInvoiceLinesCollectionSchema: {
|
|
|
34644
34139
|
readonly value: {
|
|
34645
34140
|
readonly description: "Discount value on the total amount before tax of the invoice";
|
|
34646
34141
|
readonly type: "string";
|
|
34647
|
-
readonly example: 25;
|
|
34142
|
+
readonly example: "25";
|
|
34648
34143
|
};
|
|
34649
34144
|
};
|
|
34650
34145
|
readonly required: readonly ["type", "value"];
|
|
@@ -34820,7 +34315,7 @@ declare const CustomerInvoices__InclusionsSchema: {
|
|
|
34820
34315
|
readonly value: {
|
|
34821
34316
|
readonly description: "Discount value on the total amount before tax of the invoice";
|
|
34822
34317
|
readonly type: "string";
|
|
34823
|
-
readonly example: 25;
|
|
34318
|
+
readonly example: "25";
|
|
34824
34319
|
};
|
|
34825
34320
|
};
|
|
34826
34321
|
readonly required: readonly ["type", "value"];
|
|
@@ -34944,9 +34439,14 @@ declare const CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema: {
|
|
|
34944
34439
|
readonly enum: readonly ["absolute", "relative"];
|
|
34945
34440
|
};
|
|
34946
34441
|
readonly value: {
|
|
34947
|
-
readonly
|
|
34948
|
-
|
|
34949
|
-
|
|
34442
|
+
readonly allOf: readonly [{
|
|
34443
|
+
readonly type: "string";
|
|
34444
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34445
|
+
readonly example: "100.00";
|
|
34446
|
+
}, {
|
|
34447
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34448
|
+
readonly example: "25";
|
|
34449
|
+
}];
|
|
34950
34450
|
};
|
|
34951
34451
|
};
|
|
34952
34452
|
readonly required: readonly ["type", "value"];
|
|
@@ -35012,9 +34512,14 @@ declare const CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema: {
|
|
|
35012
34512
|
readonly enum: readonly ["absolute", "relative"];
|
|
35013
34513
|
};
|
|
35014
34514
|
readonly value: {
|
|
35015
|
-
readonly
|
|
35016
|
-
|
|
35017
|
-
|
|
34515
|
+
readonly allOf: readonly [{
|
|
34516
|
+
readonly type: "string";
|
|
34517
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34518
|
+
readonly example: "100.00";
|
|
34519
|
+
}, {
|
|
34520
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34521
|
+
readonly example: "25";
|
|
34522
|
+
}];
|
|
35018
34523
|
};
|
|
35019
34524
|
};
|
|
35020
34525
|
readonly required: readonly ["type", "value"];
|
|
@@ -35212,9 +34717,14 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
|
|
|
35212
34717
|
readonly enum: readonly ["absolute", "relative"];
|
|
35213
34718
|
};
|
|
35214
34719
|
readonly value: {
|
|
35215
|
-
readonly
|
|
35216
|
-
|
|
35217
|
-
|
|
34720
|
+
readonly allOf: readonly [{
|
|
34721
|
+
readonly type: "string";
|
|
34722
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34723
|
+
readonly example: "100.00";
|
|
34724
|
+
}, {
|
|
34725
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34726
|
+
readonly example: "25";
|
|
34727
|
+
}];
|
|
35218
34728
|
};
|
|
35219
34729
|
};
|
|
35220
34730
|
readonly required: readonly ["type", "value"];
|
|
@@ -35279,9 +34789,14 @@ declare const CustomerInvoices__PostDraft_RequestSchema: {
|
|
|
35279
34789
|
readonly enum: readonly ["absolute", "relative"];
|
|
35280
34790
|
};
|
|
35281
34791
|
readonly value: {
|
|
35282
|
-
readonly
|
|
35283
|
-
|
|
35284
|
-
|
|
34792
|
+
readonly allOf: readonly [{
|
|
34793
|
+
readonly type: "string";
|
|
34794
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34795
|
+
readonly example: "100.00";
|
|
34796
|
+
}, {
|
|
34797
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34798
|
+
readonly example: "25";
|
|
34799
|
+
}];
|
|
35285
34800
|
};
|
|
35286
34801
|
};
|
|
35287
34802
|
readonly required: readonly ["type", "value"];
|
|
@@ -35359,9 +34874,14 @@ declare const CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema: {
|
|
|
35359
34874
|
readonly enum: readonly ["absolute", "relative"];
|
|
35360
34875
|
};
|
|
35361
34876
|
readonly value: {
|
|
35362
|
-
readonly
|
|
35363
|
-
|
|
35364
|
-
|
|
34877
|
+
readonly allOf: readonly [{
|
|
34878
|
+
readonly type: "string";
|
|
34879
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34880
|
+
readonly example: "100.00";
|
|
34881
|
+
}, {
|
|
34882
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34883
|
+
readonly example: "25";
|
|
34884
|
+
}];
|
|
35365
34885
|
};
|
|
35366
34886
|
};
|
|
35367
34887
|
readonly required: readonly ["type", "value"];
|
|
@@ -35447,9 +34967,14 @@ declare const CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema
|
|
|
35447
34967
|
readonly enum: readonly ["absolute", "relative"];
|
|
35448
34968
|
};
|
|
35449
34969
|
readonly value: {
|
|
35450
|
-
readonly
|
|
35451
|
-
|
|
35452
|
-
|
|
34970
|
+
readonly allOf: readonly [{
|
|
34971
|
+
readonly type: "string";
|
|
34972
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
34973
|
+
readonly example: "100.00";
|
|
34974
|
+
}, {
|
|
34975
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
34976
|
+
readonly example: "25";
|
|
34977
|
+
}];
|
|
35453
34978
|
};
|
|
35454
34979
|
};
|
|
35455
34980
|
readonly required: readonly ["type", "value"];
|
|
@@ -35691,9 +35216,14 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
|
|
|
35691
35216
|
readonly enum: readonly ["absolute", "relative"];
|
|
35692
35217
|
};
|
|
35693
35218
|
readonly value: {
|
|
35694
|
-
readonly
|
|
35695
|
-
|
|
35696
|
-
|
|
35219
|
+
readonly allOf: readonly [{
|
|
35220
|
+
readonly type: "string";
|
|
35221
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
35222
|
+
readonly example: "100.00";
|
|
35223
|
+
}, {
|
|
35224
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
35225
|
+
readonly example: "25";
|
|
35226
|
+
}];
|
|
35697
35227
|
};
|
|
35698
35228
|
};
|
|
35699
35229
|
readonly required: readonly ["type", "value"];
|
|
@@ -35778,9 +35308,14 @@ declare const CustomerInvoices__PostFinalized_RequestSchema: {
|
|
|
35778
35308
|
readonly enum: readonly ["absolute", "relative"];
|
|
35779
35309
|
};
|
|
35780
35310
|
readonly value: {
|
|
35781
|
-
readonly
|
|
35782
|
-
|
|
35783
|
-
|
|
35311
|
+
readonly allOf: readonly [{
|
|
35312
|
+
readonly type: "string";
|
|
35313
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
35314
|
+
readonly example: "100.00";
|
|
35315
|
+
}, {
|
|
35316
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
35317
|
+
readonly example: "25";
|
|
35318
|
+
}];
|
|
35784
35319
|
};
|
|
35785
35320
|
};
|
|
35786
35321
|
readonly required: readonly ["type", "value"];
|
|
@@ -37721,10 +37256,20 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37721
37256
|
readonly enum: readonly ["absolute", "relative"];
|
|
37722
37257
|
};
|
|
37723
37258
|
readonly value: {
|
|
37724
|
-
readonly
|
|
37725
|
-
|
|
37726
|
-
|
|
37727
|
-
|
|
37259
|
+
readonly oneOf: readonly [{
|
|
37260
|
+
readonly allOf: readonly [{
|
|
37261
|
+
readonly type: "string";
|
|
37262
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37263
|
+
readonly example: "100.00";
|
|
37264
|
+
}, {
|
|
37265
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37266
|
+
readonly example: "25";
|
|
37267
|
+
}];
|
|
37268
|
+
}, {
|
|
37269
|
+
readonly type: "string";
|
|
37270
|
+
readonly nullable: true;
|
|
37271
|
+
readonly enum: readonly [null];
|
|
37272
|
+
}];
|
|
37728
37273
|
};
|
|
37729
37274
|
};
|
|
37730
37275
|
readonly required: readonly ["type", "value"];
|
|
@@ -37801,9 +37346,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37801
37346
|
readonly enum: readonly ["absolute", "relative"];
|
|
37802
37347
|
};
|
|
37803
37348
|
readonly value: {
|
|
37804
|
-
readonly
|
|
37805
|
-
|
|
37806
|
-
|
|
37349
|
+
readonly allOf: readonly [{
|
|
37350
|
+
readonly type: "string";
|
|
37351
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37352
|
+
readonly example: "100.00";
|
|
37353
|
+
}, {
|
|
37354
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37355
|
+
readonly example: "25";
|
|
37356
|
+
}];
|
|
37807
37357
|
};
|
|
37808
37358
|
};
|
|
37809
37359
|
readonly required: readonly ["type", "value"];
|
|
@@ -37868,9 +37418,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37868
37418
|
readonly enum: readonly ["absolute", "relative"];
|
|
37869
37419
|
};
|
|
37870
37420
|
readonly value: {
|
|
37871
|
-
readonly
|
|
37872
|
-
|
|
37873
|
-
|
|
37421
|
+
readonly allOf: readonly [{
|
|
37422
|
+
readonly type: "string";
|
|
37423
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37424
|
+
readonly example: "100.00";
|
|
37425
|
+
}, {
|
|
37426
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37427
|
+
readonly example: "25";
|
|
37428
|
+
}];
|
|
37874
37429
|
};
|
|
37875
37430
|
};
|
|
37876
37431
|
readonly required: readonly ["type", "value"];
|
|
@@ -37950,9 +37505,14 @@ declare const CustomerInvoices__PutDraft_RequestSchema: {
|
|
|
37950
37505
|
readonly enum: readonly ["absolute", "relative"];
|
|
37951
37506
|
};
|
|
37952
37507
|
readonly value: {
|
|
37953
|
-
readonly
|
|
37954
|
-
|
|
37955
|
-
|
|
37508
|
+
readonly allOf: readonly [{
|
|
37509
|
+
readonly type: "string";
|
|
37510
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
37511
|
+
readonly example: "100.00";
|
|
37512
|
+
}, {
|
|
37513
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
37514
|
+
readonly example: "25";
|
|
37515
|
+
}];
|
|
37956
37516
|
};
|
|
37957
37517
|
};
|
|
37958
37518
|
readonly required: readonly ["type", "value"];
|
|
@@ -39697,9 +39257,14 @@ declare const Quotes__ResponseSchema: {
|
|
|
39697
39257
|
readonly enum: readonly ["absolute", "relative"];
|
|
39698
39258
|
};
|
|
39699
39259
|
readonly value: {
|
|
39700
|
-
readonly
|
|
39701
|
-
|
|
39702
|
-
|
|
39260
|
+
readonly allOf: readonly [{
|
|
39261
|
+
readonly type: "string";
|
|
39262
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39263
|
+
readonly example: "100.00";
|
|
39264
|
+
}, {
|
|
39265
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39266
|
+
readonly example: "25";
|
|
39267
|
+
}];
|
|
39703
39268
|
};
|
|
39704
39269
|
};
|
|
39705
39270
|
readonly required: readonly ["type", "value"];
|
|
@@ -39905,9 +39470,14 @@ declare const Quotes__InvoiceLineWithProduct_RequestSchema: {
|
|
|
39905
39470
|
readonly enum: readonly ["absolute", "relative"];
|
|
39906
39471
|
};
|
|
39907
39472
|
readonly value: {
|
|
39908
|
-
readonly
|
|
39909
|
-
|
|
39910
|
-
|
|
39473
|
+
readonly allOf: readonly [{
|
|
39474
|
+
readonly type: "string";
|
|
39475
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39476
|
+
readonly example: "100.00";
|
|
39477
|
+
}, {
|
|
39478
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39479
|
+
readonly example: "10";
|
|
39480
|
+
}];
|
|
39911
39481
|
};
|
|
39912
39482
|
};
|
|
39913
39483
|
readonly required: readonly ["type", "value"];
|
|
@@ -39974,9 +39544,14 @@ declare const Quotes__InvoiceLineWithoutProduct_RequestSchema: {
|
|
|
39974
39544
|
readonly enum: readonly ["absolute", "relative"];
|
|
39975
39545
|
};
|
|
39976
39546
|
readonly value: {
|
|
39977
|
-
readonly
|
|
39978
|
-
|
|
39979
|
-
|
|
39547
|
+
readonly allOf: readonly [{
|
|
39548
|
+
readonly type: "string";
|
|
39549
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39550
|
+
readonly example: "100.00";
|
|
39551
|
+
}, {
|
|
39552
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39553
|
+
readonly example: "10";
|
|
39554
|
+
}];
|
|
39980
39555
|
};
|
|
39981
39556
|
};
|
|
39982
39557
|
readonly required: readonly ["type", "value"];
|
|
@@ -40057,9 +39632,14 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
40057
39632
|
readonly enum: readonly ["absolute", "relative"];
|
|
40058
39633
|
};
|
|
40059
39634
|
readonly value: {
|
|
40060
|
-
readonly
|
|
40061
|
-
|
|
40062
|
-
|
|
39635
|
+
readonly allOf: readonly [{
|
|
39636
|
+
readonly type: "string";
|
|
39637
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39638
|
+
readonly example: "100.00";
|
|
39639
|
+
}, {
|
|
39640
|
+
readonly description: "Discount value on the total amount before tax of the quote";
|
|
39641
|
+
readonly example: "25";
|
|
39642
|
+
}];
|
|
40063
39643
|
};
|
|
40064
39644
|
};
|
|
40065
39645
|
readonly required: readonly ["type", "value"];
|
|
@@ -40163,9 +39743,14 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
40163
39743
|
readonly enum: readonly ["absolute", "relative"];
|
|
40164
39744
|
};
|
|
40165
39745
|
readonly value: {
|
|
40166
|
-
readonly
|
|
40167
|
-
|
|
40168
|
-
|
|
39746
|
+
readonly allOf: readonly [{
|
|
39747
|
+
readonly type: "string";
|
|
39748
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39749
|
+
readonly example: "100.00";
|
|
39750
|
+
}, {
|
|
39751
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39752
|
+
readonly example: "10";
|
|
39753
|
+
}];
|
|
40169
39754
|
};
|
|
40170
39755
|
};
|
|
40171
39756
|
readonly required: readonly ["type", "value"];
|
|
@@ -40231,9 +39816,14 @@ declare const Quotes__Post_RequestSchema: {
|
|
|
40231
39816
|
readonly enum: readonly ["absolute", "relative"];
|
|
40232
39817
|
};
|
|
40233
39818
|
readonly value: {
|
|
40234
|
-
readonly
|
|
40235
|
-
|
|
40236
|
-
|
|
39819
|
+
readonly allOf: readonly [{
|
|
39820
|
+
readonly type: "string";
|
|
39821
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39822
|
+
readonly example: "100.00";
|
|
39823
|
+
}, {
|
|
39824
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39825
|
+
readonly example: "10";
|
|
39826
|
+
}];
|
|
40237
39827
|
};
|
|
40238
39828
|
};
|
|
40239
39829
|
readonly required: readonly ["type", "value"];
|
|
@@ -40313,9 +39903,14 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
40313
39903
|
readonly enum: readonly ["absolute", "relative"];
|
|
40314
39904
|
};
|
|
40315
39905
|
readonly value: {
|
|
40316
|
-
readonly
|
|
40317
|
-
|
|
40318
|
-
|
|
39906
|
+
readonly allOf: readonly [{
|
|
39907
|
+
readonly type: "string";
|
|
39908
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39909
|
+
readonly example: "100.00";
|
|
39910
|
+
}, {
|
|
39911
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
39912
|
+
readonly example: "25";
|
|
39913
|
+
}];
|
|
40319
39914
|
};
|
|
40320
39915
|
};
|
|
40321
39916
|
readonly required: readonly ["type", "value"];
|
|
@@ -40398,9 +39993,14 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
40398
39993
|
readonly enum: readonly ["absolute", "relative"];
|
|
40399
39994
|
};
|
|
40400
39995
|
readonly value: {
|
|
40401
|
-
readonly
|
|
40402
|
-
|
|
40403
|
-
|
|
39996
|
+
readonly allOf: readonly [{
|
|
39997
|
+
readonly type: "string";
|
|
39998
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
39999
|
+
readonly example: "100.00";
|
|
40000
|
+
}, {
|
|
40001
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
40002
|
+
readonly example: "10";
|
|
40003
|
+
}];
|
|
40404
40004
|
};
|
|
40405
40005
|
};
|
|
40406
40006
|
readonly required: readonly ["type", "value"];
|
|
@@ -40466,9 +40066,14 @@ declare const Quotes__Put_RequestSchema: {
|
|
|
40466
40066
|
readonly enum: readonly ["absolute", "relative"];
|
|
40467
40067
|
};
|
|
40468
40068
|
readonly value: {
|
|
40469
|
-
readonly
|
|
40470
|
-
|
|
40471
|
-
|
|
40069
|
+
readonly allOf: readonly [{
|
|
40070
|
+
readonly type: "string";
|
|
40071
|
+
readonly pattern: "^(-?\\d+(\\.\\d+)?)?$";
|
|
40072
|
+
readonly example: "100.00";
|
|
40073
|
+
}, {
|
|
40074
|
+
readonly description: "Discount value on the total amount before tax of the line";
|
|
40075
|
+
readonly example: "10";
|
|
40076
|
+
}];
|
|
40472
40077
|
};
|
|
40473
40078
|
};
|
|
40474
40079
|
readonly required: readonly ["type", "value"];
|
|
@@ -41840,22 +41445,6 @@ declare const getLedgerAccount: <ThrowOnError extends boolean = false>(options:
|
|
|
41840
41445
|
* > This endpoint requires the following scope: `ledger_accounts:all`
|
|
41841
41446
|
*/
|
|
41842
41447
|
declare const updateLedgerAccount: <ThrowOnError extends boolean = false>(options: Options<UpdateLedgerAccountData, ThrowOnError>) => RequestResult<UpdateLedgerAccountResponses, UpdateLedgerAccountErrors, ThrowOnError, "fields">;
|
|
41843
|
-
/**
|
|
41844
|
-
* List attachments
|
|
41845
|
-
*
|
|
41846
|
-
* List attachments
|
|
41847
|
-
*
|
|
41848
|
-
* > ‼️
|
|
41849
|
-
* > This endpoint is **DEPRECATED**
|
|
41850
|
-
* > As soon as you opt in to the new version, or when the sunset phase starts and you haven't explicitly opted out of the old behavior, this endpoint will no longer work.
|
|
41851
|
-
* For more details, see our API documentation https://pennylane.readme.io/docs/2026-api-changes-guide for migration instructions.
|
|
41852
|
-
*
|
|
41853
|
-
* > ℹ️
|
|
41854
|
-
* > This endpoint requires the following scope: `ledger`
|
|
41855
|
-
*
|
|
41856
|
-
* @deprecated
|
|
41857
|
-
*/
|
|
41858
|
-
declare const getLedgerAttachments: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerAttachmentsData, ThrowOnError>) => RequestResult<GetLedgerAttachmentsResponses, GetLedgerAttachmentsErrors, ThrowOnError, "fields">;
|
|
41859
41448
|
/**
|
|
41860
41449
|
* Upload a file
|
|
41861
41450
|
*
|
|
@@ -42199,20 +41788,6 @@ declare const getProduct: <ThrowOnError extends boolean = false>(options: Option
|
|
|
42199
41788
|
* > This endpoint requires the following scope: `products:all`
|
|
42200
41789
|
*/
|
|
42201
41790
|
declare const putProduct: <ThrowOnError extends boolean = false>(options: Options<PutProductData, ThrowOnError>) => RequestResult<PutProductResponses, PutProductErrors, ThrowOnError, "fields">;
|
|
42202
|
-
/**
|
|
42203
|
-
* List attachments
|
|
42204
|
-
*
|
|
42205
|
-
* List attachments
|
|
42206
|
-
*
|
|
42207
|
-
* > ‼️
|
|
42208
|
-
* > This endpoint is **DEPRECATED**
|
|
42209
|
-
*
|
|
42210
|
-
* > ℹ️
|
|
42211
|
-
* > This endpoint requires one of the following scopes: `file_attachments:all`, `file_attachments:readonly`
|
|
42212
|
-
*
|
|
42213
|
-
* @deprecated
|
|
42214
|
-
*/
|
|
42215
|
-
declare const getFileAttachments: <ThrowOnError extends boolean = false>(options?: Options<GetFileAttachmentsData, ThrowOnError>) => RequestResult<GetFileAttachmentsResponses, GetFileAttachmentsErrors, ThrowOnError, "fields">;
|
|
42216
41791
|
/**
|
|
42217
41792
|
* Upload a file
|
|
42218
41793
|
*
|
|
@@ -43504,5 +43079,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
43504
43079
|
//#region src/index.d.ts
|
|
43505
43080
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
43506
43081
|
//#endregion
|
|
43507
|
-
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, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, 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, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, 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, getFileAttachments, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
43082
|
+
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, Currency2, CurrencySchema, Currency_2Schema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DecimalString, DecimalStringSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
43508
43083
|
//# sourceMappingURL=index.d.mts.map
|