automation-lib 4.8.83 → 4.8.86
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 +42 -24
- package/dist/index.d.ts +42 -24
- package/dist/index.js +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -93,8 +93,12 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
93
93
|
MANAGER_SHEET_CHILDREN: string;
|
|
94
94
|
MANAGER_SHEET_CHILDREN_GROUP: string;
|
|
95
95
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
ACCOUNT_AI: string;
|
|
97
|
+
ACCOUNT_AI_GROUP: string;
|
|
98
|
+
ACCOUNT_AI_CHANNEL: string;
|
|
99
|
+
ACCOUNT_AI_TAG: string;
|
|
100
|
+
ACCOUNT_VPS: string;
|
|
101
|
+
ACCOUNT_VPS_GROUP: string;
|
|
98
102
|
};
|
|
99
103
|
WEB: {
|
|
100
104
|
AUTH: string;
|
|
@@ -581,18 +585,48 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
581
585
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
582
586
|
name: string;
|
|
583
587
|
slug: string;
|
|
588
|
+
accountsAI: string[] | IAccountAI[];
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
592
|
+
idea_name: string;
|
|
593
|
+
idea_slug: string;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
597
|
+
niche_name: string;
|
|
598
|
+
niche_slug: string;
|
|
599
|
+
niche_idea: string | IIdea;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
603
|
+
tse_accountId: string;
|
|
604
|
+
tse_serviceName: string;
|
|
605
|
+
tse_actionsExecuted: string[];
|
|
584
606
|
}
|
|
585
607
|
|
|
586
608
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
587
|
-
|
|
588
|
-
|
|
609
|
+
tags: string[] | IAccountAITag[];
|
|
610
|
+
idea: string | IIdea;
|
|
611
|
+
niche: string[] | INiche[];
|
|
612
|
+
membersAssigned: string[] | IUser[];
|
|
613
|
+
groups: string[] | IAccountAIGroup[];
|
|
614
|
+
email: string;
|
|
615
|
+
password: string;
|
|
616
|
+
emailPassword: string;
|
|
617
|
+
email2FA: string;
|
|
589
618
|
provider: string;
|
|
619
|
+
type: ETypeAccountAI;
|
|
590
620
|
versionAI: string;
|
|
591
|
-
username: string;
|
|
592
|
-
password: string;
|
|
593
621
|
isActive: boolean;
|
|
594
622
|
}
|
|
595
623
|
|
|
624
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
625
|
+
accountAI: string | IAccountAI;
|
|
626
|
+
name: string;
|
|
627
|
+
color: string;
|
|
628
|
+
}
|
|
629
|
+
|
|
596
630
|
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
597
631
|
account: string | IAccountAI;
|
|
598
632
|
name: string;
|
|
@@ -886,23 +920,6 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
886
920
|
proxy_tracker: IProxyTracking | string;
|
|
887
921
|
}
|
|
888
922
|
|
|
889
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
890
|
-
idea_name: string;
|
|
891
|
-
idea_slug: string;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
895
|
-
niche_name: string;
|
|
896
|
-
niche_slug: string;
|
|
897
|
-
niche_idea: string | IIdea;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
901
|
-
tse_accountId: string;
|
|
902
|
-
tse_serviceName: string;
|
|
903
|
-
tse_actionsExecuted: string[];
|
|
904
|
-
}
|
|
905
|
-
|
|
906
923
|
interface IAccountDetailEmail {
|
|
907
924
|
email: string;
|
|
908
925
|
emailPassword: string;
|
|
@@ -1115,6 +1132,7 @@ type index$4_IAccount = IAccount;
|
|
|
1115
1132
|
type index$4_IAccountAI = IAccountAI;
|
|
1116
1133
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1117
1134
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1135
|
+
type index$4_IAccountAITag = IAccountAITag;
|
|
1118
1136
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1119
1137
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1120
1138
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1149,7 +1167,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1149
1167
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1150
1168
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1151
1169
|
declare namespace index$4 {
|
|
1152
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1170
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1153
1171
|
}
|
|
1154
1172
|
|
|
1155
1173
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -93,8 +93,12 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
93
93
|
MANAGER_SHEET_CHILDREN: string;
|
|
94
94
|
MANAGER_SHEET_CHILDREN_GROUP: string;
|
|
95
95
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
ACCOUNT_AI: string;
|
|
97
|
+
ACCOUNT_AI_GROUP: string;
|
|
98
|
+
ACCOUNT_AI_CHANNEL: string;
|
|
99
|
+
ACCOUNT_AI_TAG: string;
|
|
100
|
+
ACCOUNT_VPS: string;
|
|
101
|
+
ACCOUNT_VPS_GROUP: string;
|
|
98
102
|
};
|
|
99
103
|
WEB: {
|
|
100
104
|
AUTH: string;
|
|
@@ -581,18 +585,48 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
581
585
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
582
586
|
name: string;
|
|
583
587
|
slug: string;
|
|
588
|
+
accountsAI: string[] | IAccountAI[];
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
592
|
+
idea_name: string;
|
|
593
|
+
idea_slug: string;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
597
|
+
niche_name: string;
|
|
598
|
+
niche_slug: string;
|
|
599
|
+
niche_idea: string | IIdea;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
603
|
+
tse_accountId: string;
|
|
604
|
+
tse_serviceName: string;
|
|
605
|
+
tse_actionsExecuted: string[];
|
|
584
606
|
}
|
|
585
607
|
|
|
586
608
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
587
|
-
|
|
588
|
-
|
|
609
|
+
tags: string[] | IAccountAITag[];
|
|
610
|
+
idea: string | IIdea;
|
|
611
|
+
niche: string[] | INiche[];
|
|
612
|
+
membersAssigned: string[] | IUser[];
|
|
613
|
+
groups: string[] | IAccountAIGroup[];
|
|
614
|
+
email: string;
|
|
615
|
+
password: string;
|
|
616
|
+
emailPassword: string;
|
|
617
|
+
email2FA: string;
|
|
589
618
|
provider: string;
|
|
619
|
+
type: ETypeAccountAI;
|
|
590
620
|
versionAI: string;
|
|
591
|
-
username: string;
|
|
592
|
-
password: string;
|
|
593
621
|
isActive: boolean;
|
|
594
622
|
}
|
|
595
623
|
|
|
624
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
625
|
+
accountAI: string | IAccountAI;
|
|
626
|
+
name: string;
|
|
627
|
+
color: string;
|
|
628
|
+
}
|
|
629
|
+
|
|
596
630
|
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
597
631
|
account: string | IAccountAI;
|
|
598
632
|
name: string;
|
|
@@ -886,23 +920,6 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
886
920
|
proxy_tracker: IProxyTracking | string;
|
|
887
921
|
}
|
|
888
922
|
|
|
889
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
890
|
-
idea_name: string;
|
|
891
|
-
idea_slug: string;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
895
|
-
niche_name: string;
|
|
896
|
-
niche_slug: string;
|
|
897
|
-
niche_idea: string | IIdea;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
901
|
-
tse_accountId: string;
|
|
902
|
-
tse_serviceName: string;
|
|
903
|
-
tse_actionsExecuted: string[];
|
|
904
|
-
}
|
|
905
|
-
|
|
906
923
|
interface IAccountDetailEmail {
|
|
907
924
|
email: string;
|
|
908
925
|
emailPassword: string;
|
|
@@ -1115,6 +1132,7 @@ type index$4_IAccount = IAccount;
|
|
|
1115
1132
|
type index$4_IAccountAI = IAccountAI;
|
|
1116
1133
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1117
1134
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1135
|
+
type index$4_IAccountAITag = IAccountAITag;
|
|
1118
1136
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1119
1137
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1120
1138
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1149,7 +1167,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1149
1167
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1150
1168
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1151
1169
|
declare namespace index$4 {
|
|
1152
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1170
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1153
1171
|
}
|
|
1154
1172
|
|
|
1155
1173
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -138,8 +138,12 @@ var CONST_API_CONTROLLERS = {
|
|
|
138
138
|
MANAGER_SHEET_CHILDREN: "manager-sheet-children",
|
|
139
139
|
MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
|
|
140
140
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
ACCOUNT_AI: "account-ai",
|
|
142
|
+
ACCOUNT_AI_GROUP: "account-group",
|
|
143
|
+
ACCOUNT_AI_CHANNEL: "account-channel",
|
|
144
|
+
ACCOUNT_AI_TAG: "account-tag",
|
|
145
|
+
ACCOUNT_VPS: "account-vps",
|
|
146
|
+
ACCOUNT_VPS_GROUP: "account-group"
|
|
143
147
|
},
|
|
144
148
|
WEB: {
|
|
145
149
|
AUTH: "auth",
|
package/dist/index.mjs
CHANGED
|
@@ -115,8 +115,12 @@ var CONST_API_CONTROLLERS = {
|
|
|
115
115
|
MANAGER_SHEET_CHILDREN: "manager-sheet-children",
|
|
116
116
|
MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
|
|
117
117
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
ACCOUNT_AI: "account-ai",
|
|
119
|
+
ACCOUNT_AI_GROUP: "account-group",
|
|
120
|
+
ACCOUNT_AI_CHANNEL: "account-channel",
|
|
121
|
+
ACCOUNT_AI_TAG: "account-tag",
|
|
122
|
+
ACCOUNT_VPS: "account-vps",
|
|
123
|
+
ACCOUNT_VPS_GROUP: "account-group"
|
|
120
124
|
},
|
|
121
125
|
WEB: {
|
|
122
126
|
AUTH: "auth",
|