verteilen-core 1.2.7 → 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
  }
@@ -2,7 +2,6 @@ import { createI18n } from 'vue-i18n';
2
2
  import { I18n } from "i18n-js";
3
3
  export { createI18n as Create };
4
4
  export declare const i18nDefaultData: {
5
- legacy: boolean;
6
5
  locale: string;
7
6
  globalInjection: boolean;
8
7
  fallbackFormat: string;
@@ -419,6 +418,7 @@ export declare const i18nDefaultData: {
419
418
  no: string;
420
419
  next: string;
421
420
  previous: string;
421
+ goback: string;
422
422
  };
423
423
  zh_TW: {
424
424
  login: {
@@ -832,6 +832,7 @@ export declare const i18nDefaultData: {
832
832
  no: string;
833
833
  next: string;
834
834
  previous: string;
835
+ goback: string;
835
836
  };
836
837
  };
837
838
  };
@@ -1248,6 +1249,7 @@ export declare const i18n: import("vue-i18n").I18n<{
1248
1249
  no: string;
1249
1250
  next: string;
1250
1251
  previous: string;
1252
+ goback: string;
1251
1253
  };
1252
1254
  zh_TW: {
1253
1255
  login: {
@@ -1661,6 +1663,7 @@ export declare const i18n: import("vue-i18n").I18n<{
1661
1663
  no: string;
1662
1664
  next: string;
1663
1665
  previous: string;
1666
+ goback: string;
1664
1667
  };
1665
1668
  }, {}, {}, string, true>;
1666
1669
  export declare const raw_i18n: I18n;
@@ -10,7 +10,6 @@ const i18n_js_1 = require("i18n-js");
10
10
  const en_json_1 = __importDefault(require("./../lan/en.json"));
11
11
  const zh_TW_json_1 = __importDefault(require("./../lan/zh_TW.json"));
12
12
  exports.i18nDefaultData = {
13
- legacy: true,
14
13
  locale: 'en',
15
14
  globalInjection: true,
16
15
  fallbackFormat: 'en',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verteilen-core",
3
- "version": "1.2.7",
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
  }
@@ -22,7 +22,6 @@ export { createI18n as Create }
22
22
  * app.use(i18n)
23
23
  */
24
24
  export const i18nDefaultData = {
25
- legacy: true,
26
25
  locale: 'en',
27
26
  globalInjection: true,
28
27
  fallbackFormat: 'en',