@getyetty-sdk/sellsy 2026.3.11 → 2026.3.20
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 +1724 -1123
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +387 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10257,6 +10257,24 @@ const OcrSchema = {
|
|
|
10257
10257
|
description: "Source of the incoming document",
|
|
10258
10258
|
enum: ["ocr", "facturx"],
|
|
10259
10259
|
example: "ocr"
|
|
10260
|
+
},
|
|
10261
|
+
supplier: {
|
|
10262
|
+
type: "string",
|
|
10263
|
+
description: "Supplier name",
|
|
10264
|
+
nullable: true,
|
|
10265
|
+
example: "SELLSY"
|
|
10266
|
+
},
|
|
10267
|
+
total_excl_tax: {
|
|
10268
|
+
type: "string",
|
|
10269
|
+
description: "Total amount excluding tax",
|
|
10270
|
+
nullable: true,
|
|
10271
|
+
example: "35.00"
|
|
10272
|
+
},
|
|
10273
|
+
currency: {
|
|
10274
|
+
type: "string",
|
|
10275
|
+
description: "Currency code",
|
|
10276
|
+
nullable: true,
|
|
10277
|
+
example: "EUR"
|
|
10260
10278
|
}
|
|
10261
10279
|
}
|
|
10262
10280
|
};
|
|
@@ -33823,6 +33841,190 @@ const TaxesMetadataSchema = {
|
|
|
33823
33841
|
}
|
|
33824
33842
|
}
|
|
33825
33843
|
};
|
|
33844
|
+
const purInvoiceOneSchema = {
|
|
33845
|
+
title: "Purchase invoice",
|
|
33846
|
+
allOf: [{
|
|
33847
|
+
title: "Purchase invoice",
|
|
33848
|
+
type: "object",
|
|
33849
|
+
properties: {
|
|
33850
|
+
id: {
|
|
33851
|
+
type: "integer",
|
|
33852
|
+
readOnly: true,
|
|
33853
|
+
description: "Purchase invoice ID",
|
|
33854
|
+
example: 33
|
|
33855
|
+
},
|
|
33856
|
+
number: {
|
|
33857
|
+
type: "string",
|
|
33858
|
+
description: "Purchase invoice number",
|
|
33859
|
+
example: "F_INV-20250916-00002"
|
|
33860
|
+
},
|
|
33861
|
+
related: {
|
|
33862
|
+
description: "Objects linked to the purchase invoice :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase invoice. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase invoice. There may be zero or more opportunities linked to purchase invoice\n",
|
|
33863
|
+
type: "array",
|
|
33864
|
+
minItems: 1,
|
|
33865
|
+
items: {
|
|
33866
|
+
type: "object",
|
|
33867
|
+
properties: {
|
|
33868
|
+
id: {
|
|
33869
|
+
type: "integer",
|
|
33870
|
+
description: "ID of the related",
|
|
33871
|
+
example: 234
|
|
33872
|
+
},
|
|
33873
|
+
type: {
|
|
33874
|
+
type: "string",
|
|
33875
|
+
description: "Type of the related",
|
|
33876
|
+
example: "company",
|
|
33877
|
+
enum: [
|
|
33878
|
+
"company",
|
|
33879
|
+
"individual",
|
|
33880
|
+
"opportunity",
|
|
33881
|
+
"contact"
|
|
33882
|
+
]
|
|
33883
|
+
}
|
|
33884
|
+
}
|
|
33885
|
+
}
|
|
33886
|
+
}
|
|
33887
|
+
}
|
|
33888
|
+
}]
|
|
33889
|
+
};
|
|
33890
|
+
const purCreditNoteOneSchema = {
|
|
33891
|
+
title: "Purchase credit note",
|
|
33892
|
+
allOf: [{
|
|
33893
|
+
title: "Purchase credit note",
|
|
33894
|
+
type: "object",
|
|
33895
|
+
properties: {
|
|
33896
|
+
id: {
|
|
33897
|
+
type: "integer",
|
|
33898
|
+
readOnly: true,
|
|
33899
|
+
description: "Purchase credit note ID",
|
|
33900
|
+
example: 33
|
|
33901
|
+
},
|
|
33902
|
+
number: {
|
|
33903
|
+
type: "string",
|
|
33904
|
+
description: "Purchase credit note number",
|
|
33905
|
+
example: "F_AVR-20250916-00002"
|
|
33906
|
+
},
|
|
33907
|
+
related: {
|
|
33908
|
+
description: "Objects linked to the purchase credit note :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase credit note. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase credit note. There may be zero or more opportunities linked to purchase credit note\n",
|
|
33909
|
+
type: "array",
|
|
33910
|
+
minItems: 1,
|
|
33911
|
+
items: {
|
|
33912
|
+
type: "object",
|
|
33913
|
+
properties: {
|
|
33914
|
+
id: {
|
|
33915
|
+
type: "integer",
|
|
33916
|
+
description: "ID of the related",
|
|
33917
|
+
example: 234
|
|
33918
|
+
},
|
|
33919
|
+
type: {
|
|
33920
|
+
type: "string",
|
|
33921
|
+
description: "Type of the related",
|
|
33922
|
+
example: "company",
|
|
33923
|
+
enum: [
|
|
33924
|
+
"company",
|
|
33925
|
+
"individual",
|
|
33926
|
+
"opportunity",
|
|
33927
|
+
"contact"
|
|
33928
|
+
]
|
|
33929
|
+
}
|
|
33930
|
+
}
|
|
33931
|
+
}
|
|
33932
|
+
}
|
|
33933
|
+
}
|
|
33934
|
+
}]
|
|
33935
|
+
};
|
|
33936
|
+
const purDeliveryOneSchema = {
|
|
33937
|
+
title: "Purchase delivery",
|
|
33938
|
+
allOf: [{
|
|
33939
|
+
title: "Purchase delivery",
|
|
33940
|
+
type: "object",
|
|
33941
|
+
properties: {
|
|
33942
|
+
id: {
|
|
33943
|
+
type: "integer",
|
|
33944
|
+
readOnly: true,
|
|
33945
|
+
description: "Purchase delivery ID",
|
|
33946
|
+
example: 33
|
|
33947
|
+
},
|
|
33948
|
+
number: {
|
|
33949
|
+
type: "string",
|
|
33950
|
+
description: "Purchase delivery number",
|
|
33951
|
+
example: "F_DEL-20250916-00002"
|
|
33952
|
+
},
|
|
33953
|
+
related: {
|
|
33954
|
+
description: "Objects linked to the purchase delivery :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase delivery. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase delivery. There may be zero or more opportunities linked to purchase delivery\n",
|
|
33955
|
+
type: "array",
|
|
33956
|
+
minItems: 1,
|
|
33957
|
+
items: {
|
|
33958
|
+
type: "object",
|
|
33959
|
+
properties: {
|
|
33960
|
+
id: {
|
|
33961
|
+
type: "integer",
|
|
33962
|
+
description: "ID of the related",
|
|
33963
|
+
example: 234
|
|
33964
|
+
},
|
|
33965
|
+
type: {
|
|
33966
|
+
type: "string",
|
|
33967
|
+
description: "Type of the related",
|
|
33968
|
+
example: "company",
|
|
33969
|
+
enum: [
|
|
33970
|
+
"company",
|
|
33971
|
+
"individual",
|
|
33972
|
+
"opportunity",
|
|
33973
|
+
"contact"
|
|
33974
|
+
]
|
|
33975
|
+
}
|
|
33976
|
+
}
|
|
33977
|
+
}
|
|
33978
|
+
}
|
|
33979
|
+
}
|
|
33980
|
+
}]
|
|
33981
|
+
};
|
|
33982
|
+
const purOrderOneSchema = {
|
|
33983
|
+
title: "Purchase order",
|
|
33984
|
+
allOf: [{
|
|
33985
|
+
title: "Purchase order",
|
|
33986
|
+
type: "object",
|
|
33987
|
+
properties: {
|
|
33988
|
+
id: {
|
|
33989
|
+
type: "integer",
|
|
33990
|
+
readOnly: true,
|
|
33991
|
+
description: "Purchase order ID",
|
|
33992
|
+
example: 33
|
|
33993
|
+
},
|
|
33994
|
+
number: {
|
|
33995
|
+
type: "string",
|
|
33996
|
+
description: "Purchase order number",
|
|
33997
|
+
example: "F_ORD-20250916-00002"
|
|
33998
|
+
},
|
|
33999
|
+
related: {
|
|
34000
|
+
description: "Objects linked to the purchase order :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase order. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase order. There may be zero or more opportunities linked to purchase order\n",
|
|
34001
|
+
type: "array",
|
|
34002
|
+
minItems: 1,
|
|
34003
|
+
items: {
|
|
34004
|
+
type: "object",
|
|
34005
|
+
properties: {
|
|
34006
|
+
id: {
|
|
34007
|
+
type: "integer",
|
|
34008
|
+
description: "ID of the related",
|
|
34009
|
+
example: 234
|
|
34010
|
+
},
|
|
34011
|
+
type: {
|
|
34012
|
+
type: "string",
|
|
34013
|
+
description: "Type of the related",
|
|
34014
|
+
example: "company",
|
|
34015
|
+
enum: [
|
|
34016
|
+
"company",
|
|
34017
|
+
"individual",
|
|
34018
|
+
"opportunity",
|
|
34019
|
+
"contact"
|
|
34020
|
+
]
|
|
34021
|
+
}
|
|
34022
|
+
}
|
|
34023
|
+
}
|
|
34024
|
+
}
|
|
34025
|
+
}
|
|
34026
|
+
}]
|
|
34027
|
+
};
|
|
33826
34028
|
const CreateModelWritableSchema = {
|
|
33827
34029
|
title: "Create model",
|
|
33828
34030
|
type: "object",
|
|
@@ -39227,6 +39429,24 @@ const OcrWritableSchema = {
|
|
|
39227
39429
|
description: "Source of the incoming document",
|
|
39228
39430
|
enum: ["ocr", "facturx"],
|
|
39229
39431
|
example: "ocr"
|
|
39432
|
+
},
|
|
39433
|
+
supplier: {
|
|
39434
|
+
type: "string",
|
|
39435
|
+
description: "Supplier name",
|
|
39436
|
+
nullable: true,
|
|
39437
|
+
example: "SELLSY"
|
|
39438
|
+
},
|
|
39439
|
+
total_excl_tax: {
|
|
39440
|
+
type: "string",
|
|
39441
|
+
description: "Total amount excluding tax",
|
|
39442
|
+
nullable: true,
|
|
39443
|
+
example: "35.00"
|
|
39444
|
+
},
|
|
39445
|
+
currency: {
|
|
39446
|
+
type: "string",
|
|
39447
|
+
description: "Currency code",
|
|
39448
|
+
nullable: true,
|
|
39449
|
+
example: "EUR"
|
|
39230
39450
|
}
|
|
39231
39451
|
}
|
|
39232
39452
|
};
|
|
@@ -48870,6 +49090,166 @@ const EInvoicingMandateInputWritableSchema = {
|
|
|
48870
49090
|
"person_type"
|
|
48871
49091
|
]
|
|
48872
49092
|
};
|
|
49093
|
+
const purInvoiceOneWritableSchema = {
|
|
49094
|
+
title: "Purchase invoice",
|
|
49095
|
+
allOf: [{
|
|
49096
|
+
title: "Purchase invoice",
|
|
49097
|
+
type: "object",
|
|
49098
|
+
properties: {
|
|
49099
|
+
number: {
|
|
49100
|
+
type: "string",
|
|
49101
|
+
description: "Purchase invoice number",
|
|
49102
|
+
example: "F_INV-20250916-00002"
|
|
49103
|
+
},
|
|
49104
|
+
related: {
|
|
49105
|
+
description: "Objects linked to the purchase invoice :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase invoice. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase invoice. There may be zero or more opportunities linked to purchase invoice\n",
|
|
49106
|
+
type: "array",
|
|
49107
|
+
minItems: 1,
|
|
49108
|
+
items: {
|
|
49109
|
+
type: "object",
|
|
49110
|
+
properties: {
|
|
49111
|
+
id: {
|
|
49112
|
+
type: "integer",
|
|
49113
|
+
description: "ID of the related",
|
|
49114
|
+
example: 234
|
|
49115
|
+
},
|
|
49116
|
+
type: {
|
|
49117
|
+
type: "string",
|
|
49118
|
+
description: "Type of the related",
|
|
49119
|
+
example: "company",
|
|
49120
|
+
enum: [
|
|
49121
|
+
"company",
|
|
49122
|
+
"individual",
|
|
49123
|
+
"opportunity",
|
|
49124
|
+
"contact"
|
|
49125
|
+
]
|
|
49126
|
+
}
|
|
49127
|
+
}
|
|
49128
|
+
}
|
|
49129
|
+
}
|
|
49130
|
+
}
|
|
49131
|
+
}]
|
|
49132
|
+
};
|
|
49133
|
+
const purCreditNoteOneWritableSchema = {
|
|
49134
|
+
title: "Purchase credit note",
|
|
49135
|
+
allOf: [{
|
|
49136
|
+
title: "Purchase credit note",
|
|
49137
|
+
type: "object",
|
|
49138
|
+
properties: {
|
|
49139
|
+
number: {
|
|
49140
|
+
type: "string",
|
|
49141
|
+
description: "Purchase credit note number",
|
|
49142
|
+
example: "F_AVR-20250916-00002"
|
|
49143
|
+
},
|
|
49144
|
+
related: {
|
|
49145
|
+
description: "Objects linked to the purchase credit note :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase credit note. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase credit note. There may be zero or more opportunities linked to purchase credit note\n",
|
|
49146
|
+
type: "array",
|
|
49147
|
+
minItems: 1,
|
|
49148
|
+
items: {
|
|
49149
|
+
type: "object",
|
|
49150
|
+
properties: {
|
|
49151
|
+
id: {
|
|
49152
|
+
type: "integer",
|
|
49153
|
+
description: "ID of the related",
|
|
49154
|
+
example: 234
|
|
49155
|
+
},
|
|
49156
|
+
type: {
|
|
49157
|
+
type: "string",
|
|
49158
|
+
description: "Type of the related",
|
|
49159
|
+
example: "company",
|
|
49160
|
+
enum: [
|
|
49161
|
+
"company",
|
|
49162
|
+
"individual",
|
|
49163
|
+
"opportunity",
|
|
49164
|
+
"contact"
|
|
49165
|
+
]
|
|
49166
|
+
}
|
|
49167
|
+
}
|
|
49168
|
+
}
|
|
49169
|
+
}
|
|
49170
|
+
}
|
|
49171
|
+
}]
|
|
49172
|
+
};
|
|
49173
|
+
const purDeliveryOneWritableSchema = {
|
|
49174
|
+
title: "Purchase delivery",
|
|
49175
|
+
allOf: [{
|
|
49176
|
+
title: "Purchase delivery",
|
|
49177
|
+
type: "object",
|
|
49178
|
+
properties: {
|
|
49179
|
+
number: {
|
|
49180
|
+
type: "string",
|
|
49181
|
+
description: "Purchase delivery number",
|
|
49182
|
+
example: "F_DEL-20250916-00002"
|
|
49183
|
+
},
|
|
49184
|
+
related: {
|
|
49185
|
+
description: "Objects linked to the purchase delivery :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase delivery. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase delivery. There may be zero or more opportunities linked to purchase delivery\n",
|
|
49186
|
+
type: "array",
|
|
49187
|
+
minItems: 1,
|
|
49188
|
+
items: {
|
|
49189
|
+
type: "object",
|
|
49190
|
+
properties: {
|
|
49191
|
+
id: {
|
|
49192
|
+
type: "integer",
|
|
49193
|
+
description: "ID of the related",
|
|
49194
|
+
example: 234
|
|
49195
|
+
},
|
|
49196
|
+
type: {
|
|
49197
|
+
type: "string",
|
|
49198
|
+
description: "Type of the related",
|
|
49199
|
+
example: "company",
|
|
49200
|
+
enum: [
|
|
49201
|
+
"company",
|
|
49202
|
+
"individual",
|
|
49203
|
+
"opportunity",
|
|
49204
|
+
"contact"
|
|
49205
|
+
]
|
|
49206
|
+
}
|
|
49207
|
+
}
|
|
49208
|
+
}
|
|
49209
|
+
}
|
|
49210
|
+
}
|
|
49211
|
+
}]
|
|
49212
|
+
};
|
|
49213
|
+
const purOrderOneWritableSchema = {
|
|
49214
|
+
title: "Purchase order",
|
|
49215
|
+
allOf: [{
|
|
49216
|
+
title: "Purchase order",
|
|
49217
|
+
type: "object",
|
|
49218
|
+
properties: {
|
|
49219
|
+
number: {
|
|
49220
|
+
type: "string",
|
|
49221
|
+
description: "Purchase order number",
|
|
49222
|
+
example: "F_ORD-20250916-00002"
|
|
49223
|
+
},
|
|
49224
|
+
related: {
|
|
49225
|
+
description: "Objects linked to the purchase order :\n - There can be only one company or one individual at a time (required)\n - For Company & Individual, only `supplier` type is allowed\n - Contact is the contact of company linked to the purchase order. There may be no or one contact.\n - Opportunity is the opportunity linked to the purchase order. There may be zero or more opportunities linked to purchase order\n",
|
|
49226
|
+
type: "array",
|
|
49227
|
+
minItems: 1,
|
|
49228
|
+
items: {
|
|
49229
|
+
type: "object",
|
|
49230
|
+
properties: {
|
|
49231
|
+
id: {
|
|
49232
|
+
type: "integer",
|
|
49233
|
+
description: "ID of the related",
|
|
49234
|
+
example: 234
|
|
49235
|
+
},
|
|
49236
|
+
type: {
|
|
49237
|
+
type: "string",
|
|
49238
|
+
description: "Type of the related",
|
|
49239
|
+
example: "company",
|
|
49240
|
+
enum: [
|
|
49241
|
+
"company",
|
|
49242
|
+
"individual",
|
|
49243
|
+
"opportunity",
|
|
49244
|
+
"contact"
|
|
49245
|
+
]
|
|
49246
|
+
}
|
|
49247
|
+
}
|
|
49248
|
+
}
|
|
49249
|
+
}
|
|
49250
|
+
}
|
|
49251
|
+
}]
|
|
49252
|
+
};
|
|
48873
49253
|
|
|
48874
49254
|
//#endregion
|
|
48875
49255
|
//#region src/generated/sdk.gen.ts
|
|
@@ -55091,7 +55471,12 @@ const CustomActivityOrder = { DATE: "date" };
|
|
|
55091
55471
|
*/
|
|
55092
55472
|
const OcrOrder = {
|
|
55093
55473
|
CREATED_AT: "created_at",
|
|
55094
|
-
COMPLETED_AT: "completed_at"
|
|
55474
|
+
COMPLETED_AT: "completed_at",
|
|
55475
|
+
LINKED_TYPE: "linked_type",
|
|
55476
|
+
SOURCE: "source",
|
|
55477
|
+
SUPPLIER: "supplier",
|
|
55478
|
+
TOTAL_EXCL_TAX: "total_excl_tax",
|
|
55479
|
+
STATE: "state"
|
|
55095
55480
|
};
|
|
55096
55481
|
/**
|
|
55097
55482
|
* The order field
|
|
@@ -55234,5 +55619,5 @@ function createClientWithApiKey(apiKey) {
|
|
|
55234
55619
|
}
|
|
55235
55620
|
|
|
55236
55621
|
//#endregion
|
|
55237
|
-
export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodeSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchUnitInputSchema, CalendarEventCreateItemSchema, CalendarEventFiltersSchema, CalendarEventItemSchema, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItemSchema, CheckLabelOrders, CheckLabelSchema, ClientCreateSchema, ClientCreateWritableSchema, ClientSchema, ClientUpdateSchema, ClientUpdateWritableSchema, ClientWSecretSchema, ClientWSecretWritableSchema, ClientWritableSchema, CommentCreateItemSchema, CommentFiltersSchema, CommentItemSchema, CommentItemWritableSchema, CommentOrder, CommentUpdateItemSchema, CompanyPreferencesSchema, CompanyPreferencesWritableSchema, ComputedProgresssInvoiceSchema, ConsentMarketingSettingsInputSchema, ConsentSettingsInputSchema, ConsentSettingsOuputSchema, ContactCollectionItemSchema, ContactCollectionItemWritableSchema, ContactCreateItemSchema, ContactCreateItemWritableSchema, ContactFiltersSchema, ContactItemSchema, ContactItemWritableSchema, ContactOrders, ContactUpdateItemSchema, ContactUpdateItemWritableSchema, CorporationSubscriptionSchema, CountrySchema, CreateDirectorySchema, CreateItemSchema, CreateModelSchema, CreateModelWritableSchema, CreatePaymentSchema, CreditNoteComputeSchema, CreditNoteComputeWritableSchema, CreditNoteCreateSchema, CreditNoteCreateWritableSchema, CreditNoteFiltersSchema, CreditNoteOneSchema, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdateSchema, CreditNoteUpdateWritableSchema, CreditNoteValidateSchema, CreditNoteWritableSchema, CrmActivityAggregationsSchema, CrmActivityFiltersSchema, CrmActivityMetasSchema, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritableSchema, CurrencySchema, CurrencyWritableSchema, CustomActivityCreateSchema, CustomActivityCreateWritableSchema, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityTypeSchema, CustomActivityTypeWritableSchema, CustomActivityWritableSchema, DealsActivityOrder, DealsBatchSchema, DealsFiltersSchema, DealsSchema, DealsWritableSchema, DeclinationReadSchema, DeliveryFiltersSchema, DeliveryOneSchema, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritableSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceFilterSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBodySchema, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInputSchema, EmailTemplateInputSchema, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutputSchema, EmailTemplateOutputSchema, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInputSchema, EmailValidationItemSchema, EmailVerificationInputSchema, EmailVerificationValidateInputSchema, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettingsSchema, EstimateAggregationsSchema, EstimateCollectionSchema, EstimateCollectionWritableSchema, EstimateComputeSchema, EstimateComputeWritableSchema, EstimateCreateSchema, EstimateCreateWritableSchema, EstimateFiltersSchema, EstimateOneEmbedSchema, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdateSchema, EstimateUpdateSchema, EstimateUpdateWritableSchema, EstimateWritableSchema, ExportParamsSchema, FavouriteFiltersOrder, FavouriteFiltersSchema, FileOutputSchema, FileOutputWritableSchema, FiscalYearSchema, GenerateBackupCodeInputSchema, ImportModelSchema, ImportPrepareInputSchema, ImportStartInputSchema, ImportType, ImportValidateInputSchema, IndividualPreferencesSchema, IndividualPreferencesWritableSchema, InvoiceComputeSchema, InvoiceComputeWritableSchema, InvoiceCreateSchema, InvoiceCreateWritableSchema, InvoiceFiltersSchema, InvoiceOneSchema, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdateSchema, InvoiceUpdateWritableSchema, InvoiceWritableSchema, InvoicingConformityStateSchema, InvoicingConformityStateWritableSchema, InvoicingPaymentSchema, InvoicingSearchFiltersSchema, InvoicingSearchSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingUserContextSchema, MailchimpSettingsSchema, MailjetSettingsSchema, MarketingAttributeDiffOutputSchema, MarketingAttributeInputSchema, MarketingAttributeOutputSchema, MarketingProvidersSchema, ModelOneSchema, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritableSchema, MoveFileInputSchema, NotificationFiltersSchema, NotificationMarkAsReadSchema, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInputSchema, NotificationSettingsOutputSchema, NotificationWritableSchema, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutputSchema, ObjectiveMetadataSchema, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutputSchema, ObjectiveSearchInputSchema, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInputSchema, OcrOrder, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritableSchema, OnboardingScreenOutputSchema, OpportunitiesAggregationsSchema, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritableSchema, OpportunityCreateSchema, OpportunityFiltersSchema, OpportunityItemSchema, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatchSchema, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdateSchema, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdateSchema, OrderComputeSchema, OrderComputeWritableSchema, OrderCreateSchema, OrderCreateWritableSchema, OrderFiltersSchema, OrderOneSchema, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdateSchema, OrderUpdateWritableSchema, OrderWritableSchema, OwnerSchema, PaginationSchema, PartialEmailHeaderSchema, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritableSchema, PaymentProviderSchema, PaymentSchema, PaymentTermSchema, PaymentWritableSchema, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItemSchema, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItemSchema, PhoneCallFilterSchema, PhoneCallItemSchema, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItemSchema, PipelineStepFiltersSchema, PipelineStepOrder, PredictPlanSchema, ProfileOrder, ProfilesSchema, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocType, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOneSchema, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritableSchema, ProposalDocumentSchema, ProposalDocumentWritableSchema, ProposalModelSchema, ProposalModelWritableSchema, QuotasSchema, RateCategoryMetadataSchema, RelatedSchema, ReportAggregationSchema, ReportSchema, ReportWritableSchema, SaleEmbedSchema, SaleEmbedWritableSchema, SaleOrder, ScanFetchSchema, ScanListSchema, SearchResultAggregationsSchema, SearchResultBaseItemSchema, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritableSchema, SocialSchema, StaffAclSchema, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritableSchema, StaffCreateItemSchema, StaffFiltersSchema, StaffOrder, StaffPreferencesSchema, StaffPreferencesWritableSchema, StaffRestrictedViewSchema, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItemSchema, StaffWritableSchema, StancerSettingsSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritableSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WarehouseSchema, WarehouseWritableSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeEstimate, computeInvoice, computeOrder, computeProgressInvoice, convertCompany, convertIndividual, convertModel, corporationStaffAggregationSchema, corporationStaffAggregationWritableSchema, createAccountingCode, createBatch, createCalendarEvent, createClient, createClientWithApiKey, createComment, createCompany, createCompanyAddress, createCompanyPayment, createConfig, createContact, createContactAddress, createCreditNote, createDepositInvoice, createDirectory, createDiscountInclTaxes, createEsignEstimate, createEsignOrder, createEsignProposalDocument, createEstimate, createIndividual, createIndividualAddress, createIndividualPayment, createInvoice, createItem, createModel, createOpportunity, createOrder, createPhoneCall, createProgressInvoice, createRateCategory, createStaff, createSubscription, createTask, createTax, createWebhook, deleteAccountingCode, deleteCalendarEvent, deleteClients, deleteComment, deleteCompany, deleteCompanyAddress, deleteContact, deleteContactAddress, deleteCustomActivitiesId, deleteDirectory, deleteDiscountInclTaxes, deleteFile, deleteIndividual, deleteIndividualAddress, deleteItem, deleteNotification, deleteOpportunity, deletePayment, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCrmActivities, fetchClients, generateProposalDocument, getAccountSubscription, getAccountingChartsSettings, getAccountingCodes, getAccountingJournal, getAccountsDocuments, getAddresses, getAssignedStaffLabels, getBankAccounts, getCalendarEvent, getCalendarEvents, getCalendarEventsLabels, getCheckLabels, getComment, getComments, getCompanies, getCompany, getCompanyAddress, getCompanyAddresses, getCompanyContacts, getCompanyCustomFields, getCompanyFavouriteFilters, getCompanyFiles, getCompanySmartTags, getContact, getContactAddress, getContactAddresses, getContactCompanies, getContactCustomFields, getContactFavouriteFilters, getContactFiles, getContactSmartTags, getContacts, getCountries, getCreditNote, getCreditNoteCustomFields, getCreditNoteFavouriteFilters, getCreditNoteFiles, getCreditNoteInvoices, getCreditNotePayments, getCreditNoteSmartTags, getCreditNotes, getCrmActivities, getCurrencies, getCustomActivities, getCustomActivitiesId, getCustomActivityTypes, getCustomActivityTypesId, getCustomField, getCustomFields, getDeliveries, getDelivery, getDepositInvoice, getDepositInvoiceCreditNotes, getDepositInvoiceCustomFields, getDepositInvoiceFiles, getDepositInvoicePayments, getDepositInvoiceSmartTags, getDepositInvoices, getDirectory, getDirectoryFiles, getDiscountInclTaxes, getDiscountsInclTaxes, getDocumentLayouts, getEmail, getEmailDomainDnsData, getEmailSettings, getEmailSignatureTags, getEmailTemplate, getEmailTemplateTags, getEmailTemplateWithContent, getEmailTemplates, getEmailThread, getEsignEstimate, getEsignOrder, getEsignProposalDocument, getEstimate, getEstimateCustomFields, getEstimateFavouriteFilters, getEstimateFiles, getEstimatePayments, getEstimateSmartTags, getEstimates, getFile, getFiscalYears, getIndividual, getIndividualAddress, getIndividualAddresses, getIndividualContacts, getIndividualCustomFields, getIndividualFavouriteFilters, getIndividualFiles, getIndividualSmartTags, getIndividuals, getInvoice, getInvoiceCreditNotes, getInvoiceCustomFields, getInvoiceFavouriteFilters, getInvoiceFiles, getInvoicePayments, getInvoiceSmartTags, getInvoices, getInvoicingConformityState, getItem, getItemDeclinationPrices, getItemDeclinations, getItemFavouriteFilters, getItemPrices, getItems, getLanguages, getMandates, getModel, getModelTags, getModels, getNotifications, getNotificationsSettings, getOcrPurInvoice, getOcrPurInvoiceMetas, getOpportunities, getOpportunitiesCategories, getOpportunitiesCategory, getOpportunity, getOpportunityCategorySources, getOpportunityCustomFields, getOpportunityFavouriteFilters, getOpportunityFiles, getOpportunityPipelineSteps, getOpportunityPipelines, getOpportunitySmartTags, getOpportunitySources, getOrder, getOrderCustomFields, getOrderFavouriteFilters, getOrderFiles, getOrderPayments, getOrderSmartTags, getOrders, getPayment, getPaymentMethod, getPaymentMethods, getPaymentTerms, getPayments, getPhoneCall, getPhoneCalls, getPrimes, getProfiles, getProposalDocument, getProposalModel, getProposalsModels, getQuotas, getRateCategories, getRateCategory, getScopes, getScopesTree, getStaff, getStaffs, getSubscription, getSubscriptions, getSubscriptionsPaymentInstallments, getSystemEmailTemplateWithContent, getTask, getTasks, getTasksLabels, getTax, getTaxAccountingChart, getTaxes, getTaxesAccountingCharts, getTeams, getUnits, getWebhook, getWebhookEvents, getWebhooks, linkCompanyContact, linkCompanySmartTags, linkContactSmartTags, linkCreditNoteDiscountInclTaxes, linkCreditNotePayment, linkCreditNotePrime, linkCreditNoteSmartTags, linkCreditNoteToInvoice, linkDepositInvoicePayment, linkDepositInvoiceSmartTags, linkEstimateDiscountInclTaxes, linkEstimatePayment, linkEstimatePrime, linkEstimateSmartTags, linkIndividualContact, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDeliveries, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchMandates, searchModels, searchNotifications, searchOcrPurInvoice, searchOpportunities, searchOpportunityPipelineSteps, searchOpportunityPipelines, searchOpportunitySources, searchOrders, searchPaymentMethods, searchPayments, searchPhoneCalls, searchProposalsModels, searchStaffs, searchSubscriptions, searchSubscriptionsPaymentInstallments, searchTasks, searchTaxes, searchTimeline, searchWebhooks, sendEmail, unlinkCompanyContact, unlinkCreditNoteDiscountInclTaxes, unlinkCreditNoteInvoices, unlinkCreditNotePayment, unlinkCreditNotePrime, unlinkDepositInvoicePayment, unlinkEstimateDiscountInclTaxes, unlinkEstimatePayment, unlinkEstimatePrime, unlinkIndividualContact, unlinkInvoiceDiscountInclTaxes, unlinkInvoicePayment, unlinkInvoicePrime, unlinkInvoicesCreditNote, unlinkOrderDiscountInclTaxes, unlinkOrderPayment, unlinkOrderPrime, updateCalendarEvent, updateComment, updateCompany, updateCompanyAddress, updateCompanyContact, updateCompanyCustomFields, updateContact, updateContactAddress, updateContactCustomFields, updateCreditNote, updateCreditNoteCustomFields, updateDepositInvoice, updateDepositInvoiceCustomFields, updateDirectory, updateDiscountInclTaxes, updateEstimate, updateEstimateCustomFields, updateEstimateStatus, updateIndividual, updateIndividualAddress, updateIndividualCustomFields, updateInvoice, updateInvoiceCustomFields, updateItem, updateModel, updateOpportunity, updateOpportunityCustomFields, updateOpportunityRank, updateOrder, updateOrderCustomFields, updatePhoneCall, updateProgressInvoice, updateRateCategory, updateStaff, updateTask, updateTax, updateTaxAccountingChart, updateWebhook, uploadCompanyFile, uploadContactFile, uploadCreditNoteFile, uploadDepositInvoiceFile, uploadDirectoryFile, uploadEmailAttachment, uploadEstimateFile, uploadIndividualFile, uploadInvoiceFile, uploadOpportunityFile, uploadOrderFile, validateCreditNote, validateDepositInvoice, validateEmailDomainDns, validateInvoice };
|
|
55622
|
+
export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, BackupCodeSchema, BackupCodesSchema, BankAccountSchema, BankAccountWritableSchema, BarcodeReadItemSchema, BatchUnitInputSchema, CalendarEventCreateItemSchema, CalendarEventFiltersSchema, CalendarEventItemSchema, CalendarEventItemWritableSchema, CalendarEventOrder, CalendarEventUpdateItemSchema, CheckLabelOrders, CheckLabelSchema, ClientCreateSchema, ClientCreateWritableSchema, ClientSchema, ClientUpdateSchema, ClientUpdateWritableSchema, ClientWSecretSchema, ClientWSecretWritableSchema, ClientWritableSchema, CommentCreateItemSchema, CommentFiltersSchema, CommentItemSchema, CommentItemWritableSchema, CommentOrder, CommentUpdateItemSchema, CompanyPreferencesSchema, CompanyPreferencesWritableSchema, ComputedProgresssInvoiceSchema, ConsentMarketingSettingsInputSchema, ConsentSettingsInputSchema, ConsentSettingsOuputSchema, ContactCollectionItemSchema, ContactCollectionItemWritableSchema, ContactCreateItemSchema, ContactCreateItemWritableSchema, ContactFiltersSchema, ContactItemSchema, ContactItemWritableSchema, ContactOrders, ContactUpdateItemSchema, ContactUpdateItemWritableSchema, CorporationSubscriptionSchema, CountrySchema, CreateDirectorySchema, CreateItemSchema, CreateModelSchema, CreateModelWritableSchema, CreatePaymentSchema, CreditNoteComputeSchema, CreditNoteComputeWritableSchema, CreditNoteCreateSchema, CreditNoteCreateWritableSchema, CreditNoteFiltersSchema, CreditNoteOneSchema, CreditNoteOneWritableSchema, CreditNoteOrder, CreditNoteSchema, CreditNoteUpdateSchema, CreditNoteUpdateWritableSchema, CreditNoteValidateSchema, CreditNoteWritableSchema, CrmActivityAggregationsSchema, CrmActivityFiltersSchema, CrmActivityMetasSchema, CrmActivityMetasWritableSchema, CrmActivityOrder, CrmActivitySchema, CrmActivityWritableSchema, CurrencySchema, CurrencyWritableSchema, CustomActivityCreateSchema, CustomActivityCreateWritableSchema, CustomActivityFiltersSchema, CustomActivityOrder, CustomActivitySchema, CustomActivityTypeSchema, CustomActivityTypeWritableSchema, CustomActivityWritableSchema, DealsActivityOrder, DealsBatchSchema, DealsFiltersSchema, DealsSchema, DealsWritableSchema, DeclinationReadSchema, DeliveryFiltersSchema, DeliveryOneSchema, DeliveryOneWritableSchema, DeliveryOrder, DeliverySchema, DeliveryWritableSchema, DepositInvoiceCreateSchema, DepositInvoiceCreateWritableSchema, DepositInvoiceFilterSchema, DepositInvoiceOneSchema, DepositInvoiceOneWritableSchema, DepositInvoicePrepareInputSchema, DepositInvoicePrepareOutputSchema, DepositInvoiceUpdateSchema, DepositInvoiceUpdateWritableSchema, Direction, DiscountInclTaxesDocumentInputSchema, DiscountInclTaxesInputSchema, DiscountInclTaxesOutputSchema, DiscountInclTaxesOutputWritableSchema, DocumentLayoutsCollectionSchema, EInvoicingMandateInputSchema, EInvoicingMandateInputWritableSchema, EInvoicingMandateSchema, EmailAttachmentOutputSchema, EmailAuthenticationItemSchema, EmailEngineItemSchema, EmailEngineItemWritableSchema, EmailItemSchema, EmailItemWritableSchema, EmailProviderMessageSchema, EmailProviderMessageWritableSchema, EmailProviderThreadSchema, EmailProviderThreadUpdateSchema, EmailRecipientSearchOutputSchema, EmailRecipientSearchOutputWritableSchema, EmailRecipientSuggestionOutputSchema, EmailRecipientsOutputSchema, EmailSendBodySchema, EmailSettingsInputSchema, EmailSettingsSchema, EmailTemplateCreateInputSchema, EmailTemplateInputSchema, EmailTemplateItemOutputSchema, EmailTemplateItemOutputWritableSchema, EmailTemplateListItemOutputSchema, EmailTemplateOutputSchema, EmailTemplateOutputWritableSchema, EmailTemplateUpdateInputSchema, EmailValidationItemSchema, EmailVerificationInputSchema, EmailVerificationValidateInputSchema, EmailVerificationValidateOutputSchema, EmailsListOrder, ErrorSchema, EsignSettingsSchema, EstimateAggregationsSchema, EstimateCollectionSchema, EstimateCollectionWritableSchema, EstimateComputeSchema, EstimateComputeWritableSchema, EstimateCreateSchema, EstimateCreateWritableSchema, EstimateFiltersSchema, EstimateOneEmbedSchema, EstimateOneEmbedWritableSchema, EstimateOneSchema, EstimateOneWritableSchema, EstimateSchema, EstimateStatusUpdateSchema, EstimateUpdateSchema, EstimateUpdateWritableSchema, EstimateWritableSchema, ExportParamsSchema, FavouriteFiltersOrder, FavouriteFiltersSchema, FileOutputSchema, FileOutputWritableSchema, FiscalYearSchema, GenerateBackupCodeInputSchema, ImportModelSchema, ImportPrepareInputSchema, ImportStartInputSchema, ImportType, ImportValidateInputSchema, IndividualPreferencesSchema, IndividualPreferencesWritableSchema, InvoiceComputeSchema, InvoiceComputeWritableSchema, InvoiceCreateSchema, InvoiceCreateWritableSchema, InvoiceFiltersSchema, InvoiceOneSchema, InvoiceOneWritableSchema, InvoiceOrProgressInvoiceOneSchema, InvoiceOrProgressInvoiceOneWritableSchema, InvoiceOrder, InvoiceSchema, InvoiceUpdateSchema, InvoiceUpdateWritableSchema, InvoiceWritableSchema, InvoicingConformityStateSchema, InvoicingConformityStateWritableSchema, InvoicingPaymentSchema, InvoicingSearchFiltersSchema, InvoicingSearchSchema, ItemInputPriceSchema, ItemOrder, ItemPriceSchema, ItemReadItemSchema, LabelBaseItemSchema, LabelBaseItemWritableSchema, LabelOrder, LabelSchema, LabelWritableSchema, Language, LanguageCollectionSchema, LicenseEditSchema, LicenseReadSchema, LinkCompanyContactSchema, LinkPaymentToDocumentSchema, ListFilesOutputSchema, ListFilesOutputWritableSchema, ListingUserContextSchema, MailchimpSettingsSchema, MailjetSettingsSchema, MarketingAttributeDiffOutputSchema, MarketingAttributeInputSchema, MarketingAttributeOutputSchema, MarketingProvidersSchema, ModelOneSchema, ModelOneWritableSchema, ModelOrder, ModelSchema, ModelWritableSchema, MoveFileInputSchema, NotificationFiltersSchema, NotificationMarkAsReadSchema, NotificationMetadataSchema, NotificationSchema, NotificationSettingsInputSchema, NotificationSettingsOutputSchema, NotificationWritableSchema, ObjectiveCollectionOutputSchema, ObjectiveCollectionOutputWritableSchema, ObjectiveComputeTurnoverInputSchema, ObjectiveComputeTurnoverOutputSchema, ObjectiveMetadataSchema, ObjectiveMetadataUpsellSchema, ObjectiveOrder, ObjectiveOutputSchema, ObjectiveSearchInputSchema, ObjectiveTurnoverInputSchema, ObjectiveTurnoverUpdateInputSchema, OcrOrder, OcrPurInvoiceMetasSchema, OcrSchema, OcrWritableSchema, OnboardingScreenOutputSchema, OpportunitiesAggregationsSchema, OpportunitiesCategoryItemSchema, OpportunitiesCategoryItemWritableSchema, OpportunityCreateSchema, OpportunityFiltersSchema, OpportunityItemSchema, OpportunityItemWritableSchema, OpportunityOrder, OpportunityPatchSchema, OpportunityPipelineCollectionItemSchema, OpportunityPipelineCollectionItemWritableSchema, OpportunityPipelineFiltersSchema, OpportunityPipelineOrder, OpportunityRankUpdateSchema, OpportunitySourceCollectionItemSchema, OpportunitySourceCollectionItemWritableSchema, OpportunitySourceFiltersSchema, OpportunitySourceOrder, OpportunityUpdateSchema, OrderComputeSchema, OrderComputeWritableSchema, OrderCreateSchema, OrderCreateWritableSchema, OrderFiltersSchema, OrderOneSchema, OrderOneWritableSchema, OrderOrder, OrderSchema, OrderUpdateSchema, OrderUpdateWritableSchema, OrderWritableSchema, OwnerSchema, PaginationSchema, PartialEmailHeaderSchema, PaymentMethodOrder, PaymentMethodSchema, PaymentMethodWritableSchema, PaymentProviderSchema, PaymentSchema, PaymentTermSchema, PaymentWritableSchema, PersonalAccessTokenCreateItemSchema, PersonalAccessTokenItemSchema, PersonalAccessTokenMetasSchema, PersonalAccessTokenMetasWritableSchema, PhoneCallCollectionItemSchema, PhoneCallCollectionItemWritableSchema, PhoneCallCreateItemSchema, PhoneCallFilterSchema, PhoneCallItemSchema, PhoneCallItemWritableSchema, PhoneCallOrder, PhoneCallUpdateItemSchema, PipelineStepFiltersSchema, PipelineStepOrder, PredictPlanSchema, ProfileOrder, ProfilesSchema, ProgressInvoiceComputeSchema, ProgressInvoiceComputeWritableSchema, ProgressInvoiceCreateSchema, ProgressInvoiceCreateWritableSchema, ProgressInvoiceDocType, ProgressInvoiceMetadataSchema, ProgressInvoiceMetadataWritableSchema, ProgressInvoiceOneSchema, ProgressInvoiceOneWritableSchema, ProgressInvoiceUpdateSchema, ProgressInvoiceUpdateWritableSchema, ProposalDocumentSchema, ProposalDocumentWritableSchema, ProposalModelSchema, ProposalModelWritableSchema, QuotasSchema, RateCategoryMetadataSchema, RelatedSchema, ReportAggregationSchema, ReportSchema, ReportWritableSchema, SaleEmbedSchema, SaleEmbedWritableSchema, SaleOrder, ScanFetchSchema, ScanListSchema, SearchResultAggregationsSchema, SearchResultBaseItemSchema, SearchResultBaseItemWritableSchema, SearchResultSchema, SearchResultWritableSchema, SocialSchema, StaffAclSchema, StaffAutocompleteResultItemSchema, StaffAutocompleteResultItemWritableSchema, StaffCreateItemSchema, StaffFiltersSchema, StaffOrder, StaffPreferencesSchema, StaffPreferencesWritableSchema, StaffRestrictedViewSchema, StaffRestrictedViewWritableSchema, StaffSchema, StaffUpdateItemSchema, StaffWritableSchema, StancerSettingsSchema, SubscriptionCreateSchema, SubscriptionOneSchema, SubscriptionSchema, TaskCollectionItemSchema, TaskCollectionItemWritableSchema, TaskCreateItemSchema, TaskFilterSchema, TaskItemSchema, TaskItemWritableSchema, TaskOrder, TaskUpdateItemSchema, TaxFilterSchema, TaxSettingsInputSchema, TaxSettingsOutputSchema, TaxesMetadataSchema, TeamSchema, TeamWritableSchema, TwoFactorAuthenticationSettingsInputSchema, TwoFactorAuthenticationSettingsSchema, TwoFactorAuthenticationSettingsWritableSchema, UnitOrder, UnitSchema, UnitSuggestionInputSchema, UnitSuggestionOutputSchema, UnitWritableSchema, UnitsSettingsSchema, UpdateCompanyPreferencesSchema, UpdateDirectorySchema, UpdateDiscountInclTaxesSchema, UpdateIndividualPreferencesSchema, UpdateItemSchema, UpdateLinkCompanyContactSchema, UploadFileInputSchema, UserTwoFactorAuthenticationSettingsSchema, UserUpdateTwoFactorAuthenticationSettingsResponseSchema, UserUpdateTwoFactorAuthenticationSettingsSchema, ValidateInvoiceSchema, WarehouseSchema, WarehouseWritableSchema, WebhookCreateItemSchema, WebhookEditItemSchema, WebhookEventsListSchema, WebhookFiltersSchema, WebhookReadItemSchema, activateInvoicingConformity, autocompleteSmartTags, buildClientParams, cancelEsignEstimate, cancelEsignOrder, cancelEsignProposalDocument, client, computeCreditNote, computeEstimate, computeInvoice, computeOrder, computeProgressInvoice, convertCompany, convertIndividual, convertModel, corporationStaffAggregationSchema, corporationStaffAggregationWritableSchema, createAccountingCode, createBatch, createCalendarEvent, createClient, createClientWithApiKey, createComment, createCompany, createCompanyAddress, createCompanyPayment, createConfig, createContact, createContactAddress, createCreditNote, createDepositInvoice, createDirectory, createDiscountInclTaxes, createEsignEstimate, createEsignOrder, createEsignProposalDocument, createEstimate, createIndividual, createIndividualAddress, createIndividualPayment, createInvoice, createItem, createModel, createOpportunity, createOrder, createPhoneCall, createProgressInvoice, createRateCategory, createStaff, createSubscription, createTask, createTax, createWebhook, deleteAccountingCode, deleteCalendarEvent, deleteClients, deleteComment, deleteCompany, deleteCompanyAddress, deleteContact, deleteContactAddress, deleteCustomActivitiesId, deleteDirectory, deleteDiscountInclTaxes, deleteFile, deleteIndividual, deleteIndividualAddress, deleteItem, deleteNotification, deleteOpportunity, deletePayment, deletePhoneCall, deleteRateCategory, deleteSmartTags, deleteStaffLicenses, deleteSubscription, deleteTask, deleteTax, deleteWebhook, exportAccountingJournal, exportCrmActivities, fetchClients, generateProposalDocument, getAccountSubscription, getAccountingChartsSettings, getAccountingCodes, getAccountingJournal, getAccountsDocuments, getAddresses, getAssignedStaffLabels, getBankAccounts, getCalendarEvent, getCalendarEvents, getCalendarEventsLabels, getCheckLabels, getComment, getComments, getCompanies, getCompany, getCompanyAddress, getCompanyAddresses, getCompanyContacts, getCompanyCustomFields, getCompanyFavouriteFilters, getCompanyFiles, getCompanySmartTags, getContact, getContactAddress, getContactAddresses, getContactCompanies, getContactCustomFields, getContactFavouriteFilters, getContactFiles, getContactSmartTags, getContacts, getCountries, getCreditNote, getCreditNoteCustomFields, getCreditNoteFavouriteFilters, getCreditNoteFiles, getCreditNoteInvoices, getCreditNotePayments, getCreditNoteSmartTags, getCreditNotes, getCrmActivities, getCurrencies, getCustomActivities, getCustomActivitiesId, getCustomActivityTypes, getCustomActivityTypesId, getCustomField, getCustomFields, getDeliveries, getDelivery, getDepositInvoice, getDepositInvoiceCreditNotes, getDepositInvoiceCustomFields, getDepositInvoiceFiles, getDepositInvoicePayments, getDepositInvoiceSmartTags, getDepositInvoices, getDirectory, getDirectoryFiles, getDiscountInclTaxes, getDiscountsInclTaxes, getDocumentLayouts, getEmail, getEmailDomainDnsData, getEmailSettings, getEmailSignatureTags, getEmailTemplate, getEmailTemplateTags, getEmailTemplateWithContent, getEmailTemplates, getEmailThread, getEsignEstimate, getEsignOrder, getEsignProposalDocument, getEstimate, getEstimateCustomFields, getEstimateFavouriteFilters, getEstimateFiles, getEstimatePayments, getEstimateSmartTags, getEstimates, getFile, getFiscalYears, getIndividual, getIndividualAddress, getIndividualAddresses, getIndividualContacts, getIndividualCustomFields, getIndividualFavouriteFilters, getIndividualFiles, getIndividualSmartTags, getIndividuals, getInvoice, getInvoiceCreditNotes, getInvoiceCustomFields, getInvoiceFavouriteFilters, getInvoiceFiles, getInvoicePayments, getInvoiceSmartTags, getInvoices, getInvoicingConformityState, getItem, getItemDeclinationPrices, getItemDeclinations, getItemFavouriteFilters, getItemPrices, getItems, getLanguages, getMandates, getModel, getModelTags, getModels, getNotifications, getNotificationsSettings, getOcrPurInvoice, getOcrPurInvoiceMetas, getOpportunities, getOpportunitiesCategories, getOpportunitiesCategory, getOpportunity, getOpportunityCategorySources, getOpportunityCustomFields, getOpportunityFavouriteFilters, getOpportunityFiles, getOpportunityPipelineSteps, getOpportunityPipelines, getOpportunitySmartTags, getOpportunitySources, getOrder, getOrderCustomFields, getOrderFavouriteFilters, getOrderFiles, getOrderPayments, getOrderSmartTags, getOrders, getPayment, getPaymentMethod, getPaymentMethods, getPaymentTerms, getPayments, getPhoneCall, getPhoneCalls, getPrimes, getProfiles, getProposalDocument, getProposalModel, getProposalsModels, getQuotas, getRateCategories, getRateCategory, getScopes, getScopesTree, getStaff, getStaffs, getSubscription, getSubscriptions, getSubscriptionsPaymentInstallments, getSystemEmailTemplateWithContent, getTask, getTasks, getTasksLabels, getTax, getTaxAccountingChart, getTaxes, getTaxesAccountingCharts, getTeams, getUnits, getWebhook, getWebhookEvents, getWebhooks, linkCompanyContact, linkCompanySmartTags, linkContactSmartTags, linkCreditNoteDiscountInclTaxes, linkCreditNotePayment, linkCreditNotePrime, linkCreditNoteSmartTags, linkCreditNoteToInvoice, linkDepositInvoicePayment, linkDepositInvoiceSmartTags, linkEstimateDiscountInclTaxes, linkEstimatePayment, linkEstimatePrime, linkEstimateSmartTags, linkIndividualContact, linkIndividualSmartTags, linkInvoiceDiscountInclTaxes, linkInvoicePayment, linkInvoicePrime, linkInvoiceSmartTags, linkInvoiceToCreditNote, linkOpportunitySmartTags, linkOrderDiscountInclTaxes, linkOrderPayment, linkOrderPrime, linkOrderSmartTags, listClients, markAllNotificationsAsRead, markNotificationAsRead, mergeHeaders, metaAccountingJournal, metaCrmActivities, moveFile, patchOpportunity, patchSubscriptionPaymentInstallment, postCustomActivities, postCustomActivitiesSearch, postCustomActivityTypes, prepareDepositInvoice, purCreditNoteOneSchema, purCreditNoteOneWritableSchema, purDeliveryOneSchema, purDeliveryOneWritableSchema, purInvoiceOneSchema, purInvoiceOneWritableSchema, purOrderOneSchema, purOrderOneWritableSchema, putAccountingChartsSettings, putCustomActivitiesId, putCustomActivityTypesId, putEmailSettings, putItemPrices, putNotificationsSettings, putStaffLicenses, quickCreateDepositInvoice, search, searchAccountingCodes, searchAccountingJournal, searchActivities, searchAllOpportunityPipelineSteps, searchBarcodes, searchCalendarEvents, searchComments, searchCompanies, searchContacts, searchCreditNotes, searchCrmActivities, searchCustomFields, searchDeliveries, searchDepositInvoices, searchEstimates, searchIndividuals, searchInvoices, searchItemDeclinations, searchItems, searchMandates, searchModels, searchNotifications, searchOcrPurInvoice, searchOpportunities, searchOpportunityPipelineSteps, searchOpportunityPipelines, searchOpportunitySources, searchOrders, searchPaymentMethods, searchPayments, searchPhoneCalls, searchProposalsModels, searchStaffs, searchSubscriptions, searchSubscriptionsPaymentInstallments, searchTasks, searchTaxes, searchTimeline, searchWebhooks, sendEmail, unlinkCompanyContact, unlinkCreditNoteDiscountInclTaxes, unlinkCreditNoteInvoices, unlinkCreditNotePayment, unlinkCreditNotePrime, unlinkDepositInvoicePayment, unlinkEstimateDiscountInclTaxes, unlinkEstimatePayment, unlinkEstimatePrime, unlinkIndividualContact, unlinkInvoiceDiscountInclTaxes, unlinkInvoicePayment, unlinkInvoicePrime, unlinkInvoicesCreditNote, unlinkOrderDiscountInclTaxes, unlinkOrderPayment, unlinkOrderPrime, updateCalendarEvent, updateComment, updateCompany, updateCompanyAddress, updateCompanyContact, updateCompanyCustomFields, updateContact, updateContactAddress, updateContactCustomFields, updateCreditNote, updateCreditNoteCustomFields, updateDepositInvoice, updateDepositInvoiceCustomFields, updateDirectory, updateDiscountInclTaxes, updateEstimate, updateEstimateCustomFields, updateEstimateStatus, updateIndividual, updateIndividualAddress, updateIndividualCustomFields, updateInvoice, updateInvoiceCustomFields, updateItem, updateModel, updateOpportunity, updateOpportunityCustomFields, updateOpportunityRank, updateOrder, updateOrderCustomFields, updatePhoneCall, updateProgressInvoice, updateRateCategory, updateStaff, updateTask, updateTax, updateTaxAccountingChart, updateWebhook, uploadCompanyFile, uploadContactFile, uploadCreditNoteFile, uploadDepositInvoiceFile, uploadDirectoryFile, uploadEmailAttachment, uploadEstimateFile, uploadIndividualFile, uploadInvoiceFile, uploadOpportunityFile, uploadOrderFile, validateCreditNote, validateDepositInvoice, validateEmailDomainDns, validateInvoice };
|
|
55238
55623
|
//# sourceMappingURL=index.mjs.map
|