automation-lib 5.3.9 → 5.3.10
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 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8845,10 +8845,10 @@ interface CreateProxyDto {
|
|
|
8845
8845
|
interface UpdateProxyDto {
|
|
8846
8846
|
oldProxyString?: string;
|
|
8847
8847
|
newProxyString?: string;
|
|
8848
|
-
type
|
|
8849
|
-
provider
|
|
8850
|
-
startDate
|
|
8851
|
-
endDate
|
|
8848
|
+
type?: ETypeProxy;
|
|
8849
|
+
provider?: string;
|
|
8850
|
+
startDate?: Date;
|
|
8851
|
+
endDate?: Date;
|
|
8852
8852
|
}
|
|
8853
8853
|
interface AddToDeviceProxyDto {
|
|
8854
8854
|
listDeviceIds: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -8845,10 +8845,10 @@ interface CreateProxyDto {
|
|
|
8845
8845
|
interface UpdateProxyDto {
|
|
8846
8846
|
oldProxyString?: string;
|
|
8847
8847
|
newProxyString?: string;
|
|
8848
|
-
type
|
|
8849
|
-
provider
|
|
8850
|
-
startDate
|
|
8851
|
-
endDate
|
|
8848
|
+
type?: ETypeProxy;
|
|
8849
|
+
provider?: string;
|
|
8850
|
+
startDate?: Date;
|
|
8851
|
+
endDate?: Date;
|
|
8852
8852
|
}
|
|
8853
8853
|
interface AddToDeviceProxyDto {
|
|
8854
8854
|
listDeviceIds: string[];
|