@getyetty-sdk/pennylane 2026.3.7 → 2026.3.14
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 +457 -592
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +154 -95
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3122,6 +3122,15 @@ type CompanyCustomersResponse = {
|
|
|
3122
3122
|
*/
|
|
3123
3123
|
url: string;
|
|
3124
3124
|
};
|
|
3125
|
+
/**
|
|
3126
|
+
* Pro Account mandates associated with this customer
|
|
3127
|
+
*/
|
|
3128
|
+
pro_account_mandates: {
|
|
3129
|
+
/**
|
|
3130
|
+
* URL to list Pro Account mandates associated with this customer
|
|
3131
|
+
*/
|
|
3132
|
+
url: string;
|
|
3133
|
+
};
|
|
3125
3134
|
contacts: {
|
|
3126
3135
|
/**
|
|
3127
3136
|
* URL to get the contacts of the customer.
|
|
@@ -3178,6 +3187,15 @@ type IndividualCustomersResponse = {
|
|
|
3178
3187
|
*/
|
|
3179
3188
|
url: string;
|
|
3180
3189
|
};
|
|
3190
|
+
/**
|
|
3191
|
+
* Pro Account mandates associated with this customer
|
|
3192
|
+
*/
|
|
3193
|
+
pro_account_mandates: {
|
|
3194
|
+
/**
|
|
3195
|
+
* URL to list Pro Account mandates associated with this customer
|
|
3196
|
+
*/
|
|
3197
|
+
url: string;
|
|
3198
|
+
};
|
|
3181
3199
|
contacts: {
|
|
3182
3200
|
/**
|
|
3183
3201
|
* URL to get the contacts of the customer.
|
|
@@ -3238,6 +3256,15 @@ type CustomersResponse = {
|
|
|
3238
3256
|
*/
|
|
3239
3257
|
url: string;
|
|
3240
3258
|
};
|
|
3259
|
+
/**
|
|
3260
|
+
* Pro Account mandates associated with this customer
|
|
3261
|
+
*/
|
|
3262
|
+
pro_account_mandates: {
|
|
3263
|
+
/**
|
|
3264
|
+
* URL to list Pro Account mandates associated with this customer
|
|
3265
|
+
*/
|
|
3266
|
+
url: string;
|
|
3267
|
+
};
|
|
3241
3268
|
contacts: {
|
|
3242
3269
|
/**
|
|
3243
3270
|
* URL to get the contacts of the customer.
|
|
@@ -3294,6 +3321,15 @@ type CustomersResponse = {
|
|
|
3294
3321
|
*/
|
|
3295
3322
|
url: string;
|
|
3296
3323
|
};
|
|
3324
|
+
/**
|
|
3325
|
+
* Pro Account mandates associated with this customer
|
|
3326
|
+
*/
|
|
3327
|
+
pro_account_mandates: {
|
|
3328
|
+
/**
|
|
3329
|
+
* URL to list Pro Account mandates associated with this customer
|
|
3330
|
+
*/
|
|
3331
|
+
url: string;
|
|
3332
|
+
};
|
|
3297
3333
|
contacts: {
|
|
3298
3334
|
/**
|
|
3299
3335
|
* URL to get the contacts of the customer.
|
|
@@ -4284,6 +4320,37 @@ type SupplierInvoicesMatchedTransactionsResponse = {
|
|
|
4284
4320
|
updated_at: string;
|
|
4285
4321
|
}>;
|
|
4286
4322
|
};
|
|
4323
|
+
type SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine = {
|
|
4324
|
+
/**
|
|
4325
|
+
* Factur-X line identifier (BT-126 LineID).
|
|
4326
|
+
*/
|
|
4327
|
+
e_invoice_line_id: string;
|
|
4328
|
+
/**
|
|
4329
|
+
* Ledger account id for this line.
|
|
4330
|
+
*/
|
|
4331
|
+
ledger_account_id?: number | null;
|
|
4332
|
+
};
|
|
4333
|
+
/**
|
|
4334
|
+
* Optional JSON payload to enrich the imported supplier invoice.
|
|
4335
|
+
* Invoice line `e_invoice_line_id` must match Factur-X BT-126 (LineID).
|
|
4336
|
+
*
|
|
4337
|
+
*/
|
|
4338
|
+
type SupplierInvoicesEInvoicesImportsImportOptions = {
|
|
4339
|
+
/**
|
|
4340
|
+
* Supplier id for the imported invoice.
|
|
4341
|
+
*/
|
|
4342
|
+
supplier_id?: number;
|
|
4343
|
+
invoice_lines?: Array<{
|
|
4344
|
+
/**
|
|
4345
|
+
* Factur-X line identifier (BT-126 LineID).
|
|
4346
|
+
*/
|
|
4347
|
+
e_invoice_line_id: string;
|
|
4348
|
+
/**
|
|
4349
|
+
* Ledger account id for this line.
|
|
4350
|
+
*/
|
|
4351
|
+
ledger_account_id?: number | null;
|
|
4352
|
+
}>;
|
|
4353
|
+
};
|
|
4287
4354
|
type CategoryGroupsResponse = {
|
|
4288
4355
|
id: number;
|
|
4289
4356
|
label: string;
|
|
@@ -14592,6 +14659,15 @@ type PostCompanyCustomerResponses = {
|
|
|
14592
14659
|
*/
|
|
14593
14660
|
url: string;
|
|
14594
14661
|
};
|
|
14662
|
+
/**
|
|
14663
|
+
* Pro Account mandates associated with this customer
|
|
14664
|
+
*/
|
|
14665
|
+
pro_account_mandates: {
|
|
14666
|
+
/**
|
|
14667
|
+
* URL to list Pro Account mandates associated with this customer
|
|
14668
|
+
*/
|
|
14669
|
+
url: string;
|
|
14670
|
+
};
|
|
14595
14671
|
contacts: {
|
|
14596
14672
|
/**
|
|
14597
14673
|
* URL to get the contacts of the customer.
|
|
@@ -14740,6 +14816,15 @@ type GetCompanyCustomerResponses = {
|
|
|
14740
14816
|
*/
|
|
14741
14817
|
url: string;
|
|
14742
14818
|
};
|
|
14819
|
+
/**
|
|
14820
|
+
* Pro Account mandates associated with this customer
|
|
14821
|
+
*/
|
|
14822
|
+
pro_account_mandates: {
|
|
14823
|
+
/**
|
|
14824
|
+
* URL to list Pro Account mandates associated with this customer
|
|
14825
|
+
*/
|
|
14826
|
+
url: string;
|
|
14827
|
+
};
|
|
14743
14828
|
contacts: {
|
|
14744
14829
|
/**
|
|
14745
14830
|
* URL to get the contacts of the customer.
|
|
@@ -14936,6 +15021,15 @@ type PutCompanyCustomerResponses = {
|
|
|
14936
15021
|
*/
|
|
14937
15022
|
url: string;
|
|
14938
15023
|
};
|
|
15024
|
+
/**
|
|
15025
|
+
* Pro Account mandates associated with this customer
|
|
15026
|
+
*/
|
|
15027
|
+
pro_account_mandates: {
|
|
15028
|
+
/**
|
|
15029
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15030
|
+
*/
|
|
15031
|
+
url: string;
|
|
15032
|
+
};
|
|
14939
15033
|
contacts: {
|
|
14940
15034
|
/**
|
|
14941
15035
|
* URL to get the contacts of the customer.
|
|
@@ -15100,6 +15194,15 @@ type PostIndividualCustomerResponses = {
|
|
|
15100
15194
|
*/
|
|
15101
15195
|
url: string;
|
|
15102
15196
|
};
|
|
15197
|
+
/**
|
|
15198
|
+
* Pro Account mandates associated with this customer
|
|
15199
|
+
*/
|
|
15200
|
+
pro_account_mandates: {
|
|
15201
|
+
/**
|
|
15202
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15203
|
+
*/
|
|
15204
|
+
url: string;
|
|
15205
|
+
};
|
|
15103
15206
|
contacts: {
|
|
15104
15207
|
/**
|
|
15105
15208
|
* URL to get the contacts of the customer.
|
|
@@ -15245,6 +15348,15 @@ type GetIndividualCustomerResponses = {
|
|
|
15245
15348
|
*/
|
|
15246
15349
|
url: string;
|
|
15247
15350
|
};
|
|
15351
|
+
/**
|
|
15352
|
+
* Pro Account mandates associated with this customer
|
|
15353
|
+
*/
|
|
15354
|
+
pro_account_mandates: {
|
|
15355
|
+
/**
|
|
15356
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15357
|
+
*/
|
|
15358
|
+
url: string;
|
|
15359
|
+
};
|
|
15248
15360
|
contacts: {
|
|
15249
15361
|
/**
|
|
15250
15362
|
* URL to get the contacts of the customer.
|
|
@@ -15437,6 +15549,15 @@ type PutIndividualCustomerResponses = {
|
|
|
15437
15549
|
*/
|
|
15438
15550
|
url: string;
|
|
15439
15551
|
};
|
|
15552
|
+
/**
|
|
15553
|
+
* Pro Account mandates associated with this customer
|
|
15554
|
+
*/
|
|
15555
|
+
pro_account_mandates: {
|
|
15556
|
+
/**
|
|
15557
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15558
|
+
*/
|
|
15559
|
+
url: string;
|
|
15560
|
+
};
|
|
15440
15561
|
contacts: {
|
|
15441
15562
|
/**
|
|
15442
15563
|
* URL to get the contacts of the customer.
|
|
@@ -15608,6 +15729,15 @@ type GetCustomersResponses = {
|
|
|
15608
15729
|
*/
|
|
15609
15730
|
url: string;
|
|
15610
15731
|
};
|
|
15732
|
+
/**
|
|
15733
|
+
* Pro Account mandates associated with this customer
|
|
15734
|
+
*/
|
|
15735
|
+
pro_account_mandates: {
|
|
15736
|
+
/**
|
|
15737
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15738
|
+
*/
|
|
15739
|
+
url: string;
|
|
15740
|
+
};
|
|
15611
15741
|
contacts: {
|
|
15612
15742
|
/**
|
|
15613
15743
|
* URL to get the contacts of the customer.
|
|
@@ -15664,6 +15794,15 @@ type GetCustomersResponses = {
|
|
|
15664
15794
|
*/
|
|
15665
15795
|
url: string;
|
|
15666
15796
|
};
|
|
15797
|
+
/**
|
|
15798
|
+
* Pro Account mandates associated with this customer
|
|
15799
|
+
*/
|
|
15800
|
+
pro_account_mandates: {
|
|
15801
|
+
/**
|
|
15802
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15803
|
+
*/
|
|
15804
|
+
url: string;
|
|
15805
|
+
};
|
|
15667
15806
|
contacts: {
|
|
15668
15807
|
/**
|
|
15669
15808
|
* URL to get the contacts of the customer.
|
|
@@ -15814,6 +15953,15 @@ type GetCustomerResponses = {
|
|
|
15814
15953
|
*/
|
|
15815
15954
|
url: string;
|
|
15816
15955
|
};
|
|
15956
|
+
/**
|
|
15957
|
+
* Pro Account mandates associated with this customer
|
|
15958
|
+
*/
|
|
15959
|
+
pro_account_mandates: {
|
|
15960
|
+
/**
|
|
15961
|
+
* URL to list Pro Account mandates associated with this customer
|
|
15962
|
+
*/
|
|
15963
|
+
url: string;
|
|
15964
|
+
};
|
|
15817
15965
|
contacts: {
|
|
15818
15966
|
/**
|
|
15819
15967
|
* URL to get the contacts of the customer.
|
|
@@ -15870,6 +16018,15 @@ type GetCustomerResponses = {
|
|
|
15870
16018
|
*/
|
|
15871
16019
|
url: string;
|
|
15872
16020
|
};
|
|
16021
|
+
/**
|
|
16022
|
+
* Pro Account mandates associated with this customer
|
|
16023
|
+
*/
|
|
16024
|
+
pro_account_mandates: {
|
|
16025
|
+
/**
|
|
16026
|
+
* URL to list Pro Account mandates associated with this customer
|
|
16027
|
+
*/
|
|
16028
|
+
url: string;
|
|
16029
|
+
};
|
|
15873
16030
|
contacts: {
|
|
15874
16031
|
/**
|
|
15875
16032
|
* URL to get the contacts of the customer.
|
|
@@ -16978,41 +17135,13 @@ type PutSupplierCategoriesResponses = {
|
|
|
16978
17135
|
}>;
|
|
16979
17136
|
};
|
|
16980
17137
|
type PutSupplierCategoriesResponse = PutSupplierCategoriesResponses[keyof PutSupplierCategoriesResponses];
|
|
16981
|
-
type
|
|
16982
|
-
body?:
|
|
16983
|
-
/**
|
|
16984
|
-
* The user information to create
|
|
16985
|
-
*/
|
|
16986
|
-
user: {
|
|
16987
|
-
/**
|
|
16988
|
-
* Email of the user
|
|
16989
|
-
*/
|
|
16990
|
-
email: string;
|
|
16991
|
-
/**
|
|
16992
|
-
* First name of the user
|
|
16993
|
-
*/
|
|
16994
|
-
first_name: string;
|
|
16995
|
-
/**
|
|
16996
|
-
* Last name of the user
|
|
16997
|
-
*/
|
|
16998
|
-
last_name: string;
|
|
16999
|
-
/**
|
|
17000
|
-
* Phone number of the user
|
|
17001
|
-
*/
|
|
17002
|
-
phone_number: string;
|
|
17003
|
-
/**
|
|
17004
|
-
* Whether to send an invitation to the user.
|
|
17005
|
-
* If set to `true`, the user will receive an email to set up their password and account.
|
|
17006
|
-
*
|
|
17007
|
-
*/
|
|
17008
|
-
send_invitation: boolean;
|
|
17009
|
-
};
|
|
17010
|
-
};
|
|
17138
|
+
type GetMeData = {
|
|
17139
|
+
body?: never;
|
|
17011
17140
|
path?: never;
|
|
17012
17141
|
query?: never;
|
|
17013
|
-
url: '/api/external/v2/
|
|
17142
|
+
url: '/api/external/v2/me';
|
|
17014
17143
|
};
|
|
17015
|
-
type
|
|
17144
|
+
type GetMeErrors = {
|
|
17016
17145
|
/**
|
|
17017
17146
|
* Bad request
|
|
17018
17147
|
*/
|
|
@@ -17052,332 +17181,64 @@ type PostUsersErrors = {
|
|
|
17052
17181
|
error: string;
|
|
17053
17182
|
status: number;
|
|
17054
17183
|
};
|
|
17055
|
-
/**
|
|
17056
|
-
* Unprocessable content
|
|
17057
|
-
*/
|
|
17058
|
-
422: {
|
|
17059
|
-
error: string;
|
|
17060
|
-
status: number;
|
|
17061
|
-
};
|
|
17062
17184
|
};
|
|
17063
|
-
type
|
|
17064
|
-
type
|
|
17185
|
+
type GetMeError = GetMeErrors[keyof GetMeErrors];
|
|
17186
|
+
type GetMeResponses = {
|
|
17065
17187
|
/**
|
|
17066
|
-
*
|
|
17188
|
+
* Returns the user and the company
|
|
17067
17189
|
*/
|
|
17068
|
-
|
|
17069
|
-
/**
|
|
17070
|
-
* The created user
|
|
17071
|
-
*/
|
|
17190
|
+
200: {
|
|
17072
17191
|
user: {
|
|
17073
|
-
/**
|
|
17074
|
-
* Id of the user
|
|
17075
|
-
*/
|
|
17076
17192
|
id: number;
|
|
17077
|
-
|
|
17078
|
-
|
|
17079
|
-
*/
|
|
17193
|
+
first_name: string;
|
|
17194
|
+
last_name: string;
|
|
17080
17195
|
email: string;
|
|
17081
|
-
|
|
17082
|
-
|
|
17083
|
-
|
|
17084
|
-
|
|
17085
|
-
|
|
17086
|
-
|
|
17087
|
-
*/
|
|
17088
|
-
updated_at: string;
|
|
17196
|
+
locale: 'fr' | 'en' | 'de';
|
|
17197
|
+
} | null;
|
|
17198
|
+
company: {
|
|
17199
|
+
id: number;
|
|
17200
|
+
name: string;
|
|
17201
|
+
reg_no: string;
|
|
17089
17202
|
};
|
|
17090
|
-
};
|
|
17091
|
-
};
|
|
17092
|
-
type PostUsersResponse = PostUsersResponses[keyof PostUsersResponses];
|
|
17093
|
-
type FindUserData = {
|
|
17094
|
-
body?: never;
|
|
17095
|
-
path?: never;
|
|
17096
|
-
query: {
|
|
17097
17203
|
/**
|
|
17098
|
-
*
|
|
17204
|
+
* OAuth scopes associated with the access token
|
|
17099
17205
|
*/
|
|
17100
|
-
|
|
17206
|
+
scopes: Array<string>;
|
|
17101
17207
|
};
|
|
17102
|
-
url: '/api/external/v2/users/find';
|
|
17103
17208
|
};
|
|
17104
|
-
type
|
|
17105
|
-
|
|
17106
|
-
|
|
17107
|
-
|
|
17108
|
-
|
|
17109
|
-
error: string;
|
|
17110
|
-
status: number;
|
|
17111
|
-
} | {
|
|
17112
|
-
message: string;
|
|
17113
|
-
} | {
|
|
17114
|
-
message: string;
|
|
17115
|
-
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';
|
|
17116
|
-
} | {
|
|
17117
|
-
message: string;
|
|
17118
|
-
field: string;
|
|
17119
|
-
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';
|
|
17120
|
-
} | {
|
|
17121
|
-
message: string;
|
|
17122
|
-
payload: string;
|
|
17123
|
-
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';
|
|
17124
|
-
} | {
|
|
17125
|
-
message: string;
|
|
17126
|
-
field: string;
|
|
17127
|
-
payload: string;
|
|
17128
|
-
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';
|
|
17129
|
-
};
|
|
17130
|
-
/**
|
|
17131
|
-
* Access token is missing or invalid
|
|
17132
|
-
*/
|
|
17133
|
-
401: {
|
|
17134
|
-
error: string;
|
|
17135
|
-
status: number;
|
|
17136
|
-
};
|
|
17137
|
-
/**
|
|
17138
|
-
* Access to this resource forbidden
|
|
17139
|
-
*/
|
|
17140
|
-
403: {
|
|
17141
|
-
error: string;
|
|
17142
|
-
status: number;
|
|
17143
|
-
};
|
|
17144
|
-
/**
|
|
17145
|
-
* The resource was not found
|
|
17146
|
-
*/
|
|
17147
|
-
404: {
|
|
17148
|
-
error: string;
|
|
17149
|
-
status: number;
|
|
17209
|
+
type GetMeResponse = GetMeResponses[keyof GetMeResponses];
|
|
17210
|
+
type GetCustomerInvoiceInvoiceLineSectionsData = {
|
|
17211
|
+
body?: never;
|
|
17212
|
+
path: {
|
|
17213
|
+
customer_invoice_id: number;
|
|
17150
17214
|
};
|
|
17151
|
-
|
|
17152
|
-
type FindUserError = FindUserErrors[keyof FindUserErrors];
|
|
17153
|
-
type FindUserResponses = {
|
|
17154
|
-
/**
|
|
17155
|
-
* User was found
|
|
17156
|
-
*/
|
|
17157
|
-
200: {
|
|
17215
|
+
query?: {
|
|
17158
17216
|
/**
|
|
17159
|
-
*
|
|
17217
|
+
* Cursor for pagination. Use this to fetch the next set of results.
|
|
17218
|
+
* The cursor is an opaque string returned in the previous response's metadata.
|
|
17219
|
+
* Leave empty for the first request.
|
|
17220
|
+
*
|
|
17160
17221
|
*/
|
|
17161
|
-
|
|
17162
|
-
/**
|
|
17163
|
-
* Id of the user
|
|
17164
|
-
*/
|
|
17165
|
-
id: number;
|
|
17166
|
-
/**
|
|
17167
|
-
* Email of the user
|
|
17168
|
-
*/
|
|
17169
|
-
email: string;
|
|
17170
|
-
};
|
|
17171
|
-
};
|
|
17172
|
-
};
|
|
17173
|
-
type FindUserResponse = FindUserResponses[keyof FindUserResponses];
|
|
17174
|
-
type PutUsersData = {
|
|
17175
|
-
body?: {
|
|
17222
|
+
cursor?: string;
|
|
17176
17223
|
/**
|
|
17177
|
-
*
|
|
17224
|
+
* Number of items to return per request.
|
|
17225
|
+
* Defaults to 20 if not specified.
|
|
17226
|
+
* Must be between 1 and 100.
|
|
17227
|
+
*
|
|
17178
17228
|
*/
|
|
17179
|
-
|
|
17180
|
-
|
|
17181
|
-
|
|
17182
|
-
|
|
17183
|
-
|
|
17184
|
-
|
|
17185
|
-
|
|
17186
|
-
|
|
17187
|
-
|
|
17229
|
+
limit?: number;
|
|
17230
|
+
/**
|
|
17231
|
+
* You can choose to sort items on specific attributes
|
|
17232
|
+
* Sort field may be prefixed with `-` for descending order.
|
|
17233
|
+
* Example : `id` will sort by ascending order, `-id` will sort by descending order.
|
|
17234
|
+
* Available fields : `id`
|
|
17235
|
+
*
|
|
17236
|
+
*/
|
|
17237
|
+
sort?: string;
|
|
17188
17238
|
};
|
|
17189
|
-
|
|
17190
|
-
url: '/api/external/v2/users/{id}';
|
|
17239
|
+
url: '/api/external/v2/customer_invoices/{customer_invoice_id}/invoice_line_sections';
|
|
17191
17240
|
};
|
|
17192
|
-
type
|
|
17193
|
-
/**
|
|
17194
|
-
* Bad request
|
|
17195
|
-
*/
|
|
17196
|
-
400: {
|
|
17197
|
-
error: string;
|
|
17198
|
-
status: number;
|
|
17199
|
-
} | {
|
|
17200
|
-
message: string;
|
|
17201
|
-
} | {
|
|
17202
|
-
message: string;
|
|
17203
|
-
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';
|
|
17204
|
-
} | {
|
|
17205
|
-
message: string;
|
|
17206
|
-
field: string;
|
|
17207
|
-
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';
|
|
17208
|
-
} | {
|
|
17209
|
-
message: string;
|
|
17210
|
-
payload: string;
|
|
17211
|
-
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';
|
|
17212
|
-
} | {
|
|
17213
|
-
message: string;
|
|
17214
|
-
field: string;
|
|
17215
|
-
payload: string;
|
|
17216
|
-
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';
|
|
17217
|
-
};
|
|
17218
|
-
/**
|
|
17219
|
-
* Access token is missing or invalid
|
|
17220
|
-
*/
|
|
17221
|
-
401: {
|
|
17222
|
-
error: string;
|
|
17223
|
-
status: number;
|
|
17224
|
-
};
|
|
17225
|
-
/**
|
|
17226
|
-
* Access to this resource forbidden
|
|
17227
|
-
*/
|
|
17228
|
-
403: {
|
|
17229
|
-
error: string;
|
|
17230
|
-
status: number;
|
|
17231
|
-
};
|
|
17232
|
-
/**
|
|
17233
|
-
* The resource was not found
|
|
17234
|
-
*/
|
|
17235
|
-
404: {
|
|
17236
|
-
error: string;
|
|
17237
|
-
status: number;
|
|
17238
|
-
};
|
|
17239
|
-
/**
|
|
17240
|
-
* Unprocessable content
|
|
17241
|
-
*/
|
|
17242
|
-
422: {
|
|
17243
|
-
error: string;
|
|
17244
|
-
status: number;
|
|
17245
|
-
};
|
|
17246
|
-
};
|
|
17247
|
-
type PutUsersError = PutUsersErrors[keyof PutUsersErrors];
|
|
17248
|
-
type PutUsersResponses = {
|
|
17249
|
-
/**
|
|
17250
|
-
* User was updated
|
|
17251
|
-
*/
|
|
17252
|
-
200: {
|
|
17253
|
-
/**
|
|
17254
|
-
* The updated user
|
|
17255
|
-
*/
|
|
17256
|
-
user: {
|
|
17257
|
-
/**
|
|
17258
|
-
* Id of the user
|
|
17259
|
-
*/
|
|
17260
|
-
id: number;
|
|
17261
|
-
/**
|
|
17262
|
-
* Email of the user
|
|
17263
|
-
*/
|
|
17264
|
-
email: string;
|
|
17265
|
-
/**
|
|
17266
|
-
* Date and time when the user was created
|
|
17267
|
-
*/
|
|
17268
|
-
created_at: string;
|
|
17269
|
-
/**
|
|
17270
|
-
* Date and time when the user was last updated
|
|
17271
|
-
*/
|
|
17272
|
-
updated_at: string;
|
|
17273
|
-
};
|
|
17274
|
-
};
|
|
17275
|
-
};
|
|
17276
|
-
type PutUsersResponse = PutUsersResponses[keyof PutUsersResponses];
|
|
17277
|
-
type GetMeData = {
|
|
17278
|
-
body?: never;
|
|
17279
|
-
path?: never;
|
|
17280
|
-
query?: never;
|
|
17281
|
-
url: '/api/external/v2/me';
|
|
17282
|
-
};
|
|
17283
|
-
type GetMeErrors = {
|
|
17284
|
-
/**
|
|
17285
|
-
* Bad request
|
|
17286
|
-
*/
|
|
17287
|
-
400: {
|
|
17288
|
-
error: string;
|
|
17289
|
-
status: number;
|
|
17290
|
-
} | {
|
|
17291
|
-
message: string;
|
|
17292
|
-
} | {
|
|
17293
|
-
message: string;
|
|
17294
|
-
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';
|
|
17295
|
-
} | {
|
|
17296
|
-
message: string;
|
|
17297
|
-
field: string;
|
|
17298
|
-
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';
|
|
17299
|
-
} | {
|
|
17300
|
-
message: string;
|
|
17301
|
-
payload: string;
|
|
17302
|
-
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';
|
|
17303
|
-
} | {
|
|
17304
|
-
message: string;
|
|
17305
|
-
field: string;
|
|
17306
|
-
payload: string;
|
|
17307
|
-
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';
|
|
17308
|
-
};
|
|
17309
|
-
/**
|
|
17310
|
-
* Access token is missing or invalid
|
|
17311
|
-
*/
|
|
17312
|
-
401: {
|
|
17313
|
-
error: string;
|
|
17314
|
-
status: number;
|
|
17315
|
-
};
|
|
17316
|
-
/**
|
|
17317
|
-
* Access to this resource forbidden
|
|
17318
|
-
*/
|
|
17319
|
-
403: {
|
|
17320
|
-
error: string;
|
|
17321
|
-
status: number;
|
|
17322
|
-
};
|
|
17323
|
-
};
|
|
17324
|
-
type GetMeError = GetMeErrors[keyof GetMeErrors];
|
|
17325
|
-
type GetMeResponses = {
|
|
17326
|
-
/**
|
|
17327
|
-
* Returns the user and the company
|
|
17328
|
-
*/
|
|
17329
|
-
200: {
|
|
17330
|
-
user: {
|
|
17331
|
-
id: number;
|
|
17332
|
-
first_name: string;
|
|
17333
|
-
last_name: string;
|
|
17334
|
-
email: string;
|
|
17335
|
-
locale: 'fr' | 'en' | 'de';
|
|
17336
|
-
} | null;
|
|
17337
|
-
company: {
|
|
17338
|
-
id: number;
|
|
17339
|
-
name: string;
|
|
17340
|
-
reg_no: string;
|
|
17341
|
-
};
|
|
17342
|
-
/**
|
|
17343
|
-
* OAuth scopes associated with the access token
|
|
17344
|
-
*/
|
|
17345
|
-
scopes: Array<string>;
|
|
17346
|
-
};
|
|
17347
|
-
};
|
|
17348
|
-
type GetMeResponse = GetMeResponses[keyof GetMeResponses];
|
|
17349
|
-
type GetCustomerInvoiceInvoiceLineSectionsData = {
|
|
17350
|
-
body?: never;
|
|
17351
|
-
path: {
|
|
17352
|
-
customer_invoice_id: number;
|
|
17353
|
-
};
|
|
17354
|
-
query?: {
|
|
17355
|
-
/**
|
|
17356
|
-
* Cursor for pagination. Use this to fetch the next set of results.
|
|
17357
|
-
* The cursor is an opaque string returned in the previous response's metadata.
|
|
17358
|
-
* Leave empty for the first request.
|
|
17359
|
-
*
|
|
17360
|
-
*/
|
|
17361
|
-
cursor?: string;
|
|
17362
|
-
/**
|
|
17363
|
-
* Number of items to return per request.
|
|
17364
|
-
* Defaults to 20 if not specified.
|
|
17365
|
-
* Must be between 1 and 100.
|
|
17366
|
-
*
|
|
17367
|
-
*/
|
|
17368
|
-
limit?: number;
|
|
17369
|
-
/**
|
|
17370
|
-
* You can choose to sort items on specific attributes
|
|
17371
|
-
* Sort field may be prefixed with `-` for descending order.
|
|
17372
|
-
* Example : `id` will sort by ascending order, `-id` will sort by descending order.
|
|
17373
|
-
* Available fields : `id`
|
|
17374
|
-
*
|
|
17375
|
-
*/
|
|
17376
|
-
sort?: string;
|
|
17377
|
-
};
|
|
17378
|
-
url: '/api/external/v2/customer_invoices/{customer_invoice_id}/invoice_line_sections';
|
|
17379
|
-
};
|
|
17380
|
-
type GetCustomerInvoiceInvoiceLineSectionsErrors = {
|
|
17241
|
+
type GetCustomerInvoiceInvoiceLineSectionsErrors = {
|
|
17381
17242
|
/**
|
|
17382
17243
|
* Bad request
|
|
17383
17244
|
*/
|
|
@@ -22982,6 +22843,111 @@ type ImportSupplierInvoiceResponses = {
|
|
|
22982
22843
|
};
|
|
22983
22844
|
};
|
|
22984
22845
|
type ImportSupplierInvoiceResponse = ImportSupplierInvoiceResponses[keyof ImportSupplierInvoiceResponses];
|
|
22846
|
+
type CreateSupplierInvoiceEInvoiceImportData = {
|
|
22847
|
+
body: {
|
|
22848
|
+
/**
|
|
22849
|
+
* The supplier invoice file to be imported.
|
|
22850
|
+
* Must be an e-invoice format.
|
|
22851
|
+
*
|
|
22852
|
+
*/
|
|
22853
|
+
file: Blob | File;
|
|
22854
|
+
/**
|
|
22855
|
+
* Optional JSON payload to enrich the imported supplier invoice.
|
|
22856
|
+
* Invoice line `e_invoice_line_id` must match Factur-X BT-126 (LineID).
|
|
22857
|
+
*
|
|
22858
|
+
*/
|
|
22859
|
+
invoice_options?: {
|
|
22860
|
+
/**
|
|
22861
|
+
* Supplier id for the imported invoice.
|
|
22862
|
+
*/
|
|
22863
|
+
supplier_id?: number;
|
|
22864
|
+
invoice_lines?: Array<{
|
|
22865
|
+
/**
|
|
22866
|
+
* Factur-X line identifier (BT-126 LineID).
|
|
22867
|
+
*/
|
|
22868
|
+
e_invoice_line_id: string;
|
|
22869
|
+
/**
|
|
22870
|
+
* Ledger account id for this line.
|
|
22871
|
+
*/
|
|
22872
|
+
ledger_account_id?: number | null;
|
|
22873
|
+
}>;
|
|
22874
|
+
};
|
|
22875
|
+
};
|
|
22876
|
+
path?: never;
|
|
22877
|
+
query?: never;
|
|
22878
|
+
url: '/api/external/v2/supplier_invoices/e_invoices/imports';
|
|
22879
|
+
};
|
|
22880
|
+
type CreateSupplierInvoiceEInvoiceImportErrors = {
|
|
22881
|
+
/**
|
|
22882
|
+
* Bad request
|
|
22883
|
+
*/
|
|
22884
|
+
400: {
|
|
22885
|
+
error: string;
|
|
22886
|
+
status: number;
|
|
22887
|
+
} | {
|
|
22888
|
+
message: string;
|
|
22889
|
+
} | {
|
|
22890
|
+
message: string;
|
|
22891
|
+
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';
|
|
22892
|
+
} | {
|
|
22893
|
+
message: string;
|
|
22894
|
+
field: string;
|
|
22895
|
+
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';
|
|
22896
|
+
} | {
|
|
22897
|
+
message: string;
|
|
22898
|
+
payload: string;
|
|
22899
|
+
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';
|
|
22900
|
+
} | {
|
|
22901
|
+
message: string;
|
|
22902
|
+
field: string;
|
|
22903
|
+
payload: string;
|
|
22904
|
+
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';
|
|
22905
|
+
};
|
|
22906
|
+
/**
|
|
22907
|
+
* Access token is missing or invalid
|
|
22908
|
+
*/
|
|
22909
|
+
401: {
|
|
22910
|
+
error: string;
|
|
22911
|
+
status: number;
|
|
22912
|
+
};
|
|
22913
|
+
/**
|
|
22914
|
+
* Access to this resource forbidden
|
|
22915
|
+
*/
|
|
22916
|
+
403: {
|
|
22917
|
+
error: string;
|
|
22918
|
+
status: number;
|
|
22919
|
+
};
|
|
22920
|
+
/**
|
|
22921
|
+
* The resource was not found
|
|
22922
|
+
*/
|
|
22923
|
+
404: {
|
|
22924
|
+
error: string;
|
|
22925
|
+
status: number;
|
|
22926
|
+
};
|
|
22927
|
+
/**
|
|
22928
|
+
* Unprocessable content
|
|
22929
|
+
*/
|
|
22930
|
+
422: {
|
|
22931
|
+
error: string;
|
|
22932
|
+
status: number;
|
|
22933
|
+
};
|
|
22934
|
+
};
|
|
22935
|
+
type CreateSupplierInvoiceEInvoiceImportError = CreateSupplierInvoiceEInvoiceImportErrors[keyof CreateSupplierInvoiceEInvoiceImportErrors];
|
|
22936
|
+
type CreateSupplierInvoiceEInvoiceImportResponses = {
|
|
22937
|
+
/**
|
|
22938
|
+
* Supplier e-invoice imported successfully
|
|
22939
|
+
*/
|
|
22940
|
+
201: {
|
|
22941
|
+
id: number;
|
|
22942
|
+
/**
|
|
22943
|
+
* The URL of the imported supplier e-invoice.
|
|
22944
|
+
* This can be used to access the document later.
|
|
22945
|
+
*
|
|
22946
|
+
*/
|
|
22947
|
+
url: string;
|
|
22948
|
+
};
|
|
22949
|
+
};
|
|
22950
|
+
type CreateSupplierInvoiceEInvoiceImportResponse = CreateSupplierInvoiceEInvoiceImportResponses[keyof CreateSupplierInvoiceEInvoiceImportResponses];
|
|
22985
22951
|
type ValidateAccountingSupplierInvoiceData = {
|
|
22986
22952
|
body?: never;
|
|
22987
22953
|
path: {
|
|
@@ -23227,201 +23193,6 @@ type ValidateAccountingSupplierInvoiceResponses = {
|
|
|
23227
23193
|
};
|
|
23228
23194
|
};
|
|
23229
23195
|
type ValidateAccountingSupplierInvoiceResponse = ValidateAccountingSupplierInvoiceResponses[keyof ValidateAccountingSupplierInvoiceResponses];
|
|
23230
|
-
type CompanyCreateData = {
|
|
23231
|
-
body?: {
|
|
23232
|
-
/**
|
|
23233
|
-
* Array of IDs of executives belonging to the company
|
|
23234
|
-
*/
|
|
23235
|
-
user_ids: Array<number>;
|
|
23236
|
-
company: {
|
|
23237
|
-
/**
|
|
23238
|
-
* The name of the company
|
|
23239
|
-
*/
|
|
23240
|
-
name: string;
|
|
23241
|
-
/**
|
|
23242
|
-
* The registration number of the company
|
|
23243
|
-
*/
|
|
23244
|
-
reg_no: string;
|
|
23245
|
-
/**
|
|
23246
|
-
* The ISO 3166-1 alpha-2 code of the country where the company is registered
|
|
23247
|
-
*/
|
|
23248
|
-
country_alpha2: 'FR' | 'RE' | 'YT' | 'GF' | 'PF' | 'NC' | 'PM' | 'MF' | 'BL' | 'GP' | 'WF' | 'TF' | 'CP' | 'MQ';
|
|
23249
|
-
/**
|
|
23250
|
-
* The number of employees in the company
|
|
23251
|
-
*/
|
|
23252
|
-
number_of_employees: 'individual' | '1_5' | '6_15';
|
|
23253
|
-
/**
|
|
23254
|
-
* The Pennylane SaaS plan of the company
|
|
23255
|
-
*/
|
|
23256
|
-
saas_plan: 'v1_basic' | 'v1_essential' | 'v1_pro';
|
|
23257
|
-
/**
|
|
23258
|
-
* The APE code of the company
|
|
23259
|
-
*/
|
|
23260
|
-
activity_code: string;
|
|
23261
|
-
/**
|
|
23262
|
-
* The address of the company
|
|
23263
|
-
*/
|
|
23264
|
-
address: string;
|
|
23265
|
-
/**
|
|
23266
|
-
* The city where the company is located
|
|
23267
|
-
*/
|
|
23268
|
-
city: string;
|
|
23269
|
-
/**
|
|
23270
|
-
* The postal code of the company
|
|
23271
|
-
*/
|
|
23272
|
-
postal_code: string;
|
|
23273
|
-
};
|
|
23274
|
-
/**
|
|
23275
|
-
* Whether the company must first open a Pro Account to be able to use Pennylane
|
|
23276
|
-
*/
|
|
23277
|
-
force_pro_account_creation: boolean;
|
|
23278
|
-
};
|
|
23279
|
-
path?: never;
|
|
23280
|
-
query?: never;
|
|
23281
|
-
url: '/api/external/v2/companies';
|
|
23282
|
-
};
|
|
23283
|
-
type CompanyCreateErrors = {
|
|
23284
|
-
/**
|
|
23285
|
-
* Bad request
|
|
23286
|
-
*/
|
|
23287
|
-
400: {
|
|
23288
|
-
error: string;
|
|
23289
|
-
status: number;
|
|
23290
|
-
} | {
|
|
23291
|
-
message: string;
|
|
23292
|
-
} | {
|
|
23293
|
-
message: string;
|
|
23294
|
-
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';
|
|
23295
|
-
} | {
|
|
23296
|
-
message: string;
|
|
23297
|
-
field: string;
|
|
23298
|
-
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';
|
|
23299
|
-
} | {
|
|
23300
|
-
message: string;
|
|
23301
|
-
payload: string;
|
|
23302
|
-
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';
|
|
23303
|
-
} | {
|
|
23304
|
-
message: string;
|
|
23305
|
-
field: string;
|
|
23306
|
-
payload: string;
|
|
23307
|
-
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';
|
|
23308
|
-
};
|
|
23309
|
-
/**
|
|
23310
|
-
* Access token is missing or invalid
|
|
23311
|
-
*/
|
|
23312
|
-
401: {
|
|
23313
|
-
error: string;
|
|
23314
|
-
status: number;
|
|
23315
|
-
};
|
|
23316
|
-
/**
|
|
23317
|
-
* Access to this resource forbidden
|
|
23318
|
-
*/
|
|
23319
|
-
403: {
|
|
23320
|
-
error: string;
|
|
23321
|
-
status: number;
|
|
23322
|
-
};
|
|
23323
|
-
/**
|
|
23324
|
-
* Unprocessable content
|
|
23325
|
-
*/
|
|
23326
|
-
422: {
|
|
23327
|
-
error: string;
|
|
23328
|
-
status: number;
|
|
23329
|
-
};
|
|
23330
|
-
};
|
|
23331
|
-
type CompanyCreateError = CompanyCreateErrors[keyof CompanyCreateErrors];
|
|
23332
|
-
type CompanyCreateResponses = {
|
|
23333
|
-
/**
|
|
23334
|
-
* Company created
|
|
23335
|
-
*/
|
|
23336
|
-
201: {
|
|
23337
|
-
company: {
|
|
23338
|
-
/**
|
|
23339
|
-
* The ID of the company
|
|
23340
|
-
*/
|
|
23341
|
-
id: number;
|
|
23342
|
-
};
|
|
23343
|
-
};
|
|
23344
|
-
};
|
|
23345
|
-
type CompanyCreateResponse = CompanyCreateResponses[keyof CompanyCreateResponses];
|
|
23346
|
-
type CompanyCompleteRegistrationData = {
|
|
23347
|
-
body?: {
|
|
23348
|
-
/**
|
|
23349
|
-
* The registration number of the company
|
|
23350
|
-
*/
|
|
23351
|
-
reg_no: string;
|
|
23352
|
-
};
|
|
23353
|
-
path: {
|
|
23354
|
-
/**
|
|
23355
|
-
* The ID of the company
|
|
23356
|
-
*/
|
|
23357
|
-
id: number;
|
|
23358
|
-
};
|
|
23359
|
-
query?: never;
|
|
23360
|
-
url: '/api/external/v2/companies/{id}/complete_registration';
|
|
23361
|
-
};
|
|
23362
|
-
type CompanyCompleteRegistrationErrors = {
|
|
23363
|
-
/**
|
|
23364
|
-
* Bad request
|
|
23365
|
-
*/
|
|
23366
|
-
400: {
|
|
23367
|
-
error: string;
|
|
23368
|
-
status: number;
|
|
23369
|
-
} | {
|
|
23370
|
-
message: string;
|
|
23371
|
-
} | {
|
|
23372
|
-
message: string;
|
|
23373
|
-
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';
|
|
23374
|
-
} | {
|
|
23375
|
-
message: string;
|
|
23376
|
-
field: string;
|
|
23377
|
-
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';
|
|
23378
|
-
} | {
|
|
23379
|
-
message: string;
|
|
23380
|
-
payload: string;
|
|
23381
|
-
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';
|
|
23382
|
-
} | {
|
|
23383
|
-
message: string;
|
|
23384
|
-
field: string;
|
|
23385
|
-
payload: string;
|
|
23386
|
-
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';
|
|
23387
|
-
};
|
|
23388
|
-
/**
|
|
23389
|
-
* Access token is missing or invalid
|
|
23390
|
-
*/
|
|
23391
|
-
401: {
|
|
23392
|
-
error: string;
|
|
23393
|
-
status: number;
|
|
23394
|
-
};
|
|
23395
|
-
/**
|
|
23396
|
-
* Access to this resource forbidden
|
|
23397
|
-
*/
|
|
23398
|
-
403: {
|
|
23399
|
-
error: string;
|
|
23400
|
-
status: number;
|
|
23401
|
-
};
|
|
23402
|
-
/**
|
|
23403
|
-
* The resource was not found
|
|
23404
|
-
*/
|
|
23405
|
-
404: {
|
|
23406
|
-
error: string;
|
|
23407
|
-
status: number;
|
|
23408
|
-
};
|
|
23409
|
-
/**
|
|
23410
|
-
* Unprocessable content
|
|
23411
|
-
*/
|
|
23412
|
-
422: {
|
|
23413
|
-
error: string;
|
|
23414
|
-
status: number;
|
|
23415
|
-
};
|
|
23416
|
-
};
|
|
23417
|
-
type CompanyCompleteRegistrationError = CompanyCompleteRegistrationErrors[keyof CompanyCompleteRegistrationErrors];
|
|
23418
|
-
type CompanyCompleteRegistrationResponses = {
|
|
23419
|
-
/**
|
|
23420
|
-
* Company registration completed
|
|
23421
|
-
*/
|
|
23422
|
-
204: void;
|
|
23423
|
-
};
|
|
23424
|
-
type CompanyCompleteRegistrationResponse = CompanyCompleteRegistrationResponses[keyof CompanyCompleteRegistrationResponses];
|
|
23425
23196
|
type GetCategoryGroupsData = {
|
|
23426
23197
|
body?: never;
|
|
23427
23198
|
path?: never;
|
|
@@ -35681,6 +35452,19 @@ declare const CompanyCustomers__ResponseSchema: {
|
|
|
35681
35452
|
};
|
|
35682
35453
|
readonly required: readonly ["url"];
|
|
35683
35454
|
};
|
|
35455
|
+
readonly pro_account_mandates: {
|
|
35456
|
+
readonly description: "Pro Account mandates associated with this customer";
|
|
35457
|
+
readonly type: "object";
|
|
35458
|
+
readonly additionalProperties: false;
|
|
35459
|
+
readonly properties: {
|
|
35460
|
+
readonly url: {
|
|
35461
|
+
readonly description: "URL to list Pro Account mandates associated with this customer";
|
|
35462
|
+
readonly type: "string";
|
|
35463
|
+
readonly example: "https://app.pennylane.com/api/external/v2/pro_account/mandates?filter=%5B%7B%22field%22%3A%22customer_id%22%2C%22operator%22%3A%22eq%22%2C%22value%22%3A%2242%22%7D%5D";
|
|
35464
|
+
};
|
|
35465
|
+
};
|
|
35466
|
+
readonly required: readonly ["url"];
|
|
35467
|
+
};
|
|
35684
35468
|
readonly contacts: {
|
|
35685
35469
|
readonly type: "object";
|
|
35686
35470
|
readonly additionalProperties: false;
|
|
@@ -35694,7 +35478,7 @@ declare const CompanyCustomers__ResponseSchema: {
|
|
|
35694
35478
|
readonly required: readonly ["url"];
|
|
35695
35479
|
};
|
|
35696
35480
|
};
|
|
35697
|
-
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "vat_number", "reg_no", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "external_reference", "billing_language", "mandates", "contacts"];
|
|
35481
|
+
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "vat_number", "reg_no", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "external_reference", "billing_language", "mandates", "pro_account_mandates", "contacts"];
|
|
35698
35482
|
};
|
|
35699
35483
|
declare const IndividualCustomers__ResponseSchema: {
|
|
35700
35484
|
readonly type: "object";
|
|
@@ -35835,6 +35619,19 @@ declare const IndividualCustomers__ResponseSchema: {
|
|
|
35835
35619
|
};
|
|
35836
35620
|
readonly required: readonly ["url"];
|
|
35837
35621
|
};
|
|
35622
|
+
readonly pro_account_mandates: {
|
|
35623
|
+
readonly description: "Pro Account mandates associated with this customer";
|
|
35624
|
+
readonly type: "object";
|
|
35625
|
+
readonly additionalProperties: false;
|
|
35626
|
+
readonly properties: {
|
|
35627
|
+
readonly url: {
|
|
35628
|
+
readonly description: "URL to list Pro Account mandates associated with this customer";
|
|
35629
|
+
readonly type: "string";
|
|
35630
|
+
readonly example: "https://app.pennylane.com/api/external/v2/pro_account/mandates?filter=%5B%7B%22field%22%3A%22customer_id%22%2C%22operator%22%3A%22eq%22%2C%22value%22%3A%2242%22%7D%5D";
|
|
35631
|
+
};
|
|
35632
|
+
};
|
|
35633
|
+
readonly required: readonly ["url"];
|
|
35634
|
+
};
|
|
35838
35635
|
readonly contacts: {
|
|
35839
35636
|
readonly type: "object";
|
|
35840
35637
|
readonly additionalProperties: false;
|
|
@@ -35848,7 +35645,7 @@ declare const IndividualCustomers__ResponseSchema: {
|
|
|
35848
35645
|
readonly required: readonly ["url"];
|
|
35849
35646
|
};
|
|
35850
35647
|
};
|
|
35851
|
-
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "first_name", "last_name", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "external_reference", "billing_language", "mandates", "contacts"];
|
|
35648
|
+
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "first_name", "last_name", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "external_reference", "billing_language", "mandates", "pro_account_mandates", "contacts"];
|
|
35852
35649
|
};
|
|
35853
35650
|
declare const Customers__ResponseSchema: {
|
|
35854
35651
|
readonly oneOf: readonly [{
|
|
@@ -35996,6 +35793,19 @@ declare const Customers__ResponseSchema: {
|
|
|
35996
35793
|
};
|
|
35997
35794
|
readonly required: readonly ["url"];
|
|
35998
35795
|
};
|
|
35796
|
+
readonly pro_account_mandates: {
|
|
35797
|
+
readonly description: "Pro Account mandates associated with this customer";
|
|
35798
|
+
readonly type: "object";
|
|
35799
|
+
readonly additionalProperties: false;
|
|
35800
|
+
readonly properties: {
|
|
35801
|
+
readonly url: {
|
|
35802
|
+
readonly description: "URL to list Pro Account mandates associated with this customer";
|
|
35803
|
+
readonly type: "string";
|
|
35804
|
+
readonly example: "https://app.pennylane.com/api/external/v2/pro_account/mandates?filter=%5B%7B%22field%22%3A%22customer_id%22%2C%22operator%22%3A%22eq%22%2C%22value%22%3A%2242%22%7D%5D";
|
|
35805
|
+
};
|
|
35806
|
+
};
|
|
35807
|
+
readonly required: readonly ["url"];
|
|
35808
|
+
};
|
|
35999
35809
|
readonly contacts: {
|
|
36000
35810
|
readonly type: "object";
|
|
36001
35811
|
readonly additionalProperties: false;
|
|
@@ -36009,7 +35819,7 @@ declare const Customers__ResponseSchema: {
|
|
|
36009
35819
|
readonly required: readonly ["url"];
|
|
36010
35820
|
};
|
|
36011
35821
|
};
|
|
36012
|
-
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "vat_number", "reg_no", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "customer_type", "external_reference", "billing_language", "mandates", "contacts"];
|
|
35822
|
+
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "vat_number", "reg_no", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "customer_type", "external_reference", "billing_language", "mandates", "pro_account_mandates", "contacts"];
|
|
36013
35823
|
}, {
|
|
36014
35824
|
readonly title: "Individual customer";
|
|
36015
35825
|
readonly type: "object";
|
|
@@ -36154,6 +35964,19 @@ declare const Customers__ResponseSchema: {
|
|
|
36154
35964
|
};
|
|
36155
35965
|
readonly required: readonly ["url"];
|
|
36156
35966
|
};
|
|
35967
|
+
readonly pro_account_mandates: {
|
|
35968
|
+
readonly description: "Pro Account mandates associated with this customer";
|
|
35969
|
+
readonly type: "object";
|
|
35970
|
+
readonly additionalProperties: false;
|
|
35971
|
+
readonly properties: {
|
|
35972
|
+
readonly url: {
|
|
35973
|
+
readonly description: "URL to list Pro Account mandates associated with this customer";
|
|
35974
|
+
readonly type: "string";
|
|
35975
|
+
readonly example: "https://app.pennylane.com/api/external/v2/pro_account/mandates?filter=%5B%7B%22field%22%3A%22customer_id%22%2C%22operator%22%3A%22eq%22%2C%22value%22%3A%2242%22%7D%5D";
|
|
35976
|
+
};
|
|
35977
|
+
};
|
|
35978
|
+
readonly required: readonly ["url"];
|
|
35979
|
+
};
|
|
36157
35980
|
readonly contacts: {
|
|
36158
35981
|
readonly type: "object";
|
|
36159
35982
|
readonly additionalProperties: false;
|
|
@@ -36167,7 +35990,7 @@ declare const Customers__ResponseSchema: {
|
|
|
36167
35990
|
readonly required: readonly ["url"];
|
|
36168
35991
|
};
|
|
36169
35992
|
};
|
|
36170
|
-
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "first_name", "last_name", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "customer_type", "external_reference", "billing_language", "mandates", "contacts"];
|
|
35993
|
+
readonly required: readonly ["id", "name", "billing_iban", "payment_conditions", "recipient", "phone", "reference", "notes", "first_name", "last_name", "ledger_account", "emails", "billing_address", "delivery_address", "created_at", "updated_at", "customer_type", "external_reference", "billing_language", "mandates", "pro_account_mandates", "contacts"];
|
|
36171
35994
|
}];
|
|
36172
35995
|
};
|
|
36173
35996
|
declare const Customers__Categories__ResponseSchema: {
|
|
@@ -37769,6 +37592,58 @@ declare const SupplierInvoices__MatchedTransactions__ResponseSchema: {
|
|
|
37769
37592
|
};
|
|
37770
37593
|
readonly required: readonly ["id", "label", "attachment_required", "date", "outstanding_balance", "created_at", "updated_at", "archived_at", "currency", "currency_amount", "amount", "currency_fee", "fee", "journal", "bank_account", "pro_account_expense", "supplier", "categories"];
|
|
37771
37594
|
};
|
|
37595
|
+
declare const SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema: {
|
|
37596
|
+
readonly type: "object";
|
|
37597
|
+
readonly additionalProperties: false;
|
|
37598
|
+
readonly properties: {
|
|
37599
|
+
readonly e_invoice_line_id: {
|
|
37600
|
+
readonly description: "Factur-X line identifier (BT-126 LineID).";
|
|
37601
|
+
readonly type: "string";
|
|
37602
|
+
};
|
|
37603
|
+
readonly ledger_account_id: {
|
|
37604
|
+
readonly description: "Ledger account id for this line.";
|
|
37605
|
+
readonly type: "integer";
|
|
37606
|
+
readonly format: "int64";
|
|
37607
|
+
readonly nullable: true;
|
|
37608
|
+
readonly example: 123;
|
|
37609
|
+
};
|
|
37610
|
+
};
|
|
37611
|
+
readonly required: readonly ["e_invoice_line_id"];
|
|
37612
|
+
};
|
|
37613
|
+
declare const SupplierInvoices__EInvoices__Imports__ImportOptionsSchema: {
|
|
37614
|
+
readonly description: "Optional JSON payload to enrich the imported supplier invoice.\nInvoice line `e_invoice_line_id` must match Factur-X BT-126 (LineID).\n";
|
|
37615
|
+
readonly type: "object";
|
|
37616
|
+
readonly additionalProperties: false;
|
|
37617
|
+
readonly properties: {
|
|
37618
|
+
readonly supplier_id: {
|
|
37619
|
+
readonly description: "Supplier id for the imported invoice.";
|
|
37620
|
+
readonly type: "integer";
|
|
37621
|
+
readonly format: "int64";
|
|
37622
|
+
readonly example: 12;
|
|
37623
|
+
};
|
|
37624
|
+
readonly invoice_lines: {
|
|
37625
|
+
readonly type: "array";
|
|
37626
|
+
readonly items: {
|
|
37627
|
+
readonly type: "object";
|
|
37628
|
+
readonly additionalProperties: false;
|
|
37629
|
+
readonly properties: {
|
|
37630
|
+
readonly e_invoice_line_id: {
|
|
37631
|
+
readonly description: "Factur-X line identifier (BT-126 LineID).";
|
|
37632
|
+
readonly type: "string";
|
|
37633
|
+
};
|
|
37634
|
+
readonly ledger_account_id: {
|
|
37635
|
+
readonly description: "Ledger account id for this line.";
|
|
37636
|
+
readonly type: "integer";
|
|
37637
|
+
readonly format: "int64";
|
|
37638
|
+
readonly nullable: true;
|
|
37639
|
+
readonly example: 123;
|
|
37640
|
+
};
|
|
37641
|
+
};
|
|
37642
|
+
readonly required: readonly ["e_invoice_line_id"];
|
|
37643
|
+
};
|
|
37644
|
+
};
|
|
37645
|
+
};
|
|
37646
|
+
};
|
|
37772
37647
|
declare const CategoryGroups__ResponseSchema: {
|
|
37773
37648
|
readonly type: "object";
|
|
37774
37649
|
readonly additionalProperties: false;
|
|
@@ -40809,45 +40684,6 @@ declare const getSupplierCategories: <ThrowOnError extends boolean = false>(opti
|
|
|
40809
40684
|
* > This endpoint requires one of the following scopes: `suppliers:all`
|
|
40810
40685
|
*/
|
|
40811
40686
|
declare const putSupplierCategories: <ThrowOnError extends boolean = false>(options: Options<PutSupplierCategoriesData, ThrowOnError>) => RequestResult<PutSupplierCategoriesResponses, PutSupplierCategoriesErrors, ThrowOnError, "fields">;
|
|
40812
|
-
/**
|
|
40813
|
-
* Create a new user
|
|
40814
|
-
*
|
|
40815
|
-
* Creates a new user. In order to authenticate the request, a valid
|
|
40816
|
-
* OAuth2 token must be provided. The token must be generated
|
|
40817
|
-
* with `client_credentials` grant type.
|
|
40818
|
-
* The token must have the following scopes:
|
|
40819
|
-
* - `users`
|
|
40820
|
-
* - `capital_deposits` OR `companies:all`
|
|
40821
|
-
*
|
|
40822
|
-
*
|
|
40823
|
-
* > ℹ️
|
|
40824
|
-
* > This endpoint requires one of the following scopes: `users`, `capital_deposits`, `companies:all`
|
|
40825
|
-
*/
|
|
40826
|
-
declare const postUsers: <ThrowOnError extends boolean = false>(options?: Options<PostUsersData, ThrowOnError>) => RequestResult<PostUsersResponses, PostUsersErrors, ThrowOnError, "fields">;
|
|
40827
|
-
/**
|
|
40828
|
-
* Find user
|
|
40829
|
-
*
|
|
40830
|
-
* Find a user using its email address. In order to authenticate the request, a valid
|
|
40831
|
-
* OAuth2 token must be provided. The token must be generated
|
|
40832
|
-
* with `client_credentials` grant type.
|
|
40833
|
-
* The token must have the following scopes:
|
|
40834
|
-
* - `users`
|
|
40835
|
-
* - `capital_deposits` OR `companies:all`
|
|
40836
|
-
*
|
|
40837
|
-
*
|
|
40838
|
-
* > ℹ️
|
|
40839
|
-
* > This endpoint requires one of the following scopes: `users`, `capital_deposits`, `companies:all`
|
|
40840
|
-
*/
|
|
40841
|
-
declare const findUser: <ThrowOnError extends boolean = false>(options: Options<FindUserData, ThrowOnError>) => RequestResult<FindUserResponses, FindUserErrors, ThrowOnError, "fields">;
|
|
40842
|
-
/**
|
|
40843
|
-
* Update an existing user
|
|
40844
|
-
*
|
|
40845
|
-
* Updates an existing user. In order to authenticate the request, a valid OAuth2 token must be provided. The token must have the `users:update_email` scope and be generated by a user via the `authorization_code` grant type.
|
|
40846
|
-
*
|
|
40847
|
-
* > ℹ️
|
|
40848
|
-
* > This endpoint requires one of the following scopes: `users`, `users:update_email`
|
|
40849
|
-
*/
|
|
40850
|
-
declare const putUsers: <ThrowOnError extends boolean = false>(options: Options<PutUsersData, ThrowOnError>) => RequestResult<PutUsersResponses, PutUsersErrors, ThrowOnError, "fields">;
|
|
40851
40687
|
/**
|
|
40852
40688
|
* User Profile
|
|
40853
40689
|
*
|
|
@@ -41186,26 +41022,27 @@ declare const postSupplierInvoiceLinkedPurchaseRequests: <ThrowOnError extends b
|
|
|
41186
41022
|
*/
|
|
41187
41023
|
declare const importSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ImportSupplierInvoiceData, ThrowOnError>) => RequestResult<ImportSupplierInvoiceResponses, ImportSupplierInvoiceErrors, ThrowOnError, "fields">;
|
|
41188
41024
|
/**
|
|
41189
|
-
*
|
|
41025
|
+
* Import a supplier e-invoice
|
|
41026
|
+
*
|
|
41027
|
+
* Import a supplier invoice from an e-invoice file (Factur-X format).
|
|
41028
|
+
* The file must be a valid Factur-X PDF.
|
|
41029
|
+
* Optionally provide `invoice_options` to pre-fill supplier and line-level data.
|
|
41030
|
+
* Invoice line `e_invoice_line_id` must match Factur-X BT-126 (LineID).
|
|
41190
41031
|
*
|
|
41191
|
-
* Turn the supplier invoice into a Complete state.
|
|
41192
41032
|
*
|
|
41193
41033
|
* > ℹ️
|
|
41194
41034
|
* > This endpoint requires one of the following scopes: `supplier_invoices:all`
|
|
41195
41035
|
*/
|
|
41196
|
-
declare const
|
|
41036
|
+
declare const createSupplierInvoiceEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateSupplierInvoiceEInvoiceImportData, ThrowOnError>) => RequestResult<CreateSupplierInvoiceEInvoiceImportResponses, CreateSupplierInvoiceEInvoiceImportErrors, ThrowOnError, "fields">;
|
|
41197
41037
|
/**
|
|
41198
|
-
*
|
|
41038
|
+
* Validate the accounting of a supplier invoice
|
|
41199
41039
|
*
|
|
41200
|
-
*
|
|
41201
|
-
*/
|
|
41202
|
-
declare const companyCreate: <ThrowOnError extends boolean = false>(options?: Options<CompanyCreateData, ThrowOnError>) => RequestResult<CompanyCreateResponses, CompanyCreateErrors, ThrowOnError, "fields">;
|
|
41203
|
-
/**
|
|
41204
|
-
* Complete registration for a company
|
|
41040
|
+
* Turn the supplier invoice into a Complete state.
|
|
41205
41041
|
*
|
|
41206
|
-
*
|
|
41042
|
+
* > ℹ️
|
|
41043
|
+
* > This endpoint requires one of the following scopes: `supplier_invoices:all`
|
|
41207
41044
|
*/
|
|
41208
|
-
declare const
|
|
41045
|
+
declare const validateAccountingSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ValidateAccountingSupplierInvoiceData, ThrowOnError>) => RequestResult<ValidateAccountingSupplierInvoiceResponses, ValidateAccountingSupplierInvoiceErrors, ThrowOnError, "fields">;
|
|
41209
41046
|
/**
|
|
41210
41047
|
* List category groups
|
|
41211
41048
|
*
|
|
@@ -41757,7 +41594,13 @@ declare const postGocardlessMandateAssociations: <ThrowOnError extends boolean =
|
|
|
41757
41594
|
/**
|
|
41758
41595
|
* Send a Pro Account SEPA mandate request
|
|
41759
41596
|
*
|
|
41760
|
-
* This endpoint allows you to send a mandate request for a Pro Account
|
|
41597
|
+
* This endpoint allows you to send a mandate request for a Pro Account
|
|
41598
|
+
* SEPA Direct Debit mandate to a customer.
|
|
41599
|
+
*
|
|
41600
|
+
* Requirements:
|
|
41601
|
+
* - Company must have a Pro Account (returns 404 if not)
|
|
41602
|
+
* - Company must have an enabled merchant profile (returns 403 if not)
|
|
41603
|
+
*
|
|
41761
41604
|
*
|
|
41762
41605
|
* > ℹ️
|
|
41763
41606
|
* > This endpoint requires one of the following scopes: `customer_mandates:all`
|
|
@@ -41769,6 +41612,10 @@ declare const postProAccountMandateMailRequests: <ThrowOnError extends boolean =
|
|
|
41769
41612
|
* This endpoint allows you to retrieve all mandate migration candidates
|
|
41770
41613
|
* for your company. These are mandates that can be migrated to a Pro Account.
|
|
41771
41614
|
*
|
|
41615
|
+
* Requirements:
|
|
41616
|
+
* - Company must have a Pro Account (returns 404 if not)
|
|
41617
|
+
* - Company must have an enabled merchant profile (returns 403 if not)
|
|
41618
|
+
*
|
|
41772
41619
|
*
|
|
41773
41620
|
* > ℹ️
|
|
41774
41621
|
* > This endpoint requires one of the following scopes: `customer_mandates:readonly`, `customer_mandates:all`
|
|
@@ -41780,6 +41627,10 @@ declare const getProAccountMandateMigrations: <ThrowOnError extends boolean = fa
|
|
|
41780
41627
|
* This endpoint allows you to migrate a mandate to a Pro Account.
|
|
41781
41628
|
* Only mandates with status 'available' are eligible for migration.
|
|
41782
41629
|
*
|
|
41630
|
+
* **Requirements:**
|
|
41631
|
+
* - Company must have a Pro Account (returns 404 if not)
|
|
41632
|
+
* - Company must have an enabled merchant profile (returns 403 if not)
|
|
41633
|
+
*
|
|
41783
41634
|
*
|
|
41784
41635
|
* > ℹ️
|
|
41785
41636
|
* > This endpoint requires one of the following scopes: `customer_mandates:all`
|
|
@@ -41788,7 +41639,13 @@ declare const postProAccountMandateMigrations: <ThrowOnError extends boolean = f
|
|
|
41788
41639
|
/**
|
|
41789
41640
|
* List Pro Account payment mandates
|
|
41790
41641
|
*
|
|
41791
|
-
* This endpoint allows you to retrieve all payment mandates associated
|
|
41642
|
+
* This endpoint allows you to retrieve all payment mandates associated
|
|
41643
|
+
* with your company's pro account.
|
|
41644
|
+
*
|
|
41645
|
+
* Requirements:
|
|
41646
|
+
* - Company must have a Pro Account (returns 404 if not)
|
|
41647
|
+
* - Company must have an enabled merchant profile (returns 403 if not)
|
|
41648
|
+
*
|
|
41792
41649
|
*
|
|
41793
41650
|
* > ℹ️
|
|
41794
41651
|
* > This endpoint requires one of the following scopes: `customer_mandates:readonly`, `customer_mandates:all`
|
|
@@ -41808,8 +41665,16 @@ declare const getCustomerInvoiceCustomHeaderFields: <ThrowOnError extends boolea
|
|
|
41808
41665
|
*
|
|
41809
41666
|
* This endpoint allows you to import an e-invoice.
|
|
41810
41667
|
*
|
|
41668
|
+
* > ‼️
|
|
41669
|
+
* > This endpoint is **DEPRECATED**
|
|
41670
|
+
* > As an alternative, please use either:
|
|
41671
|
+
* > - [Import a customer e-invoice](https://pennylane.readme.io/reference/createcustomerinvoiceeinvoiceimport) endpoint
|
|
41672
|
+
* > - [Import a supplier e-invoice](https://pennylane.readme.io/reference/createsupplierinvoiceeinvoiceimport) endpoint
|
|
41673
|
+
*
|
|
41811
41674
|
* > ℹ️
|
|
41812
41675
|
* > This endpoint requires one of the following scopes: `e_invoices:all`
|
|
41676
|
+
*
|
|
41677
|
+
* @deprecated
|
|
41813
41678
|
*/
|
|
41814
41679
|
declare const createEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateEInvoiceImportData, ThrowOnError>) => RequestResult<CreateEInvoiceImportResponses, CreateEInvoiceImportErrors, ThrowOnError, "fields">;
|
|
41815
41680
|
/**
|
|
@@ -41854,5 +41719,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
41854
41719
|
//#region src/index.d.ts
|
|
41855
41720
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
41856
41721
|
//#endregion
|
|
41857
|
-
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionOcurrenceRuleType, BillingSubscriptionOcurrenceRuleTypeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryDirection, CategoryDirectionSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentType, CommercialDocumentTypeSchema, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCompleteRegistrationData, CompanyCompleteRegistrationError, CompanyCompleteRegistrationErrors, CompanyCompleteRegistrationResponse, CompanyCompleteRegistrationResponses, CompanyCreateData, CompanyCreateError, CompanyCreateErrors, CompanyCreateResponse, CompanyCreateResponses, 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, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, CurrencySchema, CustomerBillingLanguage, CustomerBillingLanguageSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, FindUserData, FindUserError, FindUserErrors, FindUserResponse, FindUserResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, 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, 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, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, 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, PostUsersData, PostUsersError, PostUsersErrors, PostUsersResponse, PostUsersResponses, 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, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutUsersData, PutUsersError, PutUsersErrors, PutUsersResponse, PutUsersResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuoteStatus, QuoteStatusSchema, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SchemasCurrency, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierDueDateRule, SupplierDueDateRuleSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethod, SupplierPaymentMethodSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, 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, VatRate, VatRateSchema, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyCompleteRegistration, companyCreate, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, finalizeCustomerInvoice, findUser, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getFileAttachments, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, 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, postUsers, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putTransactionCategories, putUsers, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
41722
|
+
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionOcurrenceRuleType, BillingSubscriptionOcurrenceRuleTypeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryDirection, CategoryDirectionSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentType, CommercialDocumentTypeSchema, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, CurrencySchema, CustomerBillingLanguage, CustomerBillingLanguageSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, 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, 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, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, 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, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuoteStatus, QuoteStatusSchema, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SchemasCurrency, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierDueDateRule, SupplierDueDateRuleSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethod, SupplierPaymentMethodSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, 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, VatRate, VatRateSchema, 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, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getFileAttachments, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, 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, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
41858
41723
|
//# sourceMappingURL=index.d.mts.map
|