automation-lib 6.6.77 → 6.6.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 +153 -4
- package/dist/index.d.ts +153 -4
- package/dist/index.js +39 -0
- package/dist/index.mjs +36 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -89,6 +89,9 @@ __export(index_exports, {
|
|
|
89
89
|
EPriority: () => EPriority,
|
|
90
90
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
91
91
|
ERatioImage: () => ERatioImage,
|
|
92
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
93
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
94
|
+
EReportManagerType: () => EReportManagerType,
|
|
92
95
|
EScreenResolution: () => EScreenResolution,
|
|
93
96
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
94
97
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -2084,6 +2087,9 @@ __export(models_exports, {
|
|
|
2084
2087
|
EPCBrowserSheetModule: () => EPCBrowserSheetModule,
|
|
2085
2088
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
2086
2089
|
ERatioImage: () => ERatioImage,
|
|
2090
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
2091
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
2092
|
+
EReportManagerType: () => EReportManagerType,
|
|
2087
2093
|
EScreenResolution: () => EScreenResolution,
|
|
2088
2094
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
2089
2095
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -2376,6 +2382,9 @@ __export(tool_exports, {
|
|
|
2376
2382
|
EPCBrowserSheetModule: () => EPCBrowserSheetModule,
|
|
2377
2383
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
2378
2384
|
ERatioImage: () => ERatioImage,
|
|
2385
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
2386
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
2387
|
+
EReportManagerType: () => EReportManagerType,
|
|
2379
2388
|
EScreenResolution: () => EScreenResolution,
|
|
2380
2389
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
2381
2390
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -2942,6 +2951,30 @@ var ESheetToolThreads = /* @__PURE__ */ ((ESheetToolThreads2) => {
|
|
|
2942
2951
|
return ESheetToolThreads2;
|
|
2943
2952
|
})(ESheetToolThreads || {});
|
|
2944
2953
|
|
|
2954
|
+
// src/interfaces/models/tool/tasks/report-manager/enum/EAllReportManager.enum.ts
|
|
2955
|
+
var EReportManagerType = /* @__PURE__ */ ((EReportManagerType2) => {
|
|
2956
|
+
EReportManagerType2["Bug"] = "bug";
|
|
2957
|
+
EReportManagerType2["Suggestion"] = "suggestion";
|
|
2958
|
+
EReportManagerType2["Feature"] = "feature";
|
|
2959
|
+
return EReportManagerType2;
|
|
2960
|
+
})(EReportManagerType || {});
|
|
2961
|
+
var EReportManagerPriority = /* @__PURE__ */ ((EReportManagerPriority2) => {
|
|
2962
|
+
EReportManagerPriority2["Critical"] = "critical";
|
|
2963
|
+
EReportManagerPriority2["High"] = "high";
|
|
2964
|
+
EReportManagerPriority2["Medium"] = "medium";
|
|
2965
|
+
EReportManagerPriority2["Low"] = "low";
|
|
2966
|
+
return EReportManagerPriority2;
|
|
2967
|
+
})(EReportManagerPriority || {});
|
|
2968
|
+
var EReportManagerStatus = /* @__PURE__ */ ((EReportManagerStatus2) => {
|
|
2969
|
+
EReportManagerStatus2["Draft"] = "draft";
|
|
2970
|
+
EReportManagerStatus2["Open"] = "open";
|
|
2971
|
+
EReportManagerStatus2["InProgress"] = "in-progress";
|
|
2972
|
+
EReportManagerStatus2["Resolved"] = "resolved";
|
|
2973
|
+
EReportManagerStatus2["Closed"] = "closed";
|
|
2974
|
+
EReportManagerStatus2["Rejected"] = "rejected";
|
|
2975
|
+
return EReportManagerStatus2;
|
|
2976
|
+
})(EReportManagerStatus || {});
|
|
2977
|
+
|
|
2945
2978
|
// src/interfaces/models/tool/tasks/canva/enum/ETaskGenerateAI.enum.ts
|
|
2946
2979
|
var ETaskStatus = /* @__PURE__ */ ((ETaskStatus2) => {
|
|
2947
2980
|
ETaskStatus2["Pending"] = "Pending";
|
|
@@ -3196,6 +3229,9 @@ __export(interfaces_exports, {
|
|
|
3196
3229
|
EPCBrowserSheetModule: () => EPCBrowserSheetModule,
|
|
3197
3230
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
3198
3231
|
ERatioImage: () => ERatioImage,
|
|
3232
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
3233
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
3234
|
+
EReportManagerType: () => EReportManagerType,
|
|
3199
3235
|
EScreenResolution: () => EScreenResolution,
|
|
3200
3236
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
3201
3237
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -3340,6 +3376,9 @@ __export(interfaces_exports, {
|
|
|
3340
3376
|
EPriority,
|
|
3341
3377
|
EProcessingEmailManager,
|
|
3342
3378
|
ERatioImage,
|
|
3379
|
+
EReportManagerPriority,
|
|
3380
|
+
EReportManagerStatus,
|
|
3381
|
+
EReportManagerType,
|
|
3343
3382
|
EScreenResolution,
|
|
3344
3383
|
ESheetToolInstagram,
|
|
3345
3384
|
ESheetToolStatusImport,
|
package/dist/index.mjs
CHANGED
|
@@ -1839,6 +1839,9 @@ __export(models_exports, {
|
|
|
1839
1839
|
EPCBrowserSheetModule: () => EPCBrowserSheetModule,
|
|
1840
1840
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
1841
1841
|
ERatioImage: () => ERatioImage,
|
|
1842
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
1843
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
1844
|
+
EReportManagerType: () => EReportManagerType,
|
|
1842
1845
|
EScreenResolution: () => EScreenResolution,
|
|
1843
1846
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
1844
1847
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -2131,6 +2134,9 @@ __export(tool_exports, {
|
|
|
2131
2134
|
EPCBrowserSheetModule: () => EPCBrowserSheetModule,
|
|
2132
2135
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
2133
2136
|
ERatioImage: () => ERatioImage,
|
|
2137
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
2138
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
2139
|
+
EReportManagerType: () => EReportManagerType,
|
|
2134
2140
|
EScreenResolution: () => EScreenResolution,
|
|
2135
2141
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
2136
2142
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -2697,6 +2703,30 @@ var ESheetToolThreads = /* @__PURE__ */ ((ESheetToolThreads2) => {
|
|
|
2697
2703
|
return ESheetToolThreads2;
|
|
2698
2704
|
})(ESheetToolThreads || {});
|
|
2699
2705
|
|
|
2706
|
+
// src/interfaces/models/tool/tasks/report-manager/enum/EAllReportManager.enum.ts
|
|
2707
|
+
var EReportManagerType = /* @__PURE__ */ ((EReportManagerType2) => {
|
|
2708
|
+
EReportManagerType2["Bug"] = "bug";
|
|
2709
|
+
EReportManagerType2["Suggestion"] = "suggestion";
|
|
2710
|
+
EReportManagerType2["Feature"] = "feature";
|
|
2711
|
+
return EReportManagerType2;
|
|
2712
|
+
})(EReportManagerType || {});
|
|
2713
|
+
var EReportManagerPriority = /* @__PURE__ */ ((EReportManagerPriority2) => {
|
|
2714
|
+
EReportManagerPriority2["Critical"] = "critical";
|
|
2715
|
+
EReportManagerPriority2["High"] = "high";
|
|
2716
|
+
EReportManagerPriority2["Medium"] = "medium";
|
|
2717
|
+
EReportManagerPriority2["Low"] = "low";
|
|
2718
|
+
return EReportManagerPriority2;
|
|
2719
|
+
})(EReportManagerPriority || {});
|
|
2720
|
+
var EReportManagerStatus = /* @__PURE__ */ ((EReportManagerStatus2) => {
|
|
2721
|
+
EReportManagerStatus2["Draft"] = "draft";
|
|
2722
|
+
EReportManagerStatus2["Open"] = "open";
|
|
2723
|
+
EReportManagerStatus2["InProgress"] = "in-progress";
|
|
2724
|
+
EReportManagerStatus2["Resolved"] = "resolved";
|
|
2725
|
+
EReportManagerStatus2["Closed"] = "closed";
|
|
2726
|
+
EReportManagerStatus2["Rejected"] = "rejected";
|
|
2727
|
+
return EReportManagerStatus2;
|
|
2728
|
+
})(EReportManagerStatus || {});
|
|
2729
|
+
|
|
2700
2730
|
// src/interfaces/models/tool/tasks/canva/enum/ETaskGenerateAI.enum.ts
|
|
2701
2731
|
var ETaskStatus = /* @__PURE__ */ ((ETaskStatus2) => {
|
|
2702
2732
|
ETaskStatus2["Pending"] = "Pending";
|
|
@@ -2951,6 +2981,9 @@ __export(interfaces_exports, {
|
|
|
2951
2981
|
EPCBrowserSheetModule: () => EPCBrowserSheetModule,
|
|
2952
2982
|
EProcessingEmailManager: () => EProcessingEmailManager,
|
|
2953
2983
|
ERatioImage: () => ERatioImage,
|
|
2984
|
+
EReportManagerPriority: () => EReportManagerPriority,
|
|
2985
|
+
EReportManagerStatus: () => EReportManagerStatus,
|
|
2986
|
+
EReportManagerType: () => EReportManagerType,
|
|
2954
2987
|
EScreenResolution: () => EScreenResolution,
|
|
2955
2988
|
ESheetToolInstagram: () => ESheetToolInstagram,
|
|
2956
2989
|
ESheetToolStatusImport: () => ESheetToolStatusImport,
|
|
@@ -3094,6 +3127,9 @@ export {
|
|
|
3094
3127
|
EPriority,
|
|
3095
3128
|
EProcessingEmailManager,
|
|
3096
3129
|
ERatioImage,
|
|
3130
|
+
EReportManagerPriority,
|
|
3131
|
+
EReportManagerStatus,
|
|
3132
|
+
EReportManagerType,
|
|
3097
3133
|
EScreenResolution,
|
|
3098
3134
|
ESheetToolInstagram,
|
|
3099
3135
|
ESheetToolStatusImport,
|