@flowselections/floriday-voorraad 1.0.18 → 1.0.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-lib/integrations/supabase/auth-middleware.d.ts +115 -1
- package/dist-lib/integrations/supabase/auth-middleware.d.ts.map +1 -1
- package/dist-lib/integrations/supabase/client.d.ts +115 -1
- package/dist-lib/integrations/supabase/client.d.ts.map +1 -1
- package/dist-lib/integrations/supabase/client.server.d.ts +115 -1
- package/dist-lib/integrations/supabase/client.server.d.ts.map +1 -1
- package/dist-lib/integrations/supabase/types.d.ts +115 -1
- package/dist-lib/integrations/supabase/types.d.ts.map +1 -1
- package/dist-lib/lib/floricode-required-features.functions.d.ts +115 -1
- package/dist-lib/lib/floricode-required-features.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-customer-offer.functions.d.ts +115 -1
- package/dist-lib/lib/floriday-customer-offer.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-customer-offer.functions.js +53 -8
- package/dist-lib/lib/floriday-gateway.functions.d.ts +575 -5
- package/dist-lib/lib/floriday-gateway.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-warehouse.functions.d.ts +345 -3
- package/dist-lib/lib/floriday-warehouse.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-writes.functions.d.ts +230 -2
- package/dist-lib/lib/floriday-writes.functions.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -281,6 +281,9 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
281
281
|
created_at: string;
|
|
282
282
|
extra_id: string;
|
|
283
283
|
id: string;
|
|
284
|
+
original_unit_price: number | null;
|
|
285
|
+
override_reason: string | null;
|
|
286
|
+
override_unit_price: number | null;
|
|
284
287
|
quantity: number;
|
|
285
288
|
total_price: number;
|
|
286
289
|
unit_price: number;
|
|
@@ -290,6 +293,9 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
290
293
|
created_at?: string;
|
|
291
294
|
extra_id: string;
|
|
292
295
|
id?: string;
|
|
296
|
+
original_unit_price?: number | null;
|
|
297
|
+
override_reason?: string | null;
|
|
298
|
+
override_unit_price?: number | null;
|
|
293
299
|
quantity?: number;
|
|
294
300
|
total_price?: number;
|
|
295
301
|
unit_price?: number;
|
|
@@ -299,6 +305,9 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
299
305
|
created_at?: string;
|
|
300
306
|
extra_id?: string;
|
|
301
307
|
id?: string;
|
|
308
|
+
original_unit_price?: number | null;
|
|
309
|
+
override_reason?: string | null;
|
|
310
|
+
override_unit_price?: number | null;
|
|
302
311
|
quantity?: number;
|
|
303
312
|
total_price?: number;
|
|
304
313
|
unit_price?: number;
|
|
@@ -319,6 +328,9 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
319
328
|
};
|
|
320
329
|
bookings: {
|
|
321
330
|
Row: {
|
|
331
|
+
archive_reason: string | null;
|
|
332
|
+
archived_at: string | null;
|
|
333
|
+
archived_by: string | null;
|
|
322
334
|
company_name: string | null;
|
|
323
335
|
conflict_checked_at: string | null;
|
|
324
336
|
conflict_reason: string | null;
|
|
@@ -336,7 +348,12 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
336
348
|
invoiced_at: string | null;
|
|
337
349
|
notes: string | null;
|
|
338
350
|
number_of_people: number;
|
|
351
|
+
overridden_at: string | null;
|
|
352
|
+
overridden_by: string | null;
|
|
353
|
+
override_reason: string | null;
|
|
354
|
+
price_override: boolean;
|
|
339
355
|
room_id: string;
|
|
356
|
+
room_price_override: number | null;
|
|
340
357
|
start_time: string;
|
|
341
358
|
status: string;
|
|
342
359
|
total_excl_vat: number | null;
|
|
@@ -345,6 +362,9 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
345
362
|
vat_amount: number | null;
|
|
346
363
|
};
|
|
347
364
|
Insert: {
|
|
365
|
+
archive_reason?: string | null;
|
|
366
|
+
archived_at?: string | null;
|
|
367
|
+
archived_by?: string | null;
|
|
348
368
|
company_name?: string | null;
|
|
349
369
|
conflict_checked_at?: string | null;
|
|
350
370
|
conflict_reason?: string | null;
|
|
@@ -362,7 +382,12 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
362
382
|
invoiced_at?: string | null;
|
|
363
383
|
notes?: string | null;
|
|
364
384
|
number_of_people?: number;
|
|
385
|
+
overridden_at?: string | null;
|
|
386
|
+
overridden_by?: string | null;
|
|
387
|
+
override_reason?: string | null;
|
|
388
|
+
price_override?: boolean;
|
|
365
389
|
room_id: string;
|
|
390
|
+
room_price_override?: number | null;
|
|
366
391
|
start_time: string;
|
|
367
392
|
status?: string;
|
|
368
393
|
total_excl_vat?: number | null;
|
|
@@ -371,6 +396,9 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
371
396
|
vat_amount?: number | null;
|
|
372
397
|
};
|
|
373
398
|
Update: {
|
|
399
|
+
archive_reason?: string | null;
|
|
400
|
+
archived_at?: string | null;
|
|
401
|
+
archived_by?: string | null;
|
|
374
402
|
company_name?: string | null;
|
|
375
403
|
conflict_checked_at?: string | null;
|
|
376
404
|
conflict_reason?: string | null;
|
|
@@ -388,7 +416,12 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
388
416
|
invoiced_at?: string | null;
|
|
389
417
|
notes?: string | null;
|
|
390
418
|
number_of_people?: number;
|
|
419
|
+
overridden_at?: string | null;
|
|
420
|
+
overridden_by?: string | null;
|
|
421
|
+
override_reason?: string | null;
|
|
422
|
+
price_override?: boolean;
|
|
391
423
|
room_id?: string;
|
|
424
|
+
room_price_override?: number | null;
|
|
392
425
|
start_time?: string;
|
|
393
426
|
status?: string;
|
|
394
427
|
total_excl_vat?: number | null;
|
|
@@ -1217,8 +1250,27 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1217
1250
|
customers: {
|
|
1218
1251
|
Row: {
|
|
1219
1252
|
address: string | null;
|
|
1253
|
+
address_line1: string | null;
|
|
1254
|
+
address_line2: string | null;
|
|
1255
|
+
address_type: string | null;
|
|
1256
|
+
attention_to: string | null;
|
|
1257
|
+
bank_account_holder: string | null;
|
|
1258
|
+
bank_account_number: string | null;
|
|
1259
|
+
bank_address_line1: string | null;
|
|
1260
|
+
bank_address_line2: string | null;
|
|
1261
|
+
bank_bic: string | null;
|
|
1262
|
+
bank_city: string | null;
|
|
1263
|
+
bank_country: string | null;
|
|
1264
|
+
bank_house_number: string | null;
|
|
1265
|
+
bank_iban: string | null;
|
|
1266
|
+
bank_name: string | null;
|
|
1267
|
+
bank_national_code: string | null;
|
|
1268
|
+
bank_postal_code: string | null;
|
|
1269
|
+
bank_state: string | null;
|
|
1270
|
+
billing_email: string | null;
|
|
1220
1271
|
bio: string | null;
|
|
1221
1272
|
city: string | null;
|
|
1273
|
+
coc_number: string | null;
|
|
1222
1274
|
commercial_name: string | null;
|
|
1223
1275
|
company_name: string;
|
|
1224
1276
|
connection_status: string;
|
|
@@ -1227,21 +1279,28 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1227
1279
|
created_at: string;
|
|
1228
1280
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
1229
1281
|
customer_class: string | null;
|
|
1282
|
+
customer_number: string | null;
|
|
1283
|
+
discount_days: number | null;
|
|
1284
|
+
discount_percentage: number | null;
|
|
1230
1285
|
email: string | null;
|
|
1231
1286
|
external_id: string | null;
|
|
1287
|
+
fax: string | null;
|
|
1232
1288
|
floriday_connection_id: string | null;
|
|
1233
1289
|
floriday_organization_id: string | null;
|
|
1234
1290
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
1235
1291
|
gln: string | null;
|
|
1236
1292
|
house_number: string | null;
|
|
1293
|
+
icp_country_code: string | null;
|
|
1237
1294
|
id: string;
|
|
1238
1295
|
is_active: boolean;
|
|
1296
|
+
language: string | null;
|
|
1239
1297
|
last_synced_at: string | null;
|
|
1240
1298
|
logo_url: string | null;
|
|
1241
1299
|
markets: string[];
|
|
1242
1300
|
notes: string | null;
|
|
1243
1301
|
organization_type: string | null;
|
|
1244
1302
|
payment_methods: string[];
|
|
1303
|
+
payment_term_days: number | null;
|
|
1245
1304
|
phone: string | null;
|
|
1246
1305
|
postal_code: string | null;
|
|
1247
1306
|
product_groups: string[];
|
|
@@ -1252,13 +1311,33 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1252
1311
|
sync_status: string;
|
|
1253
1312
|
trade_forms: string[];
|
|
1254
1313
|
updated_at: string;
|
|
1314
|
+
vat_display: string | null;
|
|
1255
1315
|
vat_number: string | null;
|
|
1256
1316
|
website: string | null;
|
|
1257
1317
|
};
|
|
1258
1318
|
Insert: {
|
|
1259
1319
|
address?: string | null;
|
|
1320
|
+
address_line1?: string | null;
|
|
1321
|
+
address_line2?: string | null;
|
|
1322
|
+
address_type?: string | null;
|
|
1323
|
+
attention_to?: string | null;
|
|
1324
|
+
bank_account_holder?: string | null;
|
|
1325
|
+
bank_account_number?: string | null;
|
|
1326
|
+
bank_address_line1?: string | null;
|
|
1327
|
+
bank_address_line2?: string | null;
|
|
1328
|
+
bank_bic?: string | null;
|
|
1329
|
+
bank_city?: string | null;
|
|
1330
|
+
bank_country?: string | null;
|
|
1331
|
+
bank_house_number?: string | null;
|
|
1332
|
+
bank_iban?: string | null;
|
|
1333
|
+
bank_name?: string | null;
|
|
1334
|
+
bank_national_code?: string | null;
|
|
1335
|
+
bank_postal_code?: string | null;
|
|
1336
|
+
bank_state?: string | null;
|
|
1337
|
+
billing_email?: string | null;
|
|
1260
1338
|
bio?: string | null;
|
|
1261
1339
|
city?: string | null;
|
|
1340
|
+
coc_number?: string | null;
|
|
1262
1341
|
commercial_name?: string | null;
|
|
1263
1342
|
company_name: string;
|
|
1264
1343
|
connection_status?: string;
|
|
@@ -1267,21 +1346,28 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1267
1346
|
created_at?: string;
|
|
1268
1347
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
1269
1348
|
customer_class?: string | null;
|
|
1349
|
+
customer_number?: string | null;
|
|
1350
|
+
discount_days?: number | null;
|
|
1351
|
+
discount_percentage?: number | null;
|
|
1270
1352
|
email?: string | null;
|
|
1271
1353
|
external_id?: string | null;
|
|
1354
|
+
fax?: string | null;
|
|
1272
1355
|
floriday_connection_id?: string | null;
|
|
1273
1356
|
floriday_organization_id?: string | null;
|
|
1274
1357
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
1275
1358
|
gln?: string | null;
|
|
1276
1359
|
house_number?: string | null;
|
|
1360
|
+
icp_country_code?: string | null;
|
|
1277
1361
|
id?: string;
|
|
1278
1362
|
is_active?: boolean;
|
|
1363
|
+
language?: string | null;
|
|
1279
1364
|
last_synced_at?: string | null;
|
|
1280
1365
|
logo_url?: string | null;
|
|
1281
1366
|
markets?: string[];
|
|
1282
1367
|
notes?: string | null;
|
|
1283
1368
|
organization_type?: string | null;
|
|
1284
1369
|
payment_methods?: string[];
|
|
1370
|
+
payment_term_days?: number | null;
|
|
1285
1371
|
phone?: string | null;
|
|
1286
1372
|
postal_code?: string | null;
|
|
1287
1373
|
product_groups?: string[];
|
|
@@ -1292,13 +1378,33 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1292
1378
|
sync_status?: string;
|
|
1293
1379
|
trade_forms?: string[];
|
|
1294
1380
|
updated_at?: string;
|
|
1381
|
+
vat_display?: string | null;
|
|
1295
1382
|
vat_number?: string | null;
|
|
1296
1383
|
website?: string | null;
|
|
1297
1384
|
};
|
|
1298
1385
|
Update: {
|
|
1299
1386
|
address?: string | null;
|
|
1387
|
+
address_line1?: string | null;
|
|
1388
|
+
address_line2?: string | null;
|
|
1389
|
+
address_type?: string | null;
|
|
1390
|
+
attention_to?: string | null;
|
|
1391
|
+
bank_account_holder?: string | null;
|
|
1392
|
+
bank_account_number?: string | null;
|
|
1393
|
+
bank_address_line1?: string | null;
|
|
1394
|
+
bank_address_line2?: string | null;
|
|
1395
|
+
bank_bic?: string | null;
|
|
1396
|
+
bank_city?: string | null;
|
|
1397
|
+
bank_country?: string | null;
|
|
1398
|
+
bank_house_number?: string | null;
|
|
1399
|
+
bank_iban?: string | null;
|
|
1400
|
+
bank_name?: string | null;
|
|
1401
|
+
bank_national_code?: string | null;
|
|
1402
|
+
bank_postal_code?: string | null;
|
|
1403
|
+
bank_state?: string | null;
|
|
1404
|
+
billing_email?: string | null;
|
|
1300
1405
|
bio?: string | null;
|
|
1301
1406
|
city?: string | null;
|
|
1407
|
+
coc_number?: string | null;
|
|
1302
1408
|
commercial_name?: string | null;
|
|
1303
1409
|
company_name?: string;
|
|
1304
1410
|
connection_status?: string;
|
|
@@ -1307,21 +1413,28 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1307
1413
|
created_at?: string;
|
|
1308
1414
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
1309
1415
|
customer_class?: string | null;
|
|
1416
|
+
customer_number?: string | null;
|
|
1417
|
+
discount_days?: number | null;
|
|
1418
|
+
discount_percentage?: number | null;
|
|
1310
1419
|
email?: string | null;
|
|
1311
1420
|
external_id?: string | null;
|
|
1421
|
+
fax?: string | null;
|
|
1312
1422
|
floriday_connection_id?: string | null;
|
|
1313
1423
|
floriday_organization_id?: string | null;
|
|
1314
1424
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
1315
1425
|
gln?: string | null;
|
|
1316
1426
|
house_number?: string | null;
|
|
1427
|
+
icp_country_code?: string | null;
|
|
1317
1428
|
id?: string;
|
|
1318
1429
|
is_active?: boolean;
|
|
1430
|
+
language?: string | null;
|
|
1319
1431
|
last_synced_at?: string | null;
|
|
1320
1432
|
logo_url?: string | null;
|
|
1321
1433
|
markets?: string[];
|
|
1322
1434
|
notes?: string | null;
|
|
1323
1435
|
organization_type?: string | null;
|
|
1324
1436
|
payment_methods?: string[];
|
|
1437
|
+
payment_term_days?: number | null;
|
|
1325
1438
|
phone?: string | null;
|
|
1326
1439
|
postal_code?: string | null;
|
|
1327
1440
|
product_groups?: string[];
|
|
@@ -1332,6 +1445,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
1332
1445
|
sync_status?: string;
|
|
1333
1446
|
trade_forms?: string[];
|
|
1334
1447
|
updated_at?: string;
|
|
1448
|
+
vat_display?: string | null;
|
|
1335
1449
|
vat_number?: string | null;
|
|
1336
1450
|
website?: string | null;
|
|
1337
1451
|
};
|
|
@@ -10351,7 +10465,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
10351
10465
|
};
|
|
10352
10466
|
cleanup_old_bookings: {
|
|
10353
10467
|
Args: never;
|
|
10354
|
-
Returns:
|
|
10468
|
+
Returns: undefined;
|
|
10355
10469
|
};
|
|
10356
10470
|
consume_floriday_rate_limit: {
|
|
10357
10471
|
Args: {
|
|
@@ -11504,6 +11618,9 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11504
11618
|
created_at: string;
|
|
11505
11619
|
extra_id: string;
|
|
11506
11620
|
id: string;
|
|
11621
|
+
original_unit_price: number | null;
|
|
11622
|
+
override_reason: string | null;
|
|
11623
|
+
override_unit_price: number | null;
|
|
11507
11624
|
quantity: number;
|
|
11508
11625
|
total_price: number;
|
|
11509
11626
|
unit_price: number;
|
|
@@ -11513,6 +11630,9 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11513
11630
|
created_at?: string;
|
|
11514
11631
|
extra_id: string;
|
|
11515
11632
|
id?: string;
|
|
11633
|
+
original_unit_price?: number | null;
|
|
11634
|
+
override_reason?: string | null;
|
|
11635
|
+
override_unit_price?: number | null;
|
|
11516
11636
|
quantity?: number;
|
|
11517
11637
|
total_price?: number;
|
|
11518
11638
|
unit_price?: number;
|
|
@@ -11522,6 +11642,9 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11522
11642
|
created_at?: string;
|
|
11523
11643
|
extra_id?: string;
|
|
11524
11644
|
id?: string;
|
|
11645
|
+
original_unit_price?: number | null;
|
|
11646
|
+
override_reason?: string | null;
|
|
11647
|
+
override_unit_price?: number | null;
|
|
11525
11648
|
quantity?: number;
|
|
11526
11649
|
total_price?: number;
|
|
11527
11650
|
unit_price?: number;
|
|
@@ -11542,6 +11665,9 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11542
11665
|
};
|
|
11543
11666
|
bookings: {
|
|
11544
11667
|
Row: {
|
|
11668
|
+
archive_reason: string | null;
|
|
11669
|
+
archived_at: string | null;
|
|
11670
|
+
archived_by: string | null;
|
|
11545
11671
|
company_name: string | null;
|
|
11546
11672
|
conflict_checked_at: string | null;
|
|
11547
11673
|
conflict_reason: string | null;
|
|
@@ -11559,7 +11685,12 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11559
11685
|
invoiced_at: string | null;
|
|
11560
11686
|
notes: string | null;
|
|
11561
11687
|
number_of_people: number;
|
|
11688
|
+
overridden_at: string | null;
|
|
11689
|
+
overridden_by: string | null;
|
|
11690
|
+
override_reason: string | null;
|
|
11691
|
+
price_override: boolean;
|
|
11562
11692
|
room_id: string;
|
|
11693
|
+
room_price_override: number | null;
|
|
11563
11694
|
start_time: string;
|
|
11564
11695
|
status: string;
|
|
11565
11696
|
total_excl_vat: number | null;
|
|
@@ -11568,6 +11699,9 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11568
11699
|
vat_amount: number | null;
|
|
11569
11700
|
};
|
|
11570
11701
|
Insert: {
|
|
11702
|
+
archive_reason?: string | null;
|
|
11703
|
+
archived_at?: string | null;
|
|
11704
|
+
archived_by?: string | null;
|
|
11571
11705
|
company_name?: string | null;
|
|
11572
11706
|
conflict_checked_at?: string | null;
|
|
11573
11707
|
conflict_reason?: string | null;
|
|
@@ -11585,7 +11719,12 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11585
11719
|
invoiced_at?: string | null;
|
|
11586
11720
|
notes?: string | null;
|
|
11587
11721
|
number_of_people?: number;
|
|
11722
|
+
overridden_at?: string | null;
|
|
11723
|
+
overridden_by?: string | null;
|
|
11724
|
+
override_reason?: string | null;
|
|
11725
|
+
price_override?: boolean;
|
|
11588
11726
|
room_id: string;
|
|
11727
|
+
room_price_override?: number | null;
|
|
11589
11728
|
start_time: string;
|
|
11590
11729
|
status?: string;
|
|
11591
11730
|
total_excl_vat?: number | null;
|
|
@@ -11594,6 +11733,9 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11594
11733
|
vat_amount?: number | null;
|
|
11595
11734
|
};
|
|
11596
11735
|
Update: {
|
|
11736
|
+
archive_reason?: string | null;
|
|
11737
|
+
archived_at?: string | null;
|
|
11738
|
+
archived_by?: string | null;
|
|
11597
11739
|
company_name?: string | null;
|
|
11598
11740
|
conflict_checked_at?: string | null;
|
|
11599
11741
|
conflict_reason?: string | null;
|
|
@@ -11611,7 +11753,12 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11611
11753
|
invoiced_at?: string | null;
|
|
11612
11754
|
notes?: string | null;
|
|
11613
11755
|
number_of_people?: number;
|
|
11756
|
+
overridden_at?: string | null;
|
|
11757
|
+
overridden_by?: string | null;
|
|
11758
|
+
override_reason?: string | null;
|
|
11759
|
+
price_override?: boolean;
|
|
11614
11760
|
room_id?: string;
|
|
11761
|
+
room_price_override?: number | null;
|
|
11615
11762
|
start_time?: string;
|
|
11616
11763
|
status?: string;
|
|
11617
11764
|
total_excl_vat?: number | null;
|
|
@@ -12440,8 +12587,27 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12440
12587
|
customers: {
|
|
12441
12588
|
Row: {
|
|
12442
12589
|
address: string | null;
|
|
12590
|
+
address_line1: string | null;
|
|
12591
|
+
address_line2: string | null;
|
|
12592
|
+
address_type: string | null;
|
|
12593
|
+
attention_to: string | null;
|
|
12594
|
+
bank_account_holder: string | null;
|
|
12595
|
+
bank_account_number: string | null;
|
|
12596
|
+
bank_address_line1: string | null;
|
|
12597
|
+
bank_address_line2: string | null;
|
|
12598
|
+
bank_bic: string | null;
|
|
12599
|
+
bank_city: string | null;
|
|
12600
|
+
bank_country: string | null;
|
|
12601
|
+
bank_house_number: string | null;
|
|
12602
|
+
bank_iban: string | null;
|
|
12603
|
+
bank_name: string | null;
|
|
12604
|
+
bank_national_code: string | null;
|
|
12605
|
+
bank_postal_code: string | null;
|
|
12606
|
+
bank_state: string | null;
|
|
12607
|
+
billing_email: string | null;
|
|
12443
12608
|
bio: string | null;
|
|
12444
12609
|
city: string | null;
|
|
12610
|
+
coc_number: string | null;
|
|
12445
12611
|
commercial_name: string | null;
|
|
12446
12612
|
company_name: string;
|
|
12447
12613
|
connection_status: string;
|
|
@@ -12450,21 +12616,28 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12450
12616
|
created_at: string;
|
|
12451
12617
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
12452
12618
|
customer_class: string | null;
|
|
12619
|
+
customer_number: string | null;
|
|
12620
|
+
discount_days: number | null;
|
|
12621
|
+
discount_percentage: number | null;
|
|
12453
12622
|
email: string | null;
|
|
12454
12623
|
external_id: string | null;
|
|
12624
|
+
fax: string | null;
|
|
12455
12625
|
floriday_connection_id: string | null;
|
|
12456
12626
|
floriday_organization_id: string | null;
|
|
12457
12627
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
12458
12628
|
gln: string | null;
|
|
12459
12629
|
house_number: string | null;
|
|
12630
|
+
icp_country_code: string | null;
|
|
12460
12631
|
id: string;
|
|
12461
12632
|
is_active: boolean;
|
|
12633
|
+
language: string | null;
|
|
12462
12634
|
last_synced_at: string | null;
|
|
12463
12635
|
logo_url: string | null;
|
|
12464
12636
|
markets: string[];
|
|
12465
12637
|
notes: string | null;
|
|
12466
12638
|
organization_type: string | null;
|
|
12467
12639
|
payment_methods: string[];
|
|
12640
|
+
payment_term_days: number | null;
|
|
12468
12641
|
phone: string | null;
|
|
12469
12642
|
postal_code: string | null;
|
|
12470
12643
|
product_groups: string[];
|
|
@@ -12475,13 +12648,33 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12475
12648
|
sync_status: string;
|
|
12476
12649
|
trade_forms: string[];
|
|
12477
12650
|
updated_at: string;
|
|
12651
|
+
vat_display: string | null;
|
|
12478
12652
|
vat_number: string | null;
|
|
12479
12653
|
website: string | null;
|
|
12480
12654
|
};
|
|
12481
12655
|
Insert: {
|
|
12482
12656
|
address?: string | null;
|
|
12657
|
+
address_line1?: string | null;
|
|
12658
|
+
address_line2?: string | null;
|
|
12659
|
+
address_type?: string | null;
|
|
12660
|
+
attention_to?: string | null;
|
|
12661
|
+
bank_account_holder?: string | null;
|
|
12662
|
+
bank_account_number?: string | null;
|
|
12663
|
+
bank_address_line1?: string | null;
|
|
12664
|
+
bank_address_line2?: string | null;
|
|
12665
|
+
bank_bic?: string | null;
|
|
12666
|
+
bank_city?: string | null;
|
|
12667
|
+
bank_country?: string | null;
|
|
12668
|
+
bank_house_number?: string | null;
|
|
12669
|
+
bank_iban?: string | null;
|
|
12670
|
+
bank_name?: string | null;
|
|
12671
|
+
bank_national_code?: string | null;
|
|
12672
|
+
bank_postal_code?: string | null;
|
|
12673
|
+
bank_state?: string | null;
|
|
12674
|
+
billing_email?: string | null;
|
|
12483
12675
|
bio?: string | null;
|
|
12484
12676
|
city?: string | null;
|
|
12677
|
+
coc_number?: string | null;
|
|
12485
12678
|
commercial_name?: string | null;
|
|
12486
12679
|
company_name: string;
|
|
12487
12680
|
connection_status?: string;
|
|
@@ -12490,21 +12683,28 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12490
12683
|
created_at?: string;
|
|
12491
12684
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
12492
12685
|
customer_class?: string | null;
|
|
12686
|
+
customer_number?: string | null;
|
|
12687
|
+
discount_days?: number | null;
|
|
12688
|
+
discount_percentage?: number | null;
|
|
12493
12689
|
email?: string | null;
|
|
12494
12690
|
external_id?: string | null;
|
|
12691
|
+
fax?: string | null;
|
|
12495
12692
|
floriday_connection_id?: string | null;
|
|
12496
12693
|
floriday_organization_id?: string | null;
|
|
12497
12694
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
12498
12695
|
gln?: string | null;
|
|
12499
12696
|
house_number?: string | null;
|
|
12697
|
+
icp_country_code?: string | null;
|
|
12500
12698
|
id?: string;
|
|
12501
12699
|
is_active?: boolean;
|
|
12700
|
+
language?: string | null;
|
|
12502
12701
|
last_synced_at?: string | null;
|
|
12503
12702
|
logo_url?: string | null;
|
|
12504
12703
|
markets?: string[];
|
|
12505
12704
|
notes?: string | null;
|
|
12506
12705
|
organization_type?: string | null;
|
|
12507
12706
|
payment_methods?: string[];
|
|
12707
|
+
payment_term_days?: number | null;
|
|
12508
12708
|
phone?: string | null;
|
|
12509
12709
|
postal_code?: string | null;
|
|
12510
12710
|
product_groups?: string[];
|
|
@@ -12515,13 +12715,33 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12515
12715
|
sync_status?: string;
|
|
12516
12716
|
trade_forms?: string[];
|
|
12517
12717
|
updated_at?: string;
|
|
12718
|
+
vat_display?: string | null;
|
|
12518
12719
|
vat_number?: string | null;
|
|
12519
12720
|
website?: string | null;
|
|
12520
12721
|
};
|
|
12521
12722
|
Update: {
|
|
12522
12723
|
address?: string | null;
|
|
12724
|
+
address_line1?: string | null;
|
|
12725
|
+
address_line2?: string | null;
|
|
12726
|
+
address_type?: string | null;
|
|
12727
|
+
attention_to?: string | null;
|
|
12728
|
+
bank_account_holder?: string | null;
|
|
12729
|
+
bank_account_number?: string | null;
|
|
12730
|
+
bank_address_line1?: string | null;
|
|
12731
|
+
bank_address_line2?: string | null;
|
|
12732
|
+
bank_bic?: string | null;
|
|
12733
|
+
bank_city?: string | null;
|
|
12734
|
+
bank_country?: string | null;
|
|
12735
|
+
bank_house_number?: string | null;
|
|
12736
|
+
bank_iban?: string | null;
|
|
12737
|
+
bank_name?: string | null;
|
|
12738
|
+
bank_national_code?: string | null;
|
|
12739
|
+
bank_postal_code?: string | null;
|
|
12740
|
+
bank_state?: string | null;
|
|
12741
|
+
billing_email?: string | null;
|
|
12523
12742
|
bio?: string | null;
|
|
12524
12743
|
city?: string | null;
|
|
12744
|
+
coc_number?: string | null;
|
|
12525
12745
|
commercial_name?: string | null;
|
|
12526
12746
|
company_name?: string;
|
|
12527
12747
|
connection_status?: string;
|
|
@@ -12530,21 +12750,28 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12530
12750
|
created_at?: string;
|
|
12531
12751
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
12532
12752
|
customer_class?: string | null;
|
|
12753
|
+
customer_number?: string | null;
|
|
12754
|
+
discount_days?: number | null;
|
|
12755
|
+
discount_percentage?: number | null;
|
|
12533
12756
|
email?: string | null;
|
|
12534
12757
|
external_id?: string | null;
|
|
12758
|
+
fax?: string | null;
|
|
12535
12759
|
floriday_connection_id?: string | null;
|
|
12536
12760
|
floriday_organization_id?: string | null;
|
|
12537
12761
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
12538
12762
|
gln?: string | null;
|
|
12539
12763
|
house_number?: string | null;
|
|
12764
|
+
icp_country_code?: string | null;
|
|
12540
12765
|
id?: string;
|
|
12541
12766
|
is_active?: boolean;
|
|
12767
|
+
language?: string | null;
|
|
12542
12768
|
last_synced_at?: string | null;
|
|
12543
12769
|
logo_url?: string | null;
|
|
12544
12770
|
markets?: string[];
|
|
12545
12771
|
notes?: string | null;
|
|
12546
12772
|
organization_type?: string | null;
|
|
12547
12773
|
payment_methods?: string[];
|
|
12774
|
+
payment_term_days?: number | null;
|
|
12548
12775
|
phone?: string | null;
|
|
12549
12776
|
postal_code?: string | null;
|
|
12550
12777
|
product_groups?: string[];
|
|
@@ -12555,6 +12782,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
12555
12782
|
sync_status?: string;
|
|
12556
12783
|
trade_forms?: string[];
|
|
12557
12784
|
updated_at?: string;
|
|
12785
|
+
vat_display?: string | null;
|
|
12558
12786
|
vat_number?: string | null;
|
|
12559
12787
|
website?: string | null;
|
|
12560
12788
|
};
|
|
@@ -21574,7 +21802,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
21574
21802
|
};
|
|
21575
21803
|
cleanup_old_bookings: {
|
|
21576
21804
|
Args: never;
|
|
21577
|
-
Returns:
|
|
21805
|
+
Returns: undefined;
|
|
21578
21806
|
};
|
|
21579
21807
|
consume_floriday_rate_limit: {
|
|
21580
21808
|
Args: {
|