automation-lib 5.0.228 → 5.0.229
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 +14 -6
- package/dist/index.d.ts +14 -6
- package/dist/index.js +17 -8
- package/dist/index.mjs +17 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -315,12 +315,18 @@ declare enum ETypeDeviceOS {
|
|
|
315
315
|
Android = "Android"
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
-
declare enum
|
|
318
|
+
declare enum ETypeProxyProvider {
|
|
319
319
|
CloudMini = "CloudMini",
|
|
320
320
|
ProxyRotator = "ProxyRotator",
|
|
321
321
|
SmartProxy = "SmartProxy"
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
+
declare enum ETypeProxyCountry {
|
|
325
|
+
USA = "USA",
|
|
326
|
+
UK = "UK",
|
|
327
|
+
Canada = "Canada"
|
|
328
|
+
}
|
|
329
|
+
|
|
324
330
|
declare enum ETypeAccountInstagramSetting {
|
|
325
331
|
Business = "Business",
|
|
326
332
|
Personal = "Business",
|
|
@@ -446,14 +452,16 @@ type index$j_ETypeManagerWorkType = ETypeManagerWorkType;
|
|
|
446
452
|
declare const index$j_ETypeManagerWorkType: typeof ETypeManagerWorkType;
|
|
447
453
|
type index$j_ETypeProviderAccountVPN = ETypeProviderAccountVPN;
|
|
448
454
|
declare const index$j_ETypeProviderAccountVPN: typeof ETypeProviderAccountVPN;
|
|
449
|
-
type index$j_ETypeProviderProxy = ETypeProviderProxy;
|
|
450
|
-
declare const index$j_ETypeProviderProxy: typeof ETypeProviderProxy;
|
|
451
455
|
type index$j_ETypeProxy = ETypeProxy;
|
|
452
456
|
declare const index$j_ETypeProxy: typeof ETypeProxy;
|
|
453
457
|
type index$j_ETypeProxyChecked = ETypeProxyChecked;
|
|
454
458
|
declare const index$j_ETypeProxyChecked: typeof ETypeProxyChecked;
|
|
459
|
+
type index$j_ETypeProxyCountry = ETypeProxyCountry;
|
|
460
|
+
declare const index$j_ETypeProxyCountry: typeof ETypeProxyCountry;
|
|
455
461
|
type index$j_ETypeProxyNewIP = ETypeProxyNewIP;
|
|
456
462
|
declare const index$j_ETypeProxyNewIP: typeof ETypeProxyNewIP;
|
|
463
|
+
type index$j_ETypeProxyProvider = ETypeProxyProvider;
|
|
464
|
+
declare const index$j_ETypeProxyProvider: typeof ETypeProxyProvider;
|
|
457
465
|
type index$j_ETypeRatioImage = ETypeRatioImage;
|
|
458
466
|
declare const index$j_ETypeRatioImage: typeof ETypeRatioImage;
|
|
459
467
|
type index$j_ETypeSheetWorkClassify = ETypeSheetWorkClassify;
|
|
@@ -469,7 +477,7 @@ declare const index$j_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
469
477
|
type index$j_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
470
478
|
declare const index$j_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
471
479
|
declare namespace index$j {
|
|
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$
|
|
480
|
+
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_ETypeProxyCountry as ETypeProxyCountry, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeProxyProvider as ETypeProxyProvider, 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 };
|
|
473
481
|
}
|
|
474
482
|
|
|
475
483
|
declare enum EStatusVPS {
|
|
@@ -1541,11 +1549,11 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1541
1549
|
newPort: string;
|
|
1542
1550
|
newUsername: string;
|
|
1543
1551
|
newPassword: string;
|
|
1544
|
-
provider:
|
|
1552
|
+
provider: ETypeProxyProvider;
|
|
1545
1553
|
status: EStatusCommon;
|
|
1546
1554
|
city: string;
|
|
1547
1555
|
speed: string;
|
|
1548
|
-
country:
|
|
1556
|
+
country: ETypeProxyCountry;
|
|
1549
1557
|
startDate: Date;
|
|
1550
1558
|
endDate: Date;
|
|
1551
1559
|
timeLastUsed: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -315,12 +315,18 @@ declare enum ETypeDeviceOS {
|
|
|
315
315
|
Android = "Android"
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
-
declare enum
|
|
318
|
+
declare enum ETypeProxyProvider {
|
|
319
319
|
CloudMini = "CloudMini",
|
|
320
320
|
ProxyRotator = "ProxyRotator",
|
|
321
321
|
SmartProxy = "SmartProxy"
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
+
declare enum ETypeProxyCountry {
|
|
325
|
+
USA = "USA",
|
|
326
|
+
UK = "UK",
|
|
327
|
+
Canada = "Canada"
|
|
328
|
+
}
|
|
329
|
+
|
|
324
330
|
declare enum ETypeAccountInstagramSetting {
|
|
325
331
|
Business = "Business",
|
|
326
332
|
Personal = "Business",
|
|
@@ -446,14 +452,16 @@ type index$j_ETypeManagerWorkType = ETypeManagerWorkType;
|
|
|
446
452
|
declare const index$j_ETypeManagerWorkType: typeof ETypeManagerWorkType;
|
|
447
453
|
type index$j_ETypeProviderAccountVPN = ETypeProviderAccountVPN;
|
|
448
454
|
declare const index$j_ETypeProviderAccountVPN: typeof ETypeProviderAccountVPN;
|
|
449
|
-
type index$j_ETypeProviderProxy = ETypeProviderProxy;
|
|
450
|
-
declare const index$j_ETypeProviderProxy: typeof ETypeProviderProxy;
|
|
451
455
|
type index$j_ETypeProxy = ETypeProxy;
|
|
452
456
|
declare const index$j_ETypeProxy: typeof ETypeProxy;
|
|
453
457
|
type index$j_ETypeProxyChecked = ETypeProxyChecked;
|
|
454
458
|
declare const index$j_ETypeProxyChecked: typeof ETypeProxyChecked;
|
|
459
|
+
type index$j_ETypeProxyCountry = ETypeProxyCountry;
|
|
460
|
+
declare const index$j_ETypeProxyCountry: typeof ETypeProxyCountry;
|
|
455
461
|
type index$j_ETypeProxyNewIP = ETypeProxyNewIP;
|
|
456
462
|
declare const index$j_ETypeProxyNewIP: typeof ETypeProxyNewIP;
|
|
463
|
+
type index$j_ETypeProxyProvider = ETypeProxyProvider;
|
|
464
|
+
declare const index$j_ETypeProxyProvider: typeof ETypeProxyProvider;
|
|
457
465
|
type index$j_ETypeRatioImage = ETypeRatioImage;
|
|
458
466
|
declare const index$j_ETypeRatioImage: typeof ETypeRatioImage;
|
|
459
467
|
type index$j_ETypeSheetWorkClassify = ETypeSheetWorkClassify;
|
|
@@ -469,7 +477,7 @@ declare const index$j_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
469
477
|
type index$j_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
470
478
|
declare const index$j_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
471
479
|
declare namespace index$j {
|
|
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$
|
|
480
|
+
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_ETypeProxyCountry as ETypeProxyCountry, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeProxyProvider as ETypeProxyProvider, 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 };
|
|
473
481
|
}
|
|
474
482
|
|
|
475
483
|
declare enum EStatusVPS {
|
|
@@ -1541,11 +1549,11 @@ interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1541
1549
|
newPort: string;
|
|
1542
1550
|
newUsername: string;
|
|
1543
1551
|
newPassword: string;
|
|
1544
|
-
provider:
|
|
1552
|
+
provider: ETypeProxyProvider;
|
|
1545
1553
|
status: EStatusCommon;
|
|
1546
1554
|
city: string;
|
|
1547
1555
|
speed: string;
|
|
1548
|
-
country:
|
|
1556
|
+
country: ETypeProxyCountry;
|
|
1549
1557
|
startDate: Date;
|
|
1550
1558
|
endDate: Date;
|
|
1551
1559
|
timeLastUsed: Date;
|
package/dist/index.js
CHANGED
|
@@ -369,10 +369,11 @@ __export(types_exports, {
|
|
|
369
369
|
ETypeManagerWorkPin: () => ETypeManagerWorkPin,
|
|
370
370
|
ETypeManagerWorkType: () => ETypeManagerWorkType,
|
|
371
371
|
ETypeProviderAccountVPN: () => ETypeProviderAccountVPN,
|
|
372
|
-
ETypeProviderProxy: () => ETypeProviderProxy,
|
|
373
372
|
ETypeProxy: () => ETypeProxy,
|
|
374
373
|
ETypeProxyChecked: () => ETypeProxyChecked,
|
|
374
|
+
ETypeProxyCountry: () => ETypeProxyCountry,
|
|
375
375
|
ETypeProxyNewIP: () => ETypeProxyNewIP,
|
|
376
|
+
ETypeProxyProvider: () => ETypeProxyProvider,
|
|
376
377
|
ETypeRatioImage: () => ETypeRatioImage,
|
|
377
378
|
ETypeSheetWorkClassify: () => ETypeSheetWorkClassify,
|
|
378
379
|
ETypeSheetWorkPin: () => ETypeSheetWorkPin,
|
|
@@ -411,13 +412,21 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
|
|
|
411
412
|
return ETypeDeviceOS2;
|
|
412
413
|
})(ETypeDeviceOS || {});
|
|
413
414
|
|
|
414
|
-
// src/enums/types/
|
|
415
|
-
var
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
return
|
|
420
|
-
})(
|
|
415
|
+
// src/enums/types/ETypeProxyProvider.enum.ts
|
|
416
|
+
var ETypeProxyProvider = /* @__PURE__ */ ((ETypeProxyProvider2) => {
|
|
417
|
+
ETypeProxyProvider2["CloudMini"] = "CloudMini";
|
|
418
|
+
ETypeProxyProvider2["ProxyRotator"] = "ProxyRotator";
|
|
419
|
+
ETypeProxyProvider2["SmartProxy"] = "SmartProxy";
|
|
420
|
+
return ETypeProxyProvider2;
|
|
421
|
+
})(ETypeProxyProvider || {});
|
|
422
|
+
|
|
423
|
+
// src/enums/types/ETypeProxyCountry.enum.ts
|
|
424
|
+
var ETypeProxyCountry = /* @__PURE__ */ ((ETypeProxyCountry2) => {
|
|
425
|
+
ETypeProxyCountry2["USA"] = "USA";
|
|
426
|
+
ETypeProxyCountry2["UK"] = "UK";
|
|
427
|
+
ETypeProxyCountry2["Canada"] = "Canada";
|
|
428
|
+
return ETypeProxyCountry2;
|
|
429
|
+
})(ETypeProxyCountry || {});
|
|
421
430
|
|
|
422
431
|
// src/enums/types/ETypeAccountInstagramSetting.enum.ts
|
|
423
432
|
var ETypeAccountInstagramSetting = /* @__PURE__ */ ((ETypeAccountInstagramSetting2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -336,10 +336,11 @@ __export(types_exports, {
|
|
|
336
336
|
ETypeManagerWorkPin: () => ETypeManagerWorkPin,
|
|
337
337
|
ETypeManagerWorkType: () => ETypeManagerWorkType,
|
|
338
338
|
ETypeProviderAccountVPN: () => ETypeProviderAccountVPN,
|
|
339
|
-
ETypeProviderProxy: () => ETypeProviderProxy,
|
|
340
339
|
ETypeProxy: () => ETypeProxy,
|
|
341
340
|
ETypeProxyChecked: () => ETypeProxyChecked,
|
|
341
|
+
ETypeProxyCountry: () => ETypeProxyCountry,
|
|
342
342
|
ETypeProxyNewIP: () => ETypeProxyNewIP,
|
|
343
|
+
ETypeProxyProvider: () => ETypeProxyProvider,
|
|
343
344
|
ETypeRatioImage: () => ETypeRatioImage,
|
|
344
345
|
ETypeSheetWorkClassify: () => ETypeSheetWorkClassify,
|
|
345
346
|
ETypeSheetWorkPin: () => ETypeSheetWorkPin,
|
|
@@ -378,13 +379,21 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
|
|
|
378
379
|
return ETypeDeviceOS2;
|
|
379
380
|
})(ETypeDeviceOS || {});
|
|
380
381
|
|
|
381
|
-
// src/enums/types/
|
|
382
|
-
var
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
return
|
|
387
|
-
})(
|
|
382
|
+
// src/enums/types/ETypeProxyProvider.enum.ts
|
|
383
|
+
var ETypeProxyProvider = /* @__PURE__ */ ((ETypeProxyProvider2) => {
|
|
384
|
+
ETypeProxyProvider2["CloudMini"] = "CloudMini";
|
|
385
|
+
ETypeProxyProvider2["ProxyRotator"] = "ProxyRotator";
|
|
386
|
+
ETypeProxyProvider2["SmartProxy"] = "SmartProxy";
|
|
387
|
+
return ETypeProxyProvider2;
|
|
388
|
+
})(ETypeProxyProvider || {});
|
|
389
|
+
|
|
390
|
+
// src/enums/types/ETypeProxyCountry.enum.ts
|
|
391
|
+
var ETypeProxyCountry = /* @__PURE__ */ ((ETypeProxyCountry2) => {
|
|
392
|
+
ETypeProxyCountry2["USA"] = "USA";
|
|
393
|
+
ETypeProxyCountry2["UK"] = "UK";
|
|
394
|
+
ETypeProxyCountry2["Canada"] = "Canada";
|
|
395
|
+
return ETypeProxyCountry2;
|
|
396
|
+
})(ETypeProxyCountry || {});
|
|
388
397
|
|
|
389
398
|
// src/enums/types/ETypeAccountInstagramSetting.enum.ts
|
|
390
399
|
var ETypeAccountInstagramSetting = /* @__PURE__ */ ((ETypeAccountInstagramSetting2) => {
|