@teemill/projects 1.53.0 → 1.55.0
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 +3 -2
- package/api.ts +13 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +13 -2
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +13 -2
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/CreateTaskRequest.md +4 -0
- package/docs/CreateTaskRequestSource.md +22 -0
- package/docs/Task.md +2 -0
- package/docs/UserGroup.md +2 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/projects@1.
|
|
1
|
+
## @teemill/projects@1.55.0
|
|
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.
|
|
39
|
+
npm install @teemill/projects@1.55.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -120,6 +120,7 @@ Class | Method | HTTP request | Description
|
|
|
120
120
|
- [CreateInviteRequest](docs/CreateInviteRequest.md)
|
|
121
121
|
- [CreateProjectRequest](docs/CreateProjectRequest.md)
|
|
122
122
|
- [CreateTaskRequest](docs/CreateTaskRequest.md)
|
|
123
|
+
- [CreateTaskRequestSource](docs/CreateTaskRequestSource.md)
|
|
123
124
|
- [CreateUserGroupRequest](docs/CreateUserGroupRequest.md)
|
|
124
125
|
- [ExportTasks202Response](docs/ExportTasks202Response.md)
|
|
125
126
|
- [GetClients200Response](docs/GetClients200Response.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.
|
|
7
|
+
* The version of the OpenAPI document: 1.55.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -118,9 +118,15 @@ export interface CreateProjectRequest {
|
|
|
118
118
|
export interface CreateTaskRequest {
|
|
119
119
|
'content': string;
|
|
120
120
|
'status': TaskStatus;
|
|
121
|
+
'source'?: CreateTaskRequestSource;
|
|
122
|
+
'platformProject'?: string;
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
|
|
126
|
+
export interface CreateTaskRequestSource {
|
|
127
|
+
'id'?: string;
|
|
128
|
+
'type'?: string;
|
|
129
|
+
}
|
|
124
130
|
export interface CreateUserGroupRequest {
|
|
125
131
|
'name': string;
|
|
126
132
|
'handle': string;
|
|
@@ -196,7 +202,7 @@ export interface Project {
|
|
|
196
202
|
*/
|
|
197
203
|
'logo': LegacyProjectLogo | null;
|
|
198
204
|
'logos': Array<ProjectLogo>;
|
|
199
|
-
'banner'?: ProjectBanner;
|
|
205
|
+
'banner'?: ProjectBanner | null;
|
|
200
206
|
'manager'?: ProjectManager | null;
|
|
201
207
|
'platform'?: ProjectPlatform | null;
|
|
202
208
|
'integrations'?: Array<string>;
|
|
@@ -341,6 +347,10 @@ export interface Task {
|
|
|
341
347
|
'updatedAt': string;
|
|
342
348
|
'displayId': number;
|
|
343
349
|
'relatedTasks'?: Array<TaskRelatedTasksInner>;
|
|
350
|
+
/**
|
|
351
|
+
* The platform project code of the owner
|
|
352
|
+
*/
|
|
353
|
+
'ownerPlatform': string | null;
|
|
344
354
|
}
|
|
345
355
|
|
|
346
356
|
|
|
@@ -488,6 +498,7 @@ export interface UserGroup {
|
|
|
488
498
|
'handle': string;
|
|
489
499
|
'description': string | null;
|
|
490
500
|
'users': Array<string> | null;
|
|
501
|
+
'isSystemAssigned': boolean;
|
|
491
502
|
}
|
|
492
503
|
export interface UserInvite {
|
|
493
504
|
'inviter': ProjectUser;
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.55.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -107,6 +107,12 @@ export interface CreateProjectRequest {
|
|
|
107
107
|
export interface CreateTaskRequest {
|
|
108
108
|
'content': string;
|
|
109
109
|
'status': TaskStatus;
|
|
110
|
+
'source'?: CreateTaskRequestSource;
|
|
111
|
+
'platformProject'?: string;
|
|
112
|
+
}
|
|
113
|
+
export interface CreateTaskRequestSource {
|
|
114
|
+
'id'?: string;
|
|
115
|
+
'type'?: string;
|
|
110
116
|
}
|
|
111
117
|
export interface CreateUserGroupRequest {
|
|
112
118
|
'name': string;
|
|
@@ -179,7 +185,7 @@ export interface Project {
|
|
|
179
185
|
*/
|
|
180
186
|
'logo': LegacyProjectLogo | null;
|
|
181
187
|
'logos': Array<ProjectLogo>;
|
|
182
|
-
'banner'?: ProjectBanner;
|
|
188
|
+
'banner'?: ProjectBanner | null;
|
|
183
189
|
'manager'?: ProjectManager | null;
|
|
184
190
|
'platform'?: ProjectPlatform | null;
|
|
185
191
|
'integrations'?: Array<string>;
|
|
@@ -320,6 +326,10 @@ export interface Task {
|
|
|
320
326
|
'updatedAt': string;
|
|
321
327
|
'displayId': number;
|
|
322
328
|
'relatedTasks'?: Array<TaskRelatedTasksInner>;
|
|
329
|
+
/**
|
|
330
|
+
* The platform project code of the owner
|
|
331
|
+
*/
|
|
332
|
+
'ownerPlatform': string | null;
|
|
323
333
|
}
|
|
324
334
|
export interface TaskRelatedTasksInner {
|
|
325
335
|
/**
|
|
@@ -453,6 +463,7 @@ export interface UserGroup {
|
|
|
453
463
|
'handle': string;
|
|
454
464
|
'description': string | null;
|
|
455
465
|
'users': Array<string> | null;
|
|
466
|
+
'isSystemAssigned': boolean;
|
|
456
467
|
}
|
|
457
468
|
export interface UserInvite {
|
|
458
469
|
'inviter': ProjectUser;
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.55.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -107,6 +107,12 @@ export interface CreateProjectRequest {
|
|
|
107
107
|
export interface CreateTaskRequest {
|
|
108
108
|
'content': string;
|
|
109
109
|
'status': TaskStatus;
|
|
110
|
+
'source'?: CreateTaskRequestSource;
|
|
111
|
+
'platformProject'?: string;
|
|
112
|
+
}
|
|
113
|
+
export interface CreateTaskRequestSource {
|
|
114
|
+
'id'?: string;
|
|
115
|
+
'type'?: string;
|
|
110
116
|
}
|
|
111
117
|
export interface CreateUserGroupRequest {
|
|
112
118
|
'name': string;
|
|
@@ -179,7 +185,7 @@ export interface Project {
|
|
|
179
185
|
*/
|
|
180
186
|
'logo': LegacyProjectLogo | null;
|
|
181
187
|
'logos': Array<ProjectLogo>;
|
|
182
|
-
'banner'?: ProjectBanner;
|
|
188
|
+
'banner'?: ProjectBanner | null;
|
|
183
189
|
'manager'?: ProjectManager | null;
|
|
184
190
|
'platform'?: ProjectPlatform | null;
|
|
185
191
|
'integrations'?: Array<string>;
|
|
@@ -320,6 +326,10 @@ export interface Task {
|
|
|
320
326
|
'updatedAt': string;
|
|
321
327
|
'displayId': number;
|
|
322
328
|
'relatedTasks'?: Array<TaskRelatedTasksInner>;
|
|
329
|
+
/**
|
|
330
|
+
* The platform project code of the owner
|
|
331
|
+
*/
|
|
332
|
+
'ownerPlatform': string | null;
|
|
323
333
|
}
|
|
324
334
|
export interface TaskRelatedTasksInner {
|
|
325
335
|
/**
|
|
@@ -453,6 +463,7 @@ export interface UserGroup {
|
|
|
453
463
|
'handle': string;
|
|
454
464
|
'description': string | null;
|
|
455
465
|
'users': Array<string> | null;
|
|
466
|
+
'isSystemAssigned': boolean;
|
|
456
467
|
}
|
|
457
468
|
export interface UserInvite {
|
|
458
469
|
'inviter': ProjectUser;
|
package/dist/esm/api.js
CHANGED
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**content** | **string** | | [default to undefined]
|
|
9
9
|
**status** | [**TaskStatus**](TaskStatus.md) | | [default to undefined]
|
|
10
|
+
**source** | [**CreateTaskRequestSource**](CreateTaskRequestSource.md) | | [optional] [default to undefined]
|
|
11
|
+
**platformProject** | **string** | | [optional] [default to undefined]
|
|
10
12
|
|
|
11
13
|
## Example
|
|
12
14
|
|
|
@@ -16,6 +18,8 @@ import { CreateTaskRequest } from '@teemill/projects';
|
|
|
16
18
|
const instance: CreateTaskRequest = {
|
|
17
19
|
content,
|
|
18
20
|
status,
|
|
21
|
+
source,
|
|
22
|
+
platformProject,
|
|
19
23
|
};
|
|
20
24
|
```
|
|
21
25
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CreateTaskRequestSource
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**type** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { CreateTaskRequestSource } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: CreateTaskRequestSource = {
|
|
17
|
+
id,
|
|
18
|
+
type,
|
|
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/docs/Task.md
CHANGED
|
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
|
|
|
22
22
|
**updatedAt** | **string** | | [default to undefined]
|
|
23
23
|
**displayId** | **number** | | [default to undefined]
|
|
24
24
|
**relatedTasks** | [**Array<TaskRelatedTasksInner>**](TaskRelatedTasksInner.md) | | [optional] [default to undefined]
|
|
25
|
+
**ownerPlatform** | **string** | The platform project code of the owner | [default to undefined]
|
|
25
26
|
|
|
26
27
|
## Example
|
|
27
28
|
|
|
@@ -46,6 +47,7 @@ const instance: Task = {
|
|
|
46
47
|
updatedAt,
|
|
47
48
|
displayId,
|
|
48
49
|
relatedTasks,
|
|
50
|
+
ownerPlatform,
|
|
49
51
|
};
|
|
50
52
|
```
|
|
51
53
|
|
package/docs/UserGroup.md
CHANGED
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**handle** | **string** | | [default to undefined]
|
|
11
11
|
**description** | **string** | | [default to undefined]
|
|
12
12
|
**users** | **Array<string>** | | [default to undefined]
|
|
13
|
+
**isSystemAssigned** | **boolean** | | [default to undefined]
|
|
13
14
|
|
|
14
15
|
## Example
|
|
15
16
|
|
|
@@ -22,6 +23,7 @@ const instance: UserGroup = {
|
|
|
22
23
|
handle,
|
|
23
24
|
description,
|
|
24
25
|
users,
|
|
26
|
+
isSystemAssigned,
|
|
25
27
|
};
|
|
26
28
|
```
|
|
27
29
|
|
package/index.ts
CHANGED