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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.6.1",
6
+ "version": "1.6.2",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -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];
@@ -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
@@ -144,6 +144,7 @@ export interface IPassengerInfoReqDto {
144
144
  export interface IWcfReserveOfferResDto {
145
145
  status?: string;
146
146
  recordLocator?: string;
147
+ systemLocator?: string;
147
148
  price?: number;
148
149
  priceDetails?: IPriceDetails;
149
150
  reservedUntil?: Date | string;