@getyetty-sdk/pennylane 2026.5.7 → 2026.5.13
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 +421 -86
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +188 -31
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -411,6 +411,46 @@ type WebhookSubscriptionsResponse = {
|
|
|
411
411
|
*/
|
|
412
412
|
updated_at: string;
|
|
413
413
|
};
|
|
414
|
+
type WebhookSubscriptionsIndexResponse = {
|
|
415
|
+
items: Array<{
|
|
416
|
+
/**
|
|
417
|
+
* ID of the webhook subscription
|
|
418
|
+
*/
|
|
419
|
+
id: number;
|
|
420
|
+
/**
|
|
421
|
+
* HTTPS URL where webhook events are sent
|
|
422
|
+
*/
|
|
423
|
+
callback_url: string;
|
|
424
|
+
/**
|
|
425
|
+
* Array of event types to subscribe to.
|
|
426
|
+
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
427
|
+
* - `quote.created`: the event is triggered when a quote is created.
|
|
428
|
+
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
429
|
+
*
|
|
430
|
+
*/
|
|
431
|
+
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
432
|
+
/**
|
|
433
|
+
* Indicates whether the webhook subscription is active
|
|
434
|
+
*/
|
|
435
|
+
enabled: boolean;
|
|
436
|
+
/**
|
|
437
|
+
* Creation date of the webhook subscription
|
|
438
|
+
*/
|
|
439
|
+
created_at: string;
|
|
440
|
+
/**
|
|
441
|
+
* Last update date of the webhook subscription
|
|
442
|
+
*/
|
|
443
|
+
updated_at: string;
|
|
444
|
+
}>;
|
|
445
|
+
/**
|
|
446
|
+
* Indicates whether additional results are available
|
|
447
|
+
*/
|
|
448
|
+
has_more: boolean;
|
|
449
|
+
/**
|
|
450
|
+
* Cursor to retrieve the next set of results
|
|
451
|
+
*/
|
|
452
|
+
next_cursor: string | null;
|
|
453
|
+
};
|
|
414
454
|
declare const BadRequestCodeEnum: {
|
|
415
455
|
readonly INVALID_DATE_FORMAT: "InvalidDateFormat";
|
|
416
456
|
readonly INVALID_DATE_TIME_FORMAT: "InvalidDateTimeFormat";
|
|
@@ -696,6 +736,40 @@ declare const AuthorizedCountryAlpha2WithAny: {
|
|
|
696
736
|
readonly ANY: "any";
|
|
697
737
|
};
|
|
698
738
|
type AuthorizedCountryAlpha2WithAny = (typeof AuthorizedCountryAlpha2WithAny)[keyof typeof AuthorizedCountryAlpha2WithAny];
|
|
739
|
+
/**
|
|
740
|
+
* The accounting state of the entry.
|
|
741
|
+
* - `archived`: The entry has been archived.
|
|
742
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
743
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
744
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
745
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
746
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
747
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
748
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
749
|
+
*
|
|
750
|
+
*/
|
|
751
|
+
declare const LedgerEntryAccountantsStatus: {
|
|
752
|
+
readonly ACCOUNTING_NEEDED: "accounting_needed";
|
|
753
|
+
readonly ARCHIVED: "archived";
|
|
754
|
+
readonly COMPLETE: "complete";
|
|
755
|
+
readonly DRAFT: "draft";
|
|
756
|
+
readonly ENTRY: "entry";
|
|
757
|
+
readonly VALIDATION_NEEDED: "validation_needed";
|
|
758
|
+
readonly WAITING_DETAILS: "waiting_details";
|
|
759
|
+
};
|
|
760
|
+
/**
|
|
761
|
+
* The accounting state of the entry.
|
|
762
|
+
* - `archived`: The entry has been archived.
|
|
763
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
764
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
765
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
766
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
767
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
768
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
769
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
770
|
+
*
|
|
771
|
+
*/
|
|
772
|
+
type LedgerEntryAccountantsStatus = (typeof LedgerEntryAccountantsStatus)[keyof typeof LedgerEntryAccountantsStatus];
|
|
699
773
|
type LedgerEntriesCategories = Array<{
|
|
700
774
|
id: number;
|
|
701
775
|
label: string;
|
|
@@ -911,6 +985,19 @@ type LedgerEntriesResponse = {
|
|
|
911
985
|
id: number;
|
|
912
986
|
url: string;
|
|
913
987
|
};
|
|
988
|
+
/**
|
|
989
|
+
* The accounting state of the entry.
|
|
990
|
+
* - `archived`: The entry has been archived.
|
|
991
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
992
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
993
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
994
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
995
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
996
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
997
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
998
|
+
*
|
|
999
|
+
*/
|
|
1000
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
914
1001
|
categories: Array<{
|
|
915
1002
|
id: number;
|
|
916
1003
|
label: string;
|
|
@@ -3017,6 +3104,13 @@ type BillingSubscriptionsResponse = {
|
|
|
3017
3104
|
*/
|
|
3018
3105
|
updated_at: string;
|
|
3019
3106
|
};
|
|
3107
|
+
declare const PdpAddressStatuses: {
|
|
3108
|
+
readonly PENDING: "pending";
|
|
3109
|
+
readonly ACTIVATED: "activated";
|
|
3110
|
+
readonly PROVISIONED: "provisioned";
|
|
3111
|
+
readonly DRAFT: "draft";
|
|
3112
|
+
};
|
|
3113
|
+
type PdpAddressStatuses = (typeof PdpAddressStatuses)[keyof typeof PdpAddressStatuses];
|
|
3020
3114
|
type PdpAddressesResponse = {
|
|
3021
3115
|
id: number;
|
|
3022
3116
|
/**
|
|
@@ -3025,7 +3119,7 @@ type PdpAddressesResponse = {
|
|
|
3025
3119
|
*/
|
|
3026
3120
|
siret: string | null;
|
|
3027
3121
|
siren: string;
|
|
3028
|
-
status: '
|
|
3122
|
+
status: 'pending' | 'activated' | 'provisioned' | 'draft';
|
|
3029
3123
|
exchange_direction: 'emission' | 'reception' | 'emission_and_reception';
|
|
3030
3124
|
created_at: string;
|
|
3031
3125
|
updated_at: string;
|
|
@@ -5875,13 +5969,22 @@ type BankEstablishmentsResponse = {
|
|
|
5875
5969
|
created_at: string;
|
|
5876
5970
|
updated_at: string;
|
|
5877
5971
|
};
|
|
5878
|
-
type
|
|
5972
|
+
type GetWebhookSubscriptionsData = {
|
|
5879
5973
|
body?: never;
|
|
5880
5974
|
path?: never;
|
|
5881
|
-
query?:
|
|
5882
|
-
|
|
5975
|
+
query?: {
|
|
5976
|
+
/**
|
|
5977
|
+
* Opaque cursor from a previous response to retrieve the next page
|
|
5978
|
+
*/
|
|
5979
|
+
cursor?: string;
|
|
5980
|
+
/**
|
|
5981
|
+
* Number of items to return per page
|
|
5982
|
+
*/
|
|
5983
|
+
limit?: number;
|
|
5984
|
+
};
|
|
5985
|
+
url: '/api/external/v2/webhook_subscriptions';
|
|
5883
5986
|
};
|
|
5884
|
-
type
|
|
5987
|
+
type GetWebhookSubscriptionsErrors = {
|
|
5885
5988
|
/**
|
|
5886
5989
|
* Bad request
|
|
5887
5990
|
*/
|
|
@@ -5921,29 +6024,78 @@ type DeleteWebhookSubscriptionErrors = {
|
|
|
5921
6024
|
error: string;
|
|
5922
6025
|
status: number;
|
|
5923
6026
|
};
|
|
5924
|
-
/**
|
|
5925
|
-
* The resource was not found
|
|
5926
|
-
*/
|
|
5927
|
-
404: {
|
|
5928
|
-
error: string;
|
|
5929
|
-
status: number;
|
|
5930
|
-
};
|
|
5931
6027
|
};
|
|
5932
|
-
type
|
|
5933
|
-
type
|
|
6028
|
+
type GetWebhookSubscriptionsError = GetWebhookSubscriptionsErrors[keyof GetWebhookSubscriptionsErrors];
|
|
6029
|
+
type GetWebhookSubscriptionsResponses = {
|
|
5934
6030
|
/**
|
|
5935
|
-
*
|
|
6031
|
+
* A paginated list of webhook subscriptions
|
|
5936
6032
|
*/
|
|
5937
|
-
|
|
6033
|
+
200: {
|
|
6034
|
+
items: Array<{
|
|
6035
|
+
/**
|
|
6036
|
+
* ID of the webhook subscription
|
|
6037
|
+
*/
|
|
6038
|
+
id: number;
|
|
6039
|
+
/**
|
|
6040
|
+
* HTTPS URL where webhook events are sent
|
|
6041
|
+
*/
|
|
6042
|
+
callback_url: string;
|
|
6043
|
+
/**
|
|
6044
|
+
* Array of event types to subscribe to.
|
|
6045
|
+
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
6046
|
+
* - `quote.created`: the event is triggered when a quote is created.
|
|
6047
|
+
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
6048
|
+
*
|
|
6049
|
+
*/
|
|
6050
|
+
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
6051
|
+
/**
|
|
6052
|
+
* Indicates whether the webhook subscription is active
|
|
6053
|
+
*/
|
|
6054
|
+
enabled: boolean;
|
|
6055
|
+
/**
|
|
6056
|
+
* Creation date of the webhook subscription
|
|
6057
|
+
*/
|
|
6058
|
+
created_at: string;
|
|
6059
|
+
/**
|
|
6060
|
+
* Last update date of the webhook subscription
|
|
6061
|
+
*/
|
|
6062
|
+
updated_at: string;
|
|
6063
|
+
}>;
|
|
6064
|
+
/**
|
|
6065
|
+
* Indicates whether additional results are available
|
|
6066
|
+
*/
|
|
6067
|
+
has_more: boolean;
|
|
6068
|
+
/**
|
|
6069
|
+
* Cursor to retrieve the next set of results
|
|
6070
|
+
*/
|
|
6071
|
+
next_cursor: string | null;
|
|
6072
|
+
};
|
|
5938
6073
|
};
|
|
5939
|
-
type
|
|
5940
|
-
type
|
|
5941
|
-
body
|
|
6074
|
+
type GetWebhookSubscriptionsResponse = GetWebhookSubscriptionsResponses[keyof GetWebhookSubscriptionsResponses];
|
|
6075
|
+
type PostWebhookSubscriptionsData = {
|
|
6076
|
+
body: {
|
|
6077
|
+
/**
|
|
6078
|
+
* HTTPS URL where webhook events will be sent
|
|
6079
|
+
*/
|
|
6080
|
+
callback_url: string;
|
|
6081
|
+
/**
|
|
6082
|
+
* Array of event types to subscribe to.
|
|
6083
|
+
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
6084
|
+
* - `quote.created`: the event is triggered when a quote is created.
|
|
6085
|
+
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
6086
|
+
*
|
|
6087
|
+
*/
|
|
6088
|
+
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
6089
|
+
/**
|
|
6090
|
+
* Indicates whether the webhook subscription is active
|
|
6091
|
+
*/
|
|
6092
|
+
enabled?: boolean;
|
|
6093
|
+
};
|
|
5942
6094
|
path?: never;
|
|
5943
6095
|
query?: never;
|
|
5944
|
-
url: '/api/external/v2/
|
|
6096
|
+
url: '/api/external/v2/webhook_subscriptions';
|
|
5945
6097
|
};
|
|
5946
|
-
type
|
|
6098
|
+
type PostWebhookSubscriptionsErrors = {
|
|
5947
6099
|
/**
|
|
5948
6100
|
* Bad request
|
|
5949
6101
|
*/
|
|
@@ -5984,19 +6136,19 @@ type GetWebhookSubscriptionErrors = {
|
|
|
5984
6136
|
status: number;
|
|
5985
6137
|
};
|
|
5986
6138
|
/**
|
|
5987
|
-
*
|
|
6139
|
+
* Unprocessable content
|
|
5988
6140
|
*/
|
|
5989
|
-
|
|
6141
|
+
422: {
|
|
5990
6142
|
error: string;
|
|
5991
6143
|
status: number;
|
|
5992
6144
|
};
|
|
5993
6145
|
};
|
|
5994
|
-
type
|
|
5995
|
-
type
|
|
6146
|
+
type PostWebhookSubscriptionsError = PostWebhookSubscriptionsErrors[keyof PostWebhookSubscriptionsErrors];
|
|
6147
|
+
type PostWebhookSubscriptionsResponses = {
|
|
5996
6148
|
/**
|
|
5997
|
-
*
|
|
6149
|
+
* Renders the created webhook subscription
|
|
5998
6150
|
*/
|
|
5999
|
-
|
|
6151
|
+
201: {
|
|
6000
6152
|
/**
|
|
6001
6153
|
* ID of the webhook subscription
|
|
6002
6154
|
*/
|
|
@@ -6017,6 +6169,12 @@ type GetWebhookSubscriptionResponses = {
|
|
|
6017
6169
|
* Indicates whether the webhook subscription is active
|
|
6018
6170
|
*/
|
|
6019
6171
|
enabled: boolean;
|
|
6172
|
+
/**
|
|
6173
|
+
* Automatically generated secret for HMAC signature verification. This is only returned once
|
|
6174
|
+
* on creation. Store it securely as it cannot be retrieved afterwards.
|
|
6175
|
+
*
|
|
6176
|
+
*/
|
|
6177
|
+
secret: string;
|
|
6020
6178
|
/**
|
|
6021
6179
|
* Creation date of the webhook subscription
|
|
6022
6180
|
*/
|
|
@@ -6027,31 +6185,19 @@ type GetWebhookSubscriptionResponses = {
|
|
|
6027
6185
|
updated_at: string;
|
|
6028
6186
|
};
|
|
6029
6187
|
};
|
|
6030
|
-
type
|
|
6031
|
-
type
|
|
6032
|
-
body
|
|
6033
|
-
|
|
6034
|
-
* HTTPS URL where webhook events will be sent
|
|
6035
|
-
*/
|
|
6036
|
-
callback_url: string;
|
|
6037
|
-
/**
|
|
6038
|
-
* Array of event types to subscribe to.
|
|
6039
|
-
* - `customer_invoice.created`: the event is triggered when a customer invoice is created.
|
|
6040
|
-
* - `quote.created`: the event is triggered when a quote is created.
|
|
6041
|
-
* - `dms_file.created`: the event is triggered when a dms file is created.
|
|
6042
|
-
*
|
|
6043
|
-
*/
|
|
6044
|
-
events: Array<'customer_invoice.created' | 'quote.created' | 'dms_file.created'>;
|
|
6188
|
+
type PostWebhookSubscriptionsResponse = PostWebhookSubscriptionsResponses[keyof PostWebhookSubscriptionsResponses];
|
|
6189
|
+
type DeleteWebhookSubscriptionData = {
|
|
6190
|
+
body?: never;
|
|
6191
|
+
path: {
|
|
6045
6192
|
/**
|
|
6046
|
-
*
|
|
6193
|
+
* ID of the webhook subscription
|
|
6047
6194
|
*/
|
|
6048
|
-
|
|
6195
|
+
id: number;
|
|
6049
6196
|
};
|
|
6050
|
-
path?: never;
|
|
6051
6197
|
query?: never;
|
|
6052
|
-
url: '/api/external/v2/
|
|
6198
|
+
url: '/api/external/v2/webhook_subscriptions/{id}';
|
|
6053
6199
|
};
|
|
6054
|
-
type
|
|
6200
|
+
type DeleteWebhookSubscriptionErrors = {
|
|
6055
6201
|
/**
|
|
6056
6202
|
* Bad request
|
|
6057
6203
|
*/
|
|
@@ -6098,27 +6244,80 @@ type PostWebhookSubscriptionErrors = {
|
|
|
6098
6244
|
error: string;
|
|
6099
6245
|
status: number;
|
|
6100
6246
|
};
|
|
6247
|
+
};
|
|
6248
|
+
type DeleteWebhookSubscriptionError = DeleteWebhookSubscriptionErrors[keyof DeleteWebhookSubscriptionErrors];
|
|
6249
|
+
type DeleteWebhookSubscriptionResponses = {
|
|
6101
6250
|
/**
|
|
6102
|
-
*
|
|
6251
|
+
* Webhook subscription deleted
|
|
6103
6252
|
*/
|
|
6104
|
-
|
|
6253
|
+
204: void;
|
|
6254
|
+
};
|
|
6255
|
+
type DeleteWebhookSubscriptionResponse = DeleteWebhookSubscriptionResponses[keyof DeleteWebhookSubscriptionResponses];
|
|
6256
|
+
type GetWebhookSubscriptionData = {
|
|
6257
|
+
body?: never;
|
|
6258
|
+
path: {
|
|
6259
|
+
/**
|
|
6260
|
+
* ID of the webhook subscription
|
|
6261
|
+
*/
|
|
6262
|
+
id: number;
|
|
6263
|
+
};
|
|
6264
|
+
query?: never;
|
|
6265
|
+
url: '/api/external/v2/webhook_subscriptions/{id}';
|
|
6266
|
+
};
|
|
6267
|
+
type GetWebhookSubscriptionErrors = {
|
|
6268
|
+
/**
|
|
6269
|
+
* Bad request
|
|
6270
|
+
*/
|
|
6271
|
+
400: {
|
|
6272
|
+
error: string;
|
|
6273
|
+
status: number;
|
|
6274
|
+
} | {
|
|
6275
|
+
message: string;
|
|
6276
|
+
} | {
|
|
6277
|
+
message: string;
|
|
6278
|
+
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';
|
|
6279
|
+
} | {
|
|
6280
|
+
message: string;
|
|
6281
|
+
field: string;
|
|
6282
|
+
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';
|
|
6283
|
+
} | {
|
|
6284
|
+
message: string;
|
|
6285
|
+
payload: string;
|
|
6286
|
+
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';
|
|
6287
|
+
} | {
|
|
6288
|
+
message: string;
|
|
6289
|
+
field: string;
|
|
6290
|
+
payload: string;
|
|
6291
|
+
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';
|
|
6292
|
+
};
|
|
6293
|
+
/**
|
|
6294
|
+
* Access token is missing or invalid
|
|
6295
|
+
*/
|
|
6296
|
+
401: {
|
|
6105
6297
|
error: string;
|
|
6106
6298
|
status: number;
|
|
6107
6299
|
};
|
|
6108
6300
|
/**
|
|
6109
|
-
*
|
|
6301
|
+
* Access to this resource forbidden
|
|
6110
6302
|
*/
|
|
6111
|
-
|
|
6303
|
+
403: {
|
|
6304
|
+
error: string;
|
|
6305
|
+
status: number;
|
|
6306
|
+
};
|
|
6307
|
+
/**
|
|
6308
|
+
* The resource was not found
|
|
6309
|
+
*/
|
|
6310
|
+
404: {
|
|
6112
6311
|
error: string;
|
|
6113
6312
|
status: number;
|
|
6114
6313
|
};
|
|
6115
6314
|
};
|
|
6116
|
-
type
|
|
6117
|
-
type
|
|
6315
|
+
type GetWebhookSubscriptionError = GetWebhookSubscriptionErrors[keyof GetWebhookSubscriptionErrors];
|
|
6316
|
+
type GetWebhookSubscriptionResponses = {
|
|
6118
6317
|
/**
|
|
6119
|
-
*
|
|
6318
|
+
* A webhook subscription
|
|
6120
6319
|
*/
|
|
6121
|
-
|
|
6320
|
+
200: {
|
|
6122
6321
|
/**
|
|
6123
6322
|
* ID of the webhook subscription
|
|
6124
6323
|
*/
|
|
@@ -6139,12 +6338,6 @@ type PostWebhookSubscriptionResponses = {
|
|
|
6139
6338
|
* Indicates whether the webhook subscription is active
|
|
6140
6339
|
*/
|
|
6141
6340
|
enabled: boolean;
|
|
6142
|
-
/**
|
|
6143
|
-
* Automatically generated secret for HMAC signature verification. This is only returned once
|
|
6144
|
-
* on creation. Store it securely as it cannot be retrieved afterwards.
|
|
6145
|
-
*
|
|
6146
|
-
*/
|
|
6147
|
-
secret: string;
|
|
6148
6341
|
/**
|
|
6149
6342
|
* Creation date of the webhook subscription
|
|
6150
6343
|
*/
|
|
@@ -6155,7 +6348,7 @@ type PostWebhookSubscriptionResponses = {
|
|
|
6155
6348
|
updated_at: string;
|
|
6156
6349
|
};
|
|
6157
6350
|
};
|
|
6158
|
-
type
|
|
6351
|
+
type GetWebhookSubscriptionResponse = GetWebhookSubscriptionResponses[keyof GetWebhookSubscriptionResponses];
|
|
6159
6352
|
type PutWebhookSubscriptionData = {
|
|
6160
6353
|
body: {
|
|
6161
6354
|
/**
|
|
@@ -6175,9 +6368,14 @@ type PutWebhookSubscriptionData = {
|
|
|
6175
6368
|
*/
|
|
6176
6369
|
enabled?: boolean;
|
|
6177
6370
|
};
|
|
6178
|
-
path
|
|
6371
|
+
path: {
|
|
6372
|
+
/**
|
|
6373
|
+
* ID of the webhook subscription
|
|
6374
|
+
*/
|
|
6375
|
+
id: number;
|
|
6376
|
+
};
|
|
6179
6377
|
query?: never;
|
|
6180
|
-
url: '/api/external/v2/
|
|
6378
|
+
url: '/api/external/v2/webhook_subscriptions/{id}';
|
|
6181
6379
|
};
|
|
6182
6380
|
type PutWebhookSubscriptionErrors = {
|
|
6183
6381
|
/**
|
|
@@ -7557,6 +7755,19 @@ type GetLedgerEntriesResponses = {
|
|
|
7557
7755
|
id: number;
|
|
7558
7756
|
url: string;
|
|
7559
7757
|
};
|
|
7758
|
+
/**
|
|
7759
|
+
* The accounting state of the entry.
|
|
7760
|
+
* - `archived`: The entry has been archived.
|
|
7761
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
7762
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
7763
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
7764
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
7765
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
7766
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
7767
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
7768
|
+
*
|
|
7769
|
+
*/
|
|
7770
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
7560
7771
|
categories: Array<{
|
|
7561
7772
|
id: number;
|
|
7562
7773
|
label: string;
|
|
@@ -7784,6 +7995,19 @@ type PostLedgerEntriesResponses = {
|
|
|
7784
7995
|
id: number;
|
|
7785
7996
|
url: string;
|
|
7786
7997
|
};
|
|
7998
|
+
/**
|
|
7999
|
+
* The accounting state of the entry.
|
|
8000
|
+
* - `archived`: The entry has been archived.
|
|
8001
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
8002
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
8003
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
8004
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
8005
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
8006
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
8007
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
8008
|
+
*
|
|
8009
|
+
*/
|
|
8010
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
7787
8011
|
categories: Array<{
|
|
7788
8012
|
id: number;
|
|
7789
8013
|
label: string;
|
|
@@ -7982,6 +8206,19 @@ type GetLedgerEntryResponses = {
|
|
|
7982
8206
|
id: number;
|
|
7983
8207
|
url: string;
|
|
7984
8208
|
};
|
|
8209
|
+
/**
|
|
8210
|
+
* The accounting state of the entry.
|
|
8211
|
+
* - `archived`: The entry has been archived.
|
|
8212
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
8213
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
8214
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
8215
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
8216
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
8217
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
8218
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
8219
|
+
*
|
|
8220
|
+
*/
|
|
8221
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
7985
8222
|
categories: Array<{
|
|
7986
8223
|
id: number;
|
|
7987
8224
|
label: string;
|
|
@@ -8242,6 +8479,19 @@ type PutLedgerEntriesResponses = {
|
|
|
8242
8479
|
id: number;
|
|
8243
8480
|
url: string;
|
|
8244
8481
|
};
|
|
8482
|
+
/**
|
|
8483
|
+
* The accounting state of the entry.
|
|
8484
|
+
* - `archived`: The entry has been archived.
|
|
8485
|
+
* - `draft`: The customer invoice is still in draft and has not been finalized.
|
|
8486
|
+
* - `entry`: The invoice is incomplete, some information is missing and needs to be completed.
|
|
8487
|
+
* - `waiting_details`: The entry is awaiting additional accounting details.
|
|
8488
|
+
* - `validation_needed`: The entry is sent to the accountant and needs validation.
|
|
8489
|
+
* - `accounting_needed`: The entry needs to be processed by the accountant.
|
|
8490
|
+
* - `complete`: The entry has been validated by the accountant.
|
|
8491
|
+
* - `null` : The entry is neither a transaction nor an invoice that needs to be processed on Pennylane
|
|
8492
|
+
*
|
|
8493
|
+
*/
|
|
8494
|
+
status: 'accounting_needed' | 'archived' | 'complete' | 'draft' | 'entry' | 'validation_needed' | 'waiting_details';
|
|
8245
8495
|
categories: Array<{
|
|
8246
8496
|
id: number;
|
|
8247
8497
|
label: string;
|
|
@@ -13566,7 +13816,7 @@ type GetPaRegistrationsResponses = {
|
|
|
13566
13816
|
*/
|
|
13567
13817
|
siret: string | null;
|
|
13568
13818
|
siren: string;
|
|
13569
|
-
status: '
|
|
13819
|
+
status: 'pending' | 'activated' | 'provisioned' | 'draft';
|
|
13570
13820
|
exchange_direction: 'emission' | 'reception' | 'emission_and_reception';
|
|
13571
13821
|
created_at: string;
|
|
13572
13822
|
updated_at: string;
|
|
@@ -32582,6 +32832,70 @@ declare const WebhookSubscriptions__ResponseSchema: {
|
|
|
32582
32832
|
};
|
|
32583
32833
|
readonly required: readonly ["id", "callback_url", "events", "enabled", "created_at", "updated_at"];
|
|
32584
32834
|
};
|
|
32835
|
+
declare const WebhookSubscriptions__IndexResponseSchema: {
|
|
32836
|
+
readonly type: "object";
|
|
32837
|
+
readonly additionalProperties: false;
|
|
32838
|
+
readonly properties: {
|
|
32839
|
+
readonly items: {
|
|
32840
|
+
readonly type: "array";
|
|
32841
|
+
readonly items: {
|
|
32842
|
+
readonly type: "object";
|
|
32843
|
+
readonly additionalProperties: false;
|
|
32844
|
+
readonly properties: {
|
|
32845
|
+
readonly id: {
|
|
32846
|
+
readonly type: "integer";
|
|
32847
|
+
readonly description: "ID of the webhook subscription";
|
|
32848
|
+
readonly example: 12345;
|
|
32849
|
+
};
|
|
32850
|
+
readonly callback_url: {
|
|
32851
|
+
readonly description: "HTTPS URL where webhook events are sent";
|
|
32852
|
+
readonly type: "string";
|
|
32853
|
+
readonly format: "uri";
|
|
32854
|
+
readonly example: "https://example.com/webhooks";
|
|
32855
|
+
};
|
|
32856
|
+
readonly events: {
|
|
32857
|
+
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";
|
|
32858
|
+
readonly type: "array";
|
|
32859
|
+
readonly items: {
|
|
32860
|
+
readonly type: "string";
|
|
32861
|
+
readonly enum: readonly ["customer_invoice.created", "quote.created", "dms_file.created"];
|
|
32862
|
+
};
|
|
32863
|
+
readonly example: readonly ["customer_invoice.created", "quote.created"];
|
|
32864
|
+
readonly minItems: 1;
|
|
32865
|
+
};
|
|
32866
|
+
readonly enabled: {
|
|
32867
|
+
readonly description: "Indicates whether the webhook subscription is active";
|
|
32868
|
+
readonly type: "boolean";
|
|
32869
|
+
readonly example: true;
|
|
32870
|
+
};
|
|
32871
|
+
readonly created_at: {
|
|
32872
|
+
readonly description: "Creation date of the webhook subscription";
|
|
32873
|
+
readonly type: "string";
|
|
32874
|
+
readonly format: "date-time";
|
|
32875
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
32876
|
+
};
|
|
32877
|
+
readonly updated_at: {
|
|
32878
|
+
readonly description: "Last update date of the webhook subscription";
|
|
32879
|
+
readonly type: "string";
|
|
32880
|
+
readonly format: "date-time";
|
|
32881
|
+
readonly example: "2023-08-07T14:23:12.000Z";
|
|
32882
|
+
};
|
|
32883
|
+
};
|
|
32884
|
+
readonly required: readonly ["id", "callback_url", "events", "enabled", "created_at", "updated_at"];
|
|
32885
|
+
};
|
|
32886
|
+
};
|
|
32887
|
+
readonly has_more: {
|
|
32888
|
+
readonly description: "Indicates whether additional results are available";
|
|
32889
|
+
readonly type: "boolean";
|
|
32890
|
+
};
|
|
32891
|
+
readonly next_cursor: {
|
|
32892
|
+
readonly description: "Cursor to retrieve the next set of results";
|
|
32893
|
+
readonly type: "string";
|
|
32894
|
+
readonly nullable: true;
|
|
32895
|
+
};
|
|
32896
|
+
};
|
|
32897
|
+
readonly required: readonly ["items", "has_more", "next_cursor"];
|
|
32898
|
+
};
|
|
32585
32899
|
declare const BadRequestCodeEnumSchema: {
|
|
32586
32900
|
readonly type: "string";
|
|
32587
32901
|
readonly enum: readonly ["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"];
|
|
@@ -32718,6 +33032,12 @@ declare const AuthorizedCountryAlpha2WithAnySchema: {
|
|
|
32718
33032
|
readonly type: "string";
|
|
32719
33033
|
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"];
|
|
32720
33034
|
};
|
|
33035
|
+
declare const LedgerEntryAccountantsStatusSchema: {
|
|
33036
|
+
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";
|
|
33037
|
+
readonly type: "string";
|
|
33038
|
+
readonly nullable: true;
|
|
33039
|
+
readonly enum: readonly ["accounting_needed", "archived", "complete", "draft", "entry", "validation_needed", "waiting_details"];
|
|
33040
|
+
};
|
|
32721
33041
|
declare const LedgerEntries__CategoriesSchema: {
|
|
32722
33042
|
readonly type: "array";
|
|
32723
33043
|
readonly items: {
|
|
@@ -32839,6 +33159,12 @@ declare const LedgerEntries__ResponseSchema: {
|
|
|
32839
33159
|
};
|
|
32840
33160
|
readonly required: readonly ["id", "url"];
|
|
32841
33161
|
};
|
|
33162
|
+
readonly status: {
|
|
33163
|
+
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";
|
|
33164
|
+
readonly type: "string";
|
|
33165
|
+
readonly nullable: true;
|
|
33166
|
+
readonly enum: readonly ["accounting_needed", "archived", "complete", "draft", "entry", "validation_needed", "waiting_details"];
|
|
33167
|
+
};
|
|
32842
33168
|
readonly categories: {
|
|
32843
33169
|
readonly type: "array";
|
|
32844
33170
|
readonly items: {
|
|
@@ -32985,7 +33311,7 @@ declare const LedgerEntries__ResponseSchema: {
|
|
|
32985
33311
|
};
|
|
32986
33312
|
};
|
|
32987
33313
|
};
|
|
32988
|
-
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"];
|
|
33314
|
+
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"];
|
|
32989
33315
|
};
|
|
32990
33316
|
declare const LedgerEntryLines__CategoriesSchema: {
|
|
32991
33317
|
readonly type: "array";
|
|
@@ -35765,6 +36091,10 @@ declare const BillingSubscriptions__ResponseSchema: {
|
|
|
35765
36091
|
};
|
|
35766
36092
|
readonly required: readonly ["id", "next_occurrence", "prev_occurrence", "stopped_at", "start", "finish", "status", "mode", "activated_at", "payment_conditions", "payment_method", "label", "email_settings", "recurring_rule", "customer", "customer_invoice_data", "created_at", "updated_at"];
|
|
35767
36093
|
};
|
|
36094
|
+
declare const PDPAddressStatusesSchema: {
|
|
36095
|
+
readonly type: "string";
|
|
36096
|
+
readonly enum: readonly ["pending", "activated", "provisioned", "draft"];
|
|
36097
|
+
};
|
|
35768
36098
|
declare const PDPAddresses__ResponseSchema: {
|
|
35769
36099
|
readonly type: "object";
|
|
35770
36100
|
readonly additionalProperties: false;
|
|
@@ -35786,8 +36116,7 @@ declare const PDPAddresses__ResponseSchema: {
|
|
|
35786
36116
|
};
|
|
35787
36117
|
readonly status: {
|
|
35788
36118
|
readonly type: "string";
|
|
35789
|
-
readonly
|
|
35790
|
-
readonly enum: readonly ["provisioned", "pending", "activated"];
|
|
36119
|
+
readonly enum: readonly ["pending", "activated", "provisioned", "draft"];
|
|
35791
36120
|
};
|
|
35792
36121
|
readonly exchange_direction: {
|
|
35793
36122
|
readonly type: "string";
|
|
@@ -41303,22 +41632,13 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
41303
41632
|
meta?: Record<string, unknown>;
|
|
41304
41633
|
};
|
|
41305
41634
|
/**
|
|
41306
|
-
*
|
|
41307
|
-
*
|
|
41308
|
-
* This endpoint allows you to delete the webhook subscription for the authenticated
|
|
41309
|
-
* token. Each token (developer token or OAuth application) can only have one webhook subscription.
|
|
41310
|
-
*
|
|
41311
|
-
*/
|
|
41312
|
-
declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(options?: Options<DeleteWebhookSubscriptionData, ThrowOnError>) => RequestResult<DeleteWebhookSubscriptionResponses, DeleteWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
41313
|
-
/**
|
|
41314
|
-
* Get a webhook subscription
|
|
41635
|
+
* List webhook subscriptions
|
|
41315
41636
|
*
|
|
41316
|
-
*
|
|
41317
|
-
*
|
|
41318
|
-
* Each token (developer token or OAuth application) can only have one webhook subscription.
|
|
41637
|
+
* Returns all webhook subscriptions for the authenticated token, paginated.
|
|
41638
|
+
* Note that the secret is not included in the response.
|
|
41319
41639
|
*
|
|
41320
41640
|
*/
|
|
41321
|
-
declare const
|
|
41641
|
+
declare const getWebhookSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<GetWebhookSubscriptionsData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionsResponses, GetWebhookSubscriptionsErrors, ThrowOnError, "fields">;
|
|
41322
41642
|
/**
|
|
41323
41643
|
* Create a webhook subscription
|
|
41324
41644
|
*
|
|
@@ -41328,19 +41648,34 @@ declare const getWebhookSubscription: <ThrowOnError extends boolean = false>(opt
|
|
|
41328
41648
|
* - **Developer Token**: The subscription is scoped to the single company linked to the token.
|
|
41329
41649
|
* - **OAuth Application Access Token**: The subscription covers **all companies** accessible by the OAuth application.
|
|
41330
41650
|
*
|
|
41331
|
-
*
|
|
41651
|
+
* **Limits**
|
|
41652
|
+
* Up to 10 webhook subscriptions are allowed per subscriber.
|
|
41332
41653
|
*
|
|
41333
41654
|
* **Secret**
|
|
41334
41655
|
* . The secret will be auto-generated.
|
|
41335
41656
|
*
|
|
41336
41657
|
* > 🔒 The secret is **only returned in the creation response** and cannot be retrieved afterwards. Make sure to store it securely.
|
|
41337
41658
|
*/
|
|
41338
|
-
declare const
|
|
41659
|
+
declare const postWebhookSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PostWebhookSubscriptionsData, ThrowOnError>) => RequestResult<PostWebhookSubscriptionsResponses, PostWebhookSubscriptionsErrors, ThrowOnError, "fields">;
|
|
41660
|
+
/**
|
|
41661
|
+
* Delete a webhook subscription
|
|
41662
|
+
*
|
|
41663
|
+
* This endpoint allows you to delete a webhook subscription by ID.
|
|
41664
|
+
*
|
|
41665
|
+
*/
|
|
41666
|
+
declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<DeleteWebhookSubscriptionData, ThrowOnError>) => RequestResult<DeleteWebhookSubscriptionResponses, DeleteWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
41667
|
+
/**
|
|
41668
|
+
* Get a webhook subscription
|
|
41669
|
+
*
|
|
41670
|
+
* This endpoint allows you to retrieve a webhook subscription by ID.
|
|
41671
|
+
* Note that the secret is not included in the response.
|
|
41672
|
+
*
|
|
41673
|
+
*/
|
|
41674
|
+
declare const getWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<GetWebhookSubscriptionData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionResponses, GetWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
41339
41675
|
/**
|
|
41340
41676
|
* Update a webhook subscription
|
|
41341
41677
|
*
|
|
41342
|
-
* This endpoint allows you to update
|
|
41343
|
-
* token. Each token (developer token or OAuth application) can only have one webhook subscription.
|
|
41678
|
+
* This endpoint allows you to update a webhook subscription by ID.
|
|
41344
41679
|
*
|
|
41345
41680
|
*/
|
|
41346
41681
|
declare const putWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<PutWebhookSubscriptionData, ThrowOnError>) => RequestResult<PutWebhookSubscriptionResponses, PutWebhookSubscriptionErrors, ThrowOnError, "fields">;
|
|
@@ -43079,5 +43414,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
43079
43414
|
//#region src/index.d.ts
|
|
43080
43415
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
43081
43416
|
//#endregion
|
|
43082
|
-
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, Currency2, CurrencySchema, Currency_2Schema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DecimalString, DecimalStringSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
43417
|
+
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 };
|
|
43083
43418
|
//# sourceMappingURL=index.d.mts.map
|