@voyantjs/customer-portal-react 0.19.0 → 0.21.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.
|
@@ -5,7 +5,7 @@ export declare function useCustomerPortalBooking(bookingId: string | null | unde
|
|
|
5
5
|
data: {
|
|
6
6
|
bookingId: string;
|
|
7
7
|
bookingNumber: string;
|
|
8
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
8
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
9
9
|
sellCurrency: string;
|
|
10
10
|
sellAmountCents: number | null;
|
|
11
11
|
startDate: string | null;
|
|
@@ -85,7 +85,7 @@ export declare function useCustomerPortalBooking(bookingId: string | null | unde
|
|
|
85
85
|
invoiceId: string;
|
|
86
86
|
invoiceNumber: string;
|
|
87
87
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
88
|
-
status: "pending" | "
|
|
88
|
+
status: "pending" | "failed" | "completed" | "refunded";
|
|
89
89
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
90
90
|
amountCents: number;
|
|
91
91
|
currency: string;
|
|
@@ -100,7 +100,7 @@ export declare function useCustomerPortalBooking(bookingId: string | null | unde
|
|
|
100
100
|
travelerId: string | null;
|
|
101
101
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
102
102
|
deliveryChannel: "email" | "other" | "download" | "api" | "wallet";
|
|
103
|
-
status: "pending" | "
|
|
103
|
+
status: "pending" | "failed" | "issued" | "reissued" | "revoked";
|
|
104
104
|
artifactUrl: string | null;
|
|
105
105
|
}[];
|
|
106
106
|
};
|
|
@@ -5,7 +5,7 @@ export declare function useCustomerPortalBookings(options?: UseCustomerPortalBoo
|
|
|
5
5
|
data: {
|
|
6
6
|
bookingId: string;
|
|
7
7
|
bookingNumber: string;
|
|
8
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
8
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
9
9
|
sellCurrency: string;
|
|
10
10
|
sellAmountCents: number | null;
|
|
11
11
|
productTitle: string | null;
|
package/dist/operations.d.ts
CHANGED
|
@@ -390,7 +390,7 @@ export declare function listCustomerPortalBookings(client: FetchWithValidationOp
|
|
|
390
390
|
data: {
|
|
391
391
|
bookingId: string;
|
|
392
392
|
bookingNumber: string;
|
|
393
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
393
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
394
394
|
sellCurrency: string;
|
|
395
395
|
sellAmountCents: number | null;
|
|
396
396
|
productTitle: string | null;
|
|
@@ -408,7 +408,7 @@ export declare function getCustomerPortalBooking(client: FetchWithValidationOpti
|
|
|
408
408
|
data: {
|
|
409
409
|
bookingId: string;
|
|
410
410
|
bookingNumber: string;
|
|
411
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
411
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
412
412
|
sellCurrency: string;
|
|
413
413
|
sellAmountCents: number | null;
|
|
414
414
|
startDate: string | null;
|
|
@@ -488,7 +488,7 @@ export declare function getCustomerPortalBooking(client: FetchWithValidationOpti
|
|
|
488
488
|
invoiceId: string;
|
|
489
489
|
invoiceNumber: string;
|
|
490
490
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
491
|
-
status: "pending" | "
|
|
491
|
+
status: "pending" | "failed" | "completed" | "refunded";
|
|
492
492
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
493
493
|
amountCents: number;
|
|
494
494
|
currency: string;
|
|
@@ -503,7 +503,7 @@ export declare function getCustomerPortalBooking(client: FetchWithValidationOpti
|
|
|
503
503
|
travelerId: string | null;
|
|
504
504
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
505
505
|
deliveryChannel: "email" | "other" | "download" | "api" | "wallet";
|
|
506
|
-
status: "pending" | "
|
|
506
|
+
status: "pending" | "failed" | "issued" | "reissued" | "revoked";
|
|
507
507
|
artifactUrl: string | null;
|
|
508
508
|
}[];
|
|
509
509
|
};
|
package/dist/query-options.d.ts
CHANGED
|
@@ -408,7 +408,7 @@ export declare function getCustomerPortalBookingsQueryOptions(client: FetchWithV
|
|
|
408
408
|
data: {
|
|
409
409
|
bookingId: string;
|
|
410
410
|
bookingNumber: string;
|
|
411
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
411
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
412
412
|
sellCurrency: string;
|
|
413
413
|
sellAmountCents: number | null;
|
|
414
414
|
productTitle: string | null;
|
|
@@ -425,7 +425,7 @@ export declare function getCustomerPortalBookingsQueryOptions(client: FetchWithV
|
|
|
425
425
|
data: {
|
|
426
426
|
bookingId: string;
|
|
427
427
|
bookingNumber: string;
|
|
428
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
428
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
429
429
|
sellCurrency: string;
|
|
430
430
|
sellAmountCents: number | null;
|
|
431
431
|
productTitle: string | null;
|
|
@@ -443,7 +443,7 @@ export declare function getCustomerPortalBookingsQueryOptions(client: FetchWithV
|
|
|
443
443
|
data: {
|
|
444
444
|
bookingId: string;
|
|
445
445
|
bookingNumber: string;
|
|
446
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
446
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
447
447
|
sellCurrency: string;
|
|
448
448
|
sellAmountCents: number | null;
|
|
449
449
|
productTitle: string | null;
|
|
@@ -463,7 +463,7 @@ export declare function getCustomerPortalBookingsQueryOptions(client: FetchWithV
|
|
|
463
463
|
data: {
|
|
464
464
|
bookingId: string;
|
|
465
465
|
bookingNumber: string;
|
|
466
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
466
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
467
467
|
sellCurrency: string;
|
|
468
468
|
sellAmountCents: number | null;
|
|
469
469
|
productTitle: string | null;
|
|
@@ -484,7 +484,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
484
484
|
data: {
|
|
485
485
|
bookingId: string;
|
|
486
486
|
bookingNumber: string;
|
|
487
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
487
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
488
488
|
sellCurrency: string;
|
|
489
489
|
sellAmountCents: number | null;
|
|
490
490
|
startDate: string | null;
|
|
@@ -564,7 +564,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
564
564
|
invoiceId: string;
|
|
565
565
|
invoiceNumber: string;
|
|
566
566
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
567
|
-
status: "pending" | "
|
|
567
|
+
status: "pending" | "failed" | "completed" | "refunded";
|
|
568
568
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
569
569
|
amountCents: number;
|
|
570
570
|
currency: string;
|
|
@@ -579,7 +579,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
579
579
|
travelerId: string | null;
|
|
580
580
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
581
581
|
deliveryChannel: "email" | "other" | "download" | "api" | "wallet";
|
|
582
|
-
status: "pending" | "
|
|
582
|
+
status: "pending" | "failed" | "issued" | "reissued" | "revoked";
|
|
583
583
|
artifactUrl: string | null;
|
|
584
584
|
}[];
|
|
585
585
|
};
|
|
@@ -587,7 +587,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
587
587
|
data: {
|
|
588
588
|
bookingId: string;
|
|
589
589
|
bookingNumber: string;
|
|
590
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
590
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
591
591
|
sellCurrency: string;
|
|
592
592
|
sellAmountCents: number | null;
|
|
593
593
|
startDate: string | null;
|
|
@@ -667,7 +667,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
667
667
|
invoiceId: string;
|
|
668
668
|
invoiceNumber: string;
|
|
669
669
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
670
|
-
status: "pending" | "
|
|
670
|
+
status: "pending" | "failed" | "completed" | "refunded";
|
|
671
671
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
672
672
|
amountCents: number;
|
|
673
673
|
currency: string;
|
|
@@ -682,7 +682,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
682
682
|
travelerId: string | null;
|
|
683
683
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
684
684
|
deliveryChannel: "email" | "other" | "download" | "api" | "wallet";
|
|
685
|
-
status: "pending" | "
|
|
685
|
+
status: "pending" | "failed" | "issued" | "reissued" | "revoked";
|
|
686
686
|
artifactUrl: string | null;
|
|
687
687
|
}[];
|
|
688
688
|
};
|
|
@@ -691,7 +691,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
691
691
|
data: {
|
|
692
692
|
bookingId: string;
|
|
693
693
|
bookingNumber: string;
|
|
694
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
694
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
695
695
|
sellCurrency: string;
|
|
696
696
|
sellAmountCents: number | null;
|
|
697
697
|
startDate: string | null;
|
|
@@ -771,7 +771,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
771
771
|
invoiceId: string;
|
|
772
772
|
invoiceNumber: string;
|
|
773
773
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
774
|
-
status: "pending" | "
|
|
774
|
+
status: "pending" | "failed" | "completed" | "refunded";
|
|
775
775
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
776
776
|
amountCents: number;
|
|
777
777
|
currency: string;
|
|
@@ -786,7 +786,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
786
786
|
travelerId: string | null;
|
|
787
787
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
788
788
|
deliveryChannel: "email" | "other" | "download" | "api" | "wallet";
|
|
789
|
-
status: "pending" | "
|
|
789
|
+
status: "pending" | "failed" | "issued" | "reissued" | "revoked";
|
|
790
790
|
artifactUrl: string | null;
|
|
791
791
|
}[];
|
|
792
792
|
};
|
|
@@ -797,7 +797,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
797
797
|
data: {
|
|
798
798
|
bookingId: string;
|
|
799
799
|
bookingNumber: string;
|
|
800
|
-
status: "draft" | "on_hold" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
800
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
801
801
|
sellCurrency: string;
|
|
802
802
|
sellAmountCents: number | null;
|
|
803
803
|
startDate: string | null;
|
|
@@ -877,7 +877,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
877
877
|
invoiceId: string;
|
|
878
878
|
invoiceNumber: string;
|
|
879
879
|
invoiceType: "invoice" | "proforma" | "credit_note";
|
|
880
|
-
status: "pending" | "
|
|
880
|
+
status: "pending" | "failed" | "completed" | "refunded";
|
|
881
881
|
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill";
|
|
882
882
|
amountCents: number;
|
|
883
883
|
currency: string;
|
|
@@ -892,7 +892,7 @@ export declare function getCustomerPortalBookingQueryOptions(client: FetchWithVa
|
|
|
892
892
|
travelerId: string | null;
|
|
893
893
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
894
894
|
deliveryChannel: "email" | "other" | "download" | "api" | "wallet";
|
|
895
|
-
status: "pending" | "
|
|
895
|
+
status: "pending" | "failed" | "issued" | "reissued" | "revoked";
|
|
896
896
|
artifactUrl: string | null;
|
|
897
897
|
}[];
|
|
898
898
|
};
|
package/dist/schemas.d.ts
CHANGED
|
@@ -405,6 +405,7 @@ export declare const customerPortalBookingsResponseSchema: z.ZodObject<{
|
|
|
405
405
|
status: z.ZodEnum<{
|
|
406
406
|
draft: "draft";
|
|
407
407
|
on_hold: "on_hold";
|
|
408
|
+
awaiting_payment: "awaiting_payment";
|
|
408
409
|
confirmed: "confirmed";
|
|
409
410
|
in_progress: "in_progress";
|
|
410
411
|
completed: "completed";
|
|
@@ -436,6 +437,7 @@ export declare const customerPortalBookingResponseSchema: z.ZodObject<{
|
|
|
436
437
|
status: z.ZodEnum<{
|
|
437
438
|
draft: "draft";
|
|
438
439
|
on_hold: "on_hold";
|
|
440
|
+
awaiting_payment: "awaiting_payment";
|
|
439
441
|
confirmed: "confirmed";
|
|
440
442
|
in_progress: "in_progress";
|
|
441
443
|
completed: "completed";
|
|
@@ -590,8 +592,8 @@ export declare const customerPortalBookingResponseSchema: z.ZodObject<{
|
|
|
590
592
|
}>;
|
|
591
593
|
status: z.ZodEnum<{
|
|
592
594
|
pending: "pending";
|
|
593
|
-
completed: "completed";
|
|
594
595
|
failed: "failed";
|
|
596
|
+
completed: "completed";
|
|
595
597
|
refunded: "refunded";
|
|
596
598
|
}>;
|
|
597
599
|
paymentMethod: z.ZodEnum<{
|
|
@@ -634,10 +636,10 @@ export declare const customerPortalBookingResponseSchema: z.ZodObject<{
|
|
|
634
636
|
}>;
|
|
635
637
|
status: z.ZodEnum<{
|
|
636
638
|
pending: "pending";
|
|
639
|
+
failed: "failed";
|
|
637
640
|
issued: "issued";
|
|
638
641
|
reissued: "reissued";
|
|
639
642
|
revoked: "revoked";
|
|
640
|
-
failed: "failed";
|
|
641
643
|
}>;
|
|
642
644
|
artifactUrl: z.ZodNullable<z.ZodString>;
|
|
643
645
|
}, z.core.$strip>>;
|
package/dist/schemas.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mCAAmC,EACnC,6BAA6B,EAC7B,mCAAmC,EACnC,yCAAyC,EACzC,iCAAiC,EACjC,mCAAmC,EACnC,kCAAkC,EAClC,6BAA6B,EAC7B,uCAAuC,EACvC,4CAA4C,EAC5C,2BAA2B,EAC3B,gDAAgD,EAChD,0CAA0C,EAC1C,mCAAmC,EACnC,iCAAiC,EAClC,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,eAAO,MAAM,cAAc,GAAI,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC;;iBAA6B,CAAA;AAC3F,eAAO,MAAM,aAAa,GAAI,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC;;iBAAsC,CAAA;AACnG,eAAO,MAAM,eAAe;;iBAAqC,CAAA;AAEjE,eAAO,MAAM,6CAA6C;;iBACd,CAAA;AAC5C,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACd,CAAA;AAElD,OAAO,EACL,mCAAmC,EACnC,6BAA6B,EAC7B,mCAAmC,EACnC,yCAAyC,EACzC,iCAAiC,EACjC,mCAAmC,EACnC,kCAAkC,EAClC,6BAA6B,EAC7B,uCAAuC,EACvC,4CAA4C,EAC5C,2BAA2B,EAC3B,gDAAgD,EAChD,0CAA0C,EAC1C,mCAAmC,EACnC,iCAAiC,GAClC,CAAA;AAED,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAA8C,CAAA;AAC9F,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEjD,CAAA;AACD,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAA+C,CAAA;AAClG,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAgD,CAAA;AAClG,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEvD,CAAA;AACD,eAAO,MAAM,oCAAoC
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/customer-portal-react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"react": "^19.0.0",
|
|
47
47
|
"react-dom": "^19.0.0",
|
|
48
48
|
"zod": "^4.0.0",
|
|
49
|
-
"@voyantjs/customer-portal": "0.
|
|
49
|
+
"@voyantjs/customer-portal": "0.21.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"typescript": "^6.0.2",
|
|
58
58
|
"vitest": "^4.1.2",
|
|
59
59
|
"zod": "^4.3.6",
|
|
60
|
-
"@voyantjs/customer-portal": "0.
|
|
61
|
-
"@voyantjs/react": "0.
|
|
60
|
+
"@voyantjs/customer-portal": "0.21.0",
|
|
61
|
+
"@voyantjs/react": "0.21.0",
|
|
62
62
|
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@voyantjs/react": "0.
|
|
65
|
+
"@voyantjs/react": "0.21.0"
|
|
66
66
|
},
|
|
67
67
|
"files": [
|
|
68
68
|
"dist"
|