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.
@@ -42,6 +42,8 @@ export interface Database extends DataHeader {
42
42
  }
43
43
  export interface Job extends DataHeader {
44
44
  index?: number;
45
+ title: string;
46
+ description: string;
45
47
  meta?: any;
46
48
  runtime_uuid?: string;
47
49
  category: number;
@@ -33,6 +33,8 @@ exports.CreateDefaultTask = CreateDefaultTask;
33
33
  const CreateDefaultJob = () => {
34
34
  return {
35
35
  uuid: (0, uuid_1.v6)(),
36
+ title: "",
37
+ description: "",
36
38
  category: enum_1.JobCategory.Execution,
37
39
  type: enum_1.JobType.JAVASCRIPT,
38
40
  script: "",
package/dist/lan/en.json CHANGED
@@ -412,5 +412,8 @@
412
412
  "no": "No",
413
413
  "next": "Next",
414
414
  "previous": "Previous",
415
- "goback": "Go Back"
415
+ "goback": "Go Back",
416
+ "logic": "Logic",
417
+ "use_logic": "Use Logic",
418
+ "remove_logic": "Remove Logic"
416
419
  }
@@ -412,5 +412,8 @@
412
412
  "no": "否",
413
413
  "next": "下一步",
414
414
  "previous": "上一歩",
415
- "goback": "返回"
415
+ "goback": "返回",
416
+ "logic": "邏輯",
417
+ "use_logic": "套用邏輯",
418
+ "remove_logic": "刪除邏輯"
416
419
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verteilen-core",
3
- "version": "1.3.17",
3
+ "version": "1.3.18",
4
4
  "license": "MIT",
5
5
  "homepage": "https://verteilen.github.io/wiki/",
6
6
  "author": "Elly",
@@ -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
@@ -412,5 +412,8 @@
412
412
  "no": "No",
413
413
  "next": "Next",
414
414
  "previous": "Previous",
415
- "goback": "Go Back"
415
+ "goback": "Go Back",
416
+ "logic": "Logic",
417
+ "use_logic": "Use Logic",
418
+ "remove_logic": "Remove Logic"
416
419
  }
@@ -412,5 +412,8 @@
412
412
  "no": "否",
413
413
  "next": "下一步",
414
414
  "previous": "上一歩",
415
- "goback": "返回"
415
+ "goback": "返回",
416
+ "logic": "邏輯",
417
+ "use_logic": "套用邏輯",
418
+ "remove_logic": "刪除邏輯"
416
419
  }