@voyantjs/customer-portal 0.7.0 → 0.9.0
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/routes-public.d.ts +2 -2
- package/dist/validation-public.d.ts +2 -2
- package/package.json +10 -10
package/dist/routes-public.d.ts
CHANGED
|
@@ -668,7 +668,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
|
|
|
668
668
|
id: string;
|
|
669
669
|
title: string;
|
|
670
670
|
description: string | null;
|
|
671
|
-
itemType: "service" | "
|
|
671
|
+
itemType: "service" | "unit" | "other" | "extra" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
672
672
|
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
673
673
|
serviceDate: string | null;
|
|
674
674
|
startsAt: string | null;
|
|
@@ -1481,7 +1481,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
|
|
|
1481
1481
|
id: string;
|
|
1482
1482
|
title: string;
|
|
1483
1483
|
description: string | null;
|
|
1484
|
-
itemType: "service" | "
|
|
1484
|
+
itemType: "service" | "unit" | "other" | "extra" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
1485
1485
|
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
1486
1486
|
serviceDate: string | null;
|
|
1487
1487
|
startsAt: string | null;
|
|
@@ -753,8 +753,8 @@ export declare const customerPortalBookingItemSchema: z.ZodObject<{
|
|
|
753
753
|
description: z.ZodNullable<z.ZodString>;
|
|
754
754
|
itemType: z.ZodEnum<{
|
|
755
755
|
service: "service";
|
|
756
|
-
other: "other";
|
|
757
756
|
unit: "unit";
|
|
757
|
+
other: "other";
|
|
758
758
|
extra: "extra";
|
|
759
759
|
fee: "fee";
|
|
760
760
|
tax: "tax";
|
|
@@ -1056,8 +1056,8 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
|
|
|
1056
1056
|
description: z.ZodNullable<z.ZodString>;
|
|
1057
1057
|
itemType: z.ZodEnum<{
|
|
1058
1058
|
service: "service";
|
|
1059
|
-
other: "other";
|
|
1060
1059
|
unit: "unit";
|
|
1060
|
+
other: "other";
|
|
1061
1061
|
extra: "extra";
|
|
1062
1062
|
fee: "fee";
|
|
1063
1063
|
tax: "tax";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/customer-portal",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"license": "FSL-1.1-Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"drizzle-orm": "^0.45.2",
|
|
31
31
|
"hono": "^4.12.10",
|
|
32
32
|
"zod": "^4.3.6",
|
|
33
|
-
"@voyantjs/bookings": "0.
|
|
34
|
-
"@voyantjs/core": "0.
|
|
35
|
-
"@voyantjs/crm": "0.
|
|
36
|
-
"@voyantjs/db": "0.
|
|
37
|
-
"@voyantjs/finance": "0.
|
|
38
|
-
"@voyantjs/hono": "0.
|
|
39
|
-
"@voyantjs/identity": "0.
|
|
40
|
-
"@voyantjs/legal": "0.
|
|
41
|
-
"@voyantjs/utils": "0.
|
|
33
|
+
"@voyantjs/bookings": "0.9.0",
|
|
34
|
+
"@voyantjs/core": "0.9.0",
|
|
35
|
+
"@voyantjs/crm": "0.9.0",
|
|
36
|
+
"@voyantjs/db": "0.9.0",
|
|
37
|
+
"@voyantjs/finance": "0.9.0",
|
|
38
|
+
"@voyantjs/hono": "0.9.0",
|
|
39
|
+
"@voyantjs/identity": "0.9.0",
|
|
40
|
+
"@voyantjs/legal": "0.9.0",
|
|
41
|
+
"@voyantjs/utils": "0.9.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "^6.0.2",
|