automation-lib 6.6.403 → 6.6.404
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4117,6 +4117,9 @@ declare enum EFilterOptionProxy {
|
|
|
4117
4117
|
LeaderCreator = "LeaderCreator",
|
|
4118
4118
|
CreatedBy = "CreatedBy",
|
|
4119
4119
|
UpdatedBy = "UpdatedBy",
|
|
4120
|
+
DepartmentAssign = "DepartmentAssign",
|
|
4121
|
+
TeamAssign = "TeamAssign",
|
|
4122
|
+
LeaderAssign = "LeaderAssign",
|
|
4120
4123
|
UserAssign = "UserAssign",
|
|
4121
4124
|
DevicesName = "DevicesName"
|
|
4122
4125
|
}
|
|
@@ -4207,7 +4210,7 @@ interface FindProxyDto extends IFindBaseDto {
|
|
|
4207
4210
|
oldIpFormat: string;
|
|
4208
4211
|
newIpFormat: string;
|
|
4209
4212
|
}
|
|
4210
|
-
interface FilterProxyDto extends IFilterBaseDto {
|
|
4213
|
+
interface FilterProxyDto extends IFilterBaseDto, IFilterAssignDto {
|
|
4211
4214
|
pcName: string[];
|
|
4212
4215
|
devicesName: string[];
|
|
4213
4216
|
devicesOS: string[];
|
|
@@ -4216,7 +4219,6 @@ interface FilterProxyDto extends IFilterBaseDto {
|
|
|
4216
4219
|
provider: ETypeProxyProvider[];
|
|
4217
4220
|
statusChecked: EStatusProxyChecked[];
|
|
4218
4221
|
typeNewIp: EStatusProxyNewIP[];
|
|
4219
|
-
userAssign: string[];
|
|
4220
4222
|
timeUserAssign: [Date, Date];
|
|
4221
4223
|
startDate?: [Date, Date];
|
|
4222
4224
|
endDate?: [Date, Date];
|
package/dist/index.d.ts
CHANGED
|
@@ -4117,6 +4117,9 @@ declare enum EFilterOptionProxy {
|
|
|
4117
4117
|
LeaderCreator = "LeaderCreator",
|
|
4118
4118
|
CreatedBy = "CreatedBy",
|
|
4119
4119
|
UpdatedBy = "UpdatedBy",
|
|
4120
|
+
DepartmentAssign = "DepartmentAssign",
|
|
4121
|
+
TeamAssign = "TeamAssign",
|
|
4122
|
+
LeaderAssign = "LeaderAssign",
|
|
4120
4123
|
UserAssign = "UserAssign",
|
|
4121
4124
|
DevicesName = "DevicesName"
|
|
4122
4125
|
}
|
|
@@ -4207,7 +4210,7 @@ interface FindProxyDto extends IFindBaseDto {
|
|
|
4207
4210
|
oldIpFormat: string;
|
|
4208
4211
|
newIpFormat: string;
|
|
4209
4212
|
}
|
|
4210
|
-
interface FilterProxyDto extends IFilterBaseDto {
|
|
4213
|
+
interface FilterProxyDto extends IFilterBaseDto, IFilterAssignDto {
|
|
4211
4214
|
pcName: string[];
|
|
4212
4215
|
devicesName: string[];
|
|
4213
4216
|
devicesOS: string[];
|
|
@@ -4216,7 +4219,6 @@ interface FilterProxyDto extends IFilterBaseDto {
|
|
|
4216
4219
|
provider: ETypeProxyProvider[];
|
|
4217
4220
|
statusChecked: EStatusProxyChecked[];
|
|
4218
4221
|
typeNewIp: EStatusProxyNewIP[];
|
|
4219
|
-
userAssign: string[];
|
|
4220
4222
|
timeUserAssign: [Date, Date];
|
|
4221
4223
|
startDate?: [Date, Date];
|
|
4222
4224
|
endDate?: [Date, Date];
|
package/dist/index.js
CHANGED
|
@@ -3323,6 +3323,9 @@ var EFilterOptionProxy = /* @__PURE__ */ ((EFilterOptionProxy2) => {
|
|
|
3323
3323
|
EFilterOptionProxy2["LeaderCreator"] = "LeaderCreator";
|
|
3324
3324
|
EFilterOptionProxy2["CreatedBy"] = "CreatedBy";
|
|
3325
3325
|
EFilterOptionProxy2["UpdatedBy"] = "UpdatedBy";
|
|
3326
|
+
EFilterOptionProxy2["DepartmentAssign"] = "DepartmentAssign";
|
|
3327
|
+
EFilterOptionProxy2["TeamAssign"] = "TeamAssign";
|
|
3328
|
+
EFilterOptionProxy2["LeaderAssign"] = "LeaderAssign";
|
|
3326
3329
|
EFilterOptionProxy2["UserAssign"] = "UserAssign";
|
|
3327
3330
|
EFilterOptionProxy2["DevicesName"] = "DevicesName";
|
|
3328
3331
|
return EFilterOptionProxy2;
|
package/dist/index.mjs
CHANGED
|
@@ -3029,6 +3029,9 @@ var EFilterOptionProxy = /* @__PURE__ */ ((EFilterOptionProxy2) => {
|
|
|
3029
3029
|
EFilterOptionProxy2["LeaderCreator"] = "LeaderCreator";
|
|
3030
3030
|
EFilterOptionProxy2["CreatedBy"] = "CreatedBy";
|
|
3031
3031
|
EFilterOptionProxy2["UpdatedBy"] = "UpdatedBy";
|
|
3032
|
+
EFilterOptionProxy2["DepartmentAssign"] = "DepartmentAssign";
|
|
3033
|
+
EFilterOptionProxy2["TeamAssign"] = "TeamAssign";
|
|
3034
|
+
EFilterOptionProxy2["LeaderAssign"] = "LeaderAssign";
|
|
3032
3035
|
EFilterOptionProxy2["UserAssign"] = "UserAssign";
|
|
3033
3036
|
EFilterOptionProxy2["DevicesName"] = "DevicesName";
|
|
3034
3037
|
return EFilterOptionProxy2;
|