bexio 4.0.1 → 4.0.2
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/lib/index.d.mts +48 -48
- package/lib/index.d.ts +48 -48
- package/lib/index.js.map +1 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -176,64 +176,64 @@ declare namespace ContactsStatic {
|
|
|
176
176
|
profile_image: string;
|
|
177
177
|
}
|
|
178
178
|
interface ContactCreate {
|
|
179
|
-
nr?: string;
|
|
179
|
+
nr?: string | null;
|
|
180
180
|
name_1: string;
|
|
181
181
|
user_id: number;
|
|
182
|
-
country_id?: number;
|
|
182
|
+
country_id?: number | null;
|
|
183
183
|
owner_id: number;
|
|
184
184
|
contact_type_id: number;
|
|
185
|
-
contact_group_ids?: Array<number
|
|
186
|
-
name_2?: string;
|
|
187
|
-
salutation_id?: number;
|
|
188
|
-
salutation_form?: number;
|
|
189
|
-
title_id?: number;
|
|
190
|
-
birthday?: string;
|
|
191
|
-
street_name?: string;
|
|
192
|
-
house_number?: string;
|
|
193
|
-
address_addition?: string;
|
|
194
|
-
postcode?: string;
|
|
195
|
-
city?: string;
|
|
196
|
-
mail?: string;
|
|
197
|
-
mail_second?: string;
|
|
198
|
-
phone_fixed?: string;
|
|
199
|
-
phone_fixed_second?: string;
|
|
200
|
-
phone_mobile?: string;
|
|
201
|
-
fax?: string;
|
|
202
|
-
url?: string;
|
|
203
|
-
skype_name?: string;
|
|
204
|
-
remarks?: string;
|
|
205
|
-
language_id?: number;
|
|
206
|
-
contact_branch_ids?: string;
|
|
185
|
+
contact_group_ids?: Array<number> | null;
|
|
186
|
+
name_2?: string | null;
|
|
187
|
+
salutation_id?: number | null;
|
|
188
|
+
salutation_form?: number | null;
|
|
189
|
+
title_id?: number | null;
|
|
190
|
+
birthday?: string | null;
|
|
191
|
+
street_name?: string | null;
|
|
192
|
+
house_number?: string | null;
|
|
193
|
+
address_addition?: string | null;
|
|
194
|
+
postcode?: string | null;
|
|
195
|
+
city?: string | null;
|
|
196
|
+
mail?: string | null;
|
|
197
|
+
mail_second?: string | null;
|
|
198
|
+
phone_fixed?: string | null;
|
|
199
|
+
phone_fixed_second?: string | null;
|
|
200
|
+
phone_mobile?: string | null;
|
|
201
|
+
fax?: string | null;
|
|
202
|
+
url?: string | null;
|
|
203
|
+
skype_name?: string | null;
|
|
204
|
+
remarks?: string | null;
|
|
205
|
+
language_id?: number | null;
|
|
206
|
+
contact_branch_ids?: string | null;
|
|
207
207
|
}
|
|
208
208
|
interface ContactOverwrite {
|
|
209
|
-
nr?: string;
|
|
209
|
+
nr?: string | null;
|
|
210
210
|
name_1: string;
|
|
211
211
|
user_id: number;
|
|
212
|
-
country_id?: number;
|
|
212
|
+
country_id?: number | null;
|
|
213
213
|
owner_id: number;
|
|
214
214
|
contact_type_id: number;
|
|
215
|
-
contact_group_ids?: Array<number
|
|
216
|
-
name_2?: string;
|
|
217
|
-
salutation_id?: number;
|
|
218
|
-
salutation_form?: number;
|
|
219
|
-
title_id?: number;
|
|
220
|
-
birthday?: string;
|
|
221
|
-
street_name?: string;
|
|
222
|
-
house_number?: string;
|
|
223
|
-
address_addition?: string;
|
|
224
|
-
postcode?: string;
|
|
225
|
-
city?: string;
|
|
226
|
-
mail?: string;
|
|
227
|
-
mail_second?: string;
|
|
228
|
-
phone_fixed?: string;
|
|
229
|
-
phone_fixed_second?: string;
|
|
230
|
-
phone_mobile?: string;
|
|
231
|
-
fax?: string;
|
|
232
|
-
url?: string;
|
|
233
|
-
skype_name?: string;
|
|
234
|
-
remarks?: string;
|
|
235
|
-
language_id?: number;
|
|
236
|
-
contact_branch_ids?: string;
|
|
215
|
+
contact_group_ids?: Array<number> | null;
|
|
216
|
+
name_2?: string | null;
|
|
217
|
+
salutation_id?: number | null;
|
|
218
|
+
salutation_form?: number | null;
|
|
219
|
+
title_id?: number | null;
|
|
220
|
+
birthday?: string | null;
|
|
221
|
+
street_name?: string | null;
|
|
222
|
+
house_number?: string | null;
|
|
223
|
+
address_addition?: string | null;
|
|
224
|
+
postcode?: string | null;
|
|
225
|
+
city?: string | null;
|
|
226
|
+
mail?: string | null;
|
|
227
|
+
mail_second?: string | null;
|
|
228
|
+
phone_fixed?: string | null;
|
|
229
|
+
phone_fixed_second?: string | null;
|
|
230
|
+
phone_mobile?: string | null;
|
|
231
|
+
fax?: string | null;
|
|
232
|
+
url?: string | null;
|
|
233
|
+
skype_name?: string | null;
|
|
234
|
+
remarks?: string | null;
|
|
235
|
+
language_id?: number | null;
|
|
236
|
+
contact_branch_ids?: string | null;
|
|
237
237
|
}
|
|
238
238
|
enum ContactSearchParameters {
|
|
239
239
|
id = "id",
|
package/lib/index.d.ts
CHANGED
|
@@ -176,64 +176,64 @@ declare namespace ContactsStatic {
|
|
|
176
176
|
profile_image: string;
|
|
177
177
|
}
|
|
178
178
|
interface ContactCreate {
|
|
179
|
-
nr?: string;
|
|
179
|
+
nr?: string | null;
|
|
180
180
|
name_1: string;
|
|
181
181
|
user_id: number;
|
|
182
|
-
country_id?: number;
|
|
182
|
+
country_id?: number | null;
|
|
183
183
|
owner_id: number;
|
|
184
184
|
contact_type_id: number;
|
|
185
|
-
contact_group_ids?: Array<number
|
|
186
|
-
name_2?: string;
|
|
187
|
-
salutation_id?: number;
|
|
188
|
-
salutation_form?: number;
|
|
189
|
-
title_id?: number;
|
|
190
|
-
birthday?: string;
|
|
191
|
-
street_name?: string;
|
|
192
|
-
house_number?: string;
|
|
193
|
-
address_addition?: string;
|
|
194
|
-
postcode?: string;
|
|
195
|
-
city?: string;
|
|
196
|
-
mail?: string;
|
|
197
|
-
mail_second?: string;
|
|
198
|
-
phone_fixed?: string;
|
|
199
|
-
phone_fixed_second?: string;
|
|
200
|
-
phone_mobile?: string;
|
|
201
|
-
fax?: string;
|
|
202
|
-
url?: string;
|
|
203
|
-
skype_name?: string;
|
|
204
|
-
remarks?: string;
|
|
205
|
-
language_id?: number;
|
|
206
|
-
contact_branch_ids?: string;
|
|
185
|
+
contact_group_ids?: Array<number> | null;
|
|
186
|
+
name_2?: string | null;
|
|
187
|
+
salutation_id?: number | null;
|
|
188
|
+
salutation_form?: number | null;
|
|
189
|
+
title_id?: number | null;
|
|
190
|
+
birthday?: string | null;
|
|
191
|
+
street_name?: string | null;
|
|
192
|
+
house_number?: string | null;
|
|
193
|
+
address_addition?: string | null;
|
|
194
|
+
postcode?: string | null;
|
|
195
|
+
city?: string | null;
|
|
196
|
+
mail?: string | null;
|
|
197
|
+
mail_second?: string | null;
|
|
198
|
+
phone_fixed?: string | null;
|
|
199
|
+
phone_fixed_second?: string | null;
|
|
200
|
+
phone_mobile?: string | null;
|
|
201
|
+
fax?: string | null;
|
|
202
|
+
url?: string | null;
|
|
203
|
+
skype_name?: string | null;
|
|
204
|
+
remarks?: string | null;
|
|
205
|
+
language_id?: number | null;
|
|
206
|
+
contact_branch_ids?: string | null;
|
|
207
207
|
}
|
|
208
208
|
interface ContactOverwrite {
|
|
209
|
-
nr?: string;
|
|
209
|
+
nr?: string | null;
|
|
210
210
|
name_1: string;
|
|
211
211
|
user_id: number;
|
|
212
|
-
country_id?: number;
|
|
212
|
+
country_id?: number | null;
|
|
213
213
|
owner_id: number;
|
|
214
214
|
contact_type_id: number;
|
|
215
|
-
contact_group_ids?: Array<number
|
|
216
|
-
name_2?: string;
|
|
217
|
-
salutation_id?: number;
|
|
218
|
-
salutation_form?: number;
|
|
219
|
-
title_id?: number;
|
|
220
|
-
birthday?: string;
|
|
221
|
-
street_name?: string;
|
|
222
|
-
house_number?: string;
|
|
223
|
-
address_addition?: string;
|
|
224
|
-
postcode?: string;
|
|
225
|
-
city?: string;
|
|
226
|
-
mail?: string;
|
|
227
|
-
mail_second?: string;
|
|
228
|
-
phone_fixed?: string;
|
|
229
|
-
phone_fixed_second?: string;
|
|
230
|
-
phone_mobile?: string;
|
|
231
|
-
fax?: string;
|
|
232
|
-
url?: string;
|
|
233
|
-
skype_name?: string;
|
|
234
|
-
remarks?: string;
|
|
235
|
-
language_id?: number;
|
|
236
|
-
contact_branch_ids?: string;
|
|
215
|
+
contact_group_ids?: Array<number> | null;
|
|
216
|
+
name_2?: string | null;
|
|
217
|
+
salutation_id?: number | null;
|
|
218
|
+
salutation_form?: number | null;
|
|
219
|
+
title_id?: number | null;
|
|
220
|
+
birthday?: string | null;
|
|
221
|
+
street_name?: string | null;
|
|
222
|
+
house_number?: string | null;
|
|
223
|
+
address_addition?: string | null;
|
|
224
|
+
postcode?: string | null;
|
|
225
|
+
city?: string | null;
|
|
226
|
+
mail?: string | null;
|
|
227
|
+
mail_second?: string | null;
|
|
228
|
+
phone_fixed?: string | null;
|
|
229
|
+
phone_fixed_second?: string | null;
|
|
230
|
+
phone_mobile?: string | null;
|
|
231
|
+
fax?: string | null;
|
|
232
|
+
url?: string | null;
|
|
233
|
+
skype_name?: string | null;
|
|
234
|
+
remarks?: string | null;
|
|
235
|
+
language_id?: number | null;
|
|
236
|
+
contact_branch_ids?: string | null;
|
|
237
237
|
}
|
|
238
238
|
enum ContactSearchParameters {
|
|
239
239
|
id = "id",
|