@getyetty-sdk/pennylane 2026.4.17 → 2026.4.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -3046,7 +3046,7 @@ type BillingSubscriptionsResponse = {
3046
3046
  type PdpAddressesResponse = {
3047
3047
  id: number;
3048
3048
  /**
3049
- * Establishment SIRET when the row is establishment-level; empty string when the row is SIREN-level (head office).
3049
+ * Establishment SIRET when the row is establishment-level; `null` when the row is SIREN-level (head office).
3050
3050
  *
3051
3051
  */
3052
3052
  siret: string | null;
@@ -4029,11 +4029,11 @@ type SupplierInvoicesResponse = {
4029
4029
  */
4030
4030
  deadline: string | null;
4031
4031
  /**
4032
- * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
4032
+ * Invoice taxable amount (in invoice currency)
4033
4033
  */
4034
4034
  currency_tax: string;
4035
4035
  /**
4036
- * Invoice taxable amount (in invoice currency)
4036
+ * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
4037
4037
  */
4038
4038
  tax: string;
4039
4039
  /**
@@ -4795,6 +4795,119 @@ type QuotesResponse = {
4795
4795
  */
4796
4796
  updated_at: string;
4797
4797
  };
4798
+ /**
4799
+ * Product-based Invoice Line
4800
+ *
4801
+ * Provide only the product_id to automatically populate label,
4802
+ * raw_currency_unit_price, unit, vat_rate, and ledger_account_id.
4803
+ * You can override any of these fields by providing them explicitly.
4804
+ *
4805
+ */
4806
+ type QuotesInvoiceLineWithProductRequest = {
4807
+ /**
4808
+ * The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.
4809
+ */
4810
+ product_id: number;
4811
+ /**
4812
+ * Line item quantity (number of items)
4813
+ */
4814
+ quantity: number;
4815
+ /**
4816
+ * Line item label
4817
+ */
4818
+ label?: string;
4819
+ /**
4820
+ * The ledger account ID
4821
+ */
4822
+ ledger_account_id?: number;
4823
+ /**
4824
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
4825
+ */
4826
+ raw_currency_unit_price?: string;
4827
+ /**
4828
+ * Line item unit (type of unit)
4829
+ */
4830
+ unit?: string;
4831
+ /**
4832
+ * Product VAT rate. A 20% VAT in France is FR_200.
4833
+ */
4834
+ vat_rate?: 'FR_1_05' | 'FR_1_75' | 'FR_09' | 'FR_21' | 'FR_40' | 'FR_50' | 'FR_55' | 'FR_60' | 'FR_65' | 'FR_85' | 'FR_92' | 'FR_100' | 'FR_130' | 'FR_15_385' | 'FR_160' | 'FR_196' | 'FR_200' | 'AD_10' | 'AD_45' | 'AD_95' | 'AT_100' | 'AT_130' | 'AT_190' | 'AT_200' | 'BE_60' | 'BE_120' | 'BE_210' | 'BG_90' | 'BG_200' | 'CH_25' | 'CH_37' | 'CH_77' | 'CH_26' | 'CH_38' | 'CH_81' | 'CY_30' | 'CY_50' | 'CY_80' | 'CY_90' | 'CY_190' | 'CZ_100' | 'CZ_120' | 'CZ_150' | 'CZ_210' | 'DE_70' | 'DE_190' | 'DK_250' | 'EE_90' | 'EE_200' | 'EE_220' | 'EE_240' | 'ES_40' | 'ES_70' | 'ES_100' | 'ES_210' | 'FI_100' | 'FI_135' | 'FI_140' | 'FI_240' | 'FI_255' | 'GB_50' | 'GB_200' | 'GR_60' | 'GR_130' | 'GR_170' | 'GR_240' | 'GR_40' | 'HR_50' | 'HR_130' | 'HR_250' | 'HU_50' | 'HU_180' | 'HU_270' | 'IE_48' | 'IE_90' | 'IE_135' | 'IE_210' | 'IE_230' | 'IT_40' | 'IT_50' | 'IT_100' | 'IT_220' | 'LT_50' | 'LT_90' | 'LT_120' | 'LT_210' | 'LU_30' | 'LU_70' | 'LU_80' | 'LU_120' | 'LU_130' | 'LU_140' | 'LU_160' | 'LU_170' | 'LV_50' | 'LV_120' | 'LV_210' | 'MC_09' | 'MC_21' | 'MC_55' | 'MC_85' | 'MC_100' | 'MC_200' | 'MT_50' | 'MT_70' | 'MT_120' | 'MT_180' | 'MU_150' | 'NL_90' | 'NL_210' | 'PL_50' | 'PL_80' | 'PL_230' | 'PT_60' | 'PT_130' | 'PT_160' | 'PT_180' | 'PT_220' | 'PT_230' | 'RO_50' | 'RO_90' | 'RO_110' | 'RO_190' | 'RO_210' | 'SE_60' | 'SE_120' | 'SE_250' | 'SI_50' | 'SI_95' | 'SI_220' | 'SK_50' | 'SK_100' | 'SK_190' | 'SK_200' | 'SK_230' | 'NO_120' | 'NO_150' | 'NO_250' | 'DE_70_BU0002' | 'DE_190_BU0003' | 'DE_70_BU0008' | 'DE_190_BU0009' | 'DE_intracom_70_BU0012' | 'DE_intracom_190_BU0013' | 'DE_190_electronic_BU0226' | 'exempt' | 'DE_intracom_exempt_BU0011' | 'DE_intracom_exempt_BU0047' | 'DE_exempt_BU0001' | 'DE_exempt_BU0181' | 'DE_exempt_BU0490' | 'intracom_21' | 'intracom_55' | 'intracom_85' | 'intracom_100' | 'crossborder' | 'DE_intracom_70_BU0018' | 'DE_intracom_190_BU0019' | 'DE_intracom_190_BU0506' | 'extracom' | 'DE_extracom_BU0173' | 'DE_extracom_BU0191' | 'DE_extracom_190_BU0511' | 'FR_85_construction' | 'FR_100_construction' | 'FR_200_construction' | 'DE_exempt_construction_BU0046' | 'DE_70_construction_BU0091' | 'DE_190_construction_BU0094' | 'DE_190_construction_BU0526' | 'DE_190_construction_BU0546' | 'mixed';
4835
+ /**
4836
+ * The description of the invoice line
4837
+ */
4838
+ description?: string | null;
4839
+ /**
4840
+ * Has to correspond to the rank number of a line items section in which the line item should be
4841
+ */
4842
+ section_rank?: number;
4843
+ discount?: {
4844
+ /**
4845
+ * Discount type.
4846
+ * - absolute if it is an amount
4847
+ * - relative if it is a percentage
4848
+ *
4849
+ */
4850
+ type: 'absolute' | 'relative';
4851
+ /**
4852
+ * Discount value on the total amount before tax of the line
4853
+ */
4854
+ value: string;
4855
+ };
4856
+ };
4857
+ /**
4858
+ * Standard Invoice Line
4859
+ *
4860
+ * Create an invoice line by providing all required fields explicitly
4861
+ * without referencing a product.
4862
+ *
4863
+ */
4864
+ type QuotesInvoiceLineWithoutProductRequest = {
4865
+ /**
4866
+ * Line item label
4867
+ */
4868
+ label: string;
4869
+ /**
4870
+ * Line item quantity (number of items)
4871
+ */
4872
+ quantity: number;
4873
+ /**
4874
+ * The ledger account ID
4875
+ */
4876
+ ledger_account_id?: number;
4877
+ /**
4878
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
4879
+ */
4880
+ raw_currency_unit_price: string;
4881
+ /**
4882
+ * Line item unit (type of unit)
4883
+ */
4884
+ unit: string;
4885
+ /**
4886
+ * Product VAT rate. A 20% VAT in France is FR_200.
4887
+ */
4888
+ vat_rate: 'FR_1_05' | 'FR_1_75' | 'FR_09' | 'FR_21' | 'FR_40' | 'FR_50' | 'FR_55' | 'FR_60' | 'FR_65' | 'FR_85' | 'FR_92' | 'FR_100' | 'FR_130' | 'FR_15_385' | 'FR_160' | 'FR_196' | 'FR_200' | 'AD_10' | 'AD_45' | 'AD_95' | 'AT_100' | 'AT_130' | 'AT_190' | 'AT_200' | 'BE_60' | 'BE_120' | 'BE_210' | 'BG_90' | 'BG_200' | 'CH_25' | 'CH_37' | 'CH_77' | 'CH_26' | 'CH_38' | 'CH_81' | 'CY_30' | 'CY_50' | 'CY_80' | 'CY_90' | 'CY_190' | 'CZ_100' | 'CZ_120' | 'CZ_150' | 'CZ_210' | 'DE_70' | 'DE_190' | 'DK_250' | 'EE_90' | 'EE_200' | 'EE_220' | 'EE_240' | 'ES_40' | 'ES_70' | 'ES_100' | 'ES_210' | 'FI_100' | 'FI_135' | 'FI_140' | 'FI_240' | 'FI_255' | 'GB_50' | 'GB_200' | 'GR_60' | 'GR_130' | 'GR_170' | 'GR_240' | 'GR_40' | 'HR_50' | 'HR_130' | 'HR_250' | 'HU_50' | 'HU_180' | 'HU_270' | 'IE_48' | 'IE_90' | 'IE_135' | 'IE_210' | 'IE_230' | 'IT_40' | 'IT_50' | 'IT_100' | 'IT_220' | 'LT_50' | 'LT_90' | 'LT_120' | 'LT_210' | 'LU_30' | 'LU_70' | 'LU_80' | 'LU_120' | 'LU_130' | 'LU_140' | 'LU_160' | 'LU_170' | 'LV_50' | 'LV_120' | 'LV_210' | 'MC_09' | 'MC_21' | 'MC_55' | 'MC_85' | 'MC_100' | 'MC_200' | 'MT_50' | 'MT_70' | 'MT_120' | 'MT_180' | 'MU_150' | 'NL_90' | 'NL_210' | 'PL_50' | 'PL_80' | 'PL_230' | 'PT_60' | 'PT_130' | 'PT_160' | 'PT_180' | 'PT_220' | 'PT_230' | 'RO_50' | 'RO_90' | 'RO_110' | 'RO_190' | 'RO_210' | 'SE_60' | 'SE_120' | 'SE_250' | 'SI_50' | 'SI_95' | 'SI_220' | 'SK_50' | 'SK_100' | 'SK_190' | 'SK_200' | 'SK_230' | 'NO_120' | 'NO_150' | 'NO_250' | 'DE_70_BU0002' | 'DE_190_BU0003' | 'DE_70_BU0008' | 'DE_190_BU0009' | 'DE_intracom_70_BU0012' | 'DE_intracom_190_BU0013' | 'DE_190_electronic_BU0226' | 'exempt' | 'DE_intracom_exempt_BU0011' | 'DE_intracom_exempt_BU0047' | 'DE_exempt_BU0001' | 'DE_exempt_BU0181' | 'DE_exempt_BU0490' | 'intracom_21' | 'intracom_55' | 'intracom_85' | 'intracom_100' | 'crossborder' | 'DE_intracom_70_BU0018' | 'DE_intracom_190_BU0019' | 'DE_intracom_190_BU0506' | 'extracom' | 'DE_extracom_BU0173' | 'DE_extracom_BU0191' | 'DE_extracom_190_BU0511' | 'FR_85_construction' | 'FR_100_construction' | 'FR_200_construction' | 'DE_exempt_construction_BU0046' | 'DE_70_construction_BU0091' | 'DE_190_construction_BU0094' | 'DE_190_construction_BU0526' | 'DE_190_construction_BU0546' | 'mixed';
4889
+ /**
4890
+ * The description of the invoice line
4891
+ */
4892
+ description?: string | null;
4893
+ /**
4894
+ * Has to correspond to the rank number of a line items section in which the line item should be
4895
+ */
4896
+ section_rank?: number;
4897
+ discount?: {
4898
+ /**
4899
+ * Discount type.
4900
+ * - absolute if it is an amount
4901
+ * - relative if it is a percentage
4902
+ *
4903
+ */
4904
+ type: 'absolute' | 'relative';
4905
+ /**
4906
+ * Discount value on the total amount before tax of the line
4907
+ */
4908
+ value: string;
4909
+ };
4910
+ };
4798
4911
  /**
4799
4912
  * Quote Request
4800
4913
  */
@@ -4869,13 +4982,37 @@ type QuotesPostRequest = {
4869
4982
  external_reference?: string;
4870
4983
  invoice_lines: Array<{
4871
4984
  /**
4872
- * Line item label
4985
+ * The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.
4873
4986
  */
4874
- label: string;
4987
+ product_id: number;
4875
4988
  /**
4876
4989
  * Line item quantity (number of items)
4877
4990
  */
4878
4991
  quantity: number;
4992
+ /**
4993
+ * Line item label
4994
+ */
4995
+ label?: string;
4996
+ /**
4997
+ * The ledger account ID
4998
+ */
4999
+ ledger_account_id?: number;
5000
+ /**
5001
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
5002
+ */
5003
+ raw_currency_unit_price?: string;
5004
+ /**
5005
+ * Line item unit (type of unit)
5006
+ */
5007
+ unit?: string;
5008
+ /**
5009
+ * Product VAT rate. A 20% VAT in France is FR_200.
5010
+ */
5011
+ vat_rate?: 'FR_1_05' | 'FR_1_75' | 'FR_09' | 'FR_21' | 'FR_40' | 'FR_50' | 'FR_55' | 'FR_60' | 'FR_65' | 'FR_85' | 'FR_92' | 'FR_100' | 'FR_130' | 'FR_15_385' | 'FR_160' | 'FR_196' | 'FR_200' | 'AD_10' | 'AD_45' | 'AD_95' | 'AT_100' | 'AT_130' | 'AT_190' | 'AT_200' | 'BE_60' | 'BE_120' | 'BE_210' | 'BG_90' | 'BG_200' | 'CH_25' | 'CH_37' | 'CH_77' | 'CH_26' | 'CH_38' | 'CH_81' | 'CY_30' | 'CY_50' | 'CY_80' | 'CY_90' | 'CY_190' | 'CZ_100' | 'CZ_120' | 'CZ_150' | 'CZ_210' | 'DE_70' | 'DE_190' | 'DK_250' | 'EE_90' | 'EE_200' | 'EE_220' | 'EE_240' | 'ES_40' | 'ES_70' | 'ES_100' | 'ES_210' | 'FI_100' | 'FI_135' | 'FI_140' | 'FI_240' | 'FI_255' | 'GB_50' | 'GB_200' | 'GR_60' | 'GR_130' | 'GR_170' | 'GR_240' | 'GR_40' | 'HR_50' | 'HR_130' | 'HR_250' | 'HU_50' | 'HU_180' | 'HU_270' | 'IE_48' | 'IE_90' | 'IE_135' | 'IE_210' | 'IE_230' | 'IT_40' | 'IT_50' | 'IT_100' | 'IT_220' | 'LT_50' | 'LT_90' | 'LT_120' | 'LT_210' | 'LU_30' | 'LU_70' | 'LU_80' | 'LU_120' | 'LU_130' | 'LU_140' | 'LU_160' | 'LU_170' | 'LV_50' | 'LV_120' | 'LV_210' | 'MC_09' | 'MC_21' | 'MC_55' | 'MC_85' | 'MC_100' | 'MC_200' | 'MT_50' | 'MT_70' | 'MT_120' | 'MT_180' | 'MU_150' | 'NL_90' | 'NL_210' | 'PL_50' | 'PL_80' | 'PL_230' | 'PT_60' | 'PT_130' | 'PT_160' | 'PT_180' | 'PT_220' | 'PT_230' | 'RO_50' | 'RO_90' | 'RO_110' | 'RO_190' | 'RO_210' | 'SE_60' | 'SE_120' | 'SE_250' | 'SI_50' | 'SI_95' | 'SI_220' | 'SK_50' | 'SK_100' | 'SK_190' | 'SK_200' | 'SK_230' | 'NO_120' | 'NO_150' | 'NO_250' | 'DE_70_BU0002' | 'DE_190_BU0003' | 'DE_70_BU0008' | 'DE_190_BU0009' | 'DE_intracom_70_BU0012' | 'DE_intracom_190_BU0013' | 'DE_190_electronic_BU0226' | 'exempt' | 'DE_intracom_exempt_BU0011' | 'DE_intracom_exempt_BU0047' | 'DE_exempt_BU0001' | 'DE_exempt_BU0181' | 'DE_exempt_BU0490' | 'intracom_21' | 'intracom_55' | 'intracom_85' | 'intracom_100' | 'crossborder' | 'DE_intracom_70_BU0018' | 'DE_intracom_190_BU0019' | 'DE_intracom_190_BU0506' | 'extracom' | 'DE_extracom_BU0173' | 'DE_extracom_BU0191' | 'DE_extracom_190_BU0511' | 'FR_85_construction' | 'FR_100_construction' | 'FR_200_construction' | 'DE_exempt_construction_BU0046' | 'DE_70_construction_BU0091' | 'DE_190_construction_BU0094' | 'DE_190_construction_BU0526' | 'DE_190_construction_BU0546' | 'mixed';
5012
+ /**
5013
+ * The description of the invoice line
5014
+ */
5015
+ description?: string | null;
4879
5016
  /**
4880
5017
  * Has to correspond to the rank number of a line items section in which the line item should be
4881
5018
  */
@@ -4893,6 +5030,15 @@ type QuotesPostRequest = {
4893
5030
  */
4894
5031
  value: string;
4895
5032
  };
5033
+ } | {
5034
+ /**
5035
+ * Line item label
5036
+ */
5037
+ label: string;
5038
+ /**
5039
+ * Line item quantity (number of items)
5040
+ */
5041
+ quantity: number;
4896
5042
  /**
4897
5043
  * The ledger account ID
4898
5044
  */
@@ -4914,9 +5060,22 @@ type QuotesPostRequest = {
4914
5060
  */
4915
5061
  description?: string | null;
4916
5062
  /**
4917
- * The product ID
5063
+ * Has to correspond to the rank number of a line items section in which the line item should be
4918
5064
  */
4919
- product_id?: number;
5065
+ section_rank?: number;
5066
+ discount?: {
5067
+ /**
5068
+ * Discount type.
5069
+ * - absolute if it is an amount
5070
+ * - relative if it is a percentage
5071
+ *
5072
+ */
5073
+ type: 'absolute' | 'relative';
5074
+ /**
5075
+ * Discount value on the total amount before tax of the line
5076
+ */
5077
+ value: string;
5078
+ };
4920
5079
  }>;
4921
5080
  };
4922
5081
  type QuotesPutRequest = {
@@ -4979,13 +5138,41 @@ type QuotesPutRequest = {
4979
5138
  invoice_lines?: {
4980
5139
  create?: Array<{
4981
5140
  /**
4982
- * Invoice line label
5141
+ * The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.
4983
5142
  */
4984
- label: string;
5143
+ product_id: number;
4985
5144
  /**
4986
- * Invoice line quantity (number of items)
5145
+ * Line item quantity (number of items)
4987
5146
  */
4988
5147
  quantity: number;
5148
+ /**
5149
+ * Line item label
5150
+ */
5151
+ label?: string;
5152
+ /**
5153
+ * The ledger account ID
5154
+ */
5155
+ ledger_account_id?: number;
5156
+ /**
5157
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
5158
+ */
5159
+ raw_currency_unit_price?: string;
5160
+ /**
5161
+ * Line item unit (type of unit)
5162
+ */
5163
+ unit?: string;
5164
+ /**
5165
+ * Product VAT rate. A 20% VAT in France is FR_200.
5166
+ */
5167
+ vat_rate?: 'FR_1_05' | 'FR_1_75' | 'FR_09' | 'FR_21' | 'FR_40' | 'FR_50' | 'FR_55' | 'FR_60' | 'FR_65' | 'FR_85' | 'FR_92' | 'FR_100' | 'FR_130' | 'FR_15_385' | 'FR_160' | 'FR_196' | 'FR_200' | 'AD_10' | 'AD_45' | 'AD_95' | 'AT_100' | 'AT_130' | 'AT_190' | 'AT_200' | 'BE_60' | 'BE_120' | 'BE_210' | 'BG_90' | 'BG_200' | 'CH_25' | 'CH_37' | 'CH_77' | 'CH_26' | 'CH_38' | 'CH_81' | 'CY_30' | 'CY_50' | 'CY_80' | 'CY_90' | 'CY_190' | 'CZ_100' | 'CZ_120' | 'CZ_150' | 'CZ_210' | 'DE_70' | 'DE_190' | 'DK_250' | 'EE_90' | 'EE_200' | 'EE_220' | 'EE_240' | 'ES_40' | 'ES_70' | 'ES_100' | 'ES_210' | 'FI_100' | 'FI_135' | 'FI_140' | 'FI_240' | 'FI_255' | 'GB_50' | 'GB_200' | 'GR_60' | 'GR_130' | 'GR_170' | 'GR_240' | 'GR_40' | 'HR_50' | 'HR_130' | 'HR_250' | 'HU_50' | 'HU_180' | 'HU_270' | 'IE_48' | 'IE_90' | 'IE_135' | 'IE_210' | 'IE_230' | 'IT_40' | 'IT_50' | 'IT_100' | 'IT_220' | 'LT_50' | 'LT_90' | 'LT_120' | 'LT_210' | 'LU_30' | 'LU_70' | 'LU_80' | 'LU_120' | 'LU_130' | 'LU_140' | 'LU_160' | 'LU_170' | 'LV_50' | 'LV_120' | 'LV_210' | 'MC_09' | 'MC_21' | 'MC_55' | 'MC_85' | 'MC_100' | 'MC_200' | 'MT_50' | 'MT_70' | 'MT_120' | 'MT_180' | 'MU_150' | 'NL_90' | 'NL_210' | 'PL_50' | 'PL_80' | 'PL_230' | 'PT_60' | 'PT_130' | 'PT_160' | 'PT_180' | 'PT_220' | 'PT_230' | 'RO_50' | 'RO_90' | 'RO_110' | 'RO_190' | 'RO_210' | 'SE_60' | 'SE_120' | 'SE_250' | 'SI_50' | 'SI_95' | 'SI_220' | 'SK_50' | 'SK_100' | 'SK_190' | 'SK_200' | 'SK_230' | 'NO_120' | 'NO_150' | 'NO_250' | 'DE_70_BU0002' | 'DE_190_BU0003' | 'DE_70_BU0008' | 'DE_190_BU0009' | 'DE_intracom_70_BU0012' | 'DE_intracom_190_BU0013' | 'DE_190_electronic_BU0226' | 'exempt' | 'DE_intracom_exempt_BU0011' | 'DE_intracom_exempt_BU0047' | 'DE_exempt_BU0001' | 'DE_exempt_BU0181' | 'DE_exempt_BU0490' | 'intracom_21' | 'intracom_55' | 'intracom_85' | 'intracom_100' | 'crossborder' | 'DE_intracom_70_BU0018' | 'DE_intracom_190_BU0019' | 'DE_intracom_190_BU0506' | 'extracom' | 'DE_extracom_BU0173' | 'DE_extracom_BU0191' | 'DE_extracom_190_BU0511' | 'FR_85_construction' | 'FR_100_construction' | 'FR_200_construction' | 'DE_exempt_construction_BU0046' | 'DE_70_construction_BU0091' | 'DE_190_construction_BU0094' | 'DE_190_construction_BU0526' | 'DE_190_construction_BU0546' | 'mixed';
5168
+ /**
5169
+ * The description of the invoice line
5170
+ */
5171
+ description?: string | null;
5172
+ /**
5173
+ * Has to correspond to the rank number of a line items section in which the line item should be
5174
+ */
5175
+ section_rank?: number;
4989
5176
  discount?: {
4990
5177
  /**
4991
5178
  * Discount type.
@@ -4999,16 +5186,25 @@ type QuotesPutRequest = {
4999
5186
  */
5000
5187
  value: string;
5001
5188
  };
5189
+ } | {
5190
+ /**
5191
+ * Line item label
5192
+ */
5193
+ label: string;
5194
+ /**
5195
+ * Line item quantity (number of items)
5196
+ */
5197
+ quantity: number;
5002
5198
  /**
5003
5199
  * The ledger account ID
5004
5200
  */
5005
5201
  ledger_account_id?: number;
5006
5202
  /**
5007
- * The unit price excluding taxes. Can be set up to 6 decimals.
5203
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
5008
5204
  */
5009
5205
  raw_currency_unit_price: string;
5010
5206
  /**
5011
- * Invoice line unit (type of unit)
5207
+ * Line item unit (type of unit)
5012
5208
  */
5013
5209
  unit: string;
5014
5210
  /**
@@ -5020,13 +5216,22 @@ type QuotesPutRequest = {
5020
5216
  */
5021
5217
  description?: string | null;
5022
5218
  /**
5023
- * The product ID
5024
- */
5025
- product_id?: number;
5026
- /**
5027
- * Has to correspond to the rank number of a quote line section in which the invoice line should be
5219
+ * Has to correspond to the rank number of a line items section in which the line item should be
5028
5220
  */
5029
5221
  section_rank?: number;
5222
+ discount?: {
5223
+ /**
5224
+ * Discount type.
5225
+ * - absolute if it is an amount
5226
+ * - relative if it is a percentage
5227
+ *
5228
+ */
5229
+ type: 'absolute' | 'relative';
5230
+ /**
5231
+ * Discount value on the total amount before tax of the line
5232
+ */
5233
+ value: string;
5234
+ };
5030
5235
  }>;
5031
5236
  update?: Array<{
5032
5237
  /**
@@ -13594,7 +13799,7 @@ type GetPaRegistrationsResponses = {
13594
13799
  items: Array<{
13595
13800
  id: number;
13596
13801
  /**
13597
- * Establishment SIRET when the row is establishment-level; empty string when the row is SIREN-level (head office).
13802
+ * Establishment SIRET when the row is establishment-level; `null` when the row is SIREN-level (head office).
13598
13803
  *
13599
13804
  */
13600
13805
  siret: string | null;
@@ -21396,11 +21601,11 @@ type GetSupplierInvoicesResponses = {
21396
21601
  */
21397
21602
  deadline: string | null;
21398
21603
  /**
21399
- * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
21604
+ * Invoice taxable amount (in invoice currency)
21400
21605
  */
21401
21606
  currency_tax: string;
21402
21607
  /**
21403
- * Invoice taxable amount (in invoice currency)
21608
+ * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
21404
21609
  */
21405
21610
  tax: string;
21406
21611
  /**
@@ -21638,11 +21843,11 @@ type GetSupplierInvoiceResponses = {
21638
21843
  */
21639
21844
  deadline: string | null;
21640
21845
  /**
21641
- * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
21846
+ * Invoice taxable amount (in invoice currency)
21642
21847
  */
21643
21848
  currency_tax: string;
21644
21849
  /**
21645
- * Invoice taxable amount (in invoice currency)
21850
+ * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
21646
21851
  */
21647
21852
  tax: string;
21648
21853
  /**
@@ -21841,11 +22046,11 @@ type PutSupplierInvoiceData = {
21841
22046
  */
21842
22047
  amount?: string;
21843
22048
  /**
21844
- * Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
22049
+ * Invoice line taxable amount (in invoice currency)
21845
22050
  */
21846
22051
  currency_tax: string;
21847
22052
  /**
21848
- * Total tax amount in currency
22053
+ * Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
21849
22054
  */
21850
22055
  tax?: string;
21851
22056
  /**
@@ -21889,7 +22094,7 @@ type PutSupplierInvoiceData = {
21889
22094
  */
21890
22095
  description?: string;
21891
22096
  /**
21892
- * Invoice line total amount in the currency of the invoice.
22097
+ * Invoice line amount in the currency of the invoice.
21893
22098
  */
21894
22099
  currency_amount?: string;
21895
22100
  /**
@@ -21897,11 +22102,11 @@ type PutSupplierInvoiceData = {
21897
22102
  */
21898
22103
  amount?: string;
21899
22104
  /**
21900
- * Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
22105
+ * Invoice line taxable amount (in invoice currency)
21901
22106
  */
21902
22107
  currency_tax?: string;
21903
22108
  /**
21904
- * Total tax amount in currency
22109
+ * Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
21905
22110
  */
21906
22111
  tax?: string;
21907
22112
  /**
@@ -22045,11 +22250,11 @@ type PutSupplierInvoiceResponses = {
22045
22250
  */
22046
22251
  deadline: string | null;
22047
22252
  /**
22048
- * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
22253
+ * Invoice taxable amount (in invoice currency)
22049
22254
  */
22050
22255
  currency_tax: string;
22051
22256
  /**
22052
- * Invoice taxable amount (in invoice currency)
22257
+ * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
22053
22258
  */
22054
22259
  tax: string;
22055
22260
  /**
@@ -23043,11 +23248,11 @@ type ImportSupplierInvoiceData = {
23043
23248
  */
23044
23249
  amount?: string;
23045
23250
  /**
23046
- * Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
23251
+ * Invoice line taxable amount (in invoice currency)
23047
23252
  */
23048
23253
  currency_tax: string;
23049
23254
  /**
23050
- * Total tax amount in currency
23255
+ * Invoice line taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
23051
23256
  */
23052
23257
  tax?: string;
23053
23258
  /**
@@ -23209,11 +23414,11 @@ type ImportSupplierInvoiceResponses = {
23209
23414
  */
23210
23415
  deadline: string | null;
23211
23416
  /**
23212
- * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
23417
+ * Invoice taxable amount (in invoice currency)
23213
23418
  */
23214
23419
  currency_tax: string;
23215
23420
  /**
23216
- * Invoice taxable amount (in invoice currency)
23421
+ * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
23217
23422
  */
23218
23423
  tax: string;
23219
23424
  /**
@@ -23559,11 +23764,11 @@ type ValidateAccountingSupplierInvoiceResponses = {
23559
23764
  */
23560
23765
  deadline: string | null;
23561
23766
  /**
23562
- * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
23767
+ * Invoice taxable amount (in invoice currency)
23563
23768
  */
23564
23769
  currency_tax: string;
23565
23770
  /**
23566
- * Invoice taxable amount (in invoice currency)
23771
+ * Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.
23567
23772
  */
23568
23773
  tax: string;
23569
23774
  /**
@@ -27565,13 +27770,37 @@ type PostQuotesData = {
27565
27770
  external_reference?: string;
27566
27771
  invoice_lines: Array<{
27567
27772
  /**
27568
- * Line item label
27773
+ * The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.
27569
27774
  */
27570
- label: string;
27775
+ product_id: number;
27571
27776
  /**
27572
27777
  * Line item quantity (number of items)
27573
27778
  */
27574
27779
  quantity: number;
27780
+ /**
27781
+ * Line item label
27782
+ */
27783
+ label?: string;
27784
+ /**
27785
+ * The ledger account ID
27786
+ */
27787
+ ledger_account_id?: number;
27788
+ /**
27789
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
27790
+ */
27791
+ raw_currency_unit_price?: string;
27792
+ /**
27793
+ * Line item unit (type of unit)
27794
+ */
27795
+ unit?: string;
27796
+ /**
27797
+ * Product VAT rate. A 20% VAT in France is FR_200.
27798
+ */
27799
+ vat_rate?: 'FR_1_05' | 'FR_1_75' | 'FR_09' | 'FR_21' | 'FR_40' | 'FR_50' | 'FR_55' | 'FR_60' | 'FR_65' | 'FR_85' | 'FR_92' | 'FR_100' | 'FR_130' | 'FR_15_385' | 'FR_160' | 'FR_196' | 'FR_200' | 'AD_10' | 'AD_45' | 'AD_95' | 'AT_100' | 'AT_130' | 'AT_190' | 'AT_200' | 'BE_60' | 'BE_120' | 'BE_210' | 'BG_90' | 'BG_200' | 'CH_25' | 'CH_37' | 'CH_77' | 'CH_26' | 'CH_38' | 'CH_81' | 'CY_30' | 'CY_50' | 'CY_80' | 'CY_90' | 'CY_190' | 'CZ_100' | 'CZ_120' | 'CZ_150' | 'CZ_210' | 'DE_70' | 'DE_190' | 'DK_250' | 'EE_90' | 'EE_200' | 'EE_220' | 'EE_240' | 'ES_40' | 'ES_70' | 'ES_100' | 'ES_210' | 'FI_100' | 'FI_135' | 'FI_140' | 'FI_240' | 'FI_255' | 'GB_50' | 'GB_200' | 'GR_60' | 'GR_130' | 'GR_170' | 'GR_240' | 'GR_40' | 'HR_50' | 'HR_130' | 'HR_250' | 'HU_50' | 'HU_180' | 'HU_270' | 'IE_48' | 'IE_90' | 'IE_135' | 'IE_210' | 'IE_230' | 'IT_40' | 'IT_50' | 'IT_100' | 'IT_220' | 'LT_50' | 'LT_90' | 'LT_120' | 'LT_210' | 'LU_30' | 'LU_70' | 'LU_80' | 'LU_120' | 'LU_130' | 'LU_140' | 'LU_160' | 'LU_170' | 'LV_50' | 'LV_120' | 'LV_210' | 'MC_09' | 'MC_21' | 'MC_55' | 'MC_85' | 'MC_100' | 'MC_200' | 'MT_50' | 'MT_70' | 'MT_120' | 'MT_180' | 'MU_150' | 'NL_90' | 'NL_210' | 'PL_50' | 'PL_80' | 'PL_230' | 'PT_60' | 'PT_130' | 'PT_160' | 'PT_180' | 'PT_220' | 'PT_230' | 'RO_50' | 'RO_90' | 'RO_110' | 'RO_190' | 'RO_210' | 'SE_60' | 'SE_120' | 'SE_250' | 'SI_50' | 'SI_95' | 'SI_220' | 'SK_50' | 'SK_100' | 'SK_190' | 'SK_200' | 'SK_230' | 'NO_120' | 'NO_150' | 'NO_250' | 'DE_70_BU0002' | 'DE_190_BU0003' | 'DE_70_BU0008' | 'DE_190_BU0009' | 'DE_intracom_70_BU0012' | 'DE_intracom_190_BU0013' | 'DE_190_electronic_BU0226' | 'exempt' | 'DE_intracom_exempt_BU0011' | 'DE_intracom_exempt_BU0047' | 'DE_exempt_BU0001' | 'DE_exempt_BU0181' | 'DE_exempt_BU0490' | 'intracom_21' | 'intracom_55' | 'intracom_85' | 'intracom_100' | 'crossborder' | 'DE_intracom_70_BU0018' | 'DE_intracom_190_BU0019' | 'DE_intracom_190_BU0506' | 'extracom' | 'DE_extracom_BU0173' | 'DE_extracom_BU0191' | 'DE_extracom_190_BU0511' | 'FR_85_construction' | 'FR_100_construction' | 'FR_200_construction' | 'DE_exempt_construction_BU0046' | 'DE_70_construction_BU0091' | 'DE_190_construction_BU0094' | 'DE_190_construction_BU0526' | 'DE_190_construction_BU0546' | 'mixed';
27800
+ /**
27801
+ * The description of the invoice line
27802
+ */
27803
+ description?: string | null;
27575
27804
  /**
27576
27805
  * Has to correspond to the rank number of a line items section in which the line item should be
27577
27806
  */
@@ -27589,6 +27818,15 @@ type PostQuotesData = {
27589
27818
  */
27590
27819
  value: string;
27591
27820
  };
27821
+ } | {
27822
+ /**
27823
+ * Line item label
27824
+ */
27825
+ label: string;
27826
+ /**
27827
+ * Line item quantity (number of items)
27828
+ */
27829
+ quantity: number;
27592
27830
  /**
27593
27831
  * The ledger account ID
27594
27832
  */
@@ -27610,9 +27848,22 @@ type PostQuotesData = {
27610
27848
  */
27611
27849
  description?: string | null;
27612
27850
  /**
27613
- * The product ID
27851
+ * Has to correspond to the rank number of a line items section in which the line item should be
27614
27852
  */
27615
- product_id?: number;
27853
+ section_rank?: number;
27854
+ discount?: {
27855
+ /**
27856
+ * Discount type.
27857
+ * - absolute if it is an amount
27858
+ * - relative if it is a percentage
27859
+ *
27860
+ */
27861
+ type: 'absolute' | 'relative';
27862
+ /**
27863
+ * Discount value on the total amount before tax of the line
27864
+ */
27865
+ value: string;
27866
+ };
27616
27867
  }>;
27617
27868
  };
27618
27869
  path?: never;
@@ -28069,13 +28320,41 @@ type UpdateQuoteData = {
28069
28320
  invoice_lines?: {
28070
28321
  create?: Array<{
28071
28322
  /**
28072
- * Invoice line label
28323
+ * The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.
28073
28324
  */
28074
- label: string;
28325
+ product_id: number;
28075
28326
  /**
28076
- * Invoice line quantity (number of items)
28327
+ * Line item quantity (number of items)
28077
28328
  */
28078
28329
  quantity: number;
28330
+ /**
28331
+ * Line item label
28332
+ */
28333
+ label?: string;
28334
+ /**
28335
+ * The ledger account ID
28336
+ */
28337
+ ledger_account_id?: number;
28338
+ /**
28339
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
28340
+ */
28341
+ raw_currency_unit_price?: string;
28342
+ /**
28343
+ * Line item unit (type of unit)
28344
+ */
28345
+ unit?: string;
28346
+ /**
28347
+ * Product VAT rate. A 20% VAT in France is FR_200.
28348
+ */
28349
+ vat_rate?: 'FR_1_05' | 'FR_1_75' | 'FR_09' | 'FR_21' | 'FR_40' | 'FR_50' | 'FR_55' | 'FR_60' | 'FR_65' | 'FR_85' | 'FR_92' | 'FR_100' | 'FR_130' | 'FR_15_385' | 'FR_160' | 'FR_196' | 'FR_200' | 'AD_10' | 'AD_45' | 'AD_95' | 'AT_100' | 'AT_130' | 'AT_190' | 'AT_200' | 'BE_60' | 'BE_120' | 'BE_210' | 'BG_90' | 'BG_200' | 'CH_25' | 'CH_37' | 'CH_77' | 'CH_26' | 'CH_38' | 'CH_81' | 'CY_30' | 'CY_50' | 'CY_80' | 'CY_90' | 'CY_190' | 'CZ_100' | 'CZ_120' | 'CZ_150' | 'CZ_210' | 'DE_70' | 'DE_190' | 'DK_250' | 'EE_90' | 'EE_200' | 'EE_220' | 'EE_240' | 'ES_40' | 'ES_70' | 'ES_100' | 'ES_210' | 'FI_100' | 'FI_135' | 'FI_140' | 'FI_240' | 'FI_255' | 'GB_50' | 'GB_200' | 'GR_60' | 'GR_130' | 'GR_170' | 'GR_240' | 'GR_40' | 'HR_50' | 'HR_130' | 'HR_250' | 'HU_50' | 'HU_180' | 'HU_270' | 'IE_48' | 'IE_90' | 'IE_135' | 'IE_210' | 'IE_230' | 'IT_40' | 'IT_50' | 'IT_100' | 'IT_220' | 'LT_50' | 'LT_90' | 'LT_120' | 'LT_210' | 'LU_30' | 'LU_70' | 'LU_80' | 'LU_120' | 'LU_130' | 'LU_140' | 'LU_160' | 'LU_170' | 'LV_50' | 'LV_120' | 'LV_210' | 'MC_09' | 'MC_21' | 'MC_55' | 'MC_85' | 'MC_100' | 'MC_200' | 'MT_50' | 'MT_70' | 'MT_120' | 'MT_180' | 'MU_150' | 'NL_90' | 'NL_210' | 'PL_50' | 'PL_80' | 'PL_230' | 'PT_60' | 'PT_130' | 'PT_160' | 'PT_180' | 'PT_220' | 'PT_230' | 'RO_50' | 'RO_90' | 'RO_110' | 'RO_190' | 'RO_210' | 'SE_60' | 'SE_120' | 'SE_250' | 'SI_50' | 'SI_95' | 'SI_220' | 'SK_50' | 'SK_100' | 'SK_190' | 'SK_200' | 'SK_230' | 'NO_120' | 'NO_150' | 'NO_250' | 'DE_70_BU0002' | 'DE_190_BU0003' | 'DE_70_BU0008' | 'DE_190_BU0009' | 'DE_intracom_70_BU0012' | 'DE_intracom_190_BU0013' | 'DE_190_electronic_BU0226' | 'exempt' | 'DE_intracom_exempt_BU0011' | 'DE_intracom_exempt_BU0047' | 'DE_exempt_BU0001' | 'DE_exempt_BU0181' | 'DE_exempt_BU0490' | 'intracom_21' | 'intracom_55' | 'intracom_85' | 'intracom_100' | 'crossborder' | 'DE_intracom_70_BU0018' | 'DE_intracom_190_BU0019' | 'DE_intracom_190_BU0506' | 'extracom' | 'DE_extracom_BU0173' | 'DE_extracom_BU0191' | 'DE_extracom_190_BU0511' | 'FR_85_construction' | 'FR_100_construction' | 'FR_200_construction' | 'DE_exempt_construction_BU0046' | 'DE_70_construction_BU0091' | 'DE_190_construction_BU0094' | 'DE_190_construction_BU0526' | 'DE_190_construction_BU0546' | 'mixed';
28350
+ /**
28351
+ * The description of the invoice line
28352
+ */
28353
+ description?: string | null;
28354
+ /**
28355
+ * Has to correspond to the rank number of a line items section in which the line item should be
28356
+ */
28357
+ section_rank?: number;
28079
28358
  discount?: {
28080
28359
  /**
28081
28360
  * Discount type.
@@ -28089,16 +28368,25 @@ type UpdateQuoteData = {
28089
28368
  */
28090
28369
  value: string;
28091
28370
  };
28371
+ } | {
28372
+ /**
28373
+ * Line item label
28374
+ */
28375
+ label: string;
28376
+ /**
28377
+ * Line item quantity (number of items)
28378
+ */
28379
+ quantity: number;
28092
28380
  /**
28093
28381
  * The ledger account ID
28094
28382
  */
28095
28383
  ledger_account_id?: number;
28096
28384
  /**
28097
- * The unit price excluding taxes. Can be set up to 6 decimals.
28385
+ * The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.
28098
28386
  */
28099
28387
  raw_currency_unit_price: string;
28100
28388
  /**
28101
- * Invoice line unit (type of unit)
28389
+ * Line item unit (type of unit)
28102
28390
  */
28103
28391
  unit: string;
28104
28392
  /**
@@ -28110,13 +28398,22 @@ type UpdateQuoteData = {
28110
28398
  */
28111
28399
  description?: string | null;
28112
28400
  /**
28113
- * The product ID
28114
- */
28115
- product_id?: number;
28116
- /**
28117
- * Has to correspond to the rank number of a quote line section in which the invoice line should be
28401
+ * Has to correspond to the rank number of a line items section in which the line item should be
28118
28402
  */
28119
28403
  section_rank?: number;
28404
+ discount?: {
28405
+ /**
28406
+ * Discount type.
28407
+ * - absolute if it is an amount
28408
+ * - relative if it is a percentage
28409
+ *
28410
+ */
28411
+ type: 'absolute' | 'relative';
28412
+ /**
28413
+ * Discount value on the total amount before tax of the line
28414
+ */
28415
+ value: string;
28416
+ };
28120
28417
  }>;
28121
28418
  update?: Array<{
28122
28419
  /**
@@ -35943,7 +36240,7 @@ declare const PDPAddresses__ResponseSchema: {
35943
36240
  readonly example: 1;
35944
36241
  };
35945
36242
  readonly siret: {
35946
- readonly description: "Establishment SIRET when the row is establishment-level; empty string when the row is SIREN-level (head office).\n";
36243
+ readonly description: "Establishment SIRET when the row is establishment-level; `null` when the row is SIREN-level (head office).\n";
35947
36244
  readonly type: "string";
35948
36245
  readonly nullable: true;
35949
36246
  readonly example: "98493148500010";
@@ -37915,12 +38212,12 @@ declare const SupplierInvoices__ResponseSchema: {
37915
38212
  readonly example: "2023-09-30";
37916
38213
  };
37917
38214
  readonly currency_tax: {
37918
- readonly description: "Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.";
38215
+ readonly description: "Invoice taxable amount (in invoice currency)";
37919
38216
  readonly type: "string";
37920
38217
  readonly example: "34.0";
37921
38218
  };
37922
38219
  readonly tax: {
37923
- readonly description: "Invoice taxable amount (in invoice currency)";
38220
+ readonly description: "Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.";
37924
38221
  readonly type: "string";
37925
38222
  readonly example: "34.0";
37926
38223
  };
@@ -39543,6 +39840,150 @@ declare const Quotes__ResponseSchema: {
39543
39840
  };
39544
39841
  readonly required: readonly ["id", "label", "quote_number", "currency", "amount", "currency_amount", "currency_amount_before_tax", "exchange_rate", "date", "deadline", "currency_tax", "tax", "language", "status", "discount", "public_file_url", "filename", "special_mention", "customer", "invoice_line_sections", "invoice_lines", "linked_invoices", "pdf_invoice_free_text", "pdf_invoice_subject", "pdf_description", "quote_template", "appendices", "external_reference", "archived_at", "created_at", "updated_at"];
39545
39842
  };
39843
+ declare const Quotes__InvoiceLineWithProduct_RequestSchema: {
39844
+ readonly title: "Product-based Invoice Line";
39845
+ readonly description: "Provide only the product_id to automatically populate label,\nraw_currency_unit_price, unit, vat_rate, and ledger_account_id.\nYou can override any of these fields by providing them explicitly.\n";
39846
+ readonly type: "object";
39847
+ readonly additionalProperties: false;
39848
+ readonly properties: {
39849
+ readonly product_id: {
39850
+ readonly description: "The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.";
39851
+ readonly type: "integer";
39852
+ readonly format: "int64";
39853
+ readonly example: 42;
39854
+ };
39855
+ readonly quantity: {
39856
+ readonly description: "Line item quantity (number of items)";
39857
+ readonly type: "number";
39858
+ readonly example: 2;
39859
+ };
39860
+ readonly label: {
39861
+ readonly description: "Line item label";
39862
+ readonly type: "string";
39863
+ readonly example: "Consulting fees";
39864
+ };
39865
+ readonly ledger_account_id: {
39866
+ readonly description: "The ledger account ID";
39867
+ readonly type: "integer";
39868
+ readonly format: "int64";
39869
+ readonly example: 1255;
39870
+ };
39871
+ readonly raw_currency_unit_price: {
39872
+ readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
39873
+ readonly type: "string";
39874
+ readonly example: "33.333334";
39875
+ };
39876
+ readonly unit: {
39877
+ readonly description: "Line item unit (type of unit)";
39878
+ readonly type: "string";
39879
+ readonly example: "piece";
39880
+ };
39881
+ readonly vat_rate: {
39882
+ readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
39883
+ readonly type: "string";
39884
+ readonly example: "FR_200";
39885
+ readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
39886
+ };
39887
+ readonly description: {
39888
+ readonly description: "The description of the invoice line";
39889
+ readonly type: "string";
39890
+ readonly nullable: true;
39891
+ readonly example: "Consulting services for August";
39892
+ };
39893
+ readonly section_rank: {
39894
+ readonly type: "integer";
39895
+ readonly example: 1;
39896
+ readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
39897
+ };
39898
+ readonly discount: {
39899
+ readonly type: "object";
39900
+ readonly additionalProperties: false;
39901
+ readonly properties: {
39902
+ readonly type: {
39903
+ readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
39904
+ readonly type: "string";
39905
+ readonly enum: readonly ["absolute", "relative"];
39906
+ };
39907
+ readonly value: {
39908
+ readonly description: "Discount value on the total amount before tax of the line";
39909
+ readonly type: "string";
39910
+ readonly example: "10";
39911
+ };
39912
+ };
39913
+ readonly required: readonly ["type", "value"];
39914
+ };
39915
+ };
39916
+ readonly required: readonly ["product_id", "quantity"];
39917
+ };
39918
+ declare const Quotes__InvoiceLineWithoutProduct_RequestSchema: {
39919
+ readonly title: "Standard Invoice Line";
39920
+ readonly description: "Create an invoice line by providing all required fields explicitly\nwithout referencing a product.\n";
39921
+ readonly type: "object";
39922
+ readonly additionalProperties: false;
39923
+ readonly properties: {
39924
+ readonly label: {
39925
+ readonly description: "Line item label";
39926
+ readonly type: "string";
39927
+ readonly example: "Consulting fees";
39928
+ };
39929
+ readonly quantity: {
39930
+ readonly description: "Line item quantity (number of items)";
39931
+ readonly type: "number";
39932
+ readonly example: 2;
39933
+ };
39934
+ readonly ledger_account_id: {
39935
+ readonly description: "The ledger account ID";
39936
+ readonly type: "integer";
39937
+ readonly format: "int64";
39938
+ readonly example: 1255;
39939
+ };
39940
+ readonly raw_currency_unit_price: {
39941
+ readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
39942
+ readonly type: "string";
39943
+ readonly example: "33.333334";
39944
+ };
39945
+ readonly unit: {
39946
+ readonly description: "Line item unit (type of unit)";
39947
+ readonly type: "string";
39948
+ readonly example: "piece";
39949
+ };
39950
+ readonly vat_rate: {
39951
+ readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
39952
+ readonly type: "string";
39953
+ readonly example: "FR_200";
39954
+ readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
39955
+ };
39956
+ readonly description: {
39957
+ readonly description: "The description of the invoice line";
39958
+ readonly type: "string";
39959
+ readonly nullable: true;
39960
+ readonly example: "Consulting services for August";
39961
+ };
39962
+ readonly section_rank: {
39963
+ readonly type: "integer";
39964
+ readonly example: 1;
39965
+ readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
39966
+ };
39967
+ readonly discount: {
39968
+ readonly type: "object";
39969
+ readonly additionalProperties: false;
39970
+ readonly properties: {
39971
+ readonly type: {
39972
+ readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
39973
+ readonly type: "string";
39974
+ readonly enum: readonly ["absolute", "relative"];
39975
+ };
39976
+ readonly value: {
39977
+ readonly description: "Discount value on the total amount before tax of the line";
39978
+ readonly type: "string";
39979
+ readonly example: "10";
39980
+ };
39981
+ };
39982
+ readonly required: readonly ["type", "value"];
39983
+ };
39984
+ };
39985
+ readonly required: readonly ["label", "quantity", "raw_currency_unit_price", "unit", "vat_rate"];
39986
+ };
39546
39987
  declare const Quotes__Post_RequestSchema: {
39547
39988
  readonly title: "Quote Request";
39548
39989
  readonly type: "object";
@@ -39657,77 +40098,149 @@ declare const Quotes__Post_RequestSchema: {
39657
40098
  readonly invoice_lines: {
39658
40099
  readonly type: "array";
39659
40100
  readonly items: {
39660
- readonly type: "object";
39661
- readonly additionalProperties: false;
39662
- readonly properties: {
39663
- readonly label: {
39664
- readonly description: "Line item label";
39665
- readonly type: "string";
39666
- readonly example: "Consulting fees";
39667
- };
39668
- readonly quantity: {
39669
- readonly description: "Line item quantity (number of items)";
39670
- readonly type: "number";
39671
- readonly example: 2;
39672
- };
39673
- readonly section_rank: {
39674
- readonly type: "integer";
39675
- readonly example: 1;
39676
- readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
39677
- };
39678
- readonly discount: {
39679
- readonly type: "object";
39680
- readonly additionalProperties: false;
39681
- readonly properties: {
39682
- readonly type: {
39683
- readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
39684
- readonly type: "string";
39685
- readonly enum: readonly ["absolute", "relative"];
39686
- };
39687
- readonly value: {
39688
- readonly description: "Discount value on the total amount before tax of the line";
39689
- readonly type: "string";
39690
- readonly example: "10";
40101
+ readonly oneOf: readonly [{
40102
+ readonly title: "Product-based Invoice Line";
40103
+ readonly description: "Provide only the product_id to automatically populate label,\nraw_currency_unit_price, unit, vat_rate, and ledger_account_id.\nYou can override any of these fields by providing them explicitly.\n";
40104
+ readonly type: "object";
40105
+ readonly additionalProperties: false;
40106
+ readonly properties: {
40107
+ readonly product_id: {
40108
+ readonly description: "The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.";
40109
+ readonly type: "integer";
40110
+ readonly format: "int64";
40111
+ readonly example: 42;
40112
+ };
40113
+ readonly quantity: {
40114
+ readonly description: "Line item quantity (number of items)";
40115
+ readonly type: "number";
40116
+ readonly example: 2;
40117
+ };
40118
+ readonly label: {
40119
+ readonly description: "Line item label";
40120
+ readonly type: "string";
40121
+ readonly example: "Consulting fees";
40122
+ };
40123
+ readonly ledger_account_id: {
40124
+ readonly description: "The ledger account ID";
40125
+ readonly type: "integer";
40126
+ readonly format: "int64";
40127
+ readonly example: 1255;
40128
+ };
40129
+ readonly raw_currency_unit_price: {
40130
+ readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
40131
+ readonly type: "string";
40132
+ readonly example: "33.333334";
40133
+ };
40134
+ readonly unit: {
40135
+ readonly description: "Line item unit (type of unit)";
40136
+ readonly type: "string";
40137
+ readonly example: "piece";
40138
+ };
40139
+ readonly vat_rate: {
40140
+ readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
40141
+ readonly type: "string";
40142
+ readonly example: "FR_200";
40143
+ readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
40144
+ };
40145
+ readonly description: {
40146
+ readonly description: "The description of the invoice line";
40147
+ readonly type: "string";
40148
+ readonly nullable: true;
40149
+ readonly example: "Consulting services for August";
40150
+ };
40151
+ readonly section_rank: {
40152
+ readonly type: "integer";
40153
+ readonly example: 1;
40154
+ readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
40155
+ };
40156
+ readonly discount: {
40157
+ readonly type: "object";
40158
+ readonly additionalProperties: false;
40159
+ readonly properties: {
40160
+ readonly type: {
40161
+ readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
40162
+ readonly type: "string";
40163
+ readonly enum: readonly ["absolute", "relative"];
40164
+ };
40165
+ readonly value: {
40166
+ readonly description: "Discount value on the total amount before tax of the line";
40167
+ readonly type: "string";
40168
+ readonly example: "10";
40169
+ };
39691
40170
  };
40171
+ readonly required: readonly ["type", "value"];
39692
40172
  };
39693
- readonly required: readonly ["type", "value"];
39694
- };
39695
- readonly ledger_account_id: {
39696
- readonly description: "The ledger account ID";
39697
- readonly type: "integer";
39698
- readonly format: "int64";
39699
- readonly example: 1255;
39700
- };
39701
- readonly raw_currency_unit_price: {
39702
- readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
39703
- readonly type: "string";
39704
- readonly example: "33.333334";
39705
- };
39706
- readonly unit: {
39707
- readonly description: "Line item unit (type of unit)";
39708
- readonly type: "string";
39709
- readonly example: "piece";
39710
- };
39711
- readonly vat_rate: {
39712
- readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
39713
- readonly type: "string";
39714
- readonly example: "FR_200";
39715
- readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
39716
- };
39717
- readonly description: {
39718
- readonly description: "The description of the invoice line";
39719
- readonly type: "string";
39720
- readonly nullable: true;
39721
- readonly example: "Consulting services for August";
39722
40173
  };
39723
- readonly product_id: {
39724
- readonly description: "The product ID";
39725
- readonly type: "integer";
39726
- readonly format: "int64";
39727
- readonly example: 42;
40174
+ readonly required: readonly ["product_id", "quantity"];
40175
+ }, {
40176
+ readonly title: "Standard Invoice Line";
40177
+ readonly description: "Create an invoice line by providing all required fields explicitly\nwithout referencing a product.\n";
40178
+ readonly type: "object";
40179
+ readonly additionalProperties: false;
40180
+ readonly properties: {
40181
+ readonly label: {
40182
+ readonly description: "Line item label";
40183
+ readonly type: "string";
40184
+ readonly example: "Consulting fees";
40185
+ };
40186
+ readonly quantity: {
40187
+ readonly description: "Line item quantity (number of items)";
40188
+ readonly type: "number";
40189
+ readonly example: 2;
40190
+ };
40191
+ readonly ledger_account_id: {
40192
+ readonly description: "The ledger account ID";
40193
+ readonly type: "integer";
40194
+ readonly format: "int64";
40195
+ readonly example: 1255;
40196
+ };
40197
+ readonly raw_currency_unit_price: {
40198
+ readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
40199
+ readonly type: "string";
40200
+ readonly example: "33.333334";
40201
+ };
40202
+ readonly unit: {
40203
+ readonly description: "Line item unit (type of unit)";
40204
+ readonly type: "string";
40205
+ readonly example: "piece";
40206
+ };
40207
+ readonly vat_rate: {
40208
+ readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
40209
+ readonly type: "string";
40210
+ readonly example: "FR_200";
40211
+ readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
40212
+ };
40213
+ readonly description: {
40214
+ readonly description: "The description of the invoice line";
40215
+ readonly type: "string";
40216
+ readonly nullable: true;
40217
+ readonly example: "Consulting services for August";
40218
+ };
40219
+ readonly section_rank: {
40220
+ readonly type: "integer";
40221
+ readonly example: 1;
40222
+ readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
40223
+ };
40224
+ readonly discount: {
40225
+ readonly type: "object";
40226
+ readonly additionalProperties: false;
40227
+ readonly properties: {
40228
+ readonly type: {
40229
+ readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
40230
+ readonly type: "string";
40231
+ readonly enum: readonly ["absolute", "relative"];
40232
+ };
40233
+ readonly value: {
40234
+ readonly description: "Discount value on the total amount before tax of the line";
40235
+ readonly type: "string";
40236
+ readonly example: "10";
40237
+ };
40238
+ };
40239
+ readonly required: readonly ["type", "value"];
40240
+ };
39728
40241
  };
39729
- };
39730
- readonly required: readonly ["label", "quantity", "raw_currency_unit_price", "unit", "vat_rate"];
40242
+ readonly required: readonly ["label", "quantity", "raw_currency_unit_price", "unit", "vat_rate"];
40243
+ }];
39731
40244
  };
39732
40245
  readonly minItems: 1;
39733
40246
  };
@@ -39820,76 +40333,149 @@ declare const Quotes__Put_RequestSchema: {
39820
40333
  readonly create: {
39821
40334
  readonly type: "array";
39822
40335
  readonly items: {
39823
- readonly type: "object";
39824
- readonly additionalProperties: false;
39825
- readonly properties: {
39826
- readonly label: {
39827
- readonly description: "Invoice line label";
39828
- readonly type: "string";
39829
- readonly example: "Demo label";
39830
- };
39831
- readonly quantity: {
39832
- readonly description: "Invoice line quantity (number of items)";
39833
- readonly type: "number";
39834
- readonly example: 12;
39835
- };
39836
- readonly discount: {
39837
- readonly type: "object";
39838
- readonly additionalProperties: false;
39839
- readonly properties: {
39840
- readonly type: {
39841
- readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
39842
- readonly type: "string";
39843
- readonly enum: readonly ["absolute", "relative"];
39844
- };
39845
- readonly value: {
39846
- readonly description: "Discount value on the total amount before tax of the line";
39847
- readonly type: "string";
39848
- readonly example: "25";
40336
+ readonly oneOf: readonly [{
40337
+ readonly title: "Product-based Invoice Line";
40338
+ readonly description: "Provide only the product_id to automatically populate label,\nraw_currency_unit_price, unit, vat_rate, and ledger_account_id.\nYou can override any of these fields by providing them explicitly.\n";
40339
+ readonly type: "object";
40340
+ readonly additionalProperties: false;
40341
+ readonly properties: {
40342
+ readonly product_id: {
40343
+ readonly description: "The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.";
40344
+ readonly type: "integer";
40345
+ readonly format: "int64";
40346
+ readonly example: 42;
40347
+ };
40348
+ readonly quantity: {
40349
+ readonly description: "Line item quantity (number of items)";
40350
+ readonly type: "number";
40351
+ readonly example: 2;
40352
+ };
40353
+ readonly label: {
40354
+ readonly description: "Line item label";
40355
+ readonly type: "string";
40356
+ readonly example: "Consulting fees";
40357
+ };
40358
+ readonly ledger_account_id: {
40359
+ readonly description: "The ledger account ID";
40360
+ readonly type: "integer";
40361
+ readonly format: "int64";
40362
+ readonly example: 1255;
40363
+ };
40364
+ readonly raw_currency_unit_price: {
40365
+ readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
40366
+ readonly type: "string";
40367
+ readonly example: "33.333334";
40368
+ };
40369
+ readonly unit: {
40370
+ readonly description: "Line item unit (type of unit)";
40371
+ readonly type: "string";
40372
+ readonly example: "piece";
40373
+ };
40374
+ readonly vat_rate: {
40375
+ readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
40376
+ readonly type: "string";
40377
+ readonly example: "FR_200";
40378
+ readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
40379
+ };
40380
+ readonly description: {
40381
+ readonly description: "The description of the invoice line";
40382
+ readonly type: "string";
40383
+ readonly nullable: true;
40384
+ readonly example: "Consulting services for August";
40385
+ };
40386
+ readonly section_rank: {
40387
+ readonly type: "integer";
40388
+ readonly example: 1;
40389
+ readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
40390
+ };
40391
+ readonly discount: {
40392
+ readonly type: "object";
40393
+ readonly additionalProperties: false;
40394
+ readonly properties: {
40395
+ readonly type: {
40396
+ readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
40397
+ readonly type: "string";
40398
+ readonly enum: readonly ["absolute", "relative"];
40399
+ };
40400
+ readonly value: {
40401
+ readonly description: "Discount value on the total amount before tax of the line";
40402
+ readonly type: "string";
40403
+ readonly example: "10";
40404
+ };
39849
40405
  };
40406
+ readonly required: readonly ["type", "value"];
39850
40407
  };
39851
- readonly required: readonly ["type", "value"];
39852
- };
39853
- readonly ledger_account_id: {
39854
- readonly description: "The ledger account ID";
39855
- readonly type: "integer";
39856
- readonly format: "int64";
39857
- readonly example: 1255;
39858
- };
39859
- readonly raw_currency_unit_price: {
39860
- readonly description: "The unit price excluding taxes. Can be set up to 6 decimals.";
39861
- readonly type: "string";
39862
- readonly example: "33.333334";
39863
- };
39864
- readonly unit: {
39865
- readonly description: "Invoice line unit (type of unit)";
39866
- readonly type: "string";
39867
- readonly example: "piece";
39868
- };
39869
- readonly vat_rate: {
39870
- readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
39871
- readonly type: "string";
39872
- readonly example: "FR_200";
39873
- readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
39874
- };
39875
- readonly description: {
39876
- readonly description: "The description of the invoice line";
39877
- readonly type: "string";
39878
- readonly nullable: true;
39879
- };
39880
- readonly product_id: {
39881
- readonly description: "The product ID";
39882
- readonly type: "integer";
39883
- readonly format: "int64";
39884
- readonly example: 42;
39885
40408
  };
39886
- readonly section_rank: {
39887
- readonly type: "integer";
39888
- readonly example: 1;
39889
- readonly description: "Has to correspond to the rank number of a quote line section in which the invoice line should be";
40409
+ readonly required: readonly ["product_id", "quantity"];
40410
+ }, {
40411
+ readonly title: "Standard Invoice Line";
40412
+ readonly description: "Create an invoice line by providing all required fields explicitly\nwithout referencing a product.\n";
40413
+ readonly type: "object";
40414
+ readonly additionalProperties: false;
40415
+ readonly properties: {
40416
+ readonly label: {
40417
+ readonly description: "Line item label";
40418
+ readonly type: "string";
40419
+ readonly example: "Consulting fees";
40420
+ };
40421
+ readonly quantity: {
40422
+ readonly description: "Line item quantity (number of items)";
40423
+ readonly type: "number";
40424
+ readonly example: 2;
40425
+ };
40426
+ readonly ledger_account_id: {
40427
+ readonly description: "The ledger account ID";
40428
+ readonly type: "integer";
40429
+ readonly format: "int64";
40430
+ readonly example: 1255;
40431
+ };
40432
+ readonly raw_currency_unit_price: {
40433
+ readonly description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.";
40434
+ readonly type: "string";
40435
+ readonly example: "33.333334";
40436
+ };
40437
+ readonly unit: {
40438
+ readonly description: "Line item unit (type of unit)";
40439
+ readonly type: "string";
40440
+ readonly example: "piece";
40441
+ };
40442
+ readonly vat_rate: {
40443
+ readonly description: "Product VAT rate. A 20% VAT in France is FR_200.";
40444
+ readonly type: "string";
40445
+ readonly example: "FR_200";
40446
+ readonly enum: readonly ["FR_1_05", "FR_1_75", "FR_09", "FR_21", "FR_40", "FR_50", "FR_55", "FR_60", "FR_65", "FR_85", "FR_92", "FR_100", "FR_130", "FR_15_385", "FR_160", "FR_196", "FR_200", "AD_10", "AD_45", "AD_95", "AT_100", "AT_130", "AT_190", "AT_200", "BE_60", "BE_120", "BE_210", "BG_90", "BG_200", "CH_25", "CH_37", "CH_77", "CH_26", "CH_38", "CH_81", "CY_30", "CY_50", "CY_80", "CY_90", "CY_190", "CZ_100", "CZ_120", "CZ_150", "CZ_210", "DE_70", "DE_190", "DK_250", "EE_90", "EE_200", "EE_220", "EE_240", "ES_40", "ES_70", "ES_100", "ES_210", "FI_100", "FI_135", "FI_140", "FI_240", "FI_255", "GB_50", "GB_200", "GR_60", "GR_130", "GR_170", "GR_240", "GR_40", "HR_50", "HR_130", "HR_250", "HU_50", "HU_180", "HU_270", "IE_48", "IE_90", "IE_135", "IE_210", "IE_230", "IT_40", "IT_50", "IT_100", "IT_220", "LT_50", "LT_90", "LT_120", "LT_210", "LU_30", "LU_70", "LU_80", "LU_120", "LU_130", "LU_140", "LU_160", "LU_170", "LV_50", "LV_120", "LV_210", "MC_09", "MC_21", "MC_55", "MC_85", "MC_100", "MC_200", "MT_50", "MT_70", "MT_120", "MT_180", "MU_150", "NL_90", "NL_210", "PL_50", "PL_80", "PL_230", "PT_60", "PT_130", "PT_160", "PT_180", "PT_220", "PT_230", "RO_50", "RO_90", "RO_110", "RO_190", "RO_210", "SE_60", "SE_120", "SE_250", "SI_50", "SI_95", "SI_220", "SK_50", "SK_100", "SK_190", "SK_200", "SK_230", "NO_120", "NO_150", "NO_250", "DE_70_BU0002", "DE_190_BU0003", "DE_70_BU0008", "DE_190_BU0009", "DE_intracom_70_BU0012", "DE_intracom_190_BU0013", "DE_190_electronic_BU0226", "exempt", "DE_intracom_exempt_BU0011", "DE_intracom_exempt_BU0047", "DE_exempt_BU0001", "DE_exempt_BU0181", "DE_exempt_BU0490", "intracom_21", "intracom_55", "intracom_85", "intracom_100", "crossborder", "DE_intracom_70_BU0018", "DE_intracom_190_BU0019", "DE_intracom_190_BU0506", "extracom", "DE_extracom_BU0173", "DE_extracom_BU0191", "DE_extracom_190_BU0511", "FR_85_construction", "FR_100_construction", "FR_200_construction", "DE_exempt_construction_BU0046", "DE_70_construction_BU0091", "DE_190_construction_BU0094", "DE_190_construction_BU0526", "DE_190_construction_BU0546", "mixed"];
40447
+ };
40448
+ readonly description: {
40449
+ readonly description: "The description of the invoice line";
40450
+ readonly type: "string";
40451
+ readonly nullable: true;
40452
+ readonly example: "Consulting services for August";
40453
+ };
40454
+ readonly section_rank: {
40455
+ readonly type: "integer";
40456
+ readonly example: 1;
40457
+ readonly description: "Has to correspond to the rank number of a line items section in which the line item should be";
40458
+ };
40459
+ readonly discount: {
40460
+ readonly type: "object";
40461
+ readonly additionalProperties: false;
40462
+ readonly properties: {
40463
+ readonly type: {
40464
+ readonly description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n";
40465
+ readonly type: "string";
40466
+ readonly enum: readonly ["absolute", "relative"];
40467
+ };
40468
+ readonly value: {
40469
+ readonly description: "Discount value on the total amount before tax of the line";
40470
+ readonly type: "string";
40471
+ readonly example: "10";
40472
+ };
40473
+ };
40474
+ readonly required: readonly ["type", "value"];
40475
+ };
39890
40476
  };
39891
- };
39892
- readonly required: readonly ["label", "quantity", "raw_currency_unit_price", "unit", "vat_rate"];
40477
+ readonly required: readonly ["label", "quantity", "raw_currency_unit_price", "unit", "vat_rate"];
40478
+ }];
39893
40479
  };
39894
40480
  };
39895
40481
  readonly update: {
@@ -41569,7 +42155,7 @@ declare const getBillingSubscriptionInvoiceLines: <ThrowOnError extends boolean
41569
42155
  *
41570
42156
  * Returns all PA (Plateforme Agrée) registrations for the company,
41571
42157
  * including activation status and exchange direction. Use this to determine whether the company has completed
41572
- * PA onboarding. Records with an empty `siret` represent the SIREN-level
42158
+ * PA onboarding. Records with a `null` `siret` represent the SIREN-level
41573
42159
  * (head office), other records represent establishments.
41574
42160
  *
41575
42161
  *
@@ -42918,5 +43504,5 @@ declare const getBankEstablishments: <ThrowOnError extends boolean = false>(opti
42918
43504
  //#region src/index.d.ts
42919
43505
  declare function createClientWithApiKey(apiKey: string): Client;
42920
43506
  //#endregion
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 };
43507
+ 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, QuotesInvoiceLineWithProductRequest, QuotesInvoiceLineWithoutProductRequest, QuotesInvoiceLinesResponse, QuotesPostRequest, QuotesPutRequest, QuotesResponse, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, type RequestOptions, type RequestResult, type ResolvedRequestOptions, type ResponseStyle, 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 };
42922
43508
  //# sourceMappingURL=index.d.mts.map