@dxs-ts/eveli-ide 0.0.353 → 0.0.355
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/dialob-review/DialobReview.d.ts +1 -5
- package/build/dialob-review/DialobReviewBasedOnForm.d.ts +3 -0
- package/build/dialob-review/dialob-review-types.d.ts +5 -0
- package/build/dialob-review/index.d.ts +2 -0
- package/build/eveli-fetch/createFileFetch.d.ts +14 -0
- package/build/fetch/worker.rest.api.tasks.$taskId.review-actions.d.ts +7 -0
- package/build/fetchTree.gen.d.ts +16 -0
- package/build/index.js +12406 -12357
- package/build/intl/en.d.ts +24 -14
- package/build/intl/index.d.ts +24 -14
- package/package.json +1 -1
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
taskId: string;
|
|
4
|
-
questionnaireId: string;
|
|
5
|
-
onClose: () => void;
|
|
6
|
-
}
|
|
2
|
+
import { DialobReviewProps } from './dialob-review-types';
|
|
7
3
|
export declare const DialobReview: React.FC<DialobReviewProps>;
|
|
@@ -806,6 +806,20 @@ export declare class RootFileFetch {
|
|
|
806
806
|
}, {}, {
|
|
807
807
|
updateTask: (task: Partial<import("..").TaskApi.Task>) => Promise<import("..").TaskApi.Task>;
|
|
808
808
|
}>;
|
|
809
|
+
} | {
|
|
810
|
+
id: "worker/rest/api/tasks/$taskId/review-actions.GET";
|
|
811
|
+
path: "worker/rest/api/tasks/$taskId/review-actions";
|
|
812
|
+
method: "GET";
|
|
813
|
+
params: {
|
|
814
|
+
taskId: string;
|
|
815
|
+
};
|
|
816
|
+
hook: HookImpl<"worker/rest/api/tasks/$taskId/review-actions.GET", Hook<{}, {
|
|
817
|
+
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
818
|
+
}>, "worker/rest/api/tasks/$taskId/review-actions", "GET", {
|
|
819
|
+
taskId: string;
|
|
820
|
+
}, {}, {
|
|
821
|
+
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
822
|
+
}>;
|
|
809
823
|
} | {
|
|
810
824
|
id: "worker/rest/api/tasks/$taskId/reviews.GET";
|
|
811
825
|
path: "worker/rest/api/tasks/$taskId/reviews";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/tasks/$taskId/review-actions.GET", import('../eveli-fetch').Hook<{}, {
|
|
2
|
+
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
3
|
+
}>, "worker/rest/api/tasks/$taskId/review-actions", "GET", {
|
|
4
|
+
taskId: string;
|
|
5
|
+
}, {}, {
|
|
6
|
+
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
7
|
+
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -412,6 +412,13 @@ declare const workerRestApiTasksTaskIdPUTRoute: import('./eveli-fetch').HookImpl
|
|
|
412
412
|
}, {}, {
|
|
413
413
|
updateTask: (task: Partial<import("./index.ts").TaskApi.Task>) => Promise<import("./index.ts").TaskApi.Task>;
|
|
414
414
|
}>;
|
|
415
|
+
declare const workerRestApiTasksTaskIdReviewActionsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/tasks/$taskId/review-actions.GET", import('./eveli-fetch').Hook<{}, {
|
|
416
|
+
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
417
|
+
}>, "worker/rest/api/tasks/$taskId/review-actions", "GET", {
|
|
418
|
+
taskId: string;
|
|
419
|
+
}, {}, {
|
|
420
|
+
fetchReviewActionsGet: (sessionId: string) => Promise<Response>;
|
|
421
|
+
}>;
|
|
415
422
|
declare const workerRestApiTasksTaskIdReviewsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/tasks/$taskId/reviews.GET", import('./eveli-fetch').Hook<{}, {
|
|
416
423
|
fetchReviewGet: (sessionId: string) => Promise<Response>;
|
|
417
424
|
}>, "worker/rest/api/tasks/$taskId/reviews", "GET", {
|
|
@@ -992,6 +999,15 @@ declare module './eveli-fetch' {
|
|
|
992
999
|
};
|
|
993
1000
|
hook: typeof workerRestApiTasksTaskIdPUTRoute;
|
|
994
1001
|
};
|
|
1002
|
+
'worker/rest/api/tasks/$taskId/review-actions.GET': {
|
|
1003
|
+
id: 'worker/rest/api/tasks/$taskId/review-actions.GET';
|
|
1004
|
+
path: 'worker/rest/api/tasks/$taskId/review-actions';
|
|
1005
|
+
method: 'GET';
|
|
1006
|
+
params: {
|
|
1007
|
+
taskId: string;
|
|
1008
|
+
};
|
|
1009
|
+
hook: typeof workerRestApiTasksTaskIdReviewActionsGETRoute;
|
|
1010
|
+
};
|
|
995
1011
|
'worker/rest/api/tasks/$taskId/reviews.GET': {
|
|
996
1012
|
id: 'worker/rest/api/tasks/$taskId/reviews.GET';
|
|
997
1013
|
path: 'worker/rest/api/tasks/$taskId/reviews';
|