automation-lib 5.1.216 → 5.1.217

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/index.d.mts CHANGED
@@ -294,6 +294,14 @@ declare namespace index$j {
294
294
  export { index$m as CONST_APIS, index$l as CONST_SCRIPTS, index$k as CONST_VALS };
295
295
  }
296
296
 
297
+ declare enum EFile {
298
+ Audios = "Audios",
299
+ Documents = "Documents",
300
+ Images = "Images",
301
+ Videos = "Videos",
302
+ Other = "Other"
303
+ }
304
+
297
305
  declare enum EGender {
298
306
  Male = "Male",
299
307
  Female = "Female"
@@ -312,6 +320,8 @@ declare enum EInputTypeFilter {
312
320
  DATE = "Date"
313
321
  }
314
322
 
323
+ type index$i_EFile = EFile;
324
+ declare const index$i_EFile: typeof EFile;
315
325
  type index$i_EGender = EGender;
316
326
  declare const index$i_EGender: typeof EGender;
317
327
  type index$i_EInputTypeFilter = EInputTypeFilter;
@@ -319,7 +329,7 @@ declare const index$i_EInputTypeFilter: typeof EInputTypeFilter;
319
329
  type index$i_EPriority = EPriority;
320
330
  declare const index$i_EPriority: typeof EPriority;
321
331
  declare namespace index$i {
322
- export { index$i_EGender as EGender, index$i_EInputTypeFilter as EInputTypeFilter, index$i_EPriority as EPriority };
332
+ export { index$i_EFile as EFile, index$i_EGender as EGender, index$i_EInputTypeFilter as EInputTypeFilter, index$i_EPriority as EPriority };
323
333
  }
324
334
 
325
335
  declare enum ETypeProxy {
@@ -1189,6 +1199,7 @@ interface ITrackingUserAction {
1189
1199
  }
1190
1200
 
1191
1201
  interface IFile extends IBaseModel, ITrackingModel<IUser> {
1202
+ typeFile: EFile;
1192
1203
  name: string;
1193
1204
  path: string;
1194
1205
  size: number;
package/dist/index.d.ts CHANGED
@@ -294,6 +294,14 @@ declare namespace index$j {
294
294
  export { index$m as CONST_APIS, index$l as CONST_SCRIPTS, index$k as CONST_VALS };
295
295
  }
296
296
 
297
+ declare enum EFile {
298
+ Audios = "Audios",
299
+ Documents = "Documents",
300
+ Images = "Images",
301
+ Videos = "Videos",
302
+ Other = "Other"
303
+ }
304
+
297
305
  declare enum EGender {
298
306
  Male = "Male",
299
307
  Female = "Female"
@@ -312,6 +320,8 @@ declare enum EInputTypeFilter {
312
320
  DATE = "Date"
313
321
  }
314
322
 
323
+ type index$i_EFile = EFile;
324
+ declare const index$i_EFile: typeof EFile;
315
325
  type index$i_EGender = EGender;
316
326
  declare const index$i_EGender: typeof EGender;
317
327
  type index$i_EInputTypeFilter = EInputTypeFilter;
@@ -319,7 +329,7 @@ declare const index$i_EInputTypeFilter: typeof EInputTypeFilter;
319
329
  type index$i_EPriority = EPriority;
320
330
  declare const index$i_EPriority: typeof EPriority;
321
331
  declare namespace index$i {
322
- export { index$i_EGender as EGender, index$i_EInputTypeFilter as EInputTypeFilter, index$i_EPriority as EPriority };
332
+ export { index$i_EFile as EFile, index$i_EGender as EGender, index$i_EInputTypeFilter as EInputTypeFilter, index$i_EPriority as EPriority };
323
333
  }
324
334
 
325
335
  declare enum ETypeProxy {
@@ -1189,6 +1199,7 @@ interface ITrackingUserAction {
1189
1199
  }
1190
1200
 
1191
1201
  interface IFile extends IBaseModel, ITrackingModel<IUser> {
1202
+ typeFile: EFile;
1192
1203
  name: string;
1193
1204
  path: string;
1194
1205
  size: number;
package/dist/index.js CHANGED
@@ -365,11 +365,22 @@ __export(enums_exports, {
365
365
  // src/enums/common/index.ts
366
366
  var common_exports = {};
367
367
  __export(common_exports, {
368
+ EFile: () => EFile,
368
369
  EGender: () => EGender,
369
370
  EInputTypeFilter: () => EInputTypeFilter,
370
371
  EPriority: () => EPriority
371
372
  });
372
373
 
374
+ // src/enums/common/EFile.enum.ts
375
+ var EFile = /* @__PURE__ */ ((EFile2) => {
376
+ EFile2["Audios"] = "Audios";
377
+ EFile2["Documents"] = "Documents";
378
+ EFile2["Images"] = "Images";
379
+ EFile2["Videos"] = "Videos";
380
+ EFile2["Other"] = "Other";
381
+ return EFile2;
382
+ })(EFile || {});
383
+
373
384
  // src/enums/common/EGender.enum.ts
374
385
  var EGender = /* @__PURE__ */ ((EGender2) => {
375
386
  EGender2["Male"] = "Male";
package/dist/index.mjs CHANGED
@@ -332,11 +332,22 @@ __export(enums_exports, {
332
332
  // src/enums/common/index.ts
333
333
  var common_exports = {};
334
334
  __export(common_exports, {
335
+ EFile: () => EFile,
335
336
  EGender: () => EGender,
336
337
  EInputTypeFilter: () => EInputTypeFilter,
337
338
  EPriority: () => EPriority
338
339
  });
339
340
 
341
+ // src/enums/common/EFile.enum.ts
342
+ var EFile = /* @__PURE__ */ ((EFile2) => {
343
+ EFile2["Audios"] = "Audios";
344
+ EFile2["Documents"] = "Documents";
345
+ EFile2["Images"] = "Images";
346
+ EFile2["Videos"] = "Videos";
347
+ EFile2["Other"] = "Other";
348
+ return EFile2;
349
+ })(EFile || {});
350
+
340
351
  // src/enums/common/EGender.enum.ts
341
352
  var EGender = /* @__PURE__ */ ((EGender2) => {
342
353
  EGender2["Male"] = "Male";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.216",
3
+ "version": "5.1.217",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",