@pax2pay/client 0.2.6 → 0.2.7
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.
|
@@ -3,7 +3,7 @@ export var SummaryBookingInfoResponse;
|
|
|
3
3
|
function is(value) {
|
|
4
4
|
return (typeof value == "object" &&
|
|
5
5
|
value.type == "SUMMARY" &&
|
|
6
|
-
(value.
|
|
6
|
+
(value.supplierBookingReference == undefined || typeof value.supplierBookingReference == "string") &&
|
|
7
7
|
(value.agentBookingReference == undefined || typeof value.agentBookingReference == "string") &&
|
|
8
8
|
(value.bookingInfoIdentifier == undefined || typeof value.bookingInfoIdentifier == "string") &&
|
|
9
9
|
(value.trackingId == undefined || typeof value.trackingId == "string"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SummaryBookingInfoResponse.js","sourceRoot":"../","sources":["model/SummaryBookingInfoResponse.ts"],"names":[],"mappings":"AAQA,MAAM,KAAW,0BAA0B,CAW1C;AAXD,WAAiB,0BAA0B;IAC1C,SAAgB,EAAE,CAAC,KAAuC;QACzD,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,KAAK,CAAC,IAAI,IAAI,SAAS;YACvB,CAAC,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"SummaryBookingInfoResponse.js","sourceRoot":"../","sources":["model/SummaryBookingInfoResponse.ts"],"names":[],"mappings":"AAQA,MAAM,KAAW,0BAA0B,CAW1C;AAXD,WAAiB,0BAA0B;IAC1C,SAAgB,EAAE,CAAC,KAAuC;QACzD,OAAO,CACN,OAAO,KAAK,IAAI,QAAQ;YACxB,KAAK,CAAC,IAAI,IAAI,SAAS;YACvB,CAAC,KAAK,CAAC,wBAAwB,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,wBAAwB,IAAI,QAAQ,CAAC;YAClG,CAAC,KAAK,CAAC,qBAAqB,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,qBAAqB,IAAI,QAAQ,CAAC;YAC5F,CAAC,KAAK,CAAC,qBAAqB,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,qBAAqB,IAAI,QAAQ,CAAC;YAC5F,CAAC,KAAK,CAAC,UAAU,IAAI,SAAS,IAAI,OAAO,KAAK,CAAC,UAAU,IAAI,QAAQ,CAAC,CACtE,CAAA;IACF,CAAC;IATe,6BAAE,KASjB,CAAA;AACF,CAAC,EAXgB,0BAA0B,KAA1B,0BAA0B,QAW1C"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export interface SummaryBookingInfoResponse {
|
|
2
|
-
|
|
2
|
+
supplierBookingReference?: string
|
|
3
3
|
agentBookingReference?: string
|
|
4
4
|
type: "SUMMARY"
|
|
5
5
|
bookingInfoIdentifier?: string
|
|
@@ -11,7 +11,7 @@ export namespace SummaryBookingInfoResponse {
|
|
|
11
11
|
return (
|
|
12
12
|
typeof value == "object" &&
|
|
13
13
|
value.type == "SUMMARY" &&
|
|
14
|
-
(value.
|
|
14
|
+
(value.supplierBookingReference == undefined || typeof value.supplierBookingReference == "string") &&
|
|
15
15
|
(value.agentBookingReference == undefined || typeof value.agentBookingReference == "string") &&
|
|
16
16
|
(value.bookingInfoIdentifier == undefined || typeof value.bookingInfoIdentifier == "string") &&
|
|
17
17
|
(value.trackingId == undefined || typeof value.trackingId == "string")
|