@voyantjs/customer-portal 0.104.15 → 0.104.17
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
CHANGED
|
@@ -864,7 +864,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
|
|
|
864
864
|
balanceDueCents: number;
|
|
865
865
|
issueDate: string;
|
|
866
866
|
dueDate: string;
|
|
867
|
-
documentStatus: "
|
|
867
|
+
documentStatus: "failed" | "pending" | "ready" | "stale" | "missing";
|
|
868
868
|
format: "html" | "json" | "pdf" | "xml" | null;
|
|
869
869
|
generatedAt: string | null;
|
|
870
870
|
downloadUrl: string | null;
|
|
@@ -874,7 +874,7 @@ export declare function createPublicCustomerPortalRoutes(options?: PublicCustome
|
|
|
874
874
|
invoiceId: string;
|
|
875
875
|
invoiceNumber: string;
|
|
876
876
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
877
|
-
status: "
|
|
877
|
+
status: "failed" | "pending" | "completed" | "refunded";
|
|
878
878
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
879
879
|
amountCents: number;
|
|
880
880
|
currency: string;
|
|
@@ -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: "
|
|
892
|
+
status: "failed" | "pending" | "revoked" | "issued" | "reissued";
|
|
893
893
|
artifactUrl: string | null;
|
|
894
894
|
}[];
|
|
895
895
|
};
|
|
@@ -1824,7 +1824,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
|
|
|
1824
1824
|
balanceDueCents: number;
|
|
1825
1825
|
issueDate: string;
|
|
1826
1826
|
dueDate: string;
|
|
1827
|
-
documentStatus: "
|
|
1827
|
+
documentStatus: "failed" | "pending" | "ready" | "stale" | "missing";
|
|
1828
1828
|
format: "html" | "json" | "pdf" | "xml" | null;
|
|
1829
1829
|
generatedAt: string | null;
|
|
1830
1830
|
downloadUrl: string | null;
|
|
@@ -1834,7 +1834,7 @@ export declare const publicCustomerPortalRoutes: import("hono/hono-base").HonoBa
|
|
|
1834
1834
|
invoiceId: string;
|
|
1835
1835
|
invoiceNumber: string;
|
|
1836
1836
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
1837
|
-
status: "
|
|
1837
|
+
status: "failed" | "pending" | "completed" | "refunded";
|
|
1838
1838
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
1839
1839
|
amountCents: number;
|
|
1840
1840
|
currency: string;
|
|
@@ -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: "
|
|
1852
|
+
status: "failed" | "pending" | "revoked" | "issued" | "reissued";
|
|
1853
1853
|
artifactUrl: string | null;
|
|
1854
1854
|
}[];
|
|
1855
1855
|
};
|
|
@@ -903,8 +903,8 @@ export declare const customerPortalBookingFinancialDocumentSchema: z.ZodObject<{
|
|
|
903
903
|
issueDate: z.ZodString;
|
|
904
904
|
dueDate: z.ZodString;
|
|
905
905
|
documentStatus: z.ZodEnum<{
|
|
906
|
-
pending: "pending";
|
|
907
906
|
failed: "failed";
|
|
907
|
+
pending: "pending";
|
|
908
908
|
ready: "ready";
|
|
909
909
|
stale: "stale";
|
|
910
910
|
missing: "missing";
|
|
@@ -928,9 +928,9 @@ export declare const customerPortalBookingPaymentSchema: z.ZodObject<{
|
|
|
928
928
|
credit_note: "credit_note";
|
|
929
929
|
}>;
|
|
930
930
|
status: z.ZodEnum<{
|
|
931
|
+
failed: "failed";
|
|
931
932
|
pending: "pending";
|
|
932
933
|
completed: "completed";
|
|
933
|
-
failed: "failed";
|
|
934
934
|
refunded: "refunded";
|
|
935
935
|
}>;
|
|
936
936
|
paymentMethod: z.ZodEnum<{
|
|
@@ -975,8 +975,8 @@ export declare const customerPortalBookingFinancialsSchema: z.ZodObject<{
|
|
|
975
975
|
issueDate: z.ZodString;
|
|
976
976
|
dueDate: z.ZodString;
|
|
977
977
|
documentStatus: z.ZodEnum<{
|
|
978
|
-
pending: "pending";
|
|
979
978
|
failed: "failed";
|
|
979
|
+
pending: "pending";
|
|
980
980
|
ready: "ready";
|
|
981
981
|
stale: "stale";
|
|
982
982
|
missing: "missing";
|
|
@@ -1000,9 +1000,9 @@ export declare const customerPortalBookingFinancialsSchema: z.ZodObject<{
|
|
|
1000
1000
|
credit_note: "credit_note";
|
|
1001
1001
|
}>;
|
|
1002
1002
|
status: z.ZodEnum<{
|
|
1003
|
+
failed: "failed";
|
|
1003
1004
|
pending: "pending";
|
|
1004
1005
|
completed: "completed";
|
|
1005
|
-
failed: "failed";
|
|
1006
1006
|
refunded: "refunded";
|
|
1007
1007
|
}>;
|
|
1008
1008
|
paymentMethod: z.ZodEnum<{
|
|
@@ -1044,8 +1044,8 @@ export declare const customerPortalBookingFulfillmentSchema: z.ZodObject<{
|
|
|
1044
1044
|
wallet: "wallet";
|
|
1045
1045
|
}>;
|
|
1046
1046
|
status: z.ZodEnum<{
|
|
1047
|
-
pending: "pending";
|
|
1048
1047
|
failed: "failed";
|
|
1048
|
+
pending: "pending";
|
|
1049
1049
|
revoked: "revoked";
|
|
1050
1050
|
issued: "issued";
|
|
1051
1051
|
reissued: "reissued";
|
|
@@ -1189,8 +1189,8 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
|
|
|
1189
1189
|
issueDate: z.ZodString;
|
|
1190
1190
|
dueDate: z.ZodString;
|
|
1191
1191
|
documentStatus: z.ZodEnum<{
|
|
1192
|
-
pending: "pending";
|
|
1193
1192
|
failed: "failed";
|
|
1193
|
+
pending: "pending";
|
|
1194
1194
|
ready: "ready";
|
|
1195
1195
|
stale: "stale";
|
|
1196
1196
|
missing: "missing";
|
|
@@ -1214,9 +1214,9 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
|
|
|
1214
1214
|
credit_note: "credit_note";
|
|
1215
1215
|
}>;
|
|
1216
1216
|
status: z.ZodEnum<{
|
|
1217
|
+
failed: "failed";
|
|
1217
1218
|
pending: "pending";
|
|
1218
1219
|
completed: "completed";
|
|
1219
|
-
failed: "failed";
|
|
1220
1220
|
refunded: "refunded";
|
|
1221
1221
|
}>;
|
|
1222
1222
|
paymentMethod: z.ZodEnum<{
|
|
@@ -1258,8 +1258,8 @@ export declare const customerPortalBookingDetailSchema: z.ZodObject<{
|
|
|
1258
1258
|
wallet: "wallet";
|
|
1259
1259
|
}>;
|
|
1260
1260
|
status: z.ZodEnum<{
|
|
1261
|
-
pending: "pending";
|
|
1262
1261
|
failed: "failed";
|
|
1262
|
+
pending: "pending";
|
|
1263
1263
|
revoked: "revoked";
|
|
1264
1264
|
issued: "issued";
|
|
1265
1265
|
reissued: "reissued";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/customer-portal",
|
|
3
|
-
"version": "0.104.
|
|
3
|
+
"version": "0.104.17",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"drizzle-orm": "^0.45.2",
|
|
35
35
|
"hono": "^4.12.10",
|
|
36
36
|
"zod": "^4.3.6",
|
|
37
|
-
"@voyantjs/bookings": "^0.
|
|
38
|
-
"@voyantjs/core": "^0.
|
|
39
|
-
"@voyantjs/crm": "^0.
|
|
40
|
-
"@voyantjs/db": "^0.
|
|
41
|
-
"@voyantjs/finance": "^0.
|
|
42
|
-
"@voyantjs/hono": "^0.
|
|
43
|
-
"@voyantjs/identity": "^0.
|
|
44
|
-
"@voyantjs/legal": "^0.
|
|
37
|
+
"@voyantjs/bookings": "^0.118.0",
|
|
38
|
+
"@voyantjs/core": "^0.109.0",
|
|
39
|
+
"@voyantjs/crm": "^0.118.0",
|
|
40
|
+
"@voyantjs/db": "^0.107.0",
|
|
41
|
+
"@voyantjs/finance": "^0.118.0",
|
|
42
|
+
"@voyantjs/hono": "^0.108.0",
|
|
43
|
+
"@voyantjs/identity": "^0.118.0",
|
|
44
|
+
"@voyantjs/legal": "^0.118.0",
|
|
45
45
|
"@voyantjs/utils": "^0.104.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|