sm-types 1.11.67 → 1.11.69

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/common/enums.d.ts CHANGED
@@ -76,7 +76,9 @@ export declare enum ServiceType {
76
76
  SMARTRIPS = "smartrips",
77
77
  INSURANCE = "insurance",
78
78
  RAIL = "rail",
79
- TRANSFER = "transfer"
79
+ TRANSFER = "transfer",
80
+ AG_CUSTOMER_SUPPORT = "ag_customer_support",
81
+ OTHER = "other"
80
82
  }
81
83
  export declare enum OfferStatus {
82
84
  APPROVAL_DECLINED = "APPROVAL_DECLINED",
package/common/enums.js CHANGED
@@ -93,6 +93,8 @@ var ServiceType;
93
93
  ServiceType["INSURANCE"] = "insurance";
94
94
  ServiceType["RAIL"] = "rail";
95
95
  ServiceType["TRANSFER"] = "transfer";
96
+ ServiceType["AG_CUSTOMER_SUPPORT"] = "ag_customer_support";
97
+ ServiceType["OTHER"] = "other";
96
98
  })(ServiceType = exports.ServiceType || (exports.ServiceType = {}));
97
99
  var OfferStatus;
98
100
  (function (OfferStatus) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.11.67",
6
+ "version": "1.11.69",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -90,6 +90,7 @@ export interface IApplyOfferChangesReqDto {
90
90
  export interface IGetSupplierOffersReqDto {
91
91
  supplier: string;
92
92
  customerCode: string;
93
+ cnpj?: string;
93
94
  offersInfo: {
94
95
  searchId: string;
95
96
  journeyId: string;
@@ -99,6 +100,7 @@ export interface IGetSupplierOffersReqDto {
99
100
  export interface IListOffersReqDto {
100
101
  cabinClass: string;
101
102
  customerCode: string;
103
+ cnpj?: string;
102
104
  suppliers: {
103
105
  code: string;
104
106
  promoCode: string;