@flowselections/floriday-voorraad 1.0.18 → 1.0.19
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 +1 -1
|
@@ -296,6 +296,9 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
296
296
|
created_at: string;
|
|
297
297
|
extra_id: string;
|
|
298
298
|
id: string;
|
|
299
|
+
original_unit_price: number | null;
|
|
300
|
+
override_reason: string | null;
|
|
301
|
+
override_unit_price: number | null;
|
|
299
302
|
quantity: number;
|
|
300
303
|
total_price: number;
|
|
301
304
|
unit_price: number;
|
|
@@ -305,6 +308,9 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
305
308
|
created_at?: string;
|
|
306
309
|
extra_id: string;
|
|
307
310
|
id?: string;
|
|
311
|
+
original_unit_price?: number | null;
|
|
312
|
+
override_reason?: string | null;
|
|
313
|
+
override_unit_price?: number | null;
|
|
308
314
|
quantity?: number;
|
|
309
315
|
total_price?: number;
|
|
310
316
|
unit_price?: number;
|
|
@@ -314,6 +320,9 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
314
320
|
created_at?: string;
|
|
315
321
|
extra_id?: string;
|
|
316
322
|
id?: string;
|
|
323
|
+
original_unit_price?: number | null;
|
|
324
|
+
override_reason?: string | null;
|
|
325
|
+
override_unit_price?: number | null;
|
|
317
326
|
quantity?: number;
|
|
318
327
|
total_price?: number;
|
|
319
328
|
unit_price?: number;
|
|
@@ -334,6 +343,9 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
334
343
|
};
|
|
335
344
|
bookings: {
|
|
336
345
|
Row: {
|
|
346
|
+
archive_reason: string | null;
|
|
347
|
+
archived_at: string | null;
|
|
348
|
+
archived_by: string | null;
|
|
337
349
|
company_name: string | null;
|
|
338
350
|
conflict_checked_at: string | null;
|
|
339
351
|
conflict_reason: string | null;
|
|
@@ -351,7 +363,12 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
351
363
|
invoiced_at: string | null;
|
|
352
364
|
notes: string | null;
|
|
353
365
|
number_of_people: number;
|
|
366
|
+
overridden_at: string | null;
|
|
367
|
+
overridden_by: string | null;
|
|
368
|
+
override_reason: string | null;
|
|
369
|
+
price_override: boolean;
|
|
354
370
|
room_id: string;
|
|
371
|
+
room_price_override: number | null;
|
|
355
372
|
start_time: string;
|
|
356
373
|
status: string;
|
|
357
374
|
total_excl_vat: number | null;
|
|
@@ -360,6 +377,9 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
360
377
|
vat_amount: number | null;
|
|
361
378
|
};
|
|
362
379
|
Insert: {
|
|
380
|
+
archive_reason?: string | null;
|
|
381
|
+
archived_at?: string | null;
|
|
382
|
+
archived_by?: string | null;
|
|
363
383
|
company_name?: string | null;
|
|
364
384
|
conflict_checked_at?: string | null;
|
|
365
385
|
conflict_reason?: string | null;
|
|
@@ -377,7 +397,12 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
377
397
|
invoiced_at?: string | null;
|
|
378
398
|
notes?: string | null;
|
|
379
399
|
number_of_people?: number;
|
|
400
|
+
overridden_at?: string | null;
|
|
401
|
+
overridden_by?: string | null;
|
|
402
|
+
override_reason?: string | null;
|
|
403
|
+
price_override?: boolean;
|
|
380
404
|
room_id: string;
|
|
405
|
+
room_price_override?: number | null;
|
|
381
406
|
start_time: string;
|
|
382
407
|
status?: string;
|
|
383
408
|
total_excl_vat?: number | null;
|
|
@@ -386,6 +411,9 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
386
411
|
vat_amount?: number | null;
|
|
387
412
|
};
|
|
388
413
|
Update: {
|
|
414
|
+
archive_reason?: string | null;
|
|
415
|
+
archived_at?: string | null;
|
|
416
|
+
archived_by?: string | null;
|
|
389
417
|
company_name?: string | null;
|
|
390
418
|
conflict_checked_at?: string | null;
|
|
391
419
|
conflict_reason?: string | null;
|
|
@@ -403,7 +431,12 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
403
431
|
invoiced_at?: string | null;
|
|
404
432
|
notes?: string | null;
|
|
405
433
|
number_of_people?: number;
|
|
434
|
+
overridden_at?: string | null;
|
|
435
|
+
overridden_by?: string | null;
|
|
436
|
+
override_reason?: string | null;
|
|
437
|
+
price_override?: boolean;
|
|
406
438
|
room_id?: string;
|
|
439
|
+
room_price_override?: number | null;
|
|
407
440
|
start_time?: string;
|
|
408
441
|
status?: string;
|
|
409
442
|
total_excl_vat?: number | null;
|
|
@@ -1232,8 +1265,27 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1232
1265
|
customers: {
|
|
1233
1266
|
Row: {
|
|
1234
1267
|
address: string | null;
|
|
1268
|
+
address_line1: string | null;
|
|
1269
|
+
address_line2: string | null;
|
|
1270
|
+
address_type: string | null;
|
|
1271
|
+
attention_to: string | null;
|
|
1272
|
+
bank_account_holder: string | null;
|
|
1273
|
+
bank_account_number: string | null;
|
|
1274
|
+
bank_address_line1: string | null;
|
|
1275
|
+
bank_address_line2: string | null;
|
|
1276
|
+
bank_bic: string | null;
|
|
1277
|
+
bank_city: string | null;
|
|
1278
|
+
bank_country: string | null;
|
|
1279
|
+
bank_house_number: string | null;
|
|
1280
|
+
bank_iban: string | null;
|
|
1281
|
+
bank_name: string | null;
|
|
1282
|
+
bank_national_code: string | null;
|
|
1283
|
+
bank_postal_code: string | null;
|
|
1284
|
+
bank_state: string | null;
|
|
1285
|
+
billing_email: string | null;
|
|
1235
1286
|
bio: string | null;
|
|
1236
1287
|
city: string | null;
|
|
1288
|
+
coc_number: string | null;
|
|
1237
1289
|
commercial_name: string | null;
|
|
1238
1290
|
company_name: string;
|
|
1239
1291
|
connection_status: string;
|
|
@@ -1242,21 +1294,28 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1242
1294
|
created_at: string;
|
|
1243
1295
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
1244
1296
|
customer_class: string | null;
|
|
1297
|
+
customer_number: string | null;
|
|
1298
|
+
discount_days: number | null;
|
|
1299
|
+
discount_percentage: number | null;
|
|
1245
1300
|
email: string | null;
|
|
1246
1301
|
external_id: string | null;
|
|
1302
|
+
fax: string | null;
|
|
1247
1303
|
floriday_connection_id: string | null;
|
|
1248
1304
|
floriday_organization_id: string | null;
|
|
1249
1305
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
1250
1306
|
gln: string | null;
|
|
1251
1307
|
house_number: string | null;
|
|
1308
|
+
icp_country_code: string | null;
|
|
1252
1309
|
id: string;
|
|
1253
1310
|
is_active: boolean;
|
|
1311
|
+
language: string | null;
|
|
1254
1312
|
last_synced_at: string | null;
|
|
1255
1313
|
logo_url: string | null;
|
|
1256
1314
|
markets: string[];
|
|
1257
1315
|
notes: string | null;
|
|
1258
1316
|
organization_type: string | null;
|
|
1259
1317
|
payment_methods: string[];
|
|
1318
|
+
payment_term_days: number | null;
|
|
1260
1319
|
phone: string | null;
|
|
1261
1320
|
postal_code: string | null;
|
|
1262
1321
|
product_groups: string[];
|
|
@@ -1267,13 +1326,33 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1267
1326
|
sync_status: string;
|
|
1268
1327
|
trade_forms: string[];
|
|
1269
1328
|
updated_at: string;
|
|
1329
|
+
vat_display: string | null;
|
|
1270
1330
|
vat_number: string | null;
|
|
1271
1331
|
website: string | null;
|
|
1272
1332
|
};
|
|
1273
1333
|
Insert: {
|
|
1274
1334
|
address?: string | null;
|
|
1335
|
+
address_line1?: string | null;
|
|
1336
|
+
address_line2?: string | null;
|
|
1337
|
+
address_type?: string | null;
|
|
1338
|
+
attention_to?: string | null;
|
|
1339
|
+
bank_account_holder?: string | null;
|
|
1340
|
+
bank_account_number?: string | null;
|
|
1341
|
+
bank_address_line1?: string | null;
|
|
1342
|
+
bank_address_line2?: string | null;
|
|
1343
|
+
bank_bic?: string | null;
|
|
1344
|
+
bank_city?: string | null;
|
|
1345
|
+
bank_country?: string | null;
|
|
1346
|
+
bank_house_number?: string | null;
|
|
1347
|
+
bank_iban?: string | null;
|
|
1348
|
+
bank_name?: string | null;
|
|
1349
|
+
bank_national_code?: string | null;
|
|
1350
|
+
bank_postal_code?: string | null;
|
|
1351
|
+
bank_state?: string | null;
|
|
1352
|
+
billing_email?: string | null;
|
|
1275
1353
|
bio?: string | null;
|
|
1276
1354
|
city?: string | null;
|
|
1355
|
+
coc_number?: string | null;
|
|
1277
1356
|
commercial_name?: string | null;
|
|
1278
1357
|
company_name: string;
|
|
1279
1358
|
connection_status?: string;
|
|
@@ -1282,21 +1361,28 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1282
1361
|
created_at?: string;
|
|
1283
1362
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
1284
1363
|
customer_class?: string | null;
|
|
1364
|
+
customer_number?: string | null;
|
|
1365
|
+
discount_days?: number | null;
|
|
1366
|
+
discount_percentage?: number | null;
|
|
1285
1367
|
email?: string | null;
|
|
1286
1368
|
external_id?: string | null;
|
|
1369
|
+
fax?: string | null;
|
|
1287
1370
|
floriday_connection_id?: string | null;
|
|
1288
1371
|
floriday_organization_id?: string | null;
|
|
1289
1372
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
1290
1373
|
gln?: string | null;
|
|
1291
1374
|
house_number?: string | null;
|
|
1375
|
+
icp_country_code?: string | null;
|
|
1292
1376
|
id?: string;
|
|
1293
1377
|
is_active?: boolean;
|
|
1378
|
+
language?: string | null;
|
|
1294
1379
|
last_synced_at?: string | null;
|
|
1295
1380
|
logo_url?: string | null;
|
|
1296
1381
|
markets?: string[];
|
|
1297
1382
|
notes?: string | null;
|
|
1298
1383
|
organization_type?: string | null;
|
|
1299
1384
|
payment_methods?: string[];
|
|
1385
|
+
payment_term_days?: number | null;
|
|
1300
1386
|
phone?: string | null;
|
|
1301
1387
|
postal_code?: string | null;
|
|
1302
1388
|
product_groups?: string[];
|
|
@@ -1307,13 +1393,33 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1307
1393
|
sync_status?: string;
|
|
1308
1394
|
trade_forms?: string[];
|
|
1309
1395
|
updated_at?: string;
|
|
1396
|
+
vat_display?: string | null;
|
|
1310
1397
|
vat_number?: string | null;
|
|
1311
1398
|
website?: string | null;
|
|
1312
1399
|
};
|
|
1313
1400
|
Update: {
|
|
1314
1401
|
address?: string | null;
|
|
1402
|
+
address_line1?: string | null;
|
|
1403
|
+
address_line2?: string | null;
|
|
1404
|
+
address_type?: string | null;
|
|
1405
|
+
attention_to?: string | null;
|
|
1406
|
+
bank_account_holder?: string | null;
|
|
1407
|
+
bank_account_number?: string | null;
|
|
1408
|
+
bank_address_line1?: string | null;
|
|
1409
|
+
bank_address_line2?: string | null;
|
|
1410
|
+
bank_bic?: string | null;
|
|
1411
|
+
bank_city?: string | null;
|
|
1412
|
+
bank_country?: string | null;
|
|
1413
|
+
bank_house_number?: string | null;
|
|
1414
|
+
bank_iban?: string | null;
|
|
1415
|
+
bank_name?: string | null;
|
|
1416
|
+
bank_national_code?: string | null;
|
|
1417
|
+
bank_postal_code?: string | null;
|
|
1418
|
+
bank_state?: string | null;
|
|
1419
|
+
billing_email?: string | null;
|
|
1315
1420
|
bio?: string | null;
|
|
1316
1421
|
city?: string | null;
|
|
1422
|
+
coc_number?: string | null;
|
|
1317
1423
|
commercial_name?: string | null;
|
|
1318
1424
|
company_name?: string;
|
|
1319
1425
|
connection_status?: string;
|
|
@@ -1322,21 +1428,28 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1322
1428
|
created_at?: string;
|
|
1323
1429
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
1324
1430
|
customer_class?: string | null;
|
|
1431
|
+
customer_number?: string | null;
|
|
1432
|
+
discount_days?: number | null;
|
|
1433
|
+
discount_percentage?: number | null;
|
|
1325
1434
|
email?: string | null;
|
|
1326
1435
|
external_id?: string | null;
|
|
1436
|
+
fax?: string | null;
|
|
1327
1437
|
floriday_connection_id?: string | null;
|
|
1328
1438
|
floriday_organization_id?: string | null;
|
|
1329
1439
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
1330
1440
|
gln?: string | null;
|
|
1331
1441
|
house_number?: string | null;
|
|
1442
|
+
icp_country_code?: string | null;
|
|
1332
1443
|
id?: string;
|
|
1333
1444
|
is_active?: boolean;
|
|
1445
|
+
language?: string | null;
|
|
1334
1446
|
last_synced_at?: string | null;
|
|
1335
1447
|
logo_url?: string | null;
|
|
1336
1448
|
markets?: string[];
|
|
1337
1449
|
notes?: string | null;
|
|
1338
1450
|
organization_type?: string | null;
|
|
1339
1451
|
payment_methods?: string[];
|
|
1452
|
+
payment_term_days?: number | null;
|
|
1340
1453
|
phone?: string | null;
|
|
1341
1454
|
postal_code?: string | null;
|
|
1342
1455
|
product_groups?: string[];
|
|
@@ -1347,6 +1460,7 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
1347
1460
|
sync_status?: string;
|
|
1348
1461
|
trade_forms?: string[];
|
|
1349
1462
|
updated_at?: string;
|
|
1463
|
+
vat_display?: string | null;
|
|
1350
1464
|
vat_number?: string | null;
|
|
1351
1465
|
website?: string | null;
|
|
1352
1466
|
};
|
|
@@ -10366,7 +10480,7 @@ export declare const gatewaySchemaFn: import("@tanstack/start-client-core").Requ
|
|
|
10366
10480
|
};
|
|
10367
10481
|
cleanup_old_bookings: {
|
|
10368
10482
|
Args: never;
|
|
10369
|
-
Returns:
|
|
10483
|
+
Returns: undefined;
|
|
10370
10484
|
};
|
|
10371
10485
|
consume_floriday_rate_limit: {
|
|
10372
10486
|
Args: {
|
|
@@ -11519,6 +11633,9 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11519
11633
|
created_at: string;
|
|
11520
11634
|
extra_id: string;
|
|
11521
11635
|
id: string;
|
|
11636
|
+
original_unit_price: number | null;
|
|
11637
|
+
override_reason: string | null;
|
|
11638
|
+
override_unit_price: number | null;
|
|
11522
11639
|
quantity: number;
|
|
11523
11640
|
total_price: number;
|
|
11524
11641
|
unit_price: number;
|
|
@@ -11528,6 +11645,9 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11528
11645
|
created_at?: string;
|
|
11529
11646
|
extra_id: string;
|
|
11530
11647
|
id?: string;
|
|
11648
|
+
original_unit_price?: number | null;
|
|
11649
|
+
override_reason?: string | null;
|
|
11650
|
+
override_unit_price?: number | null;
|
|
11531
11651
|
quantity?: number;
|
|
11532
11652
|
total_price?: number;
|
|
11533
11653
|
unit_price?: number;
|
|
@@ -11537,6 +11657,9 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11537
11657
|
created_at?: string;
|
|
11538
11658
|
extra_id?: string;
|
|
11539
11659
|
id?: string;
|
|
11660
|
+
original_unit_price?: number | null;
|
|
11661
|
+
override_reason?: string | null;
|
|
11662
|
+
override_unit_price?: number | null;
|
|
11540
11663
|
quantity?: number;
|
|
11541
11664
|
total_price?: number;
|
|
11542
11665
|
unit_price?: number;
|
|
@@ -11557,6 +11680,9 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11557
11680
|
};
|
|
11558
11681
|
bookings: {
|
|
11559
11682
|
Row: {
|
|
11683
|
+
archive_reason: string | null;
|
|
11684
|
+
archived_at: string | null;
|
|
11685
|
+
archived_by: string | null;
|
|
11560
11686
|
company_name: string | null;
|
|
11561
11687
|
conflict_checked_at: string | null;
|
|
11562
11688
|
conflict_reason: string | null;
|
|
@@ -11574,7 +11700,12 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11574
11700
|
invoiced_at: string | null;
|
|
11575
11701
|
notes: string | null;
|
|
11576
11702
|
number_of_people: number;
|
|
11703
|
+
overridden_at: string | null;
|
|
11704
|
+
overridden_by: string | null;
|
|
11705
|
+
override_reason: string | null;
|
|
11706
|
+
price_override: boolean;
|
|
11577
11707
|
room_id: string;
|
|
11708
|
+
room_price_override: number | null;
|
|
11578
11709
|
start_time: string;
|
|
11579
11710
|
status: string;
|
|
11580
11711
|
total_excl_vat: number | null;
|
|
@@ -11583,6 +11714,9 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11583
11714
|
vat_amount: number | null;
|
|
11584
11715
|
};
|
|
11585
11716
|
Insert: {
|
|
11717
|
+
archive_reason?: string | null;
|
|
11718
|
+
archived_at?: string | null;
|
|
11719
|
+
archived_by?: string | null;
|
|
11586
11720
|
company_name?: string | null;
|
|
11587
11721
|
conflict_checked_at?: string | null;
|
|
11588
11722
|
conflict_reason?: string | null;
|
|
@@ -11600,7 +11734,12 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11600
11734
|
invoiced_at?: string | null;
|
|
11601
11735
|
notes?: string | null;
|
|
11602
11736
|
number_of_people?: number;
|
|
11737
|
+
overridden_at?: string | null;
|
|
11738
|
+
overridden_by?: string | null;
|
|
11739
|
+
override_reason?: string | null;
|
|
11740
|
+
price_override?: boolean;
|
|
11603
11741
|
room_id: string;
|
|
11742
|
+
room_price_override?: number | null;
|
|
11604
11743
|
start_time: string;
|
|
11605
11744
|
status?: string;
|
|
11606
11745
|
total_excl_vat?: number | null;
|
|
@@ -11609,6 +11748,9 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11609
11748
|
vat_amount?: number | null;
|
|
11610
11749
|
};
|
|
11611
11750
|
Update: {
|
|
11751
|
+
archive_reason?: string | null;
|
|
11752
|
+
archived_at?: string | null;
|
|
11753
|
+
archived_by?: string | null;
|
|
11612
11754
|
company_name?: string | null;
|
|
11613
11755
|
conflict_checked_at?: string | null;
|
|
11614
11756
|
conflict_reason?: string | null;
|
|
@@ -11626,7 +11768,12 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
11626
11768
|
invoiced_at?: string | null;
|
|
11627
11769
|
notes?: string | null;
|
|
11628
11770
|
number_of_people?: number;
|
|
11771
|
+
overridden_at?: string | null;
|
|
11772
|
+
overridden_by?: string | null;
|
|
11773
|
+
override_reason?: string | null;
|
|
11774
|
+
price_override?: boolean;
|
|
11629
11775
|
room_id?: string;
|
|
11776
|
+
room_price_override?: number | null;
|
|
11630
11777
|
start_time?: string;
|
|
11631
11778
|
status?: string;
|
|
11632
11779
|
total_excl_vat?: number | null;
|
|
@@ -12455,8 +12602,27 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12455
12602
|
customers: {
|
|
12456
12603
|
Row: {
|
|
12457
12604
|
address: string | null;
|
|
12605
|
+
address_line1: string | null;
|
|
12606
|
+
address_line2: string | null;
|
|
12607
|
+
address_type: string | null;
|
|
12608
|
+
attention_to: string | null;
|
|
12609
|
+
bank_account_holder: string | null;
|
|
12610
|
+
bank_account_number: string | null;
|
|
12611
|
+
bank_address_line1: string | null;
|
|
12612
|
+
bank_address_line2: string | null;
|
|
12613
|
+
bank_bic: string | null;
|
|
12614
|
+
bank_city: string | null;
|
|
12615
|
+
bank_country: string | null;
|
|
12616
|
+
bank_house_number: string | null;
|
|
12617
|
+
bank_iban: string | null;
|
|
12618
|
+
bank_name: string | null;
|
|
12619
|
+
bank_national_code: string | null;
|
|
12620
|
+
bank_postal_code: string | null;
|
|
12621
|
+
bank_state: string | null;
|
|
12622
|
+
billing_email: string | null;
|
|
12458
12623
|
bio: string | null;
|
|
12459
12624
|
city: string | null;
|
|
12625
|
+
coc_number: string | null;
|
|
12460
12626
|
commercial_name: string | null;
|
|
12461
12627
|
company_name: string;
|
|
12462
12628
|
connection_status: string;
|
|
@@ -12465,21 +12631,28 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12465
12631
|
created_at: string;
|
|
12466
12632
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
12467
12633
|
customer_class: string | null;
|
|
12634
|
+
customer_number: string | null;
|
|
12635
|
+
discount_days: number | null;
|
|
12636
|
+
discount_percentage: number | null;
|
|
12468
12637
|
email: string | null;
|
|
12469
12638
|
external_id: string | null;
|
|
12639
|
+
fax: string | null;
|
|
12470
12640
|
floriday_connection_id: string | null;
|
|
12471
12641
|
floriday_organization_id: string | null;
|
|
12472
12642
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
12473
12643
|
gln: string | null;
|
|
12474
12644
|
house_number: string | null;
|
|
12645
|
+
icp_country_code: string | null;
|
|
12475
12646
|
id: string;
|
|
12476
12647
|
is_active: boolean;
|
|
12648
|
+
language: string | null;
|
|
12477
12649
|
last_synced_at: string | null;
|
|
12478
12650
|
logo_url: string | null;
|
|
12479
12651
|
markets: string[];
|
|
12480
12652
|
notes: string | null;
|
|
12481
12653
|
organization_type: string | null;
|
|
12482
12654
|
payment_methods: string[];
|
|
12655
|
+
payment_term_days: number | null;
|
|
12483
12656
|
phone: string | null;
|
|
12484
12657
|
postal_code: string | null;
|
|
12485
12658
|
product_groups: string[];
|
|
@@ -12490,13 +12663,33 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12490
12663
|
sync_status: string;
|
|
12491
12664
|
trade_forms: string[];
|
|
12492
12665
|
updated_at: string;
|
|
12666
|
+
vat_display: string | null;
|
|
12493
12667
|
vat_number: string | null;
|
|
12494
12668
|
website: string | null;
|
|
12495
12669
|
};
|
|
12496
12670
|
Insert: {
|
|
12497
12671
|
address?: string | null;
|
|
12672
|
+
address_line1?: string | null;
|
|
12673
|
+
address_line2?: string | null;
|
|
12674
|
+
address_type?: string | null;
|
|
12675
|
+
attention_to?: string | null;
|
|
12676
|
+
bank_account_holder?: string | null;
|
|
12677
|
+
bank_account_number?: string | null;
|
|
12678
|
+
bank_address_line1?: string | null;
|
|
12679
|
+
bank_address_line2?: string | null;
|
|
12680
|
+
bank_bic?: string | null;
|
|
12681
|
+
bank_city?: string | null;
|
|
12682
|
+
bank_country?: string | null;
|
|
12683
|
+
bank_house_number?: string | null;
|
|
12684
|
+
bank_iban?: string | null;
|
|
12685
|
+
bank_name?: string | null;
|
|
12686
|
+
bank_national_code?: string | null;
|
|
12687
|
+
bank_postal_code?: string | null;
|
|
12688
|
+
bank_state?: string | null;
|
|
12689
|
+
billing_email?: string | null;
|
|
12498
12690
|
bio?: string | null;
|
|
12499
12691
|
city?: string | null;
|
|
12692
|
+
coc_number?: string | null;
|
|
12500
12693
|
commercial_name?: string | null;
|
|
12501
12694
|
company_name: string;
|
|
12502
12695
|
connection_status?: string;
|
|
@@ -12505,21 +12698,28 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12505
12698
|
created_at?: string;
|
|
12506
12699
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
12507
12700
|
customer_class?: string | null;
|
|
12701
|
+
customer_number?: string | null;
|
|
12702
|
+
discount_days?: number | null;
|
|
12703
|
+
discount_percentage?: number | null;
|
|
12508
12704
|
email?: string | null;
|
|
12509
12705
|
external_id?: string | null;
|
|
12706
|
+
fax?: string | null;
|
|
12510
12707
|
floriday_connection_id?: string | null;
|
|
12511
12708
|
floriday_organization_id?: string | null;
|
|
12512
12709
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
12513
12710
|
gln?: string | null;
|
|
12514
12711
|
house_number?: string | null;
|
|
12712
|
+
icp_country_code?: string | null;
|
|
12515
12713
|
id?: string;
|
|
12516
12714
|
is_active?: boolean;
|
|
12715
|
+
language?: string | null;
|
|
12517
12716
|
last_synced_at?: string | null;
|
|
12518
12717
|
logo_url?: string | null;
|
|
12519
12718
|
markets?: string[];
|
|
12520
12719
|
notes?: string | null;
|
|
12521
12720
|
organization_type?: string | null;
|
|
12522
12721
|
payment_methods?: string[];
|
|
12722
|
+
payment_term_days?: number | null;
|
|
12523
12723
|
phone?: string | null;
|
|
12524
12724
|
postal_code?: string | null;
|
|
12525
12725
|
product_groups?: string[];
|
|
@@ -12530,13 +12730,33 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12530
12730
|
sync_status?: string;
|
|
12531
12731
|
trade_forms?: string[];
|
|
12532
12732
|
updated_at?: string;
|
|
12733
|
+
vat_display?: string | null;
|
|
12533
12734
|
vat_number?: string | null;
|
|
12534
12735
|
website?: string | null;
|
|
12535
12736
|
};
|
|
12536
12737
|
Update: {
|
|
12537
12738
|
address?: string | null;
|
|
12739
|
+
address_line1?: string | null;
|
|
12740
|
+
address_line2?: string | null;
|
|
12741
|
+
address_type?: string | null;
|
|
12742
|
+
attention_to?: string | null;
|
|
12743
|
+
bank_account_holder?: string | null;
|
|
12744
|
+
bank_account_number?: string | null;
|
|
12745
|
+
bank_address_line1?: string | null;
|
|
12746
|
+
bank_address_line2?: string | null;
|
|
12747
|
+
bank_bic?: string | null;
|
|
12748
|
+
bank_city?: string | null;
|
|
12749
|
+
bank_country?: string | null;
|
|
12750
|
+
bank_house_number?: string | null;
|
|
12751
|
+
bank_iban?: string | null;
|
|
12752
|
+
bank_name?: string | null;
|
|
12753
|
+
bank_national_code?: string | null;
|
|
12754
|
+
bank_postal_code?: string | null;
|
|
12755
|
+
bank_state?: string | null;
|
|
12756
|
+
billing_email?: string | null;
|
|
12538
12757
|
bio?: string | null;
|
|
12539
12758
|
city?: string | null;
|
|
12759
|
+
coc_number?: string | null;
|
|
12540
12760
|
commercial_name?: string | null;
|
|
12541
12761
|
company_name?: string;
|
|
12542
12762
|
connection_status?: string;
|
|
@@ -12545,21 +12765,28 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12545
12765
|
created_at?: string;
|
|
12546
12766
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
12547
12767
|
customer_class?: string | null;
|
|
12768
|
+
customer_number?: string | null;
|
|
12769
|
+
discount_days?: number | null;
|
|
12770
|
+
discount_percentage?: number | null;
|
|
12548
12771
|
email?: string | null;
|
|
12549
12772
|
external_id?: string | null;
|
|
12773
|
+
fax?: string | null;
|
|
12550
12774
|
floriday_connection_id?: string | null;
|
|
12551
12775
|
floriday_organization_id?: string | null;
|
|
12552
12776
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
12553
12777
|
gln?: string | null;
|
|
12554
12778
|
house_number?: string | null;
|
|
12779
|
+
icp_country_code?: string | null;
|
|
12555
12780
|
id?: string;
|
|
12556
12781
|
is_active?: boolean;
|
|
12782
|
+
language?: string | null;
|
|
12557
12783
|
last_synced_at?: string | null;
|
|
12558
12784
|
logo_url?: string | null;
|
|
12559
12785
|
markets?: string[];
|
|
12560
12786
|
notes?: string | null;
|
|
12561
12787
|
organization_type?: string | null;
|
|
12562
12788
|
payment_methods?: string[];
|
|
12789
|
+
payment_term_days?: number | null;
|
|
12563
12790
|
phone?: string | null;
|
|
12564
12791
|
postal_code?: string | null;
|
|
12565
12792
|
product_groups?: string[];
|
|
@@ -12570,6 +12797,7 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
12570
12797
|
sync_status?: string;
|
|
12571
12798
|
trade_forms?: string[];
|
|
12572
12799
|
updated_at?: string;
|
|
12800
|
+
vat_display?: string | null;
|
|
12573
12801
|
vat_number?: string | null;
|
|
12574
12802
|
website?: string | null;
|
|
12575
12803
|
};
|
|
@@ -21589,7 +21817,7 @@ export declare const gatewayCodeListFn: import("@tanstack/start-client-core").Re
|
|
|
21589
21817
|
};
|
|
21590
21818
|
cleanup_old_bookings: {
|
|
21591
21819
|
Args: never;
|
|
21592
|
-
Returns:
|
|
21820
|
+
Returns: undefined;
|
|
21593
21821
|
};
|
|
21594
21822
|
consume_floriday_rate_limit: {
|
|
21595
21823
|
Args: {
|
|
@@ -22742,6 +22970,9 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22742
22970
|
created_at: string;
|
|
22743
22971
|
extra_id: string;
|
|
22744
22972
|
id: string;
|
|
22973
|
+
original_unit_price: number | null;
|
|
22974
|
+
override_reason: string | null;
|
|
22975
|
+
override_unit_price: number | null;
|
|
22745
22976
|
quantity: number;
|
|
22746
22977
|
total_price: number;
|
|
22747
22978
|
unit_price: number;
|
|
@@ -22751,6 +22982,9 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22751
22982
|
created_at?: string;
|
|
22752
22983
|
extra_id: string;
|
|
22753
22984
|
id?: string;
|
|
22985
|
+
original_unit_price?: number | null;
|
|
22986
|
+
override_reason?: string | null;
|
|
22987
|
+
override_unit_price?: number | null;
|
|
22754
22988
|
quantity?: number;
|
|
22755
22989
|
total_price?: number;
|
|
22756
22990
|
unit_price?: number;
|
|
@@ -22760,6 +22994,9 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22760
22994
|
created_at?: string;
|
|
22761
22995
|
extra_id?: string;
|
|
22762
22996
|
id?: string;
|
|
22997
|
+
original_unit_price?: number | null;
|
|
22998
|
+
override_reason?: string | null;
|
|
22999
|
+
override_unit_price?: number | null;
|
|
22763
23000
|
quantity?: number;
|
|
22764
23001
|
total_price?: number;
|
|
22765
23002
|
unit_price?: number;
|
|
@@ -22780,6 +23017,9 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22780
23017
|
};
|
|
22781
23018
|
bookings: {
|
|
22782
23019
|
Row: {
|
|
23020
|
+
archive_reason: string | null;
|
|
23021
|
+
archived_at: string | null;
|
|
23022
|
+
archived_by: string | null;
|
|
22783
23023
|
company_name: string | null;
|
|
22784
23024
|
conflict_checked_at: string | null;
|
|
22785
23025
|
conflict_reason: string | null;
|
|
@@ -22797,7 +23037,12 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22797
23037
|
invoiced_at: string | null;
|
|
22798
23038
|
notes: string | null;
|
|
22799
23039
|
number_of_people: number;
|
|
23040
|
+
overridden_at: string | null;
|
|
23041
|
+
overridden_by: string | null;
|
|
23042
|
+
override_reason: string | null;
|
|
23043
|
+
price_override: boolean;
|
|
22800
23044
|
room_id: string;
|
|
23045
|
+
room_price_override: number | null;
|
|
22801
23046
|
start_time: string;
|
|
22802
23047
|
status: string;
|
|
22803
23048
|
total_excl_vat: number | null;
|
|
@@ -22806,6 +23051,9 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22806
23051
|
vat_amount: number | null;
|
|
22807
23052
|
};
|
|
22808
23053
|
Insert: {
|
|
23054
|
+
archive_reason?: string | null;
|
|
23055
|
+
archived_at?: string | null;
|
|
23056
|
+
archived_by?: string | null;
|
|
22809
23057
|
company_name?: string | null;
|
|
22810
23058
|
conflict_checked_at?: string | null;
|
|
22811
23059
|
conflict_reason?: string | null;
|
|
@@ -22823,7 +23071,12 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22823
23071
|
invoiced_at?: string | null;
|
|
22824
23072
|
notes?: string | null;
|
|
22825
23073
|
number_of_people?: number;
|
|
23074
|
+
overridden_at?: string | null;
|
|
23075
|
+
overridden_by?: string | null;
|
|
23076
|
+
override_reason?: string | null;
|
|
23077
|
+
price_override?: boolean;
|
|
22826
23078
|
room_id: string;
|
|
23079
|
+
room_price_override?: number | null;
|
|
22827
23080
|
start_time: string;
|
|
22828
23081
|
status?: string;
|
|
22829
23082
|
total_excl_vat?: number | null;
|
|
@@ -22832,6 +23085,9 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22832
23085
|
vat_amount?: number | null;
|
|
22833
23086
|
};
|
|
22834
23087
|
Update: {
|
|
23088
|
+
archive_reason?: string | null;
|
|
23089
|
+
archived_at?: string | null;
|
|
23090
|
+
archived_by?: string | null;
|
|
22835
23091
|
company_name?: string | null;
|
|
22836
23092
|
conflict_checked_at?: string | null;
|
|
22837
23093
|
conflict_reason?: string | null;
|
|
@@ -22849,7 +23105,12 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
22849
23105
|
invoiced_at?: string | null;
|
|
22850
23106
|
notes?: string | null;
|
|
22851
23107
|
number_of_people?: number;
|
|
23108
|
+
overridden_at?: string | null;
|
|
23109
|
+
overridden_by?: string | null;
|
|
23110
|
+
override_reason?: string | null;
|
|
23111
|
+
price_override?: boolean;
|
|
22852
23112
|
room_id?: string;
|
|
23113
|
+
room_price_override?: number | null;
|
|
22853
23114
|
start_time?: string;
|
|
22854
23115
|
status?: string;
|
|
22855
23116
|
total_excl_vat?: number | null;
|
|
@@ -23678,8 +23939,27 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23678
23939
|
customers: {
|
|
23679
23940
|
Row: {
|
|
23680
23941
|
address: string | null;
|
|
23942
|
+
address_line1: string | null;
|
|
23943
|
+
address_line2: string | null;
|
|
23944
|
+
address_type: string | null;
|
|
23945
|
+
attention_to: string | null;
|
|
23946
|
+
bank_account_holder: string | null;
|
|
23947
|
+
bank_account_number: string | null;
|
|
23948
|
+
bank_address_line1: string | null;
|
|
23949
|
+
bank_address_line2: string | null;
|
|
23950
|
+
bank_bic: string | null;
|
|
23951
|
+
bank_city: string | null;
|
|
23952
|
+
bank_country: string | null;
|
|
23953
|
+
bank_house_number: string | null;
|
|
23954
|
+
bank_iban: string | null;
|
|
23955
|
+
bank_name: string | null;
|
|
23956
|
+
bank_national_code: string | null;
|
|
23957
|
+
bank_postal_code: string | null;
|
|
23958
|
+
bank_state: string | null;
|
|
23959
|
+
billing_email: string | null;
|
|
23681
23960
|
bio: string | null;
|
|
23682
23961
|
city: string | null;
|
|
23962
|
+
coc_number: string | null;
|
|
23683
23963
|
commercial_name: string | null;
|
|
23684
23964
|
company_name: string;
|
|
23685
23965
|
connection_status: string;
|
|
@@ -23688,21 +23968,28 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23688
23968
|
created_at: string;
|
|
23689
23969
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
23690
23970
|
customer_class: string | null;
|
|
23971
|
+
customer_number: string | null;
|
|
23972
|
+
discount_days: number | null;
|
|
23973
|
+
discount_percentage: number | null;
|
|
23691
23974
|
email: string | null;
|
|
23692
23975
|
external_id: string | null;
|
|
23976
|
+
fax: string | null;
|
|
23693
23977
|
floriday_connection_id: string | null;
|
|
23694
23978
|
floriday_organization_id: string | null;
|
|
23695
23979
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
23696
23980
|
gln: string | null;
|
|
23697
23981
|
house_number: string | null;
|
|
23982
|
+
icp_country_code: string | null;
|
|
23698
23983
|
id: string;
|
|
23699
23984
|
is_active: boolean;
|
|
23985
|
+
language: string | null;
|
|
23700
23986
|
last_synced_at: string | null;
|
|
23701
23987
|
logo_url: string | null;
|
|
23702
23988
|
markets: string[];
|
|
23703
23989
|
notes: string | null;
|
|
23704
23990
|
organization_type: string | null;
|
|
23705
23991
|
payment_methods: string[];
|
|
23992
|
+
payment_term_days: number | null;
|
|
23706
23993
|
phone: string | null;
|
|
23707
23994
|
postal_code: string | null;
|
|
23708
23995
|
product_groups: string[];
|
|
@@ -23713,13 +24000,33 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23713
24000
|
sync_status: string;
|
|
23714
24001
|
trade_forms: string[];
|
|
23715
24002
|
updated_at: string;
|
|
24003
|
+
vat_display: string | null;
|
|
23716
24004
|
vat_number: string | null;
|
|
23717
24005
|
website: string | null;
|
|
23718
24006
|
};
|
|
23719
24007
|
Insert: {
|
|
23720
24008
|
address?: string | null;
|
|
24009
|
+
address_line1?: string | null;
|
|
24010
|
+
address_line2?: string | null;
|
|
24011
|
+
address_type?: string | null;
|
|
24012
|
+
attention_to?: string | null;
|
|
24013
|
+
bank_account_holder?: string | null;
|
|
24014
|
+
bank_account_number?: string | null;
|
|
24015
|
+
bank_address_line1?: string | null;
|
|
24016
|
+
bank_address_line2?: string | null;
|
|
24017
|
+
bank_bic?: string | null;
|
|
24018
|
+
bank_city?: string | null;
|
|
24019
|
+
bank_country?: string | null;
|
|
24020
|
+
bank_house_number?: string | null;
|
|
24021
|
+
bank_iban?: string | null;
|
|
24022
|
+
bank_name?: string | null;
|
|
24023
|
+
bank_national_code?: string | null;
|
|
24024
|
+
bank_postal_code?: string | null;
|
|
24025
|
+
bank_state?: string | null;
|
|
24026
|
+
billing_email?: string | null;
|
|
23721
24027
|
bio?: string | null;
|
|
23722
24028
|
city?: string | null;
|
|
24029
|
+
coc_number?: string | null;
|
|
23723
24030
|
commercial_name?: string | null;
|
|
23724
24031
|
company_name: string;
|
|
23725
24032
|
connection_status?: string;
|
|
@@ -23728,21 +24035,28 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23728
24035
|
created_at?: string;
|
|
23729
24036
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
23730
24037
|
customer_class?: string | null;
|
|
24038
|
+
customer_number?: string | null;
|
|
24039
|
+
discount_days?: number | null;
|
|
24040
|
+
discount_percentage?: number | null;
|
|
23731
24041
|
email?: string | null;
|
|
23732
24042
|
external_id?: string | null;
|
|
24043
|
+
fax?: string | null;
|
|
23733
24044
|
floriday_connection_id?: string | null;
|
|
23734
24045
|
floriday_organization_id?: string | null;
|
|
23735
24046
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
23736
24047
|
gln?: string | null;
|
|
23737
24048
|
house_number?: string | null;
|
|
24049
|
+
icp_country_code?: string | null;
|
|
23738
24050
|
id?: string;
|
|
23739
24051
|
is_active?: boolean;
|
|
24052
|
+
language?: string | null;
|
|
23740
24053
|
last_synced_at?: string | null;
|
|
23741
24054
|
logo_url?: string | null;
|
|
23742
24055
|
markets?: string[];
|
|
23743
24056
|
notes?: string | null;
|
|
23744
24057
|
organization_type?: string | null;
|
|
23745
24058
|
payment_methods?: string[];
|
|
24059
|
+
payment_term_days?: number | null;
|
|
23746
24060
|
phone?: string | null;
|
|
23747
24061
|
postal_code?: string | null;
|
|
23748
24062
|
product_groups?: string[];
|
|
@@ -23753,13 +24067,33 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23753
24067
|
sync_status?: string;
|
|
23754
24068
|
trade_forms?: string[];
|
|
23755
24069
|
updated_at?: string;
|
|
24070
|
+
vat_display?: string | null;
|
|
23756
24071
|
vat_number?: string | null;
|
|
23757
24072
|
website?: string | null;
|
|
23758
24073
|
};
|
|
23759
24074
|
Update: {
|
|
23760
24075
|
address?: string | null;
|
|
24076
|
+
address_line1?: string | null;
|
|
24077
|
+
address_line2?: string | null;
|
|
24078
|
+
address_type?: string | null;
|
|
24079
|
+
attention_to?: string | null;
|
|
24080
|
+
bank_account_holder?: string | null;
|
|
24081
|
+
bank_account_number?: string | null;
|
|
24082
|
+
bank_address_line1?: string | null;
|
|
24083
|
+
bank_address_line2?: string | null;
|
|
24084
|
+
bank_bic?: string | null;
|
|
24085
|
+
bank_city?: string | null;
|
|
24086
|
+
bank_country?: string | null;
|
|
24087
|
+
bank_house_number?: string | null;
|
|
24088
|
+
bank_iban?: string | null;
|
|
24089
|
+
bank_name?: string | null;
|
|
24090
|
+
bank_national_code?: string | null;
|
|
24091
|
+
bank_postal_code?: string | null;
|
|
24092
|
+
bank_state?: string | null;
|
|
24093
|
+
billing_email?: string | null;
|
|
23761
24094
|
bio?: string | null;
|
|
23762
24095
|
city?: string | null;
|
|
24096
|
+
coc_number?: string | null;
|
|
23763
24097
|
commercial_name?: string | null;
|
|
23764
24098
|
company_name?: string;
|
|
23765
24099
|
connection_status?: string;
|
|
@@ -23768,21 +24102,28 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23768
24102
|
created_at?: string;
|
|
23769
24103
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
23770
24104
|
customer_class?: string | null;
|
|
24105
|
+
customer_number?: string | null;
|
|
24106
|
+
discount_days?: number | null;
|
|
24107
|
+
discount_percentage?: number | null;
|
|
23771
24108
|
email?: string | null;
|
|
23772
24109
|
external_id?: string | null;
|
|
24110
|
+
fax?: string | null;
|
|
23773
24111
|
floriday_connection_id?: string | null;
|
|
23774
24112
|
floriday_organization_id?: string | null;
|
|
23775
24113
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
23776
24114
|
gln?: string | null;
|
|
23777
24115
|
house_number?: string | null;
|
|
24116
|
+
icp_country_code?: string | null;
|
|
23778
24117
|
id?: string;
|
|
23779
24118
|
is_active?: boolean;
|
|
24119
|
+
language?: string | null;
|
|
23780
24120
|
last_synced_at?: string | null;
|
|
23781
24121
|
logo_url?: string | null;
|
|
23782
24122
|
markets?: string[];
|
|
23783
24123
|
notes?: string | null;
|
|
23784
24124
|
organization_type?: string | null;
|
|
23785
24125
|
payment_methods?: string[];
|
|
24126
|
+
payment_term_days?: number | null;
|
|
23786
24127
|
phone?: string | null;
|
|
23787
24128
|
postal_code?: string | null;
|
|
23788
24129
|
product_groups?: string[];
|
|
@@ -23793,6 +24134,7 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
23793
24134
|
sync_status?: string;
|
|
23794
24135
|
trade_forms?: string[];
|
|
23795
24136
|
updated_at?: string;
|
|
24137
|
+
vat_display?: string | null;
|
|
23796
24138
|
vat_number?: string | null;
|
|
23797
24139
|
website?: string | null;
|
|
23798
24140
|
};
|
|
@@ -32812,7 +33154,7 @@ export declare const gatewayCachedListFn: import("@tanstack/start-client-core").
|
|
|
32812
33154
|
};
|
|
32813
33155
|
cleanup_old_bookings: {
|
|
32814
33156
|
Args: never;
|
|
32815
|
-
Returns:
|
|
33157
|
+
Returns: undefined;
|
|
32816
33158
|
};
|
|
32817
33159
|
consume_floriday_rate_limit: {
|
|
32818
33160
|
Args: {
|
|
@@ -33965,6 +34307,9 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
33965
34307
|
created_at: string;
|
|
33966
34308
|
extra_id: string;
|
|
33967
34309
|
id: string;
|
|
34310
|
+
original_unit_price: number | null;
|
|
34311
|
+
override_reason: string | null;
|
|
34312
|
+
override_unit_price: number | null;
|
|
33968
34313
|
quantity: number;
|
|
33969
34314
|
total_price: number;
|
|
33970
34315
|
unit_price: number;
|
|
@@ -33974,6 +34319,9 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
33974
34319
|
created_at?: string;
|
|
33975
34320
|
extra_id: string;
|
|
33976
34321
|
id?: string;
|
|
34322
|
+
original_unit_price?: number | null;
|
|
34323
|
+
override_reason?: string | null;
|
|
34324
|
+
override_unit_price?: number | null;
|
|
33977
34325
|
quantity?: number;
|
|
33978
34326
|
total_price?: number;
|
|
33979
34327
|
unit_price?: number;
|
|
@@ -33983,6 +34331,9 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
33983
34331
|
created_at?: string;
|
|
33984
34332
|
extra_id?: string;
|
|
33985
34333
|
id?: string;
|
|
34334
|
+
original_unit_price?: number | null;
|
|
34335
|
+
override_reason?: string | null;
|
|
34336
|
+
override_unit_price?: number | null;
|
|
33986
34337
|
quantity?: number;
|
|
33987
34338
|
total_price?: number;
|
|
33988
34339
|
unit_price?: number;
|
|
@@ -34003,6 +34354,9 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34003
34354
|
};
|
|
34004
34355
|
bookings: {
|
|
34005
34356
|
Row: {
|
|
34357
|
+
archive_reason: string | null;
|
|
34358
|
+
archived_at: string | null;
|
|
34359
|
+
archived_by: string | null;
|
|
34006
34360
|
company_name: string | null;
|
|
34007
34361
|
conflict_checked_at: string | null;
|
|
34008
34362
|
conflict_reason: string | null;
|
|
@@ -34020,7 +34374,12 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34020
34374
|
invoiced_at: string | null;
|
|
34021
34375
|
notes: string | null;
|
|
34022
34376
|
number_of_people: number;
|
|
34377
|
+
overridden_at: string | null;
|
|
34378
|
+
overridden_by: string | null;
|
|
34379
|
+
override_reason: string | null;
|
|
34380
|
+
price_override: boolean;
|
|
34023
34381
|
room_id: string;
|
|
34382
|
+
room_price_override: number | null;
|
|
34024
34383
|
start_time: string;
|
|
34025
34384
|
status: string;
|
|
34026
34385
|
total_excl_vat: number | null;
|
|
@@ -34029,6 +34388,9 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34029
34388
|
vat_amount: number | null;
|
|
34030
34389
|
};
|
|
34031
34390
|
Insert: {
|
|
34391
|
+
archive_reason?: string | null;
|
|
34392
|
+
archived_at?: string | null;
|
|
34393
|
+
archived_by?: string | null;
|
|
34032
34394
|
company_name?: string | null;
|
|
34033
34395
|
conflict_checked_at?: string | null;
|
|
34034
34396
|
conflict_reason?: string | null;
|
|
@@ -34046,7 +34408,12 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34046
34408
|
invoiced_at?: string | null;
|
|
34047
34409
|
notes?: string | null;
|
|
34048
34410
|
number_of_people?: number;
|
|
34411
|
+
overridden_at?: string | null;
|
|
34412
|
+
overridden_by?: string | null;
|
|
34413
|
+
override_reason?: string | null;
|
|
34414
|
+
price_override?: boolean;
|
|
34049
34415
|
room_id: string;
|
|
34416
|
+
room_price_override?: number | null;
|
|
34050
34417
|
start_time: string;
|
|
34051
34418
|
status?: string;
|
|
34052
34419
|
total_excl_vat?: number | null;
|
|
@@ -34055,6 +34422,9 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34055
34422
|
vat_amount?: number | null;
|
|
34056
34423
|
};
|
|
34057
34424
|
Update: {
|
|
34425
|
+
archive_reason?: string | null;
|
|
34426
|
+
archived_at?: string | null;
|
|
34427
|
+
archived_by?: string | null;
|
|
34058
34428
|
company_name?: string | null;
|
|
34059
34429
|
conflict_checked_at?: string | null;
|
|
34060
34430
|
conflict_reason?: string | null;
|
|
@@ -34072,7 +34442,12 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34072
34442
|
invoiced_at?: string | null;
|
|
34073
34443
|
notes?: string | null;
|
|
34074
34444
|
number_of_people?: number;
|
|
34445
|
+
overridden_at?: string | null;
|
|
34446
|
+
overridden_by?: string | null;
|
|
34447
|
+
override_reason?: string | null;
|
|
34448
|
+
price_override?: boolean;
|
|
34075
34449
|
room_id?: string;
|
|
34450
|
+
room_price_override?: number | null;
|
|
34076
34451
|
start_time?: string;
|
|
34077
34452
|
status?: string;
|
|
34078
34453
|
total_excl_vat?: number | null;
|
|
@@ -34901,8 +35276,27 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34901
35276
|
customers: {
|
|
34902
35277
|
Row: {
|
|
34903
35278
|
address: string | null;
|
|
35279
|
+
address_line1: string | null;
|
|
35280
|
+
address_line2: string | null;
|
|
35281
|
+
address_type: string | null;
|
|
35282
|
+
attention_to: string | null;
|
|
35283
|
+
bank_account_holder: string | null;
|
|
35284
|
+
bank_account_number: string | null;
|
|
35285
|
+
bank_address_line1: string | null;
|
|
35286
|
+
bank_address_line2: string | null;
|
|
35287
|
+
bank_bic: string | null;
|
|
35288
|
+
bank_city: string | null;
|
|
35289
|
+
bank_country: string | null;
|
|
35290
|
+
bank_house_number: string | null;
|
|
35291
|
+
bank_iban: string | null;
|
|
35292
|
+
bank_name: string | null;
|
|
35293
|
+
bank_national_code: string | null;
|
|
35294
|
+
bank_postal_code: string | null;
|
|
35295
|
+
bank_state: string | null;
|
|
35296
|
+
billing_email: string | null;
|
|
34904
35297
|
bio: string | null;
|
|
34905
35298
|
city: string | null;
|
|
35299
|
+
coc_number: string | null;
|
|
34906
35300
|
commercial_name: string | null;
|
|
34907
35301
|
company_name: string;
|
|
34908
35302
|
connection_status: string;
|
|
@@ -34911,21 +35305,28 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34911
35305
|
created_at: string;
|
|
34912
35306
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
34913
35307
|
customer_class: string | null;
|
|
35308
|
+
customer_number: string | null;
|
|
35309
|
+
discount_days: number | null;
|
|
35310
|
+
discount_percentage: number | null;
|
|
34914
35311
|
email: string | null;
|
|
34915
35312
|
external_id: string | null;
|
|
35313
|
+
fax: string | null;
|
|
34916
35314
|
floriday_connection_id: string | null;
|
|
34917
35315
|
floriday_organization_id: string | null;
|
|
34918
35316
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
34919
35317
|
gln: string | null;
|
|
34920
35318
|
house_number: string | null;
|
|
35319
|
+
icp_country_code: string | null;
|
|
34921
35320
|
id: string;
|
|
34922
35321
|
is_active: boolean;
|
|
35322
|
+
language: string | null;
|
|
34923
35323
|
last_synced_at: string | null;
|
|
34924
35324
|
logo_url: string | null;
|
|
34925
35325
|
markets: string[];
|
|
34926
35326
|
notes: string | null;
|
|
34927
35327
|
organization_type: string | null;
|
|
34928
35328
|
payment_methods: string[];
|
|
35329
|
+
payment_term_days: number | null;
|
|
34929
35330
|
phone: string | null;
|
|
34930
35331
|
postal_code: string | null;
|
|
34931
35332
|
product_groups: string[];
|
|
@@ -34936,13 +35337,33 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34936
35337
|
sync_status: string;
|
|
34937
35338
|
trade_forms: string[];
|
|
34938
35339
|
updated_at: string;
|
|
35340
|
+
vat_display: string | null;
|
|
34939
35341
|
vat_number: string | null;
|
|
34940
35342
|
website: string | null;
|
|
34941
35343
|
};
|
|
34942
35344
|
Insert: {
|
|
34943
35345
|
address?: string | null;
|
|
35346
|
+
address_line1?: string | null;
|
|
35347
|
+
address_line2?: string | null;
|
|
35348
|
+
address_type?: string | null;
|
|
35349
|
+
attention_to?: string | null;
|
|
35350
|
+
bank_account_holder?: string | null;
|
|
35351
|
+
bank_account_number?: string | null;
|
|
35352
|
+
bank_address_line1?: string | null;
|
|
35353
|
+
bank_address_line2?: string | null;
|
|
35354
|
+
bank_bic?: string | null;
|
|
35355
|
+
bank_city?: string | null;
|
|
35356
|
+
bank_country?: string | null;
|
|
35357
|
+
bank_house_number?: string | null;
|
|
35358
|
+
bank_iban?: string | null;
|
|
35359
|
+
bank_name?: string | null;
|
|
35360
|
+
bank_national_code?: string | null;
|
|
35361
|
+
bank_postal_code?: string | null;
|
|
35362
|
+
bank_state?: string | null;
|
|
35363
|
+
billing_email?: string | null;
|
|
34944
35364
|
bio?: string | null;
|
|
34945
35365
|
city?: string | null;
|
|
35366
|
+
coc_number?: string | null;
|
|
34946
35367
|
commercial_name?: string | null;
|
|
34947
35368
|
company_name: string;
|
|
34948
35369
|
connection_status?: string;
|
|
@@ -34951,21 +35372,28 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34951
35372
|
created_at?: string;
|
|
34952
35373
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
34953
35374
|
customer_class?: string | null;
|
|
35375
|
+
customer_number?: string | null;
|
|
35376
|
+
discount_days?: number | null;
|
|
35377
|
+
discount_percentage?: number | null;
|
|
34954
35378
|
email?: string | null;
|
|
34955
35379
|
external_id?: string | null;
|
|
35380
|
+
fax?: string | null;
|
|
34956
35381
|
floriday_connection_id?: string | null;
|
|
34957
35382
|
floriday_organization_id?: string | null;
|
|
34958
35383
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
34959
35384
|
gln?: string | null;
|
|
34960
35385
|
house_number?: string | null;
|
|
35386
|
+
icp_country_code?: string | null;
|
|
34961
35387
|
id?: string;
|
|
34962
35388
|
is_active?: boolean;
|
|
35389
|
+
language?: string | null;
|
|
34963
35390
|
last_synced_at?: string | null;
|
|
34964
35391
|
logo_url?: string | null;
|
|
34965
35392
|
markets?: string[];
|
|
34966
35393
|
notes?: string | null;
|
|
34967
35394
|
organization_type?: string | null;
|
|
34968
35395
|
payment_methods?: string[];
|
|
35396
|
+
payment_term_days?: number | null;
|
|
34969
35397
|
phone?: string | null;
|
|
34970
35398
|
postal_code?: string | null;
|
|
34971
35399
|
product_groups?: string[];
|
|
@@ -34976,13 +35404,33 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34976
35404
|
sync_status?: string;
|
|
34977
35405
|
trade_forms?: string[];
|
|
34978
35406
|
updated_at?: string;
|
|
35407
|
+
vat_display?: string | null;
|
|
34979
35408
|
vat_number?: string | null;
|
|
34980
35409
|
website?: string | null;
|
|
34981
35410
|
};
|
|
34982
35411
|
Update: {
|
|
34983
35412
|
address?: string | null;
|
|
35413
|
+
address_line1?: string | null;
|
|
35414
|
+
address_line2?: string | null;
|
|
35415
|
+
address_type?: string | null;
|
|
35416
|
+
attention_to?: string | null;
|
|
35417
|
+
bank_account_holder?: string | null;
|
|
35418
|
+
bank_account_number?: string | null;
|
|
35419
|
+
bank_address_line1?: string | null;
|
|
35420
|
+
bank_address_line2?: string | null;
|
|
35421
|
+
bank_bic?: string | null;
|
|
35422
|
+
bank_city?: string | null;
|
|
35423
|
+
bank_country?: string | null;
|
|
35424
|
+
bank_house_number?: string | null;
|
|
35425
|
+
bank_iban?: string | null;
|
|
35426
|
+
bank_name?: string | null;
|
|
35427
|
+
bank_national_code?: string | null;
|
|
35428
|
+
bank_postal_code?: string | null;
|
|
35429
|
+
bank_state?: string | null;
|
|
35430
|
+
billing_email?: string | null;
|
|
34984
35431
|
bio?: string | null;
|
|
34985
35432
|
city?: string | null;
|
|
35433
|
+
coc_number?: string | null;
|
|
34986
35434
|
commercial_name?: string | null;
|
|
34987
35435
|
company_name?: string;
|
|
34988
35436
|
connection_status?: string;
|
|
@@ -34991,21 +35439,28 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
34991
35439
|
created_at?: string;
|
|
34992
35440
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
34993
35441
|
customer_class?: string | null;
|
|
35442
|
+
customer_number?: string | null;
|
|
35443
|
+
discount_days?: number | null;
|
|
35444
|
+
discount_percentage?: number | null;
|
|
34994
35445
|
email?: string | null;
|
|
34995
35446
|
external_id?: string | null;
|
|
35447
|
+
fax?: string | null;
|
|
34996
35448
|
floriday_connection_id?: string | null;
|
|
34997
35449
|
floriday_organization_id?: string | null;
|
|
34998
35450
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
34999
35451
|
gln?: string | null;
|
|
35000
35452
|
house_number?: string | null;
|
|
35453
|
+
icp_country_code?: string | null;
|
|
35001
35454
|
id?: string;
|
|
35002
35455
|
is_active?: boolean;
|
|
35456
|
+
language?: string | null;
|
|
35003
35457
|
last_synced_at?: string | null;
|
|
35004
35458
|
logo_url?: string | null;
|
|
35005
35459
|
markets?: string[];
|
|
35006
35460
|
notes?: string | null;
|
|
35007
35461
|
organization_type?: string | null;
|
|
35008
35462
|
payment_methods?: string[];
|
|
35463
|
+
payment_term_days?: number | null;
|
|
35009
35464
|
phone?: string | null;
|
|
35010
35465
|
postal_code?: string | null;
|
|
35011
35466
|
product_groups?: string[];
|
|
@@ -35016,6 +35471,7 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
35016
35471
|
sync_status?: string;
|
|
35017
35472
|
trade_forms?: string[];
|
|
35018
35473
|
updated_at?: string;
|
|
35474
|
+
vat_display?: string | null;
|
|
35019
35475
|
vat_number?: string | null;
|
|
35020
35476
|
website?: string | null;
|
|
35021
35477
|
};
|
|
@@ -44035,7 +44491,7 @@ export declare const gatewayWriteFn: import("@tanstack/start-client-core").Requi
|
|
|
44035
44491
|
};
|
|
44036
44492
|
cleanup_old_bookings: {
|
|
44037
44493
|
Args: never;
|
|
44038
|
-
Returns:
|
|
44494
|
+
Returns: undefined;
|
|
44039
44495
|
};
|
|
44040
44496
|
consume_floriday_rate_limit: {
|
|
44041
44497
|
Args: {
|
|
@@ -45201,6 +45657,9 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45201
45657
|
created_at: string;
|
|
45202
45658
|
extra_id: string;
|
|
45203
45659
|
id: string;
|
|
45660
|
+
original_unit_price: number | null;
|
|
45661
|
+
override_reason: string | null;
|
|
45662
|
+
override_unit_price: number | null;
|
|
45204
45663
|
quantity: number;
|
|
45205
45664
|
total_price: number;
|
|
45206
45665
|
unit_price: number;
|
|
@@ -45210,6 +45669,9 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45210
45669
|
created_at?: string;
|
|
45211
45670
|
extra_id: string;
|
|
45212
45671
|
id?: string;
|
|
45672
|
+
original_unit_price?: number | null;
|
|
45673
|
+
override_reason?: string | null;
|
|
45674
|
+
override_unit_price?: number | null;
|
|
45213
45675
|
quantity?: number;
|
|
45214
45676
|
total_price?: number;
|
|
45215
45677
|
unit_price?: number;
|
|
@@ -45219,6 +45681,9 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45219
45681
|
created_at?: string;
|
|
45220
45682
|
extra_id?: string;
|
|
45221
45683
|
id?: string;
|
|
45684
|
+
original_unit_price?: number | null;
|
|
45685
|
+
override_reason?: string | null;
|
|
45686
|
+
override_unit_price?: number | null;
|
|
45222
45687
|
quantity?: number;
|
|
45223
45688
|
total_price?: number;
|
|
45224
45689
|
unit_price?: number;
|
|
@@ -45239,6 +45704,9 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45239
45704
|
};
|
|
45240
45705
|
bookings: {
|
|
45241
45706
|
Row: {
|
|
45707
|
+
archive_reason: string | null;
|
|
45708
|
+
archived_at: string | null;
|
|
45709
|
+
archived_by: string | null;
|
|
45242
45710
|
company_name: string | null;
|
|
45243
45711
|
conflict_checked_at: string | null;
|
|
45244
45712
|
conflict_reason: string | null;
|
|
@@ -45256,7 +45724,12 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45256
45724
|
invoiced_at: string | null;
|
|
45257
45725
|
notes: string | null;
|
|
45258
45726
|
number_of_people: number;
|
|
45727
|
+
overridden_at: string | null;
|
|
45728
|
+
overridden_by: string | null;
|
|
45729
|
+
override_reason: string | null;
|
|
45730
|
+
price_override: boolean;
|
|
45259
45731
|
room_id: string;
|
|
45732
|
+
room_price_override: number | null;
|
|
45260
45733
|
start_time: string;
|
|
45261
45734
|
status: string;
|
|
45262
45735
|
total_excl_vat: number | null;
|
|
@@ -45265,6 +45738,9 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45265
45738
|
vat_amount: number | null;
|
|
45266
45739
|
};
|
|
45267
45740
|
Insert: {
|
|
45741
|
+
archive_reason?: string | null;
|
|
45742
|
+
archived_at?: string | null;
|
|
45743
|
+
archived_by?: string | null;
|
|
45268
45744
|
company_name?: string | null;
|
|
45269
45745
|
conflict_checked_at?: string | null;
|
|
45270
45746
|
conflict_reason?: string | null;
|
|
@@ -45282,7 +45758,12 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45282
45758
|
invoiced_at?: string | null;
|
|
45283
45759
|
notes?: string | null;
|
|
45284
45760
|
number_of_people?: number;
|
|
45761
|
+
overridden_at?: string | null;
|
|
45762
|
+
overridden_by?: string | null;
|
|
45763
|
+
override_reason?: string | null;
|
|
45764
|
+
price_override?: boolean;
|
|
45285
45765
|
room_id: string;
|
|
45766
|
+
room_price_override?: number | null;
|
|
45286
45767
|
start_time: string;
|
|
45287
45768
|
status?: string;
|
|
45288
45769
|
total_excl_vat?: number | null;
|
|
@@ -45291,6 +45772,9 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45291
45772
|
vat_amount?: number | null;
|
|
45292
45773
|
};
|
|
45293
45774
|
Update: {
|
|
45775
|
+
archive_reason?: string | null;
|
|
45776
|
+
archived_at?: string | null;
|
|
45777
|
+
archived_by?: string | null;
|
|
45294
45778
|
company_name?: string | null;
|
|
45295
45779
|
conflict_checked_at?: string | null;
|
|
45296
45780
|
conflict_reason?: string | null;
|
|
@@ -45308,7 +45792,12 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
45308
45792
|
invoiced_at?: string | null;
|
|
45309
45793
|
notes?: string | null;
|
|
45310
45794
|
number_of_people?: number;
|
|
45795
|
+
overridden_at?: string | null;
|
|
45796
|
+
overridden_by?: string | null;
|
|
45797
|
+
override_reason?: string | null;
|
|
45798
|
+
price_override?: boolean;
|
|
45311
45799
|
room_id?: string;
|
|
45800
|
+
room_price_override?: number | null;
|
|
45312
45801
|
start_time?: string;
|
|
45313
45802
|
status?: string;
|
|
45314
45803
|
total_excl_vat?: number | null;
|
|
@@ -46137,8 +46626,27 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46137
46626
|
customers: {
|
|
46138
46627
|
Row: {
|
|
46139
46628
|
address: string | null;
|
|
46629
|
+
address_line1: string | null;
|
|
46630
|
+
address_line2: string | null;
|
|
46631
|
+
address_type: string | null;
|
|
46632
|
+
attention_to: string | null;
|
|
46633
|
+
bank_account_holder: string | null;
|
|
46634
|
+
bank_account_number: string | null;
|
|
46635
|
+
bank_address_line1: string | null;
|
|
46636
|
+
bank_address_line2: string | null;
|
|
46637
|
+
bank_bic: string | null;
|
|
46638
|
+
bank_city: string | null;
|
|
46639
|
+
bank_country: string | null;
|
|
46640
|
+
bank_house_number: string | null;
|
|
46641
|
+
bank_iban: string | null;
|
|
46642
|
+
bank_name: string | null;
|
|
46643
|
+
bank_national_code: string | null;
|
|
46644
|
+
bank_postal_code: string | null;
|
|
46645
|
+
bank_state: string | null;
|
|
46646
|
+
billing_email: string | null;
|
|
46140
46647
|
bio: string | null;
|
|
46141
46648
|
city: string | null;
|
|
46649
|
+
coc_number: string | null;
|
|
46142
46650
|
commercial_name: string | null;
|
|
46143
46651
|
company_name: string;
|
|
46144
46652
|
connection_status: string;
|
|
@@ -46147,21 +46655,28 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46147
46655
|
created_at: string;
|
|
46148
46656
|
custom_fields: import("../integrations/supabase/types").Json;
|
|
46149
46657
|
customer_class: string | null;
|
|
46658
|
+
customer_number: string | null;
|
|
46659
|
+
discount_days: number | null;
|
|
46660
|
+
discount_percentage: number | null;
|
|
46150
46661
|
email: string | null;
|
|
46151
46662
|
external_id: string | null;
|
|
46663
|
+
fax: string | null;
|
|
46152
46664
|
floriday_connection_id: string | null;
|
|
46153
46665
|
floriday_organization_id: string | null;
|
|
46154
46666
|
floriday_raw: import("../integrations/supabase/types").Json | null;
|
|
46155
46667
|
gln: string | null;
|
|
46156
46668
|
house_number: string | null;
|
|
46669
|
+
icp_country_code: string | null;
|
|
46157
46670
|
id: string;
|
|
46158
46671
|
is_active: boolean;
|
|
46672
|
+
language: string | null;
|
|
46159
46673
|
last_synced_at: string | null;
|
|
46160
46674
|
logo_url: string | null;
|
|
46161
46675
|
markets: string[];
|
|
46162
46676
|
notes: string | null;
|
|
46163
46677
|
organization_type: string | null;
|
|
46164
46678
|
payment_methods: string[];
|
|
46679
|
+
payment_term_days: number | null;
|
|
46165
46680
|
phone: string | null;
|
|
46166
46681
|
postal_code: string | null;
|
|
46167
46682
|
product_groups: string[];
|
|
@@ -46172,13 +46687,33 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46172
46687
|
sync_status: string;
|
|
46173
46688
|
trade_forms: string[];
|
|
46174
46689
|
updated_at: string;
|
|
46690
|
+
vat_display: string | null;
|
|
46175
46691
|
vat_number: string | null;
|
|
46176
46692
|
website: string | null;
|
|
46177
46693
|
};
|
|
46178
46694
|
Insert: {
|
|
46179
46695
|
address?: string | null;
|
|
46696
|
+
address_line1?: string | null;
|
|
46697
|
+
address_line2?: string | null;
|
|
46698
|
+
address_type?: string | null;
|
|
46699
|
+
attention_to?: string | null;
|
|
46700
|
+
bank_account_holder?: string | null;
|
|
46701
|
+
bank_account_number?: string | null;
|
|
46702
|
+
bank_address_line1?: string | null;
|
|
46703
|
+
bank_address_line2?: string | null;
|
|
46704
|
+
bank_bic?: string | null;
|
|
46705
|
+
bank_city?: string | null;
|
|
46706
|
+
bank_country?: string | null;
|
|
46707
|
+
bank_house_number?: string | null;
|
|
46708
|
+
bank_iban?: string | null;
|
|
46709
|
+
bank_name?: string | null;
|
|
46710
|
+
bank_national_code?: string | null;
|
|
46711
|
+
bank_postal_code?: string | null;
|
|
46712
|
+
bank_state?: string | null;
|
|
46713
|
+
billing_email?: string | null;
|
|
46180
46714
|
bio?: string | null;
|
|
46181
46715
|
city?: string | null;
|
|
46716
|
+
coc_number?: string | null;
|
|
46182
46717
|
commercial_name?: string | null;
|
|
46183
46718
|
company_name: string;
|
|
46184
46719
|
connection_status?: string;
|
|
@@ -46187,21 +46722,28 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46187
46722
|
created_at?: string;
|
|
46188
46723
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
46189
46724
|
customer_class?: string | null;
|
|
46725
|
+
customer_number?: string | null;
|
|
46726
|
+
discount_days?: number | null;
|
|
46727
|
+
discount_percentage?: number | null;
|
|
46190
46728
|
email?: string | null;
|
|
46191
46729
|
external_id?: string | null;
|
|
46730
|
+
fax?: string | null;
|
|
46192
46731
|
floriday_connection_id?: string | null;
|
|
46193
46732
|
floriday_organization_id?: string | null;
|
|
46194
46733
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
46195
46734
|
gln?: string | null;
|
|
46196
46735
|
house_number?: string | null;
|
|
46736
|
+
icp_country_code?: string | null;
|
|
46197
46737
|
id?: string;
|
|
46198
46738
|
is_active?: boolean;
|
|
46739
|
+
language?: string | null;
|
|
46199
46740
|
last_synced_at?: string | null;
|
|
46200
46741
|
logo_url?: string | null;
|
|
46201
46742
|
markets?: string[];
|
|
46202
46743
|
notes?: string | null;
|
|
46203
46744
|
organization_type?: string | null;
|
|
46204
46745
|
payment_methods?: string[];
|
|
46746
|
+
payment_term_days?: number | null;
|
|
46205
46747
|
phone?: string | null;
|
|
46206
46748
|
postal_code?: string | null;
|
|
46207
46749
|
product_groups?: string[];
|
|
@@ -46212,13 +46754,33 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46212
46754
|
sync_status?: string;
|
|
46213
46755
|
trade_forms?: string[];
|
|
46214
46756
|
updated_at?: string;
|
|
46757
|
+
vat_display?: string | null;
|
|
46215
46758
|
vat_number?: string | null;
|
|
46216
46759
|
website?: string | null;
|
|
46217
46760
|
};
|
|
46218
46761
|
Update: {
|
|
46219
46762
|
address?: string | null;
|
|
46763
|
+
address_line1?: string | null;
|
|
46764
|
+
address_line2?: string | null;
|
|
46765
|
+
address_type?: string | null;
|
|
46766
|
+
attention_to?: string | null;
|
|
46767
|
+
bank_account_holder?: string | null;
|
|
46768
|
+
bank_account_number?: string | null;
|
|
46769
|
+
bank_address_line1?: string | null;
|
|
46770
|
+
bank_address_line2?: string | null;
|
|
46771
|
+
bank_bic?: string | null;
|
|
46772
|
+
bank_city?: string | null;
|
|
46773
|
+
bank_country?: string | null;
|
|
46774
|
+
bank_house_number?: string | null;
|
|
46775
|
+
bank_iban?: string | null;
|
|
46776
|
+
bank_name?: string | null;
|
|
46777
|
+
bank_national_code?: string | null;
|
|
46778
|
+
bank_postal_code?: string | null;
|
|
46779
|
+
bank_state?: string | null;
|
|
46780
|
+
billing_email?: string | null;
|
|
46220
46781
|
bio?: string | null;
|
|
46221
46782
|
city?: string | null;
|
|
46783
|
+
coc_number?: string | null;
|
|
46222
46784
|
commercial_name?: string | null;
|
|
46223
46785
|
company_name?: string;
|
|
46224
46786
|
connection_status?: string;
|
|
@@ -46227,21 +46789,28 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46227
46789
|
created_at?: string;
|
|
46228
46790
|
custom_fields?: import("../integrations/supabase/types").Json;
|
|
46229
46791
|
customer_class?: string | null;
|
|
46792
|
+
customer_number?: string | null;
|
|
46793
|
+
discount_days?: number | null;
|
|
46794
|
+
discount_percentage?: number | null;
|
|
46230
46795
|
email?: string | null;
|
|
46231
46796
|
external_id?: string | null;
|
|
46797
|
+
fax?: string | null;
|
|
46232
46798
|
floriday_connection_id?: string | null;
|
|
46233
46799
|
floriday_organization_id?: string | null;
|
|
46234
46800
|
floriday_raw?: import("../integrations/supabase/types").Json | null;
|
|
46235
46801
|
gln?: string | null;
|
|
46236
46802
|
house_number?: string | null;
|
|
46803
|
+
icp_country_code?: string | null;
|
|
46237
46804
|
id?: string;
|
|
46238
46805
|
is_active?: boolean;
|
|
46806
|
+
language?: string | null;
|
|
46239
46807
|
last_synced_at?: string | null;
|
|
46240
46808
|
logo_url?: string | null;
|
|
46241
46809
|
markets?: string[];
|
|
46242
46810
|
notes?: string | null;
|
|
46243
46811
|
organization_type?: string | null;
|
|
46244
46812
|
payment_methods?: string[];
|
|
46813
|
+
payment_term_days?: number | null;
|
|
46245
46814
|
phone?: string | null;
|
|
46246
46815
|
postal_code?: string | null;
|
|
46247
46816
|
product_groups?: string[];
|
|
@@ -46252,6 +46821,7 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
46252
46821
|
sync_status?: string;
|
|
46253
46822
|
trade_forms?: string[];
|
|
46254
46823
|
updated_at?: string;
|
|
46824
|
+
vat_display?: string | null;
|
|
46255
46825
|
vat_number?: string | null;
|
|
46256
46826
|
website?: string | null;
|
|
46257
46827
|
};
|
|
@@ -55271,7 +55841,7 @@ export declare const gatewaySupplyLineFn: import("@tanstack/start-client-core").
|
|
|
55271
55841
|
};
|
|
55272
55842
|
cleanup_old_bookings: {
|
|
55273
55843
|
Args: never;
|
|
55274
|
-
Returns:
|
|
55844
|
+
Returns: undefined;
|
|
55275
55845
|
};
|
|
55276
55846
|
consume_floriday_rate_limit: {
|
|
55277
55847
|
Args: {
|