@getyetty-sdk/sellsy 2026.3.8 → 2026.3.15
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 +1835 -1121
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +465 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -18814,12 +18814,56 @@ const TwoFactorAuthenticationSettingsSchema = {
|
|
|
18814
18814
|
additionalProperties: false,
|
|
18815
18815
|
description: "",
|
|
18816
18816
|
"x-examples": {},
|
|
18817
|
-
properties: {
|
|
18818
|
-
|
|
18819
|
-
|
|
18820
|
-
|
|
18821
|
-
|
|
18822
|
-
|
|
18817
|
+
properties: {
|
|
18818
|
+
enabled: {
|
|
18819
|
+
type: "boolean",
|
|
18820
|
+
description: "Indicates if the two factor authentication is enabled",
|
|
18821
|
+
example: true,
|
|
18822
|
+
nullable: false
|
|
18823
|
+
},
|
|
18824
|
+
activation_scheduled_date: {
|
|
18825
|
+
type: "string",
|
|
18826
|
+
nullable: true,
|
|
18827
|
+
format: "date-time",
|
|
18828
|
+
description: "The date when the two factor authentication will be activated.",
|
|
18829
|
+
example: "2024-07-01T00:00:00Z"
|
|
18830
|
+
},
|
|
18831
|
+
activation_date: {
|
|
18832
|
+
nullable: true,
|
|
18833
|
+
readOnly: true,
|
|
18834
|
+
type: "string",
|
|
18835
|
+
format: "date-time",
|
|
18836
|
+
description: "The date when the two factor authentication was activated."
|
|
18837
|
+
},
|
|
18838
|
+
staff_id: {
|
|
18839
|
+
nullable: true,
|
|
18840
|
+
readOnly: true,
|
|
18841
|
+
type: "integer",
|
|
18842
|
+
description: "The id of the staff who activated the two factor authentication."
|
|
18843
|
+
}
|
|
18844
|
+
},
|
|
18845
|
+
required: ["enabled"]
|
|
18846
|
+
};
|
|
18847
|
+
const TwoFactorAuthenticationSettingsInputSchema = {
|
|
18848
|
+
title: "Two factor authentication settings",
|
|
18849
|
+
type: "object",
|
|
18850
|
+
additionalProperties: false,
|
|
18851
|
+
description: "",
|
|
18852
|
+
"x-examples": {},
|
|
18853
|
+
properties: {
|
|
18854
|
+
enabled: {
|
|
18855
|
+
type: "boolean",
|
|
18856
|
+
description: "Indicates if the two factor authentication is enabled",
|
|
18857
|
+
example: true,
|
|
18858
|
+
nullable: false
|
|
18859
|
+
},
|
|
18860
|
+
activation_scheduled_date: {
|
|
18861
|
+
type: "string",
|
|
18862
|
+
format: "date-time",
|
|
18863
|
+
description: "The date when the two factor authentication will be activated.",
|
|
18864
|
+
example: "2024-07-01T00:00:00Z"
|
|
18865
|
+
}
|
|
18866
|
+
},
|
|
18823
18867
|
required: ["enabled"]
|
|
18824
18868
|
};
|
|
18825
18869
|
const UserTwoFactorAuthenticationSettingsSchema = {
|
|
@@ -19047,6 +19091,39 @@ const UserUpdateTwoFactorAuthenticationSettingsResponseSchema = {
|
|
|
19047
19091
|
},
|
|
19048
19092
|
required: ["enabled", "providers"]
|
|
19049
19093
|
};
|
|
19094
|
+
const BackupCodeSchema = {
|
|
19095
|
+
title: "Two factor authentication backup code",
|
|
19096
|
+
description: "A single generated backup code",
|
|
19097
|
+
type: "object",
|
|
19098
|
+
additionalProperties: false,
|
|
19099
|
+
properties: {
|
|
19100
|
+
code: {
|
|
19101
|
+
type: "string",
|
|
19102
|
+
description: "Backup Code",
|
|
19103
|
+
example: "EB2F5E40",
|
|
19104
|
+
nullable: false
|
|
19105
|
+
},
|
|
19106
|
+
created_at: {
|
|
19107
|
+
type: "string",
|
|
19108
|
+
format: "date-time",
|
|
19109
|
+
example: "1970-01-01T00:00:00+00:00",
|
|
19110
|
+
description: "Creation date of the backup code",
|
|
19111
|
+
nullable: false
|
|
19112
|
+
},
|
|
19113
|
+
used_at: {
|
|
19114
|
+
type: "string",
|
|
19115
|
+
format: "date-time",
|
|
19116
|
+
example: "1970-01-01T00:00:00+00:00",
|
|
19117
|
+
description: "Usage date of the backup code",
|
|
19118
|
+
nullable: true
|
|
19119
|
+
}
|
|
19120
|
+
},
|
|
19121
|
+
required: [
|
|
19122
|
+
"code",
|
|
19123
|
+
"created_at",
|
|
19124
|
+
"used_at"
|
|
19125
|
+
]
|
|
19126
|
+
};
|
|
19050
19127
|
const BackupCodesSchema = {
|
|
19051
19128
|
title: "Two factor authentication backup codes",
|
|
19052
19129
|
description: "List of user's backup codes",
|
|
@@ -19085,6 +19162,20 @@ const BackupCodesSchema = {
|
|
|
19085
19162
|
]
|
|
19086
19163
|
}
|
|
19087
19164
|
};
|
|
19165
|
+
const GenerateBackupCodeInputSchema = {
|
|
19166
|
+
title: "Generate backup code input",
|
|
19167
|
+
description: "Input payload to generate a single backup code after TOTP verification",
|
|
19168
|
+
type: "object",
|
|
19169
|
+
additionalProperties: false,
|
|
19170
|
+
properties: { code: {
|
|
19171
|
+
type: "string",
|
|
19172
|
+
description: "6-digit TOTP code for verification",
|
|
19173
|
+
example: "123456",
|
|
19174
|
+
minLength: 6,
|
|
19175
|
+
maxLength: 6
|
|
19176
|
+
} },
|
|
19177
|
+
required: ["code"]
|
|
19178
|
+
};
|
|
19088
19179
|
const ScanListSchema = {
|
|
19089
19180
|
type: "array",
|
|
19090
19181
|
title: "Search results",
|
|
@@ -33732,6 +33823,190 @@ const TaxesMetadataSchema = {
|
|
|
33732
33823
|
}
|
|
33733
33824
|
}
|
|
33734
33825
|
};
|
|
33826
|
+
const purInvoiceOneSchema = {
|
|
33827
|
+
title: "Purchase invoice",
|
|
33828
|
+
allOf: [{
|
|
33829
|
+
title: "Purchase invoice",
|
|
33830
|
+
type: "object",
|
|
33831
|
+
properties: {
|
|
33832
|
+
id: {
|
|
33833
|
+
type: "integer",
|
|
33834
|
+
readOnly: true,
|
|
33835
|
+
description: "Purchase invoice ID",
|
|
33836
|
+
example: 33
|
|
33837
|
+
},
|
|
33838
|
+
number: {
|
|
33839
|
+
type: "string",
|
|
33840
|
+
description: "Purchase invoice number",
|
|
33841
|
+
example: "F_INV-20250916-00002"
|
|
33842
|
+
},
|
|
33843
|
+
related: {
|
|
33844
|
+
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",
|
|
33845
|
+
type: "array",
|
|
33846
|
+
minItems: 1,
|
|
33847
|
+
items: {
|
|
33848
|
+
type: "object",
|
|
33849
|
+
properties: {
|
|
33850
|
+
id: {
|
|
33851
|
+
type: "integer",
|
|
33852
|
+
description: "ID of the related",
|
|
33853
|
+
example: 234
|
|
33854
|
+
},
|
|
33855
|
+
type: {
|
|
33856
|
+
type: "string",
|
|
33857
|
+
description: "Type of the related",
|
|
33858
|
+
example: "company",
|
|
33859
|
+
enum: [
|
|
33860
|
+
"company",
|
|
33861
|
+
"individual",
|
|
33862
|
+
"opportunity",
|
|
33863
|
+
"contact"
|
|
33864
|
+
]
|
|
33865
|
+
}
|
|
33866
|
+
}
|
|
33867
|
+
}
|
|
33868
|
+
}
|
|
33869
|
+
}
|
|
33870
|
+
}]
|
|
33871
|
+
};
|
|
33872
|
+
const purCreditNoteOneSchema = {
|
|
33873
|
+
title: "Purchase credit note",
|
|
33874
|
+
allOf: [{
|
|
33875
|
+
title: "Purchase credit note",
|
|
33876
|
+
type: "object",
|
|
33877
|
+
properties: {
|
|
33878
|
+
id: {
|
|
33879
|
+
type: "integer",
|
|
33880
|
+
readOnly: true,
|
|
33881
|
+
description: "Purchase credit note ID",
|
|
33882
|
+
example: 33
|
|
33883
|
+
},
|
|
33884
|
+
number: {
|
|
33885
|
+
type: "string",
|
|
33886
|
+
description: "Purchase credit note number",
|
|
33887
|
+
example: "F_AVR-20250916-00002"
|
|
33888
|
+
},
|
|
33889
|
+
related: {
|
|
33890
|
+
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",
|
|
33891
|
+
type: "array",
|
|
33892
|
+
minItems: 1,
|
|
33893
|
+
items: {
|
|
33894
|
+
type: "object",
|
|
33895
|
+
properties: {
|
|
33896
|
+
id: {
|
|
33897
|
+
type: "integer",
|
|
33898
|
+
description: "ID of the related",
|
|
33899
|
+
example: 234
|
|
33900
|
+
},
|
|
33901
|
+
type: {
|
|
33902
|
+
type: "string",
|
|
33903
|
+
description: "Type of the related",
|
|
33904
|
+
example: "company",
|
|
33905
|
+
enum: [
|
|
33906
|
+
"company",
|
|
33907
|
+
"individual",
|
|
33908
|
+
"opportunity",
|
|
33909
|
+
"contact"
|
|
33910
|
+
]
|
|
33911
|
+
}
|
|
33912
|
+
}
|
|
33913
|
+
}
|
|
33914
|
+
}
|
|
33915
|
+
}
|
|
33916
|
+
}]
|
|
33917
|
+
};
|
|
33918
|
+
const purDeliveryOneSchema = {
|
|
33919
|
+
title: "Purchase delivery",
|
|
33920
|
+
allOf: [{
|
|
33921
|
+
title: "Purchase delivery",
|
|
33922
|
+
type: "object",
|
|
33923
|
+
properties: {
|
|
33924
|
+
id: {
|
|
33925
|
+
type: "integer",
|
|
33926
|
+
readOnly: true,
|
|
33927
|
+
description: "Purchase delivery ID",
|
|
33928
|
+
example: 33
|
|
33929
|
+
},
|
|
33930
|
+
number: {
|
|
33931
|
+
type: "string",
|
|
33932
|
+
description: "Purchase delivery number",
|
|
33933
|
+
example: "F_DEL-20250916-00002"
|
|
33934
|
+
},
|
|
33935
|
+
related: {
|
|
33936
|
+
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",
|
|
33937
|
+
type: "array",
|
|
33938
|
+
minItems: 1,
|
|
33939
|
+
items: {
|
|
33940
|
+
type: "object",
|
|
33941
|
+
properties: {
|
|
33942
|
+
id: {
|
|
33943
|
+
type: "integer",
|
|
33944
|
+
description: "ID of the related",
|
|
33945
|
+
example: 234
|
|
33946
|
+
},
|
|
33947
|
+
type: {
|
|
33948
|
+
type: "string",
|
|
33949
|
+
description: "Type of the related",
|
|
33950
|
+
example: "company",
|
|
33951
|
+
enum: [
|
|
33952
|
+
"company",
|
|
33953
|
+
"individual",
|
|
33954
|
+
"opportunity",
|
|
33955
|
+
"contact"
|
|
33956
|
+
]
|
|
33957
|
+
}
|
|
33958
|
+
}
|
|
33959
|
+
}
|
|
33960
|
+
}
|
|
33961
|
+
}
|
|
33962
|
+
}]
|
|
33963
|
+
};
|
|
33964
|
+
const purOrderOneSchema = {
|
|
33965
|
+
title: "Purchase order",
|
|
33966
|
+
allOf: [{
|
|
33967
|
+
title: "Purchase order",
|
|
33968
|
+
type: "object",
|
|
33969
|
+
properties: {
|
|
33970
|
+
id: {
|
|
33971
|
+
type: "integer",
|
|
33972
|
+
readOnly: true,
|
|
33973
|
+
description: "Purchase order ID",
|
|
33974
|
+
example: 33
|
|
33975
|
+
},
|
|
33976
|
+
number: {
|
|
33977
|
+
type: "string",
|
|
33978
|
+
description: "Purchase order number",
|
|
33979
|
+
example: "F_ORD-20250916-00002"
|
|
33980
|
+
},
|
|
33981
|
+
related: {
|
|
33982
|
+
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",
|
|
33983
|
+
type: "array",
|
|
33984
|
+
minItems: 1,
|
|
33985
|
+
items: {
|
|
33986
|
+
type: "object",
|
|
33987
|
+
properties: {
|
|
33988
|
+
id: {
|
|
33989
|
+
type: "integer",
|
|
33990
|
+
description: "ID of the related",
|
|
33991
|
+
example: 234
|
|
33992
|
+
},
|
|
33993
|
+
type: {
|
|
33994
|
+
type: "string",
|
|
33995
|
+
description: "Type of the related",
|
|
33996
|
+
example: "company",
|
|
33997
|
+
enum: [
|
|
33998
|
+
"company",
|
|
33999
|
+
"individual",
|
|
34000
|
+
"opportunity",
|
|
34001
|
+
"contact"
|
|
34002
|
+
]
|
|
34003
|
+
}
|
|
34004
|
+
}
|
|
34005
|
+
}
|
|
34006
|
+
}
|
|
34007
|
+
}
|
|
34008
|
+
}]
|
|
34009
|
+
};
|
|
33735
34010
|
const CreateModelWritableSchema = {
|
|
33736
34011
|
title: "Create model",
|
|
33737
34012
|
type: "object",
|
|
@@ -41656,6 +41931,29 @@ const WarehouseWritableSchema = {
|
|
|
41656
41931
|
}
|
|
41657
41932
|
}
|
|
41658
41933
|
};
|
|
41934
|
+
const TwoFactorAuthenticationSettingsWritableSchema = {
|
|
41935
|
+
title: "Two factor authentication settings",
|
|
41936
|
+
type: "object",
|
|
41937
|
+
additionalProperties: false,
|
|
41938
|
+
description: "",
|
|
41939
|
+
"x-examples": {},
|
|
41940
|
+
properties: {
|
|
41941
|
+
enabled: {
|
|
41942
|
+
type: "boolean",
|
|
41943
|
+
description: "Indicates if the two factor authentication is enabled",
|
|
41944
|
+
example: true,
|
|
41945
|
+
nullable: false
|
|
41946
|
+
},
|
|
41947
|
+
activation_scheduled_date: {
|
|
41948
|
+
type: "string",
|
|
41949
|
+
nullable: true,
|
|
41950
|
+
format: "date-time",
|
|
41951
|
+
description: "The date when the two factor authentication will be activated.",
|
|
41952
|
+
example: "2024-07-01T00:00:00Z"
|
|
41953
|
+
}
|
|
41954
|
+
},
|
|
41955
|
+
required: ["enabled"]
|
|
41956
|
+
};
|
|
41659
41957
|
const NotificationWritableSchema = {
|
|
41660
41958
|
title: "Notification",
|
|
41661
41959
|
type: "object",
|
|
@@ -48756,6 +49054,166 @@ const EInvoicingMandateInputWritableSchema = {
|
|
|
48756
49054
|
"person_type"
|
|
48757
49055
|
]
|
|
48758
49056
|
};
|
|
49057
|
+
const purInvoiceOneWritableSchema = {
|
|
49058
|
+
title: "Purchase invoice",
|
|
49059
|
+
allOf: [{
|
|
49060
|
+
title: "Purchase invoice",
|
|
49061
|
+
type: "object",
|
|
49062
|
+
properties: {
|
|
49063
|
+
number: {
|
|
49064
|
+
type: "string",
|
|
49065
|
+
description: "Purchase invoice number",
|
|
49066
|
+
example: "F_INV-20250916-00002"
|
|
49067
|
+
},
|
|
49068
|
+
related: {
|
|
49069
|
+
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",
|
|
49070
|
+
type: "array",
|
|
49071
|
+
minItems: 1,
|
|
49072
|
+
items: {
|
|
49073
|
+
type: "object",
|
|
49074
|
+
properties: {
|
|
49075
|
+
id: {
|
|
49076
|
+
type: "integer",
|
|
49077
|
+
description: "ID of the related",
|
|
49078
|
+
example: 234
|
|
49079
|
+
},
|
|
49080
|
+
type: {
|
|
49081
|
+
type: "string",
|
|
49082
|
+
description: "Type of the related",
|
|
49083
|
+
example: "company",
|
|
49084
|
+
enum: [
|
|
49085
|
+
"company",
|
|
49086
|
+
"individual",
|
|
49087
|
+
"opportunity",
|
|
49088
|
+
"contact"
|
|
49089
|
+
]
|
|
49090
|
+
}
|
|
49091
|
+
}
|
|
49092
|
+
}
|
|
49093
|
+
}
|
|
49094
|
+
}
|
|
49095
|
+
}]
|
|
49096
|
+
};
|
|
49097
|
+
const purCreditNoteOneWritableSchema = {
|
|
49098
|
+
title: "Purchase credit note",
|
|
49099
|
+
allOf: [{
|
|
49100
|
+
title: "Purchase credit note",
|
|
49101
|
+
type: "object",
|
|
49102
|
+
properties: {
|
|
49103
|
+
number: {
|
|
49104
|
+
type: "string",
|
|
49105
|
+
description: "Purchase credit note number",
|
|
49106
|
+
example: "F_AVR-20250916-00002"
|
|
49107
|
+
},
|
|
49108
|
+
related: {
|
|
49109
|
+
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",
|
|
49110
|
+
type: "array",
|
|
49111
|
+
minItems: 1,
|
|
49112
|
+
items: {
|
|
49113
|
+
type: "object",
|
|
49114
|
+
properties: {
|
|
49115
|
+
id: {
|
|
49116
|
+
type: "integer",
|
|
49117
|
+
description: "ID of the related",
|
|
49118
|
+
example: 234
|
|
49119
|
+
},
|
|
49120
|
+
type: {
|
|
49121
|
+
type: "string",
|
|
49122
|
+
description: "Type of the related",
|
|
49123
|
+
example: "company",
|
|
49124
|
+
enum: [
|
|
49125
|
+
"company",
|
|
49126
|
+
"individual",
|
|
49127
|
+
"opportunity",
|
|
49128
|
+
"contact"
|
|
49129
|
+
]
|
|
49130
|
+
}
|
|
49131
|
+
}
|
|
49132
|
+
}
|
|
49133
|
+
}
|
|
49134
|
+
}
|
|
49135
|
+
}]
|
|
49136
|
+
};
|
|
49137
|
+
const purDeliveryOneWritableSchema = {
|
|
49138
|
+
title: "Purchase delivery",
|
|
49139
|
+
allOf: [{
|
|
49140
|
+
title: "Purchase delivery",
|
|
49141
|
+
type: "object",
|
|
49142
|
+
properties: {
|
|
49143
|
+
number: {
|
|
49144
|
+
type: "string",
|
|
49145
|
+
description: "Purchase delivery number",
|
|
49146
|
+
example: "F_DEL-20250916-00002"
|
|
49147
|
+
},
|
|
49148
|
+
related: {
|
|
49149
|
+
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",
|
|
49150
|
+
type: "array",
|
|
49151
|
+
minItems: 1,
|
|
49152
|
+
items: {
|
|
49153
|
+
type: "object",
|
|
49154
|
+
properties: {
|
|
49155
|
+
id: {
|
|
49156
|
+
type: "integer",
|
|
49157
|
+
description: "ID of the related",
|
|
49158
|
+
example: 234
|
|
49159
|
+
},
|
|
49160
|
+
type: {
|
|
49161
|
+
type: "string",
|
|
49162
|
+
description: "Type of the related",
|
|
49163
|
+
example: "company",
|
|
49164
|
+
enum: [
|
|
49165
|
+
"company",
|
|
49166
|
+
"individual",
|
|
49167
|
+
"opportunity",
|
|
49168
|
+
"contact"
|
|
49169
|
+
]
|
|
49170
|
+
}
|
|
49171
|
+
}
|
|
49172
|
+
}
|
|
49173
|
+
}
|
|
49174
|
+
}
|
|
49175
|
+
}]
|
|
49176
|
+
};
|
|
49177
|
+
const purOrderOneWritableSchema = {
|
|
49178
|
+
title: "Purchase order",
|
|
49179
|
+
allOf: [{
|
|
49180
|
+
title: "Purchase order",
|
|
49181
|
+
type: "object",
|
|
49182
|
+
properties: {
|
|
49183
|
+
number: {
|
|
49184
|
+
type: "string",
|
|
49185
|
+
description: "Purchase order number",
|
|
49186
|
+
example: "F_ORD-20250916-00002"
|
|
49187
|
+
},
|
|
49188
|
+
related: {
|
|
49189
|
+
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",
|
|
49190
|
+
type: "array",
|
|
49191
|
+
minItems: 1,
|
|
49192
|
+
items: {
|
|
49193
|
+
type: "object",
|
|
49194
|
+
properties: {
|
|
49195
|
+
id: {
|
|
49196
|
+
type: "integer",
|
|
49197
|
+
description: "ID of the related",
|
|
49198
|
+
example: 234
|
|
49199
|
+
},
|
|
49200
|
+
type: {
|
|
49201
|
+
type: "string",
|
|
49202
|
+
description: "Type of the related",
|
|
49203
|
+
example: "company",
|
|
49204
|
+
enum: [
|
|
49205
|
+
"company",
|
|
49206
|
+
"individual",
|
|
49207
|
+
"opportunity",
|
|
49208
|
+
"contact"
|
|
49209
|
+
]
|
|
49210
|
+
}
|
|
49211
|
+
}
|
|
49212
|
+
}
|
|
49213
|
+
}
|
|
49214
|
+
}
|
|
49215
|
+
}]
|
|
49216
|
+
};
|
|
48759
49217
|
|
|
48760
49218
|
//#endregion
|
|
48761
49219
|
//#region src/generated/sdk.gen.ts
|
|
@@ -55120,5 +55578,5 @@ function createClientWithApiKey(apiKey) {
|
|
|
55120
55578
|
}
|
|
55121
55579
|
|
|
55122
55580
|
//#endregion
|
|
55123
|
-
export { AccountDocumentCollectionSchema, AccountDocumentCollectionWritableSchema, AccountDocumentOrder, AccountingAggregationsSchema, AccountingCodeCreateSchema, AccountingCodeSchema, AccountingCodeWritableSchema, AccountingJournalExportParamsSchema, AccountingJournalSchema, AccountingJournalWritableSchema, AccountingMetasSchema, AccountingOrder, ActivityFiltersSchema, ActivityOrder, ActivitySchema, ActivityWritableSchema, AddressCreateSchema, AddressSchema, AddressUpdateSchema, AddressWritableSchema, AdyenSettingsSchema, AssignedStaffLabelSchema, 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, 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, TwoFactorAuthenticationSettingsSchema, 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 };
|
|
55581
|
+
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 };
|
|
55124
55582
|
//# sourceMappingURL=index.mjs.map
|