@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 +773 -187
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1274 -291
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7613,7 +7613,7 @@ const PDPAddresses__ResponseSchema = {
|
|
|
7613
7613
|
example: 1
|
|
7614
7614
|
},
|
|
7615
7615
|
siret: {
|
|
7616
|
-
description: "Establishment SIRET when the row is establishment-level;
|
|
7616
|
+
description: "Establishment SIRET when the row is establishment-level; `null` when the row is SIREN-level (head office).\n",
|
|
7617
7617
|
type: "string",
|
|
7618
7618
|
nullable: true,
|
|
7619
7619
|
example: "98493148500010"
|
|
@@ -11076,12 +11076,12 @@ const SupplierInvoices__ResponseSchema = {
|
|
|
11076
11076
|
example: "2023-09-30"
|
|
11077
11077
|
},
|
|
11078
11078
|
currency_tax: {
|
|
11079
|
-
description: "Invoice taxable amount (in
|
|
11079
|
+
description: "Invoice taxable amount (in invoice currency)",
|
|
11080
11080
|
type: "string",
|
|
11081
11081
|
example: "34.0"
|
|
11082
11082
|
},
|
|
11083
11083
|
tax: {
|
|
11084
|
-
description: "Invoice taxable amount (in
|
|
11084
|
+
description: "Invoice taxable amount (in euros). If the currency is euro, `currency_tax` and `tax` are identical.",
|
|
11085
11085
|
type: "string",
|
|
11086
11086
|
example: "34.0"
|
|
11087
11087
|
},
|
|
@@ -13855,252 +13855,748 @@ const Quotes__ResponseSchema = {
|
|
|
13855
13855
|
"updated_at"
|
|
13856
13856
|
]
|
|
13857
13857
|
};
|
|
13858
|
-
const
|
|
13859
|
-
title: "
|
|
13858
|
+
const Quotes__InvoiceLineWithProduct_RequestSchema = {
|
|
13859
|
+
title: "Product-based Invoice Line",
|
|
13860
|
+
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",
|
|
13860
13861
|
type: "object",
|
|
13861
13862
|
additionalProperties: false,
|
|
13862
13863
|
properties: {
|
|
13863
|
-
|
|
13864
|
-
description: "
|
|
13865
|
-
type: "string",
|
|
13866
|
-
format: "date",
|
|
13867
|
-
example: "2023-08-30"
|
|
13868
|
-
},
|
|
13869
|
-
deadline: {
|
|
13870
|
-
description: "Quote validity deadline (ISO 8601)",
|
|
13871
|
-
type: "string",
|
|
13872
|
-
format: "date",
|
|
13873
|
-
example: "2023-09-02"
|
|
13874
|
-
},
|
|
13875
|
-
customer_id: {
|
|
13876
|
-
description: "Customer identifier",
|
|
13877
|
-
type: "integer",
|
|
13878
|
-
format: "int64",
|
|
13879
|
-
example: 42
|
|
13880
|
-
},
|
|
13881
|
-
quote_template_id: {
|
|
13882
|
-
description: "The quote template ID",
|
|
13864
|
+
product_id: {
|
|
13865
|
+
description: "The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.",
|
|
13883
13866
|
type: "integer",
|
|
13884
13867
|
format: "int64",
|
|
13885
13868
|
example: 42
|
|
13886
13869
|
},
|
|
13887
|
-
|
|
13888
|
-
description: "
|
|
13889
|
-
type: "
|
|
13890
|
-
|
|
13891
|
-
example: "Additional free field"
|
|
13870
|
+
quantity: {
|
|
13871
|
+
description: "Line item quantity (number of items)",
|
|
13872
|
+
type: "number",
|
|
13873
|
+
example: 2
|
|
13892
13874
|
},
|
|
13893
|
-
|
|
13894
|
-
description: "
|
|
13875
|
+
label: {
|
|
13876
|
+
description: "Line item label",
|
|
13895
13877
|
type: "string",
|
|
13896
|
-
|
|
13897
|
-
example: "Invoice title"
|
|
13878
|
+
example: "Consulting fees"
|
|
13898
13879
|
},
|
|
13899
|
-
|
|
13900
|
-
description: "
|
|
13901
|
-
type: "
|
|
13902
|
-
|
|
13903
|
-
example:
|
|
13880
|
+
ledger_account_id: {
|
|
13881
|
+
description: "The ledger account ID",
|
|
13882
|
+
type: "integer",
|
|
13883
|
+
format: "int64",
|
|
13884
|
+
example: 1255
|
|
13904
13885
|
},
|
|
13905
|
-
|
|
13886
|
+
raw_currency_unit_price: {
|
|
13887
|
+
description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.",
|
|
13906
13888
|
type: "string",
|
|
13907
|
-
|
|
13908
|
-
enum: [
|
|
13909
|
-
"EUR",
|
|
13910
|
-
"USD",
|
|
13911
|
-
"GBP",
|
|
13912
|
-
"AED",
|
|
13913
|
-
"AFN",
|
|
13914
|
-
"ALL",
|
|
13915
|
-
"AMD",
|
|
13916
|
-
"ANG",
|
|
13917
|
-
"AOA",
|
|
13918
|
-
"ARS",
|
|
13919
|
-
"AUD",
|
|
13920
|
-
"AWG",
|
|
13921
|
-
"AZN",
|
|
13922
|
-
"BAM",
|
|
13923
|
-
"BBD",
|
|
13924
|
-
"BDT",
|
|
13925
|
-
"BGN",
|
|
13926
|
-
"BHD",
|
|
13927
|
-
"BIF",
|
|
13928
|
-
"BMD",
|
|
13929
|
-
"BND",
|
|
13930
|
-
"BOB",
|
|
13931
|
-
"BRL",
|
|
13932
|
-
"BSD",
|
|
13933
|
-
"BTN",
|
|
13934
|
-
"BWP",
|
|
13935
|
-
"BYN",
|
|
13936
|
-
"BYR",
|
|
13937
|
-
"BZD",
|
|
13938
|
-
"CAD",
|
|
13939
|
-
"CDF",
|
|
13940
|
-
"CHE",
|
|
13941
|
-
"CHF",
|
|
13942
|
-
"CLF",
|
|
13943
|
-
"CLP",
|
|
13944
|
-
"CNY",
|
|
13945
|
-
"COP",
|
|
13946
|
-
"CRC",
|
|
13947
|
-
"CUC",
|
|
13948
|
-
"CUP",
|
|
13949
|
-
"CVE",
|
|
13950
|
-
"CZK",
|
|
13951
|
-
"DJF",
|
|
13952
|
-
"DKK",
|
|
13953
|
-
"DOP",
|
|
13954
|
-
"DZD",
|
|
13955
|
-
"EGP",
|
|
13956
|
-
"ERN",
|
|
13957
|
-
"ETB",
|
|
13958
|
-
"FJD",
|
|
13959
|
-
"FKP",
|
|
13960
|
-
"GEL",
|
|
13961
|
-
"GGP",
|
|
13962
|
-
"GHS",
|
|
13963
|
-
"GIP",
|
|
13964
|
-
"GMD",
|
|
13965
|
-
"GNF",
|
|
13966
|
-
"GTQ",
|
|
13967
|
-
"GYD",
|
|
13968
|
-
"HKD",
|
|
13969
|
-
"HNL",
|
|
13970
|
-
"HRK",
|
|
13971
|
-
"HTG",
|
|
13972
|
-
"HUF",
|
|
13973
|
-
"IDR",
|
|
13974
|
-
"ILS",
|
|
13975
|
-
"IMP",
|
|
13976
|
-
"INR",
|
|
13977
|
-
"IQD",
|
|
13978
|
-
"IRR",
|
|
13979
|
-
"ISK",
|
|
13980
|
-
"JEP",
|
|
13981
|
-
"JMD",
|
|
13982
|
-
"JOD",
|
|
13983
|
-
"JPY",
|
|
13984
|
-
"KES",
|
|
13985
|
-
"KGS",
|
|
13986
|
-
"KHR",
|
|
13987
|
-
"KMF",
|
|
13988
|
-
"KPW",
|
|
13989
|
-
"KRW",
|
|
13990
|
-
"KWD",
|
|
13991
|
-
"KYD",
|
|
13992
|
-
"KZT",
|
|
13993
|
-
"LAK",
|
|
13994
|
-
"LBP",
|
|
13995
|
-
"LKR",
|
|
13996
|
-
"LRD",
|
|
13997
|
-
"LSL",
|
|
13998
|
-
"LTL",
|
|
13999
|
-
"LVL",
|
|
14000
|
-
"LYD",
|
|
14001
|
-
"MAD",
|
|
14002
|
-
"MDL",
|
|
14003
|
-
"MGA",
|
|
14004
|
-
"MKD",
|
|
14005
|
-
"MMK",
|
|
14006
|
-
"MNT",
|
|
14007
|
-
"MOP",
|
|
14008
|
-
"MRO",
|
|
14009
|
-
"MRU",
|
|
14010
|
-
"MUR",
|
|
14011
|
-
"MVR",
|
|
14012
|
-
"MWK",
|
|
14013
|
-
"MXN",
|
|
14014
|
-
"MYR",
|
|
14015
|
-
"MZN",
|
|
14016
|
-
"NAD",
|
|
14017
|
-
"NGN",
|
|
14018
|
-
"NIO",
|
|
14019
|
-
"NOK",
|
|
14020
|
-
"NPR",
|
|
14021
|
-
"NZD",
|
|
14022
|
-
"OMR",
|
|
14023
|
-
"PAB",
|
|
14024
|
-
"PEN",
|
|
14025
|
-
"PGK",
|
|
14026
|
-
"PHP",
|
|
14027
|
-
"PKR",
|
|
14028
|
-
"PLN",
|
|
14029
|
-
"PYG",
|
|
14030
|
-
"QAR",
|
|
14031
|
-
"RON",
|
|
14032
|
-
"RSD",
|
|
14033
|
-
"RUB",
|
|
14034
|
-
"RWF",
|
|
14035
|
-
"SAR",
|
|
14036
|
-
"SBD",
|
|
14037
|
-
"SCR",
|
|
14038
|
-
"SDG",
|
|
14039
|
-
"SEK",
|
|
14040
|
-
"SGD",
|
|
14041
|
-
"SHP",
|
|
14042
|
-
"SLL",
|
|
14043
|
-
"SLE",
|
|
14044
|
-
"SOS",
|
|
14045
|
-
"SRD",
|
|
14046
|
-
"STD",
|
|
14047
|
-
"SVC",
|
|
14048
|
-
"SYP",
|
|
14049
|
-
"SZL",
|
|
14050
|
-
"THB",
|
|
14051
|
-
"TJS",
|
|
14052
|
-
"TMT",
|
|
14053
|
-
"TND",
|
|
14054
|
-
"TOP",
|
|
14055
|
-
"TRY",
|
|
14056
|
-
"TTD",
|
|
14057
|
-
"TWD",
|
|
14058
|
-
"TZS",
|
|
14059
|
-
"UAH",
|
|
14060
|
-
"UGX",
|
|
14061
|
-
"UYU",
|
|
14062
|
-
"UZS",
|
|
14063
|
-
"VEF",
|
|
14064
|
-
"VND",
|
|
14065
|
-
"VUV",
|
|
14066
|
-
"WST",
|
|
14067
|
-
"XAF",
|
|
14068
|
-
"XCD",
|
|
14069
|
-
"XDR",
|
|
14070
|
-
"XOF",
|
|
14071
|
-
"XPF",
|
|
14072
|
-
"YER",
|
|
14073
|
-
"ZAR",
|
|
14074
|
-
"ZMK",
|
|
14075
|
-
"ZMW",
|
|
14076
|
-
"ZWL"
|
|
14077
|
-
]
|
|
13889
|
+
example: "33.333334"
|
|
14078
13890
|
},
|
|
14079
|
-
|
|
14080
|
-
description: "
|
|
13891
|
+
unit: {
|
|
13892
|
+
description: "Line item unit (type of unit)",
|
|
14081
13893
|
type: "string",
|
|
14082
|
-
|
|
14083
|
-
example: "Additional details"
|
|
13894
|
+
example: "piece"
|
|
14084
13895
|
},
|
|
14085
|
-
|
|
13896
|
+
vat_rate: {
|
|
13897
|
+
description: "Product VAT rate. A 20% VAT in France is FR_200.",
|
|
14086
13898
|
type: "string",
|
|
14087
|
-
|
|
13899
|
+
example: "FR_200",
|
|
14088
13900
|
enum: [
|
|
14089
|
-
"
|
|
14090
|
-
"
|
|
14091
|
-
"
|
|
14092
|
-
|
|
14093
|
-
|
|
14094
|
-
|
|
14095
|
-
|
|
14096
|
-
|
|
14097
|
-
|
|
14098
|
-
|
|
14099
|
-
|
|
14100
|
-
|
|
14101
|
-
|
|
14102
|
-
|
|
14103
|
-
|
|
13901
|
+
"FR_1_05",
|
|
13902
|
+
"FR_1_75",
|
|
13903
|
+
"FR_09",
|
|
13904
|
+
"FR_21",
|
|
13905
|
+
"FR_40",
|
|
13906
|
+
"FR_50",
|
|
13907
|
+
"FR_55",
|
|
13908
|
+
"FR_60",
|
|
13909
|
+
"FR_65",
|
|
13910
|
+
"FR_85",
|
|
13911
|
+
"FR_92",
|
|
13912
|
+
"FR_100",
|
|
13913
|
+
"FR_130",
|
|
13914
|
+
"FR_15_385",
|
|
13915
|
+
"FR_160",
|
|
13916
|
+
"FR_196",
|
|
13917
|
+
"FR_200",
|
|
13918
|
+
"AD_10",
|
|
13919
|
+
"AD_45",
|
|
13920
|
+
"AD_95",
|
|
13921
|
+
"AT_100",
|
|
13922
|
+
"AT_130",
|
|
13923
|
+
"AT_190",
|
|
13924
|
+
"AT_200",
|
|
13925
|
+
"BE_60",
|
|
13926
|
+
"BE_120",
|
|
13927
|
+
"BE_210",
|
|
13928
|
+
"BG_90",
|
|
13929
|
+
"BG_200",
|
|
13930
|
+
"CH_25",
|
|
13931
|
+
"CH_37",
|
|
13932
|
+
"CH_77",
|
|
13933
|
+
"CH_26",
|
|
13934
|
+
"CH_38",
|
|
13935
|
+
"CH_81",
|
|
13936
|
+
"CY_30",
|
|
13937
|
+
"CY_50",
|
|
13938
|
+
"CY_80",
|
|
13939
|
+
"CY_90",
|
|
13940
|
+
"CY_190",
|
|
13941
|
+
"CZ_100",
|
|
13942
|
+
"CZ_120",
|
|
13943
|
+
"CZ_150",
|
|
13944
|
+
"CZ_210",
|
|
13945
|
+
"DE_70",
|
|
13946
|
+
"DE_190",
|
|
13947
|
+
"DK_250",
|
|
13948
|
+
"EE_90",
|
|
13949
|
+
"EE_200",
|
|
13950
|
+
"EE_220",
|
|
13951
|
+
"EE_240",
|
|
13952
|
+
"ES_40",
|
|
13953
|
+
"ES_70",
|
|
13954
|
+
"ES_100",
|
|
13955
|
+
"ES_210",
|
|
13956
|
+
"FI_100",
|
|
13957
|
+
"FI_135",
|
|
13958
|
+
"FI_140",
|
|
13959
|
+
"FI_240",
|
|
13960
|
+
"FI_255",
|
|
13961
|
+
"GB_50",
|
|
13962
|
+
"GB_200",
|
|
13963
|
+
"GR_60",
|
|
13964
|
+
"GR_130",
|
|
13965
|
+
"GR_170",
|
|
13966
|
+
"GR_240",
|
|
13967
|
+
"GR_40",
|
|
13968
|
+
"HR_50",
|
|
13969
|
+
"HR_130",
|
|
13970
|
+
"HR_250",
|
|
13971
|
+
"HU_50",
|
|
13972
|
+
"HU_180",
|
|
13973
|
+
"HU_270",
|
|
13974
|
+
"IE_48",
|
|
13975
|
+
"IE_90",
|
|
13976
|
+
"IE_135",
|
|
13977
|
+
"IE_210",
|
|
13978
|
+
"IE_230",
|
|
13979
|
+
"IT_40",
|
|
13980
|
+
"IT_50",
|
|
13981
|
+
"IT_100",
|
|
13982
|
+
"IT_220",
|
|
13983
|
+
"LT_50",
|
|
13984
|
+
"LT_90",
|
|
13985
|
+
"LT_120",
|
|
13986
|
+
"LT_210",
|
|
13987
|
+
"LU_30",
|
|
13988
|
+
"LU_70",
|
|
13989
|
+
"LU_80",
|
|
13990
|
+
"LU_120",
|
|
13991
|
+
"LU_130",
|
|
13992
|
+
"LU_140",
|
|
13993
|
+
"LU_160",
|
|
13994
|
+
"LU_170",
|
|
13995
|
+
"LV_50",
|
|
13996
|
+
"LV_120",
|
|
13997
|
+
"LV_210",
|
|
13998
|
+
"MC_09",
|
|
13999
|
+
"MC_21",
|
|
14000
|
+
"MC_55",
|
|
14001
|
+
"MC_85",
|
|
14002
|
+
"MC_100",
|
|
14003
|
+
"MC_200",
|
|
14004
|
+
"MT_50",
|
|
14005
|
+
"MT_70",
|
|
14006
|
+
"MT_120",
|
|
14007
|
+
"MT_180",
|
|
14008
|
+
"MU_150",
|
|
14009
|
+
"NL_90",
|
|
14010
|
+
"NL_210",
|
|
14011
|
+
"PL_50",
|
|
14012
|
+
"PL_80",
|
|
14013
|
+
"PL_230",
|
|
14014
|
+
"PT_60",
|
|
14015
|
+
"PT_130",
|
|
14016
|
+
"PT_160",
|
|
14017
|
+
"PT_180",
|
|
14018
|
+
"PT_220",
|
|
14019
|
+
"PT_230",
|
|
14020
|
+
"RO_50",
|
|
14021
|
+
"RO_90",
|
|
14022
|
+
"RO_110",
|
|
14023
|
+
"RO_190",
|
|
14024
|
+
"RO_210",
|
|
14025
|
+
"SE_60",
|
|
14026
|
+
"SE_120",
|
|
14027
|
+
"SE_250",
|
|
14028
|
+
"SI_50",
|
|
14029
|
+
"SI_95",
|
|
14030
|
+
"SI_220",
|
|
14031
|
+
"SK_50",
|
|
14032
|
+
"SK_100",
|
|
14033
|
+
"SK_190",
|
|
14034
|
+
"SK_200",
|
|
14035
|
+
"SK_230",
|
|
14036
|
+
"NO_120",
|
|
14037
|
+
"NO_150",
|
|
14038
|
+
"NO_250",
|
|
14039
|
+
"DE_70_BU0002",
|
|
14040
|
+
"DE_190_BU0003",
|
|
14041
|
+
"DE_70_BU0008",
|
|
14042
|
+
"DE_190_BU0009",
|
|
14043
|
+
"DE_intracom_70_BU0012",
|
|
14044
|
+
"DE_intracom_190_BU0013",
|
|
14045
|
+
"DE_190_electronic_BU0226",
|
|
14046
|
+
"exempt",
|
|
14047
|
+
"DE_intracom_exempt_BU0011",
|
|
14048
|
+
"DE_intracom_exempt_BU0047",
|
|
14049
|
+
"DE_exempt_BU0001",
|
|
14050
|
+
"DE_exempt_BU0181",
|
|
14051
|
+
"DE_exempt_BU0490",
|
|
14052
|
+
"intracom_21",
|
|
14053
|
+
"intracom_55",
|
|
14054
|
+
"intracom_85",
|
|
14055
|
+
"intracom_100",
|
|
14056
|
+
"crossborder",
|
|
14057
|
+
"DE_intracom_70_BU0018",
|
|
14058
|
+
"DE_intracom_190_BU0019",
|
|
14059
|
+
"DE_intracom_190_BU0506",
|
|
14060
|
+
"extracom",
|
|
14061
|
+
"DE_extracom_BU0173",
|
|
14062
|
+
"DE_extracom_BU0191",
|
|
14063
|
+
"DE_extracom_190_BU0511",
|
|
14064
|
+
"FR_85_construction",
|
|
14065
|
+
"FR_100_construction",
|
|
14066
|
+
"FR_200_construction",
|
|
14067
|
+
"DE_exempt_construction_BU0046",
|
|
14068
|
+
"DE_70_construction_BU0091",
|
|
14069
|
+
"DE_190_construction_BU0094",
|
|
14070
|
+
"DE_190_construction_BU0526",
|
|
14071
|
+
"DE_190_construction_BU0546",
|
|
14072
|
+
"mixed"
|
|
14073
|
+
]
|
|
14074
|
+
},
|
|
14075
|
+
description: {
|
|
14076
|
+
description: "The description of the invoice line",
|
|
14077
|
+
type: "string",
|
|
14078
|
+
nullable: true,
|
|
14079
|
+
example: "Consulting services for August"
|
|
14080
|
+
},
|
|
14081
|
+
section_rank: {
|
|
14082
|
+
type: "integer",
|
|
14083
|
+
example: 1,
|
|
14084
|
+
description: "Has to correspond to the rank number of a line items section in which the line item should be"
|
|
14085
|
+
},
|
|
14086
|
+
discount: {
|
|
14087
|
+
type: "object",
|
|
14088
|
+
additionalProperties: false,
|
|
14089
|
+
properties: {
|
|
14090
|
+
type: {
|
|
14091
|
+
description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n",
|
|
14092
|
+
type: "string",
|
|
14093
|
+
enum: ["absolute", "relative"]
|
|
14094
|
+
},
|
|
14095
|
+
value: {
|
|
14096
|
+
description: "Discount value on the total amount before tax of the line",
|
|
14097
|
+
type: "string",
|
|
14098
|
+
example: "10"
|
|
14099
|
+
}
|
|
14100
|
+
},
|
|
14101
|
+
required: ["type", "value"]
|
|
14102
|
+
}
|
|
14103
|
+
},
|
|
14104
|
+
required: ["product_id", "quantity"]
|
|
14105
|
+
};
|
|
14106
|
+
const Quotes__InvoiceLineWithoutProduct_RequestSchema = {
|
|
14107
|
+
title: "Standard Invoice Line",
|
|
14108
|
+
description: "Create an invoice line by providing all required fields explicitly\nwithout referencing a product.\n",
|
|
14109
|
+
type: "object",
|
|
14110
|
+
additionalProperties: false,
|
|
14111
|
+
properties: {
|
|
14112
|
+
label: {
|
|
14113
|
+
description: "Line item label",
|
|
14114
|
+
type: "string",
|
|
14115
|
+
example: "Consulting fees"
|
|
14116
|
+
},
|
|
14117
|
+
quantity: {
|
|
14118
|
+
description: "Line item quantity (number of items)",
|
|
14119
|
+
type: "number",
|
|
14120
|
+
example: 2
|
|
14121
|
+
},
|
|
14122
|
+
ledger_account_id: {
|
|
14123
|
+
description: "The ledger account ID",
|
|
14124
|
+
type: "integer",
|
|
14125
|
+
format: "int64",
|
|
14126
|
+
example: 1255
|
|
14127
|
+
},
|
|
14128
|
+
raw_currency_unit_price: {
|
|
14129
|
+
description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.",
|
|
14130
|
+
type: "string",
|
|
14131
|
+
example: "33.333334"
|
|
14132
|
+
},
|
|
14133
|
+
unit: {
|
|
14134
|
+
description: "Line item unit (type of unit)",
|
|
14135
|
+
type: "string",
|
|
14136
|
+
example: "piece"
|
|
14137
|
+
},
|
|
14138
|
+
vat_rate: {
|
|
14139
|
+
description: "Product VAT rate. A 20% VAT in France is FR_200.",
|
|
14140
|
+
type: "string",
|
|
14141
|
+
example: "FR_200",
|
|
14142
|
+
enum: [
|
|
14143
|
+
"FR_1_05",
|
|
14144
|
+
"FR_1_75",
|
|
14145
|
+
"FR_09",
|
|
14146
|
+
"FR_21",
|
|
14147
|
+
"FR_40",
|
|
14148
|
+
"FR_50",
|
|
14149
|
+
"FR_55",
|
|
14150
|
+
"FR_60",
|
|
14151
|
+
"FR_65",
|
|
14152
|
+
"FR_85",
|
|
14153
|
+
"FR_92",
|
|
14154
|
+
"FR_100",
|
|
14155
|
+
"FR_130",
|
|
14156
|
+
"FR_15_385",
|
|
14157
|
+
"FR_160",
|
|
14158
|
+
"FR_196",
|
|
14159
|
+
"FR_200",
|
|
14160
|
+
"AD_10",
|
|
14161
|
+
"AD_45",
|
|
14162
|
+
"AD_95",
|
|
14163
|
+
"AT_100",
|
|
14164
|
+
"AT_130",
|
|
14165
|
+
"AT_190",
|
|
14166
|
+
"AT_200",
|
|
14167
|
+
"BE_60",
|
|
14168
|
+
"BE_120",
|
|
14169
|
+
"BE_210",
|
|
14170
|
+
"BG_90",
|
|
14171
|
+
"BG_200",
|
|
14172
|
+
"CH_25",
|
|
14173
|
+
"CH_37",
|
|
14174
|
+
"CH_77",
|
|
14175
|
+
"CH_26",
|
|
14176
|
+
"CH_38",
|
|
14177
|
+
"CH_81",
|
|
14178
|
+
"CY_30",
|
|
14179
|
+
"CY_50",
|
|
14180
|
+
"CY_80",
|
|
14181
|
+
"CY_90",
|
|
14182
|
+
"CY_190",
|
|
14183
|
+
"CZ_100",
|
|
14184
|
+
"CZ_120",
|
|
14185
|
+
"CZ_150",
|
|
14186
|
+
"CZ_210",
|
|
14187
|
+
"DE_70",
|
|
14188
|
+
"DE_190",
|
|
14189
|
+
"DK_250",
|
|
14190
|
+
"EE_90",
|
|
14191
|
+
"EE_200",
|
|
14192
|
+
"EE_220",
|
|
14193
|
+
"EE_240",
|
|
14194
|
+
"ES_40",
|
|
14195
|
+
"ES_70",
|
|
14196
|
+
"ES_100",
|
|
14197
|
+
"ES_210",
|
|
14198
|
+
"FI_100",
|
|
14199
|
+
"FI_135",
|
|
14200
|
+
"FI_140",
|
|
14201
|
+
"FI_240",
|
|
14202
|
+
"FI_255",
|
|
14203
|
+
"GB_50",
|
|
14204
|
+
"GB_200",
|
|
14205
|
+
"GR_60",
|
|
14206
|
+
"GR_130",
|
|
14207
|
+
"GR_170",
|
|
14208
|
+
"GR_240",
|
|
14209
|
+
"GR_40",
|
|
14210
|
+
"HR_50",
|
|
14211
|
+
"HR_130",
|
|
14212
|
+
"HR_250",
|
|
14213
|
+
"HU_50",
|
|
14214
|
+
"HU_180",
|
|
14215
|
+
"HU_270",
|
|
14216
|
+
"IE_48",
|
|
14217
|
+
"IE_90",
|
|
14218
|
+
"IE_135",
|
|
14219
|
+
"IE_210",
|
|
14220
|
+
"IE_230",
|
|
14221
|
+
"IT_40",
|
|
14222
|
+
"IT_50",
|
|
14223
|
+
"IT_100",
|
|
14224
|
+
"IT_220",
|
|
14225
|
+
"LT_50",
|
|
14226
|
+
"LT_90",
|
|
14227
|
+
"LT_120",
|
|
14228
|
+
"LT_210",
|
|
14229
|
+
"LU_30",
|
|
14230
|
+
"LU_70",
|
|
14231
|
+
"LU_80",
|
|
14232
|
+
"LU_120",
|
|
14233
|
+
"LU_130",
|
|
14234
|
+
"LU_140",
|
|
14235
|
+
"LU_160",
|
|
14236
|
+
"LU_170",
|
|
14237
|
+
"LV_50",
|
|
14238
|
+
"LV_120",
|
|
14239
|
+
"LV_210",
|
|
14240
|
+
"MC_09",
|
|
14241
|
+
"MC_21",
|
|
14242
|
+
"MC_55",
|
|
14243
|
+
"MC_85",
|
|
14244
|
+
"MC_100",
|
|
14245
|
+
"MC_200",
|
|
14246
|
+
"MT_50",
|
|
14247
|
+
"MT_70",
|
|
14248
|
+
"MT_120",
|
|
14249
|
+
"MT_180",
|
|
14250
|
+
"MU_150",
|
|
14251
|
+
"NL_90",
|
|
14252
|
+
"NL_210",
|
|
14253
|
+
"PL_50",
|
|
14254
|
+
"PL_80",
|
|
14255
|
+
"PL_230",
|
|
14256
|
+
"PT_60",
|
|
14257
|
+
"PT_130",
|
|
14258
|
+
"PT_160",
|
|
14259
|
+
"PT_180",
|
|
14260
|
+
"PT_220",
|
|
14261
|
+
"PT_230",
|
|
14262
|
+
"RO_50",
|
|
14263
|
+
"RO_90",
|
|
14264
|
+
"RO_110",
|
|
14265
|
+
"RO_190",
|
|
14266
|
+
"RO_210",
|
|
14267
|
+
"SE_60",
|
|
14268
|
+
"SE_120",
|
|
14269
|
+
"SE_250",
|
|
14270
|
+
"SI_50",
|
|
14271
|
+
"SI_95",
|
|
14272
|
+
"SI_220",
|
|
14273
|
+
"SK_50",
|
|
14274
|
+
"SK_100",
|
|
14275
|
+
"SK_190",
|
|
14276
|
+
"SK_200",
|
|
14277
|
+
"SK_230",
|
|
14278
|
+
"NO_120",
|
|
14279
|
+
"NO_150",
|
|
14280
|
+
"NO_250",
|
|
14281
|
+
"DE_70_BU0002",
|
|
14282
|
+
"DE_190_BU0003",
|
|
14283
|
+
"DE_70_BU0008",
|
|
14284
|
+
"DE_190_BU0009",
|
|
14285
|
+
"DE_intracom_70_BU0012",
|
|
14286
|
+
"DE_intracom_190_BU0013",
|
|
14287
|
+
"DE_190_electronic_BU0226",
|
|
14288
|
+
"exempt",
|
|
14289
|
+
"DE_intracom_exempt_BU0011",
|
|
14290
|
+
"DE_intracom_exempt_BU0047",
|
|
14291
|
+
"DE_exempt_BU0001",
|
|
14292
|
+
"DE_exempt_BU0181",
|
|
14293
|
+
"DE_exempt_BU0490",
|
|
14294
|
+
"intracom_21",
|
|
14295
|
+
"intracom_55",
|
|
14296
|
+
"intracom_85",
|
|
14297
|
+
"intracom_100",
|
|
14298
|
+
"crossborder",
|
|
14299
|
+
"DE_intracom_70_BU0018",
|
|
14300
|
+
"DE_intracom_190_BU0019",
|
|
14301
|
+
"DE_intracom_190_BU0506",
|
|
14302
|
+
"extracom",
|
|
14303
|
+
"DE_extracom_BU0173",
|
|
14304
|
+
"DE_extracom_BU0191",
|
|
14305
|
+
"DE_extracom_190_BU0511",
|
|
14306
|
+
"FR_85_construction",
|
|
14307
|
+
"FR_100_construction",
|
|
14308
|
+
"FR_200_construction",
|
|
14309
|
+
"DE_exempt_construction_BU0046",
|
|
14310
|
+
"DE_70_construction_BU0091",
|
|
14311
|
+
"DE_190_construction_BU0094",
|
|
14312
|
+
"DE_190_construction_BU0526",
|
|
14313
|
+
"DE_190_construction_BU0546",
|
|
14314
|
+
"mixed"
|
|
14315
|
+
]
|
|
14316
|
+
},
|
|
14317
|
+
description: {
|
|
14318
|
+
description: "The description of the invoice line",
|
|
14319
|
+
type: "string",
|
|
14320
|
+
nullable: true,
|
|
14321
|
+
example: "Consulting services for August"
|
|
14322
|
+
},
|
|
14323
|
+
section_rank: {
|
|
14324
|
+
type: "integer",
|
|
14325
|
+
example: 1,
|
|
14326
|
+
description: "Has to correspond to the rank number of a line items section in which the line item should be"
|
|
14327
|
+
},
|
|
14328
|
+
discount: {
|
|
14329
|
+
type: "object",
|
|
14330
|
+
additionalProperties: false,
|
|
14331
|
+
properties: {
|
|
14332
|
+
type: {
|
|
14333
|
+
description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n",
|
|
14334
|
+
type: "string",
|
|
14335
|
+
enum: ["absolute", "relative"]
|
|
14336
|
+
},
|
|
14337
|
+
value: {
|
|
14338
|
+
description: "Discount value on the total amount before tax of the line",
|
|
14339
|
+
type: "string",
|
|
14340
|
+
example: "10"
|
|
14341
|
+
}
|
|
14342
|
+
},
|
|
14343
|
+
required: ["type", "value"]
|
|
14344
|
+
}
|
|
14345
|
+
},
|
|
14346
|
+
required: [
|
|
14347
|
+
"label",
|
|
14348
|
+
"quantity",
|
|
14349
|
+
"raw_currency_unit_price",
|
|
14350
|
+
"unit",
|
|
14351
|
+
"vat_rate"
|
|
14352
|
+
]
|
|
14353
|
+
};
|
|
14354
|
+
const Quotes__Post_RequestSchema = {
|
|
14355
|
+
title: "Quote Request",
|
|
14356
|
+
type: "object",
|
|
14357
|
+
additionalProperties: false,
|
|
14358
|
+
properties: {
|
|
14359
|
+
date: {
|
|
14360
|
+
description: "Quote date (ISO 8601)",
|
|
14361
|
+
type: "string",
|
|
14362
|
+
format: "date",
|
|
14363
|
+
example: "2023-08-30"
|
|
14364
|
+
},
|
|
14365
|
+
deadline: {
|
|
14366
|
+
description: "Quote validity deadline (ISO 8601)",
|
|
14367
|
+
type: "string",
|
|
14368
|
+
format: "date",
|
|
14369
|
+
example: "2023-09-02"
|
|
14370
|
+
},
|
|
14371
|
+
customer_id: {
|
|
14372
|
+
description: "Customer identifier",
|
|
14373
|
+
type: "integer",
|
|
14374
|
+
format: "int64",
|
|
14375
|
+
example: 42
|
|
14376
|
+
},
|
|
14377
|
+
quote_template_id: {
|
|
14378
|
+
description: "The quote template ID",
|
|
14379
|
+
type: "integer",
|
|
14380
|
+
format: "int64",
|
|
14381
|
+
example: 42
|
|
14382
|
+
},
|
|
14383
|
+
pdf_invoice_free_text: {
|
|
14384
|
+
description: "For example, the contact details of the person to contact",
|
|
14385
|
+
type: "string",
|
|
14386
|
+
nullable: true,
|
|
14387
|
+
example: "Additional free field"
|
|
14388
|
+
},
|
|
14389
|
+
pdf_invoice_subject: {
|
|
14390
|
+
description: "Quote title",
|
|
14391
|
+
type: "string",
|
|
14392
|
+
nullable: true,
|
|
14393
|
+
example: "Invoice title"
|
|
14394
|
+
},
|
|
14395
|
+
pdf_description: {
|
|
14396
|
+
description: "Quote description",
|
|
14397
|
+
type: "string",
|
|
14398
|
+
nullable: true,
|
|
14399
|
+
example: "Invoice description"
|
|
14400
|
+
},
|
|
14401
|
+
currency: {
|
|
14402
|
+
type: "string",
|
|
14403
|
+
default: "EUR",
|
|
14404
|
+
enum: [
|
|
14405
|
+
"EUR",
|
|
14406
|
+
"USD",
|
|
14407
|
+
"GBP",
|
|
14408
|
+
"AED",
|
|
14409
|
+
"AFN",
|
|
14410
|
+
"ALL",
|
|
14411
|
+
"AMD",
|
|
14412
|
+
"ANG",
|
|
14413
|
+
"AOA",
|
|
14414
|
+
"ARS",
|
|
14415
|
+
"AUD",
|
|
14416
|
+
"AWG",
|
|
14417
|
+
"AZN",
|
|
14418
|
+
"BAM",
|
|
14419
|
+
"BBD",
|
|
14420
|
+
"BDT",
|
|
14421
|
+
"BGN",
|
|
14422
|
+
"BHD",
|
|
14423
|
+
"BIF",
|
|
14424
|
+
"BMD",
|
|
14425
|
+
"BND",
|
|
14426
|
+
"BOB",
|
|
14427
|
+
"BRL",
|
|
14428
|
+
"BSD",
|
|
14429
|
+
"BTN",
|
|
14430
|
+
"BWP",
|
|
14431
|
+
"BYN",
|
|
14432
|
+
"BYR",
|
|
14433
|
+
"BZD",
|
|
14434
|
+
"CAD",
|
|
14435
|
+
"CDF",
|
|
14436
|
+
"CHE",
|
|
14437
|
+
"CHF",
|
|
14438
|
+
"CLF",
|
|
14439
|
+
"CLP",
|
|
14440
|
+
"CNY",
|
|
14441
|
+
"COP",
|
|
14442
|
+
"CRC",
|
|
14443
|
+
"CUC",
|
|
14444
|
+
"CUP",
|
|
14445
|
+
"CVE",
|
|
14446
|
+
"CZK",
|
|
14447
|
+
"DJF",
|
|
14448
|
+
"DKK",
|
|
14449
|
+
"DOP",
|
|
14450
|
+
"DZD",
|
|
14451
|
+
"EGP",
|
|
14452
|
+
"ERN",
|
|
14453
|
+
"ETB",
|
|
14454
|
+
"FJD",
|
|
14455
|
+
"FKP",
|
|
14456
|
+
"GEL",
|
|
14457
|
+
"GGP",
|
|
14458
|
+
"GHS",
|
|
14459
|
+
"GIP",
|
|
14460
|
+
"GMD",
|
|
14461
|
+
"GNF",
|
|
14462
|
+
"GTQ",
|
|
14463
|
+
"GYD",
|
|
14464
|
+
"HKD",
|
|
14465
|
+
"HNL",
|
|
14466
|
+
"HRK",
|
|
14467
|
+
"HTG",
|
|
14468
|
+
"HUF",
|
|
14469
|
+
"IDR",
|
|
14470
|
+
"ILS",
|
|
14471
|
+
"IMP",
|
|
14472
|
+
"INR",
|
|
14473
|
+
"IQD",
|
|
14474
|
+
"IRR",
|
|
14475
|
+
"ISK",
|
|
14476
|
+
"JEP",
|
|
14477
|
+
"JMD",
|
|
14478
|
+
"JOD",
|
|
14479
|
+
"JPY",
|
|
14480
|
+
"KES",
|
|
14481
|
+
"KGS",
|
|
14482
|
+
"KHR",
|
|
14483
|
+
"KMF",
|
|
14484
|
+
"KPW",
|
|
14485
|
+
"KRW",
|
|
14486
|
+
"KWD",
|
|
14487
|
+
"KYD",
|
|
14488
|
+
"KZT",
|
|
14489
|
+
"LAK",
|
|
14490
|
+
"LBP",
|
|
14491
|
+
"LKR",
|
|
14492
|
+
"LRD",
|
|
14493
|
+
"LSL",
|
|
14494
|
+
"LTL",
|
|
14495
|
+
"LVL",
|
|
14496
|
+
"LYD",
|
|
14497
|
+
"MAD",
|
|
14498
|
+
"MDL",
|
|
14499
|
+
"MGA",
|
|
14500
|
+
"MKD",
|
|
14501
|
+
"MMK",
|
|
14502
|
+
"MNT",
|
|
14503
|
+
"MOP",
|
|
14504
|
+
"MRO",
|
|
14505
|
+
"MRU",
|
|
14506
|
+
"MUR",
|
|
14507
|
+
"MVR",
|
|
14508
|
+
"MWK",
|
|
14509
|
+
"MXN",
|
|
14510
|
+
"MYR",
|
|
14511
|
+
"MZN",
|
|
14512
|
+
"NAD",
|
|
14513
|
+
"NGN",
|
|
14514
|
+
"NIO",
|
|
14515
|
+
"NOK",
|
|
14516
|
+
"NPR",
|
|
14517
|
+
"NZD",
|
|
14518
|
+
"OMR",
|
|
14519
|
+
"PAB",
|
|
14520
|
+
"PEN",
|
|
14521
|
+
"PGK",
|
|
14522
|
+
"PHP",
|
|
14523
|
+
"PKR",
|
|
14524
|
+
"PLN",
|
|
14525
|
+
"PYG",
|
|
14526
|
+
"QAR",
|
|
14527
|
+
"RON",
|
|
14528
|
+
"RSD",
|
|
14529
|
+
"RUB",
|
|
14530
|
+
"RWF",
|
|
14531
|
+
"SAR",
|
|
14532
|
+
"SBD",
|
|
14533
|
+
"SCR",
|
|
14534
|
+
"SDG",
|
|
14535
|
+
"SEK",
|
|
14536
|
+
"SGD",
|
|
14537
|
+
"SHP",
|
|
14538
|
+
"SLL",
|
|
14539
|
+
"SLE",
|
|
14540
|
+
"SOS",
|
|
14541
|
+
"SRD",
|
|
14542
|
+
"STD",
|
|
14543
|
+
"SVC",
|
|
14544
|
+
"SYP",
|
|
14545
|
+
"SZL",
|
|
14546
|
+
"THB",
|
|
14547
|
+
"TJS",
|
|
14548
|
+
"TMT",
|
|
14549
|
+
"TND",
|
|
14550
|
+
"TOP",
|
|
14551
|
+
"TRY",
|
|
14552
|
+
"TTD",
|
|
14553
|
+
"TWD",
|
|
14554
|
+
"TZS",
|
|
14555
|
+
"UAH",
|
|
14556
|
+
"UGX",
|
|
14557
|
+
"UYU",
|
|
14558
|
+
"UZS",
|
|
14559
|
+
"VEF",
|
|
14560
|
+
"VND",
|
|
14561
|
+
"VUV",
|
|
14562
|
+
"WST",
|
|
14563
|
+
"XAF",
|
|
14564
|
+
"XCD",
|
|
14565
|
+
"XDR",
|
|
14566
|
+
"XOF",
|
|
14567
|
+
"XPF",
|
|
14568
|
+
"YER",
|
|
14569
|
+
"ZAR",
|
|
14570
|
+
"ZMK",
|
|
14571
|
+
"ZMW",
|
|
14572
|
+
"ZWL"
|
|
14573
|
+
]
|
|
14574
|
+
},
|
|
14575
|
+
special_mention: {
|
|
14576
|
+
description: "Additional details",
|
|
14577
|
+
type: "string",
|
|
14578
|
+
nullable: true,
|
|
14579
|
+
example: "Additional details"
|
|
14580
|
+
},
|
|
14581
|
+
language: {
|
|
14582
|
+
type: "string",
|
|
14583
|
+
description: "The local default is based on the thirdparty (customer / supplier ) billing_language . In case the customer is not present, we will default to the company locale.",
|
|
14584
|
+
enum: [
|
|
14585
|
+
"fr_FR",
|
|
14586
|
+
"en_GB",
|
|
14587
|
+
"de_DE"
|
|
14588
|
+
]
|
|
14589
|
+
},
|
|
14590
|
+
discount: {
|
|
14591
|
+
type: "object",
|
|
14592
|
+
additionalProperties: false,
|
|
14593
|
+
properties: {
|
|
14594
|
+
type: {
|
|
14595
|
+
description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n",
|
|
14596
|
+
type: "string",
|
|
14597
|
+
enum: ["absolute", "relative"]
|
|
14598
|
+
},
|
|
14599
|
+
value: {
|
|
14104
14600
|
description: "Discount value on the total amount before tax of the quote",
|
|
14105
14601
|
type: "string",
|
|
14106
14602
|
example: "25"
|
|
@@ -14120,40 +14616,249 @@ const Quotes__Post_RequestSchema = {
|
|
|
14120
14616
|
example: "Consulting Services"
|
|
14121
14617
|
},
|
|
14122
14618
|
description: {
|
|
14123
|
-
description: "Description of the invoice line section",
|
|
14124
|
-
type: "string",
|
|
14125
|
-
example: "Consulting for August"
|
|
14126
|
-
},
|
|
14127
|
-
rank: {
|
|
14128
|
-
type: "integer",
|
|
14129
|
-
minimum: 1,
|
|
14130
|
-
example: 1,
|
|
14131
|
-
description: "Defines the order in which sections will be displayed on the quote. Each section has to have a different rank, starting from 1 and incrementing next values by 1"
|
|
14132
|
-
}
|
|
14133
|
-
},
|
|
14134
|
-
required: ["rank"]
|
|
14135
|
-
}
|
|
14136
|
-
},
|
|
14137
|
-
external_reference: {
|
|
14138
|
-
description: "A unique external reference you can provide to track this quote. If not provided, Pennylane will generate an identifier for you.",
|
|
14139
|
-
type: "string",
|
|
14140
|
-
example: "FR123"
|
|
14141
|
-
},
|
|
14142
|
-
invoice_lines: {
|
|
14143
|
-
type: "array",
|
|
14144
|
-
items: {
|
|
14145
|
-
|
|
14146
|
-
|
|
14147
|
-
|
|
14148
|
-
|
|
14149
|
-
|
|
14619
|
+
description: "Description of the invoice line section",
|
|
14620
|
+
type: "string",
|
|
14621
|
+
example: "Consulting for August"
|
|
14622
|
+
},
|
|
14623
|
+
rank: {
|
|
14624
|
+
type: "integer",
|
|
14625
|
+
minimum: 1,
|
|
14626
|
+
example: 1,
|
|
14627
|
+
description: "Defines the order in which sections will be displayed on the quote. Each section has to have a different rank, starting from 1 and incrementing next values by 1"
|
|
14628
|
+
}
|
|
14629
|
+
},
|
|
14630
|
+
required: ["rank"]
|
|
14631
|
+
}
|
|
14632
|
+
},
|
|
14633
|
+
external_reference: {
|
|
14634
|
+
description: "A unique external reference you can provide to track this quote. If not provided, Pennylane will generate an identifier for you.",
|
|
14635
|
+
type: "string",
|
|
14636
|
+
example: "FR123"
|
|
14637
|
+
},
|
|
14638
|
+
invoice_lines: {
|
|
14639
|
+
type: "array",
|
|
14640
|
+
items: { oneOf: [{
|
|
14641
|
+
title: "Product-based Invoice Line",
|
|
14642
|
+
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",
|
|
14643
|
+
type: "object",
|
|
14644
|
+
additionalProperties: false,
|
|
14645
|
+
properties: {
|
|
14646
|
+
product_id: {
|
|
14647
|
+
description: "The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.",
|
|
14648
|
+
type: "integer",
|
|
14649
|
+
format: "int64",
|
|
14650
|
+
example: 42
|
|
14651
|
+
},
|
|
14652
|
+
quantity: {
|
|
14653
|
+
description: "Line item quantity (number of items)",
|
|
14654
|
+
type: "number",
|
|
14655
|
+
example: 2
|
|
14656
|
+
},
|
|
14657
|
+
label: {
|
|
14658
|
+
description: "Line item label",
|
|
14659
|
+
type: "string",
|
|
14660
|
+
example: "Consulting fees"
|
|
14661
|
+
},
|
|
14662
|
+
ledger_account_id: {
|
|
14663
|
+
description: "The ledger account ID",
|
|
14664
|
+
type: "integer",
|
|
14665
|
+
format: "int64",
|
|
14666
|
+
example: 1255
|
|
14667
|
+
},
|
|
14668
|
+
raw_currency_unit_price: {
|
|
14669
|
+
description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.",
|
|
14670
|
+
type: "string",
|
|
14671
|
+
example: "33.333334"
|
|
14672
|
+
},
|
|
14673
|
+
unit: {
|
|
14674
|
+
description: "Line item unit (type of unit)",
|
|
14675
|
+
type: "string",
|
|
14676
|
+
example: "piece"
|
|
14677
|
+
},
|
|
14678
|
+
vat_rate: {
|
|
14679
|
+
description: "Product VAT rate. A 20% VAT in France is FR_200.",
|
|
14680
|
+
type: "string",
|
|
14681
|
+
example: "FR_200",
|
|
14682
|
+
enum: [
|
|
14683
|
+
"FR_1_05",
|
|
14684
|
+
"FR_1_75",
|
|
14685
|
+
"FR_09",
|
|
14686
|
+
"FR_21",
|
|
14687
|
+
"FR_40",
|
|
14688
|
+
"FR_50",
|
|
14689
|
+
"FR_55",
|
|
14690
|
+
"FR_60",
|
|
14691
|
+
"FR_65",
|
|
14692
|
+
"FR_85",
|
|
14693
|
+
"FR_92",
|
|
14694
|
+
"FR_100",
|
|
14695
|
+
"FR_130",
|
|
14696
|
+
"FR_15_385",
|
|
14697
|
+
"FR_160",
|
|
14698
|
+
"FR_196",
|
|
14699
|
+
"FR_200",
|
|
14700
|
+
"AD_10",
|
|
14701
|
+
"AD_45",
|
|
14702
|
+
"AD_95",
|
|
14703
|
+
"AT_100",
|
|
14704
|
+
"AT_130",
|
|
14705
|
+
"AT_190",
|
|
14706
|
+
"AT_200",
|
|
14707
|
+
"BE_60",
|
|
14708
|
+
"BE_120",
|
|
14709
|
+
"BE_210",
|
|
14710
|
+
"BG_90",
|
|
14711
|
+
"BG_200",
|
|
14712
|
+
"CH_25",
|
|
14713
|
+
"CH_37",
|
|
14714
|
+
"CH_77",
|
|
14715
|
+
"CH_26",
|
|
14716
|
+
"CH_38",
|
|
14717
|
+
"CH_81",
|
|
14718
|
+
"CY_30",
|
|
14719
|
+
"CY_50",
|
|
14720
|
+
"CY_80",
|
|
14721
|
+
"CY_90",
|
|
14722
|
+
"CY_190",
|
|
14723
|
+
"CZ_100",
|
|
14724
|
+
"CZ_120",
|
|
14725
|
+
"CZ_150",
|
|
14726
|
+
"CZ_210",
|
|
14727
|
+
"DE_70",
|
|
14728
|
+
"DE_190",
|
|
14729
|
+
"DK_250",
|
|
14730
|
+
"EE_90",
|
|
14731
|
+
"EE_200",
|
|
14732
|
+
"EE_220",
|
|
14733
|
+
"EE_240",
|
|
14734
|
+
"ES_40",
|
|
14735
|
+
"ES_70",
|
|
14736
|
+
"ES_100",
|
|
14737
|
+
"ES_210",
|
|
14738
|
+
"FI_100",
|
|
14739
|
+
"FI_135",
|
|
14740
|
+
"FI_140",
|
|
14741
|
+
"FI_240",
|
|
14742
|
+
"FI_255",
|
|
14743
|
+
"GB_50",
|
|
14744
|
+
"GB_200",
|
|
14745
|
+
"GR_60",
|
|
14746
|
+
"GR_130",
|
|
14747
|
+
"GR_170",
|
|
14748
|
+
"GR_240",
|
|
14749
|
+
"GR_40",
|
|
14750
|
+
"HR_50",
|
|
14751
|
+
"HR_130",
|
|
14752
|
+
"HR_250",
|
|
14753
|
+
"HU_50",
|
|
14754
|
+
"HU_180",
|
|
14755
|
+
"HU_270",
|
|
14756
|
+
"IE_48",
|
|
14757
|
+
"IE_90",
|
|
14758
|
+
"IE_135",
|
|
14759
|
+
"IE_210",
|
|
14760
|
+
"IE_230",
|
|
14761
|
+
"IT_40",
|
|
14762
|
+
"IT_50",
|
|
14763
|
+
"IT_100",
|
|
14764
|
+
"IT_220",
|
|
14765
|
+
"LT_50",
|
|
14766
|
+
"LT_90",
|
|
14767
|
+
"LT_120",
|
|
14768
|
+
"LT_210",
|
|
14769
|
+
"LU_30",
|
|
14770
|
+
"LU_70",
|
|
14771
|
+
"LU_80",
|
|
14772
|
+
"LU_120",
|
|
14773
|
+
"LU_130",
|
|
14774
|
+
"LU_140",
|
|
14775
|
+
"LU_160",
|
|
14776
|
+
"LU_170",
|
|
14777
|
+
"LV_50",
|
|
14778
|
+
"LV_120",
|
|
14779
|
+
"LV_210",
|
|
14780
|
+
"MC_09",
|
|
14781
|
+
"MC_21",
|
|
14782
|
+
"MC_55",
|
|
14783
|
+
"MC_85",
|
|
14784
|
+
"MC_100",
|
|
14785
|
+
"MC_200",
|
|
14786
|
+
"MT_50",
|
|
14787
|
+
"MT_70",
|
|
14788
|
+
"MT_120",
|
|
14789
|
+
"MT_180",
|
|
14790
|
+
"MU_150",
|
|
14791
|
+
"NL_90",
|
|
14792
|
+
"NL_210",
|
|
14793
|
+
"PL_50",
|
|
14794
|
+
"PL_80",
|
|
14795
|
+
"PL_230",
|
|
14796
|
+
"PT_60",
|
|
14797
|
+
"PT_130",
|
|
14798
|
+
"PT_160",
|
|
14799
|
+
"PT_180",
|
|
14800
|
+
"PT_220",
|
|
14801
|
+
"PT_230",
|
|
14802
|
+
"RO_50",
|
|
14803
|
+
"RO_90",
|
|
14804
|
+
"RO_110",
|
|
14805
|
+
"RO_190",
|
|
14806
|
+
"RO_210",
|
|
14807
|
+
"SE_60",
|
|
14808
|
+
"SE_120",
|
|
14809
|
+
"SE_250",
|
|
14810
|
+
"SI_50",
|
|
14811
|
+
"SI_95",
|
|
14812
|
+
"SI_220",
|
|
14813
|
+
"SK_50",
|
|
14814
|
+
"SK_100",
|
|
14815
|
+
"SK_190",
|
|
14816
|
+
"SK_200",
|
|
14817
|
+
"SK_230",
|
|
14818
|
+
"NO_120",
|
|
14819
|
+
"NO_150",
|
|
14820
|
+
"NO_250",
|
|
14821
|
+
"DE_70_BU0002",
|
|
14822
|
+
"DE_190_BU0003",
|
|
14823
|
+
"DE_70_BU0008",
|
|
14824
|
+
"DE_190_BU0009",
|
|
14825
|
+
"DE_intracom_70_BU0012",
|
|
14826
|
+
"DE_intracom_190_BU0013",
|
|
14827
|
+
"DE_190_electronic_BU0226",
|
|
14828
|
+
"exempt",
|
|
14829
|
+
"DE_intracom_exempt_BU0011",
|
|
14830
|
+
"DE_intracom_exempt_BU0047",
|
|
14831
|
+
"DE_exempt_BU0001",
|
|
14832
|
+
"DE_exempt_BU0181",
|
|
14833
|
+
"DE_exempt_BU0490",
|
|
14834
|
+
"intracom_21",
|
|
14835
|
+
"intracom_55",
|
|
14836
|
+
"intracom_85",
|
|
14837
|
+
"intracom_100",
|
|
14838
|
+
"crossborder",
|
|
14839
|
+
"DE_intracom_70_BU0018",
|
|
14840
|
+
"DE_intracom_190_BU0019",
|
|
14841
|
+
"DE_intracom_190_BU0506",
|
|
14842
|
+
"extracom",
|
|
14843
|
+
"DE_extracom_BU0173",
|
|
14844
|
+
"DE_extracom_BU0191",
|
|
14845
|
+
"DE_extracom_190_BU0511",
|
|
14846
|
+
"FR_85_construction",
|
|
14847
|
+
"FR_100_construction",
|
|
14848
|
+
"FR_200_construction",
|
|
14849
|
+
"DE_exempt_construction_BU0046",
|
|
14850
|
+
"DE_70_construction_BU0091",
|
|
14851
|
+
"DE_190_construction_BU0094",
|
|
14852
|
+
"DE_190_construction_BU0526",
|
|
14853
|
+
"DE_190_construction_BU0546",
|
|
14854
|
+
"mixed"
|
|
14855
|
+
]
|
|
14856
|
+
},
|
|
14857
|
+
description: {
|
|
14858
|
+
description: "The description of the invoice line",
|
|
14150
14859
|
type: "string",
|
|
14151
|
-
|
|
14152
|
-
|
|
14153
|
-
quantity: {
|
|
14154
|
-
description: "Line item quantity (number of items)",
|
|
14155
|
-
type: "number",
|
|
14156
|
-
example: 2
|
|
14860
|
+
nullable: true,
|
|
14861
|
+
example: "Consulting services for August"
|
|
14157
14862
|
},
|
|
14158
14863
|
section_rank: {
|
|
14159
14864
|
type: "integer",
|
|
@@ -14176,6 +14881,24 @@ const Quotes__Post_RequestSchema = {
|
|
|
14176
14881
|
}
|
|
14177
14882
|
},
|
|
14178
14883
|
required: ["type", "value"]
|
|
14884
|
+
}
|
|
14885
|
+
},
|
|
14886
|
+
required: ["product_id", "quantity"]
|
|
14887
|
+
}, {
|
|
14888
|
+
title: "Standard Invoice Line",
|
|
14889
|
+
description: "Create an invoice line by providing all required fields explicitly\nwithout referencing a product.\n",
|
|
14890
|
+
type: "object",
|
|
14891
|
+
additionalProperties: false,
|
|
14892
|
+
properties: {
|
|
14893
|
+
label: {
|
|
14894
|
+
description: "Line item label",
|
|
14895
|
+
type: "string",
|
|
14896
|
+
example: "Consulting fees"
|
|
14897
|
+
},
|
|
14898
|
+
quantity: {
|
|
14899
|
+
description: "Line item quantity (number of items)",
|
|
14900
|
+
type: "number",
|
|
14901
|
+
example: 2
|
|
14179
14902
|
},
|
|
14180
14903
|
ledger_account_id: {
|
|
14181
14904
|
description: "The ledger account ID",
|
|
@@ -14378,11 +15101,27 @@ const Quotes__Post_RequestSchema = {
|
|
|
14378
15101
|
nullable: true,
|
|
14379
15102
|
example: "Consulting services for August"
|
|
14380
15103
|
},
|
|
14381
|
-
|
|
14382
|
-
description: "The product ID",
|
|
15104
|
+
section_rank: {
|
|
14383
15105
|
type: "integer",
|
|
14384
|
-
|
|
14385
|
-
|
|
15106
|
+
example: 1,
|
|
15107
|
+
description: "Has to correspond to the rank number of a line items section in which the line item should be"
|
|
15108
|
+
},
|
|
15109
|
+
discount: {
|
|
15110
|
+
type: "object",
|
|
15111
|
+
additionalProperties: false,
|
|
15112
|
+
properties: {
|
|
15113
|
+
type: {
|
|
15114
|
+
description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n",
|
|
15115
|
+
type: "string",
|
|
15116
|
+
enum: ["absolute", "relative"]
|
|
15117
|
+
},
|
|
15118
|
+
value: {
|
|
15119
|
+
description: "Discount value on the total amount before tax of the line",
|
|
15120
|
+
type: "string",
|
|
15121
|
+
example: "10"
|
|
15122
|
+
}
|
|
15123
|
+
},
|
|
15124
|
+
required: ["type", "value"]
|
|
14386
15125
|
}
|
|
14387
15126
|
},
|
|
14388
15127
|
required: [
|
|
@@ -14392,7 +15131,7 @@ const Quotes__Post_RequestSchema = {
|
|
|
14392
15131
|
"unit",
|
|
14393
15132
|
"vat_rate"
|
|
14394
15133
|
]
|
|
14395
|
-
},
|
|
15134
|
+
}] },
|
|
14396
15135
|
minItems: 1
|
|
14397
15136
|
}
|
|
14398
15137
|
},
|
|
@@ -14492,19 +15231,233 @@ const Quotes__Put_RequestSchema = {
|
|
|
14492
15231
|
properties: {
|
|
14493
15232
|
create: {
|
|
14494
15233
|
type: "array",
|
|
14495
|
-
items: {
|
|
15234
|
+
items: { oneOf: [{
|
|
15235
|
+
title: "Product-based Invoice Line",
|
|
15236
|
+
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",
|
|
14496
15237
|
type: "object",
|
|
14497
15238
|
additionalProperties: false,
|
|
14498
15239
|
properties: {
|
|
15240
|
+
product_id: {
|
|
15241
|
+
description: "The product ID. Auto-fills label, raw_currency_unit_price, unit, vat_rate, and ledger_account_id from the product.",
|
|
15242
|
+
type: "integer",
|
|
15243
|
+
format: "int64",
|
|
15244
|
+
example: 42
|
|
15245
|
+
},
|
|
15246
|
+
quantity: {
|
|
15247
|
+
description: "Line item quantity (number of items)",
|
|
15248
|
+
type: "number",
|
|
15249
|
+
example: 2
|
|
15250
|
+
},
|
|
14499
15251
|
label: {
|
|
14500
|
-
description: "
|
|
15252
|
+
description: "Line item label",
|
|
14501
15253
|
type: "string",
|
|
14502
|
-
example: "
|
|
15254
|
+
example: "Consulting fees"
|
|
14503
15255
|
},
|
|
14504
|
-
|
|
14505
|
-
description: "
|
|
14506
|
-
type: "
|
|
14507
|
-
|
|
15256
|
+
ledger_account_id: {
|
|
15257
|
+
description: "The ledger account ID",
|
|
15258
|
+
type: "integer",
|
|
15259
|
+
format: "int64",
|
|
15260
|
+
example: 1255
|
|
15261
|
+
},
|
|
15262
|
+
raw_currency_unit_price: {
|
|
15263
|
+
description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.",
|
|
15264
|
+
type: "string",
|
|
15265
|
+
example: "33.333334"
|
|
15266
|
+
},
|
|
15267
|
+
unit: {
|
|
15268
|
+
description: "Line item unit (type of unit)",
|
|
15269
|
+
type: "string",
|
|
15270
|
+
example: "piece"
|
|
15271
|
+
},
|
|
15272
|
+
vat_rate: {
|
|
15273
|
+
description: "Product VAT rate. A 20% VAT in France is FR_200.",
|
|
15274
|
+
type: "string",
|
|
15275
|
+
example: "FR_200",
|
|
15276
|
+
enum: [
|
|
15277
|
+
"FR_1_05",
|
|
15278
|
+
"FR_1_75",
|
|
15279
|
+
"FR_09",
|
|
15280
|
+
"FR_21",
|
|
15281
|
+
"FR_40",
|
|
15282
|
+
"FR_50",
|
|
15283
|
+
"FR_55",
|
|
15284
|
+
"FR_60",
|
|
15285
|
+
"FR_65",
|
|
15286
|
+
"FR_85",
|
|
15287
|
+
"FR_92",
|
|
15288
|
+
"FR_100",
|
|
15289
|
+
"FR_130",
|
|
15290
|
+
"FR_15_385",
|
|
15291
|
+
"FR_160",
|
|
15292
|
+
"FR_196",
|
|
15293
|
+
"FR_200",
|
|
15294
|
+
"AD_10",
|
|
15295
|
+
"AD_45",
|
|
15296
|
+
"AD_95",
|
|
15297
|
+
"AT_100",
|
|
15298
|
+
"AT_130",
|
|
15299
|
+
"AT_190",
|
|
15300
|
+
"AT_200",
|
|
15301
|
+
"BE_60",
|
|
15302
|
+
"BE_120",
|
|
15303
|
+
"BE_210",
|
|
15304
|
+
"BG_90",
|
|
15305
|
+
"BG_200",
|
|
15306
|
+
"CH_25",
|
|
15307
|
+
"CH_37",
|
|
15308
|
+
"CH_77",
|
|
15309
|
+
"CH_26",
|
|
15310
|
+
"CH_38",
|
|
15311
|
+
"CH_81",
|
|
15312
|
+
"CY_30",
|
|
15313
|
+
"CY_50",
|
|
15314
|
+
"CY_80",
|
|
15315
|
+
"CY_90",
|
|
15316
|
+
"CY_190",
|
|
15317
|
+
"CZ_100",
|
|
15318
|
+
"CZ_120",
|
|
15319
|
+
"CZ_150",
|
|
15320
|
+
"CZ_210",
|
|
15321
|
+
"DE_70",
|
|
15322
|
+
"DE_190",
|
|
15323
|
+
"DK_250",
|
|
15324
|
+
"EE_90",
|
|
15325
|
+
"EE_200",
|
|
15326
|
+
"EE_220",
|
|
15327
|
+
"EE_240",
|
|
15328
|
+
"ES_40",
|
|
15329
|
+
"ES_70",
|
|
15330
|
+
"ES_100",
|
|
15331
|
+
"ES_210",
|
|
15332
|
+
"FI_100",
|
|
15333
|
+
"FI_135",
|
|
15334
|
+
"FI_140",
|
|
15335
|
+
"FI_240",
|
|
15336
|
+
"FI_255",
|
|
15337
|
+
"GB_50",
|
|
15338
|
+
"GB_200",
|
|
15339
|
+
"GR_60",
|
|
15340
|
+
"GR_130",
|
|
15341
|
+
"GR_170",
|
|
15342
|
+
"GR_240",
|
|
15343
|
+
"GR_40",
|
|
15344
|
+
"HR_50",
|
|
15345
|
+
"HR_130",
|
|
15346
|
+
"HR_250",
|
|
15347
|
+
"HU_50",
|
|
15348
|
+
"HU_180",
|
|
15349
|
+
"HU_270",
|
|
15350
|
+
"IE_48",
|
|
15351
|
+
"IE_90",
|
|
15352
|
+
"IE_135",
|
|
15353
|
+
"IE_210",
|
|
15354
|
+
"IE_230",
|
|
15355
|
+
"IT_40",
|
|
15356
|
+
"IT_50",
|
|
15357
|
+
"IT_100",
|
|
15358
|
+
"IT_220",
|
|
15359
|
+
"LT_50",
|
|
15360
|
+
"LT_90",
|
|
15361
|
+
"LT_120",
|
|
15362
|
+
"LT_210",
|
|
15363
|
+
"LU_30",
|
|
15364
|
+
"LU_70",
|
|
15365
|
+
"LU_80",
|
|
15366
|
+
"LU_120",
|
|
15367
|
+
"LU_130",
|
|
15368
|
+
"LU_140",
|
|
15369
|
+
"LU_160",
|
|
15370
|
+
"LU_170",
|
|
15371
|
+
"LV_50",
|
|
15372
|
+
"LV_120",
|
|
15373
|
+
"LV_210",
|
|
15374
|
+
"MC_09",
|
|
15375
|
+
"MC_21",
|
|
15376
|
+
"MC_55",
|
|
15377
|
+
"MC_85",
|
|
15378
|
+
"MC_100",
|
|
15379
|
+
"MC_200",
|
|
15380
|
+
"MT_50",
|
|
15381
|
+
"MT_70",
|
|
15382
|
+
"MT_120",
|
|
15383
|
+
"MT_180",
|
|
15384
|
+
"MU_150",
|
|
15385
|
+
"NL_90",
|
|
15386
|
+
"NL_210",
|
|
15387
|
+
"PL_50",
|
|
15388
|
+
"PL_80",
|
|
15389
|
+
"PL_230",
|
|
15390
|
+
"PT_60",
|
|
15391
|
+
"PT_130",
|
|
15392
|
+
"PT_160",
|
|
15393
|
+
"PT_180",
|
|
15394
|
+
"PT_220",
|
|
15395
|
+
"PT_230",
|
|
15396
|
+
"RO_50",
|
|
15397
|
+
"RO_90",
|
|
15398
|
+
"RO_110",
|
|
15399
|
+
"RO_190",
|
|
15400
|
+
"RO_210",
|
|
15401
|
+
"SE_60",
|
|
15402
|
+
"SE_120",
|
|
15403
|
+
"SE_250",
|
|
15404
|
+
"SI_50",
|
|
15405
|
+
"SI_95",
|
|
15406
|
+
"SI_220",
|
|
15407
|
+
"SK_50",
|
|
15408
|
+
"SK_100",
|
|
15409
|
+
"SK_190",
|
|
15410
|
+
"SK_200",
|
|
15411
|
+
"SK_230",
|
|
15412
|
+
"NO_120",
|
|
15413
|
+
"NO_150",
|
|
15414
|
+
"NO_250",
|
|
15415
|
+
"DE_70_BU0002",
|
|
15416
|
+
"DE_190_BU0003",
|
|
15417
|
+
"DE_70_BU0008",
|
|
15418
|
+
"DE_190_BU0009",
|
|
15419
|
+
"DE_intracom_70_BU0012",
|
|
15420
|
+
"DE_intracom_190_BU0013",
|
|
15421
|
+
"DE_190_electronic_BU0226",
|
|
15422
|
+
"exempt",
|
|
15423
|
+
"DE_intracom_exempt_BU0011",
|
|
15424
|
+
"DE_intracom_exempt_BU0047",
|
|
15425
|
+
"DE_exempt_BU0001",
|
|
15426
|
+
"DE_exempt_BU0181",
|
|
15427
|
+
"DE_exempt_BU0490",
|
|
15428
|
+
"intracom_21",
|
|
15429
|
+
"intracom_55",
|
|
15430
|
+
"intracom_85",
|
|
15431
|
+
"intracom_100",
|
|
15432
|
+
"crossborder",
|
|
15433
|
+
"DE_intracom_70_BU0018",
|
|
15434
|
+
"DE_intracom_190_BU0019",
|
|
15435
|
+
"DE_intracom_190_BU0506",
|
|
15436
|
+
"extracom",
|
|
15437
|
+
"DE_extracom_BU0173",
|
|
15438
|
+
"DE_extracom_BU0191",
|
|
15439
|
+
"DE_extracom_190_BU0511",
|
|
15440
|
+
"FR_85_construction",
|
|
15441
|
+
"FR_100_construction",
|
|
15442
|
+
"FR_200_construction",
|
|
15443
|
+
"DE_exempt_construction_BU0046",
|
|
15444
|
+
"DE_70_construction_BU0091",
|
|
15445
|
+
"DE_190_construction_BU0094",
|
|
15446
|
+
"DE_190_construction_BU0526",
|
|
15447
|
+
"DE_190_construction_BU0546",
|
|
15448
|
+
"mixed"
|
|
15449
|
+
]
|
|
15450
|
+
},
|
|
15451
|
+
description: {
|
|
15452
|
+
description: "The description of the invoice line",
|
|
15453
|
+
type: "string",
|
|
15454
|
+
nullable: true,
|
|
15455
|
+
example: "Consulting services for August"
|
|
15456
|
+
},
|
|
15457
|
+
section_rank: {
|
|
15458
|
+
type: "integer",
|
|
15459
|
+
example: 1,
|
|
15460
|
+
description: "Has to correspond to the rank number of a line items section in which the line item should be"
|
|
14508
15461
|
},
|
|
14509
15462
|
discount: {
|
|
14510
15463
|
type: "object",
|
|
@@ -14518,10 +15471,28 @@ const Quotes__Put_RequestSchema = {
|
|
|
14518
15471
|
value: {
|
|
14519
15472
|
description: "Discount value on the total amount before tax of the line",
|
|
14520
15473
|
type: "string",
|
|
14521
|
-
example: "
|
|
15474
|
+
example: "10"
|
|
14522
15475
|
}
|
|
14523
15476
|
},
|
|
14524
15477
|
required: ["type", "value"]
|
|
15478
|
+
}
|
|
15479
|
+
},
|
|
15480
|
+
required: ["product_id", "quantity"]
|
|
15481
|
+
}, {
|
|
15482
|
+
title: "Standard Invoice Line",
|
|
15483
|
+
description: "Create an invoice line by providing all required fields explicitly\nwithout referencing a product.\n",
|
|
15484
|
+
type: "object",
|
|
15485
|
+
additionalProperties: false,
|
|
15486
|
+
properties: {
|
|
15487
|
+
label: {
|
|
15488
|
+
description: "Line item label",
|
|
15489
|
+
type: "string",
|
|
15490
|
+
example: "Consulting fees"
|
|
15491
|
+
},
|
|
15492
|
+
quantity: {
|
|
15493
|
+
description: "Line item quantity (number of items)",
|
|
15494
|
+
type: "number",
|
|
15495
|
+
example: 2
|
|
14525
15496
|
},
|
|
14526
15497
|
ledger_account_id: {
|
|
14527
15498
|
description: "The ledger account ID",
|
|
@@ -14530,12 +15501,12 @@ const Quotes__Put_RequestSchema = {
|
|
|
14530
15501
|
example: 1255
|
|
14531
15502
|
},
|
|
14532
15503
|
raw_currency_unit_price: {
|
|
14533
|
-
description: "The unit price excluding taxes. Can be set up to 6 decimals.",
|
|
15504
|
+
description: "The unit price excluding taxes (undiscounted if a discount is set). Can be set up to 6 decimals.",
|
|
14534
15505
|
type: "string",
|
|
14535
15506
|
example: "33.333334"
|
|
14536
15507
|
},
|
|
14537
15508
|
unit: {
|
|
14538
|
-
description: "
|
|
15509
|
+
description: "Line item unit (type of unit)",
|
|
14539
15510
|
type: "string",
|
|
14540
15511
|
example: "piece"
|
|
14541
15512
|
},
|
|
@@ -14721,18 +15692,30 @@ const Quotes__Put_RequestSchema = {
|
|
|
14721
15692
|
description: {
|
|
14722
15693
|
description: "The description of the invoice line",
|
|
14723
15694
|
type: "string",
|
|
14724
|
-
nullable: true
|
|
14725
|
-
|
|
14726
|
-
product_id: {
|
|
14727
|
-
description: "The product ID",
|
|
14728
|
-
type: "integer",
|
|
14729
|
-
format: "int64",
|
|
14730
|
-
example: 42
|
|
15695
|
+
nullable: true,
|
|
15696
|
+
example: "Consulting services for August"
|
|
14731
15697
|
},
|
|
14732
15698
|
section_rank: {
|
|
14733
15699
|
type: "integer",
|
|
14734
15700
|
example: 1,
|
|
14735
|
-
description: "Has to correspond to the rank number of a
|
|
15701
|
+
description: "Has to correspond to the rank number of a line items section in which the line item should be"
|
|
15702
|
+
},
|
|
15703
|
+
discount: {
|
|
15704
|
+
type: "object",
|
|
15705
|
+
additionalProperties: false,
|
|
15706
|
+
properties: {
|
|
15707
|
+
type: {
|
|
15708
|
+
description: "Discount type.\n- absolute if it is an amount\n- relative if it is a percentage\n",
|
|
15709
|
+
type: "string",
|
|
15710
|
+
enum: ["absolute", "relative"]
|
|
15711
|
+
},
|
|
15712
|
+
value: {
|
|
15713
|
+
description: "Discount value on the total amount before tax of the line",
|
|
15714
|
+
type: "string",
|
|
15715
|
+
example: "10"
|
|
15716
|
+
}
|
|
15717
|
+
},
|
|
15718
|
+
required: ["type", "value"]
|
|
14736
15719
|
}
|
|
14737
15720
|
},
|
|
14738
15721
|
required: [
|
|
@@ -14742,7 +15725,7 @@ const Quotes__Put_RequestSchema = {
|
|
|
14742
15725
|
"unit",
|
|
14743
15726
|
"vat_rate"
|
|
14744
15727
|
]
|
|
14745
|
-
}
|
|
15728
|
+
}] }
|
|
14746
15729
|
},
|
|
14747
15730
|
update: {
|
|
14748
15731
|
type: "array",
|
|
@@ -17628,7 +18611,7 @@ const getBillingSubscriptionInvoiceLines = (options) => (options.client ?? clien
|
|
|
17628
18611
|
*
|
|
17629
18612
|
* Returns all PA (Plateforme Agrée) registrations for the company,
|
|
17630
18613
|
* including activation status and exchange direction. Use this to determine whether the company has completed
|
|
17631
|
-
* PA onboarding. Records with
|
|
18614
|
+
* PA onboarding. Records with a `null` `siret` represent the SIREN-level
|
|
17632
18615
|
* (head office), other records represent establishments.
|
|
17633
18616
|
*
|
|
17634
18617
|
*
|
|
@@ -21162,5 +22145,5 @@ function createClientWithApiKey(apiKey) {
|
|
|
21162
22145
|
}
|
|
21163
22146
|
|
|
21164
22147
|
//#endregion
|
|
21165
|
-
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccounts__ResponseSchema, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptions__ResponseSchema, Categories__ResponseSchema, CategoryGroups__ResponseSchema, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomers__ResponseSchema, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, Currency, CurrencySchema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplates__ResponseSchema, 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, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportStatus, ExportStatusSchema, FileAttachments__ResponseSchema, GocardlessMandates__ResponseSchema, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccounts__ResponseSchema, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, MandateStatus, MandateStatusSchema, Null, Null2, NullSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequests__ResponseSchema, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, SchemasCurrency, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, 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, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, 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 };
|
|
22148
|
+
export { AccountType, AccountTypeSchema, AuthorizedCountryAlpha2WithAny, AuthorizedCountryAlpha2WithAnySchema, BadRequestCodeEnum, BadRequestCodeEnumSchema, BankAccounts__ResponseSchema, BankEstablishments__ResponseSchema, BillingSubscriptionMode, BillingSubscriptionModeSchema, BillingSubscriptionPaymentConditions, BillingSubscriptionPaymentConditionsSchema, BillingSubscriptionPaymentMethod, BillingSubscriptionPaymentMethodSchema, BillingSubscriptionRuleTypes, BillingSubscriptionRuleTypesSchema, BillingSubscriptionStatus, BillingSubscriptionStatusSchema, BillingSubscriptions__ResponseSchema, Categories__ResponseSchema, CategoryGroups__ResponseSchema, CommercialDocuments__Appendices__ResponseSchema, CommercialDocuments__ResponseSchema, CompanyCustomers__ResponseSchema, CompanyWebhookSubscriptionEvents, CompanyWebhookSubscriptionEventsSchema, Currency, CurrencySchema, CustomerInvoiceDocumentTypes, CustomerInvoiceDocumentTypesSchema, CustomerInvoicePDPStatusSchema, CustomerInvoicePdpStatus, CustomerInvoiceTemplates__ResponseSchema, 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, Customers__Categories__ResponseSchema, Customers__Contacts__ResponseSchema, Customers__ResponseSchema, DiscountType, DiscountTypeSchema, EstimateStatus, EstimateStatusSchema, ExportStatus, ExportStatusSchema, FileAttachments__ResponseSchema, GocardlessMandates__ResponseSchema, IndividualCustomers__ResponseSchema, InvoiceAccountantsStatus, InvoiceAccountantsStatusSchema, InvoicePaymentStatus, InvoicePaymentStatusSchema, InvoiceStatuses, InvoiceStatusesSchema, Journals__ResponseSchema, Language, LanguageSchema, LedgerAccounts__ResponseSchema, LedgerEntries__CategoriesSchema, LedgerEntries__ResponseSchema, LedgerEntryLines__CategoriesSchema, LedgerEntryLines__Categories__ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__Categories_ResponseSchema, LedgerEntryLines__LetteredLedgerEntryLines__ResponseSchema, LedgerEntryLines__ResponseSchema, MandateStatus, MandateStatusSchema, Null, Null2, NullSchema, PDPAddresses__ResponseSchema, PaymentConditions, PaymentConditionsSchema, PaymentStatus, PaymentStatusSchema, ProAccount__MandateMigrations__CreateResponseSchema, ProAccount__MandateMigrations__ResponseSchema, ProAccount__SwanSepaPaymentMandates__MandateSchema, Products__ResponseSchema, PurchaseRequestLineUnit, PurchaseRequestLineUnitSchema, PurchaseRequestStatuses, PurchaseRequestStatusesSchema, PurchaseRequests__ResponseSchema, Quotes__Appendices__ResponseSchema, Quotes__InvoiceLineSections__ResponseSchema, Quotes__InvoiceLineWithProduct_RequestSchema, Quotes__InvoiceLineWithoutProduct_RequestSchema, Quotes__InvoiceLines__ResponseSchema, Quotes__Post_RequestSchema, Quotes__Put_RequestSchema, Quotes__ResponseSchema, SchemasCurrency, SepaMandates__ResponseSchema, SepaSequenceType, SepaSequenceTypeSchema, SupplierInvoicePDPDisputeReasonSchema, SupplierInvoicePDPReasonSchema, SupplierInvoicePDPRefuseReasonSchema, SupplierInvoicePDPStatusSchema, SupplierInvoicePdpDisputeReason, SupplierInvoicePdpReason, SupplierInvoicePdpRefuseReason, SupplierInvoicePdpStatus, 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, Suppliers__Categories__ResponseSchema, Suppliers__ResponseSchema, TemplatesAvailablesLocales, TemplatesAvailablesLocalesSchema, ThirdpartySupplierDueDateRule, ThirdpartySupplierDueDateRuleSchema, TransactionDirection, TransactionDirectionSchema, Transactions__CategoriesResponseSchema, Transactions__Categories__ResponseSchema, Transactions__ResponseSchema, UnbalancedLetteringStrategy, UnbalancedLetteringStrategySchema, VatRateWithAnyAndMixed, VatRateWithAnyAndMixedSchema, VatRateWithMixed, VatRateWithMixedSchema, 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 };
|
|
21166
22149
|
//# sourceMappingURL=index.mjs.map
|