sm-types 1.9.7 → 1.9.9

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.9.7",
6
+ "version": "1.9.9",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -53,6 +53,7 @@ export interface ICreateSupplierCredentialReqDto {
53
53
  supplierCode: string;
54
54
  customerCode?: string;
55
55
  authData: IWcfCredentials | ITTravelCredentialItem | IAzulCredentials;
56
+ alias: string;
56
57
  description: string;
57
58
  }
58
59
  export interface ICreateCustomerReqDto {
@@ -107,12 +107,14 @@ export interface IGetSupplierCredentialResDto {
107
107
  supplierCode: string;
108
108
  customerCode?: string;
109
109
  authData: IWcfCredentials | ITTravelCredentialItem | IAzulCredentials;
110
+ alias: string;
110
111
  description: string;
111
112
  }
112
113
  export interface IGetCustomerCredentialResDto {
113
114
  supplierCode: string;
114
115
  credential?: ICredentialRes;
115
116
  isConfigured: boolean;
117
+ alias?: string;
116
118
  description?: string;
117
119
  customerCredentialId?: number;
118
120
  }