akeyless-types-commons 1.0.11 → 1.0.13

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.
@@ -45,3 +45,9 @@ export declare enum FeaturesToolbox {
45
45
  manage_users = "manage_users",
46
46
  manage_cars = "manage_cars"
47
47
  }
48
+ export interface FeaturesUser {
49
+ toolbox?: FeaturesToolbox[];
50
+ installer?: FeaturesInstaller[];
51
+ dashboard?: FeaturesDashboard[];
52
+ reports?: string[];
53
+ }
@@ -120,11 +120,12 @@ export interface Car {
120
120
  color: string;
121
121
  commandOption: string;
122
122
  chassisNumber: string;
123
- subEnforcmentUser: TObject<string | null | null[]>;
123
+ subEnforcmentUser: TObject<string | any[] | null>;
124
124
  peripherals: Peripheral[];
125
125
  icon?: string;
126
126
  vin?: string;
127
127
  features?: string[];
128
+ deactivated?: boolean;
128
129
  }
129
130
  export interface LastLocationCar {
130
131
  car_number: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {