@teemill/projects 1.24.0 → 1.25.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 +2 -2
- package/api.ts +522 -4
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +3 -3
- package/dist/api.d.ts +320 -4
- package/dist/api.js +317 -4
- package/dist/base.d.ts +3 -3
- package/dist/base.js +3 -3
- package/dist/common.d.ts +3 -3
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +3 -3
- package/dist/esm/api.d.ts +320 -4
- package/dist/esm/api.js +316 -3
- package/dist/esm/base.d.ts +3 -3
- package/dist/esm/base.js +3 -3
- package/dist/esm/common.d.ts +3 -3
- package/dist/esm/common.js +3 -3
- package/dist/esm/configuration.d.ts +3 -3
- package/dist/esm/configuration.js +3 -3
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/index.ts +3 -3
- package/package.json +1 -1
package/base.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Projects API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Projects
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.25.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/common.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Projects API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Projects
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.25.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Projects API
|
|
5
|
-
* Manage
|
|
5
|
+
* Manage PodOS Projects
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.25.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Projects API
|
|
3
|
-
* Manage
|
|
3
|
+
* Manage PodOS Projects
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.25.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.24.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -120,6 +120,25 @@ export interface CreateProjectRequest {
|
|
|
120
120
|
*/
|
|
121
121
|
'platformId'?: string | null;
|
|
122
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @export
|
|
126
|
+
* @interface CreateTaskRequest
|
|
127
|
+
*/
|
|
128
|
+
export interface CreateTaskRequest {
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof CreateTaskRequest
|
|
133
|
+
*/
|
|
134
|
+
'content': string;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {TaskStatus}
|
|
138
|
+
* @memberof CreateTaskRequest
|
|
139
|
+
*/
|
|
140
|
+
'status': TaskStatus;
|
|
141
|
+
}
|
|
123
142
|
/**
|
|
124
143
|
*
|
|
125
144
|
* @export
|
|
@@ -221,6 +240,19 @@ export interface LegacyProjectLogo {
|
|
|
221
240
|
*/
|
|
222
241
|
'backgroundColor': string;
|
|
223
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @export
|
|
246
|
+
* @interface ListTasksResponse
|
|
247
|
+
*/
|
|
248
|
+
export interface ListTasksResponse {
|
|
249
|
+
/**
|
|
250
|
+
*
|
|
251
|
+
* @type {Array<Task>}
|
|
252
|
+
* @memberof ListTasksResponse
|
|
253
|
+
*/
|
|
254
|
+
'tasks': Array<Task>;
|
|
255
|
+
}
|
|
224
256
|
/**
|
|
225
257
|
*
|
|
226
258
|
* @export
|
|
@@ -275,7 +307,7 @@ export interface Project {
|
|
|
275
307
|
* @type {string}
|
|
276
308
|
* @memberof Project
|
|
277
309
|
*/
|
|
278
|
-
'publicKey'
|
|
310
|
+
'publicKey'?: string;
|
|
279
311
|
}
|
|
280
312
|
/**
|
|
281
313
|
*
|
|
@@ -510,6 +542,49 @@ export interface ProjectsResponse {
|
|
|
510
542
|
*/
|
|
511
543
|
'projects': Array<Project>;
|
|
512
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
*
|
|
547
|
+
* @export
|
|
548
|
+
* @interface Task
|
|
549
|
+
*/
|
|
550
|
+
export interface Task {
|
|
551
|
+
/**
|
|
552
|
+
*
|
|
553
|
+
* @type {string}
|
|
554
|
+
* @memberof Task
|
|
555
|
+
*/
|
|
556
|
+
'id': string;
|
|
557
|
+
/**
|
|
558
|
+
*
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof Task
|
|
561
|
+
*/
|
|
562
|
+
'content': string;
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @type {TaskStatus}
|
|
566
|
+
* @memberof Task
|
|
567
|
+
*/
|
|
568
|
+
'status': TaskStatus;
|
|
569
|
+
/**
|
|
570
|
+
* The position of the task in its status group
|
|
571
|
+
* @type {number}
|
|
572
|
+
* @memberof Task
|
|
573
|
+
*/
|
|
574
|
+
'sortOrder': number;
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
* @export
|
|
579
|
+
* @enum {string}
|
|
580
|
+
*/
|
|
581
|
+
export declare const TaskStatus: {
|
|
582
|
+
readonly Nice: "nice";
|
|
583
|
+
readonly Need: "need";
|
|
584
|
+
readonly Doing: "doing";
|
|
585
|
+
readonly Done: "done";
|
|
586
|
+
};
|
|
587
|
+
export type TaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
|
|
513
588
|
/**
|
|
514
589
|
*
|
|
515
590
|
* @export
|
|
@@ -605,6 +680,31 @@ export interface UpdateProjectRequest {
|
|
|
605
680
|
*/
|
|
606
681
|
'logos'?: Array<ProjectLogo>;
|
|
607
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
*
|
|
685
|
+
* @export
|
|
686
|
+
* @interface UpdateTaskRequest
|
|
687
|
+
*/
|
|
688
|
+
export interface UpdateTaskRequest {
|
|
689
|
+
/**
|
|
690
|
+
*
|
|
691
|
+
* @type {string}
|
|
692
|
+
* @memberof UpdateTaskRequest
|
|
693
|
+
*/
|
|
694
|
+
'content'?: string;
|
|
695
|
+
/**
|
|
696
|
+
*
|
|
697
|
+
* @type {TaskStatus}
|
|
698
|
+
* @memberof UpdateTaskRequest
|
|
699
|
+
*/
|
|
700
|
+
'status'?: TaskStatus;
|
|
701
|
+
/**
|
|
702
|
+
* The position of the task in its status group
|
|
703
|
+
* @type {number}
|
|
704
|
+
* @memberof UpdateTaskRequest
|
|
705
|
+
*/
|
|
706
|
+
'sortOrder'?: number;
|
|
707
|
+
}
|
|
608
708
|
/**
|
|
609
709
|
* ProjectsApi - axios parameter creator
|
|
610
710
|
* @export
|
|
@@ -635,6 +735,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
635
735
|
* @throws {RequiredError}
|
|
636
736
|
*/
|
|
637
737
|
createProject: (createProjectRequest: CreateProjectRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
738
|
+
/**
|
|
739
|
+
* Create a new task in the workflow
|
|
740
|
+
* @summary Create Task
|
|
741
|
+
* @param {string} project Projects unique identifier
|
|
742
|
+
* @param {CreateTaskRequest} [createTaskRequest] Create a new task in the workflow
|
|
743
|
+
* @param {*} [options] Override http request option.
|
|
744
|
+
* @throws {RequiredError}
|
|
745
|
+
*/
|
|
746
|
+
createTask: (project: string, createTaskRequest?: CreateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
638
747
|
/**
|
|
639
748
|
* Delete an auth token for the project
|
|
640
749
|
* @summary Delete auth token
|
|
@@ -661,6 +770,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
661
770
|
* @throws {RequiredError}
|
|
662
771
|
*/
|
|
663
772
|
deleteProject: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
773
|
+
/**
|
|
774
|
+
* Delete a task in the workflow
|
|
775
|
+
* @summary Delete Task
|
|
776
|
+
* @param {string} project Projects unique identifier
|
|
777
|
+
* @param {string} id The unique id of the task
|
|
778
|
+
* @param {*} [options] Override http request option.
|
|
779
|
+
* @throws {RequiredError}
|
|
780
|
+
*/
|
|
781
|
+
deleteTask: (project: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
664
782
|
/**
|
|
665
783
|
* Delete a project user by ID
|
|
666
784
|
* @summary Delete a user by ID
|
|
@@ -770,6 +888,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
770
888
|
* @throws {RequiredError}
|
|
771
889
|
*/
|
|
772
890
|
installTemplate: (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
891
|
+
/**
|
|
892
|
+
* List the tasks in the workflow
|
|
893
|
+
* @summary List Tasks
|
|
894
|
+
* @param {string} project Projects unique identifier
|
|
895
|
+
* @param {*} [options] Override http request option.
|
|
896
|
+
* @throws {RequiredError}
|
|
897
|
+
*/
|
|
898
|
+
listTasks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
773
899
|
/**
|
|
774
900
|
* Setup an integration on the project
|
|
775
901
|
* @summary Setup integration
|
|
@@ -808,6 +934,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
808
934
|
* @throws {RequiredError}
|
|
809
935
|
*/
|
|
810
936
|
updateProject: (project: string, updateProjectRequest: UpdateProjectRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
937
|
+
/**
|
|
938
|
+
* Update a task in the workflow
|
|
939
|
+
* @summary Update Task
|
|
940
|
+
* @param {string} project Projects unique identifier
|
|
941
|
+
* @param {string} id The unique id of the task
|
|
942
|
+
* @param {UpdateTaskRequest} [updateTaskRequest] Update a task in the workflow
|
|
943
|
+
* @param {*} [options] Override http request option.
|
|
944
|
+
* @throws {RequiredError}
|
|
945
|
+
*/
|
|
946
|
+
updateTask: (project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
811
947
|
};
|
|
812
948
|
/**
|
|
813
949
|
* ProjectsApi - functional programming interface
|
|
@@ -839,6 +975,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
839
975
|
* @throws {RequiredError}
|
|
840
976
|
*/
|
|
841
977
|
createProject(createProjectRequest: CreateProjectRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
|
|
978
|
+
/**
|
|
979
|
+
* Create a new task in the workflow
|
|
980
|
+
* @summary Create Task
|
|
981
|
+
* @param {string} project Projects unique identifier
|
|
982
|
+
* @param {CreateTaskRequest} [createTaskRequest] Create a new task in the workflow
|
|
983
|
+
* @param {*} [options] Override http request option.
|
|
984
|
+
* @throws {RequiredError}
|
|
985
|
+
*/
|
|
986
|
+
createTask(project: string, createTaskRequest?: CreateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Task>>;
|
|
842
987
|
/**
|
|
843
988
|
* Delete an auth token for the project
|
|
844
989
|
* @summary Delete auth token
|
|
@@ -865,6 +1010,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
865
1010
|
* @throws {RequiredError}
|
|
866
1011
|
*/
|
|
867
1012
|
deleteProject(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1013
|
+
/**
|
|
1014
|
+
* Delete a task in the workflow
|
|
1015
|
+
* @summary Delete Task
|
|
1016
|
+
* @param {string} project Projects unique identifier
|
|
1017
|
+
* @param {string} id The unique id of the task
|
|
1018
|
+
* @param {*} [options] Override http request option.
|
|
1019
|
+
* @throws {RequiredError}
|
|
1020
|
+
*/
|
|
1021
|
+
deleteTask(project: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
868
1022
|
/**
|
|
869
1023
|
* Delete a project user by ID
|
|
870
1024
|
* @summary Delete a user by ID
|
|
@@ -974,6 +1128,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
974
1128
|
* @throws {RequiredError}
|
|
975
1129
|
*/
|
|
976
1130
|
installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
|
|
1131
|
+
/**
|
|
1132
|
+
* List the tasks in the workflow
|
|
1133
|
+
* @summary List Tasks
|
|
1134
|
+
* @param {string} project Projects unique identifier
|
|
1135
|
+
* @param {*} [options] Override http request option.
|
|
1136
|
+
* @throws {RequiredError}
|
|
1137
|
+
*/
|
|
1138
|
+
listTasks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTasksResponse>>;
|
|
977
1139
|
/**
|
|
978
1140
|
* Setup an integration on the project
|
|
979
1141
|
* @summary Setup integration
|
|
@@ -1012,6 +1174,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1012
1174
|
* @throws {RequiredError}
|
|
1013
1175
|
*/
|
|
1014
1176
|
updateProject(project: string, updateProjectRequest: UpdateProjectRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
|
|
1177
|
+
/**
|
|
1178
|
+
* Update a task in the workflow
|
|
1179
|
+
* @summary Update Task
|
|
1180
|
+
* @param {string} project Projects unique identifier
|
|
1181
|
+
* @param {string} id The unique id of the task
|
|
1182
|
+
* @param {UpdateTaskRequest} [updateTaskRequest] Update a task in the workflow
|
|
1183
|
+
* @param {*} [options] Override http request option.
|
|
1184
|
+
* @throws {RequiredError}
|
|
1185
|
+
*/
|
|
1186
|
+
updateTask(project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Task>>;
|
|
1015
1187
|
};
|
|
1016
1188
|
/**
|
|
1017
1189
|
* ProjectsApi - factory interface
|
|
@@ -1042,6 +1214,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1042
1214
|
* @throws {RequiredError}
|
|
1043
1215
|
*/
|
|
1044
1216
|
createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
|
|
1217
|
+
/**
|
|
1218
|
+
* Create a new task in the workflow
|
|
1219
|
+
* @summary Create Task
|
|
1220
|
+
* @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
|
|
1221
|
+
* @param {*} [options] Override http request option.
|
|
1222
|
+
* @throws {RequiredError}
|
|
1223
|
+
*/
|
|
1224
|
+
createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
|
|
1045
1225
|
/**
|
|
1046
1226
|
* Delete an auth token for the project
|
|
1047
1227
|
* @summary Delete auth token
|
|
@@ -1066,6 +1246,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1066
1246
|
* @throws {RequiredError}
|
|
1067
1247
|
*/
|
|
1068
1248
|
deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1249
|
+
/**
|
|
1250
|
+
* Delete a task in the workflow
|
|
1251
|
+
* @summary Delete Task
|
|
1252
|
+
* @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
|
|
1253
|
+
* @param {*} [options] Override http request option.
|
|
1254
|
+
* @throws {RequiredError}
|
|
1255
|
+
*/
|
|
1256
|
+
deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1069
1257
|
/**
|
|
1070
1258
|
* Delete a project user by ID
|
|
1071
1259
|
* @summary Delete a user by ID
|
|
@@ -1162,6 +1350,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1162
1350
|
* @throws {RequiredError}
|
|
1163
1351
|
*/
|
|
1164
1352
|
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationsResponse>;
|
|
1353
|
+
/**
|
|
1354
|
+
* List the tasks in the workflow
|
|
1355
|
+
* @summary List Tasks
|
|
1356
|
+
* @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
|
|
1357
|
+
* @param {*} [options] Override http request option.
|
|
1358
|
+
* @throws {RequiredError}
|
|
1359
|
+
*/
|
|
1360
|
+
listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListTasksResponse>;
|
|
1165
1361
|
/**
|
|
1166
1362
|
* Setup an integration on the project
|
|
1167
1363
|
* @summary Setup integration
|
|
@@ -1194,6 +1390,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1194
1390
|
* @throws {RequiredError}
|
|
1195
1391
|
*/
|
|
1196
1392
|
updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
|
|
1393
|
+
/**
|
|
1394
|
+
* Update a task in the workflow
|
|
1395
|
+
* @summary Update Task
|
|
1396
|
+
* @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
|
|
1397
|
+
* @param {*} [options] Override http request option.
|
|
1398
|
+
* @throws {RequiredError}
|
|
1399
|
+
*/
|
|
1400
|
+
updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
|
|
1197
1401
|
};
|
|
1198
1402
|
/**
|
|
1199
1403
|
* Request parameters for createAuth operation in ProjectsApi.
|
|
@@ -1240,6 +1444,25 @@ export interface ProjectsApiCreateProjectRequest {
|
|
|
1240
1444
|
*/
|
|
1241
1445
|
readonly createProjectRequest: CreateProjectRequest;
|
|
1242
1446
|
}
|
|
1447
|
+
/**
|
|
1448
|
+
* Request parameters for createTask operation in ProjectsApi.
|
|
1449
|
+
* @export
|
|
1450
|
+
* @interface ProjectsApiCreateTaskRequest
|
|
1451
|
+
*/
|
|
1452
|
+
export interface ProjectsApiCreateTaskRequest {
|
|
1453
|
+
/**
|
|
1454
|
+
* Projects unique identifier
|
|
1455
|
+
* @type {string}
|
|
1456
|
+
* @memberof ProjectsApiCreateTask
|
|
1457
|
+
*/
|
|
1458
|
+
readonly project: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* Create a new task in the workflow
|
|
1461
|
+
* @type {CreateTaskRequest}
|
|
1462
|
+
* @memberof ProjectsApiCreateTask
|
|
1463
|
+
*/
|
|
1464
|
+
readonly createTaskRequest?: CreateTaskRequest;
|
|
1465
|
+
}
|
|
1243
1466
|
/**
|
|
1244
1467
|
* Request parameters for deleteAuth operation in ProjectsApi.
|
|
1245
1468
|
* @export
|
|
@@ -1291,6 +1514,25 @@ export interface ProjectsApiDeleteProjectRequest {
|
|
|
1291
1514
|
*/
|
|
1292
1515
|
readonly project: string;
|
|
1293
1516
|
}
|
|
1517
|
+
/**
|
|
1518
|
+
* Request parameters for deleteTask operation in ProjectsApi.
|
|
1519
|
+
* @export
|
|
1520
|
+
* @interface ProjectsApiDeleteTaskRequest
|
|
1521
|
+
*/
|
|
1522
|
+
export interface ProjectsApiDeleteTaskRequest {
|
|
1523
|
+
/**
|
|
1524
|
+
* Projects unique identifier
|
|
1525
|
+
* @type {string}
|
|
1526
|
+
* @memberof ProjectsApiDeleteTask
|
|
1527
|
+
*/
|
|
1528
|
+
readonly project: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* The unique id of the task
|
|
1531
|
+
* @type {string}
|
|
1532
|
+
* @memberof ProjectsApiDeleteTask
|
|
1533
|
+
*/
|
|
1534
|
+
readonly id: string;
|
|
1535
|
+
}
|
|
1294
1536
|
/**
|
|
1295
1537
|
* Request parameters for deleteUser operation in ProjectsApi.
|
|
1296
1538
|
* @export
|
|
@@ -1525,6 +1767,19 @@ export interface ProjectsApiInstallTemplateRequest {
|
|
|
1525
1767
|
*/
|
|
1526
1768
|
readonly installTemplateRequest: InstallTemplateRequest;
|
|
1527
1769
|
}
|
|
1770
|
+
/**
|
|
1771
|
+
* Request parameters for listTasks operation in ProjectsApi.
|
|
1772
|
+
* @export
|
|
1773
|
+
* @interface ProjectsApiListTasksRequest
|
|
1774
|
+
*/
|
|
1775
|
+
export interface ProjectsApiListTasksRequest {
|
|
1776
|
+
/**
|
|
1777
|
+
* Projects unique identifier
|
|
1778
|
+
* @type {string}
|
|
1779
|
+
* @memberof ProjectsApiListTasks
|
|
1780
|
+
*/
|
|
1781
|
+
readonly project: string;
|
|
1782
|
+
}
|
|
1528
1783
|
/**
|
|
1529
1784
|
* Request parameters for setupIntegration operation in ProjectsApi.
|
|
1530
1785
|
* @export
|
|
@@ -1613,6 +1868,31 @@ export interface ProjectsApiUpdateProjectRequest {
|
|
|
1613
1868
|
*/
|
|
1614
1869
|
readonly updateProjectRequest: UpdateProjectRequest;
|
|
1615
1870
|
}
|
|
1871
|
+
/**
|
|
1872
|
+
* Request parameters for updateTask operation in ProjectsApi.
|
|
1873
|
+
* @export
|
|
1874
|
+
* @interface ProjectsApiUpdateTaskRequest
|
|
1875
|
+
*/
|
|
1876
|
+
export interface ProjectsApiUpdateTaskRequest {
|
|
1877
|
+
/**
|
|
1878
|
+
* Projects unique identifier
|
|
1879
|
+
* @type {string}
|
|
1880
|
+
* @memberof ProjectsApiUpdateTask
|
|
1881
|
+
*/
|
|
1882
|
+
readonly project: string;
|
|
1883
|
+
/**
|
|
1884
|
+
* The unique id of the task
|
|
1885
|
+
* @type {string}
|
|
1886
|
+
* @memberof ProjectsApiUpdateTask
|
|
1887
|
+
*/
|
|
1888
|
+
readonly id: string;
|
|
1889
|
+
/**
|
|
1890
|
+
* Update a task in the workflow
|
|
1891
|
+
* @type {UpdateTaskRequest}
|
|
1892
|
+
* @memberof ProjectsApiUpdateTask
|
|
1893
|
+
*/
|
|
1894
|
+
readonly updateTaskRequest?: UpdateTaskRequest;
|
|
1895
|
+
}
|
|
1616
1896
|
/**
|
|
1617
1897
|
* ProjectsApi - object-oriented interface
|
|
1618
1898
|
* @export
|
|
@@ -1647,6 +1927,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1647
1927
|
* @memberof ProjectsApi
|
|
1648
1928
|
*/
|
|
1649
1929
|
createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
1930
|
+
/**
|
|
1931
|
+
* Create a new task in the workflow
|
|
1932
|
+
* @summary Create Task
|
|
1933
|
+
* @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
|
|
1934
|
+
* @param {*} [options] Override http request option.
|
|
1935
|
+
* @throws {RequiredError}
|
|
1936
|
+
* @memberof ProjectsApi
|
|
1937
|
+
*/
|
|
1938
|
+
createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
1650
1939
|
/**
|
|
1651
1940
|
* Delete an auth token for the project
|
|
1652
1941
|
* @summary Delete auth token
|
|
@@ -1674,6 +1963,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1674
1963
|
* @memberof ProjectsApi
|
|
1675
1964
|
*/
|
|
1676
1965
|
deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1966
|
+
/**
|
|
1967
|
+
* Delete a task in the workflow
|
|
1968
|
+
* @summary Delete Task
|
|
1969
|
+
* @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
|
|
1970
|
+
* @param {*} [options] Override http request option.
|
|
1971
|
+
* @throws {RequiredError}
|
|
1972
|
+
* @memberof ProjectsApi
|
|
1973
|
+
*/
|
|
1974
|
+
deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1677
1975
|
/**
|
|
1678
1976
|
* Delete a project user by ID
|
|
1679
1977
|
* @summary Delete a user by ID
|
|
@@ -1782,6 +2080,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1782
2080
|
* @memberof ProjectsApi
|
|
1783
2081
|
*/
|
|
1784
2082
|
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
|
|
2083
|
+
/**
|
|
2084
|
+
* List the tasks in the workflow
|
|
2085
|
+
* @summary List Tasks
|
|
2086
|
+
* @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
|
|
2087
|
+
* @param {*} [options] Override http request option.
|
|
2088
|
+
* @throws {RequiredError}
|
|
2089
|
+
* @memberof ProjectsApi
|
|
2090
|
+
*/
|
|
2091
|
+
listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any>>;
|
|
1785
2092
|
/**
|
|
1786
2093
|
* Setup an integration on the project
|
|
1787
2094
|
* @summary Setup integration
|
|
@@ -1818,4 +2125,13 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1818
2125
|
* @memberof ProjectsApi
|
|
1819
2126
|
*/
|
|
1820
2127
|
updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
2128
|
+
/**
|
|
2129
|
+
* Update a task in the workflow
|
|
2130
|
+
* @summary Update Task
|
|
2131
|
+
* @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
|
|
2132
|
+
* @param {*} [options] Override http request option.
|
|
2133
|
+
* @throws {RequiredError}
|
|
2134
|
+
* @memberof ProjectsApi
|
|
2135
|
+
*/
|
|
2136
|
+
updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
1821
2137
|
}
|