@getyetty-sdk/pennylane 2026.5.23 → 2026.6.4-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -7,6 +7,13 @@ interface Auth {
7
7
  * @default 'header'
8
8
  */
9
9
  in?: 'header' | 'query' | 'cookie';
10
+ /**
11
+ * A unique identifier for the security scheme.
12
+ *
13
+ * Defined only when there are multiple security schemes whose `Auth`
14
+ * shape would otherwise be identical.
15
+ */
16
+ key?: string;
10
17
  /**
11
18
  * Header or query parameter name.
12
19
  *
@@ -30,7 +37,7 @@ type ObjectStyle = 'form' | 'deepObject';
30
37
  //#endregion
31
38
  //#region src/generated/core/bodySerializer.gen.d.ts
32
39
  type QuerySerializer = (query: Record<string, unknown>) => string;
33
- type BodySerializer = (body: any) => any;
40
+ type BodySerializer = (body: unknown) => unknown;
34
41
  type QuerySerializerOptionsObject = {
35
42
  allowReserved?: boolean;
36
43
  array?: Partial<SerializerOptions<ArrayStyle>>;
@@ -86,7 +93,7 @@ interface Params {
86
93
  path: Record<string, unknown>;
87
94
  query: Record<string, unknown>;
88
95
  }
89
- declare const buildClientParams: (args: ReadonlyArray<unknown>, fields: FieldsConfig) => Params;
96
+ declare function buildClientParams(args: ReadonlyArray<unknown>, fields: FieldsConfig): Params;
90
97
  //#endregion
91
98
  //#region src/generated/core/types.gen.d.ts
92
99
  type HttpMethod = 'connect' | 'delete' | 'get' | 'head' | 'options' | 'patch' | 'post' | 'put' | 'trace';
@@ -146,7 +153,7 @@ interface Config$1 {
146
153
  requestValidator?: (data: unknown) => Promise<unknown>;
147
154
  /**
148
155
  * A function transforming response data before it's returned. This is useful
149
- * for post-processing data, e.g. converting ISO strings into Date objects.
156
+ * for post-processing data, e.g., converting ISO strings into Date objects.
150
157
  */
151
158
  responseTransformer?: (data: unknown) => Promise<unknown>;
152
159
  /**
@@ -230,7 +237,11 @@ type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> =
230
237
  //#endregion
231
238
  //#region src/generated/client/utils.gen.d.ts
232
239
  declare const mergeHeaders: (...headers: Array<Required<Config>["headers"] | undefined>) => Headers;
233
- type ErrInterceptor<Err, Res, Req, Options> = (error: Err, response: Res, request: Req, options: Options) => Err | Promise<Err>;
240
+ type ErrInterceptor<Err, Res, Req, Options> = (error: Err, /** response may be undefined due to a network error where no response object is produced */
241
+
242
+ response: Res | undefined, /** request may be undefined, because error may be from building the request object itself */
243
+
244
+ request: Req | undefined, options: Options) => Err | Promise<Err>;
234
245
  type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
235
246
  type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
236
247
  declare class Interceptors<Interceptor> {
@@ -295,7 +306,7 @@ interface Config<T extends ClientOptions = ClientOptions> extends Omit<RequestIn
295
306
  interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends Config<{
296
307
  responseStyle: TResponseStyle;
297
308
  throwOnError: ThrowOnError;
298
- }>, Pick<ServerSentEventsOptions<TData>, 'onSseError' | 'onSseEvent' | 'sseDefaultRetryDelay' | 'sseMaxRetryAttempts' | 'sseMaxRetryDelay'> {
309
+ }>, Pick<ServerSentEventsOptions<TData>, 'onRequest' | 'onSseError' | 'onSseEvent' | 'sseDefaultRetryDelay' | 'sseMaxRetryAttempts' | 'sseMaxRetryDelay'> {
299
310
  /**
300
311
  * Any body that you want to add to your request.
301
312
  *
@@ -311,6 +322,7 @@ interface RequestOptions<TData = unknown, TResponseStyle extends ResponseStyle =
311
322
  url: Url;
312
323
  }
313
324
  interface ResolvedRequestOptions<TResponseStyle extends ResponseStyle = 'fields', ThrowOnError extends boolean = boolean, Url extends string = string> extends RequestOptions<unknown, TResponseStyle, ThrowOnError, Url> {
325
+ headers: Headers;
314
326
  serializedBody?: string;
315
327
  }
316
328
  type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boolean = boolean, TResponseStyle extends ResponseStyle = 'fields'> = ThrowOnError extends true ? Promise<TResponseStyle extends 'data' ? TData extends Record<string, unknown> ? TData[keyof TData] : TData : {
@@ -324,8 +336,8 @@ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boole
324
336
  data: undefined;
325
337
  error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
326
338
  }) & {
327
- request: Request;
328
- response: Response;
339
+ /** request may be undefined, because error may be from building the request object itself */request?: Request; /** response may be undefined, because error may be from building the request object itself or from a network error */
340
+ response?: Response;
329
341
  }>;
330
342
  interface ClientOptions {
331
343
  baseUrl?: string;
@@ -333,7 +345,7 @@ interface ClientOptions {
333
345
  throwOnError?: boolean;
334
346
  }
335
347
  type MethodFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
336
- type SseFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData, TError>>;
348
+ type SseFn = <TData = unknown, _TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<never, TResponseStyle, ThrowOnError>, 'method'>) => Promise<ServerSentEventsResult<TData>>;
337
349
  type RequestFn = <TData = unknown, TError = unknown, ThrowOnError extends boolean = false, TResponseStyle extends ResponseStyle = 'fields'>(options: Omit<RequestOptions<TData, TResponseStyle, ThrowOnError>, 'method'> & Pick<Required<RequestOptions<TData, TResponseStyle, ThrowOnError>>, 'method'>) => RequestResult<TData, TError, ThrowOnError, TResponseStyle>;
338
350
  type BuildUrlFn = <TData extends {
339
351
  body?: unknown;
@@ -3214,6 +3226,7 @@ type ProductsResponse = {
3214
3226
  created_at: string;
3215
3227
  updated_at: string;
3216
3228
  };
3229
+ type NonBlankDecimalString = string;
3217
3230
  type FileAttachmentsResponse = {
3218
3231
  id: number;
3219
3232
  /**
@@ -36405,6 +36418,11 @@ declare const Products__ResponseSchema: {
36405
36418
  };
36406
36419
  readonly required: readonly ["id", "label", "description", "external_reference", "price_before_tax", "vat_rate", "price", "unit", "currency", "reference", "ledger_account", "archived_at", "created_at", "updated_at"];
36407
36420
  };
36421
+ declare const NonBlankDecimalStringSchema: {
36422
+ readonly type: "string";
36423
+ readonly pattern: "^-?\\d+(\\.\\d+)?$";
36424
+ readonly example: "100.00";
36425
+ };
36408
36426
  declare const FileAttachments__ResponseSchema: {
36409
36427
  readonly type: "object";
36410
36428
  readonly additionalProperties: false;
@@ -41800,7 +41818,7 @@ declare const BankEstablishments__ResponseSchema: {
41800
41818
  };
41801
41819
  //#endregion
41802
41820
  //#region src/generated/sdk.gen.d.ts
41803
- type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
41821
+ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$1<TData, ThrowOnError, TResponse> & {
41804
41822
  /**
41805
41823
  * You can provide a client instance returned by `createClient()` instead of
41806
41824
  * individual options. This might be also useful if you want to implement a
@@ -41820,7 +41838,7 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
41820
41838
  * Note that the secret is not included in the response.
41821
41839
  *
41822
41840
  */
41823
- declare const getWebhookSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<GetWebhookSubscriptionsData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionsResponses, GetWebhookSubscriptionsErrors, ThrowOnError, "fields">;
41841
+ declare const getWebhookSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<GetWebhookSubscriptionsData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionsResponses, GetWebhookSubscriptionsErrors, ThrowOnError>;
41824
41842
  /**
41825
41843
  * Create a webhook subscription
41826
41844
  *
@@ -41838,14 +41856,14 @@ declare const getWebhookSubscriptions: <ThrowOnError extends boolean = false>(op
41838
41856
  *
41839
41857
  * > 🔒 The secret is **only returned in the creation response** and cannot be retrieved afterwards. Make sure to store it securely.
41840
41858
  */
41841
- declare const postWebhookSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PostWebhookSubscriptionsData, ThrowOnError>) => RequestResult<PostWebhookSubscriptionsResponses, PostWebhookSubscriptionsErrors, ThrowOnError, "fields">;
41859
+ declare const postWebhookSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PostWebhookSubscriptionsData, ThrowOnError>) => RequestResult<PostWebhookSubscriptionsResponses, PostWebhookSubscriptionsErrors, ThrowOnError>;
41842
41860
  /**
41843
41861
  * Delete a webhook subscription
41844
41862
  *
41845
41863
  * This endpoint allows you to delete a webhook subscription by ID.
41846
41864
  *
41847
41865
  */
41848
- declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<DeleteWebhookSubscriptionData, ThrowOnError>) => RequestResult<DeleteWebhookSubscriptionResponses, DeleteWebhookSubscriptionErrors, ThrowOnError, "fields">;
41866
+ declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<DeleteWebhookSubscriptionData, ThrowOnError>) => RequestResult<DeleteWebhookSubscriptionResponses, DeleteWebhookSubscriptionErrors, ThrowOnError>;
41849
41867
  /**
41850
41868
  * Get a webhook subscription
41851
41869
  *
@@ -41853,14 +41871,14 @@ declare const deleteWebhookSubscription: <ThrowOnError extends boolean = false>(
41853
41871
  * Note that the secret is not included in the response.
41854
41872
  *
41855
41873
  */
41856
- declare const getWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<GetWebhookSubscriptionData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionResponses, GetWebhookSubscriptionErrors, ThrowOnError, "fields">;
41874
+ declare const getWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<GetWebhookSubscriptionData, ThrowOnError>) => RequestResult<GetWebhookSubscriptionResponses, GetWebhookSubscriptionErrors, ThrowOnError>;
41857
41875
  /**
41858
41876
  * Update a webhook subscription
41859
41877
  *
41860
41878
  * This endpoint allows you to update a webhook subscription by ID.
41861
41879
  *
41862
41880
  */
41863
- declare const putWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<PutWebhookSubscriptionData, ThrowOnError>) => RequestResult<PutWebhookSubscriptionResponses, PutWebhookSubscriptionErrors, ThrowOnError, "fields">;
41881
+ declare const putWebhookSubscription: <ThrowOnError extends boolean = false>(options: Options<PutWebhookSubscriptionData, ThrowOnError>) => RequestResult<PutWebhookSubscriptionResponses, PutWebhookSubscriptionErrors, ThrowOnError>;
41864
41882
  /**
41865
41883
  * List journals
41866
41884
  *
@@ -41878,7 +41896,7 @@ declare const putWebhookSubscription: <ThrowOnError extends boolean = false>(opt
41878
41896
  * > ℹ️
41879
41897
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `journals:readonly`, `journals:all`
41880
41898
  */
41881
- declare const getJournals: <ThrowOnError extends boolean = false>(options?: Options<GetJournalsData, ThrowOnError>) => RequestResult<GetJournalsResponses, GetJournalsErrors, ThrowOnError, "fields">;
41899
+ declare const getJournals: <ThrowOnError extends boolean = false>(options?: Options<GetJournalsData, ThrowOnError>) => RequestResult<GetJournalsResponses, GetJournalsErrors, ThrowOnError>;
41882
41900
  /**
41883
41901
  * Create a journal
41884
41902
  *
@@ -41892,7 +41910,7 @@ declare const getJournals: <ThrowOnError extends boolean = false>(options?: Opti
41892
41910
  * > ℹ️
41893
41911
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `journals:all`
41894
41912
  */
41895
- declare const postJournals: <ThrowOnError extends boolean = false>(options: Options<PostJournalsData, ThrowOnError>) => RequestResult<PostJournalsResponses, PostJournalsErrors, ThrowOnError, "fields">;
41913
+ declare const postJournals: <ThrowOnError extends boolean = false>(options: Options<PostJournalsData, ThrowOnError>) => RequestResult<PostJournalsResponses, PostJournalsErrors, ThrowOnError>;
41896
41914
  /**
41897
41915
  * Retrieve a journal
41898
41916
  *
@@ -41906,7 +41924,7 @@ declare const postJournals: <ThrowOnError extends boolean = false>(options: Opti
41906
41924
  * > ℹ️
41907
41925
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `journals:readonly`, `journals:all`
41908
41926
  */
41909
- declare const getJournal: <ThrowOnError extends boolean = false>(options: Options<GetJournalData, ThrowOnError>) => RequestResult<GetJournalResponses, GetJournalErrors, ThrowOnError, "fields">;
41927
+ declare const getJournal: <ThrowOnError extends boolean = false>(options: Options<GetJournalData, ThrowOnError>) => RequestResult<GetJournalResponses, GetJournalErrors, ThrowOnError>;
41910
41928
  /**
41911
41929
  * List Ledger Accounts
41912
41930
  *
@@ -41924,7 +41942,7 @@ declare const getJournal: <ThrowOnError extends boolean = false>(options: Option
41924
41942
  * > ℹ️
41925
41943
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_accounts:readonly`, `ledger_accounts:all`
41926
41944
  */
41927
- declare const getLedgerAccounts: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerAccountsData, ThrowOnError>) => RequestResult<GetLedgerAccountsResponses, GetLedgerAccountsErrors, ThrowOnError, "fields">;
41945
+ declare const getLedgerAccounts: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerAccountsData, ThrowOnError>) => RequestResult<GetLedgerAccountsResponses, GetLedgerAccountsErrors, ThrowOnError>;
41928
41946
  /**
41929
41947
  * Create a ledger account
41930
41948
  *
@@ -41938,7 +41956,7 @@ declare const getLedgerAccounts: <ThrowOnError extends boolean = false>(options?
41938
41956
  * > ℹ️
41939
41957
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_accounts:all`
41940
41958
  */
41941
- declare const postLedgerAccounts: <ThrowOnError extends boolean = false>(options: Options<PostLedgerAccountsData, ThrowOnError>) => RequestResult<PostLedgerAccountsResponses, PostLedgerAccountsErrors, ThrowOnError, "fields">;
41959
+ declare const postLedgerAccounts: <ThrowOnError extends boolean = false>(options: Options<PostLedgerAccountsData, ThrowOnError>) => RequestResult<PostLedgerAccountsResponses, PostLedgerAccountsErrors, ThrowOnError>;
41942
41960
  /**
41943
41961
  * Get a ledger account
41944
41962
  *
@@ -41952,7 +41970,7 @@ declare const postLedgerAccounts: <ThrowOnError extends boolean = false>(options
41952
41970
  * > ℹ️
41953
41971
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_accounts:readonly`, `ledger_accounts:all`
41954
41972
  */
41955
- declare const getLedgerAccount: <ThrowOnError extends boolean = false>(options: Options<GetLedgerAccountData, ThrowOnError>) => RequestResult<GetLedgerAccountResponses, GetLedgerAccountErrors, ThrowOnError, "fields">;
41973
+ declare const getLedgerAccount: <ThrowOnError extends boolean = false>(options: Options<GetLedgerAccountData, ThrowOnError>) => RequestResult<GetLedgerAccountResponses, GetLedgerAccountErrors, ThrowOnError>;
41956
41974
  /**
41957
41975
  * Update a ledger account
41958
41976
  *
@@ -41961,7 +41979,7 @@ declare const getLedgerAccount: <ThrowOnError extends boolean = false>(options:
41961
41979
  * > ℹ️
41962
41980
  * > This endpoint requires the following scope: `ledger_accounts:all`
41963
41981
  */
41964
- declare const updateLedgerAccount: <ThrowOnError extends boolean = false>(options: Options<UpdateLedgerAccountData, ThrowOnError>) => RequestResult<UpdateLedgerAccountResponses, UpdateLedgerAccountErrors, ThrowOnError, "fields">;
41982
+ declare const updateLedgerAccount: <ThrowOnError extends boolean = false>(options: Options<UpdateLedgerAccountData, ThrowOnError>) => RequestResult<UpdateLedgerAccountResponses, UpdateLedgerAccountErrors, ThrowOnError>;
41965
41983
  /**
41966
41984
  * Upload a file
41967
41985
  *
@@ -41977,7 +41995,7 @@ declare const updateLedgerAccount: <ThrowOnError extends boolean = false>(option
41977
41995
  *
41978
41996
  * @deprecated
41979
41997
  */
41980
- declare const postLedgerAttachments: <ThrowOnError extends boolean = false>(options: Options<PostLedgerAttachmentsData, ThrowOnError>) => RequestResult<PostLedgerAttachmentsResponses, PostLedgerAttachmentsErrors, ThrowOnError, "fields">;
41998
+ declare const postLedgerAttachments: <ThrowOnError extends boolean = false>(options: Options<PostLedgerAttachmentsData, ThrowOnError>) => RequestResult<PostLedgerAttachmentsResponses, PostLedgerAttachmentsErrors, ThrowOnError>;
41981
41999
  /**
41982
42000
  * List Ledger Entries
41983
42001
  *
@@ -41996,7 +42014,7 @@ declare const postLedgerAttachments: <ThrowOnError extends boolean = false>(opti
41996
42014
  * > ℹ️
41997
42015
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
41998
42016
  */
41999
- declare const getLedgerEntries: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerEntriesData, ThrowOnError>) => RequestResult<GetLedgerEntriesResponses, GetLedgerEntriesErrors, ThrowOnError, "fields">;
42017
+ declare const getLedgerEntries: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerEntriesData, ThrowOnError>) => RequestResult<GetLedgerEntriesResponses, GetLedgerEntriesErrors, ThrowOnError>;
42000
42018
  /**
42001
42019
  * Create a ledger entry
42002
42020
  *
@@ -42010,7 +42028,7 @@ declare const getLedgerEntries: <ThrowOnError extends boolean = false>(options?:
42010
42028
  * > ℹ️
42011
42029
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:all`
42012
42030
  */
42013
- declare const postLedgerEntries: <ThrowOnError extends boolean = false>(options: Options<PostLedgerEntriesData, ThrowOnError>) => RequestResult<PostLedgerEntriesResponses, PostLedgerEntriesErrors, ThrowOnError, "fields">;
42031
+ declare const postLedgerEntries: <ThrowOnError extends boolean = false>(options: Options<PostLedgerEntriesData, ThrowOnError>) => RequestResult<PostLedgerEntriesResponses, PostLedgerEntriesErrors, ThrowOnError>;
42014
42032
  /**
42015
42033
  * Retrieve a Ledger entry
42016
42034
  *
@@ -42024,7 +42042,7 @@ declare const postLedgerEntries: <ThrowOnError extends boolean = false>(options:
42024
42042
  * > ℹ️
42025
42043
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
42026
42044
  */
42027
- declare const getLedgerEntry: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryData, ThrowOnError>) => RequestResult<GetLedgerEntryResponses, GetLedgerEntryErrors, ThrowOnError, "fields">;
42045
+ declare const getLedgerEntry: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryData, ThrowOnError>) => RequestResult<GetLedgerEntryResponses, GetLedgerEntryErrors, ThrowOnError>;
42028
42046
  /**
42029
42047
  * Update a ledger entry
42030
42048
  *
@@ -42038,7 +42056,7 @@ declare const getLedgerEntry: <ThrowOnError extends boolean = false>(options: Op
42038
42056
  * > ℹ️
42039
42057
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:all`
42040
42058
  */
42041
- declare const putLedgerEntries: <ThrowOnError extends boolean = false>(options: Options<PutLedgerEntriesData, ThrowOnError>) => RequestResult<PutLedgerEntriesResponses, PutLedgerEntriesErrors, ThrowOnError, "fields">;
42059
+ declare const putLedgerEntries: <ThrowOnError extends boolean = false>(options: Options<PutLedgerEntriesData, ThrowOnError>) => RequestResult<PutLedgerEntriesResponses, PutLedgerEntriesErrors, ThrowOnError>;
42042
42060
  /**
42043
42061
  * List ledger entry lines of a Ledger Entry
42044
42062
  *
@@ -42056,7 +42074,7 @@ declare const putLedgerEntries: <ThrowOnError extends boolean = false>(options:
42056
42074
  * > ℹ️
42057
42075
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
42058
42076
  */
42059
- declare const getLedgerEntriesLedgerEntryLines: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntriesLedgerEntryLinesData, ThrowOnError>) => RequestResult<GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesLedgerEntryLinesErrors, ThrowOnError, "fields">;
42077
+ declare const getLedgerEntriesLedgerEntryLines: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntriesLedgerEntryLinesData, ThrowOnError>) => RequestResult<GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesLedgerEntryLinesErrors, ThrowOnError>;
42060
42078
  /**
42061
42079
  * List ledger entry lines
42062
42080
  *
@@ -42065,7 +42083,7 @@ declare const getLedgerEntriesLedgerEntryLines: <ThrowOnError extends boolean =
42065
42083
  * > ℹ️
42066
42084
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
42067
42085
  */
42068
- declare const getLedgerEntryLines: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerEntryLinesData, ThrowOnError>) => RequestResult<GetLedgerEntryLinesResponses, GetLedgerEntryLinesErrors, ThrowOnError, "fields">;
42086
+ declare const getLedgerEntryLines: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerEntryLinesData, ThrowOnError>) => RequestResult<GetLedgerEntryLinesResponses, GetLedgerEntryLinesErrors, ThrowOnError>;
42069
42087
  /**
42070
42088
  * Retrieve a Ledger entry line
42071
42089
  *
@@ -42074,7 +42092,7 @@ declare const getLedgerEntryLines: <ThrowOnError extends boolean = false>(option
42074
42092
  * > ℹ️
42075
42093
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
42076
42094
  */
42077
- declare const getLedgerEntryLine: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryLineData, ThrowOnError>) => RequestResult<GetLedgerEntryLineResponses, GetLedgerEntryLineErrors, ThrowOnError, "fields">;
42095
+ declare const getLedgerEntryLine: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryLineData, ThrowOnError>) => RequestResult<GetLedgerEntryLineResponses, GetLedgerEntryLineErrors, ThrowOnError>;
42078
42096
  /**
42079
42097
  * Unletter ledger entry lines
42080
42098
  *
@@ -42083,7 +42101,7 @@ declare const getLedgerEntryLine: <ThrowOnError extends boolean = false>(options
42083
42101
  * > ℹ️
42084
42102
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:all`
42085
42103
  */
42086
- declare const deleteLedgerEntryLinesUnletter: <ThrowOnError extends boolean = false>(options: Options<DeleteLedgerEntryLinesUnletterData, ThrowOnError>) => RequestResult<DeleteLedgerEntryLinesUnletterResponses, DeleteLedgerEntryLinesUnletterErrors, ThrowOnError, "fields">;
42104
+ declare const deleteLedgerEntryLinesUnletter: <ThrowOnError extends boolean = false>(options: Options<DeleteLedgerEntryLinesUnletterData, ThrowOnError>) => RequestResult<DeleteLedgerEntryLinesUnletterResponses, DeleteLedgerEntryLinesUnletterErrors, ThrowOnError>;
42087
42105
  /**
42088
42106
  * Letter ledger entry lines
42089
42107
  *
@@ -42095,7 +42113,7 @@ declare const deleteLedgerEntryLinesUnletter: <ThrowOnError extends boolean = fa
42095
42113
  * > ℹ️
42096
42114
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:all`
42097
42115
  */
42098
- declare const postLedgerEntryLinesLetter: <ThrowOnError extends boolean = false>(options: Options<PostLedgerEntryLinesLetterData, ThrowOnError>) => RequestResult<PostLedgerEntryLinesLetterResponses, PostLedgerEntryLinesLetterErrors, ThrowOnError, "fields">;
42116
+ declare const postLedgerEntryLinesLetter: <ThrowOnError extends boolean = false>(options: Options<PostLedgerEntryLinesLetterData, ThrowOnError>) => RequestResult<PostLedgerEntryLinesLetterResponses, PostLedgerEntryLinesLetterErrors, ThrowOnError>;
42099
42117
  /**
42100
42118
  * List ledger entry lines lettered to a given ledger entry line
42101
42119
  *
@@ -42114,7 +42132,7 @@ declare const postLedgerEntryLinesLetter: <ThrowOnError extends boolean = false>
42114
42132
  * > ℹ️
42115
42133
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
42116
42134
  */
42117
- declare const getLedgerEntryLinesLetteredLedgerEntryLines: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryLinesLetteredLedgerEntryLinesData, ThrowOnError>) => RequestResult<GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, ThrowOnError, "fields">;
42135
+ declare const getLedgerEntryLinesLetteredLedgerEntryLines: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryLinesLetteredLedgerEntryLinesData, ThrowOnError>) => RequestResult<GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, ThrowOnError>;
42118
42136
  /**
42119
42137
  * List categories of a Ledger Entry line
42120
42138
  *
@@ -42128,7 +42146,7 @@ declare const getLedgerEntryLinesLetteredLedgerEntryLines: <ThrowOnError extends
42128
42146
  * > ℹ️
42129
42147
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
42130
42148
  */
42131
- declare const getLedgerEntryLinesCategories: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryLinesCategoriesData, ThrowOnError>) => RequestResult<GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesCategoriesErrors, ThrowOnError, "fields">;
42149
+ declare const getLedgerEntryLinesCategories: <ThrowOnError extends boolean = false>(options: Options<GetLedgerEntryLinesCategoriesData, ThrowOnError>) => RequestResult<GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesCategoriesErrors, ThrowOnError>;
42132
42150
  /**
42133
42151
  * Link Analytical Categories to a Ledger Entry line
42134
42152
  *
@@ -42143,7 +42161,7 @@ declare const getLedgerEntryLinesCategories: <ThrowOnError extends boolean = fal
42143
42161
  * > ℹ️
42144
42162
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:all`
42145
42163
  */
42146
- declare const putLedgerEntryLinesCategories: <ThrowOnError extends boolean = false>(options: Options<PutLedgerEntryLinesCategoriesData, ThrowOnError>) => RequestResult<PutLedgerEntryLinesCategoriesResponses, PutLedgerEntryLinesCategoriesErrors, ThrowOnError, "fields">;
42164
+ declare const putLedgerEntryLinesCategories: <ThrowOnError extends boolean = false>(options: Options<PutLedgerEntryLinesCategoriesData, ThrowOnError>) => RequestResult<PutLedgerEntryLinesCategoriesResponses, PutLedgerEntryLinesCategoriesErrors, ThrowOnError>;
42147
42165
  /**
42148
42166
  * List customer invoices
42149
42167
  *
@@ -42152,7 +42170,7 @@ declare const putLedgerEntryLinesCategories: <ThrowOnError extends boolean = fal
42152
42170
  * > ℹ️
42153
42171
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42154
42172
  */
42155
- declare const getCustomerInvoices: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerInvoicesData, ThrowOnError>) => RequestResult<GetCustomerInvoicesResponses, GetCustomerInvoicesErrors, ThrowOnError, "fields">;
42173
+ declare const getCustomerInvoices: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerInvoicesData, ThrowOnError>) => RequestResult<GetCustomerInvoicesResponses, GetCustomerInvoicesErrors, ThrowOnError>;
42156
42174
  /**
42157
42175
  * Create a customer invoice
42158
42176
  *
@@ -42163,7 +42181,7 @@ declare const getCustomerInvoices: <ThrowOnError extends boolean = false>(option
42163
42181
  * > ℹ️
42164
42182
  * > This endpoint requires the following scope: `customer_invoices:all`
42165
42183
  */
42166
- declare const postCustomerInvoices: <ThrowOnError extends boolean = false>(options: Options<PostCustomerInvoicesData, ThrowOnError>) => RequestResult<PostCustomerInvoicesResponses, PostCustomerInvoicesErrors, ThrowOnError, "fields">;
42184
+ declare const postCustomerInvoices: <ThrowOnError extends boolean = false>(options: Options<PostCustomerInvoicesData, ThrowOnError>) => RequestResult<PostCustomerInvoicesResponses, PostCustomerInvoicesErrors, ThrowOnError>;
42167
42185
  /**
42168
42186
  * Import an invoice with file attached
42169
42187
  *
@@ -42175,7 +42193,7 @@ declare const postCustomerInvoices: <ThrowOnError extends boolean = false>(optio
42175
42193
  * > ℹ️
42176
42194
  * > This endpoint requires the following scope: `customer_invoices:all`
42177
42195
  */
42178
- declare const importCustomerInvoices: <ThrowOnError extends boolean = false>(options: Options<ImportCustomerInvoicesData, ThrowOnError>) => RequestResult<ImportCustomerInvoicesResponses, ImportCustomerInvoicesErrors, ThrowOnError, "fields">;
42196
+ declare const importCustomerInvoices: <ThrowOnError extends boolean = false>(options: Options<ImportCustomerInvoicesData, ThrowOnError>) => RequestResult<ImportCustomerInvoicesResponses, ImportCustomerInvoicesErrors, ThrowOnError>;
42179
42197
  /**
42180
42198
  * Import a customer e-invoice
42181
42199
  *
@@ -42188,7 +42206,7 @@ declare const importCustomerInvoices: <ThrowOnError extends boolean = false>(opt
42188
42206
  * > ℹ️
42189
42207
  * > This endpoint requires the following scope: `customer_invoices:all`
42190
42208
  */
42191
- declare const createCustomerInvoiceEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateCustomerInvoiceEInvoiceImportData, ThrowOnError>) => RequestResult<CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceEInvoiceImportErrors, ThrowOnError, "fields">;
42209
+ declare const createCustomerInvoiceEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateCustomerInvoiceEInvoiceImportData, ThrowOnError>) => RequestResult<CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceEInvoiceImportErrors, ThrowOnError>;
42192
42210
  /**
42193
42211
  * Create a customer invoice from a quote
42194
42212
  *
@@ -42199,7 +42217,7 @@ declare const createCustomerInvoiceEInvoiceImport: <ThrowOnError extends boolean
42199
42217
  * > ℹ️
42200
42218
  * > This endpoint requires the following scope: `customer_invoices:all`
42201
42219
  */
42202
- declare const createCustomerInvoiceFromQuote: <ThrowOnError extends boolean = false>(options: Options<CreateCustomerInvoiceFromQuoteData, ThrowOnError>) => RequestResult<CreateCustomerInvoiceFromQuoteResponses, CreateCustomerInvoiceFromQuoteErrors, ThrowOnError, "fields">;
42220
+ declare const createCustomerInvoiceFromQuote: <ThrowOnError extends boolean = false>(options: Options<CreateCustomerInvoiceFromQuoteData, ThrowOnError>) => RequestResult<CreateCustomerInvoiceFromQuoteResponses, CreateCustomerInvoiceFromQuoteErrors, ThrowOnError>;
42203
42221
  /**
42204
42222
  * List billing subscriptions
42205
42223
  *
@@ -42208,7 +42226,7 @@ declare const createCustomerInvoiceFromQuote: <ThrowOnError extends boolean = fa
42208
42226
  * > ℹ️
42209
42227
  * > This endpoint requires one of the following scopes: `billing_subscriptions:all`, `billing_subscriptions:readonly`
42210
42228
  */
42211
- declare const getBillingSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<GetBillingSubscriptionsData, ThrowOnError>) => RequestResult<GetBillingSubscriptionsResponses, GetBillingSubscriptionsErrors, ThrowOnError, "fields">;
42229
+ declare const getBillingSubscriptions: <ThrowOnError extends boolean = false>(options?: Options<GetBillingSubscriptionsData, ThrowOnError>) => RequestResult<GetBillingSubscriptionsResponses, GetBillingSubscriptionsErrors, ThrowOnError>;
42212
42230
  /**
42213
42231
  * Create a billing subscription
42214
42232
  *
@@ -42219,7 +42237,7 @@ declare const getBillingSubscriptions: <ThrowOnError extends boolean = false>(op
42219
42237
  * > ℹ️
42220
42238
  * > This endpoint requires the following scope: `billing_subscriptions:all`
42221
42239
  */
42222
- declare const postBillingSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PostBillingSubscriptionsData, ThrowOnError>) => RequestResult<PostBillingSubscriptionsResponses, PostBillingSubscriptionsErrors, ThrowOnError, "fields">;
42240
+ declare const postBillingSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PostBillingSubscriptionsData, ThrowOnError>) => RequestResult<PostBillingSubscriptionsResponses, PostBillingSubscriptionsErrors, ThrowOnError>;
42223
42241
  /**
42224
42242
  * Get a billing subscription
42225
42243
  *
@@ -42228,7 +42246,7 @@ declare const postBillingSubscriptions: <ThrowOnError extends boolean = false>(o
42228
42246
  * > ℹ️
42229
42247
  * > This endpoint requires one of the following scopes: `billing_subscriptions:all`, `billing_subscriptions:readonly`
42230
42248
  */
42231
- declare const getBillingSubscription: <ThrowOnError extends boolean = false>(options: Options<GetBillingSubscriptionData, ThrowOnError>) => RequestResult<GetBillingSubscriptionResponses, GetBillingSubscriptionErrors, ThrowOnError, "fields">;
42249
+ declare const getBillingSubscription: <ThrowOnError extends boolean = false>(options: Options<GetBillingSubscriptionData, ThrowOnError>) => RequestResult<GetBillingSubscriptionResponses, GetBillingSubscriptionErrors, ThrowOnError>;
42232
42250
  /**
42233
42251
  * Update a billing subscription
42234
42252
  *
@@ -42237,7 +42255,7 @@ declare const getBillingSubscription: <ThrowOnError extends boolean = false>(opt
42237
42255
  * > ℹ️
42238
42256
  * > This endpoint requires the following scope: `billing_subscriptions:all`
42239
42257
  */
42240
- declare const putBillingSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PutBillingSubscriptionsData, ThrowOnError>) => RequestResult<PutBillingSubscriptionsResponses, PutBillingSubscriptionsErrors, ThrowOnError, "fields">;
42258
+ declare const putBillingSubscriptions: <ThrowOnError extends boolean = false>(options: Options<PutBillingSubscriptionsData, ThrowOnError>) => RequestResult<PutBillingSubscriptionsResponses, PutBillingSubscriptionsErrors, ThrowOnError>;
42241
42259
  /**
42242
42260
  * List the invoice line sections of a billing subscription
42243
42261
  *
@@ -42246,7 +42264,7 @@ declare const putBillingSubscriptions: <ThrowOnError extends boolean = false>(op
42246
42264
  * > ℹ️
42247
42265
  * > This endpoint requires one of the following scopes: `billing_subscriptions:all`, `billing_subscriptions:readonly`
42248
42266
  */
42249
- declare const getBillingSubscriptionInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetBillingSubscriptionInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLineSectionsErrors, ThrowOnError, "fields">;
42267
+ declare const getBillingSubscriptionInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetBillingSubscriptionInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLineSectionsErrors, ThrowOnError>;
42250
42268
  /**
42251
42269
  * List invoice lines for a billing subscription
42252
42270
  *
@@ -42255,7 +42273,7 @@ declare const getBillingSubscriptionInvoiceLineSections: <ThrowOnError extends b
42255
42273
  * > ℹ️
42256
42274
  * > This endpoint requires one of the following scopes: `billing_subscriptions:all`, `billing_subscriptions:readonly`
42257
42275
  */
42258
- declare const getBillingSubscriptionInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetBillingSubscriptionInvoiceLinesData, ThrowOnError>) => RequestResult<GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionInvoiceLinesErrors, ThrowOnError, "fields">;
42276
+ declare const getBillingSubscriptionInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetBillingSubscriptionInvoiceLinesData, ThrowOnError>) => RequestResult<GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionInvoiceLinesErrors, ThrowOnError>;
42259
42277
  /**
42260
42278
  * List PA Registrations
42261
42279
  *
@@ -42268,7 +42286,7 @@ declare const getBillingSubscriptionInvoiceLines: <ThrowOnError extends boolean
42268
42286
  * > ℹ️
42269
42287
  * > This endpoint requires the following scope: `pa_registrations:readonly`
42270
42288
  */
42271
- declare const getPaRegistrations: <ThrowOnError extends boolean = false>(options?: Options<GetPaRegistrationsData, ThrowOnError>) => RequestResult<GetPaRegistrationsResponses, GetPaRegistrationsErrors, ThrowOnError, "fields">;
42289
+ declare const getPaRegistrations: <ThrowOnError extends boolean = false>(options?: Options<GetPaRegistrationsData, ThrowOnError>) => RequestResult<GetPaRegistrationsResponses, GetPaRegistrationsErrors, ThrowOnError>;
42272
42290
  /**
42273
42291
  * List products
42274
42292
  *
@@ -42277,7 +42295,7 @@ declare const getPaRegistrations: <ThrowOnError extends boolean = false>(options
42277
42295
  * > ℹ️
42278
42296
  * > This endpoint requires one of the following scopes: `products:all`, `products:readonly`
42279
42297
  */
42280
- declare const getProducts: <ThrowOnError extends boolean = false>(options?: Options<GetProductsData, ThrowOnError>) => RequestResult<GetProductsResponses, GetProductsErrors, ThrowOnError, "fields">;
42298
+ declare const getProducts: <ThrowOnError extends boolean = false>(options?: Options<GetProductsData, ThrowOnError>) => RequestResult<GetProductsResponses, GetProductsErrors, ThrowOnError>;
42281
42299
  /**
42282
42300
  * Create a product
42283
42301
  *
@@ -42286,7 +42304,7 @@ declare const getProducts: <ThrowOnError extends boolean = false>(options?: Opti
42286
42304
  * > ℹ️
42287
42305
  * > This endpoint requires the following scope: `products:all`
42288
42306
  */
42289
- declare const postProducts: <ThrowOnError extends boolean = false>(options: Options<PostProductsData, ThrowOnError>) => RequestResult<PostProductsResponses, PostProductsErrors, ThrowOnError, "fields">;
42307
+ declare const postProducts: <ThrowOnError extends boolean = false>(options: Options<PostProductsData, ThrowOnError>) => RequestResult<PostProductsResponses, PostProductsErrors, ThrowOnError>;
42290
42308
  /**
42291
42309
  * Retrieve a product
42292
42310
  *
@@ -42295,7 +42313,7 @@ declare const postProducts: <ThrowOnError extends boolean = false>(options: Opti
42295
42313
  * > ℹ️
42296
42314
  * > This endpoint requires one of the following scopes: `products:all`, `products:readonly`
42297
42315
  */
42298
- declare const getProduct: <ThrowOnError extends boolean = false>(options: Options<GetProductData, ThrowOnError>) => RequestResult<GetProductResponses, GetProductErrors, ThrowOnError, "fields">;
42316
+ declare const getProduct: <ThrowOnError extends boolean = false>(options: Options<GetProductData, ThrowOnError>) => RequestResult<GetProductResponses, GetProductErrors, ThrowOnError>;
42299
42317
  /**
42300
42318
  * Update a product
42301
42319
  *
@@ -42304,7 +42322,7 @@ declare const getProduct: <ThrowOnError extends boolean = false>(options: Option
42304
42322
  * > ℹ️
42305
42323
  * > This endpoint requires the following scope: `products:all`
42306
42324
  */
42307
- declare const putProduct: <ThrowOnError extends boolean = false>(options: Options<PutProductData, ThrowOnError>) => RequestResult<PutProductResponses, PutProductErrors, ThrowOnError, "fields">;
42325
+ declare const putProduct: <ThrowOnError extends boolean = false>(options: Options<PutProductData, ThrowOnError>) => RequestResult<PutProductResponses, PutProductErrors, ThrowOnError>;
42308
42326
  /**
42309
42327
  * Upload a file
42310
42328
  *
@@ -42317,7 +42335,7 @@ declare const putProduct: <ThrowOnError extends boolean = false>(options: Option
42317
42335
  * > ℹ️
42318
42336
  * > This endpoint requires the following scope: `file_attachments:all`
42319
42337
  */
42320
- declare const postFileAttachments: <ThrowOnError extends boolean = false>(options: Options<PostFileAttachmentsData, ThrowOnError>) => RequestResult<PostFileAttachmentsResponses, PostFileAttachmentsErrors, ThrowOnError, "fields">;
42338
+ declare const postFileAttachments: <ThrowOnError extends boolean = false>(options: Options<PostFileAttachmentsData, ThrowOnError>) => RequestResult<PostFileAttachmentsResponses, PostFileAttachmentsErrors, ThrowOnError>;
42321
42339
  /**
42322
42340
  * List customer invoice templates
42323
42341
  *
@@ -42326,7 +42344,7 @@ declare const postFileAttachments: <ThrowOnError extends boolean = false>(option
42326
42344
  * > ℹ️
42327
42345
  * > This endpoint requires the following scope: `customer_invoice_templates:readonly`
42328
42346
  */
42329
- declare const getCustomerInvoiceTemplates: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerInvoiceTemplatesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceTemplatesResponses, GetCustomerInvoiceTemplatesErrors, ThrowOnError, "fields">;
42347
+ declare const getCustomerInvoiceTemplates: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerInvoiceTemplatesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceTemplatesResponses, GetCustomerInvoiceTemplatesErrors, ThrowOnError>;
42330
42348
  /**
42331
42349
  * Create an Analytical General Ledger export
42332
42350
  *
@@ -42335,7 +42353,7 @@ declare const getCustomerInvoiceTemplates: <ThrowOnError extends boolean = false
42335
42353
  * > ℹ️
42336
42354
  * > This endpoint requires the following scope: `exports:agl`
42337
42355
  */
42338
- declare const exportAnalyticalGeneralLedger: <ThrowOnError extends boolean = false>(options: Options<ExportAnalyticalGeneralLedgerData, ThrowOnError>) => RequestResult<ExportAnalyticalGeneralLedgerResponses, ExportAnalyticalGeneralLedgerErrors, ThrowOnError, "fields">;
42356
+ declare const exportAnalyticalGeneralLedger: <ThrowOnError extends boolean = false>(options: Options<ExportAnalyticalGeneralLedgerData, ThrowOnError>) => RequestResult<ExportAnalyticalGeneralLedgerResponses, ExportAnalyticalGeneralLedgerErrors, ThrowOnError>;
42339
42357
  /**
42340
42358
  * Retrieve an Analytical General Ledger export
42341
42359
  *
@@ -42344,7 +42362,7 @@ declare const exportAnalyticalGeneralLedger: <ThrowOnError extends boolean = fal
42344
42362
  * > ℹ️
42345
42363
  * > This endpoint requires the following scope: `exports:agl`
42346
42364
  */
42347
- declare const getAnalyticalGeneralLedgerExport: <ThrowOnError extends boolean = false>(options: Options<GetAnalyticalGeneralLedgerExportData, ThrowOnError>) => RequestResult<GetAnalyticalGeneralLedgerExportResponses, GetAnalyticalGeneralLedgerExportErrors, ThrowOnError, "fields">;
42365
+ declare const getAnalyticalGeneralLedgerExport: <ThrowOnError extends boolean = false>(options: Options<GetAnalyticalGeneralLedgerExportData, ThrowOnError>) => RequestResult<GetAnalyticalGeneralLedgerExportResponses, GetAnalyticalGeneralLedgerExportErrors, ThrowOnError>;
42348
42366
  /**
42349
42367
  * Create a FEC export
42350
42368
  *
@@ -42353,7 +42371,7 @@ declare const getAnalyticalGeneralLedgerExport: <ThrowOnError extends boolean =
42353
42371
  * > ℹ️
42354
42372
  * > This endpoint requires the following scope: `exports:fec`
42355
42373
  */
42356
- declare const exportFec: <ThrowOnError extends boolean = false>(options: Options<ExportFecData, ThrowOnError>) => RequestResult<ExportFecResponses, ExportFecErrors, ThrowOnError, "fields">;
42374
+ declare const exportFec: <ThrowOnError extends boolean = false>(options: Options<ExportFecData, ThrowOnError>) => RequestResult<ExportFecResponses, ExportFecErrors, ThrowOnError>;
42357
42375
  /**
42358
42376
  * Retrieve a FEC export
42359
42377
  *
@@ -42362,7 +42380,7 @@ declare const exportFec: <ThrowOnError extends boolean = false>(options: Options
42362
42380
  * > ℹ️
42363
42381
  * > This endpoint requires the following scope: `exports:fec`
42364
42382
  */
42365
- declare const getFecExport: <ThrowOnError extends boolean = false>(options: Options<GetFecExportData, ThrowOnError>) => RequestResult<GetFecExportResponses, GetFecExportErrors, ThrowOnError, "fields">;
42383
+ declare const getFecExport: <ThrowOnError extends boolean = false>(options: Options<GetFecExportData, ThrowOnError>) => RequestResult<GetFecExportResponses, GetFecExportErrors, ThrowOnError>;
42366
42384
  /**
42367
42385
  * Create a General Ledger export
42368
42386
  *
@@ -42371,7 +42389,7 @@ declare const getFecExport: <ThrowOnError extends boolean = false>(options: Opti
42371
42389
  * > ℹ️
42372
42390
  * > This endpoint requires the following scope: `exports:gl`
42373
42391
  */
42374
- declare const exportGeneralLedger: <ThrowOnError extends boolean = false>(options: Options<ExportGeneralLedgerData, ThrowOnError>) => RequestResult<ExportGeneralLedgerResponses, ExportGeneralLedgerErrors, ThrowOnError, "fields">;
42392
+ declare const exportGeneralLedger: <ThrowOnError extends boolean = false>(options: Options<ExportGeneralLedgerData, ThrowOnError>) => RequestResult<ExportGeneralLedgerResponses, ExportGeneralLedgerErrors, ThrowOnError>;
42375
42393
  /**
42376
42394
  * Retrieve a General Ledger export
42377
42395
  *
@@ -42380,7 +42398,7 @@ declare const exportGeneralLedger: <ThrowOnError extends boolean = false>(option
42380
42398
  * > ℹ️
42381
42399
  * > This endpoint requires the following scope: `exports:gl`
42382
42400
  */
42383
- declare const getGeneralLedgerExport: <ThrowOnError extends boolean = false>(options: Options<GetGeneralLedgerExportData, ThrowOnError>) => RequestResult<GetGeneralLedgerExportResponses, GetGeneralLedgerExportErrors, ThrowOnError, "fields">;
42401
+ declare const getGeneralLedgerExport: <ThrowOnError extends boolean = false>(options: Options<GetGeneralLedgerExportData, ThrowOnError>) => RequestResult<GetGeneralLedgerExportResponses, GetGeneralLedgerExportErrors, ThrowOnError>;
42384
42402
  /**
42385
42403
  * Create a company customer
42386
42404
  *
@@ -42389,7 +42407,7 @@ declare const getGeneralLedgerExport: <ThrowOnError extends boolean = false>(opt
42389
42407
  * > ℹ️
42390
42408
  * > This endpoint requires the following scope: `customers:all`
42391
42409
  */
42392
- declare const postCompanyCustomer: <ThrowOnError extends boolean = false>(options: Options<PostCompanyCustomerData, ThrowOnError>) => RequestResult<PostCompanyCustomerResponses, PostCompanyCustomerErrors, ThrowOnError, "fields">;
42410
+ declare const postCompanyCustomer: <ThrowOnError extends boolean = false>(options: Options<PostCompanyCustomerData, ThrowOnError>) => RequestResult<PostCompanyCustomerResponses, PostCompanyCustomerErrors, ThrowOnError>;
42393
42411
  /**
42394
42412
  * Retrieve a company customer
42395
42413
  *
@@ -42398,7 +42416,7 @@ declare const postCompanyCustomer: <ThrowOnError extends boolean = false>(option
42398
42416
  * > ℹ️
42399
42417
  * > This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`
42400
42418
  */
42401
- declare const getCompanyCustomer: <ThrowOnError extends boolean = false>(options: Options<GetCompanyCustomerData, ThrowOnError>) => RequestResult<GetCompanyCustomerResponses, GetCompanyCustomerErrors, ThrowOnError, "fields">;
42419
+ declare const getCompanyCustomer: <ThrowOnError extends boolean = false>(options: Options<GetCompanyCustomerData, ThrowOnError>) => RequestResult<GetCompanyCustomerResponses, GetCompanyCustomerErrors, ThrowOnError>;
42402
42420
  /**
42403
42421
  * Update a company customer
42404
42422
  *
@@ -42407,7 +42425,7 @@ declare const getCompanyCustomer: <ThrowOnError extends boolean = false>(options
42407
42425
  * > ℹ️
42408
42426
  * > This endpoint requires the following scope: `customers:all`
42409
42427
  */
42410
- declare const putCompanyCustomer: <ThrowOnError extends boolean = false>(options: Options<PutCompanyCustomerData, ThrowOnError>) => RequestResult<PutCompanyCustomerResponses, PutCompanyCustomerErrors, ThrowOnError, "fields">;
42428
+ declare const putCompanyCustomer: <ThrowOnError extends boolean = false>(options: Options<PutCompanyCustomerData, ThrowOnError>) => RequestResult<PutCompanyCustomerResponses, PutCompanyCustomerErrors, ThrowOnError>;
42411
42429
  /**
42412
42430
  * Create an individual customer
42413
42431
  *
@@ -42416,7 +42434,7 @@ declare const putCompanyCustomer: <ThrowOnError extends boolean = false>(options
42416
42434
  * > ℹ️
42417
42435
  * > This endpoint requires the following scope: `customers:all`
42418
42436
  */
42419
- declare const postIndividualCustomer: <ThrowOnError extends boolean = false>(options: Options<PostIndividualCustomerData, ThrowOnError>) => RequestResult<PostIndividualCustomerResponses, PostIndividualCustomerErrors, ThrowOnError, "fields">;
42437
+ declare const postIndividualCustomer: <ThrowOnError extends boolean = false>(options: Options<PostIndividualCustomerData, ThrowOnError>) => RequestResult<PostIndividualCustomerResponses, PostIndividualCustomerErrors, ThrowOnError>;
42420
42438
  /**
42421
42439
  * Retrieve an individual customer
42422
42440
  *
@@ -42425,7 +42443,7 @@ declare const postIndividualCustomer: <ThrowOnError extends boolean = false>(opt
42425
42443
  * > ℹ️
42426
42444
  * > This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`
42427
42445
  */
42428
- declare const getIndividualCustomer: <ThrowOnError extends boolean = false>(options: Options<GetIndividualCustomerData, ThrowOnError>) => RequestResult<GetIndividualCustomerResponses, GetIndividualCustomerErrors, ThrowOnError, "fields">;
42446
+ declare const getIndividualCustomer: <ThrowOnError extends boolean = false>(options: Options<GetIndividualCustomerData, ThrowOnError>) => RequestResult<GetIndividualCustomerResponses, GetIndividualCustomerErrors, ThrowOnError>;
42429
42447
  /**
42430
42448
  * Update an individual customer
42431
42449
  *
@@ -42434,7 +42452,7 @@ declare const getIndividualCustomer: <ThrowOnError extends boolean = false>(opti
42434
42452
  * > ℹ️
42435
42453
  * > This endpoint requires the following scope: `customers:all`
42436
42454
  */
42437
- declare const putIndividualCustomer: <ThrowOnError extends boolean = false>(options: Options<PutIndividualCustomerData, ThrowOnError>) => RequestResult<PutIndividualCustomerResponses, PutIndividualCustomerErrors, ThrowOnError, "fields">;
42455
+ declare const putIndividualCustomer: <ThrowOnError extends boolean = false>(options: Options<PutIndividualCustomerData, ThrowOnError>) => RequestResult<PutIndividualCustomerResponses, PutIndividualCustomerErrors, ThrowOnError>;
42438
42456
  /**
42439
42457
  * List customers (company and individual)
42440
42458
  *
@@ -42443,7 +42461,7 @@ declare const putIndividualCustomer: <ThrowOnError extends boolean = false>(opti
42443
42461
  * > ℹ️
42444
42462
  * > This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`
42445
42463
  */
42446
- declare const getCustomers: <ThrowOnError extends boolean = false>(options?: Options<GetCustomersData, ThrowOnError>) => RequestResult<GetCustomersResponses, GetCustomersErrors, ThrowOnError, "fields">;
42464
+ declare const getCustomers: <ThrowOnError extends boolean = false>(options?: Options<GetCustomersData, ThrowOnError>) => RequestResult<GetCustomersResponses, GetCustomersErrors, ThrowOnError>;
42447
42465
  /**
42448
42466
  * Retrieve a customer
42449
42467
  *
@@ -42452,7 +42470,7 @@ declare const getCustomers: <ThrowOnError extends boolean = false>(options?: Opt
42452
42470
  * > ℹ️
42453
42471
  * > This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`
42454
42472
  */
42455
- declare const getCustomer: <ThrowOnError extends boolean = false>(options: Options<GetCustomerData, ThrowOnError>) => RequestResult<GetCustomerResponses, GetCustomerErrors, ThrowOnError, "fields">;
42473
+ declare const getCustomer: <ThrowOnError extends boolean = false>(options: Options<GetCustomerData, ThrowOnError>) => RequestResult<GetCustomerResponses, GetCustomerErrors, ThrowOnError>;
42456
42474
  /**
42457
42475
  * List categories of a customer
42458
42476
  *
@@ -42461,7 +42479,7 @@ declare const getCustomer: <ThrowOnError extends boolean = false>(options: Optio
42461
42479
  * > ℹ️
42462
42480
  * > This endpoint requires one of the following scopes: `customers:readonly`, `customers:all`
42463
42481
  */
42464
- declare const getCustomerCategories: <ThrowOnError extends boolean = false>(options: Options<GetCustomerCategoriesData, ThrowOnError>) => RequestResult<GetCustomerCategoriesResponses, GetCustomerCategoriesErrors, ThrowOnError, "fields">;
42482
+ declare const getCustomerCategories: <ThrowOnError extends boolean = false>(options: Options<GetCustomerCategoriesData, ThrowOnError>) => RequestResult<GetCustomerCategoriesResponses, GetCustomerCategoriesErrors, ThrowOnError>;
42465
42483
  /**
42466
42484
  * Categorize a customer
42467
42485
  *
@@ -42478,7 +42496,7 @@ declare const getCustomerCategories: <ThrowOnError extends boolean = false>(opti
42478
42496
  * > ℹ️
42479
42497
  * > This endpoint requires the following scope: `customers:all`
42480
42498
  */
42481
- declare const putCustomerCategories: <ThrowOnError extends boolean = false>(options: Options<PutCustomerCategoriesData, ThrowOnError>) => RequestResult<PutCustomerCategoriesResponses, PutCustomerCategoriesErrors, ThrowOnError, "fields">;
42499
+ declare const putCustomerCategories: <ThrowOnError extends boolean = false>(options: Options<PutCustomerCategoriesData, ThrowOnError>) => RequestResult<PutCustomerCategoriesResponses, PutCustomerCategoriesErrors, ThrowOnError>;
42482
42500
  /**
42483
42501
  * List contacts of a customer
42484
42502
  *
@@ -42487,7 +42505,7 @@ declare const putCustomerCategories: <ThrowOnError extends boolean = false>(opti
42487
42505
  * > ℹ️
42488
42506
  * > This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`
42489
42507
  */
42490
- declare const getCustomerContacts: <ThrowOnError extends boolean = false>(options: Options<GetCustomerContactsData, ThrowOnError>) => RequestResult<GetCustomerContactsResponses, GetCustomerContactsErrors, ThrowOnError, "fields">;
42508
+ declare const getCustomerContacts: <ThrowOnError extends boolean = false>(options: Options<GetCustomerContactsData, ThrowOnError>) => RequestResult<GetCustomerContactsResponses, GetCustomerContactsErrors, ThrowOnError>;
42491
42509
  /**
42492
42510
  * List suppliers
42493
42511
  *
@@ -42496,7 +42514,7 @@ declare const getCustomerContacts: <ThrowOnError extends boolean = false>(option
42496
42514
  * > ℹ️
42497
42515
  * > This endpoint requires one of the following scopes: `suppliers:all`, `suppliers:readonly`
42498
42516
  */
42499
- declare const getSuppliers: <ThrowOnError extends boolean = false>(options?: Options<GetSuppliersData, ThrowOnError>) => RequestResult<GetSuppliersResponses, GetSuppliersErrors, ThrowOnError, "fields">;
42517
+ declare const getSuppliers: <ThrowOnError extends boolean = false>(options?: Options<GetSuppliersData, ThrowOnError>) => RequestResult<GetSuppliersResponses, GetSuppliersErrors, ThrowOnError>;
42500
42518
  /**
42501
42519
  * Create a Supplier
42502
42520
  *
@@ -42505,7 +42523,7 @@ declare const getSuppliers: <ThrowOnError extends boolean = false>(options?: Opt
42505
42523
  * > ℹ️
42506
42524
  * > This endpoint requires the following scope: `suppliers:all`
42507
42525
  */
42508
- declare const postSupplier: <ThrowOnError extends boolean = false>(options: Options<PostSupplierData, ThrowOnError>) => RequestResult<PostSupplierResponses, PostSupplierErrors, ThrowOnError, "fields">;
42526
+ declare const postSupplier: <ThrowOnError extends boolean = false>(options: Options<PostSupplierData, ThrowOnError>) => RequestResult<PostSupplierResponses, PostSupplierErrors, ThrowOnError>;
42509
42527
  /**
42510
42528
  * Retrieve a supplier
42511
42529
  *
@@ -42514,7 +42532,7 @@ declare const postSupplier: <ThrowOnError extends boolean = false>(options: Opti
42514
42532
  * > ℹ️
42515
42533
  * > This endpoint requires one of the following scopes: `suppliers:all`, `suppliers:readonly`
42516
42534
  */
42517
- declare const getSupplier: <ThrowOnError extends boolean = false>(options: Options<GetSupplierData, ThrowOnError>) => RequestResult<GetSupplierResponses, GetSupplierErrors, ThrowOnError, "fields">;
42535
+ declare const getSupplier: <ThrowOnError extends boolean = false>(options: Options<GetSupplierData, ThrowOnError>) => RequestResult<GetSupplierResponses, GetSupplierErrors, ThrowOnError>;
42518
42536
  /**
42519
42537
  * Update a supplier
42520
42538
  *
@@ -42523,7 +42541,7 @@ declare const getSupplier: <ThrowOnError extends boolean = false>(options: Optio
42523
42541
  * > ℹ️
42524
42542
  * > This endpoint requires the following scope: `suppliers:all`
42525
42543
  */
42526
- declare const putSupplier: <ThrowOnError extends boolean = false>(options: Options<PutSupplierData, ThrowOnError>) => RequestResult<PutSupplierResponses, PutSupplierErrors, ThrowOnError, "fields">;
42544
+ declare const putSupplier: <ThrowOnError extends boolean = false>(options: Options<PutSupplierData, ThrowOnError>) => RequestResult<PutSupplierResponses, PutSupplierErrors, ThrowOnError>;
42527
42545
  /**
42528
42546
  * List categories of a supplier
42529
42547
  *
@@ -42532,7 +42550,7 @@ declare const putSupplier: <ThrowOnError extends boolean = false>(options: Optio
42532
42550
  * > ℹ️
42533
42551
  * > This endpoint requires one of the following scopes: `suppliers:readonly`, `suppliers:all`
42534
42552
  */
42535
- declare const getSupplierCategories: <ThrowOnError extends boolean = false>(options: Options<GetSupplierCategoriesData, ThrowOnError>) => RequestResult<GetSupplierCategoriesResponses, GetSupplierCategoriesErrors, ThrowOnError, "fields">;
42553
+ declare const getSupplierCategories: <ThrowOnError extends boolean = false>(options: Options<GetSupplierCategoriesData, ThrowOnError>) => RequestResult<GetSupplierCategoriesResponses, GetSupplierCategoriesErrors, ThrowOnError>;
42536
42554
  /**
42537
42555
  * Categorize a supplier
42538
42556
  *
@@ -42549,13 +42567,13 @@ declare const getSupplierCategories: <ThrowOnError extends boolean = false>(opti
42549
42567
  * > ℹ️
42550
42568
  * > This endpoint requires the following scope: `suppliers:all`
42551
42569
  */
42552
- declare const putSupplierCategories: <ThrowOnError extends boolean = false>(options: Options<PutSupplierCategoriesData, ThrowOnError>) => RequestResult<PutSupplierCategoriesResponses, PutSupplierCategoriesErrors, ThrowOnError, "fields">;
42570
+ declare const putSupplierCategories: <ThrowOnError extends boolean = false>(options: Options<PutSupplierCategoriesData, ThrowOnError>) => RequestResult<PutSupplierCategoriesResponses, PutSupplierCategoriesErrors, ThrowOnError>;
42553
42571
  /**
42554
42572
  * User Profile
42555
42573
  *
42556
42574
  * This endpoint returns information about the company and the user associated to the token.
42557
42575
  */
42558
- declare const getMe: <ThrowOnError extends boolean = false>(options?: Options<GetMeData, ThrowOnError>) => RequestResult<GetMeResponses, GetMeErrors, ThrowOnError, "fields">;
42576
+ declare const getMe: <ThrowOnError extends boolean = false>(options?: Options<GetMeData, ThrowOnError>) => RequestResult<GetMeResponses, GetMeErrors, ThrowOnError>;
42559
42577
  /**
42560
42578
  * List invoice line sections for a customer invoice
42561
42579
  *
@@ -42564,7 +42582,7 @@ declare const getMe: <ThrowOnError extends boolean = false>(options?: Options<Ge
42564
42582
  * > ℹ️
42565
42583
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42566
42584
  */
42567
- declare const getCustomerInvoiceInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLineSectionsErrors, ThrowOnError, "fields">;
42585
+ declare const getCustomerInvoiceInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLineSectionsErrors, ThrowOnError>;
42568
42586
  /**
42569
42587
  * List invoice lines for a customer invoice
42570
42588
  *
@@ -42573,7 +42591,7 @@ declare const getCustomerInvoiceInvoiceLineSections: <ThrowOnError extends boole
42573
42591
  * > ℹ️
42574
42592
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42575
42593
  */
42576
- declare const getCustomerInvoiceInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceInvoiceLinesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceInvoiceLinesErrors, ThrowOnError, "fields">;
42594
+ declare const getCustomerInvoiceInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceInvoiceLinesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceInvoiceLinesErrors, ThrowOnError>;
42577
42595
  /**
42578
42596
  * List payments for a customer invoice
42579
42597
  *
@@ -42582,7 +42600,7 @@ declare const getCustomerInvoiceInvoiceLines: <ThrowOnError extends boolean = fa
42582
42600
  * > ℹ️
42583
42601
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42584
42602
  */
42585
- declare const getCustomerInvoicePayments: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoicePaymentsData, ThrowOnError>) => RequestResult<GetCustomerInvoicePaymentsResponses, GetCustomerInvoicePaymentsErrors, ThrowOnError, "fields">;
42603
+ declare const getCustomerInvoicePayments: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoicePaymentsData, ThrowOnError>) => RequestResult<GetCustomerInvoicePaymentsResponses, GetCustomerInvoicePaymentsErrors, ThrowOnError>;
42586
42604
  /**
42587
42605
  * List matched transactions for a customer invoice
42588
42606
  *
@@ -42591,7 +42609,7 @@ declare const getCustomerInvoicePayments: <ThrowOnError extends boolean = false>
42591
42609
  * > ℹ️
42592
42610
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42593
42611
  */
42594
- declare const getCustomerInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoiceMatchedTransactionsErrors, ThrowOnError, "fields">;
42612
+ declare const getCustomerInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoiceMatchedTransactionsErrors, ThrowOnError>;
42595
42613
  /**
42596
42614
  * Match a transaction to a customer invoice
42597
42615
  *
@@ -42604,7 +42622,7 @@ declare const getCustomerInvoiceMatchedTransactions: <ThrowOnError extends boole
42604
42622
  * > ℹ️
42605
42623
  * > This endpoint requires the following scope: `customer_invoices:all`
42606
42624
  */
42607
- declare const postCustomerInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<PostCustomerInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoiceMatchedTransactionsErrors, ThrowOnError, "fields">;
42625
+ declare const postCustomerInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<PostCustomerInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoiceMatchedTransactionsErrors, ThrowOnError>;
42608
42626
  /**
42609
42627
  * Unmatch a transaction to a customer invoice
42610
42628
  *
@@ -42614,7 +42632,7 @@ declare const postCustomerInvoiceMatchedTransactions: <ThrowOnError extends bool
42614
42632
  * > ℹ️
42615
42633
  * > This endpoint requires the following scope: `customer_invoices:all`
42616
42634
  */
42617
- declare const deleteCustomerInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<DeleteCustomerInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoiceMatchedTransactionsErrors, ThrowOnError, "fields">;
42635
+ declare const deleteCustomerInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<DeleteCustomerInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoiceMatchedTransactionsErrors, ThrowOnError>;
42618
42636
  /**
42619
42637
  * List appendices of a customer invoice
42620
42638
  *
@@ -42623,7 +42641,7 @@ declare const deleteCustomerInvoiceMatchedTransactions: <ThrowOnError extends bo
42623
42641
  * > ℹ️
42624
42642
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42625
42643
  */
42626
- declare const getCustomerInvoiceAppendices: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceAppendicesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceAppendicesErrors, ThrowOnError, "fields">;
42644
+ declare const getCustomerInvoiceAppendices: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceAppendicesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceAppendicesErrors, ThrowOnError>;
42627
42645
  /**
42628
42646
  * Upload an appendix for a customer invoice
42629
42647
  *
@@ -42635,7 +42653,7 @@ declare const getCustomerInvoiceAppendices: <ThrowOnError extends boolean = fals
42635
42653
  * > ℹ️
42636
42654
  * > This endpoint requires the following scope: `customer_invoices:all`
42637
42655
  */
42638
- declare const postCustomerInvoiceAppendices: <ThrowOnError extends boolean = false>(options: Options<PostCustomerInvoiceAppendicesData, ThrowOnError>) => RequestResult<PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceAppendicesErrors, ThrowOnError, "fields">;
42656
+ declare const postCustomerInvoiceAppendices: <ThrowOnError extends boolean = false>(options: Options<PostCustomerInvoiceAppendicesData, ThrowOnError>) => RequestResult<PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceAppendicesErrors, ThrowOnError>;
42639
42657
  /**
42640
42658
  * Delete draft invoice
42641
42659
  *
@@ -42644,7 +42662,7 @@ declare const postCustomerInvoiceAppendices: <ThrowOnError extends boolean = fal
42644
42662
  * > ℹ️
42645
42663
  * > This endpoint requires the following scope: `customer_invoices:all`
42646
42664
  */
42647
- declare const deleteCustomerInvoices: <ThrowOnError extends boolean = false>(options: Options<DeleteCustomerInvoicesData, ThrowOnError>) => RequestResult<DeleteCustomerInvoicesResponses, DeleteCustomerInvoicesErrors, ThrowOnError, "fields">;
42665
+ declare const deleteCustomerInvoices: <ThrowOnError extends boolean = false>(options: Options<DeleteCustomerInvoicesData, ThrowOnError>) => RequestResult<DeleteCustomerInvoicesResponses, DeleteCustomerInvoicesErrors, ThrowOnError>;
42648
42666
  /**
42649
42667
  * Retrieve a customer invoice
42650
42668
  *
@@ -42653,7 +42671,7 @@ declare const deleteCustomerInvoices: <ThrowOnError extends boolean = false>(opt
42653
42671
  * > ℹ️
42654
42672
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42655
42673
  */
42656
- declare const getCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceData, ThrowOnError>) => RequestResult<GetCustomerInvoiceResponses, GetCustomerInvoiceErrors, ThrowOnError, "fields">;
42674
+ declare const getCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceData, ThrowOnError>) => RequestResult<GetCustomerInvoiceResponses, GetCustomerInvoiceErrors, ThrowOnError>;
42657
42675
  /**
42658
42676
  * Update a customer invoice
42659
42677
  *
@@ -42662,7 +42680,7 @@ declare const getCustomerInvoice: <ThrowOnError extends boolean = false>(options
42662
42680
  * > ℹ️
42663
42681
  * > This endpoint requires the following scope: `customer_invoices:all`
42664
42682
  */
42665
- declare const updateCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateCustomerInvoiceData, ThrowOnError>) => RequestResult<UpdateCustomerInvoiceResponses, UpdateCustomerInvoiceErrors, ThrowOnError, "fields">;
42683
+ declare const updateCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateCustomerInvoiceData, ThrowOnError>) => RequestResult<UpdateCustomerInvoiceResponses, UpdateCustomerInvoiceErrors, ThrowOnError>;
42666
42684
  /**
42667
42685
  * Mark a customer invoice as paid
42668
42686
  *
@@ -42673,7 +42691,7 @@ declare const updateCustomerInvoice: <ThrowOnError extends boolean = false>(opti
42673
42691
  * > ℹ️
42674
42692
  * > This endpoint requires the following scope: `customer_invoices:all`
42675
42693
  */
42676
- declare const markAsPaidCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<MarkAsPaidCustomerInvoiceData, ThrowOnError>) => RequestResult<MarkAsPaidCustomerInvoiceResponses, MarkAsPaidCustomerInvoiceErrors, ThrowOnError, "fields">;
42694
+ declare const markAsPaidCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<MarkAsPaidCustomerInvoiceData, ThrowOnError>) => RequestResult<MarkAsPaidCustomerInvoiceResponses, MarkAsPaidCustomerInvoiceErrors, ThrowOnError>;
42677
42695
  /**
42678
42696
  * Send a customer invoice by email
42679
42697
  *
@@ -42689,7 +42707,7 @@ declare const markAsPaidCustomerInvoice: <ThrowOnError extends boolean = false>(
42689
42707
  * > ℹ️
42690
42708
  * > This endpoint requires the following scope: `customer_invoices:all`
42691
42709
  */
42692
- declare const sendByEmailCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<SendByEmailCustomerInvoiceData, ThrowOnError>) => RequestResult<SendByEmailCustomerInvoiceResponses, SendByEmailCustomerInvoiceErrors, ThrowOnError, "fields">;
42710
+ declare const sendByEmailCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<SendByEmailCustomerInvoiceData, ThrowOnError>) => RequestResult<SendByEmailCustomerInvoiceResponses, SendByEmailCustomerInvoiceErrors, ThrowOnError>;
42693
42711
  /**
42694
42712
  * List categories of a customer invoice
42695
42713
  *
@@ -42698,7 +42716,7 @@ declare const sendByEmailCustomerInvoice: <ThrowOnError extends boolean = false>
42698
42716
  * > ℹ️
42699
42717
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
42700
42718
  */
42701
- declare const getCustomerInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceCategoriesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCategoriesErrors, ThrowOnError, "fields">;
42719
+ declare const getCustomerInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceCategoriesData, ThrowOnError>) => RequestResult<GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCategoriesErrors, ThrowOnError>;
42702
42720
  /**
42703
42721
  * Categorize a customer invoice
42704
42722
  *
@@ -42716,7 +42734,7 @@ declare const getCustomerInvoiceCategories: <ThrowOnError extends boolean = fals
42716
42734
  * > ℹ️
42717
42735
  * > This endpoint requires the following scope: `customer_invoices:all`
42718
42736
  */
42719
- declare const putCustomerInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<PutCustomerInvoiceCategoriesData, ThrowOnError>) => RequestResult<PutCustomerInvoiceCategoriesResponses, PutCustomerInvoiceCategoriesErrors, ThrowOnError, "fields">;
42737
+ declare const putCustomerInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<PutCustomerInvoiceCategoriesData, ThrowOnError>) => RequestResult<PutCustomerInvoiceCategoriesResponses, PutCustomerInvoiceCategoriesErrors, ThrowOnError>;
42720
42738
  /**
42721
42739
  * Update an Imported customer invoice
42722
42740
  *
@@ -42727,7 +42745,7 @@ declare const putCustomerInvoiceCategories: <ThrowOnError extends boolean = fals
42727
42745
  * > ℹ️
42728
42746
  * > This endpoint requires the following scope: `customer_invoices:all`
42729
42747
  */
42730
- declare const updateImportedCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateImportedCustomerInvoiceData, ThrowOnError>) => RequestResult<UpdateImportedCustomerInvoiceResponses, UpdateImportedCustomerInvoiceErrors, ThrowOnError, "fields">;
42748
+ declare const updateImportedCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<UpdateImportedCustomerInvoiceData, ThrowOnError>) => RequestResult<UpdateImportedCustomerInvoiceResponses, UpdateImportedCustomerInvoiceErrors, ThrowOnError>;
42731
42749
  /**
42732
42750
  * Turn the draft invoice into a finalized invoice.
42733
42751
  *
@@ -42738,7 +42756,7 @@ declare const updateImportedCustomerInvoice: <ThrowOnError extends boolean = fal
42738
42756
  * > ℹ️
42739
42757
  * > This endpoint requires the following scope: `customer_invoices:all`
42740
42758
  */
42741
- declare const finalizeCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<FinalizeCustomerInvoiceData, ThrowOnError>) => RequestResult<FinalizeCustomerInvoiceResponses, FinalizeCustomerInvoiceErrors, ThrowOnError, "fields">;
42759
+ declare const finalizeCustomerInvoice: <ThrowOnError extends boolean = false>(options: Options<FinalizeCustomerInvoiceData, ThrowOnError>) => RequestResult<FinalizeCustomerInvoiceResponses, FinalizeCustomerInvoiceErrors, ThrowOnError>;
42742
42760
  /**
42743
42761
  * Link a credit note to a customer invoice
42744
42762
  *
@@ -42747,7 +42765,7 @@ declare const finalizeCustomerInvoice: <ThrowOnError extends boolean = false>(op
42747
42765
  * > ℹ️
42748
42766
  * > This endpoint requires the following scope: `customer_invoices:all`
42749
42767
  */
42750
- declare const linkCreditNote: <ThrowOnError extends boolean = false>(options: Options<LinkCreditNoteData, ThrowOnError>) => RequestResult<LinkCreditNoteResponses, LinkCreditNoteErrors, ThrowOnError, "fields">;
42768
+ declare const linkCreditNote: <ThrowOnError extends boolean = false>(options: Options<LinkCreditNoteData, ThrowOnError>) => RequestResult<LinkCreditNoteResponses, LinkCreditNoteErrors, ThrowOnError>;
42751
42769
  /**
42752
42770
  * List invoice lines for a supplier invoice
42753
42771
  *
@@ -42756,7 +42774,7 @@ declare const linkCreditNote: <ThrowOnError extends boolean = false>(options: Op
42756
42774
  * > ℹ️
42757
42775
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
42758
42776
  */
42759
- declare const getSupplierInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceLinesData, ThrowOnError>) => RequestResult<GetSupplierInvoiceLinesResponses, GetSupplierInvoiceLinesErrors, ThrowOnError, "fields">;
42777
+ declare const getSupplierInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceLinesData, ThrowOnError>) => RequestResult<GetSupplierInvoiceLinesResponses, GetSupplierInvoiceLinesErrors, ThrowOnError>;
42760
42778
  /**
42761
42779
  * List supplier invoices
42762
42780
  *
@@ -42765,7 +42783,7 @@ declare const getSupplierInvoiceLines: <ThrowOnError extends boolean = false>(op
42765
42783
  * > ℹ️
42766
42784
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
42767
42785
  */
42768
- declare const getSupplierInvoices: <ThrowOnError extends boolean = false>(options?: Options<GetSupplierInvoicesData, ThrowOnError>) => RequestResult<GetSupplierInvoicesResponses, GetSupplierInvoicesErrors, ThrowOnError, "fields">;
42786
+ declare const getSupplierInvoices: <ThrowOnError extends boolean = false>(options?: Options<GetSupplierInvoicesData, ThrowOnError>) => RequestResult<GetSupplierInvoicesResponses, GetSupplierInvoicesErrors, ThrowOnError>;
42769
42787
  /**
42770
42788
  * Retrieve a supplier invoice
42771
42789
  *
@@ -42774,7 +42792,7 @@ declare const getSupplierInvoices: <ThrowOnError extends boolean = false>(option
42774
42792
  * > ℹ️
42775
42793
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
42776
42794
  */
42777
- declare const getSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceData, ThrowOnError>) => RequestResult<GetSupplierInvoiceResponses, GetSupplierInvoiceErrors, ThrowOnError, "fields">;
42795
+ declare const getSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceData, ThrowOnError>) => RequestResult<GetSupplierInvoiceResponses, GetSupplierInvoiceErrors, ThrowOnError>;
42778
42796
  /**
42779
42797
  * Update a supplier invoice
42780
42798
  *
@@ -42783,7 +42801,7 @@ declare const getSupplierInvoice: <ThrowOnError extends boolean = false>(options
42783
42801
  * > ℹ️
42784
42802
  * > This endpoint requires the following scope: `supplier_invoices:all`
42785
42803
  */
42786
- declare const putSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceData, ThrowOnError>) => RequestResult<PutSupplierInvoiceResponses, PutSupplierInvoiceErrors, ThrowOnError, "fields">;
42804
+ declare const putSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceData, ThrowOnError>) => RequestResult<PutSupplierInvoiceResponses, PutSupplierInvoiceErrors, ThrowOnError>;
42787
42805
  /**
42788
42806
  * List categories of a supplier invoice
42789
42807
  *
@@ -42792,7 +42810,7 @@ declare const putSupplierInvoice: <ThrowOnError extends boolean = false>(options
42792
42810
  * > ℹ️
42793
42811
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
42794
42812
  */
42795
- declare const getSupplierInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceCategoriesData, ThrowOnError>) => RequestResult<GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceCategoriesErrors, ThrowOnError, "fields">;
42813
+ declare const getSupplierInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceCategoriesData, ThrowOnError>) => RequestResult<GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceCategoriesErrors, ThrowOnError>;
42796
42814
  /**
42797
42815
  * Categorize a supplier invoice
42798
42816
  *
@@ -42809,7 +42827,7 @@ declare const getSupplierInvoiceCategories: <ThrowOnError extends boolean = fals
42809
42827
  * > ℹ️
42810
42828
  * > This endpoint requires the following scope: `supplier_invoices:all`
42811
42829
  */
42812
- declare const putSupplierInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceCategoriesData, ThrowOnError>) => RequestResult<PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceCategoriesErrors, ThrowOnError, "fields">;
42830
+ declare const putSupplierInvoiceCategories: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceCategoriesData, ThrowOnError>) => RequestResult<PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceCategoriesErrors, ThrowOnError>;
42813
42831
  /**
42814
42832
  * List payments for a supplier invoice
42815
42833
  *
@@ -42818,7 +42836,7 @@ declare const putSupplierInvoiceCategories: <ThrowOnError extends boolean = fals
42818
42836
  * > ℹ️
42819
42837
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
42820
42838
  */
42821
- declare const getSupplierInvoicePayments: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoicePaymentsData, ThrowOnError>) => RequestResult<GetSupplierInvoicePaymentsResponses, GetSupplierInvoicePaymentsErrors, ThrowOnError, "fields">;
42839
+ declare const getSupplierInvoicePayments: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoicePaymentsData, ThrowOnError>) => RequestResult<GetSupplierInvoicePaymentsResponses, GetSupplierInvoicePaymentsErrors, ThrowOnError>;
42822
42840
  /**
42823
42841
  * Update a supplier invoice payment status
42824
42842
  *
@@ -42829,7 +42847,7 @@ declare const getSupplierInvoicePayments: <ThrowOnError extends boolean = false>
42829
42847
  * > ℹ️
42830
42848
  * > This endpoint requires the following scope: `supplier_invoices:all`
42831
42849
  */
42832
- declare const updateSupplierInvoicePaymentStatus: <ThrowOnError extends boolean = false>(options: Options<UpdateSupplierInvoicePaymentStatusData, ThrowOnError>) => RequestResult<UpdateSupplierInvoicePaymentStatusResponses, UpdateSupplierInvoicePaymentStatusErrors, ThrowOnError, "fields">;
42850
+ declare const updateSupplierInvoicePaymentStatus: <ThrowOnError extends boolean = false>(options: Options<UpdateSupplierInvoicePaymentStatusData, ThrowOnError>) => RequestResult<UpdateSupplierInvoicePaymentStatusResponses, UpdateSupplierInvoicePaymentStatusErrors, ThrowOnError>;
42833
42851
  /**
42834
42852
  * List matched transactions for a supplier invoice
42835
42853
  *
@@ -42838,7 +42856,7 @@ declare const updateSupplierInvoicePaymentStatus: <ThrowOnError extends boolean
42838
42856
  * > ℹ️
42839
42857
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
42840
42858
  */
42841
- declare const getSupplierInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoiceMatchedTransactionsErrors, ThrowOnError, "fields">;
42859
+ declare const getSupplierInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<GetSupplierInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoiceMatchedTransactionsErrors, ThrowOnError>;
42842
42860
  /**
42843
42861
  * Match a transaction to a supplier invoice
42844
42862
  *
@@ -42851,7 +42869,7 @@ declare const getSupplierInvoiceMatchedTransactions: <ThrowOnError extends boole
42851
42869
  * > ℹ️
42852
42870
  * > This endpoint requires the following scope: `supplier_invoices:all`
42853
42871
  */
42854
- declare const postSupplierInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<PostSupplierInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierInvoiceMatchedTransactionsErrors, ThrowOnError, "fields">;
42872
+ declare const postSupplierInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<PostSupplierInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierInvoiceMatchedTransactionsErrors, ThrowOnError>;
42855
42873
  /**
42856
42874
  * Unmatch a transaction to a supplier invoice
42857
42875
  *
@@ -42862,7 +42880,7 @@ declare const postSupplierInvoiceMatchedTransactions: <ThrowOnError extends bool
42862
42880
  * > ℹ️
42863
42881
  * > This endpoint requires the following scope: `supplier_invoices:all`
42864
42882
  */
42865
- declare const deleteSupplierInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<DeleteSupplierInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteSupplierInvoiceMatchedTransactionsErrors, ThrowOnError, "fields">;
42883
+ declare const deleteSupplierInvoiceMatchedTransactions: <ThrowOnError extends boolean = false>(options: Options<DeleteSupplierInvoiceMatchedTransactionsData, ThrowOnError>) => RequestResult<DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteSupplierInvoiceMatchedTransactionsErrors, ThrowOnError>;
42866
42884
  /**
42867
42885
  * Link a purchase request to a supplier invoice
42868
42886
  *
@@ -42875,7 +42893,7 @@ declare const deleteSupplierInvoiceMatchedTransactions: <ThrowOnError extends bo
42875
42893
  * > ℹ️
42876
42894
  * > This endpoint requires the following scope: `supplier_invoices:all`
42877
42895
  */
42878
- declare const postSupplierInvoiceLinkedPurchaseRequests: <ThrowOnError extends boolean = false>(options: Options<PostSupplierInvoiceLinkedPurchaseRequestsData, ThrowOnError>) => RequestResult<PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceLinkedPurchaseRequestsErrors, ThrowOnError, "fields">;
42896
+ declare const postSupplierInvoiceLinkedPurchaseRequests: <ThrowOnError extends boolean = false>(options: Options<PostSupplierInvoiceLinkedPurchaseRequestsData, ThrowOnError>) => RequestResult<PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceLinkedPurchaseRequestsErrors, ThrowOnError>;
42879
42897
  /**
42880
42898
  * Import a supplier invoice with a file attached
42881
42899
  *
@@ -42886,7 +42904,7 @@ declare const postSupplierInvoiceLinkedPurchaseRequests: <ThrowOnError extends b
42886
42904
  * > ℹ️
42887
42905
  * > This endpoint requires the following scope: `supplier_invoices:all`
42888
42906
  */
42889
- declare const importSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ImportSupplierInvoiceData, ThrowOnError>) => RequestResult<ImportSupplierInvoiceResponses, ImportSupplierInvoiceErrors, ThrowOnError, "fields">;
42907
+ declare const importSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ImportSupplierInvoiceData, ThrowOnError>) => RequestResult<ImportSupplierInvoiceResponses, ImportSupplierInvoiceErrors, ThrowOnError>;
42890
42908
  /**
42891
42909
  * Import a supplier e-invoice
42892
42910
  *
@@ -42899,7 +42917,7 @@ declare const importSupplierInvoice: <ThrowOnError extends boolean = false>(opti
42899
42917
  * > ℹ️
42900
42918
  * > This endpoint requires the following scope: `supplier_invoices:all`
42901
42919
  */
42902
- declare const createSupplierInvoiceEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateSupplierInvoiceEInvoiceImportData, ThrowOnError>) => RequestResult<CreateSupplierInvoiceEInvoiceImportResponses, CreateSupplierInvoiceEInvoiceImportErrors, ThrowOnError, "fields">;
42920
+ declare const createSupplierInvoiceEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateSupplierInvoiceEInvoiceImportData, ThrowOnError>) => RequestResult<CreateSupplierInvoiceEInvoiceImportResponses, CreateSupplierInvoiceEInvoiceImportErrors, ThrowOnError>;
42903
42921
  /**
42904
42922
  * Validate the accounting of a supplier invoice
42905
42923
  *
@@ -42908,7 +42926,7 @@ declare const createSupplierInvoiceEInvoiceImport: <ThrowOnError extends boolean
42908
42926
  * > ℹ️
42909
42927
  * > This endpoint requires the following scope: `supplier_invoices:all`
42910
42928
  */
42911
- declare const validateAccountingSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ValidateAccountingSupplierInvoiceData, ThrowOnError>) => RequestResult<ValidateAccountingSupplierInvoiceResponses, ValidateAccountingSupplierInvoiceErrors, ThrowOnError, "fields">;
42929
+ declare const validateAccountingSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ValidateAccountingSupplierInvoiceData, ThrowOnError>) => RequestResult<ValidateAccountingSupplierInvoiceResponses, ValidateAccountingSupplierInvoiceErrors, ThrowOnError>;
42912
42930
  /**
42913
42931
  * Update e-invoice status for a supplier invoice
42914
42932
  *
@@ -42919,7 +42937,7 @@ declare const validateAccountingSupplierInvoice: <ThrowOnError extends boolean =
42919
42937
  * > ℹ️
42920
42938
  * > This endpoint requires the following scope: `supplier_invoices:all`
42921
42939
  */
42922
- declare const putSupplierInvoiceEInvoiceStatus: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceEInvoiceStatusData, ThrowOnError>) => RequestResult<PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceEInvoiceStatusErrors, ThrowOnError, "fields">;
42940
+ declare const putSupplierInvoiceEInvoiceStatus: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceEInvoiceStatusData, ThrowOnError>) => RequestResult<PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceEInvoiceStatusErrors, ThrowOnError>;
42923
42941
  /**
42924
42942
  * List category groups
42925
42943
  *
@@ -42928,7 +42946,7 @@ declare const putSupplierInvoiceEInvoiceStatus: <ThrowOnError extends boolean =
42928
42946
  * > ℹ️
42929
42947
  * > This endpoint requires one of the following scopes: `categories:all`, `categories:readonly`
42930
42948
  */
42931
- declare const getCategoryGroups: <ThrowOnError extends boolean = false>(options?: Options<GetCategoryGroupsData, ThrowOnError>) => RequestResult<GetCategoryGroupsResponses, GetCategoryGroupsErrors, ThrowOnError, "fields">;
42949
+ declare const getCategoryGroups: <ThrowOnError extends boolean = false>(options?: Options<GetCategoryGroupsData, ThrowOnError>) => RequestResult<GetCategoryGroupsResponses, GetCategoryGroupsErrors, ThrowOnError>;
42932
42950
  /**
42933
42951
  * Retrieve a category group
42934
42952
  *
@@ -42937,7 +42955,7 @@ declare const getCategoryGroups: <ThrowOnError extends boolean = false>(options?
42937
42955
  * > ℹ️
42938
42956
  * > This endpoint requires one of the following scopes: `categories:all`, `categories:readonly`
42939
42957
  */
42940
- declare const getCategoryGroup: <ThrowOnError extends boolean = false>(options: Options<GetCategoryGroupData, ThrowOnError>) => RequestResult<GetCategoryGroupResponses, GetCategoryGroupErrors, ThrowOnError, "fields">;
42958
+ declare const getCategoryGroup: <ThrowOnError extends boolean = false>(options: Options<GetCategoryGroupData, ThrowOnError>) => RequestResult<GetCategoryGroupResponses, GetCategoryGroupErrors, ThrowOnError>;
42941
42959
  /**
42942
42960
  * List categories of a category group
42943
42961
  *
@@ -42946,7 +42964,7 @@ declare const getCategoryGroup: <ThrowOnError extends boolean = false>(options:
42946
42964
  * > ℹ️
42947
42965
  * > This endpoint requires one of the following scopes: `categories:all`, `categories:readonly`
42948
42966
  */
42949
- declare const getCategoryGroupCategories: <ThrowOnError extends boolean = false>(options: Options<GetCategoryGroupCategoriesData, ThrowOnError>) => RequestResult<GetCategoryGroupCategoriesResponses, GetCategoryGroupCategoriesErrors, ThrowOnError, "fields">;
42967
+ declare const getCategoryGroupCategories: <ThrowOnError extends boolean = false>(options: Options<GetCategoryGroupCategoriesData, ThrowOnError>) => RequestResult<GetCategoryGroupCategoriesResponses, GetCategoryGroupCategoriesErrors, ThrowOnError>;
42950
42968
  /**
42951
42969
  * List categories
42952
42970
  *
@@ -42955,7 +42973,7 @@ declare const getCategoryGroupCategories: <ThrowOnError extends boolean = false>
42955
42973
  * > ℹ️
42956
42974
  * > This endpoint requires one of the following scopes: `categories:all`, `categories:readonly`
42957
42975
  */
42958
- declare const getCategories: <ThrowOnError extends boolean = false>(options?: Options<GetCategoriesData, ThrowOnError>) => RequestResult<GetCategoriesResponses, GetCategoriesErrors, ThrowOnError, "fields">;
42976
+ declare const getCategories: <ThrowOnError extends boolean = false>(options?: Options<GetCategoriesData, ThrowOnError>) => RequestResult<GetCategoriesResponses, GetCategoriesErrors, ThrowOnError>;
42959
42977
  /**
42960
42978
  * Create a category
42961
42979
  *
@@ -42964,7 +42982,7 @@ declare const getCategories: <ThrowOnError extends boolean = false>(options?: Op
42964
42982
  * > ℹ️
42965
42983
  * > This endpoint requires the following scope: `categories:all`
42966
42984
  */
42967
- declare const postCategories: <ThrowOnError extends boolean = false>(options: Options<PostCategoriesData, ThrowOnError>) => RequestResult<PostCategoriesResponses, PostCategoriesErrors, ThrowOnError, "fields">;
42985
+ declare const postCategories: <ThrowOnError extends boolean = false>(options: Options<PostCategoriesData, ThrowOnError>) => RequestResult<PostCategoriesResponses, PostCategoriesErrors, ThrowOnError>;
42968
42986
  /**
42969
42987
  * Retrieve a category
42970
42988
  *
@@ -42973,7 +42991,7 @@ declare const postCategories: <ThrowOnError extends boolean = false>(options: Op
42973
42991
  * > ℹ️
42974
42992
  * > This endpoint requires one of the following scopes: `categories:all`, `categories:readonly`
42975
42993
  */
42976
- declare const getCategory: <ThrowOnError extends boolean = false>(options: Options<GetCategoryData, ThrowOnError>) => RequestResult<GetCategoryResponses, GetCategoryErrors, ThrowOnError, "fields">;
42994
+ declare const getCategory: <ThrowOnError extends boolean = false>(options: Options<GetCategoryData, ThrowOnError>) => RequestResult<GetCategoryResponses, GetCategoryErrors, ThrowOnError>;
42977
42995
  /**
42978
42996
  * Update a category
42979
42997
  *
@@ -42982,7 +43000,7 @@ declare const getCategory: <ThrowOnError extends boolean = false>(options: Optio
42982
43000
  * > ℹ️
42983
43001
  * > This endpoint requires the following scope: `categories:all`
42984
43002
  */
42985
- declare const updateCategory: <ThrowOnError extends boolean = false>(options: Options<UpdateCategoryData, ThrowOnError>) => RequestResult<UpdateCategoryResponses, UpdateCategoryErrors, ThrowOnError, "fields">;
43003
+ declare const updateCategory: <ThrowOnError extends boolean = false>(options: Options<UpdateCategoryData, ThrowOnError>) => RequestResult<UpdateCategoryResponses, UpdateCategoryErrors, ThrowOnError>;
42986
43004
  /**
42987
43005
  * Get the trial balance
42988
43006
  *
@@ -42996,7 +43014,7 @@ declare const updateCategory: <ThrowOnError extends boolean = false>(options: Op
42996
43014
  * > ℹ️
42997
43015
  * > This endpoint requires the following scope: `trial_balance:readonly`
42998
43016
  */
42999
- declare const getTrialBalance: <ThrowOnError extends boolean = false>(options: Options<GetTrialBalanceData, ThrowOnError>) => RequestResult<GetTrialBalanceResponses, GetTrialBalanceErrors, ThrowOnError, "fields">;
43017
+ declare const getTrialBalance: <ThrowOnError extends boolean = false>(options: Options<GetTrialBalanceData, ThrowOnError>) => RequestResult<GetTrialBalanceResponses, GetTrialBalanceErrors, ThrowOnError>;
43000
43018
  /**
43001
43019
  * List Company's Fiscal Years
43002
43020
  *
@@ -43014,7 +43032,7 @@ declare const getTrialBalance: <ThrowOnError extends boolean = false>(options: O
43014
43032
  * > ℹ️
43015
43033
  * > This endpoint requires the following scope: `fiscal_years:readonly`
43016
43034
  */
43017
- declare const companyFiscalYears: <ThrowOnError extends boolean = false>(options?: Options<CompanyFiscalYearsData, ThrowOnError>) => RequestResult<CompanyFiscalYearsResponses, CompanyFiscalYearsErrors, ThrowOnError, "fields">;
43035
+ declare const companyFiscalYears: <ThrowOnError extends boolean = false>(options?: Options<CompanyFiscalYearsData, ThrowOnError>) => RequestResult<CompanyFiscalYearsResponses, CompanyFiscalYearsErrors, ThrowOnError>;
43018
43036
  /**
43019
43037
  * Get customer invoices changes events
43020
43038
  *
@@ -43027,7 +43045,7 @@ declare const companyFiscalYears: <ThrowOnError extends boolean = false>(options
43027
43045
  * > ℹ️
43028
43046
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
43029
43047
  */
43030
- declare const getCustomerInvoicesChanges: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerInvoicesChangesData, ThrowOnError>) => RequestResult<GetCustomerInvoicesChangesResponses, GetCustomerInvoicesChangesErrors, ThrowOnError, "fields">;
43048
+ declare const getCustomerInvoicesChanges: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerInvoicesChangesData, ThrowOnError>) => RequestResult<GetCustomerInvoicesChangesResponses, GetCustomerInvoicesChangesErrors, ThrowOnError>;
43031
43049
  /**
43032
43050
  * Get supplier invoices changes events
43033
43051
  *
@@ -43040,7 +43058,7 @@ declare const getCustomerInvoicesChanges: <ThrowOnError extends boolean = false>
43040
43058
  * > ℹ️
43041
43059
  * > This endpoint requires one of the following scopes: `supplier_invoices:all`, `supplier_invoices:readonly`
43042
43060
  */
43043
- declare const getSupplierInvoicesChanges: <ThrowOnError extends boolean = false>(options?: Options<GetSupplierInvoicesChangesData, ThrowOnError>) => RequestResult<GetSupplierInvoicesChangesResponses, GetSupplierInvoicesChangesErrors, ThrowOnError, "fields">;
43061
+ declare const getSupplierInvoicesChanges: <ThrowOnError extends boolean = false>(options?: Options<GetSupplierInvoicesChangesData, ThrowOnError>) => RequestResult<GetSupplierInvoicesChangesResponses, GetSupplierInvoicesChangesErrors, ThrowOnError>;
43044
43062
  /**
43045
43063
  * Get customer changes events
43046
43064
  *
@@ -43053,7 +43071,7 @@ declare const getSupplierInvoicesChanges: <ThrowOnError extends boolean = false>
43053
43071
  * > ℹ️
43054
43072
  * > This endpoint requires one of the following scopes: `customers:all`, `customers:readonly`
43055
43073
  */
43056
- declare const getCustomerChanges: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerChangesData, ThrowOnError>) => RequestResult<GetCustomerChangesResponses, GetCustomerChangesErrors, ThrowOnError, "fields">;
43074
+ declare const getCustomerChanges: <ThrowOnError extends boolean = false>(options?: Options<GetCustomerChangesData, ThrowOnError>) => RequestResult<GetCustomerChangesResponses, GetCustomerChangesErrors, ThrowOnError>;
43057
43075
  /**
43058
43076
  * Get supplier changes events
43059
43077
  *
@@ -43066,7 +43084,7 @@ declare const getCustomerChanges: <ThrowOnError extends boolean = false>(options
43066
43084
  * > ℹ️
43067
43085
  * > This endpoint requires one of the following scopes: `suppliers:all`, `suppliers:readonly`
43068
43086
  */
43069
- declare const getSupplierChanges: <ThrowOnError extends boolean = false>(options?: Options<GetSupplierChangesData, ThrowOnError>) => RequestResult<GetSupplierChangesResponses, GetSupplierChangesErrors, ThrowOnError, "fields">;
43087
+ declare const getSupplierChanges: <ThrowOnError extends boolean = false>(options?: Options<GetSupplierChangesData, ThrowOnError>) => RequestResult<GetSupplierChangesResponses, GetSupplierChangesErrors, ThrowOnError>;
43070
43088
  /**
43071
43089
  * Get product change events
43072
43090
  *
@@ -43079,7 +43097,7 @@ declare const getSupplierChanges: <ThrowOnError extends boolean = false>(options
43079
43097
  * > ℹ️
43080
43098
  * > This endpoint requires one of the following scopes: `products:all`, `products:readonly`
43081
43099
  */
43082
- declare const getProductChanges: <ThrowOnError extends boolean = false>(options?: Options<GetProductChangesData, ThrowOnError>) => RequestResult<GetProductChangesResponses, GetProductChangesErrors, ThrowOnError, "fields">;
43100
+ declare const getProductChanges: <ThrowOnError extends boolean = false>(options?: Options<GetProductChangesData, ThrowOnError>) => RequestResult<GetProductChangesResponses, GetProductChangesErrors, ThrowOnError>;
43083
43101
  /**
43084
43102
  * Get ledger entry line change events
43085
43103
  *
@@ -43096,7 +43114,7 @@ declare const getProductChanges: <ThrowOnError extends boolean = false>(options?
43096
43114
  * > ℹ️
43097
43115
  * > This endpoint requires one of the following scopes: `ledger (DEPRECATED)`, `ledger_entries:readonly`, `ledger_entries:all`
43098
43116
  */
43099
- declare const getLedgerEntryLineChanges: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerEntryLineChangesData, ThrowOnError>) => RequestResult<GetLedgerEntryLineChangesResponses, GetLedgerEntryLineChangesErrors, ThrowOnError, "fields">;
43117
+ declare const getLedgerEntryLineChanges: <ThrowOnError extends boolean = false>(options?: Options<GetLedgerEntryLineChangesData, ThrowOnError>) => RequestResult<GetLedgerEntryLineChangesResponses, GetLedgerEntryLineChangesErrors, ThrowOnError>;
43100
43118
  /**
43101
43119
  * Get transaction change events
43102
43120
  *
@@ -43109,7 +43127,7 @@ declare const getLedgerEntryLineChanges: <ThrowOnError extends boolean = false>(
43109
43127
  * > ℹ️
43110
43128
  * > This endpoint requires one of the following scopes: `transactions:all`, `transactions:readonly`
43111
43129
  */
43112
- declare const getTransactionChanges: <ThrowOnError extends boolean = false>(options?: Options<GetTransactionChangesData, ThrowOnError>) => RequestResult<GetTransactionChangesResponses, GetTransactionChangesErrors, ThrowOnError, "fields">;
43130
+ declare const getTransactionChanges: <ThrowOnError extends boolean = false>(options?: Options<GetTransactionChangesData, ThrowOnError>) => RequestResult<GetTransactionChangesResponses, GetTransactionChangesErrors, ThrowOnError>;
43113
43131
  /**
43114
43132
  * Get quotes changes events
43115
43133
  *
@@ -43122,7 +43140,7 @@ declare const getTransactionChanges: <ThrowOnError extends boolean = false>(opti
43122
43140
  * > ℹ️
43123
43141
  * > This endpoint requires one of the following scopes: `quotes:all`, `quotes:readonly`
43124
43142
  */
43125
- declare const getQuoteChanges: <ThrowOnError extends boolean = false>(options?: Options<GetQuoteChangesData, ThrowOnError>) => RequestResult<GetQuoteChangesResponses, GetQuoteChangesErrors, ThrowOnError, "fields">;
43143
+ declare const getQuoteChanges: <ThrowOnError extends boolean = false>(options?: Options<GetQuoteChangesData, ThrowOnError>) => RequestResult<GetQuoteChangesResponses, GetQuoteChangesErrors, ThrowOnError>;
43126
43144
  /**
43127
43145
  * List bank accounts
43128
43146
  *
@@ -43131,7 +43149,7 @@ declare const getQuoteChanges: <ThrowOnError extends boolean = false>(options?:
43131
43149
  * > ℹ️
43132
43150
  * > This endpoint requires one of the following scopes: `bank_accounts:all`, `bank_accounts:readonly`
43133
43151
  */
43134
- declare const getBankAccounts: <ThrowOnError extends boolean = false>(options?: Options<GetBankAccountsData, ThrowOnError>) => RequestResult<GetBankAccountsResponses, GetBankAccountsErrors, ThrowOnError, "fields">;
43152
+ declare const getBankAccounts: <ThrowOnError extends boolean = false>(options?: Options<GetBankAccountsData, ThrowOnError>) => RequestResult<GetBankAccountsResponses, GetBankAccountsErrors, ThrowOnError>;
43135
43153
  /**
43136
43154
  * Create a bank account
43137
43155
  *
@@ -43140,7 +43158,7 @@ declare const getBankAccounts: <ThrowOnError extends boolean = false>(options?:
43140
43158
  * > ℹ️
43141
43159
  * > This endpoint requires the following scope: `bank_accounts:all`
43142
43160
  */
43143
- declare const postBankAccount: <ThrowOnError extends boolean = false>(options: Options<PostBankAccountData, ThrowOnError>) => RequestResult<PostBankAccountResponses, PostBankAccountErrors, ThrowOnError, "fields">;
43161
+ declare const postBankAccount: <ThrowOnError extends boolean = false>(options: Options<PostBankAccountData, ThrowOnError>) => RequestResult<PostBankAccountResponses, PostBankAccountErrors, ThrowOnError>;
43144
43162
  /**
43145
43163
  * Retrieve a bank account
43146
43164
  *
@@ -43149,7 +43167,7 @@ declare const postBankAccount: <ThrowOnError extends boolean = false>(options: O
43149
43167
  * > ℹ️
43150
43168
  * > This endpoint requires one of the following scopes: `bank_accounts:all`, `bank_accounts:readonly`
43151
43169
  */
43152
- declare const getBankAccount: <ThrowOnError extends boolean = false>(options: Options<GetBankAccountData, ThrowOnError>) => RequestResult<GetBankAccountResponses, GetBankAccountErrors, ThrowOnError, "fields">;
43170
+ declare const getBankAccount: <ThrowOnError extends boolean = false>(options: Options<GetBankAccountData, ThrowOnError>) => RequestResult<GetBankAccountResponses, GetBankAccountErrors, ThrowOnError>;
43153
43171
  /**
43154
43172
  * List transactions
43155
43173
  *
@@ -43158,7 +43176,7 @@ declare const getBankAccount: <ThrowOnError extends boolean = false>(options: Op
43158
43176
  * > ℹ️
43159
43177
  * > This endpoint requires one of the following scopes: `transactions:readonly`, `transactions:all`
43160
43178
  */
43161
- declare const getTransactions: <ThrowOnError extends boolean = false>(options?: Options<GetTransactionsData, ThrowOnError>) => RequestResult<GetTransactionsResponses, GetTransactionsErrors, ThrowOnError, "fields">;
43179
+ declare const getTransactions: <ThrowOnError extends boolean = false>(options?: Options<GetTransactionsData, ThrowOnError>) => RequestResult<GetTransactionsResponses, GetTransactionsErrors, ThrowOnError>;
43162
43180
  /**
43163
43181
  * Create a transaction
43164
43182
  *
@@ -43167,7 +43185,7 @@ declare const getTransactions: <ThrowOnError extends boolean = false>(options?:
43167
43185
  * > ℹ️
43168
43186
  * > This endpoint requires the following scope: `transactions:all`
43169
43187
  */
43170
- declare const createTransaction: <ThrowOnError extends boolean = false>(options: Options<CreateTransactionData, ThrowOnError>) => RequestResult<CreateTransactionResponses, CreateTransactionErrors, ThrowOnError, "fields">;
43188
+ declare const createTransaction: <ThrowOnError extends boolean = false>(options: Options<CreateTransactionData, ThrowOnError>) => RequestResult<CreateTransactionResponses, CreateTransactionErrors, ThrowOnError>;
43171
43189
  /**
43172
43190
  * Retrieve a transaction
43173
43191
  *
@@ -43176,7 +43194,7 @@ declare const createTransaction: <ThrowOnError extends boolean = false>(options:
43176
43194
  * > ℹ️
43177
43195
  * > This endpoint requires one of the following scopes: `transactions:readonly`, `transactions:all`
43178
43196
  */
43179
- declare const getTransaction: <ThrowOnError extends boolean = false>(options: Options<GetTransactionData, ThrowOnError>) => RequestResult<GetTransactionResponses, GetTransactionErrors, ThrowOnError, "fields">;
43197
+ declare const getTransaction: <ThrowOnError extends boolean = false>(options: Options<GetTransactionData, ThrowOnError>) => RequestResult<GetTransactionResponses, GetTransactionErrors, ThrowOnError>;
43180
43198
  /**
43181
43199
  * Update a transaction
43182
43200
  *
@@ -43185,7 +43203,7 @@ declare const getTransaction: <ThrowOnError extends boolean = false>(options: Op
43185
43203
  * > ℹ️
43186
43204
  * > This endpoint requires the following scope: `transactions:all`
43187
43205
  */
43188
- declare const updateTransaction: <ThrowOnError extends boolean = false>(options: Options<UpdateTransactionData, ThrowOnError>) => RequestResult<UpdateTransactionResponses, UpdateTransactionErrors, ThrowOnError, "fields">;
43206
+ declare const updateTransaction: <ThrowOnError extends boolean = false>(options: Options<UpdateTransactionData, ThrowOnError>) => RequestResult<UpdateTransactionResponses, UpdateTransactionErrors, ThrowOnError>;
43189
43207
  /**
43190
43208
  * List categories of a bank transaction
43191
43209
  *
@@ -43194,7 +43212,7 @@ declare const updateTransaction: <ThrowOnError extends boolean = false>(options:
43194
43212
  * > ℹ️
43195
43213
  * > This endpoint requires one of the following scopes: `transactions:readonly`, `transactions:all`
43196
43214
  */
43197
- declare const getTransactionCategories: <ThrowOnError extends boolean = false>(options: Options<GetTransactionCategoriesData, ThrowOnError>) => RequestResult<GetTransactionCategoriesResponses, GetTransactionCategoriesErrors, ThrowOnError, "fields">;
43215
+ declare const getTransactionCategories: <ThrowOnError extends boolean = false>(options: Options<GetTransactionCategoriesData, ThrowOnError>) => RequestResult<GetTransactionCategoriesResponses, GetTransactionCategoriesErrors, ThrowOnError>;
43198
43216
  /**
43199
43217
  * Categorize a bank transaction
43200
43218
  *
@@ -43211,7 +43229,7 @@ declare const getTransactionCategories: <ThrowOnError extends boolean = false>(o
43211
43229
  * > ℹ️
43212
43230
  * > This endpoint requires the following scope: `transactions:all`
43213
43231
  */
43214
- declare const putTransactionCategories: <ThrowOnError extends boolean = false>(options: Options<PutTransactionCategoriesData, ThrowOnError>) => RequestResult<PutTransactionCategoriesResponses, PutTransactionCategoriesErrors, ThrowOnError, "fields">;
43232
+ declare const putTransactionCategories: <ThrowOnError extends boolean = false>(options: Options<PutTransactionCategoriesData, ThrowOnError>) => RequestResult<PutTransactionCategoriesResponses, PutTransactionCategoriesErrors, ThrowOnError>;
43215
43233
  /**
43216
43234
  * List invoices matched to a bank transaction
43217
43235
  *
@@ -43220,7 +43238,7 @@ declare const putTransactionCategories: <ThrowOnError extends boolean = false>(o
43220
43238
  * > ℹ️
43221
43239
  * > This endpoint requires one of the following scopes: `transactions:readonly`, `transactions:all`
43222
43240
  */
43223
- declare const getTransactionMatchedInvoices: <ThrowOnError extends boolean = false>(options: Options<GetTransactionMatchedInvoicesData, ThrowOnError>) => RequestResult<GetTransactionMatchedInvoicesResponses, GetTransactionMatchedInvoicesErrors, ThrowOnError, "fields">;
43241
+ declare const getTransactionMatchedInvoices: <ThrowOnError extends boolean = false>(options: Options<GetTransactionMatchedInvoicesData, ThrowOnError>) => RequestResult<GetTransactionMatchedInvoicesResponses, GetTransactionMatchedInvoicesErrors, ThrowOnError>;
43224
43242
  /**
43225
43243
  * List quotes
43226
43244
  *
@@ -43229,7 +43247,7 @@ declare const getTransactionMatchedInvoices: <ThrowOnError extends boolean = fal
43229
43247
  * > ℹ️
43230
43248
  * > This endpoint requires one of the following scopes: `quotes:all`, `quotes:readonly`
43231
43249
  */
43232
- declare const listQuotes: <ThrowOnError extends boolean = false>(options?: Options<ListQuotesData, ThrowOnError>) => RequestResult<ListQuotesResponses, ListQuotesErrors, ThrowOnError, "fields">;
43250
+ declare const listQuotes: <ThrowOnError extends boolean = false>(options?: Options<ListQuotesData, ThrowOnError>) => RequestResult<ListQuotesResponses, ListQuotesErrors, ThrowOnError>;
43233
43251
  /**
43234
43252
  * Create a quote
43235
43253
  *
@@ -43238,7 +43256,7 @@ declare const listQuotes: <ThrowOnError extends boolean = false>(options?: Optio
43238
43256
  * > ℹ️
43239
43257
  * > This endpoint requires the following scope: `quotes:all`
43240
43258
  */
43241
- declare const postQuotes: <ThrowOnError extends boolean = false>(options: Options<PostQuotesData, ThrowOnError>) => RequestResult<PostQuotesResponses, PostQuotesErrors, ThrowOnError, "fields">;
43259
+ declare const postQuotes: <ThrowOnError extends boolean = false>(options: Options<PostQuotesData, ThrowOnError>) => RequestResult<PostQuotesResponses, PostQuotesErrors, ThrowOnError>;
43242
43260
  /**
43243
43261
  * Retrieve a quote
43244
43262
  *
@@ -43247,7 +43265,7 @@ declare const postQuotes: <ThrowOnError extends boolean = false>(options: Option
43247
43265
  * > ℹ️
43248
43266
  * > This endpoint requires one of the following scopes: `quotes:all`, `quotes:readonly`
43249
43267
  */
43250
- declare const getQuote: <ThrowOnError extends boolean = false>(options: Options<GetQuoteData, ThrowOnError>) => RequestResult<GetQuoteResponses, GetQuoteErrors, ThrowOnError, "fields">;
43268
+ declare const getQuote: <ThrowOnError extends boolean = false>(options: Options<GetQuoteData, ThrowOnError>) => RequestResult<GetQuoteResponses, GetQuoteErrors, ThrowOnError>;
43251
43269
  /**
43252
43270
  * Update a quote
43253
43271
  *
@@ -43256,7 +43274,7 @@ declare const getQuote: <ThrowOnError extends boolean = false>(options: Options<
43256
43274
  * > ℹ️
43257
43275
  * > This endpoint requires the following scope: `quotes:all`
43258
43276
  */
43259
- declare const updateQuote: <ThrowOnError extends boolean = false>(options: Options<UpdateQuoteData, ThrowOnError>) => RequestResult<UpdateQuoteResponses, UpdateQuoteErrors, ThrowOnError, "fields">;
43277
+ declare const updateQuote: <ThrowOnError extends boolean = false>(options: Options<UpdateQuoteData, ThrowOnError>) => RequestResult<UpdateQuoteResponses, UpdateQuoteErrors, ThrowOnError>;
43260
43278
  /**
43261
43279
  * List appendices of a quote
43262
43280
  *
@@ -43265,7 +43283,7 @@ declare const updateQuote: <ThrowOnError extends boolean = false>(options: Optio
43265
43283
  * > ℹ️
43266
43284
  * > This endpoint requires one of the following scopes: `quotes:all`, `quotes:readonly`
43267
43285
  */
43268
- declare const getQuoteAppendices: <ThrowOnError extends boolean = false>(options: Options<GetQuoteAppendicesData, ThrowOnError>) => RequestResult<GetQuoteAppendicesResponses, GetQuoteAppendicesErrors, ThrowOnError, "fields">;
43286
+ declare const getQuoteAppendices: <ThrowOnError extends boolean = false>(options: Options<GetQuoteAppendicesData, ThrowOnError>) => RequestResult<GetQuoteAppendicesResponses, GetQuoteAppendicesErrors, ThrowOnError>;
43269
43287
  /**
43270
43288
  * Upload an appendix for a quote
43271
43289
  *
@@ -43277,7 +43295,7 @@ declare const getQuoteAppendices: <ThrowOnError extends boolean = false>(options
43277
43295
  * > ℹ️
43278
43296
  * > This endpoint requires the following scope: `quotes:all`
43279
43297
  */
43280
- declare const postQuoteAppendices: <ThrowOnError extends boolean = false>(options: Options<PostQuoteAppendicesData, ThrowOnError>) => RequestResult<PostQuoteAppendicesResponses, PostQuoteAppendicesErrors, ThrowOnError, "fields">;
43298
+ declare const postQuoteAppendices: <ThrowOnError extends boolean = false>(options: Options<PostQuoteAppendicesData, ThrowOnError>) => RequestResult<PostQuoteAppendicesResponses, PostQuoteAppendicesErrors, ThrowOnError>;
43281
43299
  /**
43282
43300
  * List invoice lines for a quote
43283
43301
  *
@@ -43286,7 +43304,7 @@ declare const postQuoteAppendices: <ThrowOnError extends boolean = false>(option
43286
43304
  * > ℹ️
43287
43305
  * > This endpoint requires one of the following scopes: `quotes:all`, `quotes:readonly`
43288
43306
  */
43289
- declare const getQuoteInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetQuoteInvoiceLinesData, ThrowOnError>) => RequestResult<GetQuoteInvoiceLinesResponses, GetQuoteInvoiceLinesErrors, ThrowOnError, "fields">;
43307
+ declare const getQuoteInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetQuoteInvoiceLinesData, ThrowOnError>) => RequestResult<GetQuoteInvoiceLinesResponses, GetQuoteInvoiceLinesErrors, ThrowOnError>;
43290
43308
  /**
43291
43309
  * List invoice line sections for a quote
43292
43310
  *
@@ -43295,7 +43313,7 @@ declare const getQuoteInvoiceLines: <ThrowOnError extends boolean = false>(optio
43295
43313
  * > ℹ️
43296
43314
  * > This endpoint requires one of the following scopes: `quotes:all`, `quotes:readonly`
43297
43315
  */
43298
- declare const getQuoteInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetQuoteInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLineSectionsErrors, ThrowOnError, "fields">;
43316
+ declare const getQuoteInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetQuoteInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLineSectionsErrors, ThrowOnError>;
43299
43317
  /**
43300
43318
  * Send a quote by email
43301
43319
  *
@@ -43311,7 +43329,7 @@ declare const getQuoteInvoiceLineSections: <ThrowOnError extends boolean = false
43311
43329
  * > ℹ️
43312
43330
  * > This endpoint requires the following scope: `quotes:all`
43313
43331
  */
43314
- declare const sendByEmailQuote: <ThrowOnError extends boolean = false>(options: Options<SendByEmailQuoteData, ThrowOnError>) => RequestResult<SendByEmailQuoteResponses, SendByEmailQuoteErrors, ThrowOnError, "fields">;
43332
+ declare const sendByEmailQuote: <ThrowOnError extends boolean = false>(options: Options<SendByEmailQuoteData, ThrowOnError>) => RequestResult<SendByEmailQuoteResponses, SendByEmailQuoteErrors, ThrowOnError>;
43315
43333
  /**
43316
43334
  * Update status of a quote
43317
43335
  *
@@ -43320,7 +43338,7 @@ declare const sendByEmailQuote: <ThrowOnError extends boolean = false>(options:
43320
43338
  * > ℹ️
43321
43339
  * > This endpoint requires the following scope: `quotes:all`
43322
43340
  */
43323
- declare const updateStatusQuote: <ThrowOnError extends boolean = false>(options: Options<UpdateStatusQuoteData, ThrowOnError>) => RequestResult<UpdateStatusQuoteResponses, UpdateStatusQuoteErrors, ThrowOnError, "fields">;
43341
+ declare const updateStatusQuote: <ThrowOnError extends boolean = false>(options: Options<UpdateStatusQuoteData, ThrowOnError>) => RequestResult<UpdateStatusQuoteResponses, UpdateStatusQuoteErrors, ThrowOnError>;
43324
43342
  /**
43325
43343
  * List commercial documents
43326
43344
  *
@@ -43329,7 +43347,7 @@ declare const updateStatusQuote: <ThrowOnError extends boolean = false>(options:
43329
43347
  * > ℹ️
43330
43348
  * > This endpoint requires one of the following scopes: `commercial_documents:all`, `commercial_documents:readonly`
43331
43349
  */
43332
- declare const listCommercialDocuments: <ThrowOnError extends boolean = false>(options?: Options<ListCommercialDocumentsData, ThrowOnError>) => RequestResult<ListCommercialDocumentsResponses, ListCommercialDocumentsErrors, ThrowOnError, "fields">;
43350
+ declare const listCommercialDocuments: <ThrowOnError extends boolean = false>(options?: Options<ListCommercialDocumentsData, ThrowOnError>) => RequestResult<ListCommercialDocumentsResponses, ListCommercialDocumentsErrors, ThrowOnError>;
43333
43351
  /**
43334
43352
  * Retrieve a commercial document
43335
43353
  *
@@ -43338,7 +43356,7 @@ declare const listCommercialDocuments: <ThrowOnError extends boolean = false>(op
43338
43356
  * > ℹ️
43339
43357
  * > This endpoint requires one of the following scopes: `commercial_documents:all`, `commercial_documents:readonly`
43340
43358
  */
43341
- declare const getCommercialDocument: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentData, ThrowOnError>) => RequestResult<GetCommercialDocumentResponses, GetCommercialDocumentErrors, ThrowOnError, "fields">;
43359
+ declare const getCommercialDocument: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentData, ThrowOnError>) => RequestResult<GetCommercialDocumentResponses, GetCommercialDocumentErrors, ThrowOnError>;
43342
43360
  /**
43343
43361
  * List appendices of a commercial document
43344
43362
  *
@@ -43347,7 +43365,7 @@ declare const getCommercialDocument: <ThrowOnError extends boolean = false>(opti
43347
43365
  * > ℹ️
43348
43366
  * > This endpoint requires one of the following scopes: `commercial_documents:all`, `commercial_documents:readonly`
43349
43367
  */
43350
- declare const getCommercialDocumentAppendices: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentAppendicesData, ThrowOnError>) => RequestResult<GetCommercialDocumentAppendicesResponses, GetCommercialDocumentAppendicesErrors, ThrowOnError, "fields">;
43368
+ declare const getCommercialDocumentAppendices: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentAppendicesData, ThrowOnError>) => RequestResult<GetCommercialDocumentAppendicesResponses, GetCommercialDocumentAppendicesErrors, ThrowOnError>;
43351
43369
  /**
43352
43370
  * Upload an appendix for a commercial document
43353
43371
  *
@@ -43359,7 +43377,7 @@ declare const getCommercialDocumentAppendices: <ThrowOnError extends boolean = f
43359
43377
  * > ℹ️
43360
43378
  * > This endpoint requires the following scope: `commercial_documents:all`
43361
43379
  */
43362
- declare const postCommercialDocumentAppendices: <ThrowOnError extends boolean = false>(options: Options<PostCommercialDocumentAppendicesData, ThrowOnError>) => RequestResult<PostCommercialDocumentAppendicesResponses, PostCommercialDocumentAppendicesErrors, ThrowOnError, "fields">;
43380
+ declare const postCommercialDocumentAppendices: <ThrowOnError extends boolean = false>(options: Options<PostCommercialDocumentAppendicesData, ThrowOnError>) => RequestResult<PostCommercialDocumentAppendicesResponses, PostCommercialDocumentAppendicesErrors, ThrowOnError>;
43363
43381
  /**
43364
43382
  * List invoice lines for a commercial document
43365
43383
  *
@@ -43368,7 +43386,7 @@ declare const postCommercialDocumentAppendices: <ThrowOnError extends boolean =
43368
43386
  * > ℹ️
43369
43387
  * > This endpoint requires one of the following scopes: `commercial_documents:all`, `commercial_documents:readonly`
43370
43388
  */
43371
- declare const getCommercialDocumentInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentInvoiceLinesData, ThrowOnError>) => RequestResult<GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentInvoiceLinesErrors, ThrowOnError, "fields">;
43389
+ declare const getCommercialDocumentInvoiceLines: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentInvoiceLinesData, ThrowOnError>) => RequestResult<GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentInvoiceLinesErrors, ThrowOnError>;
43372
43390
  /**
43373
43391
  * List invoice line sections for a commercial document
43374
43392
  *
@@ -43377,7 +43395,7 @@ declare const getCommercialDocumentInvoiceLines: <ThrowOnError extends boolean =
43377
43395
  * > ℹ️
43378
43396
  * > This endpoint requires one of the following scopes: `commercial_documents:all`, `commercial_documents:readonly`
43379
43397
  */
43380
- declare const getCommercialDocumentInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLineSectionsErrors, ThrowOnError, "fields">;
43398
+ declare const getCommercialDocumentInvoiceLineSections: <ThrowOnError extends boolean = false>(options: Options<GetCommercialDocumentInvoiceLineSectionsData, ThrowOnError>) => RequestResult<GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLineSectionsErrors, ThrowOnError>;
43381
43399
  /**
43382
43400
  * List SEPA mandates
43383
43401
  *
@@ -43386,7 +43404,7 @@ declare const getCommercialDocumentInvoiceLineSections: <ThrowOnError extends bo
43386
43404
  * > ℹ️
43387
43405
  * > This endpoint requires one of the following scopes: `customer_mandates:all`, `customer_mandates:readonly`
43388
43406
  */
43389
- declare const getSepaMandates: <ThrowOnError extends boolean = false>(options?: Options<GetSepaMandatesData, ThrowOnError>) => RequestResult<GetSepaMandatesResponses, GetSepaMandatesErrors, ThrowOnError, "fields">;
43407
+ declare const getSepaMandates: <ThrowOnError extends boolean = false>(options?: Options<GetSepaMandatesData, ThrowOnError>) => RequestResult<GetSepaMandatesResponses, GetSepaMandatesErrors, ThrowOnError>;
43390
43408
  /**
43391
43409
  * Create a SEPA mandate
43392
43410
  *
@@ -43395,7 +43413,7 @@ declare const getSepaMandates: <ThrowOnError extends boolean = false>(options?:
43395
43413
  * > ℹ️
43396
43414
  * > This endpoint requires the following scope: `customer_mandates:all`
43397
43415
  */
43398
- declare const postSepaMandates: <ThrowOnError extends boolean = false>(options: Options<PostSepaMandatesData, ThrowOnError>) => RequestResult<PostSepaMandatesResponses, PostSepaMandatesErrors, ThrowOnError, "fields">;
43416
+ declare const postSepaMandates: <ThrowOnError extends boolean = false>(options: Options<PostSepaMandatesData, ThrowOnError>) => RequestResult<PostSepaMandatesResponses, PostSepaMandatesErrors, ThrowOnError>;
43399
43417
  /**
43400
43418
  * Delete a SEPA mandate
43401
43419
  *
@@ -43404,7 +43422,7 @@ declare const postSepaMandates: <ThrowOnError extends boolean = false>(options:
43404
43422
  * > ℹ️
43405
43423
  * > This endpoint requires the following scope: `customer_mandates:all`
43406
43424
  */
43407
- declare const deleteSepaMandate: <ThrowOnError extends boolean = false>(options: Options<DeleteSepaMandateData, ThrowOnError>) => RequestResult<DeleteSepaMandateResponses, DeleteSepaMandateErrors, ThrowOnError, "fields">;
43425
+ declare const deleteSepaMandate: <ThrowOnError extends boolean = false>(options: Options<DeleteSepaMandateData, ThrowOnError>) => RequestResult<DeleteSepaMandateResponses, DeleteSepaMandateErrors, ThrowOnError>;
43408
43426
  /**
43409
43427
  * Get a SEPA mandate
43410
43428
  *
@@ -43413,7 +43431,7 @@ declare const deleteSepaMandate: <ThrowOnError extends boolean = false>(options:
43413
43431
  * > ℹ️
43414
43432
  * > This endpoint requires one of the following scopes: `customer_mandates:all`, `customer_mandates:readonly`
43415
43433
  */
43416
- declare const getSepaMandate: <ThrowOnError extends boolean = false>(options: Options<GetSepaMandateData, ThrowOnError>) => RequestResult<GetSepaMandateResponses, GetSepaMandateErrors, ThrowOnError, "fields">;
43434
+ declare const getSepaMandate: <ThrowOnError extends boolean = false>(options: Options<GetSepaMandateData, ThrowOnError>) => RequestResult<GetSepaMandateResponses, GetSepaMandateErrors, ThrowOnError>;
43417
43435
  /**
43418
43436
  * Update a SEPA mandate
43419
43437
  *
@@ -43422,7 +43440,7 @@ declare const getSepaMandate: <ThrowOnError extends boolean = false>(options: Op
43422
43440
  * > ℹ️
43423
43441
  * > This endpoint requires the following scope: `customer_mandates:all`
43424
43442
  */
43425
- declare const putSepaMandate: <ThrowOnError extends boolean = false>(options: Options<PutSepaMandateData, ThrowOnError>) => RequestResult<PutSepaMandateResponses, PutSepaMandateErrors, ThrowOnError, "fields">;
43443
+ declare const putSepaMandate: <ThrowOnError extends boolean = false>(options: Options<PutSepaMandateData, ThrowOnError>) => RequestResult<PutSepaMandateResponses, PutSepaMandateErrors, ThrowOnError>;
43426
43444
  /**
43427
43445
  * List gocardless mandates
43428
43446
  *
@@ -43431,7 +43449,7 @@ declare const putSepaMandate: <ThrowOnError extends boolean = false>(options: Op
43431
43449
  * > ℹ️
43432
43450
  * > This endpoint requires one of the following scopes: `customer_mandates:all`, `customer_mandates:readonly`
43433
43451
  */
43434
- declare const getGocardlessMandates: <ThrowOnError extends boolean = false>(options?: Options<GetGocardlessMandatesData, ThrowOnError>) => RequestResult<GetGocardlessMandatesResponses, GetGocardlessMandatesErrors, ThrowOnError, "fields">;
43452
+ declare const getGocardlessMandates: <ThrowOnError extends boolean = false>(options?: Options<GetGocardlessMandatesData, ThrowOnError>) => RequestResult<GetGocardlessMandatesResponses, GetGocardlessMandatesErrors, ThrowOnError>;
43435
43453
  /**
43436
43454
  * Get a Gocardless mandate
43437
43455
  *
@@ -43440,7 +43458,7 @@ declare const getGocardlessMandates: <ThrowOnError extends boolean = false>(opti
43440
43458
  * > ℹ️
43441
43459
  * > This endpoint requires one of the following scopes: `customer_mandates:all`, `customer_mandates:readonly`
43442
43460
  */
43443
- declare const getGocardlessMandate: <ThrowOnError extends boolean = false>(options: Options<GetGocardlessMandateData, ThrowOnError>) => RequestResult<GetGocardlessMandateResponses, GetGocardlessMandateErrors, ThrowOnError, "fields">;
43461
+ declare const getGocardlessMandate: <ThrowOnError extends boolean = false>(options: Options<GetGocardlessMandateData, ThrowOnError>) => RequestResult<GetGocardlessMandateResponses, GetGocardlessMandateErrors, ThrowOnError>;
43444
43462
  /**
43445
43463
  * Send a GoCardless mandate email request
43446
43464
  *
@@ -43449,7 +43467,7 @@ declare const getGocardlessMandate: <ThrowOnError extends boolean = false>(optio
43449
43467
  * > ℹ️
43450
43468
  * > This endpoint requires the following scope: `customer_mandates:all`
43451
43469
  */
43452
- declare const postGocardlessMandateMailRequests: <ThrowOnError extends boolean = false>(options: Options<PostGocardlessMandateMailRequestsData, ThrowOnError>) => RequestResult<PostGocardlessMandateMailRequestsResponses, PostGocardlessMandateMailRequestsErrors, ThrowOnError, "fields">;
43470
+ declare const postGocardlessMandateMailRequests: <ThrowOnError extends boolean = false>(options: Options<PostGocardlessMandateMailRequestsData, ThrowOnError>) => RequestResult<PostGocardlessMandateMailRequestsResponses, PostGocardlessMandateMailRequestsErrors, ThrowOnError>;
43453
43471
  /**
43454
43472
  * Cancel a Gocardless mandate
43455
43473
  *
@@ -43458,7 +43476,7 @@ declare const postGocardlessMandateMailRequests: <ThrowOnError extends boolean =
43458
43476
  * > ℹ️
43459
43477
  * > This endpoint requires the following scope: `customer_mandates:all`
43460
43478
  */
43461
- declare const postGocardlessMandateCancellations: <ThrowOnError extends boolean = false>(options: Options<PostGocardlessMandateCancellationsData, ThrowOnError>) => RequestResult<PostGocardlessMandateCancellationsResponses, PostGocardlessMandateCancellationsErrors, ThrowOnError, "fields">;
43479
+ declare const postGocardlessMandateCancellations: <ThrowOnError extends boolean = false>(options: Options<PostGocardlessMandateCancellationsData, ThrowOnError>) => RequestResult<PostGocardlessMandateCancellationsResponses, PostGocardlessMandateCancellationsErrors, ThrowOnError>;
43462
43480
  /**
43463
43481
  * Associate a GoCardless mandate to a customer
43464
43482
  *
@@ -43467,7 +43485,7 @@ declare const postGocardlessMandateCancellations: <ThrowOnError extends boolean
43467
43485
  * > ℹ️
43468
43486
  * > This endpoint requires the following scope: `customer_mandates:all`
43469
43487
  */
43470
- declare const postGocardlessMandateAssociations: <ThrowOnError extends boolean = false>(options: Options<PostGocardlessMandateAssociationsData, ThrowOnError>) => RequestResult<PostGocardlessMandateAssociationsResponses, PostGocardlessMandateAssociationsErrors, ThrowOnError, "fields">;
43488
+ declare const postGocardlessMandateAssociations: <ThrowOnError extends boolean = false>(options: Options<PostGocardlessMandateAssociationsData, ThrowOnError>) => RequestResult<PostGocardlessMandateAssociationsResponses, PostGocardlessMandateAssociationsErrors, ThrowOnError>;
43471
43489
  /**
43472
43490
  * Send a Pro Account SEPA mandate request
43473
43491
  *
@@ -43482,7 +43500,7 @@ declare const postGocardlessMandateAssociations: <ThrowOnError extends boolean =
43482
43500
  * > ℹ️
43483
43501
  * > This endpoint requires the following scope: `customer_mandates:all`
43484
43502
  */
43485
- declare const postProAccountMandateMailRequests: <ThrowOnError extends boolean = false>(options: Options<PostProAccountMandateMailRequestsData, ThrowOnError>) => RequestResult<PostProAccountMandateMailRequestsResponses, PostProAccountMandateMailRequestsErrors, ThrowOnError, "fields">;
43503
+ declare const postProAccountMandateMailRequests: <ThrowOnError extends boolean = false>(options: Options<PostProAccountMandateMailRequestsData, ThrowOnError>) => RequestResult<PostProAccountMandateMailRequestsResponses, PostProAccountMandateMailRequestsErrors, ThrowOnError>;
43486
43504
  /**
43487
43505
  * List mandate migration candidates
43488
43506
  *
@@ -43497,7 +43515,7 @@ declare const postProAccountMandateMailRequests: <ThrowOnError extends boolean =
43497
43515
  * > ℹ️
43498
43516
  * > This endpoint requires one of the following scopes: `customer_mandates:readonly`, `customer_mandates:all`
43499
43517
  */
43500
- declare const getProAccountMandateMigrations: <ThrowOnError extends boolean = false>(options?: Options<GetProAccountMandateMigrationsData, ThrowOnError>) => RequestResult<GetProAccountMandateMigrationsResponses, GetProAccountMandateMigrationsErrors, ThrowOnError, "fields">;
43518
+ declare const getProAccountMandateMigrations: <ThrowOnError extends boolean = false>(options?: Options<GetProAccountMandateMigrationsData, ThrowOnError>) => RequestResult<GetProAccountMandateMigrationsResponses, GetProAccountMandateMigrationsErrors, ThrowOnError>;
43501
43519
  /**
43502
43520
  * Migrate a mandate to Pro Account
43503
43521
  *
@@ -43512,7 +43530,7 @@ declare const getProAccountMandateMigrations: <ThrowOnError extends boolean = fa
43512
43530
  * > ℹ️
43513
43531
  * > This endpoint requires the following scope: `customer_mandates:all`
43514
43532
  */
43515
- declare const postProAccountMandateMigrations: <ThrowOnError extends boolean = false>(options: Options<PostProAccountMandateMigrationsData, ThrowOnError>) => RequestResult<PostProAccountMandateMigrationsResponses, PostProAccountMandateMigrationsErrors, ThrowOnError, "fields">;
43533
+ declare const postProAccountMandateMigrations: <ThrowOnError extends boolean = false>(options: Options<PostProAccountMandateMigrationsData, ThrowOnError>) => RequestResult<PostProAccountMandateMigrationsResponses, PostProAccountMandateMigrationsErrors, ThrowOnError>;
43516
43534
  /**
43517
43535
  * List Pro Account payment mandates
43518
43536
  *
@@ -43527,7 +43545,7 @@ declare const postProAccountMandateMigrations: <ThrowOnError extends boolean = f
43527
43545
  * > ℹ️
43528
43546
  * > This endpoint requires one of the following scopes: `customer_mandates:readonly`, `customer_mandates:all`
43529
43547
  */
43530
- declare const getProAccountMandates: <ThrowOnError extends boolean = false>(options?: Options<GetProAccountMandatesData, ThrowOnError>) => RequestResult<GetProAccountMandatesResponses, GetProAccountMandatesErrors, ThrowOnError, "fields">;
43548
+ declare const getProAccountMandates: <ThrowOnError extends boolean = false>(options?: Options<GetProAccountMandatesData, ThrowOnError>) => RequestResult<GetProAccountMandatesResponses, GetProAccountMandatesErrors, ThrowOnError>;
43531
43549
  /**
43532
43550
  * List custom header fields for a customer invoice
43533
43551
  *
@@ -43536,7 +43554,7 @@ declare const getProAccountMandates: <ThrowOnError extends boolean = false>(opti
43536
43554
  * > ℹ️
43537
43555
  * > This endpoint requires one of the following scopes: `customer_invoices:all`, `customer_invoices:readonly`
43538
43556
  */
43539
- declare const getCustomerInvoiceCustomHeaderFields: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceCustomHeaderFieldsData, ThrowOnError>) => RequestResult<GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceCustomHeaderFieldsErrors, ThrowOnError, "fields">;
43557
+ declare const getCustomerInvoiceCustomHeaderFields: <ThrowOnError extends boolean = false>(options: Options<GetCustomerInvoiceCustomHeaderFieldsData, ThrowOnError>) => RequestResult<GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceCustomHeaderFieldsErrors, ThrowOnError>;
43540
43558
  /**
43541
43559
  * [BETA] Import e-invoices
43542
43560
  *
@@ -43553,7 +43571,7 @@ declare const getCustomerInvoiceCustomHeaderFields: <ThrowOnError extends boolea
43553
43571
  *
43554
43572
  * @deprecated
43555
43573
  */
43556
- declare const createEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateEInvoiceImportData, ThrowOnError>) => RequestResult<CreateEInvoiceImportResponses, CreateEInvoiceImportErrors, ThrowOnError, "fields">;
43574
+ declare const createEInvoiceImport: <ThrowOnError extends boolean = false>(options: Options<CreateEInvoiceImportData, ThrowOnError>) => RequestResult<CreateEInvoiceImportResponses, CreateEInvoiceImportErrors, ThrowOnError>;
43557
43575
  /**
43558
43576
  * Import a purchase order.
43559
43577
  *
@@ -43564,7 +43582,7 @@ declare const createEInvoiceImport: <ThrowOnError extends boolean = false>(optio
43564
43582
  * > ℹ️
43565
43583
  * > This endpoint requires the following scope: `purchase_requests:all`
43566
43584
  */
43567
- declare const createPurchaseRequestImport: <ThrowOnError extends boolean = false>(options: Options<CreatePurchaseRequestImportData, ThrowOnError>) => RequestResult<CreatePurchaseRequestImportResponses, CreatePurchaseRequestImportErrors, ThrowOnError, "fields">;
43585
+ declare const createPurchaseRequestImport: <ThrowOnError extends boolean = false>(options: Options<CreatePurchaseRequestImportData, ThrowOnError>) => RequestResult<CreatePurchaseRequestImportResponses, CreatePurchaseRequestImportErrors, ThrowOnError>;
43568
43586
  /**
43569
43587
  * Retrieve a purchase request
43570
43588
  *
@@ -43573,7 +43591,7 @@ declare const createPurchaseRequestImport: <ThrowOnError extends boolean = false
43573
43591
  * > ℹ️
43574
43592
  * > This endpoint requires one of the following scopes: `purchase_requests:all`, `purchase_requests:readonly`
43575
43593
  */
43576
- declare const getPurchaseRequest: <ThrowOnError extends boolean = false>(options: Options<GetPurchaseRequestData, ThrowOnError>) => RequestResult<GetPurchaseRequestResponses, GetPurchaseRequestErrors, ThrowOnError, "fields">;
43594
+ declare const getPurchaseRequest: <ThrowOnError extends boolean = false>(options: Options<GetPurchaseRequestData, ThrowOnError>) => RequestResult<GetPurchaseRequestResponses, GetPurchaseRequestErrors, ThrowOnError>;
43577
43595
  /**
43578
43596
  * List purchase requests
43579
43597
  *
@@ -43582,7 +43600,7 @@ declare const getPurchaseRequest: <ThrowOnError extends boolean = false>(options
43582
43600
  * > ℹ️
43583
43601
  * > This endpoint requires one of the following scopes: `purchase_requests:all`, `purchase_requests:readonly`
43584
43602
  */
43585
- declare const getPurchaseRequests: <ThrowOnError extends boolean = false>(options?: Options<GetPurchaseRequestsData, ThrowOnError>) => RequestResult<GetPurchaseRequestsResponses, GetPurchaseRequestsErrors, ThrowOnError, "fields">;
43603
+ declare const getPurchaseRequests: <ThrowOnError extends boolean = false>(options?: Options<GetPurchaseRequestsData, ThrowOnError>) => RequestResult<GetPurchaseRequestsResponses, GetPurchaseRequestsErrors, ThrowOnError>;
43586
43604
  /**
43587
43605
  * List bank establishments
43588
43606
  *
@@ -43591,10 +43609,10 @@ declare const getPurchaseRequests: <ThrowOnError extends boolean = false>(option
43591
43609
  * > ℹ️
43592
43610
  * > This endpoint requires the following scope: `bank_establishments:readonly`
43593
43611
  */
43594
- declare const getBankEstablishments: <ThrowOnError extends boolean = false>(options?: Options<GetBankEstablishmentsData, ThrowOnError>) => RequestResult<GetBankEstablishmentsResponses, GetBankEstablishmentsErrors, ThrowOnError, "fields">;
43612
+ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(options?: Options<GetBankEstablishmentsData, ThrowOnError>) => RequestResult<GetBankEstablishmentsResponses, GetBankEstablishmentsErrors, ThrowOnError>;
43595
43613
  //#endregion
43596
43614
  //#region src/index.d.ts
43597
43615
  declare function createClientWithApiKey(apiKey: string): Client;
43598
43616
  //#endregion
43599
- export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, Currency2, CurrencySchema, Currency_2Schema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DecimalString, DecimalStringSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GetWebhookSubscriptionsData, GetWebhookSubscriptionsError, GetWebhookSubscriptionsErrors, GetWebhookSubscriptionsResponse, GetWebhookSubscriptionsResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryAccountantsStatus, LedgerEntryAccountantsStatusSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddressStatusesSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressStatuses, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionsData, PostWebhookSubscriptionsError, PostWebhookSubscriptionsErrors, PostWebhookSubscriptionsResponse, PostWebhookSubscriptionsResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsIndexResponse, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__IndexResponseSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, getWebhookSubscriptions, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscriptions, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
43617
+ export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, Currency2, CurrencySchema, Currency_2Schema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DecimalString, DecimalStringSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GetWebhookSubscriptionsData, GetWebhookSubscriptionsError, GetWebhookSubscriptionsErrors, GetWebhookSubscriptionsResponse, GetWebhookSubscriptionsResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryAccountantsStatus, LedgerEntryAccountantsStatusSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, NonBlankDecimalString, NonBlankDecimalStringSchema, Null, Null2, NullSchema, Options, PDPAddressStatusesSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressStatuses, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionsData, PostWebhookSubscriptionsError, PostWebhookSubscriptionsErrors, PostWebhookSubscriptionsResponse, PostWebhookSubscriptionsResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsIndexResponse, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__IndexResponseSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, getWebhookSubscriptions, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscriptions, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
43600
43618
  //# sourceMappingURL=index.d.mts.map