automation-lib 5.1.216 → 5.1.218
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 +18 -8
- package/dist/index.d.ts +18 -8
- package/dist/index.js +11 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
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 {
|
|
@@ -1129,7 +1139,6 @@ interface IRoleFeature extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1129
1139
|
module: string;
|
|
1130
1140
|
submodule: string;
|
|
1131
1141
|
actions: Array<TActionRole>;
|
|
1132
|
-
attributes: any;
|
|
1133
1142
|
}
|
|
1134
1143
|
|
|
1135
1144
|
interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
|
|
@@ -1189,6 +1198,7 @@ interface ITrackingUserAction {
|
|
|
1189
1198
|
}
|
|
1190
1199
|
|
|
1191
1200
|
interface IFile extends IBaseModel, ITrackingModel<IUser> {
|
|
1201
|
+
typeFile: EFile;
|
|
1192
1202
|
name: string;
|
|
1193
1203
|
path: string;
|
|
1194
1204
|
size: number;
|
|
@@ -7548,14 +7558,14 @@ interface FilterTeamDto extends IFilterBaseDto, Omit<ITeam, TOmitFilterDto> {
|
|
|
7548
7558
|
}
|
|
7549
7559
|
|
|
7550
7560
|
interface CreateRoleDto extends IRole {
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7561
|
+
name: string;
|
|
7562
|
+
description: string;
|
|
7563
|
+
featuresRoles: IRoleFeature[];
|
|
7554
7564
|
}
|
|
7555
7565
|
interface UpdateRoleDto extends IRole {
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7566
|
+
name: string;
|
|
7567
|
+
description: string;
|
|
7568
|
+
featuresRoles: IRoleFeature[];
|
|
7559
7569
|
}
|
|
7560
7570
|
interface FindRoleDto extends IFindBaseDto, IRole {
|
|
7561
7571
|
}
|
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 {
|
|
@@ -1129,7 +1139,6 @@ interface IRoleFeature extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1129
1139
|
module: string;
|
|
1130
1140
|
submodule: string;
|
|
1131
1141
|
actions: Array<TActionRole>;
|
|
1132
|
-
attributes: any;
|
|
1133
1142
|
}
|
|
1134
1143
|
|
|
1135
1144
|
interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
|
|
@@ -1189,6 +1198,7 @@ interface ITrackingUserAction {
|
|
|
1189
1198
|
}
|
|
1190
1199
|
|
|
1191
1200
|
interface IFile extends IBaseModel, ITrackingModel<IUser> {
|
|
1201
|
+
typeFile: EFile;
|
|
1192
1202
|
name: string;
|
|
1193
1203
|
path: string;
|
|
1194
1204
|
size: number;
|
|
@@ -7548,14 +7558,14 @@ interface FilterTeamDto extends IFilterBaseDto, Omit<ITeam, TOmitFilterDto> {
|
|
|
7548
7558
|
}
|
|
7549
7559
|
|
|
7550
7560
|
interface CreateRoleDto extends IRole {
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7561
|
+
name: string;
|
|
7562
|
+
description: string;
|
|
7563
|
+
featuresRoles: IRoleFeature[];
|
|
7554
7564
|
}
|
|
7555
7565
|
interface UpdateRoleDto extends IRole {
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7566
|
+
name: string;
|
|
7567
|
+
description: string;
|
|
7568
|
+
featuresRoles: IRoleFeature[];
|
|
7559
7569
|
}
|
|
7560
7570
|
interface FindRoleDto extends IFindBaseDto, IRole {
|
|
7561
7571
|
}
|
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";
|