automation-lib 5.0.225 → 5.0.227
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 -2
- package/dist/index.d.ts +10 -2
- package/dist/index.js +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -315,6 +315,12 @@ declare enum ETypeDeviceOS {
|
|
|
315
315
|
Android = "Android"
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
declare enum ETypeProviderProxy {
|
|
319
|
+
CloudMini = "CloudMini",
|
|
320
|
+
ProxyRotator = "ProxyRotator",
|
|
321
|
+
SmartProxy = "SmartProxy"
|
|
322
|
+
}
|
|
323
|
+
|
|
318
324
|
declare enum ETypeAccountInstagramSetting {
|
|
319
325
|
Business = "Business",
|
|
320
326
|
Personal = "Business",
|
|
@@ -440,6 +446,8 @@ type index$j_ETypeManagerWorkType = ETypeManagerWorkType;
|
|
|
440
446
|
declare const index$j_ETypeManagerWorkType: typeof ETypeManagerWorkType;
|
|
441
447
|
type index$j_ETypeProviderAccountVPN = ETypeProviderAccountVPN;
|
|
442
448
|
declare const index$j_ETypeProviderAccountVPN: typeof ETypeProviderAccountVPN;
|
|
449
|
+
type index$j_ETypeProviderProxy = ETypeProviderProxy;
|
|
450
|
+
declare const index$j_ETypeProviderProxy: typeof ETypeProviderProxy;
|
|
443
451
|
type index$j_ETypeProxy = ETypeProxy;
|
|
444
452
|
declare const index$j_ETypeProxy: typeof ETypeProxy;
|
|
445
453
|
type index$j_ETypeProxyChecked = ETypeProxyChecked;
|
|
@@ -461,7 +469,7 @@ declare const index$j_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
461
469
|
type index$j_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
462
470
|
declare const index$j_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
463
471
|
declare namespace index$j {
|
|
464
|
-
export { index$j_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
472
|
+
export { index$j_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProviderProxy as ETypeProviderProxy, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
465
473
|
}
|
|
466
474
|
|
|
467
475
|
declare enum EStatusVPS {
|
|
@@ -1533,7 +1541,7 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1533
1541
|
newPort: string;
|
|
1534
1542
|
newUsername: string;
|
|
1535
1543
|
newPassword: string;
|
|
1536
|
-
provider:
|
|
1544
|
+
provider: ETypeProviderProxy;
|
|
1537
1545
|
status: EStatusCommon;
|
|
1538
1546
|
city: string;
|
|
1539
1547
|
speed: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -315,6 +315,12 @@ declare enum ETypeDeviceOS {
|
|
|
315
315
|
Android = "Android"
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
declare enum ETypeProviderProxy {
|
|
319
|
+
CloudMini = "CloudMini",
|
|
320
|
+
ProxyRotator = "ProxyRotator",
|
|
321
|
+
SmartProxy = "SmartProxy"
|
|
322
|
+
}
|
|
323
|
+
|
|
318
324
|
declare enum ETypeAccountInstagramSetting {
|
|
319
325
|
Business = "Business",
|
|
320
326
|
Personal = "Business",
|
|
@@ -440,6 +446,8 @@ type index$j_ETypeManagerWorkType = ETypeManagerWorkType;
|
|
|
440
446
|
declare const index$j_ETypeManagerWorkType: typeof ETypeManagerWorkType;
|
|
441
447
|
type index$j_ETypeProviderAccountVPN = ETypeProviderAccountVPN;
|
|
442
448
|
declare const index$j_ETypeProviderAccountVPN: typeof ETypeProviderAccountVPN;
|
|
449
|
+
type index$j_ETypeProviderProxy = ETypeProviderProxy;
|
|
450
|
+
declare const index$j_ETypeProviderProxy: typeof ETypeProviderProxy;
|
|
443
451
|
type index$j_ETypeProxy = ETypeProxy;
|
|
444
452
|
declare const index$j_ETypeProxy: typeof ETypeProxy;
|
|
445
453
|
type index$j_ETypeProxyChecked = ETypeProxyChecked;
|
|
@@ -461,7 +469,7 @@ declare const index$j_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
461
469
|
type index$j_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
462
470
|
declare const index$j_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
463
471
|
declare namespace index$j {
|
|
464
|
-
export { index$j_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
472
|
+
export { index$j_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProviderProxy as ETypeProviderProxy, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
465
473
|
}
|
|
466
474
|
|
|
467
475
|
declare enum EStatusVPS {
|
|
@@ -1533,7 +1541,7 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1533
1541
|
newPort: string;
|
|
1534
1542
|
newUsername: string;
|
|
1535
1543
|
newPassword: string;
|
|
1536
|
-
provider:
|
|
1544
|
+
provider: ETypeProviderProxy;
|
|
1537
1545
|
status: EStatusCommon;
|
|
1538
1546
|
city: string;
|
|
1539
1547
|
speed: string;
|
package/dist/index.js
CHANGED
|
@@ -369,6 +369,7 @@ __export(types_exports, {
|
|
|
369
369
|
ETypeManagerWorkPin: () => ETypeManagerWorkPin,
|
|
370
370
|
ETypeManagerWorkType: () => ETypeManagerWorkType,
|
|
371
371
|
ETypeProviderAccountVPN: () => ETypeProviderAccountVPN,
|
|
372
|
+
ETypeProviderProxy: () => ETypeProviderProxy,
|
|
372
373
|
ETypeProxy: () => ETypeProxy,
|
|
373
374
|
ETypeProxyChecked: () => ETypeProxyChecked,
|
|
374
375
|
ETypeProxyNewIP: () => ETypeProxyNewIP,
|
|
@@ -410,6 +411,14 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
|
|
|
410
411
|
return ETypeDeviceOS2;
|
|
411
412
|
})(ETypeDeviceOS || {});
|
|
412
413
|
|
|
414
|
+
// src/enums/types/ETypeProviderProxy.enum.ts
|
|
415
|
+
var ETypeProviderProxy = /* @__PURE__ */ ((ETypeProviderProxy2) => {
|
|
416
|
+
ETypeProviderProxy2["CloudMini"] = "CloudMini";
|
|
417
|
+
ETypeProviderProxy2["ProxyRotator"] = "ProxyRotator";
|
|
418
|
+
ETypeProviderProxy2["SmartProxy"] = "SmartProxy";
|
|
419
|
+
return ETypeProviderProxy2;
|
|
420
|
+
})(ETypeProviderProxy || {});
|
|
421
|
+
|
|
413
422
|
// src/enums/types/ETypeAccountInstagramSetting.enum.ts
|
|
414
423
|
var ETypeAccountInstagramSetting = /* @__PURE__ */ ((ETypeAccountInstagramSetting2) => {
|
|
415
424
|
ETypeAccountInstagramSetting2["Business"] = "Business";
|
package/dist/index.mjs
CHANGED
|
@@ -336,6 +336,7 @@ __export(types_exports, {
|
|
|
336
336
|
ETypeManagerWorkPin: () => ETypeManagerWorkPin,
|
|
337
337
|
ETypeManagerWorkType: () => ETypeManagerWorkType,
|
|
338
338
|
ETypeProviderAccountVPN: () => ETypeProviderAccountVPN,
|
|
339
|
+
ETypeProviderProxy: () => ETypeProviderProxy,
|
|
339
340
|
ETypeProxy: () => ETypeProxy,
|
|
340
341
|
ETypeProxyChecked: () => ETypeProxyChecked,
|
|
341
342
|
ETypeProxyNewIP: () => ETypeProxyNewIP,
|
|
@@ -377,6 +378,14 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
|
|
|
377
378
|
return ETypeDeviceOS2;
|
|
378
379
|
})(ETypeDeviceOS || {});
|
|
379
380
|
|
|
381
|
+
// src/enums/types/ETypeProviderProxy.enum.ts
|
|
382
|
+
var ETypeProviderProxy = /* @__PURE__ */ ((ETypeProviderProxy2) => {
|
|
383
|
+
ETypeProviderProxy2["CloudMini"] = "CloudMini";
|
|
384
|
+
ETypeProviderProxy2["ProxyRotator"] = "ProxyRotator";
|
|
385
|
+
ETypeProviderProxy2["SmartProxy"] = "SmartProxy";
|
|
386
|
+
return ETypeProviderProxy2;
|
|
387
|
+
})(ETypeProviderProxy || {});
|
|
388
|
+
|
|
380
389
|
// src/enums/types/ETypeAccountInstagramSetting.enum.ts
|
|
381
390
|
var ETypeAccountInstagramSetting = /* @__PURE__ */ ((ETypeAccountInstagramSetting2) => {
|
|
382
391
|
ETypeAccountInstagramSetting2["Business"] = "Business";
|