@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.
@@ -1,7 +1,3 @@
1
1
  import { default as React } from 'react';
2
- export interface DialobReviewProps {
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>;
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { DialobReviewProps } from './dialob-review-types';
3
+ export declare const DialobReviewBasedOnForm: React.FC<DialobReviewProps>;
@@ -0,0 +1,5 @@
1
+ export interface DialobReviewProps {
2
+ taskId: string;
3
+ questionnaireId: string;
4
+ onClose: () => void;
5
+ }
@@ -1 +1,3 @@
1
1
  export * from './DialobReview';
2
+ export * from './DialobReviewBasedOnForm';
3
+ export * from './dialob-review-types';
@@ -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
+ }>;
@@ -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';