automation-lib 5.6.13 → 5.6.15
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 +7 -2
- package/dist/index.d.ts +7 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11143,7 +11143,10 @@ interface FindDeviceLogDto extends IFindBaseDto {
|
|
|
11143
11143
|
}
|
|
11144
11144
|
|
|
11145
11145
|
interface CreateManagerImageAIInstagramDto {
|
|
11146
|
-
listAccountSocialIds:
|
|
11146
|
+
listAccountSocialIds: Array<{
|
|
11147
|
+
id: string;
|
|
11148
|
+
username: string;
|
|
11149
|
+
}>;
|
|
11147
11150
|
folderName: string;
|
|
11148
11151
|
model: EManagerImageAIInstagramModel;
|
|
11149
11152
|
ideaId: string;
|
|
@@ -11638,6 +11641,8 @@ interface FindOverviewPCPhoneDto extends IBaseOverview {
|
|
|
11638
11641
|
[EStatusDeviceConnectPC.Unauthenticated]: number;
|
|
11639
11642
|
total: number;
|
|
11640
11643
|
};
|
|
11644
|
+
deviceKey: number;
|
|
11645
|
+
usbConnection: number;
|
|
11641
11646
|
pcStatus: {
|
|
11642
11647
|
[EStatusPC.Online]: number;
|
|
11643
11648
|
[EStatusPC.Offline]: number;
|
|
@@ -11656,7 +11661,7 @@ interface FilterPCPhoneDto extends IFilterBaseDto {
|
|
|
11656
11661
|
statusDeviceConnectedPC: EStatusDeviceConnectPC[];
|
|
11657
11662
|
typeDevice: ETypeDevice[];
|
|
11658
11663
|
statusControl: EStatusPCControl[];
|
|
11659
|
-
hasDevice:
|
|
11664
|
+
hasDevice: EHaveData[];
|
|
11660
11665
|
}
|
|
11661
11666
|
|
|
11662
11667
|
interface IPCPhoneLog extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -11143,7 +11143,10 @@ interface FindDeviceLogDto extends IFindBaseDto {
|
|
|
11143
11143
|
}
|
|
11144
11144
|
|
|
11145
11145
|
interface CreateManagerImageAIInstagramDto {
|
|
11146
|
-
listAccountSocialIds:
|
|
11146
|
+
listAccountSocialIds: Array<{
|
|
11147
|
+
id: string;
|
|
11148
|
+
username: string;
|
|
11149
|
+
}>;
|
|
11147
11150
|
folderName: string;
|
|
11148
11151
|
model: EManagerImageAIInstagramModel;
|
|
11149
11152
|
ideaId: string;
|
|
@@ -11638,6 +11641,8 @@ interface FindOverviewPCPhoneDto extends IBaseOverview {
|
|
|
11638
11641
|
[EStatusDeviceConnectPC.Unauthenticated]: number;
|
|
11639
11642
|
total: number;
|
|
11640
11643
|
};
|
|
11644
|
+
deviceKey: number;
|
|
11645
|
+
usbConnection: number;
|
|
11641
11646
|
pcStatus: {
|
|
11642
11647
|
[EStatusPC.Online]: number;
|
|
11643
11648
|
[EStatusPC.Offline]: number;
|
|
@@ -11656,7 +11661,7 @@ interface FilterPCPhoneDto extends IFilterBaseDto {
|
|
|
11656
11661
|
statusDeviceConnectedPC: EStatusDeviceConnectPC[];
|
|
11657
11662
|
typeDevice: ETypeDevice[];
|
|
11658
11663
|
statusControl: EStatusPCControl[];
|
|
11659
|
-
hasDevice:
|
|
11664
|
+
hasDevice: EHaveData[];
|
|
11660
11665
|
}
|
|
11661
11666
|
|
|
11662
11667
|
interface IPCPhoneLog extends IBaseModel, ITrackingModel {
|