automation-lib 5.1.411 → 5.1.413
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 +26 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -19,6 +19,9 @@ declare const CONST_API_AUTH: {
|
|
|
19
19
|
declare const CONST_API_COMMON: {
|
|
20
20
|
SLUG: string;
|
|
21
21
|
CREATE: string;
|
|
22
|
+
CREATE_MULTI: string;
|
|
23
|
+
FIND_AUTO_FILL: string;
|
|
24
|
+
APPLY_AUTO_FILL: string;
|
|
22
25
|
UPDATE: string;
|
|
23
26
|
IMPORT: string;
|
|
24
27
|
EXPORT: string;
|
|
@@ -8834,6 +8837,19 @@ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
|
|
|
8834
8837
|
lastUserUsed: string[];
|
|
8835
8838
|
}
|
|
8836
8839
|
|
|
8840
|
+
interface IDeviceLog extends IBaseModel, ITrackingModel<IUser> {
|
|
8841
|
+
device: string | IDevice;
|
|
8842
|
+
logID: string;
|
|
8843
|
+
severity: ETypeDeviceLogSeverity;
|
|
8844
|
+
module: string;
|
|
8845
|
+
event: string;
|
|
8846
|
+
description: string;
|
|
8847
|
+
noteFix: string;
|
|
8848
|
+
status: EStatusDeviceLog;
|
|
8849
|
+
duration: string;
|
|
8850
|
+
timeAction: Date;
|
|
8851
|
+
}
|
|
8852
|
+
|
|
8837
8853
|
interface FindAutoFillDeviceDto {
|
|
8838
8854
|
listAccountIds: string[];
|
|
8839
8855
|
}
|
|
@@ -8902,6 +8918,16 @@ interface UpdateDeviceDto {
|
|
|
8902
8918
|
interface ViewDetailDeviceDto {
|
|
8903
8919
|
}
|
|
8904
8920
|
interface ViewHistoryDeviceDto {
|
|
8921
|
+
headerInfo: {
|
|
8922
|
+
department: string;
|
|
8923
|
+
user: string;
|
|
8924
|
+
deviceType: string;
|
|
8925
|
+
status: EStatusDeviceCurrent;
|
|
8926
|
+
};
|
|
8927
|
+
data: {
|
|
8928
|
+
items: Array<IDeviceLog>;
|
|
8929
|
+
totalItems: number;
|
|
8930
|
+
};
|
|
8905
8931
|
}
|
|
8906
8932
|
interface FindOverviewDeviceDetailDto {
|
|
8907
8933
|
statusPC: {
|
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ declare const CONST_API_AUTH: {
|
|
|
19
19
|
declare const CONST_API_COMMON: {
|
|
20
20
|
SLUG: string;
|
|
21
21
|
CREATE: string;
|
|
22
|
+
CREATE_MULTI: string;
|
|
23
|
+
FIND_AUTO_FILL: string;
|
|
24
|
+
APPLY_AUTO_FILL: string;
|
|
22
25
|
UPDATE: string;
|
|
23
26
|
IMPORT: string;
|
|
24
27
|
EXPORT: string;
|
|
@@ -8834,6 +8837,19 @@ interface FilterAccountCHPlayICloudDto extends IFilterBaseDto {
|
|
|
8834
8837
|
lastUserUsed: string[];
|
|
8835
8838
|
}
|
|
8836
8839
|
|
|
8840
|
+
interface IDeviceLog extends IBaseModel, ITrackingModel<IUser> {
|
|
8841
|
+
device: string | IDevice;
|
|
8842
|
+
logID: string;
|
|
8843
|
+
severity: ETypeDeviceLogSeverity;
|
|
8844
|
+
module: string;
|
|
8845
|
+
event: string;
|
|
8846
|
+
description: string;
|
|
8847
|
+
noteFix: string;
|
|
8848
|
+
status: EStatusDeviceLog;
|
|
8849
|
+
duration: string;
|
|
8850
|
+
timeAction: Date;
|
|
8851
|
+
}
|
|
8852
|
+
|
|
8837
8853
|
interface FindAutoFillDeviceDto {
|
|
8838
8854
|
listAccountIds: string[];
|
|
8839
8855
|
}
|
|
@@ -8902,6 +8918,16 @@ interface UpdateDeviceDto {
|
|
|
8902
8918
|
interface ViewDetailDeviceDto {
|
|
8903
8919
|
}
|
|
8904
8920
|
interface ViewHistoryDeviceDto {
|
|
8921
|
+
headerInfo: {
|
|
8922
|
+
department: string;
|
|
8923
|
+
user: string;
|
|
8924
|
+
deviceType: string;
|
|
8925
|
+
status: EStatusDeviceCurrent;
|
|
8926
|
+
};
|
|
8927
|
+
data: {
|
|
8928
|
+
items: Array<IDeviceLog>;
|
|
8929
|
+
totalItems: number;
|
|
8930
|
+
};
|
|
8905
8931
|
}
|
|
8906
8932
|
interface FindOverviewDeviceDetailDto {
|
|
8907
8933
|
statusPC: {
|
package/dist/index.js
CHANGED
|
@@ -182,6 +182,9 @@ var CONST_API_AUTH = {
|
|
|
182
182
|
var CONST_API_COMMON = {
|
|
183
183
|
SLUG: "slug",
|
|
184
184
|
CREATE: "create",
|
|
185
|
+
CREATE_MULTI: "create-multi",
|
|
186
|
+
FIND_AUTO_FILL: "find-auto-fill",
|
|
187
|
+
APPLY_AUTO_FILL: "apply-auto-fill",
|
|
185
188
|
UPDATE: "update",
|
|
186
189
|
IMPORT: "import",
|
|
187
190
|
EXPORT: "export",
|
package/dist/index.mjs
CHANGED
|
@@ -42,6 +42,9 @@ var CONST_API_AUTH = {
|
|
|
42
42
|
var CONST_API_COMMON = {
|
|
43
43
|
SLUG: "slug",
|
|
44
44
|
CREATE: "create",
|
|
45
|
+
CREATE_MULTI: "create-multi",
|
|
46
|
+
FIND_AUTO_FILL: "find-auto-fill",
|
|
47
|
+
APPLY_AUTO_FILL: "apply-auto-fill",
|
|
45
48
|
UPDATE: "update",
|
|
46
49
|
IMPORT: "import",
|
|
47
50
|
EXPORT: "export",
|