automation-lib 5.1.443 → 5.1.445
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 +6 -5
- package/dist/index.d.ts +6 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1907,7 +1907,7 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1907
1907
|
wifiName: string;
|
|
1908
1908
|
wifiPass: string;
|
|
1909
1909
|
numberResetByTheHour: number;
|
|
1910
|
-
|
|
1910
|
+
nameSystemInformation: string;
|
|
1911
1911
|
deviceInheritance: any;
|
|
1912
1912
|
setupSetting: {
|
|
1913
1913
|
changeLanguageSettings: EStatusDeviceSetupSettingTask;
|
|
@@ -2406,8 +2406,8 @@ interface IAccountEmailTag extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2406
2406
|
interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
2407
2407
|
sheetUrl: string;
|
|
2408
2408
|
sheetName: string;
|
|
2409
|
-
typeNewIp:
|
|
2410
|
-
checked:
|
|
2409
|
+
typeNewIp: EStatusProxyNewIP;
|
|
2410
|
+
checked: EStatusProxyChecked;
|
|
2411
2411
|
type: ETypeProxy;
|
|
2412
2412
|
currentIP: string;
|
|
2413
2413
|
currentPort: string;
|
|
@@ -8700,10 +8700,10 @@ interface FilterProxyDto extends IFilterBaseDto {
|
|
|
8700
8700
|
devicesOS: string[];
|
|
8701
8701
|
country: string[];
|
|
8702
8702
|
provider: ETypeProxyProvider[];
|
|
8703
|
-
checked:
|
|
8703
|
+
checked: EStatusProxyChecked[];
|
|
8704
|
+
typeNewIp: EStatusProxyNewIP[];
|
|
8704
8705
|
lastUserUsed: string[];
|
|
8705
8706
|
timeLastUsed: [Date, Date];
|
|
8706
|
-
typeNewIp: ETypeProxyNewIP[];
|
|
8707
8707
|
}
|
|
8708
8708
|
|
|
8709
8709
|
interface FindAccountVPSDto extends IFindBaseDto, IAccountVPS {
|
|
@@ -9195,6 +9195,7 @@ interface FindDeviceDto extends IFindBaseDto, IDevice {
|
|
|
9195
9195
|
team: string;
|
|
9196
9196
|
user: string;
|
|
9197
9197
|
};
|
|
9198
|
+
nameSystemInformation: string;
|
|
9198
9199
|
statusPC: EStatusPC;
|
|
9199
9200
|
hubConnection: string;
|
|
9200
9201
|
hubStatus: EStatusDeviceHubStatus;
|
package/dist/index.d.ts
CHANGED
|
@@ -1907,7 +1907,7 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1907
1907
|
wifiName: string;
|
|
1908
1908
|
wifiPass: string;
|
|
1909
1909
|
numberResetByTheHour: number;
|
|
1910
|
-
|
|
1910
|
+
nameSystemInformation: string;
|
|
1911
1911
|
deviceInheritance: any;
|
|
1912
1912
|
setupSetting: {
|
|
1913
1913
|
changeLanguageSettings: EStatusDeviceSetupSettingTask;
|
|
@@ -2406,8 +2406,8 @@ interface IAccountEmailTag extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2406
2406
|
interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
2407
2407
|
sheetUrl: string;
|
|
2408
2408
|
sheetName: string;
|
|
2409
|
-
typeNewIp:
|
|
2410
|
-
checked:
|
|
2409
|
+
typeNewIp: EStatusProxyNewIP;
|
|
2410
|
+
checked: EStatusProxyChecked;
|
|
2411
2411
|
type: ETypeProxy;
|
|
2412
2412
|
currentIP: string;
|
|
2413
2413
|
currentPort: string;
|
|
@@ -8700,10 +8700,10 @@ interface FilterProxyDto extends IFilterBaseDto {
|
|
|
8700
8700
|
devicesOS: string[];
|
|
8701
8701
|
country: string[];
|
|
8702
8702
|
provider: ETypeProxyProvider[];
|
|
8703
|
-
checked:
|
|
8703
|
+
checked: EStatusProxyChecked[];
|
|
8704
|
+
typeNewIp: EStatusProxyNewIP[];
|
|
8704
8705
|
lastUserUsed: string[];
|
|
8705
8706
|
timeLastUsed: [Date, Date];
|
|
8706
|
-
typeNewIp: ETypeProxyNewIP[];
|
|
8707
8707
|
}
|
|
8708
8708
|
|
|
8709
8709
|
interface FindAccountVPSDto extends IFindBaseDto, IAccountVPS {
|
|
@@ -9195,6 +9195,7 @@ interface FindDeviceDto extends IFindBaseDto, IDevice {
|
|
|
9195
9195
|
team: string;
|
|
9196
9196
|
user: string;
|
|
9197
9197
|
};
|
|
9198
|
+
nameSystemInformation: string;
|
|
9198
9199
|
statusPC: EStatusPC;
|
|
9199
9200
|
hubConnection: string;
|
|
9200
9201
|
hubStatus: EStatusDeviceHubStatus;
|