akeyless-types-commons 1.0.17 → 1.0.19

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.
@@ -46,3 +46,10 @@ export declare enum FeaturesToolbox {
46
46
  manage_users = "manage_users",
47
47
  manage_cars = "manage_cars"
48
48
  }
49
+ export interface UserPermissionsObject {
50
+ toolbox?: Record<`${FeaturesToolbox}`, boolean>;
51
+ installer?: Record<`${FeaturesInstaller}`, boolean>;
52
+ dashboard?: Record<`${FeaturesDashboard}`, boolean>;
53
+ reports?: Record<string, boolean>;
54
+ }
55
+ export type userPermissionsObjectValue<T extends keyof UserPermissionsObject> = keyof UserPermissionsObject[T];
@@ -126,6 +126,7 @@ export interface Car {
126
126
  vin?: string;
127
127
  features?: string[];
128
128
  deactivated?: boolean;
129
+ internal_comments?: string;
129
130
  }
130
131
  export interface LastLocationCar {
131
132
  car_number: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {