verteilen-core 1.2.8 → 1.2.9

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.
@@ -26,6 +26,7 @@ export interface Database {
26
26
  }
27
27
  export interface Job {
28
28
  index?: number;
29
+ meta?: any;
29
30
  uuid: string;
30
31
  runtime_uuid?: string;
31
32
  category: number;
package/dist/lan/en.json CHANGED
@@ -409,5 +409,6 @@
409
409
  "yes": "Yes",
410
410
  "no": "No",
411
411
  "next": "Next",
412
- "previous": "Previous"
412
+ "previous": "Previous",
413
+ "goback": "Go Back"
413
414
  }
@@ -409,5 +409,6 @@
409
409
  "yes": "是",
410
410
  "no": "否",
411
411
  "next": "下一步",
412
- "previous": "上一歩"
412
+ "previous": "上一歩",
413
+ "goback": "返回"
413
414
  }
@@ -418,6 +418,7 @@ export declare const i18nDefaultData: {
418
418
  no: string;
419
419
  next: string;
420
420
  previous: string;
421
+ goback: string;
421
422
  };
422
423
  zh_TW: {
423
424
  login: {
@@ -831,6 +832,7 @@ export declare const i18nDefaultData: {
831
832
  no: string;
832
833
  next: string;
833
834
  previous: string;
835
+ goback: string;
834
836
  };
835
837
  };
836
838
  };
@@ -1247,6 +1249,7 @@ export declare const i18n: import("vue-i18n").I18n<{
1247
1249
  no: string;
1248
1250
  next: string;
1249
1251
  previous: string;
1252
+ goback: string;
1250
1253
  };
1251
1254
  zh_TW: {
1252
1255
  login: {
@@ -1660,6 +1663,7 @@ export declare const i18n: import("vue-i18n").I18n<{
1660
1663
  no: string;
1661
1664
  next: string;
1662
1665
  previous: string;
1666
+ goback: string;
1663
1667
  };
1664
1668
  }, {}, {}, string, true>;
1665
1669
  export declare const raw_i18n: I18n;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verteilen-core",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "license": "MIT",
5
5
  "homepage": "https://verteilen.github.io/wiki/",
6
6
  "author": "Elly",
@@ -78,6 +78,11 @@ export interface Job {
78
78
  * Database will store in the array.
79
79
  */
80
80
  index?:number
81
+ /**
82
+ * **Extra data**\
83
+ * The extra metadata, just in case
84
+ */
85
+ meta?:any
81
86
  /**
82
87
  * **Job ID**\
83
88
  * Contains 36 characters
package/src/lan/en.json CHANGED
@@ -409,5 +409,6 @@
409
409
  "yes": "Yes",
410
410
  "no": "No",
411
411
  "next": "Next",
412
- "previous": "Previous"
412
+ "previous": "Previous",
413
+ "goback": "Go Back"
413
414
  }
@@ -409,5 +409,6 @@
409
409
  "yes": "是",
410
410
  "no": "否",
411
411
  "next": "下一步",
412
- "previous": "上一歩"
412
+ "previous": "上一歩",
413
+ "goback": "返回"
413
414
  }