@tolinax/ayoune-interfaces 2024.2.18 → 2024.2.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.
|
@@ -448,6 +448,13 @@ interface IHoliday {
|
|
|
448
448
|
approved: boolean;
|
|
449
449
|
deputy: string;
|
|
450
450
|
}
|
|
451
|
+
interface ICLI {
|
|
452
|
+
responseFormat: "yaml" | "json" | "csv" | "table";
|
|
453
|
+
verbosity: "default" | "minimal" | "extended";
|
|
454
|
+
hideMeta: boolean;
|
|
455
|
+
page: number;
|
|
456
|
+
limit: number;
|
|
457
|
+
}
|
|
451
458
|
export interface IUserSetting extends IDefaultFields {
|
|
452
459
|
user: ObjectId | IaYOUneUser;
|
|
453
460
|
_clientID: string[];
|
|
@@ -549,5 +556,6 @@ export interface IUserSetting extends IDefaultFields {
|
|
|
549
556
|
startPage: IStartPage;
|
|
550
557
|
print: IPrint;
|
|
551
558
|
sync: ISync;
|
|
559
|
+
cli: ICLI;
|
|
552
560
|
}
|
|
553
561
|
export {};
|