@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
|
@@ -324,6 +324,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
324
324
|
conflict_reason: string | null;
|
|
325
325
|
created_at: string;
|
|
326
326
|
created_by_role: string | null;
|
|
327
|
+
customer_address: string | null;
|
|
327
328
|
customer_email: string | null;
|
|
328
329
|
customer_name: string | null;
|
|
329
330
|
end_time: string;
|
|
@@ -349,6 +350,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
349
350
|
conflict_reason?: string | null;
|
|
350
351
|
created_at?: string;
|
|
351
352
|
created_by_role?: string | null;
|
|
353
|
+
customer_address?: string | null;
|
|
352
354
|
customer_email?: string | null;
|
|
353
355
|
customer_name?: string | null;
|
|
354
356
|
end_time: string;
|
|
@@ -374,6 +376,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
374
376
|
conflict_reason?: string | null;
|
|
375
377
|
created_at?: string;
|
|
376
378
|
created_by_role?: string | null;
|
|
379
|
+
customer_address?: string | null;
|
|
377
380
|
customer_email?: string | null;
|
|
378
381
|
customer_name?: string | null;
|
|
379
382
|
end_time?: string;
|
|
@@ -7285,6 +7288,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
7285
7288
|
};
|
|
7286
7289
|
profiles: {
|
|
7287
7290
|
Row: {
|
|
7291
|
+
address: string | null;
|
|
7288
7292
|
created_at: string;
|
|
7289
7293
|
display_name: string | null;
|
|
7290
7294
|
email: string | null;
|
|
@@ -7295,6 +7299,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
7295
7299
|
updated_at: string;
|
|
7296
7300
|
};
|
|
7297
7301
|
Insert: {
|
|
7302
|
+
address?: string | null;
|
|
7298
7303
|
created_at?: string;
|
|
7299
7304
|
display_name?: string | null;
|
|
7300
7305
|
email?: string | null;
|
|
@@ -7305,6 +7310,7 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
7305
7310
|
updated_at?: string;
|
|
7306
7311
|
};
|
|
7307
7312
|
Update: {
|
|
7313
|
+
address?: string | null;
|
|
7308
7314
|
created_at?: string;
|
|
7309
7315
|
display_name?: string | null;
|
|
7310
7316
|
email?: string | null;
|
|
@@ -11200,6 +11206,17 @@ export declare const publishTradeItem: import("@tanstack/start-client-core").Req
|
|
|
11200
11206
|
};
|
|
11201
11207
|
Returns: string;
|
|
11202
11208
|
};
|
|
11209
|
+
upsert_auto_fulfillment_log: {
|
|
11210
|
+
Args: {
|
|
11211
|
+
p_connection_id: string;
|
|
11212
|
+
p_error?: string;
|
|
11213
|
+
p_fulfillment_order_id?: string;
|
|
11214
|
+
p_reason?: string;
|
|
11215
|
+
p_sales_order_id: string;
|
|
11216
|
+
p_status: string;
|
|
11217
|
+
};
|
|
11218
|
+
Returns: undefined;
|
|
11219
|
+
};
|
|
11203
11220
|
};
|
|
11204
11221
|
Enums: {
|
|
11205
11222
|
app_role: "admin" | "manager" | "warehouse" | "sales" | "developer" | "receptie" | "monteur";
|
|
@@ -11530,6 +11547,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11530
11547
|
conflict_reason: string | null;
|
|
11531
11548
|
created_at: string;
|
|
11532
11549
|
created_by_role: string | null;
|
|
11550
|
+
customer_address: string | null;
|
|
11533
11551
|
customer_email: string | null;
|
|
11534
11552
|
customer_name: string | null;
|
|
11535
11553
|
end_time: string;
|
|
@@ -11555,6 +11573,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11555
11573
|
conflict_reason?: string | null;
|
|
11556
11574
|
created_at?: string;
|
|
11557
11575
|
created_by_role?: string | null;
|
|
11576
|
+
customer_address?: string | null;
|
|
11558
11577
|
customer_email?: string | null;
|
|
11559
11578
|
customer_name?: string | null;
|
|
11560
11579
|
end_time: string;
|
|
@@ -11580,6 +11599,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
11580
11599
|
conflict_reason?: string | null;
|
|
11581
11600
|
created_at?: string;
|
|
11582
11601
|
created_by_role?: string | null;
|
|
11602
|
+
customer_address?: string | null;
|
|
11583
11603
|
customer_email?: string | null;
|
|
11584
11604
|
customer_name?: string | null;
|
|
11585
11605
|
end_time?: string;
|
|
@@ -18491,6 +18511,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
18491
18511
|
};
|
|
18492
18512
|
profiles: {
|
|
18493
18513
|
Row: {
|
|
18514
|
+
address: string | null;
|
|
18494
18515
|
created_at: string;
|
|
18495
18516
|
display_name: string | null;
|
|
18496
18517
|
email: string | null;
|
|
@@ -18501,6 +18522,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
18501
18522
|
updated_at: string;
|
|
18502
18523
|
};
|
|
18503
18524
|
Insert: {
|
|
18525
|
+
address?: string | null;
|
|
18504
18526
|
created_at?: string;
|
|
18505
18527
|
display_name?: string | null;
|
|
18506
18528
|
email?: string | null;
|
|
@@ -18511,6 +18533,7 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
18511
18533
|
updated_at?: string;
|
|
18512
18534
|
};
|
|
18513
18535
|
Update: {
|
|
18536
|
+
address?: string | null;
|
|
18514
18537
|
created_at?: string;
|
|
18515
18538
|
display_name?: string | null;
|
|
18516
18539
|
email?: string | null;
|
|
@@ -22406,6 +22429,17 @@ export declare const updateTradeItemFn: import("@tanstack/start-client-core").Re
|
|
|
22406
22429
|
};
|
|
22407
22430
|
Returns: string;
|
|
22408
22431
|
};
|
|
22432
|
+
upsert_auto_fulfillment_log: {
|
|
22433
|
+
Args: {
|
|
22434
|
+
p_connection_id: string;
|
|
22435
|
+
p_error?: string;
|
|
22436
|
+
p_fulfillment_order_id?: string;
|
|
22437
|
+
p_reason?: string;
|
|
22438
|
+
p_sales_order_id: string;
|
|
22439
|
+
p_status: string;
|
|
22440
|
+
};
|
|
22441
|
+
Returns: undefined;
|
|
22442
|
+
};
|
|
22409
22443
|
};
|
|
22410
22444
|
Enums: {
|
|
22411
22445
|
app_role: "admin" | "manager" | "warehouse" | "sales" | "developer" | "receptie" | "monteur";
|