@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
|
@@ -285,6 +285,9 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
285
285
|
created_at: string;
|
|
286
286
|
extra_id: string;
|
|
287
287
|
id: string;
|
|
288
|
+
original_unit_price: number | null;
|
|
289
|
+
override_reason: string | null;
|
|
290
|
+
override_unit_price: number | null;
|
|
288
291
|
quantity: number;
|
|
289
292
|
total_price: number;
|
|
290
293
|
unit_price: number;
|
|
@@ -294,6 +297,9 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
294
297
|
created_at?: string;
|
|
295
298
|
extra_id: string;
|
|
296
299
|
id?: string;
|
|
300
|
+
original_unit_price?: number | null;
|
|
301
|
+
override_reason?: string | null;
|
|
302
|
+
override_unit_price?: number | null;
|
|
297
303
|
quantity?: number;
|
|
298
304
|
total_price?: number;
|
|
299
305
|
unit_price?: number;
|
|
@@ -303,6 +309,9 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
303
309
|
created_at?: string;
|
|
304
310
|
extra_id?: string;
|
|
305
311
|
id?: string;
|
|
312
|
+
original_unit_price?: number | null;
|
|
313
|
+
override_reason?: string | null;
|
|
314
|
+
override_unit_price?: number | null;
|
|
306
315
|
quantity?: number;
|
|
307
316
|
total_price?: number;
|
|
308
317
|
unit_price?: number;
|
|
@@ -323,6 +332,9 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
323
332
|
};
|
|
324
333
|
bookings: {
|
|
325
334
|
Row: {
|
|
335
|
+
archive_reason: string | null;
|
|
336
|
+
archived_at: string | null;
|
|
337
|
+
archived_by: string | null;
|
|
326
338
|
company_name: string | null;
|
|
327
339
|
conflict_checked_at: string | null;
|
|
328
340
|
conflict_reason: string | null;
|
|
@@ -340,7 +352,12 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
340
352
|
invoiced_at: string | null;
|
|
341
353
|
notes: string | null;
|
|
342
354
|
number_of_people: number;
|
|
355
|
+
overridden_at: string | null;
|
|
356
|
+
overridden_by: string | null;
|
|
357
|
+
override_reason: string | null;
|
|
358
|
+
price_override: boolean;
|
|
343
359
|
room_id: string;
|
|
360
|
+
room_price_override: number | null;
|
|
344
361
|
start_time: string;
|
|
345
362
|
status: string;
|
|
346
363
|
total_excl_vat: number | null;
|
|
@@ -349,6 +366,9 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
349
366
|
vat_amount: number | null;
|
|
350
367
|
};
|
|
351
368
|
Insert: {
|
|
369
|
+
archive_reason?: string | null;
|
|
370
|
+
archived_at?: string | null;
|
|
371
|
+
archived_by?: string | null;
|
|
352
372
|
company_name?: string | null;
|
|
353
373
|
conflict_checked_at?: string | null;
|
|
354
374
|
conflict_reason?: string | null;
|
|
@@ -366,7 +386,12 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
366
386
|
invoiced_at?: string | null;
|
|
367
387
|
notes?: string | null;
|
|
368
388
|
number_of_people?: number;
|
|
389
|
+
overridden_at?: string | null;
|
|
390
|
+
overridden_by?: string | null;
|
|
391
|
+
override_reason?: string | null;
|
|
392
|
+
price_override?: boolean;
|
|
369
393
|
room_id: string;
|
|
394
|
+
room_price_override?: number | null;
|
|
370
395
|
start_time: string;
|
|
371
396
|
status?: string;
|
|
372
397
|
total_excl_vat?: number | null;
|
|
@@ -375,6 +400,9 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
375
400
|
vat_amount?: number | null;
|
|
376
401
|
};
|
|
377
402
|
Update: {
|
|
403
|
+
archive_reason?: string | null;
|
|
404
|
+
archived_at?: string | null;
|
|
405
|
+
archived_by?: string | null;
|
|
378
406
|
company_name?: string | null;
|
|
379
407
|
conflict_checked_at?: string | null;
|
|
380
408
|
conflict_reason?: string | null;
|
|
@@ -392,7 +420,12 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
392
420
|
invoiced_at?: string | null;
|
|
393
421
|
notes?: string | null;
|
|
394
422
|
number_of_people?: number;
|
|
423
|
+
overridden_at?: string | null;
|
|
424
|
+
overridden_by?: string | null;
|
|
425
|
+
override_reason?: string | null;
|
|
426
|
+
price_override?: boolean;
|
|
395
427
|
room_id?: string;
|
|
428
|
+
room_price_override?: number | null;
|
|
396
429
|
start_time?: string;
|
|
397
430
|
status?: string;
|
|
398
431
|
total_excl_vat?: number | null;
|
|
@@ -1221,8 +1254,27 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1221
1254
|
customers: {
|
|
1222
1255
|
Row: {
|
|
1223
1256
|
address: string | null;
|
|
1257
|
+
address_line1: string | null;
|
|
1258
|
+
address_line2: string | null;
|
|
1259
|
+
address_type: string | null;
|
|
1260
|
+
attention_to: string | null;
|
|
1261
|
+
bank_account_holder: string | null;
|
|
1262
|
+
bank_account_number: string | null;
|
|
1263
|
+
bank_address_line1: string | null;
|
|
1264
|
+
bank_address_line2: string | null;
|
|
1265
|
+
bank_bic: string | null;
|
|
1266
|
+
bank_city: string | null;
|
|
1267
|
+
bank_country: string | null;
|
|
1268
|
+
bank_house_number: string | null;
|
|
1269
|
+
bank_iban: string | null;
|
|
1270
|
+
bank_name: string | null;
|
|
1271
|
+
bank_national_code: string | null;
|
|
1272
|
+
bank_postal_code: string | null;
|
|
1273
|
+
bank_state: string | null;
|
|
1274
|
+
billing_email: string | null;
|
|
1224
1275
|
bio: string | null;
|
|
1225
1276
|
city: string | null;
|
|
1277
|
+
coc_number: string | null;
|
|
1226
1278
|
commercial_name: string | null;
|
|
1227
1279
|
company_name: string;
|
|
1228
1280
|
connection_status: string;
|
|
@@ -1231,21 +1283,28 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1231
1283
|
created_at: string;
|
|
1232
1284
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
1233
1285
|
customer_class: string | null;
|
|
1286
|
+
customer_number: string | null;
|
|
1287
|
+
discount_days: number | null;
|
|
1288
|
+
discount_percentage: number | null;
|
|
1234
1289
|
email: string | null;
|
|
1235
1290
|
external_id: string | null;
|
|
1291
|
+
fax: string | null;
|
|
1236
1292
|
floriday_connection_id: string | null;
|
|
1237
1293
|
floriday_organization_id: string | null;
|
|
1238
1294
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
1239
1295
|
gln: string | null;
|
|
1240
1296
|
house_number: string | null;
|
|
1297
|
+
icp_country_code: string | null;
|
|
1241
1298
|
id: string;
|
|
1242
1299
|
is_active: boolean;
|
|
1300
|
+
language: string | null;
|
|
1243
1301
|
last_synced_at: string | null;
|
|
1244
1302
|
logo_url: string | null;
|
|
1245
1303
|
markets: string[];
|
|
1246
1304
|
notes: string | null;
|
|
1247
1305
|
organization_type: string | null;
|
|
1248
1306
|
payment_methods: string[];
|
|
1307
|
+
payment_term_days: number | null;
|
|
1249
1308
|
phone: string | null;
|
|
1250
1309
|
postal_code: string | null;
|
|
1251
1310
|
product_groups: string[];
|
|
@@ -1256,13 +1315,33 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1256
1315
|
sync_status: string;
|
|
1257
1316
|
trade_forms: string[];
|
|
1258
1317
|
updated_at: string;
|
|
1318
|
+
vat_display: string | null;
|
|
1259
1319
|
vat_number: string | null;
|
|
1260
1320
|
website: string | null;
|
|
1261
1321
|
};
|
|
1262
1322
|
Insert: {
|
|
1263
1323
|
address?: string | null;
|
|
1324
|
+
address_line1?: string | null;
|
|
1325
|
+
address_line2?: string | null;
|
|
1326
|
+
address_type?: string | null;
|
|
1327
|
+
attention_to?: string | null;
|
|
1328
|
+
bank_account_holder?: string | null;
|
|
1329
|
+
bank_account_number?: string | null;
|
|
1330
|
+
bank_address_line1?: string | null;
|
|
1331
|
+
bank_address_line2?: string | null;
|
|
1332
|
+
bank_bic?: string | null;
|
|
1333
|
+
bank_city?: string | null;
|
|
1334
|
+
bank_country?: string | null;
|
|
1335
|
+
bank_house_number?: string | null;
|
|
1336
|
+
bank_iban?: string | null;
|
|
1337
|
+
bank_name?: string | null;
|
|
1338
|
+
bank_national_code?: string | null;
|
|
1339
|
+
bank_postal_code?: string | null;
|
|
1340
|
+
bank_state?: string | null;
|
|
1341
|
+
billing_email?: string | null;
|
|
1264
1342
|
bio?: string | null;
|
|
1265
1343
|
city?: string | null;
|
|
1344
|
+
coc_number?: string | null;
|
|
1266
1345
|
commercial_name?: string | null;
|
|
1267
1346
|
company_name: string;
|
|
1268
1347
|
connection_status?: string;
|
|
@@ -1271,21 +1350,28 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1271
1350
|
created_at?: string;
|
|
1272
1351
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
1273
1352
|
customer_class?: string | null;
|
|
1353
|
+
customer_number?: string | null;
|
|
1354
|
+
discount_days?: number | null;
|
|
1355
|
+
discount_percentage?: number | null;
|
|
1274
1356
|
email?: string | null;
|
|
1275
1357
|
external_id?: string | null;
|
|
1358
|
+
fax?: string | null;
|
|
1276
1359
|
floriday_connection_id?: string | null;
|
|
1277
1360
|
floriday_organization_id?: string | null;
|
|
1278
1361
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
1279
1362
|
gln?: string | null;
|
|
1280
1363
|
house_number?: string | null;
|
|
1364
|
+
icp_country_code?: string | null;
|
|
1281
1365
|
id?: string;
|
|
1282
1366
|
is_active?: boolean;
|
|
1367
|
+
language?: string | null;
|
|
1283
1368
|
last_synced_at?: string | null;
|
|
1284
1369
|
logo_url?: string | null;
|
|
1285
1370
|
markets?: string[];
|
|
1286
1371
|
notes?: string | null;
|
|
1287
1372
|
organization_type?: string | null;
|
|
1288
1373
|
payment_methods?: string[];
|
|
1374
|
+
payment_term_days?: number | null;
|
|
1289
1375
|
phone?: string | null;
|
|
1290
1376
|
postal_code?: string | null;
|
|
1291
1377
|
product_groups?: string[];
|
|
@@ -1296,13 +1382,33 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1296
1382
|
sync_status?: string;
|
|
1297
1383
|
trade_forms?: string[];
|
|
1298
1384
|
updated_at?: string;
|
|
1385
|
+
vat_display?: string | null;
|
|
1299
1386
|
vat_number?: string | null;
|
|
1300
1387
|
website?: string | null;
|
|
1301
1388
|
};
|
|
1302
1389
|
Update: {
|
|
1303
1390
|
address?: string | null;
|
|
1391
|
+
address_line1?: string | null;
|
|
1392
|
+
address_line2?: string | null;
|
|
1393
|
+
address_type?: string | null;
|
|
1394
|
+
attention_to?: string | null;
|
|
1395
|
+
bank_account_holder?: string | null;
|
|
1396
|
+
bank_account_number?: string | null;
|
|
1397
|
+
bank_address_line1?: string | null;
|
|
1398
|
+
bank_address_line2?: string | null;
|
|
1399
|
+
bank_bic?: string | null;
|
|
1400
|
+
bank_city?: string | null;
|
|
1401
|
+
bank_country?: string | null;
|
|
1402
|
+
bank_house_number?: string | null;
|
|
1403
|
+
bank_iban?: string | null;
|
|
1404
|
+
bank_name?: string | null;
|
|
1405
|
+
bank_national_code?: string | null;
|
|
1406
|
+
bank_postal_code?: string | null;
|
|
1407
|
+
bank_state?: string | null;
|
|
1408
|
+
billing_email?: string | null;
|
|
1304
1409
|
bio?: string | null;
|
|
1305
1410
|
city?: string | null;
|
|
1411
|
+
coc_number?: string | null;
|
|
1306
1412
|
commercial_name?: string | null;
|
|
1307
1413
|
company_name?: string;
|
|
1308
1414
|
connection_status?: string;
|
|
@@ -1311,21 +1417,28 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1311
1417
|
created_at?: string;
|
|
1312
1418
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
1313
1419
|
customer_class?: string | null;
|
|
1420
|
+
customer_number?: string | null;
|
|
1421
|
+
discount_days?: number | null;
|
|
1422
|
+
discount_percentage?: number | null;
|
|
1314
1423
|
email?: string | null;
|
|
1315
1424
|
external_id?: string | null;
|
|
1425
|
+
fax?: string | null;
|
|
1316
1426
|
floriday_connection_id?: string | null;
|
|
1317
1427
|
floriday_organization_id?: string | null;
|
|
1318
1428
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
1319
1429
|
gln?: string | null;
|
|
1320
1430
|
house_number?: string | null;
|
|
1431
|
+
icp_country_code?: string | null;
|
|
1321
1432
|
id?: string;
|
|
1322
1433
|
is_active?: boolean;
|
|
1434
|
+
language?: string | null;
|
|
1323
1435
|
last_synced_at?: string | null;
|
|
1324
1436
|
logo_url?: string | null;
|
|
1325
1437
|
markets?: string[];
|
|
1326
1438
|
notes?: string | null;
|
|
1327
1439
|
organization_type?: string | null;
|
|
1328
1440
|
payment_methods?: string[];
|
|
1441
|
+
payment_term_days?: number | null;
|
|
1329
1442
|
phone?: string | null;
|
|
1330
1443
|
postal_code?: string | null;
|
|
1331
1444
|
product_groups?: string[];
|
|
@@ -1336,6 +1449,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
1336
1449
|
sync_status?: string;
|
|
1337
1450
|
trade_forms?: string[];
|
|
1338
1451
|
updated_at?: string;
|
|
1452
|
+
vat_display?: string | null;
|
|
1339
1453
|
vat_number?: string | null;
|
|
1340
1454
|
website?: string | null;
|
|
1341
1455
|
};
|
|
@@ -10355,7 +10469,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
10355
10469
|
};
|
|
10356
10470
|
cleanup_old_bookings: {
|
|
10357
10471
|
Args: never;
|
|
10358
|
-
Returns:
|
|
10472
|
+
Returns: undefined;
|
|
10359
10473
|
};
|
|
10360
10474
|
consume_floriday_rate_limit: {
|
|
10361
10475
|
Args: {
|
|
@@ -11513,6 +11627,9 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11513
11627
|
created_at: string;
|
|
11514
11628
|
extra_id: string;
|
|
11515
11629
|
id: string;
|
|
11630
|
+
original_unit_price: number | null;
|
|
11631
|
+
override_reason: string | null;
|
|
11632
|
+
override_unit_price: number | null;
|
|
11516
11633
|
quantity: number;
|
|
11517
11634
|
total_price: number;
|
|
11518
11635
|
unit_price: number;
|
|
@@ -11522,6 +11639,9 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11522
11639
|
created_at?: string;
|
|
11523
11640
|
extra_id: string;
|
|
11524
11641
|
id?: string;
|
|
11642
|
+
original_unit_price?: number | null;
|
|
11643
|
+
override_reason?: string | null;
|
|
11644
|
+
override_unit_price?: number | null;
|
|
11525
11645
|
quantity?: number;
|
|
11526
11646
|
total_price?: number;
|
|
11527
11647
|
unit_price?: number;
|
|
@@ -11531,6 +11651,9 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11531
11651
|
created_at?: string;
|
|
11532
11652
|
extra_id?: string;
|
|
11533
11653
|
id?: string;
|
|
11654
|
+
original_unit_price?: number | null;
|
|
11655
|
+
override_reason?: string | null;
|
|
11656
|
+
override_unit_price?: number | null;
|
|
11534
11657
|
quantity?: number;
|
|
11535
11658
|
total_price?: number;
|
|
11536
11659
|
unit_price?: number;
|
|
@@ -11551,6 +11674,9 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11551
11674
|
};
|
|
11552
11675
|
bookings: {
|
|
11553
11676
|
Row: {
|
|
11677
|
+
archive_reason: string | null;
|
|
11678
|
+
archived_at: string | null;
|
|
11679
|
+
archived_by: string | null;
|
|
11554
11680
|
company_name: string | null;
|
|
11555
11681
|
conflict_checked_at: string | null;
|
|
11556
11682
|
conflict_reason: string | null;
|
|
@@ -11568,7 +11694,12 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11568
11694
|
invoiced_at: string | null;
|
|
11569
11695
|
notes: string | null;
|
|
11570
11696
|
number_of_people: number;
|
|
11697
|
+
overridden_at: string | null;
|
|
11698
|
+
overridden_by: string | null;
|
|
11699
|
+
override_reason: string | null;
|
|
11700
|
+
price_override: boolean;
|
|
11571
11701
|
room_id: string;
|
|
11702
|
+
room_price_override: number | null;
|
|
11572
11703
|
start_time: string;
|
|
11573
11704
|
status: string;
|
|
11574
11705
|
total_excl_vat: number | null;
|
|
@@ -11577,6 +11708,9 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11577
11708
|
vat_amount: number | null;
|
|
11578
11709
|
};
|
|
11579
11710
|
Insert: {
|
|
11711
|
+
archive_reason?: string | null;
|
|
11712
|
+
archived_at?: string | null;
|
|
11713
|
+
archived_by?: string | null;
|
|
11580
11714
|
company_name?: string | null;
|
|
11581
11715
|
conflict_checked_at?: string | null;
|
|
11582
11716
|
conflict_reason?: string | null;
|
|
@@ -11594,7 +11728,12 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11594
11728
|
invoiced_at?: string | null;
|
|
11595
11729
|
notes?: string | null;
|
|
11596
11730
|
number_of_people?: number;
|
|
11731
|
+
overridden_at?: string | null;
|
|
11732
|
+
overridden_by?: string | null;
|
|
11733
|
+
override_reason?: string | null;
|
|
11734
|
+
price_override?: boolean;
|
|
11597
11735
|
room_id: string;
|
|
11736
|
+
room_price_override?: number | null;
|
|
11598
11737
|
start_time: string;
|
|
11599
11738
|
status?: string;
|
|
11600
11739
|
total_excl_vat?: number | null;
|
|
@@ -11603,6 +11742,9 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11603
11742
|
vat_amount?: number | null;
|
|
11604
11743
|
};
|
|
11605
11744
|
Update: {
|
|
11745
|
+
archive_reason?: string | null;
|
|
11746
|
+
archived_at?: string | null;
|
|
11747
|
+
archived_by?: string | null;
|
|
11606
11748
|
company_name?: string | null;
|
|
11607
11749
|
conflict_checked_at?: string | null;
|
|
11608
11750
|
conflict_reason?: string | null;
|
|
@@ -11620,7 +11762,12 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11620
11762
|
invoiced_at?: string | null;
|
|
11621
11763
|
notes?: string | null;
|
|
11622
11764
|
number_of_people?: number;
|
|
11765
|
+
overridden_at?: string | null;
|
|
11766
|
+
overridden_by?: string | null;
|
|
11767
|
+
override_reason?: string | null;
|
|
11768
|
+
price_override?: boolean;
|
|
11623
11769
|
room_id?: string;
|
|
11770
|
+
room_price_override?: number | null;
|
|
11624
11771
|
start_time?: string;
|
|
11625
11772
|
status?: string;
|
|
11626
11773
|
total_excl_vat?: number | null;
|
|
@@ -12449,8 +12596,27 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12449
12596
|
customers: {
|
|
12450
12597
|
Row: {
|
|
12451
12598
|
address: string | null;
|
|
12599
|
+
address_line1: string | null;
|
|
12600
|
+
address_line2: string | null;
|
|
12601
|
+
address_type: string | null;
|
|
12602
|
+
attention_to: string | null;
|
|
12603
|
+
bank_account_holder: string | null;
|
|
12604
|
+
bank_account_number: string | null;
|
|
12605
|
+
bank_address_line1: string | null;
|
|
12606
|
+
bank_address_line2: string | null;
|
|
12607
|
+
bank_bic: string | null;
|
|
12608
|
+
bank_city: string | null;
|
|
12609
|
+
bank_country: string | null;
|
|
12610
|
+
bank_house_number: string | null;
|
|
12611
|
+
bank_iban: string | null;
|
|
12612
|
+
bank_name: string | null;
|
|
12613
|
+
bank_national_code: string | null;
|
|
12614
|
+
bank_postal_code: string | null;
|
|
12615
|
+
bank_state: string | null;
|
|
12616
|
+
billing_email: string | null;
|
|
12452
12617
|
bio: string | null;
|
|
12453
12618
|
city: string | null;
|
|
12619
|
+
coc_number: string | null;
|
|
12454
12620
|
commercial_name: string | null;
|
|
12455
12621
|
company_name: string;
|
|
12456
12622
|
connection_status: string;
|
|
@@ -12459,21 +12625,28 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12459
12625
|
created_at: string;
|
|
12460
12626
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
12461
12627
|
customer_class: string | null;
|
|
12628
|
+
customer_number: string | null;
|
|
12629
|
+
discount_days: number | null;
|
|
12630
|
+
discount_percentage: number | null;
|
|
12462
12631
|
email: string | null;
|
|
12463
12632
|
external_id: string | null;
|
|
12633
|
+
fax: string | null;
|
|
12464
12634
|
floriday_connection_id: string | null;
|
|
12465
12635
|
floriday_organization_id: string | null;
|
|
12466
12636
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
12467
12637
|
gln: string | null;
|
|
12468
12638
|
house_number: string | null;
|
|
12639
|
+
icp_country_code: string | null;
|
|
12469
12640
|
id: string;
|
|
12470
12641
|
is_active: boolean;
|
|
12642
|
+
language: string | null;
|
|
12471
12643
|
last_synced_at: string | null;
|
|
12472
12644
|
logo_url: string | null;
|
|
12473
12645
|
markets: string[];
|
|
12474
12646
|
notes: string | null;
|
|
12475
12647
|
organization_type: string | null;
|
|
12476
12648
|
payment_methods: string[];
|
|
12649
|
+
payment_term_days: number | null;
|
|
12477
12650
|
phone: string | null;
|
|
12478
12651
|
postal_code: string | null;
|
|
12479
12652
|
product_groups: string[];
|
|
@@ -12484,13 +12657,33 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12484
12657
|
sync_status: string;
|
|
12485
12658
|
trade_forms: string[];
|
|
12486
12659
|
updated_at: string;
|
|
12660
|
+
vat_display: string | null;
|
|
12487
12661
|
vat_number: string | null;
|
|
12488
12662
|
website: string | null;
|
|
12489
12663
|
};
|
|
12490
12664
|
Insert: {
|
|
12491
12665
|
address?: string | null;
|
|
12666
|
+
address_line1?: string | null;
|
|
12667
|
+
address_line2?: string | null;
|
|
12668
|
+
address_type?: string | null;
|
|
12669
|
+
attention_to?: string | null;
|
|
12670
|
+
bank_account_holder?: string | null;
|
|
12671
|
+
bank_account_number?: string | null;
|
|
12672
|
+
bank_address_line1?: string | null;
|
|
12673
|
+
bank_address_line2?: string | null;
|
|
12674
|
+
bank_bic?: string | null;
|
|
12675
|
+
bank_city?: string | null;
|
|
12676
|
+
bank_country?: string | null;
|
|
12677
|
+
bank_house_number?: string | null;
|
|
12678
|
+
bank_iban?: string | null;
|
|
12679
|
+
bank_name?: string | null;
|
|
12680
|
+
bank_national_code?: string | null;
|
|
12681
|
+
bank_postal_code?: string | null;
|
|
12682
|
+
bank_state?: string | null;
|
|
12683
|
+
billing_email?: string | null;
|
|
12492
12684
|
bio?: string | null;
|
|
12493
12685
|
city?: string | null;
|
|
12686
|
+
coc_number?: string | null;
|
|
12494
12687
|
commercial_name?: string | null;
|
|
12495
12688
|
company_name: string;
|
|
12496
12689
|
connection_status?: string;
|
|
@@ -12499,21 +12692,28 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12499
12692
|
created_at?: string;
|
|
12500
12693
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
12501
12694
|
customer_class?: string | null;
|
|
12695
|
+
customer_number?: string | null;
|
|
12696
|
+
discount_days?: number | null;
|
|
12697
|
+
discount_percentage?: number | null;
|
|
12502
12698
|
email?: string | null;
|
|
12503
12699
|
external_id?: string | null;
|
|
12700
|
+
fax?: string | null;
|
|
12504
12701
|
floriday_connection_id?: string | null;
|
|
12505
12702
|
floriday_organization_id?: string | null;
|
|
12506
12703
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
12507
12704
|
gln?: string | null;
|
|
12508
12705
|
house_number?: string | null;
|
|
12706
|
+
icp_country_code?: string | null;
|
|
12509
12707
|
id?: string;
|
|
12510
12708
|
is_active?: boolean;
|
|
12709
|
+
language?: string | null;
|
|
12511
12710
|
last_synced_at?: string | null;
|
|
12512
12711
|
logo_url?: string | null;
|
|
12513
12712
|
markets?: string[];
|
|
12514
12713
|
notes?: string | null;
|
|
12515
12714
|
organization_type?: string | null;
|
|
12516
12715
|
payment_methods?: string[];
|
|
12716
|
+
payment_term_days?: number | null;
|
|
12517
12717
|
phone?: string | null;
|
|
12518
12718
|
postal_code?: string | null;
|
|
12519
12719
|
product_groups?: string[];
|
|
@@ -12524,13 +12724,33 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12524
12724
|
sync_status?: string;
|
|
12525
12725
|
trade_forms?: string[];
|
|
12526
12726
|
updated_at?: string;
|
|
12727
|
+
vat_display?: string | null;
|
|
12527
12728
|
vat_number?: string | null;
|
|
12528
12729
|
website?: string | null;
|
|
12529
12730
|
};
|
|
12530
12731
|
Update: {
|
|
12531
12732
|
address?: string | null;
|
|
12733
|
+
address_line1?: string | null;
|
|
12734
|
+
address_line2?: string | null;
|
|
12735
|
+
address_type?: string | null;
|
|
12736
|
+
attention_to?: string | null;
|
|
12737
|
+
bank_account_holder?: string | null;
|
|
12738
|
+
bank_account_number?: string | null;
|
|
12739
|
+
bank_address_line1?: string | null;
|
|
12740
|
+
bank_address_line2?: string | null;
|
|
12741
|
+
bank_bic?: string | null;
|
|
12742
|
+
bank_city?: string | null;
|
|
12743
|
+
bank_country?: string | null;
|
|
12744
|
+
bank_house_number?: string | null;
|
|
12745
|
+
bank_iban?: string | null;
|
|
12746
|
+
bank_name?: string | null;
|
|
12747
|
+
bank_national_code?: string | null;
|
|
12748
|
+
bank_postal_code?: string | null;
|
|
12749
|
+
bank_state?: string | null;
|
|
12750
|
+
billing_email?: string | null;
|
|
12532
12751
|
bio?: string | null;
|
|
12533
12752
|
city?: string | null;
|
|
12753
|
+
coc_number?: string | null;
|
|
12534
12754
|
commercial_name?: string | null;
|
|
12535
12755
|
company_name?: string;
|
|
12536
12756
|
connection_status?: string;
|
|
@@ -12539,21 +12759,28 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12539
12759
|
created_at?: string;
|
|
12540
12760
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
12541
12761
|
customer_class?: string | null;
|
|
12762
|
+
customer_number?: string | null;
|
|
12763
|
+
discount_days?: number | null;
|
|
12764
|
+
discount_percentage?: number | null;
|
|
12542
12765
|
email?: string | null;
|
|
12543
12766
|
external_id?: string | null;
|
|
12767
|
+
fax?: string | null;
|
|
12544
12768
|
floriday_connection_id?: string | null;
|
|
12545
12769
|
floriday_organization_id?: string | null;
|
|
12546
12770
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
12547
12771
|
gln?: string | null;
|
|
12548
12772
|
house_number?: string | null;
|
|
12773
|
+
icp_country_code?: string | null;
|
|
12549
12774
|
id?: string;
|
|
12550
12775
|
is_active?: boolean;
|
|
12776
|
+
language?: string | null;
|
|
12551
12777
|
last_synced_at?: string | null;
|
|
12552
12778
|
logo_url?: string | null;
|
|
12553
12779
|
markets?: string[];
|
|
12554
12780
|
notes?: string | null;
|
|
12555
12781
|
organization_type?: string | null;
|
|
12556
12782
|
payment_methods?: string[];
|
|
12783
|
+
payment_term_days?: number | null;
|
|
12557
12784
|
phone?: string | null;
|
|
12558
12785
|
postal_code?: string | null;
|
|
12559
12786
|
product_groups?: string[];
|
|
@@ -12564,6 +12791,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
12564
12791
|
sync_status?: string;
|
|
12565
12792
|
trade_forms?: string[];
|
|
12566
12793
|
updated_at?: string;
|
|
12794
|
+
vat_display?: string | null;
|
|
12567
12795
|
vat_number?: string | null;
|
|
12568
12796
|
website?: string | null;
|
|
12569
12797
|
};
|
|
@@ -21583,7 +21811,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
21583
21811
|
};
|
|
21584
21812
|
cleanup_old_bookings: {
|
|
21585
21813
|
Args: never;
|
|
21586
|
-
Returns:
|
|
21814
|
+
Returns: undefined;
|
|
21587
21815
|
};
|
|
21588
21816
|
consume_floriday_rate_limit: {
|
|
21589
21817
|
Args: {
|
|
@@ -22736,6 +22964,9 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22736
22964
|
created_at: string;
|
|
22737
22965
|
extra_id: string;
|
|
22738
22966
|
id: string;
|
|
22967
|
+
original_unit_price: number | null;
|
|
22968
|
+
override_reason: string | null;
|
|
22969
|
+
override_unit_price: number | null;
|
|
22739
22970
|
quantity: number;
|
|
22740
22971
|
total_price: number;
|
|
22741
22972
|
unit_price: number;
|
|
@@ -22745,6 +22976,9 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22745
22976
|
created_at?: string;
|
|
22746
22977
|
extra_id: string;
|
|
22747
22978
|
id?: string;
|
|
22979
|
+
original_unit_price?: number | null;
|
|
22980
|
+
override_reason?: string | null;
|
|
22981
|
+
override_unit_price?: number | null;
|
|
22748
22982
|
quantity?: number;
|
|
22749
22983
|
total_price?: number;
|
|
22750
22984
|
unit_price?: number;
|
|
@@ -22754,6 +22988,9 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22754
22988
|
created_at?: string;
|
|
22755
22989
|
extra_id?: string;
|
|
22756
22990
|
id?: string;
|
|
22991
|
+
original_unit_price?: number | null;
|
|
22992
|
+
override_reason?: string | null;
|
|
22993
|
+
override_unit_price?: number | null;
|
|
22757
22994
|
quantity?: number;
|
|
22758
22995
|
total_price?: number;
|
|
22759
22996
|
unit_price?: number;
|
|
@@ -22774,6 +23011,9 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22774
23011
|
};
|
|
22775
23012
|
bookings: {
|
|
22776
23013
|
Row: {
|
|
23014
|
+
archive_reason: string | null;
|
|
23015
|
+
archived_at: string | null;
|
|
23016
|
+
archived_by: string | null;
|
|
22777
23017
|
company_name: string | null;
|
|
22778
23018
|
conflict_checked_at: string | null;
|
|
22779
23019
|
conflict_reason: string | null;
|
|
@@ -22791,7 +23031,12 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22791
23031
|
invoiced_at: string | null;
|
|
22792
23032
|
notes: string | null;
|
|
22793
23033
|
number_of_people: number;
|
|
23034
|
+
overridden_at: string | null;
|
|
23035
|
+
overridden_by: string | null;
|
|
23036
|
+
override_reason: string | null;
|
|
23037
|
+
price_override: boolean;
|
|
22794
23038
|
room_id: string;
|
|
23039
|
+
room_price_override: number | null;
|
|
22795
23040
|
start_time: string;
|
|
22796
23041
|
status: string;
|
|
22797
23042
|
total_excl_vat: number | null;
|
|
@@ -22800,6 +23045,9 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22800
23045
|
vat_amount: number | null;
|
|
22801
23046
|
};
|
|
22802
23047
|
Insert: {
|
|
23048
|
+
archive_reason?: string | null;
|
|
23049
|
+
archived_at?: string | null;
|
|
23050
|
+
archived_by?: string | null;
|
|
22803
23051
|
company_name?: string | null;
|
|
22804
23052
|
conflict_checked_at?: string | null;
|
|
22805
23053
|
conflict_reason?: string | null;
|
|
@@ -22817,7 +23065,12 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22817
23065
|
invoiced_at?: string | null;
|
|
22818
23066
|
notes?: string | null;
|
|
22819
23067
|
number_of_people?: number;
|
|
23068
|
+
overridden_at?: string | null;
|
|
23069
|
+
overridden_by?: string | null;
|
|
23070
|
+
override_reason?: string | null;
|
|
23071
|
+
price_override?: boolean;
|
|
22820
23072
|
room_id: string;
|
|
23073
|
+
room_price_override?: number | null;
|
|
22821
23074
|
start_time: string;
|
|
22822
23075
|
status?: string;
|
|
22823
23076
|
total_excl_vat?: number | null;
|
|
@@ -22826,6 +23079,9 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22826
23079
|
vat_amount?: number | null;
|
|
22827
23080
|
};
|
|
22828
23081
|
Update: {
|
|
23082
|
+
archive_reason?: string | null;
|
|
23083
|
+
archived_at?: string | null;
|
|
23084
|
+
archived_by?: string | null;
|
|
22829
23085
|
company_name?: string | null;
|
|
22830
23086
|
conflict_checked_at?: string | null;
|
|
22831
23087
|
conflict_reason?: string | null;
|
|
@@ -22843,7 +23099,12 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22843
23099
|
invoiced_at?: string | null;
|
|
22844
23100
|
notes?: string | null;
|
|
22845
23101
|
number_of_people?: number;
|
|
23102
|
+
overridden_at?: string | null;
|
|
23103
|
+
overridden_by?: string | null;
|
|
23104
|
+
override_reason?: string | null;
|
|
23105
|
+
price_override?: boolean;
|
|
22846
23106
|
room_id?: string;
|
|
23107
|
+
room_price_override?: number | null;
|
|
22847
23108
|
start_time?: string;
|
|
22848
23109
|
status?: string;
|
|
22849
23110
|
total_excl_vat?: number | null;
|
|
@@ -23672,8 +23933,27 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23672
23933
|
customers: {
|
|
23673
23934
|
Row: {
|
|
23674
23935
|
address: string | null;
|
|
23936
|
+
address_line1: string | null;
|
|
23937
|
+
address_line2: string | null;
|
|
23938
|
+
address_type: string | null;
|
|
23939
|
+
attention_to: string | null;
|
|
23940
|
+
bank_account_holder: string | null;
|
|
23941
|
+
bank_account_number: string | null;
|
|
23942
|
+
bank_address_line1: string | null;
|
|
23943
|
+
bank_address_line2: string | null;
|
|
23944
|
+
bank_bic: string | null;
|
|
23945
|
+
bank_city: string | null;
|
|
23946
|
+
bank_country: string | null;
|
|
23947
|
+
bank_house_number: string | null;
|
|
23948
|
+
bank_iban: string | null;
|
|
23949
|
+
bank_name: string | null;
|
|
23950
|
+
bank_national_code: string | null;
|
|
23951
|
+
bank_postal_code: string | null;
|
|
23952
|
+
bank_state: string | null;
|
|
23953
|
+
billing_email: string | null;
|
|
23675
23954
|
bio: string | null;
|
|
23676
23955
|
city: string | null;
|
|
23956
|
+
coc_number: string | null;
|
|
23677
23957
|
commercial_name: string | null;
|
|
23678
23958
|
company_name: string;
|
|
23679
23959
|
connection_status: string;
|
|
@@ -23682,21 +23962,28 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23682
23962
|
created_at: string;
|
|
23683
23963
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
23684
23964
|
customer_class: string | null;
|
|
23965
|
+
customer_number: string | null;
|
|
23966
|
+
discount_days: number | null;
|
|
23967
|
+
discount_percentage: number | null;
|
|
23685
23968
|
email: string | null;
|
|
23686
23969
|
external_id: string | null;
|
|
23970
|
+
fax: string | null;
|
|
23687
23971
|
floriday_connection_id: string | null;
|
|
23688
23972
|
floriday_organization_id: string | null;
|
|
23689
23973
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
23690
23974
|
gln: string | null;
|
|
23691
23975
|
house_number: string | null;
|
|
23976
|
+
icp_country_code: string | null;
|
|
23692
23977
|
id: string;
|
|
23693
23978
|
is_active: boolean;
|
|
23979
|
+
language: string | null;
|
|
23694
23980
|
last_synced_at: string | null;
|
|
23695
23981
|
logo_url: string | null;
|
|
23696
23982
|
markets: string[];
|
|
23697
23983
|
notes: string | null;
|
|
23698
23984
|
organization_type: string | null;
|
|
23699
23985
|
payment_methods: string[];
|
|
23986
|
+
payment_term_days: number | null;
|
|
23700
23987
|
phone: string | null;
|
|
23701
23988
|
postal_code: string | null;
|
|
23702
23989
|
product_groups: string[];
|
|
@@ -23707,13 +23994,33 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23707
23994
|
sync_status: string;
|
|
23708
23995
|
trade_forms: string[];
|
|
23709
23996
|
updated_at: string;
|
|
23997
|
+
vat_display: string | null;
|
|
23710
23998
|
vat_number: string | null;
|
|
23711
23999
|
website: string | null;
|
|
23712
24000
|
};
|
|
23713
24001
|
Insert: {
|
|
23714
24002
|
address?: string | null;
|
|
24003
|
+
address_line1?: string | null;
|
|
24004
|
+
address_line2?: string | null;
|
|
24005
|
+
address_type?: string | null;
|
|
24006
|
+
attention_to?: string | null;
|
|
24007
|
+
bank_account_holder?: string | null;
|
|
24008
|
+
bank_account_number?: string | null;
|
|
24009
|
+
bank_address_line1?: string | null;
|
|
24010
|
+
bank_address_line2?: string | null;
|
|
24011
|
+
bank_bic?: string | null;
|
|
24012
|
+
bank_city?: string | null;
|
|
24013
|
+
bank_country?: string | null;
|
|
24014
|
+
bank_house_number?: string | null;
|
|
24015
|
+
bank_iban?: string | null;
|
|
24016
|
+
bank_name?: string | null;
|
|
24017
|
+
bank_national_code?: string | null;
|
|
24018
|
+
bank_postal_code?: string | null;
|
|
24019
|
+
bank_state?: string | null;
|
|
24020
|
+
billing_email?: string | null;
|
|
23715
24021
|
bio?: string | null;
|
|
23716
24022
|
city?: string | null;
|
|
24023
|
+
coc_number?: string | null;
|
|
23717
24024
|
commercial_name?: string | null;
|
|
23718
24025
|
company_name: string;
|
|
23719
24026
|
connection_status?: string;
|
|
@@ -23722,21 +24029,28 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23722
24029
|
created_at?: string;
|
|
23723
24030
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
23724
24031
|
customer_class?: string | null;
|
|
24032
|
+
customer_number?: string | null;
|
|
24033
|
+
discount_days?: number | null;
|
|
24034
|
+
discount_percentage?: number | null;
|
|
23725
24035
|
email?: string | null;
|
|
23726
24036
|
external_id?: string | null;
|
|
24037
|
+
fax?: string | null;
|
|
23727
24038
|
floriday_connection_id?: string | null;
|
|
23728
24039
|
floriday_organization_id?: string | null;
|
|
23729
24040
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
23730
24041
|
gln?: string | null;
|
|
23731
24042
|
house_number?: string | null;
|
|
24043
|
+
icp_country_code?: string | null;
|
|
23732
24044
|
id?: string;
|
|
23733
24045
|
is_active?: boolean;
|
|
24046
|
+
language?: string | null;
|
|
23734
24047
|
last_synced_at?: string | null;
|
|
23735
24048
|
logo_url?: string | null;
|
|
23736
24049
|
markets?: string[];
|
|
23737
24050
|
notes?: string | null;
|
|
23738
24051
|
organization_type?: string | null;
|
|
23739
24052
|
payment_methods?: string[];
|
|
24053
|
+
payment_term_days?: number | null;
|
|
23740
24054
|
phone?: string | null;
|
|
23741
24055
|
postal_code?: string | null;
|
|
23742
24056
|
product_groups?: string[];
|
|
@@ -23747,13 +24061,33 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23747
24061
|
sync_status?: string;
|
|
23748
24062
|
trade_forms?: string[];
|
|
23749
24063
|
updated_at?: string;
|
|
24064
|
+
vat_display?: string | null;
|
|
23750
24065
|
vat_number?: string | null;
|
|
23751
24066
|
website?: string | null;
|
|
23752
24067
|
};
|
|
23753
24068
|
Update: {
|
|
23754
24069
|
address?: string | null;
|
|
24070
|
+
address_line1?: string | null;
|
|
24071
|
+
address_line2?: string | null;
|
|
24072
|
+
address_type?: string | null;
|
|
24073
|
+
attention_to?: string | null;
|
|
24074
|
+
bank_account_holder?: string | null;
|
|
24075
|
+
bank_account_number?: string | null;
|
|
24076
|
+
bank_address_line1?: string | null;
|
|
24077
|
+
bank_address_line2?: string | null;
|
|
24078
|
+
bank_bic?: string | null;
|
|
24079
|
+
bank_city?: string | null;
|
|
24080
|
+
bank_country?: string | null;
|
|
24081
|
+
bank_house_number?: string | null;
|
|
24082
|
+
bank_iban?: string | null;
|
|
24083
|
+
bank_name?: string | null;
|
|
24084
|
+
bank_national_code?: string | null;
|
|
24085
|
+
bank_postal_code?: string | null;
|
|
24086
|
+
bank_state?: string | null;
|
|
24087
|
+
billing_email?: string | null;
|
|
23755
24088
|
bio?: string | null;
|
|
23756
24089
|
city?: string | null;
|
|
24090
|
+
coc_number?: string | null;
|
|
23757
24091
|
commercial_name?: string | null;
|
|
23758
24092
|
company_name?: string;
|
|
23759
24093
|
connection_status?: string;
|
|
@@ -23762,21 +24096,28 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23762
24096
|
created_at?: string;
|
|
23763
24097
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
23764
24098
|
customer_class?: string | null;
|
|
24099
|
+
customer_number?: string | null;
|
|
24100
|
+
discount_days?: number | null;
|
|
24101
|
+
discount_percentage?: number | null;
|
|
23765
24102
|
email?: string | null;
|
|
23766
24103
|
external_id?: string | null;
|
|
24104
|
+
fax?: string | null;
|
|
23767
24105
|
floriday_connection_id?: string | null;
|
|
23768
24106
|
floriday_organization_id?: string | null;
|
|
23769
24107
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
23770
24108
|
gln?: string | null;
|
|
23771
24109
|
house_number?: string | null;
|
|
24110
|
+
icp_country_code?: string | null;
|
|
23772
24111
|
id?: string;
|
|
23773
24112
|
is_active?: boolean;
|
|
24113
|
+
language?: string | null;
|
|
23774
24114
|
last_synced_at?: string | null;
|
|
23775
24115
|
logo_url?: string | null;
|
|
23776
24116
|
markets?: string[];
|
|
23777
24117
|
notes?: string | null;
|
|
23778
24118
|
organization_type?: string | null;
|
|
23779
24119
|
payment_methods?: string[];
|
|
24120
|
+
payment_term_days?: number | null;
|
|
23780
24121
|
phone?: string | null;
|
|
23781
24122
|
postal_code?: string | null;
|
|
23782
24123
|
product_groups?: string[];
|
|
@@ -23787,6 +24128,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
23787
24128
|
sync_status?: string;
|
|
23788
24129
|
trade_forms?: string[];
|
|
23789
24130
|
updated_at?: string;
|
|
24131
|
+
vat_display?: string | null;
|
|
23790
24132
|
vat_number?: string | null;
|
|
23791
24133
|
website?: string | null;
|
|
23792
24134
|
};
|
|
@@ -32806,7 +33148,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
32806
33148
|
};
|
|
32807
33149
|
cleanup_old_bookings: {
|
|
32808
33150
|
Args: never;
|
|
32809
|
-
Returns:
|
|
33151
|
+
Returns: undefined;
|
|
32810
33152
|
};
|
|
32811
33153
|
consume_floriday_rate_limit: {
|
|
32812
33154
|
Args: {
|