@adminforth/background-jobs 1.11.5 → 1.11.6
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/build.log +2 -2
- package/custom/JobInfoPopup.vue +1 -1
- package/custom/JobsList.vue +1 -1
- package/custom/utils.ts +1 -1
- package/dist/custom/JobInfoPopup.vue +1 -1
- package/dist/custom/JobsList.vue +1 -1
- package/dist/custom/utils.ts +1 -1
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -13,5 +13,5 @@ custom/tsconfig.json
|
|
|
13
13
|
custom/useBackgroundJobApi.ts
|
|
14
14
|
custom/utils.ts
|
|
15
15
|
|
|
16
|
-
sent 18,
|
|
17
|
-
total size is 17,
|
|
16
|
+
sent 18,507 bytes received 172 bytes 37,358.00 bytes/sec
|
|
17
|
+
total size is 17,874 speedup is 0.96
|
package/custom/JobInfoPopup.vue
CHANGED
package/custom/JobsList.vue
CHANGED
package/custom/utils.ts
CHANGED
|
@@ -4,7 +4,7 @@ export interface IJob {
|
|
|
4
4
|
name: string;
|
|
5
5
|
status: 'IN_PROGRESS' | 'DONE' | 'DONE_WITH_ERRORS' | 'CANCELLED';
|
|
6
6
|
state: Record<string, any>;
|
|
7
|
-
progress:
|
|
7
|
+
progress: string; // 0 to 100
|
|
8
8
|
createdAt: Date;
|
|
9
9
|
finishedAt?: Date;
|
|
10
10
|
customComponent?: AdminForthComponentDeclarationFull;
|
package/dist/custom/JobsList.vue
CHANGED
package/dist/custom/utils.ts
CHANGED
|
@@ -4,7 +4,7 @@ export interface IJob {
|
|
|
4
4
|
name: string;
|
|
5
5
|
status: 'IN_PROGRESS' | 'DONE' | 'DONE_WITH_ERRORS' | 'CANCELLED';
|
|
6
6
|
state: Record<string, any>;
|
|
7
|
-
progress:
|
|
7
|
+
progress: string; // 0 to 100
|
|
8
8
|
createdAt: Date;
|
|
9
9
|
finishedAt?: Date;
|
|
10
10
|
customComponent?: AdminForthComponentDeclarationFull;
|