automation-lib 4.8.78 → 4.8.80
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 +34 -2
- package/dist/index.d.ts +34 -2
- package/dist/index.js +10 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -83,6 +83,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
83
83
|
PROXY_SETTING: string;
|
|
84
84
|
PROXY_TRACKING: string;
|
|
85
85
|
TASKS_TOOL: string;
|
|
86
|
+
TASKS_AI: string;
|
|
86
87
|
VOICES_SETTING_DELAY: string;
|
|
87
88
|
VOICES_LANGUAGE: string;
|
|
88
89
|
VOICES_STORE: string;
|
|
@@ -386,6 +387,12 @@ declare enum EStatusTaskTool {
|
|
|
386
387
|
Repaired = "Repaired"
|
|
387
388
|
}
|
|
388
389
|
|
|
390
|
+
declare enum EStatusTaskAI {
|
|
391
|
+
Spending = "Spending",
|
|
392
|
+
Done = "Done",
|
|
393
|
+
Error = "Error"
|
|
394
|
+
}
|
|
395
|
+
|
|
389
396
|
declare enum EStatusBlog {
|
|
390
397
|
Spending = "Spending",
|
|
391
398
|
Error = "Error",
|
|
@@ -422,6 +429,8 @@ type index$8_EStatusLoginAccountSocial = EStatusLoginAccountSocial;
|
|
|
422
429
|
declare const index$8_EStatusLoginAccountSocial: typeof EStatusLoginAccountSocial;
|
|
423
430
|
type index$8_EStatusSheetWork = EStatusSheetWork;
|
|
424
431
|
declare const index$8_EStatusSheetWork: typeof EStatusSheetWork;
|
|
432
|
+
type index$8_EStatusTaskAI = EStatusTaskAI;
|
|
433
|
+
declare const index$8_EStatusTaskAI: typeof EStatusTaskAI;
|
|
425
434
|
type index$8_EStatusTaskJob = EStatusTaskJob;
|
|
426
435
|
declare const index$8_EStatusTaskJob: typeof EStatusTaskJob;
|
|
427
436
|
type index$8_EStatusTaskJobGroup = EStatusTaskJobGroup;
|
|
@@ -429,7 +438,7 @@ declare const index$8_EStatusTaskJobGroup: typeof EStatusTaskJobGroup;
|
|
|
429
438
|
type index$8_EStatusTaskTool = EStatusTaskTool;
|
|
430
439
|
declare const index$8_EStatusTaskTool: typeof EStatusTaskTool;
|
|
431
440
|
declare namespace index$8 {
|
|
432
|
-
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool };
|
|
441
|
+
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskAI as EStatusTaskAI, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool };
|
|
433
442
|
}
|
|
434
443
|
|
|
435
444
|
declare namespace index$7 {
|
|
@@ -978,6 +987,27 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
978
987
|
task_note: string;
|
|
979
988
|
}
|
|
980
989
|
|
|
990
|
+
interface ITaskAIItemAction {
|
|
991
|
+
order: number;
|
|
992
|
+
row: number;
|
|
993
|
+
column: number;
|
|
994
|
+
promptInput: string;
|
|
995
|
+
promptOutput: string;
|
|
996
|
+
status: EStatusTaskAI;
|
|
997
|
+
}
|
|
998
|
+
interface ITaskAIItemGroup {
|
|
999
|
+
name: string;
|
|
1000
|
+
order: number;
|
|
1001
|
+
listItemAction: Array<ITaskAIItemAction>;
|
|
1002
|
+
}
|
|
1003
|
+
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1004
|
+
accountAI: string | IAccountAI;
|
|
1005
|
+
sheetUrl: string;
|
|
1006
|
+
sheetName: string;
|
|
1007
|
+
listGroupsActions: Array<ITaskAIItemGroup>;
|
|
1008
|
+
status: EStatusTaskAI;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
981
1011
|
interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
982
1012
|
templateName: string;
|
|
983
1013
|
pageThumb: {
|
|
@@ -1110,13 +1140,15 @@ type index$4_IProxy = IProxy;
|
|
|
1110
1140
|
type index$4_IProxySetting = IProxySetting;
|
|
1111
1141
|
type index$4_IProxyTracking = IProxyTracking;
|
|
1112
1142
|
type index$4_ISheetsTool = ISheetsTool;
|
|
1143
|
+
type index$4_ITaskAI = ITaskAI;
|
|
1144
|
+
type index$4_ITaskAIItemAction = ITaskAIItemAction;
|
|
1113
1145
|
type index$4_ITaskTool = ITaskTool;
|
|
1114
1146
|
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
1115
1147
|
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
1116
1148
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1117
1149
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1118
1150
|
declare namespace index$4 {
|
|
1119
|
-
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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1151
|
+
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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1120
1152
|
}
|
|
1121
1153
|
|
|
1122
1154
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
83
83
|
PROXY_SETTING: string;
|
|
84
84
|
PROXY_TRACKING: string;
|
|
85
85
|
TASKS_TOOL: string;
|
|
86
|
+
TASKS_AI: string;
|
|
86
87
|
VOICES_SETTING_DELAY: string;
|
|
87
88
|
VOICES_LANGUAGE: string;
|
|
88
89
|
VOICES_STORE: string;
|
|
@@ -386,6 +387,12 @@ declare enum EStatusTaskTool {
|
|
|
386
387
|
Repaired = "Repaired"
|
|
387
388
|
}
|
|
388
389
|
|
|
390
|
+
declare enum EStatusTaskAI {
|
|
391
|
+
Spending = "Spending",
|
|
392
|
+
Done = "Done",
|
|
393
|
+
Error = "Error"
|
|
394
|
+
}
|
|
395
|
+
|
|
389
396
|
declare enum EStatusBlog {
|
|
390
397
|
Spending = "Spending",
|
|
391
398
|
Error = "Error",
|
|
@@ -422,6 +429,8 @@ type index$8_EStatusLoginAccountSocial = EStatusLoginAccountSocial;
|
|
|
422
429
|
declare const index$8_EStatusLoginAccountSocial: typeof EStatusLoginAccountSocial;
|
|
423
430
|
type index$8_EStatusSheetWork = EStatusSheetWork;
|
|
424
431
|
declare const index$8_EStatusSheetWork: typeof EStatusSheetWork;
|
|
432
|
+
type index$8_EStatusTaskAI = EStatusTaskAI;
|
|
433
|
+
declare const index$8_EStatusTaskAI: typeof EStatusTaskAI;
|
|
425
434
|
type index$8_EStatusTaskJob = EStatusTaskJob;
|
|
426
435
|
declare const index$8_EStatusTaskJob: typeof EStatusTaskJob;
|
|
427
436
|
type index$8_EStatusTaskJobGroup = EStatusTaskJobGroup;
|
|
@@ -429,7 +438,7 @@ declare const index$8_EStatusTaskJobGroup: typeof EStatusTaskJobGroup;
|
|
|
429
438
|
type index$8_EStatusTaskTool = EStatusTaskTool;
|
|
430
439
|
declare const index$8_EStatusTaskTool: typeof EStatusTaskTool;
|
|
431
440
|
declare namespace index$8 {
|
|
432
|
-
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool };
|
|
441
|
+
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskAI as EStatusTaskAI, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool };
|
|
433
442
|
}
|
|
434
443
|
|
|
435
444
|
declare namespace index$7 {
|
|
@@ -978,6 +987,27 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
978
987
|
task_note: string;
|
|
979
988
|
}
|
|
980
989
|
|
|
990
|
+
interface ITaskAIItemAction {
|
|
991
|
+
order: number;
|
|
992
|
+
row: number;
|
|
993
|
+
column: number;
|
|
994
|
+
promptInput: string;
|
|
995
|
+
promptOutput: string;
|
|
996
|
+
status: EStatusTaskAI;
|
|
997
|
+
}
|
|
998
|
+
interface ITaskAIItemGroup {
|
|
999
|
+
name: string;
|
|
1000
|
+
order: number;
|
|
1001
|
+
listItemAction: Array<ITaskAIItemAction>;
|
|
1002
|
+
}
|
|
1003
|
+
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1004
|
+
accountAI: string | IAccountAI;
|
|
1005
|
+
sheetUrl: string;
|
|
1006
|
+
sheetName: string;
|
|
1007
|
+
listGroupsActions: Array<ITaskAIItemGroup>;
|
|
1008
|
+
status: EStatusTaskAI;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
981
1011
|
interface IHistoryCanva extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
982
1012
|
templateName: string;
|
|
983
1013
|
pageThumb: {
|
|
@@ -1110,13 +1140,15 @@ type index$4_IProxy = IProxy;
|
|
|
1110
1140
|
type index$4_IProxySetting = IProxySetting;
|
|
1111
1141
|
type index$4_IProxyTracking = IProxyTracking;
|
|
1112
1142
|
type index$4_ISheetsTool = ISheetsTool;
|
|
1143
|
+
type index$4_ITaskAI = ITaskAI;
|
|
1144
|
+
type index$4_ITaskAIItemAction = ITaskAIItemAction;
|
|
1113
1145
|
type index$4_ITaskTool = ITaskTool;
|
|
1114
1146
|
type index$4_IVoiceGenerated = IVoiceGenerated;
|
|
1115
1147
|
type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
1116
1148
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1117
1149
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1118
1150
|
declare namespace index$4 {
|
|
1119
|
-
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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1151
|
+
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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1120
1152
|
}
|
|
1121
1153
|
|
|
1122
1154
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -128,6 +128,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
128
128
|
PROXY_SETTING: "proxy-setting",
|
|
129
129
|
PROXY_TRACKING: "proxy-tracking",
|
|
130
130
|
TASKS_TOOL: "tasks-tool",
|
|
131
|
+
TASKS_AI: "tasks-ai",
|
|
131
132
|
VOICES_SETTING_DELAY: "voices-setting-delay",
|
|
132
133
|
VOICES_LANGUAGE: "voices-language",
|
|
133
134
|
VOICES_STORE: "voices-store",
|
|
@@ -419,6 +420,7 @@ __export(status_exports, {
|
|
|
419
420
|
EStatusLoginAccountEmail: () => EStatusLoginAccountEmail,
|
|
420
421
|
EStatusLoginAccountSocial: () => EStatusLoginAccountSocial,
|
|
421
422
|
EStatusSheetWork: () => EStatusSheetWork,
|
|
423
|
+
EStatusTaskAI: () => EStatusTaskAI,
|
|
422
424
|
EStatusTaskJob: () => EStatusTaskJob,
|
|
423
425
|
EStatusTaskJobGroup: () => EStatusTaskJobGroup,
|
|
424
426
|
EStatusTaskTool: () => EStatusTaskTool
|
|
@@ -471,6 +473,14 @@ var EStatusTaskTool = /* @__PURE__ */ ((EStatusTaskTool2) => {
|
|
|
471
473
|
return EStatusTaskTool2;
|
|
472
474
|
})(EStatusTaskTool || {});
|
|
473
475
|
|
|
476
|
+
// src/enums/status/tools/EStatusTaskAI.enum.ts
|
|
477
|
+
var EStatusTaskAI = /* @__PURE__ */ ((EStatusTaskAI2) => {
|
|
478
|
+
EStatusTaskAI2["Spending"] = "Spending";
|
|
479
|
+
EStatusTaskAI2["Done"] = "Done";
|
|
480
|
+
EStatusTaskAI2["Error"] = "Error";
|
|
481
|
+
return EStatusTaskAI2;
|
|
482
|
+
})(EStatusTaskAI || {});
|
|
483
|
+
|
|
474
484
|
// src/enums/status/web/EStatusBlog.enum.ts
|
|
475
485
|
var EStatusBlog = /* @__PURE__ */ ((EStatusBlog2) => {
|
|
476
486
|
EStatusBlog2["Spending"] = "Spending";
|
package/dist/index.mjs
CHANGED
|
@@ -105,6 +105,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
105
105
|
PROXY_SETTING: "proxy-setting",
|
|
106
106
|
PROXY_TRACKING: "proxy-tracking",
|
|
107
107
|
TASKS_TOOL: "tasks-tool",
|
|
108
|
+
TASKS_AI: "tasks-ai",
|
|
108
109
|
VOICES_SETTING_DELAY: "voices-setting-delay",
|
|
109
110
|
VOICES_LANGUAGE: "voices-language",
|
|
110
111
|
VOICES_STORE: "voices-store",
|
|
@@ -396,6 +397,7 @@ __export(status_exports, {
|
|
|
396
397
|
EStatusLoginAccountEmail: () => EStatusLoginAccountEmail,
|
|
397
398
|
EStatusLoginAccountSocial: () => EStatusLoginAccountSocial,
|
|
398
399
|
EStatusSheetWork: () => EStatusSheetWork,
|
|
400
|
+
EStatusTaskAI: () => EStatusTaskAI,
|
|
399
401
|
EStatusTaskJob: () => EStatusTaskJob,
|
|
400
402
|
EStatusTaskJobGroup: () => EStatusTaskJobGroup,
|
|
401
403
|
EStatusTaskTool: () => EStatusTaskTool
|
|
@@ -448,6 +450,14 @@ var EStatusTaskTool = /* @__PURE__ */ ((EStatusTaskTool2) => {
|
|
|
448
450
|
return EStatusTaskTool2;
|
|
449
451
|
})(EStatusTaskTool || {});
|
|
450
452
|
|
|
453
|
+
// src/enums/status/tools/EStatusTaskAI.enum.ts
|
|
454
|
+
var EStatusTaskAI = /* @__PURE__ */ ((EStatusTaskAI2) => {
|
|
455
|
+
EStatusTaskAI2["Spending"] = "Spending";
|
|
456
|
+
EStatusTaskAI2["Done"] = "Done";
|
|
457
|
+
EStatusTaskAI2["Error"] = "Error";
|
|
458
|
+
return EStatusTaskAI2;
|
|
459
|
+
})(EStatusTaskAI || {});
|
|
460
|
+
|
|
451
461
|
// src/enums/status/web/EStatusBlog.enum.ts
|
|
452
462
|
var EStatusBlog = /* @__PURE__ */ ((EStatusBlog2) => {
|
|
453
463
|
EStatusBlog2["Spending"] = "Spending";
|