@getyetty-sdk/pennylane 2026.5.12 → 2026.5.22
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 +587 -80
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +250 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -402,6 +402,30 @@ type WebhookSubscriptionsResponse = {
|
|
|
402
402
|
* Indicates whether the webhook subscription is active
|
|
403
403
|
*/
|
|
404
404
|
enabled: boolean;
|
|
405
|
+
/**
|
|
406
|
+
* Timestamp when the subscription was disabled
|
|
407
|
+
*/
|
|
408
|
+
disabled_at: string | null;
|
|
409
|
+
/**
|
|
410
|
+
* Reason the subscription was disabled.
|
|
411
|
+
* - `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).
|
|
412
|
+
* - `repeated_failure`: disabled after repeated delivery failures over a sustained period.
|
|
413
|
+
* - `manual`: disabled manually via the API.
|
|
414
|
+
*
|
|
415
|
+
*/
|
|
416
|
+
disabled_reason: 'permanent_error' | 'repeated_failure' | 'manual';
|
|
417
|
+
/**
|
|
418
|
+
* HTTP status code of the last failed delivery attempt
|
|
419
|
+
*/
|
|
420
|
+
last_failure_status: number | null;
|
|
421
|
+
/**
|
|
422
|
+
* Timestamp of the last failed delivery attempt
|
|
423
|
+
*/
|
|
424
|
+
last_failure_at: string | null;
|
|
425
|
+
/**
|
|
426
|
+
* Number of consecutive delivery failures since the last successful delivery
|
|
427
|
+
*/
|
|
428
|
+
consecutive_failures: number;
|
|
405
429
|
/**
|
|
406
430
|
* Creation date of the webhook subscription
|
|
407
431
|
*/
|
|
@@ -411,6 +435,70 @@ type WebhookSubscriptionsResponse = {
|
|
|
411
435
|
*/
|
|
412
436
|
updated_at: string;
|
|
413
437
|
};
|
|
438
|
+
type WebhookSubscriptionsIndexResponse = {
|
|
439
|
+
items: Array<{
|
|
440
|
+
/**
|
|
441
|
+
* ID of the webhook subscription
|
|
442
|
+
*/
|
|
443
|
+
id: number;
|
|
444
|
+
/**
|
|
445
|
+
* HTTPS URL where webhook events are sent
|
|
446
|
+
*/
|
|
447
|
+
callback_url: string;
|
|
448
|
+
/**
|
|
449
|
+
* Array of event types to subscribe to.
|
|
450
|
+
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
451
|
+
* - `quote.created`: the event is triggered when a quote is created.
|
|
452
|
+
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
453
|
+
*
|
|
454
|
+
*/
|
|
455
|
+
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
456
|
+
/**
|
|
457
|
+
* Indicates whether the webhook subscription is active
|
|
458
|
+
*/
|
|
459
|
+
enabled: boolean;
|
|
460
|
+
/**
|
|
461
|
+
* Timestamp when the subscription was disabled
|
|
462
|
+
*/
|
|
463
|
+
disabled_at: string | null;
|
|
464
|
+
/**
|
|
465
|
+
* Reason the subscription was disabled.
|
|
466
|
+
* - `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).
|
|
467
|
+
* - `repeated_failure`: disabled after repeated delivery failures over a sustained period.
|
|
468
|
+
* - `manual`: disabled manually via the API.
|
|
469
|
+
*
|
|
470
|
+
*/
|
|
471
|
+
disabled_reason: 'permanent_error' | 'repeated_failure' | 'manual';
|
|
472
|
+
/**
|
|
473
|
+
* HTTP status code of the last failed delivery attempt
|
|
474
|
+
*/
|
|
475
|
+
last_failure_status: number | null;
|
|
476
|
+
/**
|
|
477
|
+
* Timestamp of the last failed delivery attempt
|
|
478
|
+
*/
|
|
479
|
+
last_failure_at: string | null;
|
|
480
|
+
/**
|
|
481
|
+
* Number of consecutive delivery failures since the last successful delivery
|
|
482
|
+
*/
|
|
483
|
+
consecutive_failures: number;
|
|
484
|
+
/**
|
|
485
|
+
* Creation date of the webhook subscription
|
|
486
|
+
*/
|
|
487
|
+
created_at: string;
|
|
488
|
+
/**
|
|
489
|
+
* Last update date of the webhook subscription
|
|
490
|
+
*/
|
|
491
|
+
updated_at: string;
|
|
492
|
+
}>;
|
|
493
|
+
/**
|
|
494
|
+
* Indicates whether additional results are available
|
|
495
|
+
*/
|
|
496
|
+
has_more: boolean;
|
|
497
|
+
/**
|
|
498
|
+
* Cursor to retrieve the next set of results
|
|
499
|
+
*/
|
|
500
|
+
next_cursor: string | null;
|
|
501
|
+
};
|
|
414
502
|
declare const BadRequestCodeEnum: {
|
|
415
503
|
readonly INVALID_DATE_FORMAT: "InvalidDateFormat";
|
|
416
504
|
readonly INVALID_DATE_TIME_FORMAT: "InvalidDateTimeFormat";
|
|
@@ -696,6 +784,40 @@ declare const AuthorizedCountryAlpha2WithAny: {
|
|
|
696
784
|
readonly ANY: "any";
|
|
697
785
|
};
|
|
698
786
|
type AuthorizedCountryAlpha2WithAny = (typeof AuthorizedCountryAlpha2WithAny)[keyof typeof AuthorizedCountryAlpha2WithAny];
|
|
787
|
+
/**
|
|
788
|
+
* The accounting state of the entry.
|
|
789
|
+
* - `archived`: The entry has been archived.
|
|
790
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
791
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
792
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
793
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
794
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
795
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
796
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
797
|
+
*
|
|
798
|
+
*/
|
|
799
|
+
declare const LedgerEntryAccountantsStatus: {
|
|
800
|
+
readonly ACCOUNTING_NEEDED: "accounting_needed";
|
|
801
|
+
readonly ARCHIVED: "archived";
|
|
802
|
+
readonly COMPLETE: "complete";
|
|
803
|
+
readonly DRAFT: "draft";
|
|
804
|
+
readonly ENTRY: "entry";
|
|
805
|
+
readonly VALIDATION_NEEDED: "validation_needed";
|
|
806
|
+
readonly WAITING_DETAILS: "waiting_details";
|
|
807
|
+
};
|
|
808
|
+
/**
|
|
809
|
+
* The accounting state of the entry.
|
|
810
|
+
* - `archived`: The entry has been archived.
|
|
811
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
812
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
813
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
814
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
815
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
816
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
817
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
818
|
+
*
|
|
819
|
+
*/
|
|
820
|
+
type LedgerEntryAccountantsStatus = (typeof LedgerEntryAccountantsStatus)[keyof typeof LedgerEntryAccountantsStatus];
|
|
699
821
|
type LedgerEntriesCategories = Array<{
|
|
700
822
|
id: number;
|
|
701
823
|
label: string;
|
|
@@ -911,6 +1033,19 @@ type LedgerEntriesResponse = {
|
|
|
911
1033
|
id: number;
|
|
912
1034
|
url: string;
|
|
913
1035
|
};
|
|
1036
|
+
/**
|
|
1037
|
+
* The accounting state of the entry.
|
|
1038
|
+
* - `archived`: The entry has been archived.
|
|
1039
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
1040
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
1041
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
1042
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
1043
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
1044
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
1045
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
1046
|
+
*
|
|
1047
|
+
*/
|
|
1048
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
914
1049
|
categories: Array<{
|
|
915
1050
|
id: number;
|
|
916
1051
|
label: string;
|
|
@@ -5882,13 +6017,22 @@ type BankEstablishmentsResponse = {
|
|
|
5882
6017
|
created_at: string;
|
|
5883
6018
|
updated_at: string;
|
|
5884
6019
|
};
|
|
5885
|
-
type
|
|
6020
|
+
type GetWebhookSubscriptionsData = {
|
|
5886
6021
|
body?: never;
|
|
5887
6022
|
path?: never;
|
|
5888
|
-
query?:
|
|
5889
|
-
|
|
6023
|
+
query?: {
|
|
6024
|
+
/**
|
|
6025
|
+
* Opaque cursor from a previous response to retrieve the next page
|
|
6026
|
+
*/
|
|
6027
|
+
cursor?: string;
|
|
6028
|
+
/**
|
|
6029
|
+
* Number of items to return per page
|
|
6030
|
+
*/
|
|
6031
|
+
limit?: number;
|
|
6032
|
+
};
|
|
6033
|
+
url: '/api/external/v2/webhook_subscriptions';
|
|
5890
6034
|
};
|
|
5891
|
-
type
|
|
6035
|
+
type GetWebhookSubscriptionsErrors = {
|
|
5892
6036
|
/**
|
|
5893
6037
|
* Bad request
|
|
5894
6038
|
*/
|
|
@@ -5928,29 +6072,102 @@ type DeleteWebhookSubscriptionErrors = {
|
|
|
5928
6072
|
error: string;
|
|
5929
6073
|
status: number;
|
|
5930
6074
|
};
|
|
5931
|
-
/**
|
|
5932
|
-
* The resource was not found
|
|
5933
|
-
*/
|
|
5934
|
-
404: {
|
|
5935
|
-
error: string;
|
|
5936
|
-
status: number;
|
|
5937
|
-
};
|
|
5938
6075
|
};
|
|
5939
|
-
type
|
|
5940
|
-
type
|
|
6076
|
+
type GetWebhookSubscriptionsError = GetWebhookSubscriptionsErrors[keyof GetWebhookSubscriptionsErrors];
|
|
6077
|
+
type GetWebhookSubscriptionsResponses = {
|
|
5941
6078
|
/**
|
|
5942
|
-
*
|
|
6079
|
+
* A paginated list of webhook subscriptions
|
|
5943
6080
|
*/
|
|
5944
|
-
|
|
6081
|
+
200: {
|
|
6082
|
+
items: Array<{
|
|
6083
|
+
/**
|
|
6084
|
+
* ID of the webhook subscription
|
|
6085
|
+
*/
|
|
6086
|
+
id: number;
|
|
6087
|
+
/**
|
|
6088
|
+
* HTTPS URL where webhook events are sent
|
|
6089
|
+
*/
|
|
6090
|
+
callback_url: string;
|
|
6091
|
+
/**
|
|
6092
|
+
* Array of event types to subscribe to.
|
|
6093
|
+
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
6094
|
+
* - `quote.created`: the event is triggered when a quote is created.
|
|
6095
|
+
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
6096
|
+
*
|
|
6097
|
+
*/
|
|
6098
|
+
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
6099
|
+
/**
|
|
6100
|
+
* Indicates whether the webhook subscription is active
|
|
6101
|
+
*/
|
|
6102
|
+
enabled: boolean;
|
|
6103
|
+
/**
|
|
6104
|
+
* Timestamp when the subscription was disabled
|
|
6105
|
+
*/
|
|
6106
|
+
disabled_at: string | null;
|
|
6107
|
+
/**
|
|
6108
|
+
* Reason the subscription was disabled.
|
|
6109
|
+
* - `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).
|
|
6110
|
+
* - `repeated_failure`: disabled after repeated delivery failures over a sustained period.
|
|
6111
|
+
* - `manual`: disabled manually via the API.
|
|
6112
|
+
*
|
|
6113
|
+
*/
|
|
6114
|
+
disabled_reason: 'permanent_error' | 'repeated_failure' | 'manual';
|
|
6115
|
+
/**
|
|
6116
|
+
* HTTP status code of the last failed delivery attempt
|
|
6117
|
+
*/
|
|
6118
|
+
last_failure_status: number | null;
|
|
6119
|
+
/**
|
|
6120
|
+
* Timestamp of the last failed delivery attempt
|
|
6121
|
+
*/
|
|
6122
|
+
last_failure_at: string | null;
|
|
6123
|
+
/**
|
|
6124
|
+
* Number of consecutive delivery failures since the last successful delivery
|
|
6125
|
+
*/
|
|
6126
|
+
consecutive_failures: number;
|
|
6127
|
+
/**
|
|
6128
|
+
* Creation date of the webhook subscription
|
|
6129
|
+
*/
|
|
6130
|
+
created_at: string;
|
|
6131
|
+
/**
|
|
6132
|
+
* Last update date of the webhook subscription
|
|
6133
|
+
*/
|
|
6134
|
+
updated_at: string;
|
|
6135
|
+
}>;
|
|
6136
|
+
/**
|
|
6137
|
+
* Indicates whether additional results are available
|
|
6138
|
+
*/
|
|
6139
|
+
has_more: boolean;
|
|
6140
|
+
/**
|
|
6141
|
+
* Cursor to retrieve the next set of results
|
|
6142
|
+
*/
|
|
6143
|
+
next_cursor: string | null;
|
|
6144
|
+
};
|
|
5945
6145
|
};
|
|
5946
|
-
type
|
|
5947
|
-
type
|
|
5948
|
-
body
|
|
6146
|
+
type GetWebhookSubscriptionsResponse = GetWebhookSubscriptionsResponses[keyof GetWebhookSubscriptionsResponses];
|
|
6147
|
+
type PostWebhookSubscriptionsData = {
|
|
6148
|
+
body: {
|
|
6149
|
+
/**
|
|
6150
|
+
* HTTPS URL where webhook events will be sent
|
|
6151
|
+
*/
|
|
6152
|
+
callback_url: string;
|
|
6153
|
+
/**
|
|
6154
|
+
* Array of event types to subscribe to.
|
|
6155
|
+
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
6156
|
+
* - `quote.created`: the event is triggered when a quote is created.
|
|
6157
|
+
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
6158
|
+
*
|
|
6159
|
+
*/
|
|
6160
|
+
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
6161
|
+
/**
|
|
6162
|
+
* Indicates whether the webhook subscription is active
|
|
6163
|
+
*/
|
|
6164
|
+
enabled?: boolean;
|
|
6165
|
+
};
|
|
5949
6166
|
path?: never;
|
|
5950
6167
|
query?: never;
|
|
5951
|
-
url: '/api/external/v2/
|
|
6168
|
+
url: '/api/external/v2/webhook_subscriptions';
|
|
5952
6169
|
};
|
|
5953
|
-
type
|
|
6170
|
+
type PostWebhookSubscriptionsErrors = {
|
|
5954
6171
|
/**
|
|
5955
6172
|
* Bad request
|
|
5956
6173
|
*/
|
|
@@ -5991,19 +6208,19 @@ type GetWebhookSubscriptionErrors = {
|
|
|
5991
6208
|
status: number;
|
|
5992
6209
|
};
|
|
5993
6210
|
/**
|
|
5994
|
-
*
|
|
6211
|
+
* Unprocessable content
|
|
5995
6212
|
*/
|
|
5996
|
-
|
|
6213
|
+
422: {
|
|
5997
6214
|
error: string;
|
|
5998
6215
|
status: number;
|
|
5999
6216
|
};
|
|
6000
6217
|
};
|
|
6001
|
-
type
|
|
6002
|
-
type
|
|
6218
|
+
type PostWebhookSubscriptionsError = PostWebhookSubscriptionsErrors[keyof PostWebhookSubscriptionsErrors];
|
|
6219
|
+
type PostWebhookSubscriptionsResponses = {
|
|
6003
6220
|
/**
|
|
6004
|
-
*
|
|
6221
|
+
* Renders the created webhook subscription
|
|
6005
6222
|
*/
|
|
6006
|
-
|
|
6223
|
+
201: {
|
|
6007
6224
|
/**
|
|
6008
6225
|
* ID of the webhook subscription
|
|
6009
6226
|
*/
|
|
@@ -6024,6 +6241,12 @@ type GetWebhookSubscriptionResponses = {
|
|
|
6024
6241
|
* Indicates whether the webhook subscription is active
|
|
6025
6242
|
*/
|
|
6026
6243
|
enabled: boolean;
|
|
6244
|
+
/**
|
|
6245
|
+
* Automatically generated secret for HMAC signature verification. This is only returned once
|
|
6246
|
+
* on creation. Store it securely as it cannot be retrieved afterwards.
|
|
6247
|
+
*
|
|
6248
|
+
*/
|
|
6249
|
+
secret: string;
|
|
6027
6250
|
/**
|
|
6028
6251
|
* Creation date of the webhook subscription
|
|
6029
6252
|
*/
|
|
@@ -6034,31 +6257,19 @@ type GetWebhookSubscriptionResponses = {
|
|
|
6034
6257
|
updated_at: string;
|
|
6035
6258
|
};
|
|
6036
6259
|
};
|
|
6037
|
-
type
|
|
6038
|
-
type
|
|
6039
|
-
body
|
|
6040
|
-
|
|
6041
|
-
* HTTPS URL where webhook events will be sent
|
|
6042
|
-
*/
|
|
6043
|
-
callback_url: string;
|
|
6044
|
-
/**
|
|
6045
|
-
* Array of event types to subscribe to.
|
|
6046
|
-
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
6047
|
-
* - `quote.created`: the event is triggered when a quote is created.
|
|
6048
|
-
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
6049
|
-
*
|
|
6050
|
-
*/
|
|
6051
|
-
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
6260
|
+
type PostWebhookSubscriptionsResponse = PostWebhookSubscriptionsResponses[keyof PostWebhookSubscriptionsResponses];
|
|
6261
|
+
type DeleteWebhookSubscriptionData = {
|
|
6262
|
+
body?: never;
|
|
6263
|
+
path: {
|
|
6052
6264
|
/**
|
|
6053
|
-
*
|
|
6265
|
+
* ID of the webhook subscription
|
|
6054
6266
|
*/
|
|
6055
|
-
|
|
6267
|
+
id: number;
|
|
6056
6268
|
};
|
|
6057
|
-
path?: never;
|
|
6058
6269
|
query?: never;
|
|
6059
|
-
url: '/api/external/v2/
|
|
6270
|
+
url: '/api/external/v2/webhook_subscriptions/{id}';
|
|
6060
6271
|
};
|
|
6061
|
-
type
|
|
6272
|
+
type DeleteWebhookSubscriptionErrors = {
|
|
6062
6273
|
/**
|
|
6063
6274
|
* Bad request
|
|
6064
6275
|
*/
|
|
@@ -6105,27 +6316,80 @@ type PostWebhookSubscriptionErrors = {
|
|
|
6105
6316
|
error: string;
|
|
6106
6317
|
status: number;
|
|
6107
6318
|
};
|
|
6319
|
+
};
|
|
6320
|
+
type DeleteWebhookSubscriptionError = DeleteWebhookSubscriptionErrors[keyof DeleteWebhookSubscriptionErrors];
|
|
6321
|
+
type DeleteWebhookSubscriptionResponses = {
|
|
6108
6322
|
/**
|
|
6109
|
-
*
|
|
6323
|
+
* Webhook subscription deleted
|
|
6110
6324
|
*/
|
|
6111
|
-
|
|
6325
|
+
204: void;
|
|
6326
|
+
};
|
|
6327
|
+
type DeleteWebhookSubscriptionResponse = DeleteWebhookSubscriptionResponses[keyof DeleteWebhookSubscriptionResponses];
|
|
6328
|
+
type GetWebhookSubscriptionData = {
|
|
6329
|
+
body?: never;
|
|
6330
|
+
path: {
|
|
6331
|
+
/**
|
|
6332
|
+
* ID of the webhook subscription
|
|
6333
|
+
*/
|
|
6334
|
+
id: number;
|
|
6335
|
+
};
|
|
6336
|
+
query?: never;
|
|
6337
|
+
url: '/api/external/v2/webhook_subscriptions/{id}';
|
|
6338
|
+
};
|
|
6339
|
+
type GetWebhookSubscriptionErrors = {
|
|
6340
|
+
/**
|
|
6341
|
+
* Bad request
|
|
6342
|
+
*/
|
|
6343
|
+
400: {
|
|
6344
|
+
error: string;
|
|
6345
|
+
status: number;
|
|
6346
|
+
} | {
|
|
6347
|
+
message: string;
|
|
6348
|
+
} | {
|
|
6349
|
+
message: string;
|
|
6350
|
+
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';
|
|
6351
|
+
} | {
|
|
6352
|
+
message: string;
|
|
6353
|
+
field: string;
|
|
6354
|
+
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';
|
|
6355
|
+
} | {
|
|
6356
|
+
message: string;
|
|
6357
|
+
payload: string;
|
|
6358
|
+
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';
|
|
6359
|
+
} | {
|
|
6360
|
+
message: string;
|
|
6361
|
+
field: string;
|
|
6362
|
+
payload: string;
|
|
6363
|
+
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';
|
|
6364
|
+
};
|
|
6365
|
+
/**
|
|
6366
|
+
* Access token is missing or invalid
|
|
6367
|
+
*/
|
|
6368
|
+
401: {
|
|
6112
6369
|
error: string;
|
|
6113
6370
|
status: number;
|
|
6114
6371
|
};
|
|
6115
6372
|
/**
|
|
6116
|
-
*
|
|
6373
|
+
* Access to this resource forbidden
|
|
6117
6374
|
*/
|
|
6118
|
-
|
|
6375
|
+
403: {
|
|
6376
|
+
error: string;
|
|
6377
|
+
status: number;
|
|
6378
|
+
};
|
|
6379
|
+
/**
|
|
6380
|
+
* The resource was not found
|
|
6381
|
+
*/
|
|
6382
|
+
404: {
|
|
6119
6383
|
error: string;
|
|
6120
6384
|
status: number;
|
|
6121
6385
|
};
|
|
6122
6386
|
};
|
|
6123
|
-
type
|
|
6124
|
-
type
|
|
6387
|
+
type GetWebhookSubscriptionError = GetWebhookSubscriptionErrors[keyof GetWebhookSubscriptionErrors];
|
|
6388
|
+
type GetWebhookSubscriptionResponses = {
|
|
6125
6389
|
/**
|
|
6126
|
-
*
|
|
6390
|
+
* A webhook subscription
|
|
6127
6391
|
*/
|
|
6128
|
-
|
|
6392
|
+
200: {
|
|
6129
6393
|
/**
|
|
6130
6394
|
* ID of the webhook subscription
|
|
6131
6395
|
*/
|
|
@@ -6147,11 +6411,29 @@ type PostWebhookSubscriptionResponses = {
|
|
|
6147
6411
|
*/
|
|
6148
6412
|
enabled: boolean;
|
|
6149
6413
|
/**
|
|
6150
|
-
*
|
|
6151
|
-
|
|
6414
|
+
* Timestamp when the subscription was disabled
|
|
6415
|
+
*/
|
|
6416
|
+
disabled_at: string | null;
|
|
6417
|
+
/**
|
|
6418
|
+
* Reason the subscription was disabled.
|
|
6419
|
+
* - `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).
|
|
6420
|
+
* - `repeated_failure`: disabled after repeated delivery failures over a sustained period.
|
|
6421
|
+
* - `manual`: disabled manually via the API.
|
|
6152
6422
|
*
|
|
6153
6423
|
*/
|
|
6154
|
-
|
|
6424
|
+
disabled_reason: 'permanent_error' | 'repeated_failure' | 'manual';
|
|
6425
|
+
/**
|
|
6426
|
+
* HTTP status code of the last failed delivery attempt
|
|
6427
|
+
*/
|
|
6428
|
+
last_failure_status: number | null;
|
|
6429
|
+
/**
|
|
6430
|
+
* Timestamp of the last failed delivery attempt
|
|
6431
|
+
*/
|
|
6432
|
+
last_failure_at: string | null;
|
|
6433
|
+
/**
|
|
6434
|
+
* Number of consecutive delivery failures since the last successful delivery
|
|
6435
|
+
*/
|
|
6436
|
+
consecutive_failures: number;
|
|
6155
6437
|
/**
|
|
6156
6438
|
* Creation date of the webhook subscription
|
|
6157
6439
|
*/
|
|
@@ -6162,7 +6444,7 @@ type PostWebhookSubscriptionResponses = {
|
|
|
6162
6444
|
updated_at: string;
|
|
6163
6445
|
};
|
|
6164
6446
|
};
|
|
6165
|
-
type
|
|
6447
|
+
type GetWebhookSubscriptionResponse = GetWebhookSubscriptionResponses[keyof GetWebhookSubscriptionResponses];
|
|
6166
6448
|
type PutWebhookSubscriptionData = {
|
|
6167
6449
|
body: {
|
|
6168
6450
|
/**
|
|
@@ -6182,9 +6464,14 @@ type PutWebhookSubscriptionData = {
|
|
|
6182
6464
|
*/
|
|
6183
6465
|
enabled?: boolean;
|
|
6184
6466
|
};
|
|
6185
|
-
path
|
|
6467
|
+
path: {
|
|
6468
|
+
/**
|
|
6469
|
+
* ID of the webhook subscription
|
|
6470
|
+
*/
|
|
6471
|
+
id: number;
|
|
6472
|
+
};
|
|
6186
6473
|
query?: never;
|
|
6187
|
-
url: '/api/external/v2/
|
|
6474
|
+
url: '/api/external/v2/webhook_subscriptions/{id}';
|
|
6188
6475
|
};
|
|
6189
6476
|
type PutWebhookSubscriptionErrors = {
|
|
6190
6477
|
/**
|
|
@@ -6267,6 +6554,30 @@ type PutWebhookSubscriptionResponses = {
|
|
|
6267
6554
|
* Indicates whether the webhook subscription is active
|
|
6268
6555
|
*/
|
|
6269
6556
|
enabled: boolean;
|
|
6557
|
+
/**
|
|
6558
|
+
* Timestamp when the subscription was disabled
|
|
6559
|
+
*/
|
|
6560
|
+
disabled_at: string | null;
|
|
6561
|
+
/**
|
|
6562
|
+
* Reason the subscription was disabled.
|
|
6563
|
+
* - `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).
|
|
6564
|
+
* - `repeated_failure`: disabled after repeated delivery failures over a sustained period.
|
|
6565
|
+
* - `manual`: disabled manually via the API.
|
|
6566
|
+
*
|
|
6567
|
+
*/
|
|
6568
|
+
disabled_reason: 'permanent_error' | 'repeated_failure' | 'manual';
|
|
6569
|
+
/**
|
|
6570
|
+
* HTTP status code of the last failed delivery attempt
|
|
6571
|
+
*/
|
|
6572
|
+
last_failure_status: number | null;
|
|
6573
|
+
/**
|
|
6574
|
+
* Timestamp of the last failed delivery attempt
|
|
6575
|
+
*/
|
|
6576
|
+
last_failure_at: string | null;
|
|
6577
|
+
/**
|
|
6578
|
+
* Number of consecutive delivery failures since the last successful delivery
|
|
6579
|
+
*/
|
|
6580
|
+
consecutive_failures: number;
|
|
6270
6581
|
/**
|
|
6271
6582
|
* Creation date of the webhook subscription
|
|
6272
6583
|
*/
|
|
@@ -7564,6 +7875,19 @@ type GetLedgerEntriesResponses = {
|
|
|
7564
7875
|
id: number;
|
|
7565
7876
|
url: string;
|
|
7566
7877
|
};
|
|
7878
|
+
/**
|
|
7879
|
+
* The accounting state of the entry.
|
|
7880
|
+
* - `archived`: The entry has been archived.
|
|
7881
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
7882
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
7883
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
7884
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
7885
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
7886
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
7887
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
7888
|
+
*
|
|
7889
|
+
*/
|
|
7890
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
7567
7891
|
categories: Array<{
|
|
7568
7892
|
id: number;
|
|
7569
7893
|
label: string;
|
|
@@ -7791,6 +8115,19 @@ type PostLedgerEntriesResponses = {
|
|
|
7791
8115
|
id: number;
|
|
7792
8116
|
url: string;
|
|
7793
8117
|
};
|
|
8118
|
+
/**
|
|
8119
|
+
* The accounting state of the entry.
|
|
8120
|
+
* - `archived`: The entry has been archived.
|
|
8121
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
8122
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
8123
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
8124
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
8125
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
8126
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
8127
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
8128
|
+
*
|
|
8129
|
+
*/
|
|
8130
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
7794
8131
|
categories: Array<{
|
|
7795
8132
|
id: number;
|
|
7796
8133
|
label: string;
|
|
@@ -7989,6 +8326,19 @@ type GetLedgerEntryResponses = {
|
|
|
7989
8326
|
id: number;
|
|
7990
8327
|
url: string;
|
|
7991
8328
|
};
|
|
8329
|
+
/**
|
|
8330
|
+
* The accounting state of the entry.
|
|
8331
|
+
* - `archived`: The entry has been archived.
|
|
8332
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
8333
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
8334
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
8335
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
8336
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
8337
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
8338
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
8339
|
+
*
|
|
8340
|
+
*/
|
|
8341
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
7992
8342
|
categories: Array<{
|
|
7993
8343
|
id: number;
|
|
7994
8344
|
label: string;
|
|
@@ -8249,6 +8599,19 @@ type PutLedgerEntriesResponses = {
|
|
|
8249
8599
|
id: number;
|
|
8250
8600
|
url: string;
|
|
8251
8601
|
};
|
|
8602
|
+
/**
|
|
8603
|
+
* The accounting state of the entry.
|
|
8604
|
+
* - `archived`: The entry has been archived.
|
|
8605
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
8606
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
8607
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
8608
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
8609
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
8610
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
8611
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
8612
|
+
*
|
|
8613
|
+
*/
|
|
8614
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
8252
8615
|
categories: Array<{
|
|
8253
8616
|
id: number;
|
|
8254
8617
|
label: string;
|
|
@@ -32574,6 +32937,37 @@ declare const WebhookSubscriptions__ResponseSchema: {
|
|
|
32574
32937
|
readonly type: "boolean";
|
|
32575
32938
|
readonly example: true;
|
|
32576
32939
|
};
|
|
32940
|
+
readonly disabled_at: {
|
|
32941
|
+
readonly description: "Timestamp when the subscription was disabled";
|
|
32942
|
+
readonly type: "string";
|
|
32943
|
+
readonly format: "date-time";
|
|
32944
|
+
readonly nullable: true;
|
|
32945
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
32946
|
+
};
|
|
32947
|
+
readonly disabled_reason: {
|
|
32948
|
+
readonly description: "Reason the subscription was disabled.\n- `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).\n- `repeated_failure`: disabled after repeated delivery failures over a sustained period.\n- `manual`: disabled manually via the API.\n";
|
|
32949
|
+
readonly type: "string";
|
|
32950
|
+
readonly nullable: true;
|
|
32951
|
+
readonly enum: readonly ["permanent_error", "repeated_failure", "manual"];
|
|
32952
|
+
};
|
|
32953
|
+
readonly last_failure_status: {
|
|
32954
|
+
readonly description: "HTTP status code of the last failed delivery attempt";
|
|
32955
|
+
readonly type: "integer";
|
|
32956
|
+
readonly nullable: true;
|
|
32957
|
+
readonly example: 500;
|
|
32958
|
+
};
|
|
32959
|
+
readonly last_failure_at: {
|
|
32960
|
+
readonly description: "Timestamp of the last failed delivery attempt";
|
|
32961
|
+
readonly type: "string";
|
|
32962
|
+
readonly format: "date-time";
|
|
32963
|
+
readonly nullable: true;
|
|
32964
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
32965
|
+
};
|
|
32966
|
+
readonly consecutive_failures: {
|
|
32967
|
+
readonly description: "Number of consecutive delivery failures since the last successful delivery";
|
|
32968
|
+
readonly type: "integer";
|
|
32969
|
+
readonly example: 3;
|
|
32970
|
+
};
|
|
32577
32971
|
readonly created_at: {
|
|
32578
32972
|
readonly description: "Creation date of the webhook subscription";
|
|
32579
32973
|
readonly type: "string";
|
|
@@ -32587,7 +32981,102 @@ declare const WebhookSubscriptions__ResponseSchema: {
|
|
|
32587
32981
|
readonly example: "2023-08-07T14:23:12.000Z";
|
|
32588
32982
|
};
|
|
32589
32983
|
};
|
|
32590
|
-
readonly required: readonly ["id", "callback_url", "events", "enabled", "created_at", "updated_at"];
|
|
32984
|
+
readonly required: readonly ["id", "callback_url", "events", "enabled", "disabled_at", "disabled_reason", "last_failure_status", "last_failure_at", "consecutive_failures", "created_at", "updated_at"];
|
|
32985
|
+
};
|
|
32986
|
+
declare const WebhookSubscriptions__IndexResponseSchema: {
|
|
32987
|
+
readonly type: "object";
|
|
32988
|
+
readonly additionalProperties: false;
|
|
32989
|
+
readonly properties: {
|
|
32990
|
+
readonly items: {
|
|
32991
|
+
readonly type: "array";
|
|
32992
|
+
readonly items: {
|
|
32993
|
+
readonly type: "object";
|
|
32994
|
+
readonly additionalProperties: false;
|
|
32995
|
+
readonly properties: {
|
|
32996
|
+
readonly id: {
|
|
32997
|
+
readonly type: "integer";
|
|
32998
|
+
readonly description: "ID of the webhook subscription";
|
|
32999
|
+
readonly example: 12345;
|
|
33000
|
+
};
|
|
33001
|
+
readonly callback_url: {
|
|
33002
|
+
readonly description: "HTTPS URL where webhook events are sent";
|
|
33003
|
+
readonly type: "string";
|
|
33004
|
+
readonly format: "uri";
|
|
33005
|
+
readonly example: "https://example.com/webhooks";
|
|
33006
|
+
};
|
|
33007
|
+
readonly events: {
|
|
33008
|
+
readonly description: "Array of event types to subscribe to.\n- `customer_invoice.created`: the event is triggered when a customer invoice is created.\n- `quote.created`: the event is triggered when a quote is created.\n- `dms_file.created`: the event is triggered when a dms file is created.\n";
|
|
33009
|
+
readonly type: "array";
|
|
33010
|
+
readonly items: {
|
|
33011
|
+
readonly type: "string";
|
|
33012
|
+
readonly enum: readonly ["customer_invoice.created", "quote.created", "dms_file.created"];
|
|
33013
|
+
};
|
|
33014
|
+
readonly example: readonly ["customer_invoice.created", "quote.created"];
|
|
33015
|
+
readonly minItems: 1;
|
|
33016
|
+
};
|
|
33017
|
+
readonly enabled: {
|
|
33018
|
+
readonly description: "Indicates whether the webhook subscription is active";
|
|
33019
|
+
readonly type: "boolean";
|
|
33020
|
+
readonly example: true;
|
|
33021
|
+
};
|
|
33022
|
+
readonly disabled_at: {
|
|
33023
|
+
readonly description: "Timestamp when the subscription was disabled";
|
|
33024
|
+
readonly type: "string";
|
|
33025
|
+
readonly format: "date-time";
|
|
33026
|
+
readonly nullable: true;
|
|
33027
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
33028
|
+
};
|
|
33029
|
+
readonly disabled_reason: {
|
|
33030
|
+
readonly description: "Reason the subscription was disabled.\n- `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).\n- `repeated_failure`: disabled after repeated delivery failures over a sustained period.\n- `manual`: disabled manually via the API.\n";
|
|
33031
|
+
readonly type: "string";
|
|
33032
|
+
readonly nullable: true;
|
|
33033
|
+
readonly enum: readonly ["permanent_error", "repeated_failure", "manual"];
|
|
33034
|
+
};
|
|
33035
|
+
readonly last_failure_status: {
|
|
33036
|
+
readonly description: "HTTP status code of the last failed delivery attempt";
|
|
33037
|
+
readonly type: "integer";
|
|
33038
|
+
readonly nullable: true;
|
|
33039
|
+
readonly example: 500;
|
|
33040
|
+
};
|
|
33041
|
+
readonly last_failure_at: {
|
|
33042
|
+
readonly description: "Timestamp of the last failed delivery attempt";
|
|
33043
|
+
readonly type: "string";
|
|
33044
|
+
readonly format: "date-time";
|
|
33045
|
+
readonly nullable: true;
|
|
33046
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
33047
|
+
};
|
|
33048
|
+
readonly consecutive_failures: {
|
|
33049
|
+
readonly description: "Number of consecutive delivery failures since the last successful delivery";
|
|
33050
|
+
readonly type: "integer";
|
|
33051
|
+
readonly example: 3;
|
|
33052
|
+
};
|
|
33053
|
+
readonly created_at: {
|
|
33054
|
+
readonly description: "Creation date of the webhook subscription";
|
|
33055
|
+
readonly type: "string";
|
|
33056
|
+
readonly format: "date-time";
|
|
33057
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
33058
|
+
};
|
|
33059
|
+
readonly updated_at: {
|
|
33060
|
+
readonly description: "Last update date of the webhook subscription";
|
|
33061
|
+
readonly type: "string";
|
|
33062
|
+
readonly format: "date-time";
|
|
33063
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
33064
|
+
};
|
|
33065
|
+
};
|
|
33066
|
+
readonly required: readonly ["id", "callback_url", "events", "enabled", "disabled_at", "disabled_reason", "last_failure_status", "last_failure_at", "consecutive_failures", "created_at", "updated_at"];
|
|
33067
|
+
};
|
|
33068
|
+
};
|
|
33069
|
+
readonly has_more: {
|
|
33070
|
+
readonly description: "Indicates whether additional results are available";
|
|
33071
|
+
readonly type: "boolean";
|
|
33072
|
+
};
|
|
33073
|
+
readonly next_cursor: {
|
|
33074
|
+
readonly description: "Cursor to retrieve the next set of results";
|
|
33075
|
+
readonly type: "string";
|
|
33076
|
+
readonly nullable: true;
|
|
33077
|
+
};
|
|
33078
|
+
};
|
|
33079
|
+
readonly required: readonly ["items", "has_more", "next_cursor"];
|
|
32591
33080
|
};
|
|
32592
33081
|
declare const BadRequestCodeEnumSchema: {
|
|
32593
33082
|
readonly type: "string";
|
|
@@ -32725,6 +33214,12 @@ declare const AuthorizedCountryAlpha2WithAnySchema: {
|
|
|
32725
33214
|
readonly type: "string";
|
|
32726
33215
|
readonly enum: readonly ["AT", "BE", "BG", "CY", "CZ", "DE", "DK", "EE", "ES", "FI", "FR", "GR", "HR", "HU", "IE", "IT", "LT", "LU", "LV", "MT", "NL", "PL", "PT", "RO", "SE", "SI", "SK", "GB", "MC", "CH", "AD", "MU", "NO", "XK", "any"];
|
|
32727
33216
|
};
|
|
33217
|
+
declare const LedgerEntryAccountantsStatusSchema: {
|
|
33218
|
+
readonly description: "The accounting state of the entry.\n- `archived`: The entry has been archived.\n- `draft`: The customer invoice is still in draft and has not been finalized.\n- `entry`: The invoice is incomplete, some information is missing and needs to be completed.\n- `waiting_details`: The entry is awaiting additional accounting details.\n- `validation_needed`: The entry is sent to the accountant and needs validation.\n- `accounting_needed`: The entry needs to be processed by the accountant.\n- `complete`: The entry has been validated by the accountant.\n- `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane\n";
|
|
33219
|
+
readonly type: "string";
|
|
33220
|
+
readonly nullable: true;
|
|
33221
|
+
readonly enum: readonly ["accounting_needed", "archived", "complete", "draft", "entry", "validation_needed", "waiting_details"];
|
|
33222
|
+
};
|
|
32728
33223
|
declare const LedgerEntries__CategoriesSchema: {
|
|
32729
33224
|
readonly type: "array";
|
|
32730
33225
|
readonly items: {
|
|
@@ -32846,6 +33341,12 @@ declare const LedgerEntries__ResponseSchema: {
|
|
|
32846
33341
|
};
|
|
32847
33342
|
readonly required: readonly ["id", "url"];
|
|
32848
33343
|
};
|
|
33344
|
+
readonly status: {
|
|
33345
|
+
readonly description: "The accounting state of the entry.\n- `archived`: The entry has been archived.\n- `draft`: The customer invoice is still in draft and has not been finalized.\n- `entry`: The invoice is incomplete, some information is missing and needs to be completed.\n- `waiting_details`: The entry is awaiting additional accounting details.\n- `validation_needed`: The entry is sent to the accountant and needs validation.\n- `accounting_needed`: The entry needs to be processed by the accountant.\n- `complete`: The entry has been validated by the accountant.\n- `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane\n";
|
|
33346
|
+
readonly type: "string";
|
|
33347
|
+
readonly nullable: true;
|
|
33348
|
+
readonly enum: readonly ["accounting_needed", "archived", "complete", "draft", "entry", "validation_needed", "waiting_details"];
|
|
33349
|
+
};
|
|
32849
33350
|
readonly categories: {
|
|
32850
33351
|
readonly type: "array";
|
|
32851
33352
|
readonly items: {
|
|
@@ -32992,7 +33493,7 @@ declare const LedgerEntries__ResponseSchema: {
|
|
|
32992
33493
|
};
|
|
32993
33494
|
};
|
|
32994
33495
|
};
|
|
32995
|
-
readonly required: readonly ["id", "label", "piece_number", "date", "due_date", "invoice_number", "journal_id", "journal", "categories", "ledger_attachment_filename", "ledger_attachment_id", "attachment", "ledger_entry_lines"];
|
|
33496
|
+
readonly required: readonly ["id", "label", "piece_number", "date", "due_date", "invoice_number", "journal_id", "journal", "status", "categories", "ledger_attachment_filename", "ledger_attachment_id", "attachment", "ledger_entry_lines"];
|
|
32996
33497
|
};
|
|
32997
33498
|
declare const LedgerEntryLines__CategoriesSchema: {
|
|
32998
33499
|
readonly type: "array";
|
|
@@ -41313,22 +41814,13 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
41313
41814
|
meta?: Record<string, unknown>;
|
|
41314
41815
|
};
|
|
41315
41816
|
/**
|
|
41316
|
-
*
|
|
41317
|
-
*
|
|
41318
|
-
* This endpoint allows you to delete the webhook subscription for the authenticated
|
|
41319
|
-
* token. Each token (developer token or OAuth application) can only have one webhook subscription.
|
|
41320
|
-
*
|
|
41321
|
-
*/
|
|
41322
|
-
declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(options?: Options<DeleteWebhookSubscriptionData, ThrowOnError>) => RequestResult<DeleteWebhookSubscriptionResponses, DeleteWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
41323
|
-
/**
|
|
41324
|
-
* Get a webhook subscription
|
|
41817
|
+
* List webhook subscriptions
|
|
41325
41818
|
*
|
|
41326
|
-
*
|
|
41327
|
-
*
|
|
41328
|
-
* Each token (developer token or OAuth application) can only have one webhook subscription.
|
|
41819
|
+
* Returns all webhook subscriptions for the authenticated token, paginated.
|
|
41820
|
+
* Note that the secret is not included in the response.
|
|
41329
41821
|
*
|
|
41330
41822
|
*/
|
|
41331
|
-
declare const
|
|
41823
|
+
declare const getWebhookSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<GetWebhookSubscriptionsData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionsResponses, GetWebhookSubscriptionsErrors, ThrowOnError, "fields">;
|
|
41332
41824
|
/**
|
|
41333
41825
|
* Create a webhook subscription
|
|
41334
41826
|
*
|
|
@@ -41338,19 +41830,34 @@ declare const getWebhookSubscription: <ThrowOnError extends boolean = false>(opt
|
|
|
41338
41830
|
* - **Developer Token**: The subscription is scoped to the single company linked to the token.
|
|
41339
41831
|
* - **OAuth Application Access Token**: The subscription covers **all companies** accessible by the OAuth application.
|
|
41340
41832
|
*
|
|
41341
|
-
*
|
|
41833
|
+
* **Limits**
|
|
41834
|
+
* Up to 10 webhook subscriptions are allowed per subscriber.
|
|
41342
41835
|
*
|
|
41343
41836
|
* **Secret**
|
|
41344
41837
|
* . The secret will be auto-generated.
|
|
41345
41838
|
*
|
|
41346
41839
|
* > 🔒 The secret is **only returned in the creation response** and cannot be retrieved afterwards. Make sure to store it securely.
|
|
41347
41840
|
*/
|
|
41348
|
-
declare const
|
|
41841
|
+
declare const postWebhookSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PostWebhookSubscriptionsData, ThrowOnError>) => RequestResult<PostWebhookSubscriptionsResponses, PostWebhookSubscriptionsErrors, ThrowOnError, "fields">;
|
|
41842
|
+
/**
|
|
41843
|
+
* Delete a webhook subscription
|
|
41844
|
+
*
|
|
41845
|
+
* This endpoint allows you to delete a webhook subscription by ID.
|
|
41846
|
+
*
|
|
41847
|
+
*/
|
|
41848
|
+
declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<DeleteWebhookSubscriptionData, ThrowOnError>) => RequestResult<DeleteWebhookSubscriptionResponses, DeleteWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
41849
|
+
/**
|
|
41850
|
+
* Get a webhook subscription
|
|
41851
|
+
*
|
|
41852
|
+
* This endpoint allows you to retrieve a webhook subscription by ID.
|
|
41853
|
+
* Note that the secret is not included in the response.
|
|
41854
|
+
*
|
|
41855
|
+
*/
|
|
41856
|
+
declare const getWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<GetWebhookSubscriptionData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionResponses, GetWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
41349
41857
|
/**
|
|
41350
41858
|
* Update a webhook subscription
|
|
41351
41859
|
*
|
|
41352
|
-
* This endpoint allows you to update
|
|
41353
|
-
* token. Each token (developer token or OAuth application) can only have one webhook subscription.
|
|
41860
|
+
* This endpoint allows you to update a webhook subscription by ID.
|
|
41354
41861
|
*
|
|
41355
41862
|
*/
|
|
41356
41863
|
declare const putWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<PutWebhookSubscriptionData, ThrowOnError>) => RequestResult<PutWebhookSubscriptionResponses, PutWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
@@ -43089,5 +43596,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
43089
43596
|
//#region src/index.d.ts
|
|
43090
43597
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
43091
43598
|
//#endregion
|
|
43092
|
-
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, Currency2, CurrencySchema, Currency_2Schema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DecimalString, DecimalStringSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddressStatusesSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressStatuses, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
43599
|
+
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, GetWebhookSubscriptionsData, GetWebhookSubscriptionsError, GetWebhookSubscriptionsErrors, GetWebhookSubscriptionsResponse, GetWebhookSubscriptionsResponses, 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, LedgerEntryAccountantsStatus, LedgerEntryAccountantsStatusSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddressStatusesSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressStatuses, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionsData, PostWebhookSubscriptionsError, PostWebhookSubscriptionsErrors, PostWebhookSubscriptionsResponse, PostWebhookSubscriptionsResponses, 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, WebhookSubscriptionsIndexResponse, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__IndexResponseSchema, 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, getWebhookSubscriptions, 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, postWebhookSubscriptions, 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 };
|
|
43093
43600
|
//# sourceMappingURL=index.d.mts.map
|