automation-lib 4.9.33 → 4.9.35

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 CHANGED
@@ -94,6 +94,7 @@ declare const CONST_API_CONTROLLERS: {
94
94
  MANAGER_SHEET_CHILDREN: string;
95
95
  MANAGER_SHEET_CHILDREN_GROUP: string;
96
96
  MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
97
+ ACCOUNT_EMAIL: string;
97
98
  ACCOUNT_AI: string;
98
99
  ACCOUNT_AI_INFO: string;
99
100
  ACCOUNT_AI_GROUP: string;
@@ -480,6 +481,13 @@ declare enum EStatusAccountAI {
480
481
  WrongPassword = "WrongPassword"
481
482
  }
482
483
 
484
+ declare enum EStatusEmail {
485
+ Active = "Active",
486
+ Suspend = "Suspend",
487
+ Wrong2FA = "Wrong2FA",
488
+ WrongPassword = "WrongPassword"
489
+ }
490
+
483
491
  type index$9_EAIModelImage = EAIModelImage;
484
492
  declare const index$9_EAIModelImage: typeof EAIModelImage;
485
493
  type index$9_EAIModelText = EAIModelText;
@@ -496,8 +504,10 @@ type index$9_EAIVersionVoice = EAIVersionVoice;
496
504
  declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
497
505
  type index$9_EStatusAccountAI = EStatusAccountAI;
498
506
  declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
507
+ type index$9_EStatusEmail = EStatusEmail;
508
+ declare const index$9_EStatusEmail: typeof EStatusEmail;
499
509
  declare namespace index$9 {
500
- export { index$9_EAIModelImage as EAIModelImage, index$9_EAIModelText as EAIModelText, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EStatusAccountAI as EStatusAccountAI };
510
+ export { index$9_EAIModelImage as EAIModelImage, index$9_EAIModelText as EAIModelText, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EStatusAccountAI as EStatusAccountAI, index$9_EStatusEmail as EStatusEmail };
501
511
  }
502
512
 
503
513
  declare enum ELarkMessageCommon {
@@ -900,14 +910,7 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
900
910
  membersAssigned: string[] | IUser[];
901
911
  }
902
912
 
903
- declare enum EStatusEmail {
904
- Active = "Active",
905
- Suspend = "Suspend",
906
- Wrong2FA = "Wrong2FA",
907
- WrongPassword = "WrongPassword"
908
- }
909
-
910
- interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
913
+ interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
911
914
  email: string;
912
915
  password: string;
913
916
  code2FA: string;
@@ -1073,6 +1076,15 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
1073
1076
  device_note: string;
1074
1077
  }
1075
1078
 
1079
+ interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1080
+ ps_proxy: IProxy | string;
1081
+ ps_typeSocial: ETypeSocial;
1082
+ ps_maximumAccountApply: number;
1083
+ ps_isFulled: boolean;
1084
+ ps_numberAccountApplied: number;
1085
+ ps_accountApplied: IAccount[] | string[];
1086
+ }
1087
+
1076
1088
  interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1077
1089
  pt_url: string;
1078
1090
  pt_name: string;
@@ -1083,15 +1095,6 @@ interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterface
1083
1095
  pt_department: IDepartment | string;
1084
1096
  }
1085
1097
 
1086
- interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1087
- ps_proxy: IProxy | string;
1088
- ps_typeSocial: ETypeSocial;
1089
- ps_maximumAccountApply: number;
1090
- ps_isFulled: boolean;
1091
- ps_numberAccountApplied: number;
1092
- ps_accountApplied: IAccount[] | string[];
1093
- }
1094
-
1095
1098
  interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1096
1099
  proxy_ip: string;
1097
1100
  proxy_key: string;
package/dist/index.d.ts CHANGED
@@ -94,6 +94,7 @@ declare const CONST_API_CONTROLLERS: {
94
94
  MANAGER_SHEET_CHILDREN: string;
95
95
  MANAGER_SHEET_CHILDREN_GROUP: string;
96
96
  MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
97
+ ACCOUNT_EMAIL: string;
97
98
  ACCOUNT_AI: string;
98
99
  ACCOUNT_AI_INFO: string;
99
100
  ACCOUNT_AI_GROUP: string;
@@ -480,6 +481,13 @@ declare enum EStatusAccountAI {
480
481
  WrongPassword = "WrongPassword"
481
482
  }
482
483
 
484
+ declare enum EStatusEmail {
485
+ Active = "Active",
486
+ Suspend = "Suspend",
487
+ Wrong2FA = "Wrong2FA",
488
+ WrongPassword = "WrongPassword"
489
+ }
490
+
483
491
  type index$9_EAIModelImage = EAIModelImage;
484
492
  declare const index$9_EAIModelImage: typeof EAIModelImage;
485
493
  type index$9_EAIModelText = EAIModelText;
@@ -496,8 +504,10 @@ type index$9_EAIVersionVoice = EAIVersionVoice;
496
504
  declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
497
505
  type index$9_EStatusAccountAI = EStatusAccountAI;
498
506
  declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
507
+ type index$9_EStatusEmail = EStatusEmail;
508
+ declare const index$9_EStatusEmail: typeof EStatusEmail;
499
509
  declare namespace index$9 {
500
- export { index$9_EAIModelImage as EAIModelImage, index$9_EAIModelText as EAIModelText, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EStatusAccountAI as EStatusAccountAI };
510
+ export { index$9_EAIModelImage as EAIModelImage, index$9_EAIModelText as EAIModelText, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EStatusAccountAI as EStatusAccountAI, index$9_EStatusEmail as EStatusEmail };
501
511
  }
502
512
 
503
513
  declare enum ELarkMessageCommon {
@@ -900,14 +910,7 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
900
910
  membersAssigned: string[] | IUser[];
901
911
  }
902
912
 
903
- declare enum EStatusEmail {
904
- Active = "Active",
905
- Suspend = "Suspend",
906
- Wrong2FA = "Wrong2FA",
907
- WrongPassword = "WrongPassword"
908
- }
909
-
910
- interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
913
+ interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
911
914
  email: string;
912
915
  password: string;
913
916
  code2FA: string;
@@ -1073,6 +1076,15 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
1073
1076
  device_note: string;
1074
1077
  }
1075
1078
 
1079
+ interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1080
+ ps_proxy: IProxy | string;
1081
+ ps_typeSocial: ETypeSocial;
1082
+ ps_maximumAccountApply: number;
1083
+ ps_isFulled: boolean;
1084
+ ps_numberAccountApplied: number;
1085
+ ps_accountApplied: IAccount[] | string[];
1086
+ }
1087
+
1076
1088
  interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1077
1089
  pt_url: string;
1078
1090
  pt_name: string;
@@ -1083,15 +1095,6 @@ interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterface
1083
1095
  pt_department: IDepartment | string;
1084
1096
  }
1085
1097
 
1086
- interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1087
- ps_proxy: IProxy | string;
1088
- ps_typeSocial: ETypeSocial;
1089
- ps_maximumAccountApply: number;
1090
- ps_isFulled: boolean;
1091
- ps_numberAccountApplied: number;
1092
- ps_accountApplied: IAccount[] | string[];
1093
- }
1094
-
1095
1098
  interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1096
1099
  proxy_ip: string;
1097
1100
  proxy_key: string;
package/dist/index.js CHANGED
@@ -139,6 +139,7 @@ var CONST_API_CONTROLLERS = {
139
139
  MANAGER_SHEET_CHILDREN: "manager-sheet-children",
140
140
  MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
141
141
  MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
142
+ ACCOUNT_EMAIL: "account-email",
142
143
  ACCOUNT_AI: "account-ai",
143
144
  ACCOUNT_AI_INFO: "account-ai-info",
144
145
  ACCOUNT_AI_GROUP: "account-ai-group",
@@ -519,7 +520,8 @@ __export(ai_exports, {
519
520
  EAIVersionImage: () => EAIVersionImage,
520
521
  EAIVersionPerplexity: () => EAIVersionPerplexity,
521
522
  EAIVersionVoice: () => EAIVersionVoice,
522
- EStatusAccountAI: () => EStatusAccountAI
523
+ EStatusAccountAI: () => EStatusAccountAI,
524
+ EStatusEmail: () => EStatusEmail
523
525
  });
524
526
 
525
527
  // src/enums/ai/EAIModelText.enum.ts
@@ -583,6 +585,15 @@ var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
583
585
  return EStatusAccountAI2;
584
586
  })(EStatusAccountAI || {});
585
587
 
588
+ // src/enums/ai/EStatusEmail.enum.ts
589
+ var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
590
+ EStatusEmail2["Active"] = "Active";
591
+ EStatusEmail2["Suspend"] = "Suspend";
592
+ EStatusEmail2["Wrong2FA"] = "Wrong2FA";
593
+ EStatusEmail2["WrongPassword"] = "WrongPassword";
594
+ return EStatusEmail2;
595
+ })(EStatusEmail || {});
596
+
586
597
  // src/enums/lark/index.ts
587
598
  var lark_exports = {};
588
599
  __export(lark_exports, {
package/dist/index.mjs CHANGED
@@ -116,6 +116,7 @@ var CONST_API_CONTROLLERS = {
116
116
  MANAGER_SHEET_CHILDREN: "manager-sheet-children",
117
117
  MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
118
118
  MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
119
+ ACCOUNT_EMAIL: "account-email",
119
120
  ACCOUNT_AI: "account-ai",
120
121
  ACCOUNT_AI_INFO: "account-ai-info",
121
122
  ACCOUNT_AI_GROUP: "account-ai-group",
@@ -496,7 +497,8 @@ __export(ai_exports, {
496
497
  EAIVersionImage: () => EAIVersionImage,
497
498
  EAIVersionPerplexity: () => EAIVersionPerplexity,
498
499
  EAIVersionVoice: () => EAIVersionVoice,
499
- EStatusAccountAI: () => EStatusAccountAI
500
+ EStatusAccountAI: () => EStatusAccountAI,
501
+ EStatusEmail: () => EStatusEmail
500
502
  });
501
503
 
502
504
  // src/enums/ai/EAIModelText.enum.ts
@@ -560,6 +562,15 @@ var EStatusAccountAI = /* @__PURE__ */ ((EStatusAccountAI2) => {
560
562
  return EStatusAccountAI2;
561
563
  })(EStatusAccountAI || {});
562
564
 
565
+ // src/enums/ai/EStatusEmail.enum.ts
566
+ var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
567
+ EStatusEmail2["Active"] = "Active";
568
+ EStatusEmail2["Suspend"] = "Suspend";
569
+ EStatusEmail2["Wrong2FA"] = "Wrong2FA";
570
+ EStatusEmail2["WrongPassword"] = "WrongPassword";
571
+ return EStatusEmail2;
572
+ })(EStatusEmail || {});
573
+
563
574
  // src/enums/lark/index.ts
564
575
  var lark_exports = {};
565
576
  __export(lark_exports, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.9.33",
3
+ "version": "4.9.35",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",