@getyetty-sdk/pennylane 2026.4.16 → 2026.4.17
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 +856 -109
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +625 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4271,6 +4271,201 @@ type SupplierInvoicesEInvoicesImportsImportOptions = {
|
|
|
4271
4271
|
ledger_account_id?: number | null;
|
|
4272
4272
|
}>;
|
|
4273
4273
|
};
|
|
4274
|
+
declare const SupplierInvoicePdpDisputeReason: {
|
|
4275
|
+
readonly INCORRECT_VAT_RATE: "incorrect_vat_rate";
|
|
4276
|
+
readonly INCORRECT_UNIT_PRICES: "incorrect_unit_prices";
|
|
4277
|
+
readonly INCORRECT_BILLED_QUANTITY: "incorrect_billed_quantity";
|
|
4278
|
+
readonly INCORRECT_BILLED_ITEM: "incorrect_billed_item";
|
|
4279
|
+
readonly DEFECTIVE_DELIVERED_ITEM: "defective_delivered_item";
|
|
4280
|
+
readonly DELIVERY_ISSUE: "delivery_issue";
|
|
4281
|
+
readonly BANK_DETAILS_ERROR: "bank_details_error";
|
|
4282
|
+
readonly INCORRECT_PAYMENT_TERMS: "incorrect_payment_terms";
|
|
4283
|
+
readonly MISSING_LEGAL_NOTICE: "missing_legal_notice";
|
|
4284
|
+
readonly MISSING_CONTRACTUAL_REFERENCE: "missing_contractual_reference";
|
|
4285
|
+
readonly RECIPIENT_ERROR: "recipient_error";
|
|
4286
|
+
};
|
|
4287
|
+
type SupplierInvoicePdpDisputeReason = (typeof SupplierInvoicePdpDisputeReason)[keyof typeof SupplierInvoicePdpDisputeReason];
|
|
4288
|
+
/**
|
|
4289
|
+
* Dispute
|
|
4290
|
+
*/
|
|
4291
|
+
type SupplierInvoicesEInvoiceStatusDisputeRequest = {
|
|
4292
|
+
status: 'disputed';
|
|
4293
|
+
reason: 'incorrect_vat_rate' | 'incorrect_unit_prices' | 'incorrect_billed_quantity' | 'incorrect_billed_item' | 'defective_delivered_item' | 'delivery_issue' | 'bank_details_error' | 'incorrect_payment_terms' | 'missing_legal_notice' | 'missing_contractual_reference' | 'recipient_error';
|
|
4294
|
+
};
|
|
4295
|
+
declare const SupplierInvoicePdpRefuseReason: {
|
|
4296
|
+
readonly INCORRECT_VAT_RATE: "incorrect_vat_rate";
|
|
4297
|
+
readonly CONTRACT_COMPLETED: "contract_completed";
|
|
4298
|
+
readonly DUPLICATE_INVOICE: "duplicate_invoice";
|
|
4299
|
+
readonly RECIPIENT_ERROR: "recipient_error";
|
|
4300
|
+
readonly INCORRECT_PRICES: "incorrect_prices";
|
|
4301
|
+
readonly NON_COMPLIANT_INVOICE: "non_compliant_invoice";
|
|
4302
|
+
};
|
|
4303
|
+
type SupplierInvoicePdpRefuseReason = (typeof SupplierInvoicePdpRefuseReason)[keyof typeof SupplierInvoicePdpRefuseReason];
|
|
4304
|
+
/**
|
|
4305
|
+
* Refuse
|
|
4306
|
+
*/
|
|
4307
|
+
type SupplierInvoicesEInvoiceStatusRefuseRequest = {
|
|
4308
|
+
status: 'refused';
|
|
4309
|
+
reason: 'incorrect_vat_rate' | 'contract_completed' | 'duplicate_invoice' | 'recipient_error' | 'incorrect_prices' | 'non_compliant_invoice';
|
|
4310
|
+
};
|
|
4311
|
+
/**
|
|
4312
|
+
* Undispute
|
|
4313
|
+
*/
|
|
4314
|
+
type SupplierInvoicesEInvoiceStatusUndisputeRequest = {
|
|
4315
|
+
status: 'approved';
|
|
4316
|
+
};
|
|
4317
|
+
type SupplierInvoicesEInvoiceStatusResponse = {
|
|
4318
|
+
/**
|
|
4319
|
+
* The ID of the supplier invoice
|
|
4320
|
+
*/
|
|
4321
|
+
id: number;
|
|
4322
|
+
label: string | null;
|
|
4323
|
+
invoice_number: string;
|
|
4324
|
+
currency: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
4325
|
+
/**
|
|
4326
|
+
* Invoice amount (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
4327
|
+
*/
|
|
4328
|
+
amount: string;
|
|
4329
|
+
/**
|
|
4330
|
+
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
4331
|
+
*/
|
|
4332
|
+
currency_amount: string;
|
|
4333
|
+
/**
|
|
4334
|
+
* Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)
|
|
4335
|
+
*/
|
|
4336
|
+
currency_amount_before_tax: string;
|
|
4337
|
+
/**
|
|
4338
|
+
* Invoice exchange rate (used to convert the invoice to euros. If the invoice currency is euro it will be 1.0)
|
|
4339
|
+
*/
|
|
4340
|
+
exchange_rate: string;
|
|
4341
|
+
/**
|
|
4342
|
+
* Invoice issue date (ISO 8601)
|
|
4343
|
+
*/
|
|
4344
|
+
date: string | null;
|
|
4345
|
+
/**
|
|
4346
|
+
* Invoice payment deadline (ISO 8601)
|
|
4347
|
+
*/
|
|
4348
|
+
deadline: string | null;
|
|
4349
|
+
/**
|
|
4350
|
+
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
4351
|
+
*/
|
|
4352
|
+
currency_tax: string;
|
|
4353
|
+
/**
|
|
4354
|
+
* Invoice taxable amount (in invoice currency)
|
|
4355
|
+
*/
|
|
4356
|
+
tax: string;
|
|
4357
|
+
/**
|
|
4358
|
+
* Whether the invoice has been reconciled or not
|
|
4359
|
+
*/
|
|
4360
|
+
reconciled: boolean;
|
|
4361
|
+
/**
|
|
4362
|
+
* The accounting state of the invoice.
|
|
4363
|
+
* - `draft`: The invoice is not yet sent to the accountant.
|
|
4364
|
+
* - `archived`: The invoice has been archived.
|
|
4365
|
+
* - `entry`: The invoice is incomplete. Some information is missing on the invoice and needs to be completed by SME.
|
|
4366
|
+
* - `validation_needed`: The invoice is sent to the accountant and needs validation.
|
|
4367
|
+
* - `complete`: The invoice has been validated by the accountant.
|
|
4368
|
+
*
|
|
4369
|
+
*/
|
|
4370
|
+
accounting_status: 'draft' | 'archived' | 'entry' | 'validation_needed' | 'complete';
|
|
4371
|
+
/**
|
|
4372
|
+
* Name of the file attached to the invoice
|
|
4373
|
+
*/
|
|
4374
|
+
filename: string | null;
|
|
4375
|
+
/**
|
|
4376
|
+
* Public URL of the invoice file. The URL will expire after 30 minutes.
|
|
4377
|
+
*/
|
|
4378
|
+
public_file_url: string | null;
|
|
4379
|
+
/**
|
|
4380
|
+
* The remaining amount with VAT to pay for the invoice to be considered paid
|
|
4381
|
+
*/
|
|
4382
|
+
remaining_amount_with_tax: string | null;
|
|
4383
|
+
/**
|
|
4384
|
+
* The remaining amount without VAT to pay for the invoice to be considered paid
|
|
4385
|
+
*/
|
|
4386
|
+
remaining_amount_without_tax: string | null;
|
|
4387
|
+
ledger_entry: {
|
|
4388
|
+
/**
|
|
4389
|
+
* Ledger entry identifier
|
|
4390
|
+
*/
|
|
4391
|
+
id: number;
|
|
4392
|
+
};
|
|
4393
|
+
supplier: {
|
|
4394
|
+
id: number;
|
|
4395
|
+
/**
|
|
4396
|
+
* URL to get the supplier.
|
|
4397
|
+
*/
|
|
4398
|
+
url: string;
|
|
4399
|
+
} | null;
|
|
4400
|
+
invoice_lines: {
|
|
4401
|
+
/**
|
|
4402
|
+
* URL to get the invoice lines of the invoice.
|
|
4403
|
+
*/
|
|
4404
|
+
url: string;
|
|
4405
|
+
};
|
|
4406
|
+
categories: {
|
|
4407
|
+
/**
|
|
4408
|
+
* URL to get the categories of the invoice.
|
|
4409
|
+
*/
|
|
4410
|
+
url: string;
|
|
4411
|
+
};
|
|
4412
|
+
/**
|
|
4413
|
+
* This reconciles the invoice with a transaction. See documentation about [automatic payment matching](https://pennylane.readme.io/v2.0/docs/automating-payment-matching).
|
|
4414
|
+
*/
|
|
4415
|
+
transaction_reference: {
|
|
4416
|
+
/**
|
|
4417
|
+
* The banking provider for the transaction
|
|
4418
|
+
*/
|
|
4419
|
+
banking_provider: string;
|
|
4420
|
+
/**
|
|
4421
|
+
* Name of the field that you want to match
|
|
4422
|
+
*/
|
|
4423
|
+
provider_field_name: string;
|
|
4424
|
+
/**
|
|
4425
|
+
* Value that you want to match
|
|
4426
|
+
*/
|
|
4427
|
+
provider_field_value: string;
|
|
4428
|
+
} | null;
|
|
4429
|
+
payment_status: 'to_be_processed' | 'to_be_paid' | 'partially_paid' | 'payment_error' | 'payment_scheduled' | 'payment_in_progress' | 'payment_emitted' | 'payment_found' | 'paid_offline' | 'fully_paid';
|
|
4430
|
+
payments: {
|
|
4431
|
+
/**
|
|
4432
|
+
* URL to get the payments of the invoice.
|
|
4433
|
+
*/
|
|
4434
|
+
url: string;
|
|
4435
|
+
};
|
|
4436
|
+
matched_transactions: {
|
|
4437
|
+
/**
|
|
4438
|
+
* URL to get the transactions of the invoice.
|
|
4439
|
+
*/
|
|
4440
|
+
url: string;
|
|
4441
|
+
};
|
|
4442
|
+
/**
|
|
4443
|
+
* The unique external reference that was assigned during creation either by you or Pennylane
|
|
4444
|
+
*/
|
|
4445
|
+
external_reference: string;
|
|
4446
|
+
/**
|
|
4447
|
+
* E-invoicing lifecycle information managed by the PA.
|
|
4448
|
+
* Contains the current status and associated reason when applicable.
|
|
4449
|
+
* This field is only present for invoices received through e-invoicing.
|
|
4450
|
+
*
|
|
4451
|
+
*/
|
|
4452
|
+
e_invoicing: {
|
|
4453
|
+
status: 'waiting_for_validation' | 'approved' | 'rejected' | 'disputed' | 'refused' | 'collected' | 'partially_collected';
|
|
4454
|
+
reason: 'incorrect_vat_rate' | 'incorrect_unit_prices' | 'incorrect_billed_quantity' | 'incorrect_billed_item' | 'defective_delivered_item' | 'delivery_issue' | 'bank_details_error' | 'incorrect_payment_terms' | 'missing_legal_notice' | 'missing_contractual_reference' | 'recipient_error' | 'contract_completed' | 'duplicate_invoice' | 'incorrect_prices' | 'non_compliant_invoice' | null;
|
|
4455
|
+
} | null;
|
|
4456
|
+
/**
|
|
4457
|
+
* The time the invoice has been archived
|
|
4458
|
+
*/
|
|
4459
|
+
archived_at: string | null;
|
|
4460
|
+
/**
|
|
4461
|
+
* The time the invoice has been created
|
|
4462
|
+
*/
|
|
4463
|
+
created_at: string;
|
|
4464
|
+
/**
|
|
4465
|
+
* The last time the invoice has been updated
|
|
4466
|
+
*/
|
|
4467
|
+
updated_at: string;
|
|
4468
|
+
};
|
|
4274
4469
|
type CategoryGroupsResponse = {
|
|
4275
4470
|
id: number;
|
|
4276
4471
|
label: string;
|
|
@@ -23485,121 +23680,351 @@ type ValidateAccountingSupplierInvoiceResponses = {
|
|
|
23485
23680
|
};
|
|
23486
23681
|
};
|
|
23487
23682
|
type ValidateAccountingSupplierInvoiceResponse = ValidateAccountingSupplierInvoiceResponses[keyof ValidateAccountingSupplierInvoiceResponses];
|
|
23488
|
-
type
|
|
23489
|
-
body
|
|
23490
|
-
|
|
23491
|
-
|
|
23492
|
-
/**
|
|
23493
|
-
* Cursor for pagination. Use this to fetch the next set of results.
|
|
23494
|
-
* The cursor is an opaque string returned in the previous response's metadata.
|
|
23495
|
-
* Leave empty for the first request.
|
|
23496
|
-
*
|
|
23497
|
-
*/
|
|
23498
|
-
cursor?: string;
|
|
23499
|
-
/**
|
|
23500
|
-
* Number of items to return per request.
|
|
23501
|
-
* Defaults to 20 if not specified.
|
|
23502
|
-
* Must be between 1 and 100.
|
|
23503
|
-
*
|
|
23504
|
-
*/
|
|
23505
|
-
limit?: number;
|
|
23506
|
-
};
|
|
23507
|
-
url: '/api/external/v2/category_groups';
|
|
23508
|
-
};
|
|
23509
|
-
type GetCategoryGroupsErrors = {
|
|
23510
|
-
/**
|
|
23511
|
-
* Bad request
|
|
23512
|
-
*/
|
|
23513
|
-
400: {
|
|
23514
|
-
error: string;
|
|
23515
|
-
status: number;
|
|
23516
|
-
} | {
|
|
23517
|
-
message: string;
|
|
23518
|
-
} | {
|
|
23519
|
-
message: string;
|
|
23520
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23521
|
-
} | {
|
|
23522
|
-
message: string;
|
|
23523
|
-
field: string;
|
|
23524
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23683
|
+
type PutSupplierInvoiceEInvoiceStatusData = {
|
|
23684
|
+
body: {
|
|
23685
|
+
status: 'disputed';
|
|
23686
|
+
reason: 'incorrect_vat_rate' | 'incorrect_unit_prices' | 'incorrect_billed_quantity' | 'incorrect_billed_item' | 'defective_delivered_item' | 'delivery_issue' | 'bank_details_error' | 'incorrect_payment_terms' | 'missing_legal_notice' | 'missing_contractual_reference' | 'recipient_error';
|
|
23525
23687
|
} | {
|
|
23526
|
-
|
|
23527
|
-
|
|
23528
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23688
|
+
status: 'refused';
|
|
23689
|
+
reason: 'incorrect_vat_rate' | 'contract_completed' | 'duplicate_invoice' | 'recipient_error' | 'incorrect_prices' | 'non_compliant_invoice';
|
|
23529
23690
|
} | {
|
|
23530
|
-
|
|
23531
|
-
field: string;
|
|
23532
|
-
payload: string;
|
|
23533
|
-
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23534
|
-
};
|
|
23535
|
-
/**
|
|
23536
|
-
* Access token is missing or invalid
|
|
23537
|
-
*/
|
|
23538
|
-
401: {
|
|
23539
|
-
error: string;
|
|
23540
|
-
status: number;
|
|
23541
|
-
};
|
|
23542
|
-
/**
|
|
23543
|
-
* Access to this resource forbidden
|
|
23544
|
-
*/
|
|
23545
|
-
403: {
|
|
23546
|
-
error: string;
|
|
23547
|
-
status: number;
|
|
23548
|
-
};
|
|
23549
|
-
/**
|
|
23550
|
-
* The resource was not found
|
|
23551
|
-
*/
|
|
23552
|
-
404: {
|
|
23553
|
-
error: string;
|
|
23554
|
-
status: number;
|
|
23555
|
-
};
|
|
23556
|
-
};
|
|
23557
|
-
type GetCategoryGroupsError = GetCategoryGroupsErrors[keyof GetCategoryGroupsErrors];
|
|
23558
|
-
type GetCategoryGroupsResponses = {
|
|
23559
|
-
/**
|
|
23560
|
-
* OK
|
|
23561
|
-
*/
|
|
23562
|
-
200: {
|
|
23563
|
-
/**
|
|
23564
|
-
* Indicates whether additional results are available beyond this set.
|
|
23565
|
-
* Use this flag to determine if another request is needed.
|
|
23566
|
-
*
|
|
23567
|
-
*/
|
|
23568
|
-
has_more: boolean;
|
|
23569
|
-
/**
|
|
23570
|
-
* Cursor to retrieve the next set of results.
|
|
23571
|
-
* Include this value in the cursor parameter of your next request to fetch subsequent items.
|
|
23572
|
-
* A `null` `next_cursor` in the response indicates no further results.
|
|
23573
|
-
*
|
|
23574
|
-
*/
|
|
23575
|
-
next_cursor: string | null;
|
|
23576
|
-
items: Array<{
|
|
23577
|
-
id: number;
|
|
23578
|
-
label: string;
|
|
23579
|
-
categories: {
|
|
23580
|
-
/**
|
|
23581
|
-
* URL to get the categories of the group.
|
|
23582
|
-
*/
|
|
23583
|
-
url: string;
|
|
23584
|
-
};
|
|
23585
|
-
created_at: string;
|
|
23586
|
-
updated_at: string;
|
|
23587
|
-
}>;
|
|
23691
|
+
status: 'approved';
|
|
23588
23692
|
};
|
|
23589
|
-
};
|
|
23590
|
-
type GetCategoryGroupsResponse = GetCategoryGroupsResponses[keyof GetCategoryGroupsResponses];
|
|
23591
|
-
type GetCategoryGroupData = {
|
|
23592
|
-
body?: never;
|
|
23593
23693
|
path: {
|
|
23594
|
-
|
|
23595
|
-
* The unique identifier of the category group
|
|
23596
|
-
*/
|
|
23597
|
-
id: string;
|
|
23694
|
+
supplier_invoice_id: number;
|
|
23598
23695
|
};
|
|
23599
23696
|
query?: never;
|
|
23600
|
-
url: '/api/external/v2/
|
|
23697
|
+
url: '/api/external/v2/supplier_invoices/{supplier_invoice_id}/e_invoice_status';
|
|
23601
23698
|
};
|
|
23602
|
-
type
|
|
23699
|
+
type PutSupplierInvoiceEInvoiceStatusErrors = {
|
|
23700
|
+
/**
|
|
23701
|
+
* Bad request
|
|
23702
|
+
*/
|
|
23703
|
+
400: {
|
|
23704
|
+
error: string;
|
|
23705
|
+
status: number;
|
|
23706
|
+
} | {
|
|
23707
|
+
message: string;
|
|
23708
|
+
} | {
|
|
23709
|
+
message: string;
|
|
23710
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23711
|
+
} | {
|
|
23712
|
+
message: string;
|
|
23713
|
+
field: string;
|
|
23714
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23715
|
+
} | {
|
|
23716
|
+
message: string;
|
|
23717
|
+
payload: string;
|
|
23718
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23719
|
+
} | {
|
|
23720
|
+
message: string;
|
|
23721
|
+
field: string;
|
|
23722
|
+
payload: string;
|
|
23723
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23724
|
+
};
|
|
23725
|
+
/**
|
|
23726
|
+
* Access token is missing or invalid
|
|
23727
|
+
*/
|
|
23728
|
+
401: {
|
|
23729
|
+
error: string;
|
|
23730
|
+
status: number;
|
|
23731
|
+
};
|
|
23732
|
+
/**
|
|
23733
|
+
* Access to this resource forbidden
|
|
23734
|
+
*/
|
|
23735
|
+
403: {
|
|
23736
|
+
error: string;
|
|
23737
|
+
status: number;
|
|
23738
|
+
};
|
|
23739
|
+
/**
|
|
23740
|
+
* The resource was not found
|
|
23741
|
+
*/
|
|
23742
|
+
404: {
|
|
23743
|
+
error: string;
|
|
23744
|
+
status: number;
|
|
23745
|
+
};
|
|
23746
|
+
/**
|
|
23747
|
+
* Unprocessable content
|
|
23748
|
+
*/
|
|
23749
|
+
422: {
|
|
23750
|
+
error: string;
|
|
23751
|
+
status: number;
|
|
23752
|
+
};
|
|
23753
|
+
};
|
|
23754
|
+
type PutSupplierInvoiceEInvoiceStatusError = PutSupplierInvoiceEInvoiceStatusErrors[keyof PutSupplierInvoiceEInvoiceStatusErrors];
|
|
23755
|
+
type PutSupplierInvoiceEInvoiceStatusResponses = {
|
|
23756
|
+
/**
|
|
23757
|
+
* The updated supplier invoice
|
|
23758
|
+
*/
|
|
23759
|
+
200: {
|
|
23760
|
+
/**
|
|
23761
|
+
* The ID of the supplier invoice
|
|
23762
|
+
*/
|
|
23763
|
+
id: number;
|
|
23764
|
+
label: string | null;
|
|
23765
|
+
invoice_number: string;
|
|
23766
|
+
currency: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
|
|
23767
|
+
/**
|
|
23768
|
+
* Invoice amount (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.
|
|
23769
|
+
*/
|
|
23770
|
+
amount: string;
|
|
23771
|
+
/**
|
|
23772
|
+
* Invoice currency amount (total value of the invoice in the currency of the invoice)
|
|
23773
|
+
*/
|
|
23774
|
+
currency_amount: string;
|
|
23775
|
+
/**
|
|
23776
|
+
* Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)
|
|
23777
|
+
*/
|
|
23778
|
+
currency_amount_before_tax: string;
|
|
23779
|
+
/**
|
|
23780
|
+
* Invoice exchange rate (used to convert the invoice to euros. If the invoice currency is euro it will be 1.0)
|
|
23781
|
+
*/
|
|
23782
|
+
exchange_rate: string;
|
|
23783
|
+
/**
|
|
23784
|
+
* Invoice issue date (ISO 8601)
|
|
23785
|
+
*/
|
|
23786
|
+
date: string | null;
|
|
23787
|
+
/**
|
|
23788
|
+
* Invoice payment deadline (ISO 8601)
|
|
23789
|
+
*/
|
|
23790
|
+
deadline: string | null;
|
|
23791
|
+
/**
|
|
23792
|
+
* Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
|
|
23793
|
+
*/
|
|
23794
|
+
currency_tax: string;
|
|
23795
|
+
/**
|
|
23796
|
+
* Invoice taxable amount (in invoice currency)
|
|
23797
|
+
*/
|
|
23798
|
+
tax: string;
|
|
23799
|
+
/**
|
|
23800
|
+
* Whether the invoice has been reconciled or not
|
|
23801
|
+
*/
|
|
23802
|
+
reconciled: boolean;
|
|
23803
|
+
/**
|
|
23804
|
+
* The accounting state of the invoice.
|
|
23805
|
+
* - `draft`: The invoice is not yet sent to the accountant.
|
|
23806
|
+
* - `archived`: The invoice has been archived.
|
|
23807
|
+
* - `entry`: The invoice is incomplete. Some information is missing on the invoice and needs to be completed by SME.
|
|
23808
|
+
* - `validation_needed`: The invoice is sent to the accountant and needs validation.
|
|
23809
|
+
* - `complete`: The invoice has been validated by the accountant.
|
|
23810
|
+
*
|
|
23811
|
+
*/
|
|
23812
|
+
accounting_status: 'draft' | 'archived' | 'entry' | 'validation_needed' | 'complete';
|
|
23813
|
+
/**
|
|
23814
|
+
* Name of the file attached to the invoice
|
|
23815
|
+
*/
|
|
23816
|
+
filename: string | null;
|
|
23817
|
+
/**
|
|
23818
|
+
* Public URL of the invoice file. The URL will expire after 30 minutes.
|
|
23819
|
+
*/
|
|
23820
|
+
public_file_url: string | null;
|
|
23821
|
+
/**
|
|
23822
|
+
* The remaining amount with VAT to pay for the invoice to be considered paid
|
|
23823
|
+
*/
|
|
23824
|
+
remaining_amount_with_tax: string | null;
|
|
23825
|
+
/**
|
|
23826
|
+
* The remaining amount without VAT to pay for the invoice to be considered paid
|
|
23827
|
+
*/
|
|
23828
|
+
remaining_amount_without_tax: string | null;
|
|
23829
|
+
ledger_entry: {
|
|
23830
|
+
/**
|
|
23831
|
+
* Ledger entry identifier
|
|
23832
|
+
*/
|
|
23833
|
+
id: number;
|
|
23834
|
+
};
|
|
23835
|
+
supplier: {
|
|
23836
|
+
id: number;
|
|
23837
|
+
/**
|
|
23838
|
+
* URL to get the supplier.
|
|
23839
|
+
*/
|
|
23840
|
+
url: string;
|
|
23841
|
+
} | null;
|
|
23842
|
+
invoice_lines: {
|
|
23843
|
+
/**
|
|
23844
|
+
* URL to get the invoice lines of the invoice.
|
|
23845
|
+
*/
|
|
23846
|
+
url: string;
|
|
23847
|
+
};
|
|
23848
|
+
categories: {
|
|
23849
|
+
/**
|
|
23850
|
+
* URL to get the categories of the invoice.
|
|
23851
|
+
*/
|
|
23852
|
+
url: string;
|
|
23853
|
+
};
|
|
23854
|
+
/**
|
|
23855
|
+
* This reconciles the invoice with a transaction. See documentation about [automatic payment matching](https://pennylane.readme.io/v2.0/docs/automating-payment-matching).
|
|
23856
|
+
*/
|
|
23857
|
+
transaction_reference: {
|
|
23858
|
+
/**
|
|
23859
|
+
* The banking provider for the transaction
|
|
23860
|
+
*/
|
|
23861
|
+
banking_provider: string;
|
|
23862
|
+
/**
|
|
23863
|
+
* Name of the field that you want to match
|
|
23864
|
+
*/
|
|
23865
|
+
provider_field_name: string;
|
|
23866
|
+
/**
|
|
23867
|
+
* Value that you want to match
|
|
23868
|
+
*/
|
|
23869
|
+
provider_field_value: string;
|
|
23870
|
+
} | null;
|
|
23871
|
+
payment_status: 'to_be_processed' | 'to_be_paid' | 'partially_paid' | 'payment_error' | 'payment_scheduled' | 'payment_in_progress' | 'payment_emitted' | 'payment_found' | 'paid_offline' | 'fully_paid';
|
|
23872
|
+
payments: {
|
|
23873
|
+
/**
|
|
23874
|
+
* URL to get the payments of the invoice.
|
|
23875
|
+
*/
|
|
23876
|
+
url: string;
|
|
23877
|
+
};
|
|
23878
|
+
matched_transactions: {
|
|
23879
|
+
/**
|
|
23880
|
+
* URL to get the transactions of the invoice.
|
|
23881
|
+
*/
|
|
23882
|
+
url: string;
|
|
23883
|
+
};
|
|
23884
|
+
/**
|
|
23885
|
+
* The unique external reference that was assigned during creation either by you or Pennylane
|
|
23886
|
+
*/
|
|
23887
|
+
external_reference: string;
|
|
23888
|
+
/**
|
|
23889
|
+
* E-invoicing lifecycle information managed by the PA.
|
|
23890
|
+
* Contains the current status and associated reason when applicable.
|
|
23891
|
+
* This field is only present for invoices received through e-invoicing.
|
|
23892
|
+
*
|
|
23893
|
+
*/
|
|
23894
|
+
e_invoicing: {
|
|
23895
|
+
status: 'waiting_for_validation' | 'approved' | 'rejected' | 'disputed' | 'refused' | 'collected' | 'partially_collected';
|
|
23896
|
+
reason: 'incorrect_vat_rate' | 'incorrect_unit_prices' | 'incorrect_billed_quantity' | 'incorrect_billed_item' | 'defective_delivered_item' | 'delivery_issue' | 'bank_details_error' | 'incorrect_payment_terms' | 'missing_legal_notice' | 'missing_contractual_reference' | 'recipient_error' | 'contract_completed' | 'duplicate_invoice' | 'incorrect_prices' | 'non_compliant_invoice' | null;
|
|
23897
|
+
} | null;
|
|
23898
|
+
/**
|
|
23899
|
+
* The time the invoice has been archived
|
|
23900
|
+
*/
|
|
23901
|
+
archived_at: string | null;
|
|
23902
|
+
/**
|
|
23903
|
+
* The time the invoice has been created
|
|
23904
|
+
*/
|
|
23905
|
+
created_at: string;
|
|
23906
|
+
/**
|
|
23907
|
+
* The last time the invoice has been updated
|
|
23908
|
+
*/
|
|
23909
|
+
updated_at: string;
|
|
23910
|
+
};
|
|
23911
|
+
};
|
|
23912
|
+
type PutSupplierInvoiceEInvoiceStatusResponse = PutSupplierInvoiceEInvoiceStatusResponses[keyof PutSupplierInvoiceEInvoiceStatusResponses];
|
|
23913
|
+
type GetCategoryGroupsData = {
|
|
23914
|
+
body?: never;
|
|
23915
|
+
path?: never;
|
|
23916
|
+
query?: {
|
|
23917
|
+
/**
|
|
23918
|
+
* Cursor for pagination. Use this to fetch the next set of results.
|
|
23919
|
+
* The cursor is an opaque string returned in the previous response's metadata.
|
|
23920
|
+
* Leave empty for the first request.
|
|
23921
|
+
*
|
|
23922
|
+
*/
|
|
23923
|
+
cursor?: string;
|
|
23924
|
+
/**
|
|
23925
|
+
* Number of items to return per request.
|
|
23926
|
+
* Defaults to 20 if not specified.
|
|
23927
|
+
* Must be between 1 and 100.
|
|
23928
|
+
*
|
|
23929
|
+
*/
|
|
23930
|
+
limit?: number;
|
|
23931
|
+
};
|
|
23932
|
+
url: '/api/external/v2/category_groups';
|
|
23933
|
+
};
|
|
23934
|
+
type GetCategoryGroupsErrors = {
|
|
23935
|
+
/**
|
|
23936
|
+
* Bad request
|
|
23937
|
+
*/
|
|
23938
|
+
400: {
|
|
23939
|
+
error: string;
|
|
23940
|
+
status: number;
|
|
23941
|
+
} | {
|
|
23942
|
+
message: string;
|
|
23943
|
+
} | {
|
|
23944
|
+
message: string;
|
|
23945
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23946
|
+
} | {
|
|
23947
|
+
message: string;
|
|
23948
|
+
field: string;
|
|
23949
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23950
|
+
} | {
|
|
23951
|
+
message: string;
|
|
23952
|
+
payload: string;
|
|
23953
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23954
|
+
} | {
|
|
23955
|
+
message: string;
|
|
23956
|
+
field: string;
|
|
23957
|
+
payload: string;
|
|
23958
|
+
code: 'InvalidDateFormat' | 'InvalidDateTimeFormat' | 'InvalidEmailFormat' | 'InvalidPattern' | 'InvalidUUIDFormat' | 'LessThanExclusiveMinimum' | 'LessThanMinimum' | 'LessThanMinItems' | 'LessThanMinLength' | 'MoreThanExclusiveMaximum' | 'MoreThanMaximum' | 'MoreThanMaxItems' | 'MoreThanMaxLength' | 'NotAMultipartFile' | 'NotAnyOf' | 'NotEnumInclude' | 'NotExistContentTypeDefinition' | 'NotExistDiscriminatorMappedSchema' | 'NotExistDiscriminatorPropertyName' | 'NotExistPropertyDefinition' | 'NotExistRequiredKey' | 'NotExistStatusCodeDefinition' | 'NotNullError' | 'NotOneOf' | 'ValidateError';
|
|
23959
|
+
};
|
|
23960
|
+
/**
|
|
23961
|
+
* Access token is missing or invalid
|
|
23962
|
+
*/
|
|
23963
|
+
401: {
|
|
23964
|
+
error: string;
|
|
23965
|
+
status: number;
|
|
23966
|
+
};
|
|
23967
|
+
/**
|
|
23968
|
+
* Access to this resource forbidden
|
|
23969
|
+
*/
|
|
23970
|
+
403: {
|
|
23971
|
+
error: string;
|
|
23972
|
+
status: number;
|
|
23973
|
+
};
|
|
23974
|
+
/**
|
|
23975
|
+
* The resource was not found
|
|
23976
|
+
*/
|
|
23977
|
+
404: {
|
|
23978
|
+
error: string;
|
|
23979
|
+
status: number;
|
|
23980
|
+
};
|
|
23981
|
+
};
|
|
23982
|
+
type GetCategoryGroupsError = GetCategoryGroupsErrors[keyof GetCategoryGroupsErrors];
|
|
23983
|
+
type GetCategoryGroupsResponses = {
|
|
23984
|
+
/**
|
|
23985
|
+
* OK
|
|
23986
|
+
*/
|
|
23987
|
+
200: {
|
|
23988
|
+
/**
|
|
23989
|
+
* Indicates whether additional results are available beyond this set.
|
|
23990
|
+
* Use this flag to determine if another request is needed.
|
|
23991
|
+
*
|
|
23992
|
+
*/
|
|
23993
|
+
has_more: boolean;
|
|
23994
|
+
/**
|
|
23995
|
+
* Cursor to retrieve the next set of results.
|
|
23996
|
+
* Include this value in the cursor parameter of your next request to fetch subsequent items.
|
|
23997
|
+
* A `null` `next_cursor` in the response indicates no further results.
|
|
23998
|
+
*
|
|
23999
|
+
*/
|
|
24000
|
+
next_cursor: string | null;
|
|
24001
|
+
items: Array<{
|
|
24002
|
+
id: number;
|
|
24003
|
+
label: string;
|
|
24004
|
+
categories: {
|
|
24005
|
+
/**
|
|
24006
|
+
* URL to get the categories of the group.
|
|
24007
|
+
*/
|
|
24008
|
+
url: string;
|
|
24009
|
+
};
|
|
24010
|
+
created_at: string;
|
|
24011
|
+
updated_at: string;
|
|
24012
|
+
}>;
|
|
24013
|
+
};
|
|
24014
|
+
};
|
|
24015
|
+
type GetCategoryGroupsResponse = GetCategoryGroupsResponses[keyof GetCategoryGroupsResponses];
|
|
24016
|
+
type GetCategoryGroupData = {
|
|
24017
|
+
body?: never;
|
|
24018
|
+
path: {
|
|
24019
|
+
/**
|
|
24020
|
+
* The unique identifier of the category group
|
|
24021
|
+
*/
|
|
24022
|
+
id: string;
|
|
24023
|
+
};
|
|
24024
|
+
query?: never;
|
|
24025
|
+
url: '/api/external/v2/category_groups/{id}';
|
|
24026
|
+
};
|
|
24027
|
+
type GetCategoryGroupErrors = {
|
|
23603
24028
|
/**
|
|
23604
24029
|
* Bad request
|
|
23605
24030
|
*/
|
|
@@ -38047,6 +38472,317 @@ declare const SupplierInvoices__EInvoices__Imports__ImportOptionsSchema: {
|
|
|
38047
38472
|
};
|
|
38048
38473
|
};
|
|
38049
38474
|
};
|
|
38475
|
+
declare const SupplierInvoicePDPDisputeReasonSchema: {
|
|
38476
|
+
readonly type: "string";
|
|
38477
|
+
readonly enum: readonly ["incorrect_vat_rate", "incorrect_unit_prices", "incorrect_billed_quantity", "incorrect_billed_item", "defective_delivered_item", "delivery_issue", "bank_details_error", "incorrect_payment_terms", "missing_legal_notice", "missing_contractual_reference", "recipient_error"];
|
|
38478
|
+
};
|
|
38479
|
+
declare const SupplierInvoices__EInvoiceStatus__DisputeRequestSchema: {
|
|
38480
|
+
readonly title: "Dispute";
|
|
38481
|
+
readonly type: "object";
|
|
38482
|
+
readonly additionalProperties: false;
|
|
38483
|
+
readonly properties: {
|
|
38484
|
+
readonly status: {
|
|
38485
|
+
readonly type: "string";
|
|
38486
|
+
readonly enum: readonly ["disputed"];
|
|
38487
|
+
};
|
|
38488
|
+
readonly reason: {
|
|
38489
|
+
readonly type: "string";
|
|
38490
|
+
readonly enum: readonly ["incorrect_vat_rate", "incorrect_unit_prices", "incorrect_billed_quantity", "incorrect_billed_item", "defective_delivered_item", "delivery_issue", "bank_details_error", "incorrect_payment_terms", "missing_legal_notice", "missing_contractual_reference", "recipient_error"];
|
|
38491
|
+
};
|
|
38492
|
+
};
|
|
38493
|
+
readonly required: readonly ["status", "reason"];
|
|
38494
|
+
};
|
|
38495
|
+
declare const SupplierInvoicePDPRefuseReasonSchema: {
|
|
38496
|
+
readonly type: "string";
|
|
38497
|
+
readonly enum: readonly ["incorrect_vat_rate", "contract_completed", "duplicate_invoice", "recipient_error", "incorrect_prices", "non_compliant_invoice"];
|
|
38498
|
+
};
|
|
38499
|
+
declare const SupplierInvoices__EInvoiceStatus__RefuseRequestSchema: {
|
|
38500
|
+
readonly title: "Refuse";
|
|
38501
|
+
readonly type: "object";
|
|
38502
|
+
readonly additionalProperties: false;
|
|
38503
|
+
readonly properties: {
|
|
38504
|
+
readonly status: {
|
|
38505
|
+
readonly type: "string";
|
|
38506
|
+
readonly enum: readonly ["refused"];
|
|
38507
|
+
};
|
|
38508
|
+
readonly reason: {
|
|
38509
|
+
readonly type: "string";
|
|
38510
|
+
readonly enum: readonly ["incorrect_vat_rate", "contract_completed", "duplicate_invoice", "recipient_error", "incorrect_prices", "non_compliant_invoice"];
|
|
38511
|
+
};
|
|
38512
|
+
};
|
|
38513
|
+
readonly required: readonly ["status", "reason"];
|
|
38514
|
+
};
|
|
38515
|
+
declare const SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema: {
|
|
38516
|
+
readonly title: "Undispute";
|
|
38517
|
+
readonly type: "object";
|
|
38518
|
+
readonly additionalProperties: false;
|
|
38519
|
+
readonly properties: {
|
|
38520
|
+
readonly status: {
|
|
38521
|
+
readonly type: "string";
|
|
38522
|
+
readonly enum: readonly ["approved"];
|
|
38523
|
+
};
|
|
38524
|
+
};
|
|
38525
|
+
readonly required: readonly ["status"];
|
|
38526
|
+
};
|
|
38527
|
+
declare const SupplierInvoices__EInvoiceStatus__ResponseSchema: {
|
|
38528
|
+
readonly type: "object";
|
|
38529
|
+
readonly additionalProperties: false;
|
|
38530
|
+
readonly properties: {
|
|
38531
|
+
readonly id: {
|
|
38532
|
+
readonly description: "The ID of the supplier invoice";
|
|
38533
|
+
readonly type: "integer";
|
|
38534
|
+
readonly format: "int64";
|
|
38535
|
+
readonly example: 123;
|
|
38536
|
+
};
|
|
38537
|
+
readonly label: {
|
|
38538
|
+
readonly type: "string";
|
|
38539
|
+
readonly nullable: true;
|
|
38540
|
+
readonly example: "Demo label";
|
|
38541
|
+
};
|
|
38542
|
+
readonly invoice_number: {
|
|
38543
|
+
readonly type: "string";
|
|
38544
|
+
readonly example: "F20230001";
|
|
38545
|
+
};
|
|
38546
|
+
readonly currency: {
|
|
38547
|
+
readonly type: "string";
|
|
38548
|
+
readonly default: "EUR";
|
|
38549
|
+
readonly enum: readonly ["EUR", "USD", "GBP", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYN", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CLF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MRU", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SLE", "SOS", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMK", "ZMW", "ZWL"];
|
|
38550
|
+
};
|
|
38551
|
+
readonly amount: {
|
|
38552
|
+
readonly description: "Invoice amount (total value of the invoice in euros). If the currency is euro, `currency_amount` and `amount` are identical.";
|
|
38553
|
+
readonly type: "string";
|
|
38554
|
+
readonly example: "230.32";
|
|
38555
|
+
};
|
|
38556
|
+
readonly currency_amount: {
|
|
38557
|
+
readonly description: "Invoice currency amount (total value of the invoice in the currency of the invoice)";
|
|
38558
|
+
readonly type: "string";
|
|
38559
|
+
readonly example: "230.32";
|
|
38560
|
+
};
|
|
38561
|
+
readonly currency_amount_before_tax: {
|
|
38562
|
+
readonly description: "Invoice currency amount before tax (total value before tax of the invoice in the currency of the invoice)";
|
|
38563
|
+
readonly type: "string";
|
|
38564
|
+
readonly example: "196.32";
|
|
38565
|
+
};
|
|
38566
|
+
readonly exchange_rate: {
|
|
38567
|
+
readonly description: "Invoice exchange rate (used to convert the invoice to euros. If the invoice currency is euro it will be 1.0)";
|
|
38568
|
+
readonly type: "string";
|
|
38569
|
+
readonly example: "1.0";
|
|
38570
|
+
};
|
|
38571
|
+
readonly date: {
|
|
38572
|
+
readonly description: "Invoice issue date (ISO 8601)";
|
|
38573
|
+
readonly type: "string";
|
|
38574
|
+
readonly format: "date";
|
|
38575
|
+
readonly nullable: true;
|
|
38576
|
+
readonly example: "2023-08-30";
|
|
38577
|
+
};
|
|
38578
|
+
readonly deadline: {
|
|
38579
|
+
readonly description: "Invoice payment deadline (ISO 8601)";
|
|
38580
|
+
readonly type: "string";
|
|
38581
|
+
readonly format: "date";
|
|
38582
|
+
readonly nullable: true;
|
|
38583
|
+
readonly example: "2023-09-30";
|
|
38584
|
+
};
|
|
38585
|
+
readonly currency_tax: {
|
|
38586
|
+
readonly description: "Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.";
|
|
38587
|
+
readonly type: "string";
|
|
38588
|
+
readonly example: "34.0";
|
|
38589
|
+
};
|
|
38590
|
+
readonly tax: {
|
|
38591
|
+
readonly description: "Invoice taxable amount (in invoice currency)";
|
|
38592
|
+
readonly type: "string";
|
|
38593
|
+
readonly example: "34.0";
|
|
38594
|
+
};
|
|
38595
|
+
readonly reconciled: {
|
|
38596
|
+
readonly description: "Whether the invoice has been reconciled or not";
|
|
38597
|
+
readonly type: "boolean";
|
|
38598
|
+
readonly example: false;
|
|
38599
|
+
};
|
|
38600
|
+
readonly accounting_status: {
|
|
38601
|
+
readonly description: "The accounting state of the invoice.\n- `draft`: The invoice is not yet sent to the accountant.\n- `archived`: The invoice has been archived.\n- `entry`: The invoice is incomplete. Some information is missing on the invoice and needs to be completed by SME.\n- `validation_needed`: The invoice is sent to the accountant and needs validation.\n- `complete`: The invoice has been validated by the accountant.\n";
|
|
38602
|
+
readonly type: "string";
|
|
38603
|
+
readonly enum: readonly ["draft", "archived", "entry", "validation_needed", "complete"];
|
|
38604
|
+
};
|
|
38605
|
+
readonly filename: {
|
|
38606
|
+
readonly description: "Name of the file attached to the invoice";
|
|
38607
|
+
readonly type: "string";
|
|
38608
|
+
readonly nullable: true;
|
|
38609
|
+
readonly example: "my_file.pdf";
|
|
38610
|
+
};
|
|
38611
|
+
readonly public_file_url: {
|
|
38612
|
+
readonly description: "Public URL of the invoice file. The URL will expire after 30 minutes.";
|
|
38613
|
+
readonly type: "string";
|
|
38614
|
+
readonly nullable: true;
|
|
38615
|
+
readonly example: "https://app.pennylane.com/public/invoice/pdf?encrypted_id=bzjoVJe...3D%3D";
|
|
38616
|
+
};
|
|
38617
|
+
readonly remaining_amount_with_tax: {
|
|
38618
|
+
readonly description: "The remaining amount with VAT to pay for the invoice to be considered paid";
|
|
38619
|
+
readonly type: "string";
|
|
38620
|
+
readonly nullable: true;
|
|
38621
|
+
readonly example: "20.0";
|
|
38622
|
+
};
|
|
38623
|
+
readonly remaining_amount_without_tax: {
|
|
38624
|
+
readonly description: "The remaining amount without VAT to pay for the invoice to be considered paid";
|
|
38625
|
+
readonly type: "string";
|
|
38626
|
+
readonly nullable: true;
|
|
38627
|
+
readonly example: "16.0";
|
|
38628
|
+
};
|
|
38629
|
+
readonly ledger_entry: {
|
|
38630
|
+
readonly type: "object";
|
|
38631
|
+
readonly additionalProperties: false;
|
|
38632
|
+
readonly properties: {
|
|
38633
|
+
readonly id: {
|
|
38634
|
+
readonly description: "Ledger entry identifier";
|
|
38635
|
+
readonly type: "integer";
|
|
38636
|
+
readonly format: "int64";
|
|
38637
|
+
readonly example: 42003;
|
|
38638
|
+
};
|
|
38639
|
+
};
|
|
38640
|
+
readonly required: readonly ["id"];
|
|
38641
|
+
};
|
|
38642
|
+
readonly supplier: {
|
|
38643
|
+
readonly type: "object";
|
|
38644
|
+
readonly nullable: true;
|
|
38645
|
+
readonly additionalProperties: false;
|
|
38646
|
+
readonly properties: {
|
|
38647
|
+
readonly id: {
|
|
38648
|
+
readonly type: "integer";
|
|
38649
|
+
readonly format: "int64";
|
|
38650
|
+
readonly example: 456;
|
|
38651
|
+
};
|
|
38652
|
+
readonly url: {
|
|
38653
|
+
readonly description: "URL to get the supplier.";
|
|
38654
|
+
readonly type: "string";
|
|
38655
|
+
readonly example: "https://app.pennylane.com/api/external/v2/suppliers/42";
|
|
38656
|
+
};
|
|
38657
|
+
};
|
|
38658
|
+
readonly required: readonly ["id", "url"];
|
|
38659
|
+
};
|
|
38660
|
+
readonly invoice_lines: {
|
|
38661
|
+
readonly type: "object";
|
|
38662
|
+
readonly additionalProperties: false;
|
|
38663
|
+
readonly properties: {
|
|
38664
|
+
readonly url: {
|
|
38665
|
+
readonly description: "URL to get the invoice lines of the invoice.";
|
|
38666
|
+
readonly type: "string";
|
|
38667
|
+
readonly example: "https://app.pennylane.com/api/external/v2/supplier_invoices/42/invoice_lines";
|
|
38668
|
+
};
|
|
38669
|
+
};
|
|
38670
|
+
readonly required: readonly ["url"];
|
|
38671
|
+
};
|
|
38672
|
+
readonly categories: {
|
|
38673
|
+
readonly type: "object";
|
|
38674
|
+
readonly additionalProperties: false;
|
|
38675
|
+
readonly properties: {
|
|
38676
|
+
readonly url: {
|
|
38677
|
+
readonly description: "URL to get the categories of the invoice.";
|
|
38678
|
+
readonly type: "string";
|
|
38679
|
+
readonly example: "https://app.pennylane.com/api/external/v2/supplier_invoices/42/categories";
|
|
38680
|
+
};
|
|
38681
|
+
};
|
|
38682
|
+
readonly required: readonly ["url"];
|
|
38683
|
+
};
|
|
38684
|
+
readonly transaction_reference: {
|
|
38685
|
+
readonly description: "This reconciles the invoice with a transaction. See documentation about [automatic payment matching](https://pennylane.readme.io/v2.0/docs/automating-payment-matching).";
|
|
38686
|
+
readonly type: "object";
|
|
38687
|
+
readonly nullable: true;
|
|
38688
|
+
readonly additionalProperties: false;
|
|
38689
|
+
readonly properties: {
|
|
38690
|
+
readonly banking_provider: {
|
|
38691
|
+
readonly description: "The banking provider for the transaction";
|
|
38692
|
+
readonly type: "string";
|
|
38693
|
+
readonly example: "bank";
|
|
38694
|
+
};
|
|
38695
|
+
readonly provider_field_name: {
|
|
38696
|
+
readonly description: "Name of the field that you want to match";
|
|
38697
|
+
readonly type: "string";
|
|
38698
|
+
readonly example: "label";
|
|
38699
|
+
};
|
|
38700
|
+
readonly provider_field_value: {
|
|
38701
|
+
readonly description: "Value that you want to match";
|
|
38702
|
+
readonly type: "string";
|
|
38703
|
+
readonly example: "invoice_number";
|
|
38704
|
+
};
|
|
38705
|
+
};
|
|
38706
|
+
readonly required: readonly ["banking_provider", "provider_field_name", "provider_field_value"];
|
|
38707
|
+
};
|
|
38708
|
+
readonly payment_status: {
|
|
38709
|
+
readonly type: "string";
|
|
38710
|
+
readonly enum: readonly ["to_be_processed", "to_be_paid", "partially_paid", "payment_error", "payment_scheduled", "payment_in_progress", "payment_emitted", "payment_found", "paid_offline", "fully_paid"];
|
|
38711
|
+
};
|
|
38712
|
+
readonly payments: {
|
|
38713
|
+
readonly type: "object";
|
|
38714
|
+
readonly additionalProperties: false;
|
|
38715
|
+
readonly properties: {
|
|
38716
|
+
readonly url: {
|
|
38717
|
+
readonly description: "URL to get the payments of the invoice.";
|
|
38718
|
+
readonly type: "string";
|
|
38719
|
+
readonly example: "https://app.pennylane.com/api/external/v2/supplier_invoices/42/payments";
|
|
38720
|
+
};
|
|
38721
|
+
};
|
|
38722
|
+
readonly required: readonly ["url"];
|
|
38723
|
+
};
|
|
38724
|
+
readonly matched_transactions: {
|
|
38725
|
+
readonly type: "object";
|
|
38726
|
+
readonly additionalProperties: false;
|
|
38727
|
+
readonly properties: {
|
|
38728
|
+
readonly url: {
|
|
38729
|
+
readonly description: "URL to get the transactions of the invoice.";
|
|
38730
|
+
readonly type: "string";
|
|
38731
|
+
readonly example: "https://app.pennylane.com/api/external/v2/supplier_invoices/42/matched_transactions";
|
|
38732
|
+
};
|
|
38733
|
+
};
|
|
38734
|
+
readonly required: readonly ["url"];
|
|
38735
|
+
};
|
|
38736
|
+
readonly external_reference: {
|
|
38737
|
+
readonly description: "The unique external reference that was assigned during creation either by you or Pennylane";
|
|
38738
|
+
readonly type: "string";
|
|
38739
|
+
readonly example: "FR123";
|
|
38740
|
+
};
|
|
38741
|
+
readonly e_invoicing: {
|
|
38742
|
+
readonly description: "E-invoicing lifecycle information managed by the PA.\nContains the current status and associated reason when applicable.\nThis field is only present for invoices received through e-invoicing.\n";
|
|
38743
|
+
readonly type: "object";
|
|
38744
|
+
readonly nullable: true;
|
|
38745
|
+
readonly additionalProperties: false;
|
|
38746
|
+
readonly properties: {
|
|
38747
|
+
readonly status: {
|
|
38748
|
+
readonly type: "string";
|
|
38749
|
+
readonly enum: readonly ["waiting_for_validation", "approved", "rejected", "disputed", "refused", "collected", "partially_collected"];
|
|
38750
|
+
};
|
|
38751
|
+
readonly reason: {
|
|
38752
|
+
readonly anyOf: readonly [{
|
|
38753
|
+
readonly type: "string";
|
|
38754
|
+
readonly enum: readonly ["incorrect_vat_rate", "incorrect_unit_prices", "incorrect_billed_quantity", "incorrect_billed_item", "defective_delivered_item", "delivery_issue", "bank_details_error", "incorrect_payment_terms", "missing_legal_notice", "missing_contractual_reference", "recipient_error", "contract_completed", "duplicate_invoice", "incorrect_prices", "non_compliant_invoice"];
|
|
38755
|
+
}, {
|
|
38756
|
+
readonly nullable: true;
|
|
38757
|
+
readonly type: "string";
|
|
38758
|
+
readonly enum: readonly [null];
|
|
38759
|
+
}];
|
|
38760
|
+
};
|
|
38761
|
+
};
|
|
38762
|
+
readonly required: readonly ["status", "reason"];
|
|
38763
|
+
};
|
|
38764
|
+
readonly archived_at: {
|
|
38765
|
+
readonly description: "The time the invoice has been archived";
|
|
38766
|
+
readonly type: "string";
|
|
38767
|
+
readonly format: "date-time";
|
|
38768
|
+
readonly nullable: true;
|
|
38769
|
+
readonly example: "2023-08-30T10:08:08.146343Z";
|
|
38770
|
+
};
|
|
38771
|
+
readonly created_at: {
|
|
38772
|
+
readonly description: "The time the invoice has been created";
|
|
38773
|
+
readonly type: "string";
|
|
38774
|
+
readonly format: "date-time";
|
|
38775
|
+
readonly example: "2023-08-30T10:08:08.146343Z";
|
|
38776
|
+
};
|
|
38777
|
+
readonly updated_at: {
|
|
38778
|
+
readonly description: "The last time the invoice has been updated";
|
|
38779
|
+
readonly type: "string";
|
|
38780
|
+
readonly format: "date-time";
|
|
38781
|
+
readonly example: "2023-08-30T10:08:08.146343Z";
|
|
38782
|
+
};
|
|
38783
|
+
};
|
|
38784
|
+
readonly required: readonly ["id", "label", "invoice_number", "currency", "amount", "currency_amount", "currency_amount_before_tax", "exchange_rate", "date", "deadline", "currency_tax", "tax", "reconciled", "accounting_status", "filename", "public_file_url", "remaining_amount_with_tax", "remaining_amount_without_tax", "ledger_entry", "supplier", "invoice_lines", "categories", "transaction_reference", "payment_status", "payments", "matched_transactions", "external_reference", "e_invoicing", "archived_at", "created_at", "updated_at"];
|
|
38785
|
+
};
|
|
38050
38786
|
declare const CategoryGroups__ResponseSchema: {
|
|
38051
38787
|
readonly type: "object";
|
|
38052
38788
|
readonly additionalProperties: false;
|
|
@@ -41495,6 +42231,17 @@ declare const createSupplierInvoiceEInvoiceImport: <ThrowOnError extends boolean
|
|
|
41495
42231
|
* > This endpoint requires the following scope: `supplier_invoices:all`
|
|
41496
42232
|
*/
|
|
41497
42233
|
declare const validateAccountingSupplierInvoice: <ThrowOnError extends boolean = false>(options: Options<ValidateAccountingSupplierInvoiceData, ThrowOnError>) => RequestResult<ValidateAccountingSupplierInvoiceResponses, ValidateAccountingSupplierInvoiceErrors, ThrowOnError, "fields">;
|
|
42234
|
+
/**
|
|
42235
|
+
* Update e-invoice status for a supplier invoice
|
|
42236
|
+
*
|
|
42237
|
+
* Applies an electronic invoicing lifecycle transition: dispute, refuse, or undispute (approved).
|
|
42238
|
+
* Dispute and refuse require a reason.
|
|
42239
|
+
*
|
|
42240
|
+
*
|
|
42241
|
+
* > ℹ️
|
|
42242
|
+
* > This endpoint requires the following scope: `supplier_invoices:all`
|
|
42243
|
+
*/
|
|
42244
|
+
declare const putSupplierInvoiceEInvoiceStatus: <ThrowOnError extends boolean = false>(options: Options<PutSupplierInvoiceEInvoiceStatusData, ThrowOnError>) => RequestResult<PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceEInvoiceStatusErrors, ThrowOnError, "fields">;
|
|
41498
42245
|
/**
|
|
41499
42246
|
* List category groups
|
|
41500
42247
|
*
|
|
@@ -42171,5 +42918,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
|
|
|
42171
42918
|
//#region src/index.d.ts
|
|
42172
42919
|
declare function createClientWithApiKey(apiKey: string): Client;
|
|
42173
42920
|
//#endregion
|
|
42174
|
-
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, CurrencySchema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SchemasCurrency, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getFileAttachments, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
42921
|
+
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccountsResponse, BankAccounts__ResponseSchema, BankEstablishmentsResponse, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptionsResponse, BillingSubscriptions__ResponseSchema, CategoriesResponse, Categories__ResponseSchema, CategoryGroupsResponse, CategoryGroups__ResponseSchema, type Client, type ClientOptions, CommercialDocumentsAppendicesResponse, CommercialDocumentsResponse, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomersResponse, CompanyCustomers__ResponseSchema, CompanyFiscalYearsData, CompanyFiscalYearsError, CompanyFiscalYearsErrors, CompanyFiscalYearsResponse, CompanyFiscalYearsResponses, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, type Config, type CreateClientConfig, CreateCustomerInvoiceEInvoiceImportData, CreateCustomerInvoiceEInvoiceImportError, CreateCustomerInvoiceEInvoiceImportErrors, CreateCustomerInvoiceEInvoiceImportResponse, CreateCustomerInvoiceEInvoiceImportResponses, CreateCustomerInvoiceFromQuoteData, CreateCustomerInvoiceFromQuoteError, CreateCustomerInvoiceFromQuoteErrors, CreateCustomerInvoiceFromQuoteResponse, CreateCustomerInvoiceFromQuoteResponses, CreateEInvoiceImportData, CreateEInvoiceImportError, CreateEInvoiceImportErrors, CreateEInvoiceImportResponse, CreateEInvoiceImportResponses, CreatePurchaseRequestImportData, CreatePurchaseRequestImportError, CreatePurchaseRequestImportErrors, CreatePurchaseRequestImportResponse, CreatePurchaseRequestImportResponses, CreateSupplierInvoiceEInvoiceImportData, CreateSupplierInvoiceEInvoiceImportError, CreateSupplierInvoiceEInvoiceImportErrors, CreateSupplierInvoiceEInvoiceImportResponse, CreateSupplierInvoiceEInvoiceImportResponses, CreateTransactionData, CreateTransactionError, CreateTransactionErrors, CreateTransactionResponse, CreateTransactionResponses, Currency, CurrencySchema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplatesResponse, CustomerInvoiceTemplates__ResponseSchema, CustomerInvoicesAppendicesResponse, CustomerInvoicesCategoriesResponse, CustomerInvoicesDraftInvoiceLineWithProductRequest, CustomerInvoicesDraftInvoiceLineWithoutProductRequest, CustomerInvoicesEInvoicesImportsImportOptions, CustomerInvoicesEInvoicesImportsImportOptionsInvoiceLine, CustomerInvoicesFinalizedInvoiceLineWithProductRequest, CustomerInvoicesFinalizedInvoiceLineWithoutProductRequest, CustomerInvoicesIncludedInvoiceLinesCollection, CustomerInvoicesInclusions, CustomerInvoicesInvoiceLine, CustomerInvoicesMatchedTransactionsCategoriesResponse, CustomerInvoicesMatchedTransactionsResponse, CustomerInvoicesPostDraftRequest, CustomerInvoicesPostFinalizedRequest, CustomerInvoicesPutDraftRequest, CustomerInvoicesPutFinalizedRequest, CustomerInvoicesResponse, CustomerInvoices__Appendices__ResponseSchema, CustomerInvoices__Categories__ResponseSchema, CustomerInvoices__DraftInvoiceLineWithProduct_RequestSchema, CustomerInvoices__DraftInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, CustomerInvoices__EInvoices__Imports__ImportOptionsSchema, CustomerInvoices__FinalizedInvoiceLineWithProduct_RequestSchema, CustomerInvoices__FinalizedInvoiceLineWithoutProduct_RequestSchema, CustomerInvoices__IncludedInvoiceLinesCollectionSchema, CustomerInvoices__InclusionsSchema, CustomerInvoices__InvoiceLineSchema, CustomerInvoices__MatchedTransactions__CategoriesResponseSchema, CustomerInvoices__MatchedTransactions__ResponseSchema, CustomerInvoices__PostDraft_RequestSchema, CustomerInvoices__PostFinalized_RequestSchema, CustomerInvoices__PutDraft_RequestSchema, CustomerInvoices__PutFinalized_RequestSchema, CustomerInvoices__ResponseSchema, CustomersCategoriesResponse, CustomersContactsResponse, CustomersResponse, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DeleteCustomerInvoiceMatchedTransactionsData, DeleteCustomerInvoiceMatchedTransactionsError, DeleteCustomerInvoiceMatchedTransactionsErrors, DeleteCustomerInvoiceMatchedTransactionsResponse, DeleteCustomerInvoiceMatchedTransactionsResponses, DeleteCustomerInvoicesData, DeleteCustomerInvoicesError, DeleteCustomerInvoicesErrors, DeleteCustomerInvoicesResponse, DeleteCustomerInvoicesResponses, DeleteLedgerEntryLinesUnletterData, DeleteLedgerEntryLinesUnletterError, DeleteLedgerEntryLinesUnletterErrors, DeleteLedgerEntryLinesUnletterResponse, DeleteLedgerEntryLinesUnletterResponses, DeleteSepaMandateData, DeleteSepaMandateError, DeleteSepaMandateErrors, DeleteSepaMandateResponse, DeleteSepaMandateResponses, DeleteSupplierInvoiceMatchedTransactionsData, DeleteSupplierInvoiceMatchedTransactionsError, DeleteSupplierInvoiceMatchedTransactionsErrors, DeleteSupplierInvoiceMatchedTransactionsResponse, DeleteSupplierInvoiceMatchedTransactionsResponses, DeleteWebhookSubscriptionData, DeleteWebhookSubscriptionError, DeleteWebhookSubscriptionErrors, DeleteWebhookSubscriptionResponse, DeleteWebhookSubscriptionResponses, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportAnalyticalGeneralLedgerData, ExportAnalyticalGeneralLedgerError, ExportAnalyticalGeneralLedgerErrors, ExportAnalyticalGeneralLedgerResponse, ExportAnalyticalGeneralLedgerResponses, ExportFecData, ExportFecError, ExportFecErrors, ExportFecResponse, ExportFecResponses, ExportGeneralLedgerData, ExportGeneralLedgerError, ExportGeneralLedgerErrors, ExportGeneralLedgerResponse, ExportGeneralLedgerResponses, ExportStatus, ExportStatusSchema, FileAttachmentsResponse, FileAttachments__ResponseSchema, FinalizeCustomerInvoiceData, FinalizeCustomerInvoiceError, FinalizeCustomerInvoiceErrors, FinalizeCustomerInvoiceResponse, FinalizeCustomerInvoiceResponses, GetAnalyticalGeneralLedgerExportData, GetAnalyticalGeneralLedgerExportError, GetAnalyticalGeneralLedgerExportErrors, GetAnalyticalGeneralLedgerExportResponse, GetAnalyticalGeneralLedgerExportResponses, GetBankAccountData, GetBankAccountError, GetBankAccountErrors, GetBankAccountResponse, GetBankAccountResponses, GetBankAccountsData, GetBankAccountsError, GetBankAccountsErrors, GetBankAccountsResponse, GetBankAccountsResponses, GetBankEstablishmentsData, GetBankEstablishmentsError, GetBankEstablishmentsErrors, GetBankEstablishmentsResponse, GetBankEstablishmentsResponses, GetBillingSubscriptionData, GetBillingSubscriptionError, GetBillingSubscriptionErrors, GetBillingSubscriptionInvoiceLineSectionsData, GetBillingSubscriptionInvoiceLineSectionsError, GetBillingSubscriptionInvoiceLineSectionsErrors, GetBillingSubscriptionInvoiceLineSectionsResponse, GetBillingSubscriptionInvoiceLineSectionsResponses, GetBillingSubscriptionInvoiceLinesData, GetBillingSubscriptionInvoiceLinesError, GetBillingSubscriptionInvoiceLinesErrors, GetBillingSubscriptionInvoiceLinesResponse, GetBillingSubscriptionInvoiceLinesResponses, GetBillingSubscriptionResponse, GetBillingSubscriptionResponses, GetBillingSubscriptionsData, GetBillingSubscriptionsError, GetBillingSubscriptionsErrors, GetBillingSubscriptionsResponse, GetBillingSubscriptionsResponses, GetCategoriesData, GetCategoriesError, GetCategoriesErrors, GetCategoriesResponse, GetCategoriesResponses, GetCategoryData, GetCategoryError, GetCategoryErrors, GetCategoryGroupCategoriesData, GetCategoryGroupCategoriesError, GetCategoryGroupCategoriesErrors, GetCategoryGroupCategoriesResponse, GetCategoryGroupCategoriesResponses, GetCategoryGroupData, GetCategoryGroupError, GetCategoryGroupErrors, GetCategoryGroupResponse, GetCategoryGroupResponses, GetCategoryGroupsData, GetCategoryGroupsError, GetCategoryGroupsErrors, GetCategoryGroupsResponse, GetCategoryGroupsResponses, GetCategoryResponse, GetCategoryResponses, GetCommercialDocumentAppendicesData, GetCommercialDocumentAppendicesError, GetCommercialDocumentAppendicesErrors, GetCommercialDocumentAppendicesResponse, GetCommercialDocumentAppendicesResponses, GetCommercialDocumentData, GetCommercialDocumentError, GetCommercialDocumentErrors, GetCommercialDocumentInvoiceLineSectionsData, GetCommercialDocumentInvoiceLineSectionsError, GetCommercialDocumentInvoiceLineSectionsErrors, GetCommercialDocumentInvoiceLineSectionsResponse, GetCommercialDocumentInvoiceLineSectionsResponses, GetCommercialDocumentInvoiceLinesData, GetCommercialDocumentInvoiceLinesError, GetCommercialDocumentInvoiceLinesErrors, GetCommercialDocumentInvoiceLinesResponse, GetCommercialDocumentInvoiceLinesResponses, GetCommercialDocumentResponse, GetCommercialDocumentResponses, GetCompanyCustomerData, GetCompanyCustomerError, GetCompanyCustomerErrors, GetCompanyCustomerResponse, GetCompanyCustomerResponses, GetCustomerCategoriesData, GetCustomerCategoriesError, GetCustomerCategoriesErrors, GetCustomerCategoriesResponse, GetCustomerCategoriesResponses, GetCustomerChangesData, GetCustomerChangesError, GetCustomerChangesErrors, GetCustomerChangesResponse, GetCustomerChangesResponses, GetCustomerContactsData, GetCustomerContactsError, GetCustomerContactsErrors, GetCustomerContactsResponse, GetCustomerContactsResponses, GetCustomerData, GetCustomerError, GetCustomerErrors, GetCustomerInvoiceAppendicesData, GetCustomerInvoiceAppendicesError, GetCustomerInvoiceAppendicesErrors, GetCustomerInvoiceAppendicesResponse, GetCustomerInvoiceAppendicesResponses, GetCustomerInvoiceCategoriesData, GetCustomerInvoiceCategoriesError, GetCustomerInvoiceCategoriesErrors, GetCustomerInvoiceCategoriesResponse, GetCustomerInvoiceCategoriesResponses, GetCustomerInvoiceCustomHeaderFieldsData, GetCustomerInvoiceCustomHeaderFieldsError, GetCustomerInvoiceCustomHeaderFieldsErrors, GetCustomerInvoiceCustomHeaderFieldsResponse, GetCustomerInvoiceCustomHeaderFieldsResponses, GetCustomerInvoiceData, GetCustomerInvoiceError, GetCustomerInvoiceErrors, GetCustomerInvoiceInvoiceLineSectionsData, GetCustomerInvoiceInvoiceLineSectionsError, GetCustomerInvoiceInvoiceLineSectionsErrors, GetCustomerInvoiceInvoiceLineSectionsResponse, GetCustomerInvoiceInvoiceLineSectionsResponses, GetCustomerInvoiceInvoiceLinesData, GetCustomerInvoiceInvoiceLinesError, GetCustomerInvoiceInvoiceLinesErrors, GetCustomerInvoiceInvoiceLinesResponse, GetCustomerInvoiceInvoiceLinesResponses, GetCustomerInvoiceMatchedTransactionsData, GetCustomerInvoiceMatchedTransactionsError, GetCustomerInvoiceMatchedTransactionsErrors, GetCustomerInvoiceMatchedTransactionsResponse, GetCustomerInvoiceMatchedTransactionsResponses, GetCustomerInvoicePaymentsData, GetCustomerInvoicePaymentsError, GetCustomerInvoicePaymentsErrors, GetCustomerInvoicePaymentsResponse, GetCustomerInvoicePaymentsResponses, GetCustomerInvoiceResponse, GetCustomerInvoiceResponses, GetCustomerInvoiceTemplatesData, GetCustomerInvoiceTemplatesError, GetCustomerInvoiceTemplatesErrors, GetCustomerInvoiceTemplatesResponse, GetCustomerInvoiceTemplatesResponses, GetCustomerInvoicesChangesData, GetCustomerInvoicesChangesError, GetCustomerInvoicesChangesErrors, GetCustomerInvoicesChangesResponse, GetCustomerInvoicesChangesResponses, GetCustomerInvoicesData, GetCustomerInvoicesError, GetCustomerInvoicesErrors, GetCustomerInvoicesResponse, GetCustomerInvoicesResponses, GetCustomerResponse, GetCustomerResponses, GetCustomersData, GetCustomersError, GetCustomersErrors, GetCustomersResponse, GetCustomersResponses, GetFecExportData, GetFecExportError, GetFecExportErrors, GetFecExportResponse, GetFecExportResponses, GetFileAttachmentsData, GetFileAttachmentsError, GetFileAttachmentsErrors, GetFileAttachmentsResponse, GetFileAttachmentsResponses, GetGeneralLedgerExportData, GetGeneralLedgerExportError, GetGeneralLedgerExportErrors, GetGeneralLedgerExportResponse, GetGeneralLedgerExportResponses, GetGocardlessMandateData, GetGocardlessMandateError, GetGocardlessMandateErrors, GetGocardlessMandateResponse, GetGocardlessMandateResponses, GetGocardlessMandatesData, GetGocardlessMandatesError, GetGocardlessMandatesErrors, GetGocardlessMandatesResponse, GetGocardlessMandatesResponses, GetIndividualCustomerData, GetIndividualCustomerError, GetIndividualCustomerErrors, GetIndividualCustomerResponse, GetIndividualCustomerResponses, GetJournalData, GetJournalError, GetJournalErrors, GetJournalResponse, GetJournalResponses, GetJournalsData, GetJournalsError, GetJournalsErrors, GetJournalsResponse, GetJournalsResponses, GetLedgerAccountData, GetLedgerAccountError, GetLedgerAccountErrors, GetLedgerAccountResponse, GetLedgerAccountResponses, GetLedgerAccountsData, GetLedgerAccountsError, GetLedgerAccountsErrors, GetLedgerAccountsResponse, GetLedgerAccountsResponses, GetLedgerAttachmentsData, GetLedgerAttachmentsError, GetLedgerAttachmentsErrors, GetLedgerAttachmentsResponse, GetLedgerAttachmentsResponses, GetLedgerEntriesData, GetLedgerEntriesError, GetLedgerEntriesErrors, GetLedgerEntriesLedgerEntryLinesData, GetLedgerEntriesLedgerEntryLinesError, GetLedgerEntriesLedgerEntryLinesErrors, GetLedgerEntriesLedgerEntryLinesResponse, GetLedgerEntriesLedgerEntryLinesResponses, GetLedgerEntriesResponse, GetLedgerEntriesResponses, GetLedgerEntryData, GetLedgerEntryError, GetLedgerEntryErrors, GetLedgerEntryLineChangesData, GetLedgerEntryLineChangesError, GetLedgerEntryLineChangesErrors, GetLedgerEntryLineChangesResponse, GetLedgerEntryLineChangesResponses, GetLedgerEntryLineData, GetLedgerEntryLineError, GetLedgerEntryLineErrors, GetLedgerEntryLineResponse, GetLedgerEntryLineResponses, GetLedgerEntryLinesCategoriesData, GetLedgerEntryLinesCategoriesError, GetLedgerEntryLinesCategoriesErrors, GetLedgerEntryLinesCategoriesResponse, GetLedgerEntryLinesCategoriesResponses, GetLedgerEntryLinesData, GetLedgerEntryLinesError, GetLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesData, GetLedgerEntryLinesLetteredLedgerEntryLinesError, GetLedgerEntryLinesLetteredLedgerEntryLinesErrors, GetLedgerEntryLinesLetteredLedgerEntryLinesResponse, GetLedgerEntryLinesLetteredLedgerEntryLinesResponses, GetLedgerEntryLinesResponse, GetLedgerEntryLinesResponses, GetLedgerEntryResponse, GetLedgerEntryResponses, GetMeData, GetMeError, GetMeErrors, GetMeResponse, GetMeResponses, GetPaRegistrationsData, GetPaRegistrationsError, GetPaRegistrationsErrors, GetPaRegistrationsResponse, GetPaRegistrationsResponses, GetProAccountMandateMigrationsData, GetProAccountMandateMigrationsError, GetProAccountMandateMigrationsErrors, GetProAccountMandateMigrationsResponse, GetProAccountMandateMigrationsResponses, GetProAccountMandatesData, GetProAccountMandatesError, GetProAccountMandatesErrors, GetProAccountMandatesResponse, GetProAccountMandatesResponses, GetProductChangesData, GetProductChangesError, GetProductChangesErrors, GetProductChangesResponse, GetProductChangesResponses, GetProductData, GetProductError, GetProductErrors, GetProductResponse, GetProductResponses, GetProductsData, GetProductsError, GetProductsErrors, GetProductsResponse, GetProductsResponses, GetPurchaseRequestData, GetPurchaseRequestError, GetPurchaseRequestErrors, GetPurchaseRequestResponse, GetPurchaseRequestResponses, GetPurchaseRequestsData, GetPurchaseRequestsError, GetPurchaseRequestsErrors, GetPurchaseRequestsResponse, GetPurchaseRequestsResponses, GetQuoteAppendicesData, GetQuoteAppendicesError, GetQuoteAppendicesErrors, GetQuoteAppendicesResponse, GetQuoteAppendicesResponses, GetQuoteChangesData, GetQuoteChangesError, GetQuoteChangesErrors, GetQuoteChangesResponse, GetQuoteChangesResponses, GetQuoteData, GetQuoteError, GetQuoteErrors, GetQuoteInvoiceLineSectionsData, GetQuoteInvoiceLineSectionsError, GetQuoteInvoiceLineSectionsErrors, GetQuoteInvoiceLineSectionsResponse, GetQuoteInvoiceLineSectionsResponses, GetQuoteInvoiceLinesData, GetQuoteInvoiceLinesError, GetQuoteInvoiceLinesErrors, GetQuoteInvoiceLinesResponse, GetQuoteInvoiceLinesResponses, GetQuoteResponse, GetQuoteResponses, GetSepaMandateData, GetSepaMandateError, GetSepaMandateErrors, GetSepaMandateResponse, GetSepaMandateResponses, GetSepaMandatesData, GetSepaMandatesError, GetSepaMandatesErrors, GetSepaMandatesResponse, GetSepaMandatesResponses, GetSupplierCategoriesData, GetSupplierCategoriesError, GetSupplierCategoriesErrors, GetSupplierCategoriesResponse, GetSupplierCategoriesResponses, GetSupplierChangesData, GetSupplierChangesError, GetSupplierChangesErrors, GetSupplierChangesResponse, GetSupplierChangesResponses, GetSupplierData, GetSupplierError, GetSupplierErrors, GetSupplierInvoiceCategoriesData, GetSupplierInvoiceCategoriesError, GetSupplierInvoiceCategoriesErrors, GetSupplierInvoiceCategoriesResponse, GetSupplierInvoiceCategoriesResponses, GetSupplierInvoiceData, GetSupplierInvoiceError, GetSupplierInvoiceErrors, GetSupplierInvoiceLinesData, GetSupplierInvoiceLinesError, GetSupplierInvoiceLinesErrors, GetSupplierInvoiceLinesResponse, GetSupplierInvoiceLinesResponses, GetSupplierInvoiceMatchedTransactionsData, GetSupplierInvoiceMatchedTransactionsError, GetSupplierInvoiceMatchedTransactionsErrors, GetSupplierInvoiceMatchedTransactionsResponse, GetSupplierInvoiceMatchedTransactionsResponses, GetSupplierInvoicePaymentsData, GetSupplierInvoicePaymentsError, GetSupplierInvoicePaymentsErrors, GetSupplierInvoicePaymentsResponse, GetSupplierInvoicePaymentsResponses, GetSupplierInvoiceResponse, GetSupplierInvoiceResponses, GetSupplierInvoicesChangesData, GetSupplierInvoicesChangesError, GetSupplierInvoicesChangesErrors, GetSupplierInvoicesChangesResponse, GetSupplierInvoicesChangesResponses, GetSupplierInvoicesData, GetSupplierInvoicesError, GetSupplierInvoicesErrors, GetSupplierInvoicesResponse, GetSupplierInvoicesResponses, GetSupplierResponse, GetSupplierResponses, GetSuppliersData, GetSuppliersError, GetSuppliersErrors, GetSuppliersResponse, GetSuppliersResponses, GetTransactionCategoriesData, GetTransactionCategoriesError, GetTransactionCategoriesErrors, GetTransactionCategoriesResponse, GetTransactionCategoriesResponses, GetTransactionChangesData, GetTransactionChangesError, GetTransactionChangesErrors, GetTransactionChangesResponse, GetTransactionChangesResponses, GetTransactionData, GetTransactionError, GetTransactionErrors, GetTransactionMatchedInvoicesData, GetTransactionMatchedInvoicesError, GetTransactionMatchedInvoicesErrors, GetTransactionMatchedInvoicesResponse, GetTransactionMatchedInvoicesResponses, GetTransactionResponse, GetTransactionResponses, GetTransactionsData, GetTransactionsError, GetTransactionsErrors, GetTransactionsResponse, GetTransactionsResponses, GetTrialBalanceData, GetTrialBalanceError, GetTrialBalanceErrors, GetTrialBalanceResponse, GetTrialBalanceResponses, GetWebhookSubscriptionData, GetWebhookSubscriptionError, GetWebhookSubscriptionErrors, GetWebhookSubscriptionResponse, GetWebhookSubscriptionResponses, GocardlessMandatesResponse, GocardlessMandates__ResponseSchema, ImportCustomerInvoicesData, ImportCustomerInvoicesError, ImportCustomerInvoicesErrors, ImportCustomerInvoicesResponse, ImportCustomerInvoicesResponses, ImportSupplierInvoiceData, ImportSupplierInvoiceError, ImportSupplierInvoiceErrors, ImportSupplierInvoiceResponse, ImportSupplierInvoiceResponses, IndividualCustomersResponse, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, JournalsResponse, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccountsResponse, LedgerAccounts__ResponseSchema, LedgerEntriesCategories, LedgerEntriesResponse, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLinesCategories, LedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesCategoriesResponse, LedgerEntryLinesLetteredLedgerEntryLinesResponse, LedgerEntryLinesResponse, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, LinkCreditNoteData, LinkCreditNoteError, LinkCreditNoteErrors, LinkCreditNoteResponse, LinkCreditNoteResponses, ListCommercialDocumentsData, ListCommercialDocumentsError, ListCommercialDocumentsErrors, ListCommercialDocumentsResponse, ListCommercialDocumentsResponses, ListQuotesData, ListQuotesError, ListQuotesErrors, ListQuotesResponse, ListQuotesResponses, MandateStatus, MandateStatusSchema, MarkAsPaidCustomerInvoiceData, MarkAsPaidCustomerInvoiceError, MarkAsPaidCustomerInvoiceErrors, MarkAsPaidCustomerInvoiceResponse, MarkAsPaidCustomerInvoiceResponses, Null, Null2, NullSchema, Options, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, PdpAddressesResponse, PostBankAccountData, PostBankAccountError, PostBankAccountErrors, PostBankAccountResponse, PostBankAccountResponses, PostBillingSubscriptionsData, PostBillingSubscriptionsError, PostBillingSubscriptionsErrors, PostBillingSubscriptionsResponse, PostBillingSubscriptionsResponses, PostCategoriesData, PostCategoriesError, PostCategoriesErrors, PostCategoriesResponse, PostCategoriesResponses, PostCommercialDocumentAppendicesData, PostCommercialDocumentAppendicesError, PostCommercialDocumentAppendicesErrors, PostCommercialDocumentAppendicesResponse, PostCommercialDocumentAppendicesResponses, PostCompanyCustomerData, PostCompanyCustomerError, PostCompanyCustomerErrors, PostCompanyCustomerResponse, PostCompanyCustomerResponses, PostCustomerInvoiceAppendicesData, PostCustomerInvoiceAppendicesError, PostCustomerInvoiceAppendicesErrors, PostCustomerInvoiceAppendicesResponse, PostCustomerInvoiceAppendicesResponses, PostCustomerInvoiceMatchedTransactionsData, PostCustomerInvoiceMatchedTransactionsError, PostCustomerInvoiceMatchedTransactionsErrors, PostCustomerInvoiceMatchedTransactionsResponse, PostCustomerInvoiceMatchedTransactionsResponses, PostCustomerInvoicesData, PostCustomerInvoicesError, PostCustomerInvoicesErrors, PostCustomerInvoicesResponse, PostCustomerInvoicesResponses, PostFileAttachmentsData, PostFileAttachmentsError, PostFileAttachmentsErrors, PostFileAttachmentsResponse, PostFileAttachmentsResponses, PostGocardlessMandateAssociationsData, PostGocardlessMandateAssociationsError, PostGocardlessMandateAssociationsErrors, PostGocardlessMandateAssociationsResponses, PostGocardlessMandateCancellationsData, PostGocardlessMandateCancellationsError, PostGocardlessMandateCancellationsErrors, PostGocardlessMandateCancellationsResponse, PostGocardlessMandateCancellationsResponses, PostGocardlessMandateMailRequestsData, PostGocardlessMandateMailRequestsError, PostGocardlessMandateMailRequestsErrors, PostGocardlessMandateMailRequestsResponse, PostGocardlessMandateMailRequestsResponses, PostIndividualCustomerData, PostIndividualCustomerError, PostIndividualCustomerErrors, PostIndividualCustomerResponse, PostIndividualCustomerResponses, PostJournalsData, PostJournalsError, PostJournalsErrors, PostJournalsResponse, PostJournalsResponses, PostLedgerAccountsData, PostLedgerAccountsError, PostLedgerAccountsErrors, PostLedgerAccountsResponse, PostLedgerAccountsResponses, PostLedgerAttachmentsData, PostLedgerAttachmentsError, PostLedgerAttachmentsErrors, PostLedgerAttachmentsResponse, PostLedgerAttachmentsResponses, PostLedgerEntriesData, PostLedgerEntriesError, PostLedgerEntriesErrors, PostLedgerEntriesResponse, PostLedgerEntriesResponses, PostLedgerEntryLinesLetterData, PostLedgerEntryLinesLetterError, PostLedgerEntryLinesLetterErrors, PostLedgerEntryLinesLetterResponse, PostLedgerEntryLinesLetterResponses, PostProAccountMandateMailRequestsData, PostProAccountMandateMailRequestsError, PostProAccountMandateMailRequestsErrors, PostProAccountMandateMailRequestsResponses, PostProAccountMandateMigrationsData, PostProAccountMandateMigrationsError, PostProAccountMandateMigrationsErrors, PostProAccountMandateMigrationsResponse, PostProAccountMandateMigrationsResponses, PostProductsData, PostProductsError, PostProductsErrors, PostProductsResponse, PostProductsResponses, PostQuoteAppendicesData, PostQuoteAppendicesError, PostQuoteAppendicesErrors, PostQuoteAppendicesResponse, PostQuoteAppendicesResponses, PostQuotesData, PostQuotesError, PostQuotesErrors, PostQuotesResponse, PostQuotesResponses, PostSepaMandatesData, PostSepaMandatesError, PostSepaMandatesErrors, PostSepaMandatesResponse, PostSepaMandatesResponses, PostSupplierData, PostSupplierError, PostSupplierErrors, PostSupplierInvoiceLinkedPurchaseRequestsData, PostSupplierInvoiceLinkedPurchaseRequestsError, PostSupplierInvoiceLinkedPurchaseRequestsErrors, PostSupplierInvoiceLinkedPurchaseRequestsResponse, PostSupplierInvoiceLinkedPurchaseRequestsResponses, PostSupplierInvoiceMatchedTransactionsData, PostSupplierInvoiceMatchedTransactionsError, PostSupplierInvoiceMatchedTransactionsErrors, PostSupplierInvoiceMatchedTransactionsResponse, PostSupplierInvoiceMatchedTransactionsResponses, PostSupplierResponse, PostSupplierResponses, PostWebhookSubscriptionData, PostWebhookSubscriptionError, PostWebhookSubscriptionErrors, PostWebhookSubscriptionResponse, PostWebhookSubscriptionResponses, ProAccountMandateMigrationsCreateResponse, ProAccountMandateMigrationsResponse, ProAccountSwanSepaPaymentMandatesMandate, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, ProductsResponse, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequestsResponse, PurchaseRequests__ResponseSchema, PutBillingSubscriptionsData, PutBillingSubscriptionsError, PutBillingSubscriptionsErrors, PutBillingSubscriptionsResponse, PutBillingSubscriptionsResponses, PutCompanyCustomerData, PutCompanyCustomerError, PutCompanyCustomerErrors, PutCompanyCustomerResponse, PutCompanyCustomerResponses, PutCustomerCategoriesData, PutCustomerCategoriesError, PutCustomerCategoriesErrors, PutCustomerCategoriesResponse, PutCustomerCategoriesResponses, PutCustomerInvoiceCategoriesData, PutCustomerInvoiceCategoriesError, PutCustomerInvoiceCategoriesErrors, PutCustomerInvoiceCategoriesResponse, PutCustomerInvoiceCategoriesResponses, PutIndividualCustomerData, PutIndividualCustomerError, PutIndividualCustomerErrors, PutIndividualCustomerResponse, PutIndividualCustomerResponses, PutLedgerEntriesData, PutLedgerEntriesError, PutLedgerEntriesErrors, PutLedgerEntriesResponse, PutLedgerEntriesResponses, PutLedgerEntryLinesCategoriesData, PutLedgerEntryLinesCategoriesError, PutLedgerEntryLinesCategoriesErrors, PutLedgerEntryLinesCategoriesResponse, PutLedgerEntryLinesCategoriesResponses, PutProductData, PutProductError, PutProductErrors, PutProductResponse, PutProductResponses, PutSepaMandateData, PutSepaMandateError, PutSepaMandateErrors, PutSepaMandateResponse, PutSepaMandateResponses, PutSupplierCategoriesData, PutSupplierCategoriesError, PutSupplierCategoriesErrors, PutSupplierCategoriesResponse, PutSupplierCategoriesResponses, PutSupplierData, PutSupplierError, PutSupplierErrors, PutSupplierInvoiceCategoriesData, PutSupplierInvoiceCategoriesError, PutSupplierInvoiceCategoriesErrors, PutSupplierInvoiceCategoriesResponse, PutSupplierInvoiceCategoriesResponses, PutSupplierInvoiceData, PutSupplierInvoiceEInvoiceStatusData, PutSupplierInvoiceEInvoiceStatusError, PutSupplierInvoiceEInvoiceStatusErrors, PutSupplierInvoiceEInvoiceStatusResponse, PutSupplierInvoiceEInvoiceStatusResponses, PutSupplierInvoiceError, PutSupplierInvoiceErrors, PutSupplierInvoiceResponse, PutSupplierInvoiceResponses, PutSupplierResponse, PutSupplierResponses, PutTransactionCategoriesData, PutTransactionCategoriesError, PutTransactionCategoriesErrors, PutTransactionCategoriesResponse, PutTransactionCategoriesResponses, PutWebhookSubscriptionData, PutWebhookSubscriptionError, PutWebhookSubscriptionErrors, PutWebhookSubscriptionResponse, PutWebhookSubscriptionResponses, QuotesAppendicesResponse, QuotesInvoiceLineSectionsResponse, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, SchemasCurrency, SendByEmailCustomerInvoiceData, SendByEmailCustomerInvoiceError, SendByEmailCustomerInvoiceErrors, SendByEmailCustomerInvoiceResponse, SendByEmailCustomerInvoiceResponses, SendByEmailQuoteData, SendByEmailQuoteError, SendByEmailQuoteErrors, SendByEmailQuoteResponse, SendByEmailQuoteResponses, SepaMandatesResponse, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, SupplierInvoicesCategoriesResponse, SupplierInvoicesEInvoiceStatusDisputeRequest, SupplierInvoicesEInvoiceStatusRefuseRequest, SupplierInvoicesEInvoiceStatusResponse, SupplierInvoicesEInvoiceStatusUndisputeRequest, SupplierInvoicesEInvoicesImportsImportOptions, SupplierInvoicesEInvoicesImportsImportOptionsInvoiceLine, SupplierInvoicesMatchedTransactionsCategoriesResponse, SupplierInvoicesMatchedTransactionsResponse, SupplierInvoicesResponse, SupplierInvoices__Categories__ResponseSchema, SupplierInvoices__EInvoiceStatus__DisputeRequestSchema, SupplierInvoices__EInvoiceStatus__RefuseRequestSchema, SupplierInvoices__EInvoiceStatus__ResponseSchema, SupplierInvoices__EInvoiceStatus__UndisputeRequestSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsInvoiceLineSchema, SupplierInvoices__EInvoices__Imports__ImportOptionsSchema, SupplierInvoices__MatchedTransactions__CategoriesResponseSchema, SupplierInvoices__MatchedTransactions__ResponseSchema, SupplierInvoices__ResponseSchema, SupplierPaymentMethods, SupplierPaymentMethodsSchema, SuppliersCategoriesResponse, SuppliersResponse, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, type TDataShape, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, TransactionsCategoriesResponse, TransactionsCategoriesResponse2, TransactionsResponse, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, UpdateCategoryData, UpdateCategoryError, UpdateCategoryErrors, UpdateCategoryResponse, UpdateCategoryResponses, UpdateCustomerInvoiceData, UpdateCustomerInvoiceError, UpdateCustomerInvoiceErrors, UpdateCustomerInvoiceResponse, UpdateCustomerInvoiceResponses, UpdateImportedCustomerInvoiceData, UpdateImportedCustomerInvoiceError, UpdateImportedCustomerInvoiceErrors, UpdateImportedCustomerInvoiceResponse, UpdateImportedCustomerInvoiceResponses, UpdateLedgerAccountData, UpdateLedgerAccountError, UpdateLedgerAccountErrors, UpdateLedgerAccountResponse, UpdateLedgerAccountResponses, UpdateQuoteData, UpdateQuoteError, UpdateQuoteErrors, UpdateQuoteResponse, UpdateQuoteResponses, UpdateStatusQuoteData, UpdateStatusQuoteError, UpdateStatusQuoteErrors, UpdateStatusQuoteResponse, UpdateStatusQuoteResponses, UpdateSupplierInvoicePaymentStatusData, UpdateSupplierInvoicePaymentStatusError, UpdateSupplierInvoicePaymentStatusErrors, UpdateSupplierInvoicePaymentStatusResponse, UpdateSupplierInvoicePaymentStatusResponses, UpdateTransactionData, UpdateTransactionError, UpdateTransactionErrors, UpdateTransactionResponse, UpdateTransactionResponses, ValidateAccountingSupplierInvoiceData, ValidateAccountingSupplierInvoiceError, ValidateAccountingSupplierInvoiceErrors, ValidateAccountingSupplierInvoiceResponse, ValidateAccountingSupplierInvoiceResponses, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, WebhookSubscriptionsCreateResponse, WebhookSubscriptionsEvents, WebhookSubscriptionsResponse, WebhookSubscriptions__CreateResponseSchema, WebhookSubscriptions__EventsSchema, WebhookSubscriptions__ResponseSchema, buildClientParams, client, companyFiscalYears, createClient, createClientWithApiKey, createConfig, createCustomerInvoiceEInvoiceImport, createCustomerInvoiceFromQuote, createEInvoiceImport, createPurchaseRequestImport, createSupplierInvoiceEInvoiceImport, createTransaction, deleteCustomerInvoiceMatchedTransactions, deleteCustomerInvoices, deleteLedgerEntryLinesUnletter, deleteSepaMandate, deleteSupplierInvoiceMatchedTransactions, deleteWebhookSubscription, exportAnalyticalGeneralLedger, exportFec, exportGeneralLedger, finalizeCustomerInvoice, getAnalyticalGeneralLedgerExport, getBankAccount, getBankAccounts, getBankEstablishments, getBillingSubscription, getBillingSubscriptionInvoiceLineSections, getBillingSubscriptionInvoiceLines, getBillingSubscriptions, getCategories, getCategory, getCategoryGroup, getCategoryGroupCategories, getCategoryGroups, getCommercialDocument, getCommercialDocumentAppendices, getCommercialDocumentInvoiceLineSections, getCommercialDocumentInvoiceLines, getCompanyCustomer, getCustomer, getCustomerCategories, getCustomerChanges, getCustomerContacts, getCustomerInvoice, getCustomerInvoiceAppendices, getCustomerInvoiceCategories, getCustomerInvoiceCustomHeaderFields, getCustomerInvoiceInvoiceLineSections, getCustomerInvoiceInvoiceLines, getCustomerInvoiceMatchedTransactions, getCustomerInvoicePayments, getCustomerInvoiceTemplates, getCustomerInvoices, getCustomerInvoicesChanges, getCustomers, getFecExport, getFileAttachments, getGeneralLedgerExport, getGocardlessMandate, getGocardlessMandates, getIndividualCustomer, getJournal, getJournals, getLedgerAccount, getLedgerAccounts, getLedgerAttachments, getLedgerEntries, getLedgerEntriesLedgerEntryLines, getLedgerEntry, getLedgerEntryLine, getLedgerEntryLineChanges, getLedgerEntryLines, getLedgerEntryLinesCategories, getLedgerEntryLinesLetteredLedgerEntryLines, getMe, getPaRegistrations, getProAccountMandateMigrations, getProAccountMandates, getProduct, getProductChanges, getProducts, getPurchaseRequest, getPurchaseRequests, getQuote, getQuoteAppendices, getQuoteChanges, getQuoteInvoiceLineSections, getQuoteInvoiceLines, getSepaMandate, getSepaMandates, getSupplier, getSupplierCategories, getSupplierChanges, getSupplierInvoice, getSupplierInvoiceCategories, getSupplierInvoiceLines, getSupplierInvoiceMatchedTransactions, getSupplierInvoicePayments, getSupplierInvoices, getSupplierInvoicesChanges, getSuppliers, getTransaction, getTransactionCategories, getTransactionChanges, getTransactionMatchedInvoices, getTransactions, getTrialBalance, getWebhookSubscription, importCustomerInvoices, importSupplierInvoice, linkCreditNote, listCommercialDocuments, listQuotes, markAsPaidCustomerInvoice, mergeHeaders, nullSchema, postBankAccount, postBillingSubscriptions, postCategories, postCommercialDocumentAppendices, postCompanyCustomer, postCustomerInvoiceAppendices, postCustomerInvoiceMatchedTransactions, postCustomerInvoices, postFileAttachments, postGocardlessMandateAssociations, postGocardlessMandateCancellations, postGocardlessMandateMailRequests, postIndividualCustomer, postJournals, postLedgerAccounts, postLedgerAttachments, postLedgerEntries, postLedgerEntryLinesLetter, postProAccountMandateMailRequests, postProAccountMandateMigrations, postProducts, postQuoteAppendices, postQuotes, postSepaMandates, postSupplier, postSupplierInvoiceLinkedPurchaseRequests, postSupplierInvoiceMatchedTransactions, postWebhookSubscription, putBillingSubscriptions, putCompanyCustomer, putCustomerCategories, putCustomerInvoiceCategories, putIndividualCustomer, putLedgerEntries, putLedgerEntryLinesCategories, putProduct, putSepaMandate, putSupplier, putSupplierCategories, putSupplierInvoice, putSupplierInvoiceCategories, putSupplierInvoiceEInvoiceStatus, putTransactionCategories, putWebhookSubscription, schemas_CurrencySchema, sendByEmailCustomerInvoice, sendByEmailQuote, updateCategory, updateCustomerInvoice, updateImportedCustomerInvoice, updateLedgerAccount, updateQuote, updateStatusQuote, updateSupplierInvoicePaymentStatus, updateTransaction, validateAccountingSupplierInvoice };
|
|
42175
42922
|
//# sourceMappingURL=index.d.mts.map
|