automation-lib 6.6.335 → 6.6.336
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 +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4247,7 +4247,9 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
|
|
|
4247
4247
|
declare enum EStatusAccountCanva {
|
|
4248
4248
|
New = "New",
|
|
4249
4249
|
Working = "Working",
|
|
4250
|
-
Error = "Error"
|
|
4250
|
+
Error = "Error",
|
|
4251
|
+
AccountNotExist = "AccountNotExist",
|
|
4252
|
+
WrongPassword = "WrongPassword"
|
|
4251
4253
|
}
|
|
4252
4254
|
|
|
4253
4255
|
/**
|
|
@@ -4283,9 +4285,10 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4283
4285
|
total: number;
|
|
4284
4286
|
percentage: number;
|
|
4285
4287
|
};
|
|
4286
|
-
|
|
4288
|
+
totalAccountInactiveError: {
|
|
4287
4289
|
total: number;
|
|
4288
|
-
|
|
4290
|
+
inactive: number;
|
|
4291
|
+
error: number;
|
|
4289
4292
|
};
|
|
4290
4293
|
totalAccountWrongPassword: {
|
|
4291
4294
|
total: number;
|
|
@@ -4295,6 +4298,10 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4295
4298
|
total: number;
|
|
4296
4299
|
percentage: number;
|
|
4297
4300
|
};
|
|
4301
|
+
totalAccountsExpired: {
|
|
4302
|
+
total: number;
|
|
4303
|
+
percentage: number;
|
|
4304
|
+
};
|
|
4298
4305
|
}
|
|
4299
4306
|
interface FilterAccountCanvaDto extends IFilterBaseDto, IFilterAssignDto {
|
|
4300
4307
|
sheetName: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -4247,7 +4247,9 @@ interface FilterHistoryTaskAIContentDto extends IFilterBaseDto {
|
|
|
4247
4247
|
declare enum EStatusAccountCanva {
|
|
4248
4248
|
New = "New",
|
|
4249
4249
|
Working = "Working",
|
|
4250
|
-
Error = "Error"
|
|
4250
|
+
Error = "Error",
|
|
4251
|
+
AccountNotExist = "AccountNotExist",
|
|
4252
|
+
WrongPassword = "WrongPassword"
|
|
4251
4253
|
}
|
|
4252
4254
|
|
|
4253
4255
|
/**
|
|
@@ -4283,9 +4285,10 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4283
4285
|
total: number;
|
|
4284
4286
|
percentage: number;
|
|
4285
4287
|
};
|
|
4286
|
-
|
|
4288
|
+
totalAccountInactiveError: {
|
|
4287
4289
|
total: number;
|
|
4288
|
-
|
|
4290
|
+
inactive: number;
|
|
4291
|
+
error: number;
|
|
4289
4292
|
};
|
|
4290
4293
|
totalAccountWrongPassword: {
|
|
4291
4294
|
total: number;
|
|
@@ -4295,6 +4298,10 @@ interface FindOverviewAccountCanvaDto {
|
|
|
4295
4298
|
total: number;
|
|
4296
4299
|
percentage: number;
|
|
4297
4300
|
};
|
|
4301
|
+
totalAccountsExpired: {
|
|
4302
|
+
total: number;
|
|
4303
|
+
percentage: number;
|
|
4304
|
+
};
|
|
4298
4305
|
}
|
|
4299
4306
|
interface FilterAccountCanvaDto extends IFilterBaseDto, IFilterAssignDto {
|
|
4300
4307
|
sheetName: string[];
|
package/dist/index.js
CHANGED
|
@@ -2908,6 +2908,8 @@ var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
|
2908
2908
|
EStatusAccountCanva2["New"] = "New";
|
|
2909
2909
|
EStatusAccountCanva2["Working"] = "Working";
|
|
2910
2910
|
EStatusAccountCanva2["Error"] = "Error";
|
|
2911
|
+
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2912
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2911
2913
|
return EStatusAccountCanva2;
|
|
2912
2914
|
})(EStatusAccountCanva || {});
|
|
2913
2915
|
|
package/dist/index.mjs
CHANGED
|
@@ -2644,6 +2644,8 @@ var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
|
2644
2644
|
EStatusAccountCanva2["New"] = "New";
|
|
2645
2645
|
EStatusAccountCanva2["Working"] = "Working";
|
|
2646
2646
|
EStatusAccountCanva2["Error"] = "Error";
|
|
2647
|
+
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2648
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2647
2649
|
return EStatusAccountCanva2;
|
|
2648
2650
|
})(EStatusAccountCanva || {});
|
|
2649
2651
|
|