@voyantjs/customer-portal 0.83.0 → 0.84.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.
@@ -752,7 +752,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
752
752
  data: {
753
753
  bookingId: string;
754
754
  bookingNumber: string;
755
- status: "completed" | "cancelled" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "expired";
755
+ status: "completed" | "cancelled" | "expired" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress";
756
756
  sellCurrency: string;
757
757
  sellAmountCents: number | null;
758
758
  productTitle: string | null;
@@ -793,7 +793,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
793
793
  data: {
794
794
  bookingId: string;
795
795
  bookingNumber: string;
796
- status: "completed" | "cancelled" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "expired";
796
+ status: "completed" | "cancelled" | "expired" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress";
797
797
  sellCurrency: string;
798
798
  sellAmountCents: number | null;
799
799
  startDate: string | null;
@@ -814,7 +814,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
814
814
  title: string;
815
815
  description: string | null;
816
816
  itemType: "service" | "unit" | "other" | "extra" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
817
- status: "cancelled" | "draft" | "on_hold" | "confirmed" | "expired" | "fulfilled";
817
+ status: "cancelled" | "expired" | "draft" | "on_hold" | "confirmed" | "fulfilled";
818
818
  serviceDate: string | null;
819
819
  startsAt: string | null;
820
820
  endsAt: string | null;
@@ -889,7 +889,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
889
889
  travelerId: string | null;
890
890
  fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
891
891
  deliveryChannel: "api" | "email" | "other" | "download" | "wallet";
892
- status: "pending" | "failed" | "issued" | "reissued" | "revoked";
892
+ status: "pending" | "failed" | "revoked" | "issued" | "reissued";
893
893
  artifactUrl: string | null;
894
894
  }[];
895
895
  };
@@ -1712,7 +1712,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
1712
1712
  data: {
1713
1713
  bookingId: string;
1714
1714
  bookingNumber: string;
1715
- status: "completed" | "cancelled" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "expired";
1715
+ status: "completed" | "cancelled" | "expired" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress";
1716
1716
  sellCurrency: string;
1717
1717
  sellAmountCents: number | null;
1718
1718
  productTitle: string | null;
@@ -1753,7 +1753,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
1753
1753
  data: {
1754
1754
  bookingId: string;
1755
1755
  bookingNumber: string;
1756
- status: "completed" | "cancelled" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "expired";
1756
+ status: "completed" | "cancelled" | "expired" | "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress";
1757
1757
  sellCurrency: string;
1758
1758
  sellAmountCents: number | null;
1759
1759
  startDate: string | null;
@@ -1774,7 +1774,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
1774
1774
  title: string;
1775
1775
  description: string | null;
1776
1776
  itemType: "service" | "unit" | "other" | "extra" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
1777
- status: "cancelled" | "draft" | "on_hold" | "confirmed" | "expired" | "fulfilled";
1777
+ status: "cancelled" | "expired" | "draft" | "on_hold" | "confirmed" | "fulfilled";
1778
1778
  serviceDate: string | null;
1779
1779
  startsAt: string | null;
1780
1780
  endsAt: string | null;
@@ -1849,7 +1849,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
1849
1849
  travelerId: string | null;
1850
1850
  fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
1851
1851
  deliveryChannel: "api" | "email" | "other" | "download" | "wallet";
1852
- status: "pending" | "failed" | "issued" | "reissued" | "revoked";
1852
+ status: "pending" | "failed" | "revoked" | "issued" | "reissued";
1853
1853
  artifactUrl: string | null;
1854
1854
  }[];
1855
1855
  };
@@ -731,12 +731,12 @@ export declare const customerPortalBookingSummarySchema: z.ZodObject<{
731
731
  status: z.ZodEnum<{
732
732
  completed: "completed";
733
733
  cancelled: "cancelled";
734
+ expired: "expired";
734
735
  draft: "draft";
735
736
  on_hold: "on_hold";
736
737
  awaiting_payment: "awaiting_payment";
737
738
  confirmed: "confirmed";
738
739
  in_progress: "in_progress";
739
- expired: "expired";
740
740
  }>;
741
741
  sellCurrency: z.ZodString;
742
742
  sellAmountCents: z.ZodNullable<z.ZodNumber>;
@@ -795,10 +795,10 @@ export declare const customerPortalBookingItemSchema: z.ZodObject<{
795
795
  }>;
796
796
  status: z.ZodEnum<{
797
797
  cancelled: "cancelled";
798
+ expired: "expired";
798
799
  draft: "draft";
799
800
  on_hold: "on_hold";
800
801
  confirmed: "confirmed";
801
- expired: "expired";
802
802
  fulfilled: "fulfilled";
803
803
  }>;
804
804
  serviceDate: z.ZodNullable<z.ZodString>;
@@ -1046,9 +1046,9 @@ export declare const customerPortalBookingFulfillmentSchema: z.ZodObject<{
1046
1046
  status: z.ZodEnum<{
1047
1047
  pending: "pending";
1048
1048
  failed: "failed";
1049
+ revoked: "revoked";
1049
1050
  issued: "issued";
1050
1051
  reissued: "reissued";
1051
- revoked: "revoked";
1052
1052
  }>;
1053
1053
  artifactUrl: z.ZodNullable<z.ZodString>;
1054
1054
  }, z.core.$strip>;
@@ -1058,12 +1058,12 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
1058
1058
  status: z.ZodEnum<{
1059
1059
  completed: "completed";
1060
1060
  cancelled: "cancelled";
1061
+ expired: "expired";
1061
1062
  draft: "draft";
1062
1063
  on_hold: "on_hold";
1063
1064
  awaiting_payment: "awaiting_payment";
1064
1065
  confirmed: "confirmed";
1065
1066
  in_progress: "in_progress";
1066
- expired: "expired";
1067
1067
  }>;
1068
1068
  sellCurrency: z.ZodString;
1069
1069
  sellAmountCents: z.ZodNullable<z.ZodNumber>;
@@ -1102,10 +1102,10 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
1102
1102
  }>;
1103
1103
  status: z.ZodEnum<{
1104
1104
  cancelled: "cancelled";
1105
+ expired: "expired";
1105
1106
  draft: "draft";
1106
1107
  on_hold: "on_hold";
1107
1108
  confirmed: "confirmed";
1108
- expired: "expired";
1109
1109
  fulfilled: "fulfilled";
1110
1110
  }>;
1111
1111
  serviceDate: z.ZodNullable<z.ZodString>;
@@ -1260,9 +1260,9 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
1260
1260
  status: z.ZodEnum<{
1261
1261
  pending: "pending";
1262
1262
  failed: "failed";
1263
+ revoked: "revoked";
1263
1264
  issued: "issued";
1264
1265
  reissued: "reissued";
1265
- revoked: "revoked";
1266
1266
  }>;
1267
1267
  artifactUrl: z.ZodNullable<z.ZodString>;
1268
1268
  }, z.core.$strip>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/customer-portal",
3
- "version": "0.83.0",
3
+ "version": "0.84.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,15 +34,15 @@
34
34
  "drizzle-orm": "^0.45.2",
35
35
  "hono": "^4.12.10",
36
36
  "zod": "^4.3.6",
37
- "@voyantjs/bookings": "0.83.0",
38
- "@voyantjs/core": "0.83.0",
39
- "@voyantjs/crm": "0.83.0",
40
- "@voyantjs/db": "0.83.0",
41
- "@voyantjs/finance": "0.83.0",
42
- "@voyantjs/hono": "0.83.0",
43
- "@voyantjs/identity": "0.83.0",
44
- "@voyantjs/legal": "0.83.0",
45
- "@voyantjs/utils": "0.83.0"
37
+ "@voyantjs/bookings": "0.84.0",
38
+ "@voyantjs/core": "0.84.0",
39
+ "@voyantjs/crm": "0.84.0",
40
+ "@voyantjs/db": "0.84.0",
41
+ "@voyantjs/finance": "0.84.0",
42
+ "@voyantjs/hono": "0.84.0",
43
+ "@voyantjs/identity": "0.84.0",
44
+ "@voyantjs/legal": "0.84.0",
45
+ "@voyantjs/utils": "0.84.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "typescript": "^6.0.2",