@flowselections/floriday-voorraad 1.0.17 → 1.0.18
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 +17 -0
- package/dist-lib/integrations/supabase/auth-middleware.d.ts.map +1 -1
- package/dist-lib/integrations/supabase/client.d.ts +17 -0
- package/dist-lib/integrations/supabase/client.d.ts.map +1 -1
- package/dist-lib/integrations/supabase/client.server.d.ts +17 -0
- package/dist-lib/integrations/supabase/client.server.d.ts.map +1 -1
- package/dist-lib/integrations/supabase/types.d.ts +17 -0
- package/dist-lib/integrations/supabase/types.d.ts.map +1 -1
- package/dist-lib/lib/floricode-required-features.functions.d.ts +17 -0
- package/dist-lib/lib/floricode-required-features.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-customer-offer.functions.d.ts +17 -0
- package/dist-lib/lib/floriday-customer-offer.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-gateway.functions.d.ts +85 -0
- package/dist-lib/lib/floriday-gateway.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-warehouse.functions.d.ts +51 -0
- package/dist-lib/lib/floriday-warehouse.functions.d.ts.map +1 -1
- package/dist-lib/lib/floriday-writes.functions.d.ts +34 -0
- package/dist-lib/lib/floriday-writes.functions.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -328,6 +328,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
328
328
|
conflict_reason: string | null;
|
|
329
329
|
created_at: string;
|
|
330
330
|
created_by_role: string | null;
|
|
331
|
+
customer_address: string | null;
|
|
331
332
|
customer_email: string | null;
|
|
332
333
|
customer_name: string | null;
|
|
333
334
|
end_time: string;
|
|
@@ -353,6 +354,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
353
354
|
conflict_reason?: string | null;
|
|
354
355
|
created_at?: string;
|
|
355
356
|
created_by_role?: string | null;
|
|
357
|
+
customer_address?: string | null;
|
|
356
358
|
customer_email?: string | null;
|
|
357
359
|
customer_name?: string | null;
|
|
358
360
|
end_time: string;
|
|
@@ -378,6 +380,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
378
380
|
conflict_reason?: string | null;
|
|
379
381
|
created_at?: string;
|
|
380
382
|
created_by_role?: string | null;
|
|
383
|
+
customer_address?: string | null;
|
|
381
384
|
customer_email?: string | null;
|
|
382
385
|
customer_name?: string | null;
|
|
383
386
|
end_time?: string;
|
|
@@ -7289,6 +7292,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
7289
7292
|
};
|
|
7290
7293
|
profiles: {
|
|
7291
7294
|
Row: {
|
|
7295
|
+
address: string | null;
|
|
7292
7296
|
created_at: string;
|
|
7293
7297
|
display_name: string | null;
|
|
7294
7298
|
email: string | null;
|
|
@@ -7299,6 +7303,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
7299
7303
|
updated_at: string;
|
|
7300
7304
|
};
|
|
7301
7305
|
Insert: {
|
|
7306
|
+
address?: string | null;
|
|
7302
7307
|
created_at?: string;
|
|
7303
7308
|
display_name?: string | null;
|
|
7304
7309
|
email?: string | null;
|
|
@@ -7309,6 +7314,7 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
7309
7314
|
updated_at?: string;
|
|
7310
7315
|
};
|
|
7311
7316
|
Update: {
|
|
7317
|
+
address?: string | null;
|
|
7312
7318
|
created_at?: string;
|
|
7313
7319
|
display_name?: string | null;
|
|
7314
7320
|
email?: string | null;
|
|
@@ -11204,6 +11210,17 @@ export declare const listWarehousesFn: import("@tanstack/start-client-core").Opt
|
|
|
11204
11210
|
};
|
|
11205
11211
|
Returns: string;
|
|
11206
11212
|
};
|
|
11213
|
+
upsert_auto_fulfillment_log: {
|
|
11214
|
+
Args: {
|
|
11215
|
+
p_connection_id: string;
|
|
11216
|
+
p_error?: string;
|
|
11217
|
+
p_fulfillment_order_id?: string;
|
|
11218
|
+
p_reason?: string;
|
|
11219
|
+
p_sales_order_id: string;
|
|
11220
|
+
p_status: string;
|
|
11221
|
+
};
|
|
11222
|
+
Returns: undefined;
|
|
11223
|
+
};
|
|
11207
11224
|
};
|
|
11208
11225
|
Enums: {
|
|
11209
11226
|
app_role: "admin" | "manager" | "warehouse" | "sales" | "developer" | "receptie" | "monteur";
|
|
@@ -11539,6 +11556,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11539
11556
|
conflict_reason: string | null;
|
|
11540
11557
|
created_at: string;
|
|
11541
11558
|
created_by_role: string | null;
|
|
11559
|
+
customer_address: string | null;
|
|
11542
11560
|
customer_email: string | null;
|
|
11543
11561
|
customer_name: string | null;
|
|
11544
11562
|
end_time: string;
|
|
@@ -11564,6 +11582,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11564
11582
|
conflict_reason?: string | null;
|
|
11565
11583
|
created_at?: string;
|
|
11566
11584
|
created_by_role?: string | null;
|
|
11585
|
+
customer_address?: string | null;
|
|
11567
11586
|
customer_email?: string | null;
|
|
11568
11587
|
customer_name?: string | null;
|
|
11569
11588
|
end_time: string;
|
|
@@ -11589,6 +11608,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
11589
11608
|
conflict_reason?: string | null;
|
|
11590
11609
|
created_at?: string;
|
|
11591
11610
|
created_by_role?: string | null;
|
|
11611
|
+
customer_address?: string | null;
|
|
11592
11612
|
customer_email?: string | null;
|
|
11593
11613
|
customer_name?: string | null;
|
|
11594
11614
|
end_time?: string;
|
|
@@ -18500,6 +18520,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
18500
18520
|
};
|
|
18501
18521
|
profiles: {
|
|
18502
18522
|
Row: {
|
|
18523
|
+
address: string | null;
|
|
18503
18524
|
created_at: string;
|
|
18504
18525
|
display_name: string | null;
|
|
18505
18526
|
email: string | null;
|
|
@@ -18510,6 +18531,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
18510
18531
|
updated_at: string;
|
|
18511
18532
|
};
|
|
18512
18533
|
Insert: {
|
|
18534
|
+
address?: string | null;
|
|
18513
18535
|
created_at?: string;
|
|
18514
18536
|
display_name?: string | null;
|
|
18515
18537
|
email?: string | null;
|
|
@@ -18520,6 +18542,7 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
18520
18542
|
updated_at?: string;
|
|
18521
18543
|
};
|
|
18522
18544
|
Update: {
|
|
18545
|
+
address?: string | null;
|
|
18523
18546
|
created_at?: string;
|
|
18524
18547
|
display_name?: string | null;
|
|
18525
18548
|
email?: string | null;
|
|
@@ -22415,6 +22438,17 @@ export declare const createWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22415
22438
|
};
|
|
22416
22439
|
Returns: string;
|
|
22417
22440
|
};
|
|
22441
|
+
upsert_auto_fulfillment_log: {
|
|
22442
|
+
Args: {
|
|
22443
|
+
p_connection_id: string;
|
|
22444
|
+
p_error?: string;
|
|
22445
|
+
p_fulfillment_order_id?: string;
|
|
22446
|
+
p_reason?: string;
|
|
22447
|
+
p_sales_order_id: string;
|
|
22448
|
+
p_status: string;
|
|
22449
|
+
};
|
|
22450
|
+
Returns: undefined;
|
|
22451
|
+
};
|
|
22418
22452
|
};
|
|
22419
22453
|
Enums: {
|
|
22420
22454
|
app_role: "admin" | "manager" | "warehouse" | "sales" | "developer" | "receptie" | "monteur";
|
|
@@ -22745,6 +22779,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22745
22779
|
conflict_reason: string | null;
|
|
22746
22780
|
created_at: string;
|
|
22747
22781
|
created_by_role: string | null;
|
|
22782
|
+
customer_address: string | null;
|
|
22748
22783
|
customer_email: string | null;
|
|
22749
22784
|
customer_name: string | null;
|
|
22750
22785
|
end_time: string;
|
|
@@ -22770,6 +22805,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22770
22805
|
conflict_reason?: string | null;
|
|
22771
22806
|
created_at?: string;
|
|
22772
22807
|
created_by_role?: string | null;
|
|
22808
|
+
customer_address?: string | null;
|
|
22773
22809
|
customer_email?: string | null;
|
|
22774
22810
|
customer_name?: string | null;
|
|
22775
22811
|
end_time: string;
|
|
@@ -22795,6 +22831,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
22795
22831
|
conflict_reason?: string | null;
|
|
22796
22832
|
created_at?: string;
|
|
22797
22833
|
created_by_role?: string | null;
|
|
22834
|
+
customer_address?: string | null;
|
|
22798
22835
|
customer_email?: string | null;
|
|
22799
22836
|
customer_name?: string | null;
|
|
22800
22837
|
end_time?: string;
|
|
@@ -29706,6 +29743,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
29706
29743
|
};
|
|
29707
29744
|
profiles: {
|
|
29708
29745
|
Row: {
|
|
29746
|
+
address: string | null;
|
|
29709
29747
|
created_at: string;
|
|
29710
29748
|
display_name: string | null;
|
|
29711
29749
|
email: string | null;
|
|
@@ -29716,6 +29754,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
29716
29754
|
updated_at: string;
|
|
29717
29755
|
};
|
|
29718
29756
|
Insert: {
|
|
29757
|
+
address?: string | null;
|
|
29719
29758
|
created_at?: string;
|
|
29720
29759
|
display_name?: string | null;
|
|
29721
29760
|
email?: string | null;
|
|
@@ -29726,6 +29765,7 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
29726
29765
|
updated_at?: string;
|
|
29727
29766
|
};
|
|
29728
29767
|
Update: {
|
|
29768
|
+
address?: string | null;
|
|
29729
29769
|
created_at?: string;
|
|
29730
29770
|
display_name?: string | null;
|
|
29731
29771
|
email?: string | null;
|
|
@@ -33621,6 +33661,17 @@ export declare const updateWarehouseFn: import("@tanstack/start-client-core").Re
|
|
|
33621
33661
|
};
|
|
33622
33662
|
Returns: string;
|
|
33623
33663
|
};
|
|
33664
|
+
upsert_auto_fulfillment_log: {
|
|
33665
|
+
Args: {
|
|
33666
|
+
p_connection_id: string;
|
|
33667
|
+
p_error?: string;
|
|
33668
|
+
p_fulfillment_order_id?: string;
|
|
33669
|
+
p_reason?: string;
|
|
33670
|
+
p_sales_order_id: string;
|
|
33671
|
+
p_status: string;
|
|
33672
|
+
};
|
|
33673
|
+
Returns: undefined;
|
|
33674
|
+
};
|
|
33624
33675
|
};
|
|
33625
33676
|
Enums: {
|
|
33626
33677
|
app_role: "admin" | "manager" | "warehouse" | "sales" | "developer" | "receptie" | "monteur";
|