@teemill/projects 1.53.0 → 1.56.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 +5 -2
- package/api.ts +31 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +25 -2
- package/dist/api.d.ts +31 -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 +25 -1
- package/dist/configuration.js +2 -2
- package/dist/esm/api.d.ts +31 -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 +25 -1
- package/dist/esm/configuration.js +2 -2
- 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 +4 -0
- package/docs/TaskClientTask.md +22 -0
- package/docs/TaskPlatformTask.md +22 -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.56.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.56.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)
|
|
@@ -148,6 +149,8 @@ Class | Method | HTTP request | Description
|
|
|
148
149
|
- [ProjectsResponse](docs/ProjectsResponse.md)
|
|
149
150
|
- [SetupMethod](docs/SetupMethod.md)
|
|
150
151
|
- [Task](docs/Task.md)
|
|
152
|
+
- [TaskClientTask](docs/TaskClientTask.md)
|
|
153
|
+
- [TaskPlatformTask](docs/TaskPlatformTask.md)
|
|
151
154
|
- [TaskRelatedTasksInner](docs/TaskRelatedTasksInner.md)
|
|
152
155
|
- [TaskStatus](docs/TaskStatus.md)
|
|
153
156
|
- [Template](docs/Template.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.56.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,9 +347,31 @@ export interface Task {
|
|
|
341
347
|
'updatedAt': string;
|
|
342
348
|
'displayId': number;
|
|
343
349
|
'relatedTasks'?: Array<TaskRelatedTasksInner>;
|
|
350
|
+
'platformTask'?: TaskPlatformTask;
|
|
351
|
+
'clientTask'?: TaskClientTask;
|
|
344
352
|
}
|
|
345
353
|
|
|
346
354
|
|
|
355
|
+
export interface TaskClientTask {
|
|
356
|
+
/**
|
|
357
|
+
* The project code of the related task
|
|
358
|
+
*/
|
|
359
|
+
'project': string;
|
|
360
|
+
/**
|
|
361
|
+
* The URL of the related task
|
|
362
|
+
*/
|
|
363
|
+
'url': string;
|
|
364
|
+
}
|
|
365
|
+
export interface TaskPlatformTask {
|
|
366
|
+
/**
|
|
367
|
+
* The project code of the related task
|
|
368
|
+
*/
|
|
369
|
+
'project': string;
|
|
370
|
+
/**
|
|
371
|
+
* The URL of the related task
|
|
372
|
+
*/
|
|
373
|
+
'url'?: string;
|
|
374
|
+
}
|
|
347
375
|
export interface TaskRelatedTasksInner {
|
|
348
376
|
/**
|
|
349
377
|
* The unique id of the task
|
|
@@ -488,6 +516,7 @@ export interface UserGroup {
|
|
|
488
516
|
'handle': string;
|
|
489
517
|
'description': string | null;
|
|
490
518
|
'users': Array<string> | null;
|
|
519
|
+
'isSystemAssigned': boolean;
|
|
491
520
|
}
|
|
492
521
|
export interface UserInvite {
|
|
493
522
|
'inviter': ProjectUser;
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
2
|
/**
|
|
4
3
|
* Projects API
|
|
5
4
|
* Manage PodOS Projects
|
|
6
5
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.56.0
|
|
8
7
|
*
|
|
9
8
|
*
|
|
10
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -12,12 +11,24 @@
|
|
|
12
11
|
* Do not edit the class manually.
|
|
13
12
|
*/
|
|
14
13
|
|
|
14
|
+
interface AWSv4Configuration {
|
|
15
|
+
options?: {
|
|
16
|
+
region?: string
|
|
17
|
+
service?: string
|
|
18
|
+
}
|
|
19
|
+
credentials?: {
|
|
20
|
+
accessKeyId?: string
|
|
21
|
+
secretAccessKey?: string,
|
|
22
|
+
sessionToken?: string
|
|
23
|
+
}
|
|
24
|
+
}
|
|
15
25
|
|
|
16
26
|
export interface ConfigurationParameters {
|
|
17
27
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
18
28
|
username?: string;
|
|
19
29
|
password?: string;
|
|
20
30
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
31
|
+
awsv4?: AWSv4Configuration;
|
|
21
32
|
basePath?: string;
|
|
22
33
|
serverIndex?: number;
|
|
23
34
|
baseOptions?: any;
|
|
@@ -44,6 +55,17 @@ export class Configuration {
|
|
|
44
55
|
* @param scopes oauth2 scope
|
|
45
56
|
*/
|
|
46
57
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
58
|
+
/**
|
|
59
|
+
* parameter for aws4 signature security
|
|
60
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
61
|
+
* @param {string} options.region - aws region
|
|
62
|
+
* @param {string} options.service - name of the service.
|
|
63
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
64
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
65
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
66
|
+
* @memberof Configuration
|
|
67
|
+
*/
|
|
68
|
+
awsv4?: AWSv4Configuration;
|
|
47
69
|
/**
|
|
48
70
|
* override base path
|
|
49
71
|
*/
|
|
@@ -70,6 +92,7 @@ export class Configuration {
|
|
|
70
92
|
this.username = param.username;
|
|
71
93
|
this.password = param.password;
|
|
72
94
|
this.accessToken = param.accessToken;
|
|
95
|
+
this.awsv4 = param.awsv4;
|
|
73
96
|
this.basePath = param.basePath;
|
|
74
97
|
this.serverIndex = param.serverIndex;
|
|
75
98
|
this.baseOptions = {
|
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.56.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,28 @@ export interface Task {
|
|
|
320
326
|
'updatedAt': string;
|
|
321
327
|
'displayId': number;
|
|
322
328
|
'relatedTasks'?: Array<TaskRelatedTasksInner>;
|
|
329
|
+
'platformTask'?: TaskPlatformTask;
|
|
330
|
+
'clientTask'?: TaskClientTask;
|
|
331
|
+
}
|
|
332
|
+
export interface TaskClientTask {
|
|
333
|
+
/**
|
|
334
|
+
* The project code of the related task
|
|
335
|
+
*/
|
|
336
|
+
'project': string;
|
|
337
|
+
/**
|
|
338
|
+
* The URL of the related task
|
|
339
|
+
*/
|
|
340
|
+
'url': string;
|
|
341
|
+
}
|
|
342
|
+
export interface TaskPlatformTask {
|
|
343
|
+
/**
|
|
344
|
+
* The project code of the related task
|
|
345
|
+
*/
|
|
346
|
+
'project': string;
|
|
347
|
+
/**
|
|
348
|
+
* The URL of the related task
|
|
349
|
+
*/
|
|
350
|
+
'url'?: string;
|
|
323
351
|
}
|
|
324
352
|
export interface TaskRelatedTasksInner {
|
|
325
353
|
/**
|
|
@@ -453,6 +481,7 @@ export interface UserGroup {
|
|
|
453
481
|
'handle': string;
|
|
454
482
|
'description': string | null;
|
|
455
483
|
'users': Array<string> | null;
|
|
484
|
+
'isSystemAssigned': boolean;
|
|
456
485
|
}
|
|
457
486
|
export interface UserInvite {
|
|
458
487
|
'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
|
@@ -2,18 +2,30 @@
|
|
|
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.56.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
interface AWSv4Configuration {
|
|
13
|
+
options?: {
|
|
14
|
+
region?: string;
|
|
15
|
+
service?: string;
|
|
16
|
+
};
|
|
17
|
+
credentials?: {
|
|
18
|
+
accessKeyId?: string;
|
|
19
|
+
secretAccessKey?: string;
|
|
20
|
+
sessionToken?: string;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
12
23
|
export interface ConfigurationParameters {
|
|
13
24
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
14
25
|
username?: string;
|
|
15
26
|
password?: string;
|
|
16
27
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
28
|
+
awsv4?: AWSv4Configuration;
|
|
17
29
|
basePath?: string;
|
|
18
30
|
serverIndex?: number;
|
|
19
31
|
baseOptions?: any;
|
|
@@ -39,6 +51,17 @@ export declare class Configuration {
|
|
|
39
51
|
* @param scopes oauth2 scope
|
|
40
52
|
*/
|
|
41
53
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
54
|
+
/**
|
|
55
|
+
* parameter for aws4 signature security
|
|
56
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
57
|
+
* @param {string} options.region - aws region
|
|
58
|
+
* @param {string} options.service - name of the service.
|
|
59
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
60
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
61
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
62
|
+
* @memberof Configuration
|
|
63
|
+
*/
|
|
64
|
+
awsv4?: AWSv4Configuration;
|
|
42
65
|
/**
|
|
43
66
|
* override base path
|
|
44
67
|
*/
|
|
@@ -72,3 +95,4 @@ export declare class Configuration {
|
|
|
72
95
|
*/
|
|
73
96
|
isJsonMime(mime: string): boolean;
|
|
74
97
|
}
|
|
98
|
+
export {};
|
package/dist/configuration.js
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
3
|
/**
|
|
5
4
|
* Projects API
|
|
6
5
|
* Manage PodOS Projects
|
|
7
6
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.56.0
|
|
9
8
|
*
|
|
10
9
|
*
|
|
11
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -21,6 +20,7 @@ class Configuration {
|
|
|
21
20
|
this.username = param.username;
|
|
22
21
|
this.password = param.password;
|
|
23
22
|
this.accessToken = param.accessToken;
|
|
23
|
+
this.awsv4 = param.awsv4;
|
|
24
24
|
this.basePath = param.basePath;
|
|
25
25
|
this.serverIndex = param.serverIndex;
|
|
26
26
|
this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
|
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.56.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,28 @@ export interface Task {
|
|
|
320
326
|
'updatedAt': string;
|
|
321
327
|
'displayId': number;
|
|
322
328
|
'relatedTasks'?: Array<TaskRelatedTasksInner>;
|
|
329
|
+
'platformTask'?: TaskPlatformTask;
|
|
330
|
+
'clientTask'?: TaskClientTask;
|
|
331
|
+
}
|
|
332
|
+
export interface TaskClientTask {
|
|
333
|
+
/**
|
|
334
|
+
* The project code of the related task
|
|
335
|
+
*/
|
|
336
|
+
'project': string;
|
|
337
|
+
/**
|
|
338
|
+
* The URL of the related task
|
|
339
|
+
*/
|
|
340
|
+
'url': string;
|
|
341
|
+
}
|
|
342
|
+
export interface TaskPlatformTask {
|
|
343
|
+
/**
|
|
344
|
+
* The project code of the related task
|
|
345
|
+
*/
|
|
346
|
+
'project': string;
|
|
347
|
+
/**
|
|
348
|
+
* The URL of the related task
|
|
349
|
+
*/
|
|
350
|
+
'url'?: string;
|
|
323
351
|
}
|
|
324
352
|
export interface TaskRelatedTasksInner {
|
|
325
353
|
/**
|
|
@@ -453,6 +481,7 @@ export interface UserGroup {
|
|
|
453
481
|
'handle': string;
|
|
454
482
|
'description': string | null;
|
|
455
483
|
'users': Array<string> | null;
|
|
484
|
+
'isSystemAssigned': boolean;
|
|
456
485
|
}
|
|
457
486
|
export interface UserInvite {
|
|
458
487
|
'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
|
@@ -2,18 +2,30 @@
|
|
|
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.56.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
interface AWSv4Configuration {
|
|
13
|
+
options?: {
|
|
14
|
+
region?: string;
|
|
15
|
+
service?: string;
|
|
16
|
+
};
|
|
17
|
+
credentials?: {
|
|
18
|
+
accessKeyId?: string;
|
|
19
|
+
secretAccessKey?: string;
|
|
20
|
+
sessionToken?: string;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
12
23
|
export interface ConfigurationParameters {
|
|
13
24
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
14
25
|
username?: string;
|
|
15
26
|
password?: string;
|
|
16
27
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
28
|
+
awsv4?: AWSv4Configuration;
|
|
17
29
|
basePath?: string;
|
|
18
30
|
serverIndex?: number;
|
|
19
31
|
baseOptions?: any;
|
|
@@ -39,6 +51,17 @@ export declare class Configuration {
|
|
|
39
51
|
* @param scopes oauth2 scope
|
|
40
52
|
*/
|
|
41
53
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
54
|
+
/**
|
|
55
|
+
* parameter for aws4 signature security
|
|
56
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
57
|
+
* @param {string} options.region - aws region
|
|
58
|
+
* @param {string} options.service - name of the service.
|
|
59
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
60
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
61
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
62
|
+
* @memberof Configuration
|
|
63
|
+
*/
|
|
64
|
+
awsv4?: AWSv4Configuration;
|
|
42
65
|
/**
|
|
43
66
|
* override base path
|
|
44
67
|
*/
|
|
@@ -72,3 +95,4 @@ export declare class Configuration {
|
|
|
72
95
|
*/
|
|
73
96
|
isJsonMime(mime: string): boolean;
|
|
74
97
|
}
|
|
98
|
+
export {};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
2
|
/**
|
|
4
3
|
* Projects API
|
|
5
4
|
* Manage PodOS Projects
|
|
6
5
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
6
|
+
* The version of the OpenAPI document: 1.56.0
|
|
8
7
|
*
|
|
9
8
|
*
|
|
10
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -18,6 +17,7 @@ export class Configuration {
|
|
|
18
17
|
this.username = param.username;
|
|
19
18
|
this.password = param.password;
|
|
20
19
|
this.accessToken = param.accessToken;
|
|
20
|
+
this.awsv4 = param.awsv4;
|
|
21
21
|
this.basePath = param.basePath;
|
|
22
22
|
this.serverIndex = param.serverIndex;
|
|
23
23
|
this.baseOptions = Object.assign(Object.assign({}, param.baseOptions), { headers: Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers) });
|
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,8 @@ 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
|
+
**platformTask** | [**TaskPlatformTask**](TaskPlatformTask.md) | | [optional] [default to undefined]
|
|
26
|
+
**clientTask** | [**TaskClientTask**](TaskClientTask.md) | | [optional] [default to undefined]
|
|
25
27
|
|
|
26
28
|
## Example
|
|
27
29
|
|
|
@@ -46,6 +48,8 @@ const instance: Task = {
|
|
|
46
48
|
updatedAt,
|
|
47
49
|
displayId,
|
|
48
50
|
relatedTasks,
|
|
51
|
+
platformTask,
|
|
52
|
+
clientTask,
|
|
49
53
|
};
|
|
50
54
|
```
|
|
51
55
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# TaskClientTask
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**project** | **string** | The project code of the related task | [default to undefined]
|
|
9
|
+
**url** | **string** | The URL of the related task | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { TaskClientTask } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: TaskClientTask = {
|
|
17
|
+
project,
|
|
18
|
+
url,
|
|
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)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# TaskPlatformTask
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**project** | **string** | The project code of the related task | [default to undefined]
|
|
9
|
+
**url** | **string** | The URL of the related task | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { TaskPlatformTask } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: TaskPlatformTask = {
|
|
17
|
+
project,
|
|
18
|
+
url,
|
|
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/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