@teemill/projects 1.24.1 → 1.26.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 +1069 -6
- package/base.ts +3 -3
- package/common.ts +3 -3
- package/configuration.ts +3 -3
- package/dist/api.d.ts +671 -3
- package/dist/api.js +623 -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 +671 -3
- package/dist/esm/api.js +622 -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/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.26.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.24.1
|
|
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
|
|
@@ -70,6 +70,123 @@ export interface AuthResponse {
|
|
|
70
70
|
*/
|
|
71
71
|
'auth'?: Array<Auth>;
|
|
72
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @export
|
|
76
|
+
* @interface Bookmark
|
|
77
|
+
*/
|
|
78
|
+
export interface Bookmark {
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof Bookmark
|
|
83
|
+
*/
|
|
84
|
+
'id': string;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof Bookmark
|
|
89
|
+
*/
|
|
90
|
+
'title': string | null;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {BookmarkData}
|
|
94
|
+
* @memberof Bookmark
|
|
95
|
+
*/
|
|
96
|
+
'data': BookmarkData;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @type BookmarkData
|
|
100
|
+
* @export
|
|
101
|
+
*/
|
|
102
|
+
export type BookmarkData = BookmarkRoute | BookmarkUrl;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @export
|
|
106
|
+
* @interface BookmarkRoute
|
|
107
|
+
*/
|
|
108
|
+
export interface BookmarkRoute {
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {BookmarkRouteRoute}
|
|
112
|
+
* @memberof BookmarkRoute
|
|
113
|
+
*/
|
|
114
|
+
'route': BookmarkRouteRoute;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @export
|
|
119
|
+
* @interface BookmarkRouteRoute
|
|
120
|
+
*/
|
|
121
|
+
export interface BookmarkRouteRoute {
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof BookmarkRouteRoute
|
|
126
|
+
*/
|
|
127
|
+
'name': string;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {{ [key: string]: any; }}
|
|
131
|
+
* @memberof BookmarkRouteRoute
|
|
132
|
+
*/
|
|
133
|
+
'params'?: {
|
|
134
|
+
[key: string]: any;
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {{ [key: string]: any; }}
|
|
139
|
+
* @memberof BookmarkRouteRoute
|
|
140
|
+
*/
|
|
141
|
+
'query'?: {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
*
|
|
147
|
+
* @export
|
|
148
|
+
* @interface BookmarkUrl
|
|
149
|
+
*/
|
|
150
|
+
export interface BookmarkUrl {
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @memberof BookmarkUrl
|
|
155
|
+
*/
|
|
156
|
+
'url': string;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @export
|
|
161
|
+
* @interface Bookmarks
|
|
162
|
+
*/
|
|
163
|
+
export interface Bookmarks {
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {Array<Bookmark>}
|
|
167
|
+
* @memberof Bookmarks
|
|
168
|
+
*/
|
|
169
|
+
'bookmarks': Array<Bookmark>;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
*
|
|
173
|
+
* @export
|
|
174
|
+
* @interface CreateBookmarkRequest
|
|
175
|
+
*/
|
|
176
|
+
export interface CreateBookmarkRequest {
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @type {string}
|
|
180
|
+
* @memberof CreateBookmarkRequest
|
|
181
|
+
*/
|
|
182
|
+
'title'?: string;
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @type {BookmarkData}
|
|
186
|
+
* @memberof CreateBookmarkRequest
|
|
187
|
+
*/
|
|
188
|
+
'data': BookmarkData;
|
|
189
|
+
}
|
|
73
190
|
/**
|
|
74
191
|
*
|
|
75
192
|
* @export
|
|
@@ -120,6 +237,25 @@ export interface CreateProjectRequest {
|
|
|
120
237
|
*/
|
|
121
238
|
'platformId'?: string | null;
|
|
122
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @export
|
|
243
|
+
* @interface CreateTaskRequest
|
|
244
|
+
*/
|
|
245
|
+
export interface CreateTaskRequest {
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @type {string}
|
|
249
|
+
* @memberof CreateTaskRequest
|
|
250
|
+
*/
|
|
251
|
+
'content': string;
|
|
252
|
+
/**
|
|
253
|
+
*
|
|
254
|
+
* @type {TaskStatus}
|
|
255
|
+
* @memberof CreateTaskRequest
|
|
256
|
+
*/
|
|
257
|
+
'status': TaskStatus;
|
|
258
|
+
}
|
|
123
259
|
/**
|
|
124
260
|
*
|
|
125
261
|
* @export
|
|
@@ -221,6 +357,19 @@ export interface LegacyProjectLogo {
|
|
|
221
357
|
*/
|
|
222
358
|
'backgroundColor': string;
|
|
223
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
*
|
|
362
|
+
* @export
|
|
363
|
+
* @interface ListTasksResponse
|
|
364
|
+
*/
|
|
365
|
+
export interface ListTasksResponse {
|
|
366
|
+
/**
|
|
367
|
+
*
|
|
368
|
+
* @type {Array<Task>}
|
|
369
|
+
* @memberof ListTasksResponse
|
|
370
|
+
*/
|
|
371
|
+
'tasks': Array<Task>;
|
|
372
|
+
}
|
|
224
373
|
/**
|
|
225
374
|
*
|
|
226
375
|
* @export
|
|
@@ -510,6 +659,49 @@ export interface ProjectsResponse {
|
|
|
510
659
|
*/
|
|
511
660
|
'projects': Array<Project>;
|
|
512
661
|
}
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @export
|
|
665
|
+
* @interface Task
|
|
666
|
+
*/
|
|
667
|
+
export interface Task {
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof Task
|
|
672
|
+
*/
|
|
673
|
+
'id': string;
|
|
674
|
+
/**
|
|
675
|
+
*
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof Task
|
|
678
|
+
*/
|
|
679
|
+
'content': string;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {TaskStatus}
|
|
683
|
+
* @memberof Task
|
|
684
|
+
*/
|
|
685
|
+
'status': TaskStatus;
|
|
686
|
+
/**
|
|
687
|
+
* The position of the task in its status group
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof Task
|
|
690
|
+
*/
|
|
691
|
+
'sortOrder': number;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @export
|
|
696
|
+
* @enum {string}
|
|
697
|
+
*/
|
|
698
|
+
export declare const TaskStatus: {
|
|
699
|
+
readonly Nice: "nice";
|
|
700
|
+
readonly Need: "need";
|
|
701
|
+
readonly Doing: "doing";
|
|
702
|
+
readonly Done: "done";
|
|
703
|
+
};
|
|
704
|
+
export type TaskStatus = typeof TaskStatus[keyof typeof TaskStatus];
|
|
513
705
|
/**
|
|
514
706
|
*
|
|
515
707
|
* @export
|
|
@@ -573,6 +765,25 @@ export interface TemplatesResponse {
|
|
|
573
765
|
*/
|
|
574
766
|
'templates': Array<Template>;
|
|
575
767
|
}
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* @export
|
|
771
|
+
* @interface UpdateBookmarkRequest
|
|
772
|
+
*/
|
|
773
|
+
export interface UpdateBookmarkRequest {
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @type {string}
|
|
777
|
+
* @memberof UpdateBookmarkRequest
|
|
778
|
+
*/
|
|
779
|
+
'title'?: string;
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {BookmarkData}
|
|
783
|
+
* @memberof UpdateBookmarkRequest
|
|
784
|
+
*/
|
|
785
|
+
'data'?: BookmarkData;
|
|
786
|
+
}
|
|
576
787
|
/**
|
|
577
788
|
*
|
|
578
789
|
* @export
|
|
@@ -605,6 +816,31 @@ export interface UpdateProjectRequest {
|
|
|
605
816
|
*/
|
|
606
817
|
'logos'?: Array<ProjectLogo>;
|
|
607
818
|
}
|
|
819
|
+
/**
|
|
820
|
+
*
|
|
821
|
+
* @export
|
|
822
|
+
* @interface UpdateTaskRequest
|
|
823
|
+
*/
|
|
824
|
+
export interface UpdateTaskRequest {
|
|
825
|
+
/**
|
|
826
|
+
*
|
|
827
|
+
* @type {string}
|
|
828
|
+
* @memberof UpdateTaskRequest
|
|
829
|
+
*/
|
|
830
|
+
'content'?: string;
|
|
831
|
+
/**
|
|
832
|
+
*
|
|
833
|
+
* @type {TaskStatus}
|
|
834
|
+
* @memberof UpdateTaskRequest
|
|
835
|
+
*/
|
|
836
|
+
'status'?: TaskStatus;
|
|
837
|
+
/**
|
|
838
|
+
* The position of the task in its status group
|
|
839
|
+
* @type {number}
|
|
840
|
+
* @memberof UpdateTaskRequest
|
|
841
|
+
*/
|
|
842
|
+
'sortOrder'?: number;
|
|
843
|
+
}
|
|
608
844
|
/**
|
|
609
845
|
* ProjectsApi - axios parameter creator
|
|
610
846
|
* @export
|
|
@@ -618,6 +854,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
618
854
|
* @throws {RequiredError}
|
|
619
855
|
*/
|
|
620
856
|
createAuth: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
857
|
+
/**
|
|
858
|
+
* Create a bookmark in the project
|
|
859
|
+
* @summary Create bookmark
|
|
860
|
+
* @param {string} project Projects unique identifier
|
|
861
|
+
* @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
|
|
862
|
+
* @param {*} [options] Override http request option.
|
|
863
|
+
* @throws {RequiredError}
|
|
864
|
+
*/
|
|
865
|
+
createBookmark: (project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
621
866
|
/**
|
|
622
867
|
* Creates an invite for the project
|
|
623
868
|
* @summary Creates an invite
|
|
@@ -635,6 +880,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
635
880
|
* @throws {RequiredError}
|
|
636
881
|
*/
|
|
637
882
|
createProject: (createProjectRequest: CreateProjectRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
883
|
+
/**
|
|
884
|
+
* Create a new task in the workflow
|
|
885
|
+
* @summary Create Task
|
|
886
|
+
* @param {string} project Projects unique identifier
|
|
887
|
+
* @param {CreateTaskRequest} [createTaskRequest] Create a new task in the workflow
|
|
888
|
+
* @param {*} [options] Override http request option.
|
|
889
|
+
* @throws {RequiredError}
|
|
890
|
+
*/
|
|
891
|
+
createTask: (project: string, createTaskRequest?: CreateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
638
892
|
/**
|
|
639
893
|
* Delete an auth token for the project
|
|
640
894
|
* @summary Delete auth token
|
|
@@ -644,6 +898,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
644
898
|
* @throws {RequiredError}
|
|
645
899
|
*/
|
|
646
900
|
deleteAuth: (project: string, auth: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
901
|
+
/**
|
|
902
|
+
* Delete a bookmark in the project
|
|
903
|
+
* @summary Delete bookmark
|
|
904
|
+
* @param {string} project Projects unique identifier
|
|
905
|
+
* @param {string} id The unique id of the bookmark
|
|
906
|
+
* @param {*} [options] Override http request option.
|
|
907
|
+
* @throws {RequiredError}
|
|
908
|
+
*/
|
|
909
|
+
deleteBookmark: (project: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
647
910
|
/**
|
|
648
911
|
* Deletes an invite to the project
|
|
649
912
|
* @summary Deletes an invite
|
|
@@ -661,6 +924,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
661
924
|
* @throws {RequiredError}
|
|
662
925
|
*/
|
|
663
926
|
deleteProject: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
927
|
+
/**
|
|
928
|
+
* Delete a task in the workflow
|
|
929
|
+
* @summary Delete Task
|
|
930
|
+
* @param {string} project Projects unique identifier
|
|
931
|
+
* @param {string} id The unique id of the task
|
|
932
|
+
* @param {*} [options] Override http request option.
|
|
933
|
+
* @throws {RequiredError}
|
|
934
|
+
*/
|
|
935
|
+
deleteTask: (project: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
664
936
|
/**
|
|
665
937
|
* Delete a project user by ID
|
|
666
938
|
* @summary Delete a user by ID
|
|
@@ -770,6 +1042,22 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
770
1042
|
* @throws {RequiredError}
|
|
771
1043
|
*/
|
|
772
1044
|
installTemplate: (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1045
|
+
/**
|
|
1046
|
+
* List the bookmarks in the project
|
|
1047
|
+
* @summary List bookmarks
|
|
1048
|
+
* @param {string} project Projects unique identifier
|
|
1049
|
+
* @param {*} [options] Override http request option.
|
|
1050
|
+
* @throws {RequiredError}
|
|
1051
|
+
*/
|
|
1052
|
+
listBookmarks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1053
|
+
/**
|
|
1054
|
+
* List the tasks in the workflow
|
|
1055
|
+
* @summary List Tasks
|
|
1056
|
+
* @param {string} project Projects unique identifier
|
|
1057
|
+
* @param {*} [options] Override http request option.
|
|
1058
|
+
* @throws {RequiredError}
|
|
1059
|
+
*/
|
|
1060
|
+
listTasks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
773
1061
|
/**
|
|
774
1062
|
* Setup an integration on the project
|
|
775
1063
|
* @summary Setup integration
|
|
@@ -789,6 +1077,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
789
1077
|
* @throws {RequiredError}
|
|
790
1078
|
*/
|
|
791
1079
|
uninstallIntegration: (project: string, integration: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1080
|
+
/**
|
|
1081
|
+
* Update a bookmark in the project
|
|
1082
|
+
* @summary Update bookmark
|
|
1083
|
+
* @param {string} project Projects unique identifier
|
|
1084
|
+
* @param {string} id The unique id of the bookmark
|
|
1085
|
+
* @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
|
|
1086
|
+
* @param {*} [options] Override http request option.
|
|
1087
|
+
* @throws {RequiredError}
|
|
1088
|
+
*/
|
|
1089
|
+
updateBookmark: (project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
792
1090
|
/**
|
|
793
1091
|
* Update an integration on the project
|
|
794
1092
|
* @summary Update integration
|
|
@@ -808,6 +1106,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
808
1106
|
* @throws {RequiredError}
|
|
809
1107
|
*/
|
|
810
1108
|
updateProject: (project: string, updateProjectRequest: UpdateProjectRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1109
|
+
/**
|
|
1110
|
+
* Update a task in the workflow
|
|
1111
|
+
* @summary Update Task
|
|
1112
|
+
* @param {string} project Projects unique identifier
|
|
1113
|
+
* @param {string} id The unique id of the task
|
|
1114
|
+
* @param {UpdateTaskRequest} [updateTaskRequest] Update a task in the workflow
|
|
1115
|
+
* @param {*} [options] Override http request option.
|
|
1116
|
+
* @throws {RequiredError}
|
|
1117
|
+
*/
|
|
1118
|
+
updateTask: (project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
811
1119
|
};
|
|
812
1120
|
/**
|
|
813
1121
|
* ProjectsApi - functional programming interface
|
|
@@ -822,6 +1130,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
822
1130
|
* @throws {RequiredError}
|
|
823
1131
|
*/
|
|
824
1132
|
createAuth(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Auth>>;
|
|
1133
|
+
/**
|
|
1134
|
+
* Create a bookmark in the project
|
|
1135
|
+
* @summary Create bookmark
|
|
1136
|
+
* @param {string} project Projects unique identifier
|
|
1137
|
+
* @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
|
|
1138
|
+
* @param {*} [options] Override http request option.
|
|
1139
|
+
* @throws {RequiredError}
|
|
1140
|
+
*/
|
|
1141
|
+
createBookmark(project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
|
|
825
1142
|
/**
|
|
826
1143
|
* Creates an invite for the project
|
|
827
1144
|
* @summary Creates an invite
|
|
@@ -839,6 +1156,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
839
1156
|
* @throws {RequiredError}
|
|
840
1157
|
*/
|
|
841
1158
|
createProject(createProjectRequest: CreateProjectRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
|
|
1159
|
+
/**
|
|
1160
|
+
* Create a new task in the workflow
|
|
1161
|
+
* @summary Create Task
|
|
1162
|
+
* @param {string} project Projects unique identifier
|
|
1163
|
+
* @param {CreateTaskRequest} [createTaskRequest] Create a new task in the workflow
|
|
1164
|
+
* @param {*} [options] Override http request option.
|
|
1165
|
+
* @throws {RequiredError}
|
|
1166
|
+
*/
|
|
1167
|
+
createTask(project: string, createTaskRequest?: CreateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Task>>;
|
|
842
1168
|
/**
|
|
843
1169
|
* Delete an auth token for the project
|
|
844
1170
|
* @summary Delete auth token
|
|
@@ -848,6 +1174,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
848
1174
|
* @throws {RequiredError}
|
|
849
1175
|
*/
|
|
850
1176
|
deleteAuth(project: string, auth: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1177
|
+
/**
|
|
1178
|
+
* Delete a bookmark in the project
|
|
1179
|
+
* @summary Delete bookmark
|
|
1180
|
+
* @param {string} project Projects unique identifier
|
|
1181
|
+
* @param {string} id The unique id of the bookmark
|
|
1182
|
+
* @param {*} [options] Override http request option.
|
|
1183
|
+
* @throws {RequiredError}
|
|
1184
|
+
*/
|
|
1185
|
+
deleteBookmark(project: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
851
1186
|
/**
|
|
852
1187
|
* Deletes an invite to the project
|
|
853
1188
|
* @summary Deletes an invite
|
|
@@ -865,6 +1200,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
865
1200
|
* @throws {RequiredError}
|
|
866
1201
|
*/
|
|
867
1202
|
deleteProject(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1203
|
+
/**
|
|
1204
|
+
* Delete a task in the workflow
|
|
1205
|
+
* @summary Delete Task
|
|
1206
|
+
* @param {string} project Projects unique identifier
|
|
1207
|
+
* @param {string} id The unique id of the task
|
|
1208
|
+
* @param {*} [options] Override http request option.
|
|
1209
|
+
* @throws {RequiredError}
|
|
1210
|
+
*/
|
|
1211
|
+
deleteTask(project: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
868
1212
|
/**
|
|
869
1213
|
* Delete a project user by ID
|
|
870
1214
|
* @summary Delete a user by ID
|
|
@@ -974,6 +1318,22 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
974
1318
|
* @throws {RequiredError}
|
|
975
1319
|
*/
|
|
976
1320
|
installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
|
|
1321
|
+
/**
|
|
1322
|
+
* List the bookmarks in the project
|
|
1323
|
+
* @summary List bookmarks
|
|
1324
|
+
* @param {string} project Projects unique identifier
|
|
1325
|
+
* @param {*} [options] Override http request option.
|
|
1326
|
+
* @throws {RequiredError}
|
|
1327
|
+
*/
|
|
1328
|
+
listBookmarks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmarks>>;
|
|
1329
|
+
/**
|
|
1330
|
+
* List the tasks in the workflow
|
|
1331
|
+
* @summary List Tasks
|
|
1332
|
+
* @param {string} project Projects unique identifier
|
|
1333
|
+
* @param {*} [options] Override http request option.
|
|
1334
|
+
* @throws {RequiredError}
|
|
1335
|
+
*/
|
|
1336
|
+
listTasks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTasksResponse>>;
|
|
977
1337
|
/**
|
|
978
1338
|
* Setup an integration on the project
|
|
979
1339
|
* @summary Setup integration
|
|
@@ -993,6 +1353,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
993
1353
|
* @throws {RequiredError}
|
|
994
1354
|
*/
|
|
995
1355
|
uninstallIntegration(project: string, integration: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1356
|
+
/**
|
|
1357
|
+
* Update a bookmark in the project
|
|
1358
|
+
* @summary Update bookmark
|
|
1359
|
+
* @param {string} project Projects unique identifier
|
|
1360
|
+
* @param {string} id The unique id of the bookmark
|
|
1361
|
+
* @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
|
|
1362
|
+
* @param {*} [options] Override http request option.
|
|
1363
|
+
* @throws {RequiredError}
|
|
1364
|
+
*/
|
|
1365
|
+
updateBookmark(project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
|
|
996
1366
|
/**
|
|
997
1367
|
* Update an integration on the project
|
|
998
1368
|
* @summary Update integration
|
|
@@ -1012,6 +1382,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1012
1382
|
* @throws {RequiredError}
|
|
1013
1383
|
*/
|
|
1014
1384
|
updateProject(project: string, updateProjectRequest: UpdateProjectRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
|
|
1385
|
+
/**
|
|
1386
|
+
* Update a task in the workflow
|
|
1387
|
+
* @summary Update Task
|
|
1388
|
+
* @param {string} project Projects unique identifier
|
|
1389
|
+
* @param {string} id The unique id of the task
|
|
1390
|
+
* @param {UpdateTaskRequest} [updateTaskRequest] Update a task in the workflow
|
|
1391
|
+
* @param {*} [options] Override http request option.
|
|
1392
|
+
* @throws {RequiredError}
|
|
1393
|
+
*/
|
|
1394
|
+
updateTask(project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Task>>;
|
|
1015
1395
|
};
|
|
1016
1396
|
/**
|
|
1017
1397
|
* ProjectsApi - factory interface
|
|
@@ -1026,6 +1406,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1026
1406
|
* @throws {RequiredError}
|
|
1027
1407
|
*/
|
|
1028
1408
|
createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<Auth>;
|
|
1409
|
+
/**
|
|
1410
|
+
* Create a bookmark in the project
|
|
1411
|
+
* @summary Create bookmark
|
|
1412
|
+
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
1413
|
+
* @param {*} [options] Override http request option.
|
|
1414
|
+
* @throws {RequiredError}
|
|
1415
|
+
*/
|
|
1416
|
+
createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
|
|
1029
1417
|
/**
|
|
1030
1418
|
* Creates an invite for the project
|
|
1031
1419
|
* @summary Creates an invite
|
|
@@ -1042,6 +1430,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1042
1430
|
* @throws {RequiredError}
|
|
1043
1431
|
*/
|
|
1044
1432
|
createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
|
|
1433
|
+
/**
|
|
1434
|
+
* Create a new task in the workflow
|
|
1435
|
+
* @summary Create Task
|
|
1436
|
+
* @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
|
|
1437
|
+
* @param {*} [options] Override http request option.
|
|
1438
|
+
* @throws {RequiredError}
|
|
1439
|
+
*/
|
|
1440
|
+
createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
|
|
1045
1441
|
/**
|
|
1046
1442
|
* Delete an auth token for the project
|
|
1047
1443
|
* @summary Delete auth token
|
|
@@ -1050,6 +1446,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1050
1446
|
* @throws {RequiredError}
|
|
1051
1447
|
*/
|
|
1052
1448
|
deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1449
|
+
/**
|
|
1450
|
+
* Delete a bookmark in the project
|
|
1451
|
+
* @summary Delete bookmark
|
|
1452
|
+
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
1453
|
+
* @param {*} [options] Override http request option.
|
|
1454
|
+
* @throws {RequiredError}
|
|
1455
|
+
*/
|
|
1456
|
+
deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1053
1457
|
/**
|
|
1054
1458
|
* Deletes an invite to the project
|
|
1055
1459
|
* @summary Deletes an invite
|
|
@@ -1066,6 +1470,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1066
1470
|
* @throws {RequiredError}
|
|
1067
1471
|
*/
|
|
1068
1472
|
deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1473
|
+
/**
|
|
1474
|
+
* Delete a task in the workflow
|
|
1475
|
+
* @summary Delete Task
|
|
1476
|
+
* @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
|
|
1477
|
+
* @param {*} [options] Override http request option.
|
|
1478
|
+
* @throws {RequiredError}
|
|
1479
|
+
*/
|
|
1480
|
+
deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1069
1481
|
/**
|
|
1070
1482
|
* Delete a project user by ID
|
|
1071
1483
|
* @summary Delete a user by ID
|
|
@@ -1162,6 +1574,22 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1162
1574
|
* @throws {RequiredError}
|
|
1163
1575
|
*/
|
|
1164
1576
|
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationsResponse>;
|
|
1577
|
+
/**
|
|
1578
|
+
* List the bookmarks in the project
|
|
1579
|
+
* @summary List bookmarks
|
|
1580
|
+
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
1581
|
+
* @param {*} [options] Override http request option.
|
|
1582
|
+
* @throws {RequiredError}
|
|
1583
|
+
*/
|
|
1584
|
+
listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmarks>;
|
|
1585
|
+
/**
|
|
1586
|
+
* List the tasks in the workflow
|
|
1587
|
+
* @summary List Tasks
|
|
1588
|
+
* @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
|
|
1589
|
+
* @param {*} [options] Override http request option.
|
|
1590
|
+
* @throws {RequiredError}
|
|
1591
|
+
*/
|
|
1592
|
+
listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListTasksResponse>;
|
|
1165
1593
|
/**
|
|
1166
1594
|
* Setup an integration on the project
|
|
1167
1595
|
* @summary Setup integration
|
|
@@ -1178,6 +1606,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1178
1606
|
* @throws {RequiredError}
|
|
1179
1607
|
*/
|
|
1180
1608
|
uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1609
|
+
/**
|
|
1610
|
+
* Update a bookmark in the project
|
|
1611
|
+
* @summary Update bookmark
|
|
1612
|
+
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
1613
|
+
* @param {*} [options] Override http request option.
|
|
1614
|
+
* @throws {RequiredError}
|
|
1615
|
+
*/
|
|
1616
|
+
updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
|
|
1181
1617
|
/**
|
|
1182
1618
|
* Update an integration on the project
|
|
1183
1619
|
* @summary Update integration
|
|
@@ -1194,6 +1630,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1194
1630
|
* @throws {RequiredError}
|
|
1195
1631
|
*/
|
|
1196
1632
|
updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig): AxiosPromise<Project>;
|
|
1633
|
+
/**
|
|
1634
|
+
* Update a task in the workflow
|
|
1635
|
+
* @summary Update Task
|
|
1636
|
+
* @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
|
|
1637
|
+
* @param {*} [options] Override http request option.
|
|
1638
|
+
* @throws {RequiredError}
|
|
1639
|
+
*/
|
|
1640
|
+
updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
|
|
1197
1641
|
};
|
|
1198
1642
|
/**
|
|
1199
1643
|
* Request parameters for createAuth operation in ProjectsApi.
|
|
@@ -1208,6 +1652,25 @@ export interface ProjectsApiCreateAuthRequest {
|
|
|
1208
1652
|
*/
|
|
1209
1653
|
readonly project: string;
|
|
1210
1654
|
}
|
|
1655
|
+
/**
|
|
1656
|
+
* Request parameters for createBookmark operation in ProjectsApi.
|
|
1657
|
+
* @export
|
|
1658
|
+
* @interface ProjectsApiCreateBookmarkRequest
|
|
1659
|
+
*/
|
|
1660
|
+
export interface ProjectsApiCreateBookmarkRequest {
|
|
1661
|
+
/**
|
|
1662
|
+
* Projects unique identifier
|
|
1663
|
+
* @type {string}
|
|
1664
|
+
* @memberof ProjectsApiCreateBookmark
|
|
1665
|
+
*/
|
|
1666
|
+
readonly project: string;
|
|
1667
|
+
/**
|
|
1668
|
+
* Create a new bookmark in the project
|
|
1669
|
+
* @type {CreateBookmarkRequest}
|
|
1670
|
+
* @memberof ProjectsApiCreateBookmark
|
|
1671
|
+
*/
|
|
1672
|
+
readonly createBookmarkRequest: CreateBookmarkRequest;
|
|
1673
|
+
}
|
|
1211
1674
|
/**
|
|
1212
1675
|
* Request parameters for createInvite operation in ProjectsApi.
|
|
1213
1676
|
* @export
|
|
@@ -1240,6 +1703,25 @@ export interface ProjectsApiCreateProjectRequest {
|
|
|
1240
1703
|
*/
|
|
1241
1704
|
readonly createProjectRequest: CreateProjectRequest;
|
|
1242
1705
|
}
|
|
1706
|
+
/**
|
|
1707
|
+
* Request parameters for createTask operation in ProjectsApi.
|
|
1708
|
+
* @export
|
|
1709
|
+
* @interface ProjectsApiCreateTaskRequest
|
|
1710
|
+
*/
|
|
1711
|
+
export interface ProjectsApiCreateTaskRequest {
|
|
1712
|
+
/**
|
|
1713
|
+
* Projects unique identifier
|
|
1714
|
+
* @type {string}
|
|
1715
|
+
* @memberof ProjectsApiCreateTask
|
|
1716
|
+
*/
|
|
1717
|
+
readonly project: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* Create a new task in the workflow
|
|
1720
|
+
* @type {CreateTaskRequest}
|
|
1721
|
+
* @memberof ProjectsApiCreateTask
|
|
1722
|
+
*/
|
|
1723
|
+
readonly createTaskRequest?: CreateTaskRequest;
|
|
1724
|
+
}
|
|
1243
1725
|
/**
|
|
1244
1726
|
* Request parameters for deleteAuth operation in ProjectsApi.
|
|
1245
1727
|
* @export
|
|
@@ -1259,6 +1741,25 @@ export interface ProjectsApiDeleteAuthRequest {
|
|
|
1259
1741
|
*/
|
|
1260
1742
|
readonly auth: string;
|
|
1261
1743
|
}
|
|
1744
|
+
/**
|
|
1745
|
+
* Request parameters for deleteBookmark operation in ProjectsApi.
|
|
1746
|
+
* @export
|
|
1747
|
+
* @interface ProjectsApiDeleteBookmarkRequest
|
|
1748
|
+
*/
|
|
1749
|
+
export interface ProjectsApiDeleteBookmarkRequest {
|
|
1750
|
+
/**
|
|
1751
|
+
* Projects unique identifier
|
|
1752
|
+
* @type {string}
|
|
1753
|
+
* @memberof ProjectsApiDeleteBookmark
|
|
1754
|
+
*/
|
|
1755
|
+
readonly project: string;
|
|
1756
|
+
/**
|
|
1757
|
+
* The unique id of the bookmark
|
|
1758
|
+
* @type {string}
|
|
1759
|
+
* @memberof ProjectsApiDeleteBookmark
|
|
1760
|
+
*/
|
|
1761
|
+
readonly id: string;
|
|
1762
|
+
}
|
|
1262
1763
|
/**
|
|
1263
1764
|
* Request parameters for deleteInvite operation in ProjectsApi.
|
|
1264
1765
|
* @export
|
|
@@ -1291,6 +1792,25 @@ export interface ProjectsApiDeleteProjectRequest {
|
|
|
1291
1792
|
*/
|
|
1292
1793
|
readonly project: string;
|
|
1293
1794
|
}
|
|
1795
|
+
/**
|
|
1796
|
+
* Request parameters for deleteTask operation in ProjectsApi.
|
|
1797
|
+
* @export
|
|
1798
|
+
* @interface ProjectsApiDeleteTaskRequest
|
|
1799
|
+
*/
|
|
1800
|
+
export interface ProjectsApiDeleteTaskRequest {
|
|
1801
|
+
/**
|
|
1802
|
+
* Projects unique identifier
|
|
1803
|
+
* @type {string}
|
|
1804
|
+
* @memberof ProjectsApiDeleteTask
|
|
1805
|
+
*/
|
|
1806
|
+
readonly project: string;
|
|
1807
|
+
/**
|
|
1808
|
+
* The unique id of the task
|
|
1809
|
+
* @type {string}
|
|
1810
|
+
* @memberof ProjectsApiDeleteTask
|
|
1811
|
+
*/
|
|
1812
|
+
readonly id: string;
|
|
1813
|
+
}
|
|
1294
1814
|
/**
|
|
1295
1815
|
* Request parameters for deleteUser operation in ProjectsApi.
|
|
1296
1816
|
* @export
|
|
@@ -1525,6 +2045,32 @@ export interface ProjectsApiInstallTemplateRequest {
|
|
|
1525
2045
|
*/
|
|
1526
2046
|
readonly installTemplateRequest: InstallTemplateRequest;
|
|
1527
2047
|
}
|
|
2048
|
+
/**
|
|
2049
|
+
* Request parameters for listBookmarks operation in ProjectsApi.
|
|
2050
|
+
* @export
|
|
2051
|
+
* @interface ProjectsApiListBookmarksRequest
|
|
2052
|
+
*/
|
|
2053
|
+
export interface ProjectsApiListBookmarksRequest {
|
|
2054
|
+
/**
|
|
2055
|
+
* Projects unique identifier
|
|
2056
|
+
* @type {string}
|
|
2057
|
+
* @memberof ProjectsApiListBookmarks
|
|
2058
|
+
*/
|
|
2059
|
+
readonly project: string;
|
|
2060
|
+
}
|
|
2061
|
+
/**
|
|
2062
|
+
* Request parameters for listTasks operation in ProjectsApi.
|
|
2063
|
+
* @export
|
|
2064
|
+
* @interface ProjectsApiListTasksRequest
|
|
2065
|
+
*/
|
|
2066
|
+
export interface ProjectsApiListTasksRequest {
|
|
2067
|
+
/**
|
|
2068
|
+
* Projects unique identifier
|
|
2069
|
+
* @type {string}
|
|
2070
|
+
* @memberof ProjectsApiListTasks
|
|
2071
|
+
*/
|
|
2072
|
+
readonly project: string;
|
|
2073
|
+
}
|
|
1528
2074
|
/**
|
|
1529
2075
|
* Request parameters for setupIntegration operation in ProjectsApi.
|
|
1530
2076
|
* @export
|
|
@@ -1569,6 +2115,31 @@ export interface ProjectsApiUninstallIntegrationRequest {
|
|
|
1569
2115
|
*/
|
|
1570
2116
|
readonly integration: string;
|
|
1571
2117
|
}
|
|
2118
|
+
/**
|
|
2119
|
+
* Request parameters for updateBookmark operation in ProjectsApi.
|
|
2120
|
+
* @export
|
|
2121
|
+
* @interface ProjectsApiUpdateBookmarkRequest
|
|
2122
|
+
*/
|
|
2123
|
+
export interface ProjectsApiUpdateBookmarkRequest {
|
|
2124
|
+
/**
|
|
2125
|
+
* Projects unique identifier
|
|
2126
|
+
* @type {string}
|
|
2127
|
+
* @memberof ProjectsApiUpdateBookmark
|
|
2128
|
+
*/
|
|
2129
|
+
readonly project: string;
|
|
2130
|
+
/**
|
|
2131
|
+
* The unique id of the bookmark
|
|
2132
|
+
* @type {string}
|
|
2133
|
+
* @memberof ProjectsApiUpdateBookmark
|
|
2134
|
+
*/
|
|
2135
|
+
readonly id: string;
|
|
2136
|
+
/**
|
|
2137
|
+
* Update a bookmark in the project
|
|
2138
|
+
* @type {UpdateBookmarkRequest}
|
|
2139
|
+
* @memberof ProjectsApiUpdateBookmark
|
|
2140
|
+
*/
|
|
2141
|
+
readonly updateBookmarkRequest: UpdateBookmarkRequest;
|
|
2142
|
+
}
|
|
1572
2143
|
/**
|
|
1573
2144
|
* Request parameters for updateIntegration operation in ProjectsApi.
|
|
1574
2145
|
* @export
|
|
@@ -1613,6 +2184,31 @@ export interface ProjectsApiUpdateProjectRequest {
|
|
|
1613
2184
|
*/
|
|
1614
2185
|
readonly updateProjectRequest: UpdateProjectRequest;
|
|
1615
2186
|
}
|
|
2187
|
+
/**
|
|
2188
|
+
* Request parameters for updateTask operation in ProjectsApi.
|
|
2189
|
+
* @export
|
|
2190
|
+
* @interface ProjectsApiUpdateTaskRequest
|
|
2191
|
+
*/
|
|
2192
|
+
export interface ProjectsApiUpdateTaskRequest {
|
|
2193
|
+
/**
|
|
2194
|
+
* Projects unique identifier
|
|
2195
|
+
* @type {string}
|
|
2196
|
+
* @memberof ProjectsApiUpdateTask
|
|
2197
|
+
*/
|
|
2198
|
+
readonly project: string;
|
|
2199
|
+
/**
|
|
2200
|
+
* The unique id of the task
|
|
2201
|
+
* @type {string}
|
|
2202
|
+
* @memberof ProjectsApiUpdateTask
|
|
2203
|
+
*/
|
|
2204
|
+
readonly id: string;
|
|
2205
|
+
/**
|
|
2206
|
+
* Update a task in the workflow
|
|
2207
|
+
* @type {UpdateTaskRequest}
|
|
2208
|
+
* @memberof ProjectsApiUpdateTask
|
|
2209
|
+
*/
|
|
2210
|
+
readonly updateTaskRequest?: UpdateTaskRequest;
|
|
2211
|
+
}
|
|
1616
2212
|
/**
|
|
1617
2213
|
* ProjectsApi - object-oriented interface
|
|
1618
2214
|
* @export
|
|
@@ -1629,6 +2225,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1629
2225
|
* @memberof ProjectsApi
|
|
1630
2226
|
*/
|
|
1631
2227
|
createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Auth, any>>;
|
|
2228
|
+
/**
|
|
2229
|
+
* Create a bookmark in the project
|
|
2230
|
+
* @summary Create bookmark
|
|
2231
|
+
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
2232
|
+
* @param {*} [options] Override http request option.
|
|
2233
|
+
* @throws {RequiredError}
|
|
2234
|
+
* @memberof ProjectsApi
|
|
2235
|
+
*/
|
|
2236
|
+
createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
|
|
1632
2237
|
/**
|
|
1633
2238
|
* Creates an invite for the project
|
|
1634
2239
|
* @summary Creates an invite
|
|
@@ -1647,6 +2252,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1647
2252
|
* @memberof ProjectsApi
|
|
1648
2253
|
*/
|
|
1649
2254
|
createProject(requestParameters: ProjectsApiCreateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
2255
|
+
/**
|
|
2256
|
+
* Create a new task in the workflow
|
|
2257
|
+
* @summary Create Task
|
|
2258
|
+
* @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
|
|
2259
|
+
* @param {*} [options] Override http request option.
|
|
2260
|
+
* @throws {RequiredError}
|
|
2261
|
+
* @memberof ProjectsApi
|
|
2262
|
+
*/
|
|
2263
|
+
createTask(requestParameters: ProjectsApiCreateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
1650
2264
|
/**
|
|
1651
2265
|
* Delete an auth token for the project
|
|
1652
2266
|
* @summary Delete auth token
|
|
@@ -1656,6 +2270,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1656
2270
|
* @memberof ProjectsApi
|
|
1657
2271
|
*/
|
|
1658
2272
|
deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2273
|
+
/**
|
|
2274
|
+
* Delete a bookmark in the project
|
|
2275
|
+
* @summary Delete bookmark
|
|
2276
|
+
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
2277
|
+
* @param {*} [options] Override http request option.
|
|
2278
|
+
* @throws {RequiredError}
|
|
2279
|
+
* @memberof ProjectsApi
|
|
2280
|
+
*/
|
|
2281
|
+
deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1659
2282
|
/**
|
|
1660
2283
|
* Deletes an invite to the project
|
|
1661
2284
|
* @summary Deletes an invite
|
|
@@ -1674,6 +2297,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1674
2297
|
* @memberof ProjectsApi
|
|
1675
2298
|
*/
|
|
1676
2299
|
deleteProject(requestParameters: ProjectsApiDeleteProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2300
|
+
/**
|
|
2301
|
+
* Delete a task in the workflow
|
|
2302
|
+
* @summary Delete Task
|
|
2303
|
+
* @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
|
|
2304
|
+
* @param {*} [options] Override http request option.
|
|
2305
|
+
* @throws {RequiredError}
|
|
2306
|
+
* @memberof ProjectsApi
|
|
2307
|
+
*/
|
|
2308
|
+
deleteTask(requestParameters: ProjectsApiDeleteTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1677
2309
|
/**
|
|
1678
2310
|
* Delete a project user by ID
|
|
1679
2311
|
* @summary Delete a user by ID
|
|
@@ -1782,6 +2414,24 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1782
2414
|
* @memberof ProjectsApi
|
|
1783
2415
|
*/
|
|
1784
2416
|
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
|
|
2417
|
+
/**
|
|
2418
|
+
* List the bookmarks in the project
|
|
2419
|
+
* @summary List bookmarks
|
|
2420
|
+
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
2421
|
+
* @param {*} [options] Override http request option.
|
|
2422
|
+
* @throws {RequiredError}
|
|
2423
|
+
* @memberof ProjectsApi
|
|
2424
|
+
*/
|
|
2425
|
+
listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any>>;
|
|
2426
|
+
/**
|
|
2427
|
+
* List the tasks in the workflow
|
|
2428
|
+
* @summary List Tasks
|
|
2429
|
+
* @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
|
|
2430
|
+
* @param {*} [options] Override http request option.
|
|
2431
|
+
* @throws {RequiredError}
|
|
2432
|
+
* @memberof ProjectsApi
|
|
2433
|
+
*/
|
|
2434
|
+
listTasks(requestParameters: ProjectsApiListTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any>>;
|
|
1785
2435
|
/**
|
|
1786
2436
|
* Setup an integration on the project
|
|
1787
2437
|
* @summary Setup integration
|
|
@@ -1800,6 +2450,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1800
2450
|
* @memberof ProjectsApi
|
|
1801
2451
|
*/
|
|
1802
2452
|
uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2453
|
+
/**
|
|
2454
|
+
* Update a bookmark in the project
|
|
2455
|
+
* @summary Update bookmark
|
|
2456
|
+
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
2457
|
+
* @param {*} [options] Override http request option.
|
|
2458
|
+
* @throws {RequiredError}
|
|
2459
|
+
* @memberof ProjectsApi
|
|
2460
|
+
*/
|
|
2461
|
+
updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
|
|
1803
2462
|
/**
|
|
1804
2463
|
* Update an integration on the project
|
|
1805
2464
|
* @summary Update integration
|
|
@@ -1818,4 +2477,13 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1818
2477
|
* @memberof ProjectsApi
|
|
1819
2478
|
*/
|
|
1820
2479
|
updateProject(requestParameters: ProjectsApiUpdateProjectRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
|
|
2480
|
+
/**
|
|
2481
|
+
* Update a task in the workflow
|
|
2482
|
+
* @summary Update Task
|
|
2483
|
+
* @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
|
|
2484
|
+
* @param {*} [options] Override http request option.
|
|
2485
|
+
* @throws {RequiredError}
|
|
2486
|
+
* @memberof ProjectsApi
|
|
2487
|
+
*/
|
|
2488
|
+
updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
|
|
1821
2489
|
}
|