@openfilz-sdk/typescript-ee 1.10.1 → 1.10.3

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 (68) hide show
  1. package/.openapi-generator/FILES +6 -0
  2. package/.openapi-generator/openfilz-api-generate-typescript-sdk.sha256 +1 -1
  3. package/README.md +5 -2
  4. package/api/settings-api.ts +32 -18
  5. package/dist/api/settings-api.d.ts +20 -12
  6. package/dist/api/settings-api.js +32 -18
  7. package/dist/esm/api/settings-api.d.ts +20 -12
  8. package/dist/esm/api/settings-api.js +32 -18
  9. package/dist/esm/models/ai-taxonomy-category.d.ts +3 -1
  10. package/dist/esm/models/ai-taxonomy-view.d.ts +6 -0
  11. package/dist/esm/models/enriched-audit-log.d.ts +1 -0
  12. package/dist/esm/models/enriched-audit-log.js +1 -0
  13. package/dist/esm/models/index.d.ts +3 -0
  14. package/dist/esm/models/index.js +3 -0
  15. package/dist/esm/models/search-by-audit-log-request.d.ts +1 -0
  16. package/dist/esm/models/search-by-audit-log-request.js +1 -0
  17. package/dist/esm/models/settings.d.ts +3 -0
  18. package/dist/esm/models/vote.d.ts +17 -0
  19. package/dist/esm/models/vote.js +14 -0
  20. package/dist/esm/models/workflow-event-dto.d.ts +1 -0
  21. package/dist/esm/models/workflow-event-dto.js +1 -0
  22. package/dist/esm/models/workflow-review-progress-dto.d.ts +27 -0
  23. package/dist/esm/models/workflow-review-progress-dto.js +18 -0
  24. package/dist/esm/models/workflow-review.d.ts +22 -0
  25. package/dist/esm/models/workflow-review.js +18 -0
  26. package/dist/esm/models/workflow-state.d.ts +2 -0
  27. package/dist/esm/models/workflow-task-dto.d.ts +2 -0
  28. package/dist/models/ai-taxonomy-category.d.ts +3 -1
  29. package/dist/models/ai-taxonomy-view.d.ts +6 -0
  30. package/dist/models/enriched-audit-log.d.ts +1 -0
  31. package/dist/models/enriched-audit-log.js +1 -0
  32. package/dist/models/index.d.ts +3 -0
  33. package/dist/models/index.js +3 -0
  34. package/dist/models/search-by-audit-log-request.d.ts +1 -0
  35. package/dist/models/search-by-audit-log-request.js +1 -0
  36. package/dist/models/settings.d.ts +3 -0
  37. package/dist/models/vote.d.ts +17 -0
  38. package/dist/models/vote.js +15 -0
  39. package/dist/models/workflow-event-dto.d.ts +1 -0
  40. package/dist/models/workflow-event-dto.js +1 -0
  41. package/dist/models/workflow-review-progress-dto.d.ts +27 -0
  42. package/dist/models/workflow-review-progress-dto.js +21 -0
  43. package/dist/models/workflow-review.d.ts +22 -0
  44. package/dist/models/workflow-review.js +21 -0
  45. package/dist/models/workflow-state.d.ts +2 -0
  46. package/dist/models/workflow-task-dto.d.ts +2 -0
  47. package/docs/AiTaxonomyCategory.md +2 -2
  48. package/docs/AiTaxonomyView.md +4 -0
  49. package/docs/Settings.md +2 -0
  50. package/docs/SettingsApi.md +14 -4
  51. package/docs/Vote.md +26 -0
  52. package/docs/WorkflowReview.md +24 -0
  53. package/docs/WorkflowReviewProgressDTO.md +32 -0
  54. package/docs/WorkflowState.md +2 -0
  55. package/docs/WorkflowTaskDTO.md +2 -0
  56. package/models/ai-taxonomy-category.ts +1 -1
  57. package/models/ai-taxonomy-view.ts +2 -0
  58. package/models/enriched-audit-log.ts +1 -0
  59. package/models/index.ts +3 -0
  60. package/models/search-by-audit-log-request.ts +1 -0
  61. package/models/settings.ts +1 -0
  62. package/models/vote.ts +23 -0
  63. package/models/workflow-event-dto.ts +1 -0
  64. package/models/workflow-review-progress-dto.ts +38 -0
  65. package/models/workflow-review.ts +31 -0
  66. package/models/workflow-state.ts +4 -0
  67. package/models/workflow-task-dto.ts +4 -0
  68. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ /**
2
+ * openfilz-api
3
+ * API for Document Management System
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface WorkflowReview {
13
+ 'rule'?: WorkflowReviewRuleEnum;
14
+ 'quorum'?: number;
15
+ 'approveTransition'?: string;
16
+ }
17
+ export declare const WorkflowReviewRuleEnum: {
18
+ readonly All: "ALL";
19
+ readonly FirstRejection: "FIRST_REJECTION";
20
+ readonly Quorum: "QUORUM";
21
+ };
22
+ export type WorkflowReviewRuleEnum = typeof WorkflowReviewRuleEnum[keyof typeof WorkflowReviewRuleEnum];
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * openfilz-api
6
+ * API for Document Management System
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.WorkflowReviewRuleEnum = void 0;
17
+ exports.WorkflowReviewRuleEnum = {
18
+ All: 'ALL',
19
+ FirstRejection: 'FIRST_REJECTION',
20
+ Quorum: 'QUORUM',
21
+ };
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { WorkflowAction } from './workflow-action';
13
13
  import type { WorkflowAssignment } from './workflow-assignment';
14
+ import type { WorkflowReview } from './workflow-review';
14
15
  import type { WorkflowTransition } from './workflow-transition';
15
16
  export interface WorkflowState {
16
17
  'key'?: string;
@@ -21,6 +22,7 @@ export interface WorkflowState {
21
22
  'dueInDays'?: number;
22
23
  'transitions'?: Array<WorkflowTransition>;
23
24
  'onEnter'?: Array<WorkflowAction>;
25
+ 'review'?: WorkflowReview;
24
26
  'end'?: boolean;
25
27
  }
26
28
  export declare const WorkflowStateKindEnum: {
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { WorkflowReviewProgressDTO } from './workflow-review-progress-dto';
12
13
  import type { WorkflowTransition } from './workflow-transition';
13
14
  export interface WorkflowTaskDTO {
14
15
  'id'?: string;
@@ -35,6 +36,7 @@ export interface WorkflowTaskDTO {
35
36
  'previousComment'?: string;
36
37
  'previousActor'?: string;
37
38
  'mine'?: boolean;
39
+ 'review'?: WorkflowReviewProgressDTO;
38
40
  }
39
41
  export declare const WorkflowTaskDTOStatusEnum: {
40
42
  readonly Open: "OPEN";
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **key** | **string** | | [optional] [default to undefined]
9
- **label** | **string** | | [optional] [default to undefined]
9
+ **labels** | **{ [key: string]: string; }** | | [optional] [default to undefined]
10
10
  **description** | **string** | | [optional] [default to undefined]
11
11
  **examples** | **Array&lt;string&gt;** | | [optional] [default to undefined]
12
12
  **position** | **number** | | [optional] [default to undefined]
@@ -19,7 +19,7 @@ import { AiTaxonomyCategory } from '@openfilz-sdk/typescript-ee';
19
19
 
20
20
  const instance: AiTaxonomyCategory = {
21
21
  key,
22
- label,
22
+ labels,
23
23
  description,
24
24
  examples,
25
25
  position,
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **source** | **string** | | [optional] [default to undefined]
9
9
  **categories** | [**Array&lt;AiTaxonomyCategory&gt;**](AiTaxonomyCategory.md) | | [optional] [default to undefined]
10
+ **languages** | **Array&lt;string&gt;** | | [optional] [default to undefined]
11
+ **builtInLabels** | **{ [key: string]: { [key: string]: string; }; }** | | [optional] [default to undefined]
10
12
 
11
13
  ## Example
12
14
 
@@ -16,6 +18,8 @@ import { AiTaxonomyView } from '@openfilz-sdk/typescript-ee';
16
18
  const instance: AiTaxonomyView = {
17
19
  source,
18
20
  categories,
21
+ languages,
22
+ builtInLabels,
19
23
  };
20
24
  ```
21
25
 
package/docs/Settings.md CHANGED
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
17
17
  **aiUserSettingsEnabled** | **boolean** | | [optional] [default to undefined]
18
18
  **aiInsightsActive** | **boolean** | | [optional] [default to undefined]
19
19
  **aiInsightsCategories** | **Array&lt;string&gt;** | | [optional] [default to undefined]
20
+ **aiInsightsCategoryLabels** | **{ [key: string]: string; }** | | [optional] [default to undefined]
20
21
  **aiAutoFileActive** | **boolean** | | [optional] [default to undefined]
21
22
  **signatureActive** | **boolean** | | [optional] [default to undefined]
22
23
  **pdfToolsActive** | **boolean** | | [optional] [default to undefined]
@@ -52,6 +53,7 @@ const instance: Settings = {
52
53
  aiUserSettingsEnabled,
53
54
  aiInsightsActive,
54
55
  aiInsightsCategories,
56
+ aiInsightsCategoryLabels,
55
57
  aiAutoFileActive,
56
58
  signatureActive,
57
59
  pdfToolsActive,
@@ -100,7 +100,7 @@ This endpoint does not have any parameters.
100
100
  # **getSettings**
101
101
  > Settings getSettings()
102
102
 
103
- Retrieve user\'s settings : global settings and user\'s preferences
103
+ Retrieve user\'s settings : global settings and user\'s preferences. The category labels (aiInsightsCategoryLabels) are in the Accept-Language language, English when it is not supported.
104
104
 
105
105
  ### Example
106
106
 
@@ -113,11 +113,18 @@ import {
113
113
  const configuration = new Configuration();
114
114
  const apiInstance = new SettingsApi(configuration);
115
115
 
116
- const { status, data } = await apiInstance.getSettings();
116
+ let acceptLanguage: string; // (optional) (default to undefined)
117
+
118
+ const { status, data } = await apiInstance.getSettings(
119
+ acceptLanguage
120
+ );
117
121
  ```
118
122
 
119
123
  ### Parameters
120
- This endpoint does not have any parameters.
124
+
125
+ |Name | Type | Description | Notes|
126
+ |------------- | ------------- | ------------- | -------------|
127
+ | **acceptLanguage** | [**string**] | | (optional) defaults to undefined|
121
128
 
122
129
 
123
130
  ### Return type
@@ -214,9 +221,11 @@ const configuration = new Configuration();
214
221
  const apiInstance = new SettingsApi(configuration);
215
222
 
216
223
  let userPreferencesRequest: UserPreferencesRequest; //
224
+ let acceptLanguage: string; // (optional) (default to undefined)
217
225
 
218
226
  const { status, data } = await apiInstance.saveSettings(
219
- userPreferencesRequest
227
+ userPreferencesRequest,
228
+ acceptLanguage
220
229
  );
221
230
  ```
222
231
 
@@ -225,6 +234,7 @@ const { status, data } = await apiInstance.saveSettings(
225
234
  |Name | Type | Description | Notes|
226
235
  |------------- | ------------- | ------------- | -------------|
227
236
  | **userPreferencesRequest** | **UserPreferencesRequest**| | |
237
+ | **acceptLanguage** | [**string**] | | (optional) defaults to undefined|
228
238
 
229
239
 
230
240
  ### Return type
package/docs/Vote.md ADDED
@@ -0,0 +1,26 @@
1
+ # Vote
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **reviewer** | **string** | | [optional] [default to undefined]
9
+ **transitionKey** | **string** | | [optional] [default to undefined]
10
+ **comment** | **string** | | [optional] [default to undefined]
11
+ **at** | **string** | | [optional] [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { Vote } from '@openfilz-sdk/typescript-ee';
17
+
18
+ const instance: Vote = {
19
+ reviewer,
20
+ transitionKey,
21
+ comment,
22
+ at,
23
+ };
24
+ ```
25
+
26
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # WorkflowReview
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **rule** | **string** | | [optional] [default to undefined]
9
+ **quorum** | **number** | | [optional] [default to undefined]
10
+ **approveTransition** | **string** | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { WorkflowReview } from '@openfilz-sdk/typescript-ee';
16
+
17
+ const instance: WorkflowReview = {
18
+ rule,
19
+ quorum,
20
+ approveTransition,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,32 @@
1
+ # WorkflowReviewProgressDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **rule** | **string** | | [optional] [default to undefined]
9
+ **quorum** | **number** | | [optional] [default to undefined]
10
+ **approveTransition** | **string** | | [optional] [default to undefined]
11
+ **total** | **number** | | [optional] [default to undefined]
12
+ **approvals** | **number** | | [optional] [default to undefined]
13
+ **votes** | [**Array&lt;Vote&gt;**](Vote.md) | | [optional] [default to undefined]
14
+ **pending** | **Array&lt;string&gt;** | | [optional] [default to undefined]
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import { WorkflowReviewProgressDTO } from '@openfilz-sdk/typescript-ee';
20
+
21
+ const instance: WorkflowReviewProgressDTO = {
22
+ rule,
23
+ quorum,
24
+ approveTransition,
25
+ total,
26
+ approvals,
27
+ votes,
28
+ pending,
29
+ };
30
+ ```
31
+
32
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **dueInDays** | **number** | | [optional] [default to undefined]
14
14
  **transitions** | [**Array&lt;WorkflowTransition&gt;**](WorkflowTransition.md) | | [optional] [default to undefined]
15
15
  **onEnter** | [**Array&lt;WorkflowAction&gt;**](WorkflowAction.md) | | [optional] [default to undefined]
16
+ **review** | [**WorkflowReview**](WorkflowReview.md) | | [optional] [default to undefined]
16
17
  **end** | **boolean** | | [optional] [default to undefined]
17
18
 
18
19
  ## Example
@@ -29,6 +30,7 @@ const instance: WorkflowState = {
29
30
  dueInDays,
30
31
  transitions,
31
32
  onEnter,
33
+ review,
32
34
  end,
33
35
  };
34
36
  ```
@@ -29,6 +29,7 @@ Name | Type | Description | Notes
29
29
  **previousComment** | **string** | | [optional] [default to undefined]
30
30
  **previousActor** | **string** | | [optional] [default to undefined]
31
31
  **mine** | **boolean** | | [optional] [default to undefined]
32
+ **review** | [**WorkflowReviewProgressDTO**](WorkflowReviewProgressDTO.md) | | [optional] [default to undefined]
32
33
 
33
34
  ## Example
34
35
 
@@ -60,6 +61,7 @@ const instance: WorkflowTaskDTO = {
60
61
  previousComment,
61
62
  previousActor,
62
63
  mine,
64
+ review,
63
65
  };
64
66
  ```
65
67
 
@@ -16,7 +16,7 @@
16
16
 
17
17
  export interface AiTaxonomyCategory {
18
18
  'key'?: string;
19
- 'label'?: string;
19
+ 'labels'?: { [key: string]: string; };
20
20
  'description'?: string;
21
21
  'examples'?: Array<string>;
22
22
  'position'?: number;
@@ -20,5 +20,7 @@ import type { AiTaxonomyCategory } from './ai-taxonomy-category';
20
20
  export interface AiTaxonomyView {
21
21
  'source'?: string;
22
22
  'categories'?: Array<AiTaxonomyCategory>;
23
+ 'languages'?: Array<string>;
24
+ 'builtInLabels'?: { [key: string]: { [key: string]: string; }; };
23
25
  }
24
26
 
@@ -60,6 +60,7 @@ export const EnrichedAuditLogActionEnum = {
60
60
  PdfTransform: 'PDF_TRANSFORM',
61
61
  WorkflowStarted: 'WORKFLOW_STARTED',
62
62
  WorkflowTransitioned: 'WORKFLOW_TRANSITIONED',
63
+ WorkflowReviewed: 'WORKFLOW_REVIEWED',
63
64
  WorkflowCompleted: 'WORKFLOW_COMPLETED',
64
65
  WorkflowCancelled: 'WORKFLOW_CANCELLED',
65
66
  WorkflowTaskReassigned: 'WORKFLOW_TASK_REASSIGNED',
package/models/index.ts CHANGED
@@ -183,6 +183,7 @@ export * from './user-preferences-request';
183
183
  export * from './user-privacy-dto';
184
184
  export * from './user-registration-request';
185
185
  export * from './verify-otp-request';
186
+ export * from './vote';
186
187
  export * from './workflow-action';
187
188
  export * from './workflow-action-failure-audit';
188
189
  export * from './workflow-assignment';
@@ -193,6 +194,8 @@ export * from './workflow-instance-dto';
193
194
  export * from './workflow-instance-detail-dto';
194
195
  export * from './workflow-instance-page';
195
196
  export * from './workflow-problem';
197
+ export * from './workflow-review';
198
+ export * from './workflow-review-progress-dto';
196
199
  export * from './workflow-spec';
197
200
  export * from './workflow-state';
198
201
  export * from './workflow-summary-dto';
@@ -73,6 +73,7 @@ export const SearchByAuditLogRequestActionEnum = {
73
73
  PdfTransform: 'PDF_TRANSFORM',
74
74
  WorkflowStarted: 'WORKFLOW_STARTED',
75
75
  WorkflowTransitioned: 'WORKFLOW_TRANSITIONED',
76
+ WorkflowReviewed: 'WORKFLOW_REVIEWED',
76
77
  WorkflowCompleted: 'WORKFLOW_COMPLETED',
77
78
  WorkflowCancelled: 'WORKFLOW_CANCELLED',
78
79
  WorkflowTaskReassigned: 'WORKFLOW_TASK_REASSIGNED',
@@ -27,6 +27,7 @@ export interface Settings {
27
27
  'aiUserSettingsEnabled'?: boolean;
28
28
  'aiInsightsActive'?: boolean;
29
29
  'aiInsightsCategories'?: Array<string>;
30
+ 'aiInsightsCategoryLabels'?: { [key: string]: string; };
30
31
  'aiAutoFileActive'?: boolean;
31
32
  'signatureActive'?: boolean;
32
33
  'pdfToolsActive'?: boolean;
package/models/vote.ts ADDED
@@ -0,0 +1,23 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ export interface Vote {
18
+ 'reviewer'?: string;
19
+ 'transitionKey'?: string;
20
+ 'comment'?: string;
21
+ 'at'?: string;
22
+ }
23
+
@@ -29,6 +29,7 @@ export interface WorkflowEventDTO {
29
29
  export const WorkflowEventDTOTypeEnum = {
30
30
  Started: 'STARTED',
31
31
  Transitioned: 'TRANSITIONED',
32
+ Reviewed: 'REVIEWED',
32
33
  ActionApplied: 'ACTION_APPLIED',
33
34
  ActionFailed: 'ACTION_FAILED',
34
35
  Reassigned: 'REASSIGNED',
@@ -0,0 +1,38 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { Vote } from './vote';
19
+
20
+ export interface WorkflowReviewProgressDTO {
21
+ 'rule'?: WorkflowReviewProgressDTORuleEnum;
22
+ 'quorum'?: number;
23
+ 'approveTransition'?: string;
24
+ 'total'?: number;
25
+ 'approvals'?: number;
26
+ 'votes'?: Array<Vote>;
27
+ 'pending'?: Array<string>;
28
+ }
29
+
30
+ export const WorkflowReviewProgressDTORuleEnum = {
31
+ All: 'ALL',
32
+ FirstRejection: 'FIRST_REJECTION',
33
+ Quorum: 'QUORUM',
34
+ } as const;
35
+
36
+ export type WorkflowReviewProgressDTORuleEnum = typeof WorkflowReviewProgressDTORuleEnum[keyof typeof WorkflowReviewProgressDTORuleEnum];
37
+
38
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * openfilz-api
5
+ * API for Document Management System
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ export interface WorkflowReview {
18
+ 'rule'?: WorkflowReviewRuleEnum;
19
+ 'quorum'?: number;
20
+ 'approveTransition'?: string;
21
+ }
22
+
23
+ export const WorkflowReviewRuleEnum = {
24
+ All: 'ALL',
25
+ FirstRejection: 'FIRST_REJECTION',
26
+ Quorum: 'QUORUM',
27
+ } as const;
28
+
29
+ export type WorkflowReviewRuleEnum = typeof WorkflowReviewRuleEnum[keyof typeof WorkflowReviewRuleEnum];
30
+
31
+
@@ -21,6 +21,9 @@ import type { WorkflowAction } from './workflow-action';
21
21
  import type { WorkflowAssignment } from './workflow-assignment';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import type { WorkflowReview } from './workflow-review';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
24
27
  import type { WorkflowTransition } from './workflow-transition';
25
28
 
26
29
  export interface WorkflowState {
@@ -32,6 +35,7 @@ export interface WorkflowState {
32
35
  'dueInDays'?: number;
33
36
  'transitions'?: Array<WorkflowTransition>;
34
37
  'onEnter'?: Array<WorkflowAction>;
38
+ 'review'?: WorkflowReview;
35
39
  'end'?: boolean;
36
40
  }
37
41
 
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkflowReviewProgressDTO } from './workflow-review-progress-dto';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { WorkflowTransition } from './workflow-transition';
@@ -42,6 +45,7 @@ export interface WorkflowTaskDTO {
42
45
  'previousComment'?: string;
43
46
  'previousActor'?: string;
44
47
  'mine'?: boolean;
48
+ 'review'?: WorkflowReviewProgressDTO;
45
49
  }
46
50
 
47
51
  export const WorkflowTaskDTOStatusEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfilz-sdk/typescript-ee",
3
- "version": "1.10.1",
3
+ "version": "1.10.3",
4
4
  "description": "OpenAPI client for @openfilz-sdk/typescript-ee",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {