verteilen-core 1.3.17 → 1.3.18
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/interface/base.d.ts +2 -0
- package/dist/interface/base.js +2 -0
- package/dist/lan/en.json +4 -1
- package/dist/lan/zh_TW.json +4 -1
- package/dist/plugins/i18n.d.ts +12 -0
- package/package.json +1 -1
- package/src/interface/base.ts +4 -0
- package/src/lan/en.json +4 -1
- package/src/lan/zh_TW.json +4 -1
package/dist/interface/base.d.ts
CHANGED
package/dist/interface/base.js
CHANGED
package/dist/lan/en.json
CHANGED
package/dist/lan/zh_TW.json
CHANGED
package/dist/plugins/i18n.d.ts
CHANGED
|
@@ -421,6 +421,9 @@ export declare const i18nDefaultData: {
|
|
|
421
421
|
next: string;
|
|
422
422
|
previous: string;
|
|
423
423
|
goback: string;
|
|
424
|
+
logic: string;
|
|
425
|
+
use_logic: string;
|
|
426
|
+
remove_logic: string;
|
|
424
427
|
};
|
|
425
428
|
zh_TW: {
|
|
426
429
|
login: {
|
|
@@ -837,6 +840,9 @@ export declare const i18nDefaultData: {
|
|
|
837
840
|
next: string;
|
|
838
841
|
previous: string;
|
|
839
842
|
goback: string;
|
|
843
|
+
logic: string;
|
|
844
|
+
use_logic: string;
|
|
845
|
+
remove_logic: string;
|
|
840
846
|
};
|
|
841
847
|
};
|
|
842
848
|
};
|
|
@@ -1256,6 +1262,9 @@ export declare const i18n: import("vue-i18n").I18n<{
|
|
|
1256
1262
|
next: string;
|
|
1257
1263
|
previous: string;
|
|
1258
1264
|
goback: string;
|
|
1265
|
+
logic: string;
|
|
1266
|
+
use_logic: string;
|
|
1267
|
+
remove_logic: string;
|
|
1259
1268
|
};
|
|
1260
1269
|
zh_TW: {
|
|
1261
1270
|
login: {
|
|
@@ -1672,6 +1681,9 @@ export declare const i18n: import("vue-i18n").I18n<{
|
|
|
1672
1681
|
next: string;
|
|
1673
1682
|
previous: string;
|
|
1674
1683
|
goback: string;
|
|
1684
|
+
logic: string;
|
|
1685
|
+
use_logic: string;
|
|
1686
|
+
remove_logic: string;
|
|
1675
1687
|
};
|
|
1676
1688
|
}, {}, {}, string, true>;
|
|
1677
1689
|
export declare const raw_i18n: I18n;
|
package/package.json
CHANGED
package/src/interface/base.ts
CHANGED
|
@@ -154,6 +154,8 @@ export interface Job extends DataHeader {
|
|
|
154
154
|
* Database will store in the array.
|
|
155
155
|
*/
|
|
156
156
|
index?:number
|
|
157
|
+
title: string
|
|
158
|
+
description: string
|
|
157
159
|
/**
|
|
158
160
|
* **Extra data**\
|
|
159
161
|
* The extra metadata, just in case
|
|
@@ -437,6 +439,8 @@ export const CreateDefaultTask = () : Task => {
|
|
|
437
439
|
export const CreateDefaultJob = () : Job => {
|
|
438
440
|
return {
|
|
439
441
|
uuid: uuidv6(),
|
|
442
|
+
title: "",
|
|
443
|
+
description: "",
|
|
440
444
|
category: JobCategory.Execution,
|
|
441
445
|
type: JobType.JAVASCRIPT,
|
|
442
446
|
script: "",
|
package/src/lan/en.json
CHANGED