@dxs-ts/eveli-ide 0.0.267 → 0.0.269

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.
Files changed (33) hide show
  1. package/build/api-task/task-types.d.ts +11 -2
  2. package/build/{cssMode-NiDg1uuY.js → cssMode-KaoNoYWK.js} +1 -1
  3. package/build/eveli-fetch/createFileFetch.d.ts +14 -0
  4. package/build/eveli-task-composer/RadioGroupPopover.d.ts +2 -1
  5. package/build/eveli-task-feature/EveliTaskFeature.d.ts +1 -0
  6. package/build/eveli-task-transfer/CreateTaskTransfer.d.ts +7 -0
  7. package/build/eveli-task-transfer/EveliTaskTransfer.d.ts +7 -0
  8. package/build/eveli-task-transfer/EveliTaskTransferStatusIndicator.d.ts +6 -0
  9. package/build/eveli-task-transfer/index.d.ts +2 -0
  10. package/build/eveli-tasks-2/IndicatorStatus.d.ts +4 -6
  11. package/build/fetch/worker.rest.api.tasks.$taskId.transfers.put.d.ts +8 -0
  12. package/build/fetchTree.gen.d.ts +16 -0
  13. package/build/{freemarker2-V2nDNoyK.js → freemarker2-DAzdnGYp.js} +1 -1
  14. package/build/{handlebars-CI2i9sON.js → handlebars-DwSdQVFl.js} +1 -1
  15. package/build/{html-Bk8FY2fs.js → html-D6Wshqj3.js} +1 -1
  16. package/build/{htmlMode-6h_G6hvp.js → htmlMode-BnrqDHbj.js} +1 -1
  17. package/build/{index-S5gFgc6_.js → index-BRZuMk22.js} +30841 -30774
  18. package/build/index.js +1 -1
  19. package/build/intl/en.d.ts +1 -0
  20. package/build/intl/fi.d.ts +1 -0
  21. package/build/intl/index.d.ts +3 -0
  22. package/build/intl/sv.d.ts +1 -0
  23. package/build/{javascript-CNLZSoPv.js → javascript-BdgkiISb.js} +1 -1
  24. package/build/{jsonMode-BSD_a4nA.js → jsonMode-ChGrcVTZ.js} +1 -1
  25. package/build/{liquid-Cp1zwLpP.js → liquid-CR7iGzBJ.js} +1 -1
  26. package/build/{mdx-CxGhEYeh.js → mdx-CMbM8M_M.js} +1 -1
  27. package/build/{python-C3pM7jSL.js → python-CEvpUsPK.js} +1 -1
  28. package/build/{razor-CStaI7X1.js → razor-CjmSt0mI.js} +1 -1
  29. package/build/{tsMode-BORKJXcn.js → tsMode-CMRThyZp.js} +1 -1
  30. package/build/{typescript-HXZKJ6iE.js → typescript-Dl6wjSqc.js} +1 -1
  31. package/build/{xml-BxdvZGQ9.js → xml-MMT69FgE.js} +1 -1
  32. package/build/{yaml-_MKmovRK.js → yaml-BbkEPll2.js} +1 -1
  33. package/package.json +1 -1
@@ -37,7 +37,8 @@ export declare namespace TaskApi {
37
37
  NEW = "NEW",
38
38
  OPEN = "OPEN",
39
39
  COMPLETED = "COMPLETED",
40
- REJECTED = "REJECTED"
40
+ REJECTED = "REJECTED",
41
+ TRANSFERRED = "TRANSFERRED"
41
42
  }
42
43
  const task_status_messages: {
43
44
  NEW: {
@@ -56,6 +57,10 @@ export declare namespace TaskApi {
56
57
  id: string;
57
58
  defaultMessage: string;
58
59
  };
60
+ TRANSFERRED: {
61
+ id: string;
62
+ defaultMessage: string;
63
+ };
59
64
  };
60
65
  const task_status_colors: ColorMap;
61
66
  }
@@ -102,6 +107,7 @@ export declare namespace TaskApi {
102
107
  description?: string;
103
108
  priority?: TaskPriority;
104
109
  additionalInfo?: string;
110
+ transferredId?: string | undefined;
105
111
  features?: TaskFeatureType[];
106
112
  keyWords?: string[];
107
113
  taskLinks?: TaskLink[];
@@ -112,7 +118,10 @@ export declare namespace TaskApi {
112
118
  comments: Comment[];
113
119
  questionnaireId?: string | undefined;
114
120
  }
115
- type TaskFeatureType = 'feedback';
121
+ type TaskFeatureType = 'feedback' | 'transfer';
122
+ interface TransferTaskCommand {
123
+ transferTitle: string;
124
+ }
116
125
  interface TaskDasboard {
117
126
  events: GrimMissionAttributeEvent[];
118
127
  }
@@ -1,4 +1,4 @@
1
- import { m as et } from "./index-S5gFgc6_.js";
1
+ import { m as et } from "./index-BRZuMk22.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
@@ -772,6 +772,20 @@ export declare class RootFileFetch {
772
772
  }, {}, {
773
773
  fetchReviewGet: (sessionId: string) => Promise<Response>;
774
774
  }>;
775
+ } | {
776
+ id: "worker/rest/api/tasks/$taskId/transfers.PUT";
777
+ path: "worker/rest/api/tasks/$taskId/transfers";
778
+ method: "PUT";
779
+ params: {
780
+ taskId: string;
781
+ };
782
+ hook: HookImpl<"worker/rest/api/tasks/$taskId/transfers.PUT", Hook<{}, {
783
+ transferTask: (task: import("..").TaskApi.Task, command: import("..").TaskApi.TransferTaskCommand) => Promise<import("..").TaskApi.Task>;
784
+ }>, "worker/rest/api/tasks/$taskId/transfers", "PUT", {
785
+ taskId: string;
786
+ }, {}, {
787
+ transferTask: (task: import("..").TaskApi.Task, command: import("..").TaskApi.TransferTaskCommand) => Promise<import("..").TaskApi.Task>;
788
+ }>;
775
789
  } | {
776
790
  id: "worker/rest/api/tasks.GET";
777
791
  path: "worker/rest/api/tasks";
@@ -8,8 +8,9 @@ interface CommonProps {
8
8
  defaultMessage: string;
9
9
  }>;
10
10
  colorMap: TaskApi.ColorMap;
11
+ invalidValues?: string[];
11
12
  value: string | undefined;
12
13
  handleCallback?: (newValue: string) => void;
13
14
  }
14
- declare const RadioGroupPopover: ({ label, readonly, messages, colorMap, handleCallback, value }: CommonProps) => import("react/jsx-runtime").JSX.Element;
15
+ declare const RadioGroupPopover: ({ label, readonly, messages, colorMap, invalidValues, handleCallback, value }: CommonProps) => import("react/jsx-runtime").JSX.Element;
15
16
  export default RadioGroupPopover;
@@ -2,6 +2,7 @@ import { TaskApi } from '../api-task';
2
2
  import { default as React } from 'react';
3
3
  declare const EveliTaskFeatureMapping: {
4
4
  TASK_FEEDBACK: (input: TaskApi.TaskFeatureType) => boolean;
5
+ TASK_TRANSFER: (input: TaskApi.TaskFeatureType) => boolean;
5
6
  };
6
7
  export type EveliTaskFeatureType = keyof typeof EveliTaskFeatureMapping;
7
8
  export declare const EveliTaskFeature: React.FC<{
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ import { TaskApi } from '../api-task';
3
+ export interface CreateTaskTransferProps {
4
+ task: TaskApi.Task;
5
+ onTransferComplete: () => void;
6
+ }
7
+ export declare const CreateTaskTransfer: React.FC<CreateTaskTransferProps>;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ import { TaskApi } from '../api-task';
3
+ export interface EveliTaskTransferProps {
4
+ task: TaskApi.Task;
5
+ onTransferComplete: () => void;
6
+ }
7
+ export declare const EveliTaskTransfer: React.FC<EveliTaskTransferProps>;
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ import { TaskApi } from '../api-task';
3
+ export interface EveliTaskTransferStatusIndicatorProps {
4
+ task: TaskApi.Task;
5
+ }
6
+ export declare const EveliTaskTransferStatusIndicator: React.FC<EveliTaskTransferStatusIndicatorProps>;
@@ -0,0 +1,2 @@
1
+ export * from './EveliTaskTransferStatusIndicator';
2
+ export * from './EveliTaskTransfer';
@@ -1,7 +1,5 @@
1
1
  import { default as React } from 'react';
2
- type StatusType = 'NEW' | 'OPEN' | 'COMPLETED' | 'REJECTED';
3
- interface TaskStatus {
4
- type: StatusType;
5
- }
6
- export declare const IndicatorStatus: React.FC<TaskStatus>;
7
- export {};
2
+ import { TaskApi } from '../api-task';
3
+ export declare const IndicatorStatus: React.FC<{
4
+ status: TaskApi.TaskStatus;
5
+ }>;
@@ -0,0 +1,8 @@
1
+ import { TaskApi } from '../api-task';
2
+ export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/tasks/$taskId/transfers.PUT", import('../eveli-fetch').Hook<{}, {
3
+ transferTask: (task: TaskApi.Task, command: TaskApi.TransferTaskCommand) => Promise<TaskApi.Task>;
4
+ }>, "worker/rest/api/tasks/$taskId/transfers", "PUT", {
5
+ taskId: string;
6
+ }, {}, {
7
+ transferTask: (task: TaskApi.Task, command: TaskApi.TransferTaskCommand) => Promise<TaskApi.Task>;
8
+ }>;
@@ -395,6 +395,13 @@ declare const workerRestApiTasksTaskIdReviewsGETRoute: import('./eveli-fetch').H
395
395
  }, {}, {
396
396
  fetchReviewGet: (sessionId: string) => Promise<Response>;
397
397
  }>;
398
+ declare const workerRestApiTasksTaskIdTransfersPUTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/tasks/$taskId/transfers.PUT", import('./eveli-fetch').Hook<{}, {
399
+ transferTask: (task: import("./index.ts").TaskApi.Task, command: import("./index.ts").TaskApi.TransferTaskCommand) => Promise<import("./index.ts").TaskApi.Task>;
400
+ }>, "worker/rest/api/tasks/$taskId/transfers", "PUT", {
401
+ taskId: string;
402
+ }, {}, {
403
+ transferTask: (task: import("./index.ts").TaskApi.Task, command: import("./index.ts").TaskApi.TransferTaskCommand) => Promise<import("./index.ts").TaskApi.Task>;
404
+ }>;
398
405
  declare const workerRestApiTasksGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/tasks.GET", import('./eveli-fetch').Hook<{}, {
399
406
  dashboard: () => Promise<import("./index.ts").TaskApi.TaskDasboard>;
400
407
  findAll: () => Promise<import("./index.ts").TaskApi.Task[]>;
@@ -931,6 +938,15 @@ declare module './eveli-fetch' {
931
938
  };
932
939
  hook: typeof workerRestApiTasksTaskIdReviewsGETRoute;
933
940
  };
941
+ 'worker/rest/api/tasks/$taskId/transfers.PUT': {
942
+ id: 'worker/rest/api/tasks/$taskId/transfers.PUT';
943
+ path: 'worker/rest/api/tasks/$taskId/transfers';
944
+ method: 'PUT';
945
+ params: {
946
+ taskId: string;
947
+ };
948
+ hook: typeof workerRestApiTasksTaskIdTransfersPUTRoute;
949
+ };
934
950
  'worker/rest/api/tasks.GET': {
935
951
  id: 'worker/rest/api/tasks.GET';
936
952
  path: 'worker/rest/api/tasks';
@@ -1,4 +1,4 @@
1
- import { m as f } from "./index-S5gFgc6_.js";
1
+ import { m as f } from "./index-BRZuMk22.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
@@ -1,4 +1,4 @@
1
- import { m as l } from "./index-S5gFgc6_.js";
1
+ import { m as l } from "./index-BRZuMk22.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
@@ -1,4 +1,4 @@
1
- import { m as s } from "./index-S5gFgc6_.js";
1
+ import { m as s } from "./index-BRZuMk22.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
@@ -1,4 +1,4 @@
1
- import { m as lt } from "./index-S5gFgc6_.js";
1
+ import { m as lt } from "./index-BRZuMk22.js";
2
2
  /*!-----------------------------------------------------------------------------
3
3
  * Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  * Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)