@teemill/projects 1.25.0 → 1.27.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 +552 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +359 -1
- package/dist/api.js +307 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +359 -1
- package/dist/esm/api.js +307 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage PodOS Projects
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.27.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (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
|
|
@@ -572,6 +689,12 @@ export interface Task {
|
|
|
572
689
|
* @memberof Task
|
|
573
690
|
*/
|
|
574
691
|
'sortOrder': number;
|
|
692
|
+
/**
|
|
693
|
+
* The code of the chat channel associated with the task
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof Task
|
|
696
|
+
*/
|
|
697
|
+
'chatChannel': string | null;
|
|
575
698
|
}
|
|
576
699
|
/**
|
|
577
700
|
*
|
|
@@ -648,6 +771,25 @@ export interface TemplatesResponse {
|
|
|
648
771
|
*/
|
|
649
772
|
'templates': Array<Template>;
|
|
650
773
|
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface UpdateBookmarkRequest
|
|
778
|
+
*/
|
|
779
|
+
export interface UpdateBookmarkRequest {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {string}
|
|
783
|
+
* @memberof UpdateBookmarkRequest
|
|
784
|
+
*/
|
|
785
|
+
'title'?: string;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {BookmarkData}
|
|
789
|
+
* @memberof UpdateBookmarkRequest
|
|
790
|
+
*/
|
|
791
|
+
'data'?: BookmarkData;
|
|
792
|
+
}
|
|
651
793
|
/**
|
|
652
794
|
*
|
|
653
795
|
* @export
|
|
@@ -718,6 +860,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
718
860
|
* @throws {RequiredError}
|
|
719
861
|
*/
|
|
720
862
|
createAuth: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
863
|
+
/**
|
|
864
|
+
* Create a bookmark in the project
|
|
865
|
+
* @summary Create bookmark
|
|
866
|
+
* @param {string} project Projects unique identifier
|
|
867
|
+
* @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
|
|
868
|
+
* @param {*} [options] Override http request option.
|
|
869
|
+
* @throws {RequiredError}
|
|
870
|
+
*/
|
|
871
|
+
createBookmark: (project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
721
872
|
/**
|
|
722
873
|
* Creates an invite for the project
|
|
723
874
|
* @summary Creates an invite
|
|
@@ -753,6 +904,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
753
904
|
* @throws {RequiredError}
|
|
754
905
|
*/
|
|
755
906
|
deleteAuth: (project: string, auth: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
907
|
+
/**
|
|
908
|
+
* Delete a bookmark in the project
|
|
909
|
+
* @summary Delete bookmark
|
|
910
|
+
* @param {string} project Projects unique identifier
|
|
911
|
+
* @param {string} id The unique id of the bookmark
|
|
912
|
+
* @param {*} [options] Override http request option.
|
|
913
|
+
* @throws {RequiredError}
|
|
914
|
+
*/
|
|
915
|
+
deleteBookmark: (project: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
756
916
|
/**
|
|
757
917
|
* Deletes an invite to the project
|
|
758
918
|
* @summary Deletes an invite
|
|
@@ -888,6 +1048,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
888
1048
|
* @throws {RequiredError}
|
|
889
1049
|
*/
|
|
890
1050
|
installTemplate: (project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1051
|
+
/**
|
|
1052
|
+
* List the bookmarks in the project
|
|
1053
|
+
* @summary List bookmarks
|
|
1054
|
+
* @param {string} project Projects unique identifier
|
|
1055
|
+
* @param {*} [options] Override http request option.
|
|
1056
|
+
* @throws {RequiredError}
|
|
1057
|
+
*/
|
|
1058
|
+
listBookmarks: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
891
1059
|
/**
|
|
892
1060
|
* List the tasks in the workflow
|
|
893
1061
|
* @summary List Tasks
|
|
@@ -915,6 +1083,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
915
1083
|
* @throws {RequiredError}
|
|
916
1084
|
*/
|
|
917
1085
|
uninstallIntegration: (project: string, integration: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1086
|
+
/**
|
|
1087
|
+
* Update a bookmark in the project
|
|
1088
|
+
* @summary Update bookmark
|
|
1089
|
+
* @param {string} project Projects unique identifier
|
|
1090
|
+
* @param {string} id The unique id of the bookmark
|
|
1091
|
+
* @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
|
|
1092
|
+
* @param {*} [options] Override http request option.
|
|
1093
|
+
* @throws {RequiredError}
|
|
1094
|
+
*/
|
|
1095
|
+
updateBookmark: (project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
918
1096
|
/**
|
|
919
1097
|
* Update an integration on the project
|
|
920
1098
|
* @summary Update integration
|
|
@@ -958,6 +1136,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
958
1136
|
* @throws {RequiredError}
|
|
959
1137
|
*/
|
|
960
1138
|
createAuth(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Auth>>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Create a bookmark in the project
|
|
1141
|
+
* @summary Create bookmark
|
|
1142
|
+
* @param {string} project Projects unique identifier
|
|
1143
|
+
* @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
|
|
1144
|
+
* @param {*} [options] Override http request option.
|
|
1145
|
+
* @throws {RequiredError}
|
|
1146
|
+
*/
|
|
1147
|
+
createBookmark(project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
|
|
961
1148
|
/**
|
|
962
1149
|
* Creates an invite for the project
|
|
963
1150
|
* @summary Creates an invite
|
|
@@ -993,6 +1180,15 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
993
1180
|
* @throws {RequiredError}
|
|
994
1181
|
*/
|
|
995
1182
|
deleteAuth(project: string, auth: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1183
|
+
/**
|
|
1184
|
+
* Delete a bookmark in the project
|
|
1185
|
+
* @summary Delete bookmark
|
|
1186
|
+
* @param {string} project Projects unique identifier
|
|
1187
|
+
* @param {string} id The unique id of the bookmark
|
|
1188
|
+
* @param {*} [options] Override http request option.
|
|
1189
|
+
* @throws {RequiredError}
|
|
1190
|
+
*/
|
|
1191
|
+
deleteBookmark(project: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
996
1192
|
/**
|
|
997
1193
|
* Deletes an invite to the project
|
|
998
1194
|
* @summary Deletes an invite
|
|
@@ -1128,6 +1324,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1128
1324
|
* @throws {RequiredError}
|
|
1129
1325
|
*/
|
|
1130
1326
|
installTemplate(project: string, template: TemplateCode, installTemplateRequest: InstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationsResponse>>;
|
|
1327
|
+
/**
|
|
1328
|
+
* List the bookmarks in the project
|
|
1329
|
+
* @summary List bookmarks
|
|
1330
|
+
* @param {string} project Projects unique identifier
|
|
1331
|
+
* @param {*} [options] Override http request option.
|
|
1332
|
+
* @throws {RequiredError}
|
|
1333
|
+
*/
|
|
1334
|
+
listBookmarks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmarks>>;
|
|
1131
1335
|
/**
|
|
1132
1336
|
* List the tasks in the workflow
|
|
1133
1337
|
* @summary List Tasks
|
|
@@ -1155,6 +1359,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
|
|
|
1155
1359
|
* @throws {RequiredError}
|
|
1156
1360
|
*/
|
|
1157
1361
|
uninstallIntegration(project: string, integration: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1362
|
+
/**
|
|
1363
|
+
* Update a bookmark in the project
|
|
1364
|
+
* @summary Update bookmark
|
|
1365
|
+
* @param {string} project Projects unique identifier
|
|
1366
|
+
* @param {string} id The unique id of the bookmark
|
|
1367
|
+
* @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
|
|
1368
|
+
* @param {*} [options] Override http request option.
|
|
1369
|
+
* @throws {RequiredError}
|
|
1370
|
+
*/
|
|
1371
|
+
updateBookmark(project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>>;
|
|
1158
1372
|
/**
|
|
1159
1373
|
* Update an integration on the project
|
|
1160
1374
|
* @summary Update integration
|
|
@@ -1198,6 +1412,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1198
1412
|
* @throws {RequiredError}
|
|
1199
1413
|
*/
|
|
1200
1414
|
createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<Auth>;
|
|
1415
|
+
/**
|
|
1416
|
+
* Create a bookmark in the project
|
|
1417
|
+
* @summary Create bookmark
|
|
1418
|
+
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
1419
|
+
* @param {*} [options] Override http request option.
|
|
1420
|
+
* @throws {RequiredError}
|
|
1421
|
+
*/
|
|
1422
|
+
createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
|
|
1201
1423
|
/**
|
|
1202
1424
|
* Creates an invite for the project
|
|
1203
1425
|
* @summary Creates an invite
|
|
@@ -1230,6 +1452,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1230
1452
|
* @throws {RequiredError}
|
|
1231
1453
|
*/
|
|
1232
1454
|
deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1455
|
+
/**
|
|
1456
|
+
* Delete a bookmark in the project
|
|
1457
|
+
* @summary Delete bookmark
|
|
1458
|
+
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
1459
|
+
* @param {*} [options] Override http request option.
|
|
1460
|
+
* @throws {RequiredError}
|
|
1461
|
+
*/
|
|
1462
|
+
deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1233
1463
|
/**
|
|
1234
1464
|
* Deletes an invite to the project
|
|
1235
1465
|
* @summary Deletes an invite
|
|
@@ -1350,6 +1580,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1350
1580
|
* @throws {RequiredError}
|
|
1351
1581
|
*/
|
|
1352
1582
|
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationsResponse>;
|
|
1583
|
+
/**
|
|
1584
|
+
* List the bookmarks in the project
|
|
1585
|
+
* @summary List bookmarks
|
|
1586
|
+
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
1587
|
+
* @param {*} [options] Override http request option.
|
|
1588
|
+
* @throws {RequiredError}
|
|
1589
|
+
*/
|
|
1590
|
+
listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmarks>;
|
|
1353
1591
|
/**
|
|
1354
1592
|
* List the tasks in the workflow
|
|
1355
1593
|
* @summary List Tasks
|
|
@@ -1374,6 +1612,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
|
|
|
1374
1612
|
* @throws {RequiredError}
|
|
1375
1613
|
*/
|
|
1376
1614
|
uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1615
|
+
/**
|
|
1616
|
+
* Update a bookmark in the project
|
|
1617
|
+
* @summary Update bookmark
|
|
1618
|
+
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
1619
|
+
* @param {*} [options] Override http request option.
|
|
1620
|
+
* @throws {RequiredError}
|
|
1621
|
+
*/
|
|
1622
|
+
updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark>;
|
|
1377
1623
|
/**
|
|
1378
1624
|
* Update an integration on the project
|
|
1379
1625
|
* @summary Update integration
|
|
@@ -1412,6 +1658,25 @@ export interface ProjectsApiCreateAuthRequest {
|
|
|
1412
1658
|
*/
|
|
1413
1659
|
readonly project: string;
|
|
1414
1660
|
}
|
|
1661
|
+
/**
|
|
1662
|
+
* Request parameters for createBookmark operation in ProjectsApi.
|
|
1663
|
+
* @export
|
|
1664
|
+
* @interface ProjectsApiCreateBookmarkRequest
|
|
1665
|
+
*/
|
|
1666
|
+
export interface ProjectsApiCreateBookmarkRequest {
|
|
1667
|
+
/**
|
|
1668
|
+
* Projects unique identifier
|
|
1669
|
+
* @type {string}
|
|
1670
|
+
* @memberof ProjectsApiCreateBookmark
|
|
1671
|
+
*/
|
|
1672
|
+
readonly project: string;
|
|
1673
|
+
/**
|
|
1674
|
+
* Create a new bookmark in the project
|
|
1675
|
+
* @type {CreateBookmarkRequest}
|
|
1676
|
+
* @memberof ProjectsApiCreateBookmark
|
|
1677
|
+
*/
|
|
1678
|
+
readonly createBookmarkRequest: CreateBookmarkRequest;
|
|
1679
|
+
}
|
|
1415
1680
|
/**
|
|
1416
1681
|
* Request parameters for createInvite operation in ProjectsApi.
|
|
1417
1682
|
* @export
|
|
@@ -1482,6 +1747,25 @@ export interface ProjectsApiDeleteAuthRequest {
|
|
|
1482
1747
|
*/
|
|
1483
1748
|
readonly auth: string;
|
|
1484
1749
|
}
|
|
1750
|
+
/**
|
|
1751
|
+
* Request parameters for deleteBookmark operation in ProjectsApi.
|
|
1752
|
+
* @export
|
|
1753
|
+
* @interface ProjectsApiDeleteBookmarkRequest
|
|
1754
|
+
*/
|
|
1755
|
+
export interface ProjectsApiDeleteBookmarkRequest {
|
|
1756
|
+
/**
|
|
1757
|
+
* Projects unique identifier
|
|
1758
|
+
* @type {string}
|
|
1759
|
+
* @memberof ProjectsApiDeleteBookmark
|
|
1760
|
+
*/
|
|
1761
|
+
readonly project: string;
|
|
1762
|
+
/**
|
|
1763
|
+
* The unique id of the bookmark
|
|
1764
|
+
* @type {string}
|
|
1765
|
+
* @memberof ProjectsApiDeleteBookmark
|
|
1766
|
+
*/
|
|
1767
|
+
readonly id: string;
|
|
1768
|
+
}
|
|
1485
1769
|
/**
|
|
1486
1770
|
* Request parameters for deleteInvite operation in ProjectsApi.
|
|
1487
1771
|
* @export
|
|
@@ -1767,6 +2051,19 @@ export interface ProjectsApiInstallTemplateRequest {
|
|
|
1767
2051
|
*/
|
|
1768
2052
|
readonly installTemplateRequest: InstallTemplateRequest;
|
|
1769
2053
|
}
|
|
2054
|
+
/**
|
|
2055
|
+
* Request parameters for listBookmarks operation in ProjectsApi.
|
|
2056
|
+
* @export
|
|
2057
|
+
* @interface ProjectsApiListBookmarksRequest
|
|
2058
|
+
*/
|
|
2059
|
+
export interface ProjectsApiListBookmarksRequest {
|
|
2060
|
+
/**
|
|
2061
|
+
* Projects unique identifier
|
|
2062
|
+
* @type {string}
|
|
2063
|
+
* @memberof ProjectsApiListBookmarks
|
|
2064
|
+
*/
|
|
2065
|
+
readonly project: string;
|
|
2066
|
+
}
|
|
1770
2067
|
/**
|
|
1771
2068
|
* Request parameters for listTasks operation in ProjectsApi.
|
|
1772
2069
|
* @export
|
|
@@ -1824,6 +2121,31 @@ export interface ProjectsApiUninstallIntegrationRequest {
|
|
|
1824
2121
|
*/
|
|
1825
2122
|
readonly integration: string;
|
|
1826
2123
|
}
|
|
2124
|
+
/**
|
|
2125
|
+
* Request parameters for updateBookmark operation in ProjectsApi.
|
|
2126
|
+
* @export
|
|
2127
|
+
* @interface ProjectsApiUpdateBookmarkRequest
|
|
2128
|
+
*/
|
|
2129
|
+
export interface ProjectsApiUpdateBookmarkRequest {
|
|
2130
|
+
/**
|
|
2131
|
+
* Projects unique identifier
|
|
2132
|
+
* @type {string}
|
|
2133
|
+
* @memberof ProjectsApiUpdateBookmark
|
|
2134
|
+
*/
|
|
2135
|
+
readonly project: string;
|
|
2136
|
+
/**
|
|
2137
|
+
* The unique id of the bookmark
|
|
2138
|
+
* @type {string}
|
|
2139
|
+
* @memberof ProjectsApiUpdateBookmark
|
|
2140
|
+
*/
|
|
2141
|
+
readonly id: string;
|
|
2142
|
+
/**
|
|
2143
|
+
* Update a bookmark in the project
|
|
2144
|
+
* @type {UpdateBookmarkRequest}
|
|
2145
|
+
* @memberof ProjectsApiUpdateBookmark
|
|
2146
|
+
*/
|
|
2147
|
+
readonly updateBookmarkRequest: UpdateBookmarkRequest;
|
|
2148
|
+
}
|
|
1827
2149
|
/**
|
|
1828
2150
|
* Request parameters for updateIntegration operation in ProjectsApi.
|
|
1829
2151
|
* @export
|
|
@@ -1909,6 +2231,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1909
2231
|
* @memberof ProjectsApi
|
|
1910
2232
|
*/
|
|
1911
2233
|
createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Auth, any>>;
|
|
2234
|
+
/**
|
|
2235
|
+
* Create a bookmark in the project
|
|
2236
|
+
* @summary Create bookmark
|
|
2237
|
+
* @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
|
|
2238
|
+
* @param {*} [options] Override http request option.
|
|
2239
|
+
* @throws {RequiredError}
|
|
2240
|
+
* @memberof ProjectsApi
|
|
2241
|
+
*/
|
|
2242
|
+
createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
|
|
1912
2243
|
/**
|
|
1913
2244
|
* Creates an invite for the project
|
|
1914
2245
|
* @summary Creates an invite
|
|
@@ -1945,6 +2276,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
1945
2276
|
* @memberof ProjectsApi
|
|
1946
2277
|
*/
|
|
1947
2278
|
deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2279
|
+
/**
|
|
2280
|
+
* Delete a bookmark in the project
|
|
2281
|
+
* @summary Delete bookmark
|
|
2282
|
+
* @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
|
|
2283
|
+
* @param {*} [options] Override http request option.
|
|
2284
|
+
* @throws {RequiredError}
|
|
2285
|
+
* @memberof ProjectsApi
|
|
2286
|
+
*/
|
|
2287
|
+
deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1948
2288
|
/**
|
|
1949
2289
|
* Deletes an invite to the project
|
|
1950
2290
|
* @summary Deletes an invite
|
|
@@ -2080,6 +2420,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
2080
2420
|
* @memberof ProjectsApi
|
|
2081
2421
|
*/
|
|
2082
2422
|
installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntegrationsResponse, any>>;
|
|
2423
|
+
/**
|
|
2424
|
+
* List the bookmarks in the project
|
|
2425
|
+
* @summary List bookmarks
|
|
2426
|
+
* @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
|
|
2427
|
+
* @param {*} [options] Override http request option.
|
|
2428
|
+
* @throws {RequiredError}
|
|
2429
|
+
* @memberof ProjectsApi
|
|
2430
|
+
*/
|
|
2431
|
+
listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmarks, any>>;
|
|
2083
2432
|
/**
|
|
2084
2433
|
* List the tasks in the workflow
|
|
2085
2434
|
* @summary List Tasks
|
|
@@ -2107,6 +2456,15 @@ export declare class ProjectsApi extends BaseAPI {
|
|
|
2107
2456
|
* @memberof ProjectsApi
|
|
2108
2457
|
*/
|
|
2109
2458
|
uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2459
|
+
/**
|
|
2460
|
+
* Update a bookmark in the project
|
|
2461
|
+
* @summary Update bookmark
|
|
2462
|
+
* @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
|
|
2463
|
+
* @param {*} [options] Override http request option.
|
|
2464
|
+
* @throws {RequiredError}
|
|
2465
|
+
* @memberof ProjectsApi
|
|
2466
|
+
*/
|
|
2467
|
+
updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bookmark, any>>;
|
|
2110
2468
|
/**
|
|
2111
2469
|
* Update an integration on the project
|
|
2112
2470
|
* @summary Update integration
|