akeyless-types-commons 1.0.2 → 1.0.4

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.
@@ -11,6 +11,7 @@ export interface NxUser {
11
11
  first_name?: string;
12
12
  last_name?: string;
13
13
  phone_number?: string;
14
+ email?: string;
14
15
  status?: string;
15
16
  features?: string[];
16
17
  site?: string;
@@ -154,7 +155,7 @@ export interface ErmStates {
154
155
  is_awake?: number;
155
156
  battery_disconnected?: number;
156
157
  }
157
- export type ReportMetaDataType = "string" | "car_number" | "phone" | "date" | "time" | "datetime" | "number" | "email" | "boolean" | "geo";
158
+ export type ReportMetaDataType = "string" | "car_number" | "phone" | "date" | "time" | "datetime" | "number" | "email" | "boolean" | "geo" | "duration";
158
159
  export interface ReportMetaHeader {
159
160
  name: string;
160
161
  type: ReportMetaDataType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {