sm-types 1.6.1 → 1.6.2
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/package.json +1 -1
- package/sm-airlines/index.d.ts +3 -0
- package/sm-tech/index.d.ts +2 -0
- package/sm-wcf/index.d.ts +1 -0
package/package.json
CHANGED
package/sm-airlines/index.d.ts
CHANGED
|
@@ -331,6 +331,7 @@ export interface IPriceDetails {
|
|
|
331
331
|
export interface IReserveDetails {
|
|
332
332
|
status: string;
|
|
333
333
|
recordLocator: string;
|
|
334
|
+
systemLocator: string;
|
|
334
335
|
price: number;
|
|
335
336
|
priceDetails?: IPriceDetails;
|
|
336
337
|
reservedUntil: Date | string;
|
|
@@ -456,6 +457,7 @@ export interface IReserveCheckInfo {
|
|
|
456
457
|
}
|
|
457
458
|
export interface IOfferEmissionData {
|
|
458
459
|
recordLocator: string;
|
|
460
|
+
systemLocator: string;
|
|
459
461
|
bookingCode: string;
|
|
460
462
|
authorizationCode: string;
|
|
461
463
|
price: number;
|
|
@@ -465,6 +467,7 @@ export interface IUpdatedOfferDetailsData {
|
|
|
465
467
|
reserveStatus: string;
|
|
466
468
|
currentPrice: number;
|
|
467
469
|
recordLocator: string;
|
|
470
|
+
systemLocator: string;
|
|
468
471
|
bookingCode?: string;
|
|
469
472
|
}
|
|
470
473
|
type ValueOf<T> = T[keyof T];
|
package/sm-tech/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export interface IServiceOrderInfo {
|
|
|
48
48
|
export interface ICheckReserveInfo {
|
|
49
49
|
reserveStatus: string;
|
|
50
50
|
recordLocator: string;
|
|
51
|
+
systemLocator: string;
|
|
51
52
|
bookingCode?: string;
|
|
52
53
|
availability: boolean;
|
|
53
54
|
reservedUntil?: Date;
|
|
@@ -95,6 +96,7 @@ export interface IEmitOfferInfo {
|
|
|
95
96
|
isEmitted: boolean;
|
|
96
97
|
bookingCode: string;
|
|
97
98
|
recordLocator: string;
|
|
99
|
+
systemLocator: string;
|
|
98
100
|
price: number;
|
|
99
101
|
tariffInfo: SharedTypes.ITariffInfo | null;
|
|
100
102
|
authorizationCode: string;
|
package/sm-wcf/index.d.ts
CHANGED