akeyless-types-commons 1.0.78 → 1.0.80
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/dist/interfaces/global.d.ts +15 -0
- package/package.json +1 -1
|
@@ -168,6 +168,10 @@ export interface Car {
|
|
|
168
168
|
link_token?: string;
|
|
169
169
|
maker_icon?: string;
|
|
170
170
|
maintenance_timestamp?: TimestampType;
|
|
171
|
+
protection_description?: {
|
|
172
|
+
sku: string;
|
|
173
|
+
description: string;
|
|
174
|
+
};
|
|
171
175
|
}
|
|
172
176
|
export interface UnitExtra {
|
|
173
177
|
car_number: string;
|
|
@@ -313,3 +317,14 @@ export interface ReportMeta {
|
|
|
313
317
|
headers: ReportMetaHeader[];
|
|
314
318
|
}
|
|
315
319
|
export type ReportDataRow = (string | number | Date | boolean | null)[];
|
|
320
|
+
export interface GprsItem {
|
|
321
|
+
id: string;
|
|
322
|
+
created: TimestampType;
|
|
323
|
+
updated: TimestampType;
|
|
324
|
+
external_id: number;
|
|
325
|
+
recipient: string;
|
|
326
|
+
response: string;
|
|
327
|
+
content: string;
|
|
328
|
+
details: TObject<any>;
|
|
329
|
+
status: "new" | "delivered" | "failed" | "delivered" | "responded";
|
|
330
|
+
}
|