@teemill/projects 1.50.0 → 1.52.1

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/projects@1.50.0
1
+ ## @teemill/projects@1.52.1
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/projects@1.50.0 --save
39
+ npm install @teemill/projects@1.52.1 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -128,6 +128,7 @@ Class | Method | HTTP request | Description
128
128
  - [OkrLevel](docs/OkrLevel.md)
129
129
  - [OkrSummary](docs/OkrSummary.md)
130
130
  - [Project](docs/Project.md)
131
+ - [ProjectBanner](docs/ProjectBanner.md)
131
132
  - [ProjectCurrency](docs/ProjectCurrency.md)
132
133
  - [ProjectInvite](docs/ProjectInvite.md)
133
134
  - [ProjectInvites](docs/ProjectInvites.md)
@@ -140,6 +141,7 @@ Class | Method | HTTP request | Description
140
141
  - [ProjectsResponse](docs/ProjectsResponse.md)
141
142
  - [SetupMethod](docs/SetupMethod.md)
142
143
  - [Task](docs/Task.md)
144
+ - [TaskRelatedTasksInner](docs/TaskRelatedTasksInner.md)
143
145
  - [TaskStatus](docs/TaskStatus.md)
144
146
  - [Template](docs/Template.md)
145
147
  - [TemplateCode](docs/TemplateCode.md)
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -188,6 +188,7 @@ export interface Project {
188
188
  */
189
189
  'logo': LegacyProjectLogo | null;
190
190
  'logos': Array<ProjectLogo>;
191
+ 'banner'?: ProjectBanner;
191
192
  'manager'?: ProjectManager | null;
192
193
  'platform'?: ProjectPlatform | null;
193
194
  'integrations'?: Array<string>;
@@ -205,6 +206,9 @@ export interface Project {
205
206
  */
206
207
  'createdBy'?: string;
207
208
  }
209
+ export interface ProjectBanner {
210
+ 'url': string;
211
+ }
208
212
  export interface ProjectCurrency {
209
213
  'code': string;
210
214
  'symbol': string;
@@ -265,6 +269,7 @@ export type ProjectUserTypeEnum = typeof ProjectUserTypeEnum[keyof typeof Projec
265
269
 
266
270
  export interface ProjectUserAvatar {
267
271
  'original'?: string | null;
272
+ 'thumbnail'?: string | null;
268
273
  }
269
274
  export interface ProjectUsers {
270
275
  'users': Array<ProjectUser>;
@@ -327,9 +332,20 @@ export interface Task {
327
332
  'createdAt': string;
328
333
  'updatedAt': string;
329
334
  'displayId': number;
335
+ 'relatedTasks'?: Array<TaskRelatedTasksInner>;
330
336
  }
331
337
 
332
338
 
339
+ export interface TaskRelatedTasksInner {
340
+ /**
341
+ * The unique id of the task
342
+ */
343
+ 'id'?: string;
344
+ /**
345
+ * The completion percentage of the task
346
+ */
347
+ 'workProgress'?: number;
348
+ }
333
349
 
334
350
  export const TaskStatus = {
335
351
  Nice: 'nice',
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -171,6 +171,7 @@ export interface Project {
171
171
  */
172
172
  'logo': LegacyProjectLogo | null;
173
173
  'logos': Array<ProjectLogo>;
174
+ 'banner'?: ProjectBanner;
174
175
  'manager'?: ProjectManager | null;
175
176
  'platform'?: ProjectPlatform | null;
176
177
  'integrations'?: Array<string>;
@@ -188,6 +189,9 @@ export interface Project {
188
189
  */
189
190
  'createdBy'?: string;
190
191
  }
192
+ export interface ProjectBanner {
193
+ 'url': string;
194
+ }
191
195
  export interface ProjectCurrency {
192
196
  'code': string;
193
197
  'symbol': string;
@@ -247,6 +251,7 @@ export declare const ProjectUserTypeEnum: {
247
251
  export type ProjectUserTypeEnum = typeof ProjectUserTypeEnum[keyof typeof ProjectUserTypeEnum];
248
252
  export interface ProjectUserAvatar {
249
253
  'original'?: string | null;
254
+ 'thumbnail'?: string | null;
250
255
  }
251
256
  export interface ProjectUsers {
252
257
  'users': Array<ProjectUser>;
@@ -306,6 +311,17 @@ export interface Task {
306
311
  'createdAt': string;
307
312
  'updatedAt': string;
308
313
  'displayId': number;
314
+ 'relatedTasks'?: Array<TaskRelatedTasksInner>;
315
+ }
316
+ export interface TaskRelatedTasksInner {
317
+ /**
318
+ * The unique id of the task
319
+ */
320
+ 'id'?: string;
321
+ /**
322
+ * The completion percentage of the task
323
+ */
324
+ 'workProgress'?: number;
309
325
  }
310
326
  export declare const TaskStatus: {
311
327
  readonly Nice: "nice";
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.50.0
8
+ * The version of the OpenAPI document: 1.52.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.50.0
8
+ * The version of the OpenAPI document: 1.52.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.50.0
8
+ * The version of the OpenAPI document: 1.52.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.50.0
8
+ * The version of the OpenAPI document: 1.52.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -171,6 +171,7 @@ export interface Project {
171
171
  */
172
172
  'logo': LegacyProjectLogo | null;
173
173
  'logos': Array<ProjectLogo>;
174
+ 'banner'?: ProjectBanner;
174
175
  'manager'?: ProjectManager | null;
175
176
  'platform'?: ProjectPlatform | null;
176
177
  'integrations'?: Array<string>;
@@ -188,6 +189,9 @@ export interface Project {
188
189
  */
189
190
  'createdBy'?: string;
190
191
  }
192
+ export interface ProjectBanner {
193
+ 'url': string;
194
+ }
191
195
  export interface ProjectCurrency {
192
196
  'code': string;
193
197
  'symbol': string;
@@ -247,6 +251,7 @@ export declare const ProjectUserTypeEnum: {
247
251
  export type ProjectUserTypeEnum = typeof ProjectUserTypeEnum[keyof typeof ProjectUserTypeEnum];
248
252
  export interface ProjectUserAvatar {
249
253
  'original'?: string | null;
254
+ 'thumbnail'?: string | null;
250
255
  }
251
256
  export interface ProjectUsers {
252
257
  'users': Array<ProjectUser>;
@@ -306,6 +311,17 @@ export interface Task {
306
311
  'createdAt': string;
307
312
  'updatedAt': string;
308
313
  'displayId': number;
314
+ 'relatedTasks'?: Array<TaskRelatedTasksInner>;
315
+ }
316
+ export interface TaskRelatedTasksInner {
317
+ /**
318
+ * The unique id of the task
319
+ */
320
+ 'id'?: string;
321
+ /**
322
+ * The completion percentage of the task
323
+ */
324
+ 'workProgress'?: number;
309
325
  }
310
326
  export declare const TaskStatus: {
311
327
  readonly Nice: "nice";
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.50.0
5
+ * The version of the OpenAPI document: 1.52.1
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.50.0
8
+ * The version of the OpenAPI document: 1.52.1
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/docs/Project.md CHANGED
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **name** | **string** | | [default to undefined]
10
10
  **logo** | [**LegacyProjectLogo**](LegacyProjectLogo.md) | | [default to undefined]
11
11
  **logos** | [**Array&lt;ProjectLogo&gt;**](ProjectLogo.md) | | [default to undefined]
12
+ **banner** | [**ProjectBanner**](ProjectBanner.md) | | [optional] [default to undefined]
12
13
  **manager** | [**ProjectManager**](ProjectManager.md) | | [optional] [default to undefined]
13
14
  **platform** | [**ProjectPlatform**](ProjectPlatform.md) | | [optional] [default to undefined]
14
15
  **integrations** | **Array&lt;string&gt;** | | [optional] [default to undefined]
@@ -27,6 +28,7 @@ const instance: Project = {
27
28
  name,
28
29
  logo,
29
30
  logos,
31
+ banner,
30
32
  manager,
31
33
  platform,
32
34
  integrations,
@@ -0,0 +1,20 @@
1
+ # ProjectBanner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **url** | **string** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { ProjectBanner } from '@teemill/projects';
14
+
15
+ const instance: ProjectBanner = {
16
+ url,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -6,6 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **original** | **string** | | [optional] [default to undefined]
9
+ **thumbnail** | **string** | | [optional] [default to undefined]
9
10
 
10
11
  ## Example
11
12
 
@@ -14,6 +15,7 @@ import { ProjectUserAvatar } from '@teemill/projects';
14
15
 
15
16
  const instance: ProjectUserAvatar = {
16
17
  original,
18
+ thumbnail,
17
19
  };
18
20
  ```
19
21
 
package/docs/Task.md CHANGED
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
21
21
  **createdAt** | **string** | | [default to undefined]
22
22
  **updatedAt** | **string** | | [default to undefined]
23
23
  **displayId** | **number** | | [default to undefined]
24
+ **relatedTasks** | [**Array&lt;TaskRelatedTasksInner&gt;**](TaskRelatedTasksInner.md) | | [optional] [default to undefined]
24
25
 
25
26
  ## Example
26
27
 
@@ -44,6 +45,7 @@ const instance: Task = {
44
45
  createdAt,
45
46
  updatedAt,
46
47
  displayId,
48
+ relatedTasks,
47
49
  };
48
50
  ```
49
51
 
@@ -0,0 +1,22 @@
1
+ # TaskRelatedTasksInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | The unique id of the task | [optional] [default to undefined]
9
+ **workProgress** | **number** | The completion percentage of the task | [optional] [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { TaskRelatedTasksInner } from '@teemill/projects';
15
+
16
+ const instance: TaskRelatedTasksInner = {
17
+ id,
18
+ workProgress,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.50.0
7
+ * The version of the OpenAPI document: 1.52.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/projects",
3
- "version": "1.50.0",
3
+ "version": "1.52.1",
4
4
  "description": "OpenAPI client for @teemill/projects",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {