@teemill/projects 1.25.0 → 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/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.25.0
7
+ * The version of the OpenAPI document: 1.26.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -80,6 +80,120 @@ export interface AuthResponse {
80
80
  */
81
81
  'auth'?: Array<Auth>;
82
82
  }
83
+ /**
84
+ *
85
+ * @export
86
+ * @interface Bookmark
87
+ */
88
+ export interface Bookmark {
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof Bookmark
93
+ */
94
+ 'id': string;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof Bookmark
99
+ */
100
+ 'title': string | null;
101
+ /**
102
+ *
103
+ * @type {BookmarkData}
104
+ * @memberof Bookmark
105
+ */
106
+ 'data': BookmarkData;
107
+ }
108
+ /**
109
+ * @type BookmarkData
110
+ * @export
111
+ */
112
+ export type BookmarkData = BookmarkRoute | BookmarkUrl;
113
+
114
+ /**
115
+ *
116
+ * @export
117
+ * @interface BookmarkRoute
118
+ */
119
+ export interface BookmarkRoute {
120
+ /**
121
+ *
122
+ * @type {BookmarkRouteRoute}
123
+ * @memberof BookmarkRoute
124
+ */
125
+ 'route': BookmarkRouteRoute;
126
+ }
127
+ /**
128
+ *
129
+ * @export
130
+ * @interface BookmarkRouteRoute
131
+ */
132
+ export interface BookmarkRouteRoute {
133
+ /**
134
+ *
135
+ * @type {string}
136
+ * @memberof BookmarkRouteRoute
137
+ */
138
+ 'name': string;
139
+ /**
140
+ *
141
+ * @type {{ [key: string]: any; }}
142
+ * @memberof BookmarkRouteRoute
143
+ */
144
+ 'params'?: { [key: string]: any; };
145
+ /**
146
+ *
147
+ * @type {{ [key: string]: any; }}
148
+ * @memberof BookmarkRouteRoute
149
+ */
150
+ 'query'?: { [key: string]: any; };
151
+ }
152
+ /**
153
+ *
154
+ * @export
155
+ * @interface BookmarkUrl
156
+ */
157
+ export interface BookmarkUrl {
158
+ /**
159
+ *
160
+ * @type {string}
161
+ * @memberof BookmarkUrl
162
+ */
163
+ 'url': string;
164
+ }
165
+ /**
166
+ *
167
+ * @export
168
+ * @interface Bookmarks
169
+ */
170
+ export interface Bookmarks {
171
+ /**
172
+ *
173
+ * @type {Array<Bookmark>}
174
+ * @memberof Bookmarks
175
+ */
176
+ 'bookmarks': Array<Bookmark>;
177
+ }
178
+ /**
179
+ *
180
+ * @export
181
+ * @interface CreateBookmarkRequest
182
+ */
183
+ export interface CreateBookmarkRequest {
184
+ /**
185
+ *
186
+ * @type {string}
187
+ * @memberof CreateBookmarkRequest
188
+ */
189
+ 'title'?: string;
190
+ /**
191
+ *
192
+ * @type {BookmarkData}
193
+ * @memberof CreateBookmarkRequest
194
+ */
195
+ 'data': BookmarkData;
196
+ }
83
197
  /**
84
198
  *
85
199
  * @export
@@ -675,6 +789,25 @@ export interface TemplatesResponse {
675
789
  */
676
790
  'templates': Array<Template>;
677
791
  }
792
+ /**
793
+ *
794
+ * @export
795
+ * @interface UpdateBookmarkRequest
796
+ */
797
+ export interface UpdateBookmarkRequest {
798
+ /**
799
+ *
800
+ * @type {string}
801
+ * @memberof UpdateBookmarkRequest
802
+ */
803
+ 'title'?: string;
804
+ /**
805
+ *
806
+ * @type {BookmarkData}
807
+ * @memberof UpdateBookmarkRequest
808
+ */
809
+ 'data'?: BookmarkData;
810
+ }
678
811
  /**
679
812
  *
680
813
  * @export
@@ -782,6 +915,53 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
782
915
  options: localVarRequestOptions,
783
916
  };
784
917
  },
918
+ /**
919
+ * Create a bookmark in the project
920
+ * @summary Create bookmark
921
+ * @param {string} project Projects unique identifier
922
+ * @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
923
+ * @param {*} [options] Override http request option.
924
+ * @throws {RequiredError}
925
+ */
926
+ createBookmark: async (project: string, createBookmarkRequest: CreateBookmarkRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
927
+ // verify required parameter 'project' is not null or undefined
928
+ assertParamExists('createBookmark', 'project', project)
929
+ // verify required parameter 'createBookmarkRequest' is not null or undefined
930
+ assertParamExists('createBookmark', 'createBookmarkRequest', createBookmarkRequest)
931
+ const localVarPath = `/v1/projects/{project}/bookmarks`
932
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
933
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
934
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
935
+ let baseOptions;
936
+ if (configuration) {
937
+ baseOptions = configuration.baseOptions;
938
+ }
939
+
940
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
941
+ const localVarHeaderParameter = {} as any;
942
+ const localVarQueryParameter = {} as any;
943
+
944
+ // authentication session-oauth required
945
+ // oauth required
946
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
947
+
948
+ // authentication api-key required
949
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
950
+
951
+
952
+
953
+ localVarHeaderParameter['Content-Type'] = 'application/json';
954
+
955
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
956
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
957
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
958
+ localVarRequestOptions.data = serializeDataIfNeeded(createBookmarkRequest, localVarRequestOptions, configuration)
959
+
960
+ return {
961
+ url: toPathString(localVarUrlObj),
962
+ options: localVarRequestOptions,
963
+ };
964
+ },
785
965
  /**
786
966
  * Creates an invite for the project
787
967
  * @summary Creates an invite
@@ -953,6 +1133,51 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
953
1133
 
954
1134
 
955
1135
 
1136
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1137
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1138
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1139
+
1140
+ return {
1141
+ url: toPathString(localVarUrlObj),
1142
+ options: localVarRequestOptions,
1143
+ };
1144
+ },
1145
+ /**
1146
+ * Delete a bookmark in the project
1147
+ * @summary Delete bookmark
1148
+ * @param {string} project Projects unique identifier
1149
+ * @param {string} id The unique id of the bookmark
1150
+ * @param {*} [options] Override http request option.
1151
+ * @throws {RequiredError}
1152
+ */
1153
+ deleteBookmark: async (project: string, id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1154
+ // verify required parameter 'project' is not null or undefined
1155
+ assertParamExists('deleteBookmark', 'project', project)
1156
+ // verify required parameter 'id' is not null or undefined
1157
+ assertParamExists('deleteBookmark', 'id', id)
1158
+ const localVarPath = `/v1/projects/{project}/bookmarks/{id}`
1159
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1160
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1161
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1162
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1163
+ let baseOptions;
1164
+ if (configuration) {
1165
+ baseOptions = configuration.baseOptions;
1166
+ }
1167
+
1168
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
1169
+ const localVarHeaderParameter = {} as any;
1170
+ const localVarQueryParameter = {} as any;
1171
+
1172
+ // authentication session-oauth required
1173
+ // oauth required
1174
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1175
+
1176
+ // authentication api-key required
1177
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1178
+
1179
+
1180
+
956
1181
  setSearchParams(localVarUrlObj, localVarQueryParameter);
957
1182
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
958
1183
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1648,6 +1873,47 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
1648
1873
  options: localVarRequestOptions,
1649
1874
  };
1650
1875
  },
1876
+ /**
1877
+ * List the bookmarks in the project
1878
+ * @summary List bookmarks
1879
+ * @param {string} project Projects unique identifier
1880
+ * @param {*} [options] Override http request option.
1881
+ * @throws {RequiredError}
1882
+ */
1883
+ listBookmarks: async (project: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
1884
+ // verify required parameter 'project' is not null or undefined
1885
+ assertParamExists('listBookmarks', 'project', project)
1886
+ const localVarPath = `/v1/projects/{project}/bookmarks`
1887
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
1888
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1889
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1890
+ let baseOptions;
1891
+ if (configuration) {
1892
+ baseOptions = configuration.baseOptions;
1893
+ }
1894
+
1895
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1896
+ const localVarHeaderParameter = {} as any;
1897
+ const localVarQueryParameter = {} as any;
1898
+
1899
+ // authentication session-oauth required
1900
+ // oauth required
1901
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
1902
+
1903
+ // authentication api-key required
1904
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
1905
+
1906
+
1907
+
1908
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1909
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1910
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1911
+
1912
+ return {
1913
+ url: toPathString(localVarUrlObj),
1914
+ options: localVarRequestOptions,
1915
+ };
1916
+ },
1651
1917
  /**
1652
1918
  * List the tasks in the workflow
1653
1919
  * @summary List Tasks
@@ -1785,6 +2051,57 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
1785
2051
  options: localVarRequestOptions,
1786
2052
  };
1787
2053
  },
2054
+ /**
2055
+ * Update a bookmark in the project
2056
+ * @summary Update bookmark
2057
+ * @param {string} project Projects unique identifier
2058
+ * @param {string} id The unique id of the bookmark
2059
+ * @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
2060
+ * @param {*} [options] Override http request option.
2061
+ * @throws {RequiredError}
2062
+ */
2063
+ updateBookmark: async (project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
2064
+ // verify required parameter 'project' is not null or undefined
2065
+ assertParamExists('updateBookmark', 'project', project)
2066
+ // verify required parameter 'id' is not null or undefined
2067
+ assertParamExists('updateBookmark', 'id', id)
2068
+ // verify required parameter 'updateBookmarkRequest' is not null or undefined
2069
+ assertParamExists('updateBookmark', 'updateBookmarkRequest', updateBookmarkRequest)
2070
+ const localVarPath = `/v1/projects/{project}/bookmarks/{id}`
2071
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
2072
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
2073
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2074
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2075
+ let baseOptions;
2076
+ if (configuration) {
2077
+ baseOptions = configuration.baseOptions;
2078
+ }
2079
+
2080
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
2081
+ const localVarHeaderParameter = {} as any;
2082
+ const localVarQueryParameter = {} as any;
2083
+
2084
+ // authentication session-oauth required
2085
+ // oauth required
2086
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
2087
+
2088
+ // authentication api-key required
2089
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
2090
+
2091
+
2092
+
2093
+ localVarHeaderParameter['Content-Type'] = 'application/json';
2094
+
2095
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2096
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2097
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2098
+ localVarRequestOptions.data = serializeDataIfNeeded(updateBookmarkRequest, localVarRequestOptions, configuration)
2099
+
2100
+ return {
2101
+ url: toPathString(localVarUrlObj),
2102
+ options: localVarRequestOptions,
2103
+ };
2104
+ },
1788
2105
  /**
1789
2106
  * Update an integration on the project
1790
2107
  * @summary Update integration
@@ -1955,6 +2272,20 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
1955
2272
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.createAuth']?.[localVarOperationServerIndex]?.url;
1956
2273
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1957
2274
  },
2275
+ /**
2276
+ * Create a bookmark in the project
2277
+ * @summary Create bookmark
2278
+ * @param {string} project Projects unique identifier
2279
+ * @param {CreateBookmarkRequest} createBookmarkRequest Create a new bookmark in the project
2280
+ * @param {*} [options] Override http request option.
2281
+ * @throws {RequiredError}
2282
+ */
2283
+ async createBookmark(project: string, createBookmarkRequest: CreateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>> {
2284
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createBookmark(project, createBookmarkRequest, options);
2285
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2286
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.createBookmark']?.[localVarOperationServerIndex]?.url;
2287
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2288
+ },
1958
2289
  /**
1959
2290
  * Creates an invite for the project
1960
2291
  * @summary Creates an invite
@@ -2010,6 +2341,20 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
2010
2341
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.deleteAuth']?.[localVarOperationServerIndex]?.url;
2011
2342
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2012
2343
  },
2344
+ /**
2345
+ * Delete a bookmark in the project
2346
+ * @summary Delete bookmark
2347
+ * @param {string} project Projects unique identifier
2348
+ * @param {string} id The unique id of the bookmark
2349
+ * @param {*} [options] Override http request option.
2350
+ * @throws {RequiredError}
2351
+ */
2352
+ async deleteBookmark(project: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
2353
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteBookmark(project, id, options);
2354
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2355
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.deleteBookmark']?.[localVarOperationServerIndex]?.url;
2356
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2357
+ },
2013
2358
  /**
2014
2359
  * Deletes an invite to the project
2015
2360
  * @summary Deletes an invite
@@ -2220,6 +2565,19 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
2220
2565
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.installTemplate']?.[localVarOperationServerIndex]?.url;
2221
2566
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2222
2567
  },
2568
+ /**
2569
+ * List the bookmarks in the project
2570
+ * @summary List bookmarks
2571
+ * @param {string} project Projects unique identifier
2572
+ * @param {*} [options] Override http request option.
2573
+ * @throws {RequiredError}
2574
+ */
2575
+ async listBookmarks(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmarks>> {
2576
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listBookmarks(project, options);
2577
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2578
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.listBookmarks']?.[localVarOperationServerIndex]?.url;
2579
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2580
+ },
2223
2581
  /**
2224
2582
  * List the tasks in the workflow
2225
2583
  * @summary List Tasks
@@ -2262,6 +2620,21 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
2262
2620
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.uninstallIntegration']?.[localVarOperationServerIndex]?.url;
2263
2621
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2264
2622
  },
2623
+ /**
2624
+ * Update a bookmark in the project
2625
+ * @summary Update bookmark
2626
+ * @param {string} project Projects unique identifier
2627
+ * @param {string} id The unique id of the bookmark
2628
+ * @param {UpdateBookmarkRequest} updateBookmarkRequest Update a bookmark in the project
2629
+ * @param {*} [options] Override http request option.
2630
+ * @throws {RequiredError}
2631
+ */
2632
+ async updateBookmark(project: string, id: string, updateBookmarkRequest: UpdateBookmarkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bookmark>> {
2633
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateBookmark(project, id, updateBookmarkRequest, options);
2634
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2635
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.updateBookmark']?.[localVarOperationServerIndex]?.url;
2636
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2637
+ },
2265
2638
  /**
2266
2639
  * Update an integration on the project
2267
2640
  * @summary Update integration
@@ -2326,6 +2699,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
2326
2699
  createAuth(requestParameters: ProjectsApiCreateAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<Auth> {
2327
2700
  return localVarFp.createAuth(requestParameters.project, options).then((request) => request(axios, basePath));
2328
2701
  },
2702
+ /**
2703
+ * Create a bookmark in the project
2704
+ * @summary Create bookmark
2705
+ * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
2706
+ * @param {*} [options] Override http request option.
2707
+ * @throws {RequiredError}
2708
+ */
2709
+ createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark> {
2710
+ return localVarFp.createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(axios, basePath));
2711
+ },
2329
2712
  /**
2330
2713
  * Creates an invite for the project
2331
2714
  * @summary Creates an invite
@@ -2366,6 +2749,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
2366
2749
  deleteAuth(requestParameters: ProjectsApiDeleteAuthRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
2367
2750
  return localVarFp.deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(axios, basePath));
2368
2751
  },
2752
+ /**
2753
+ * Delete a bookmark in the project
2754
+ * @summary Delete bookmark
2755
+ * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
2756
+ * @param {*} [options] Override http request option.
2757
+ * @throws {RequiredError}
2758
+ */
2759
+ deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
2760
+ return localVarFp.deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(axios, basePath));
2761
+ },
2369
2762
  /**
2370
2763
  * Deletes an invite to the project
2371
2764
  * @summary Deletes an invite
@@ -2516,6 +2909,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
2516
2909
  installTemplate(requestParameters: ProjectsApiInstallTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationsResponse> {
2517
2910
  return localVarFp.installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(axios, basePath));
2518
2911
  },
2912
+ /**
2913
+ * List the bookmarks in the project
2914
+ * @summary List bookmarks
2915
+ * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
2916
+ * @param {*} [options] Override http request option.
2917
+ * @throws {RequiredError}
2918
+ */
2919
+ listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmarks> {
2920
+ return localVarFp.listBookmarks(requestParameters.project, options).then((request) => request(axios, basePath));
2921
+ },
2519
2922
  /**
2520
2923
  * List the tasks in the workflow
2521
2924
  * @summary List Tasks
@@ -2546,6 +2949,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
2546
2949
  uninstallIntegration(requestParameters: ProjectsApiUninstallIntegrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
2547
2950
  return localVarFp.uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(axios, basePath));
2548
2951
  },
2952
+ /**
2953
+ * Update a bookmark in the project
2954
+ * @summary Update bookmark
2955
+ * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
2956
+ * @param {*} [options] Override http request option.
2957
+ * @throws {RequiredError}
2958
+ */
2959
+ updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<Bookmark> {
2960
+ return localVarFp.updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(axios, basePath));
2961
+ },
2549
2962
  /**
2550
2963
  * Update an integration on the project
2551
2964
  * @summary Update integration
@@ -2593,6 +3006,27 @@ export interface ProjectsApiCreateAuthRequest {
2593
3006
  readonly project: string
2594
3007
  }
2595
3008
 
3009
+ /**
3010
+ * Request parameters for createBookmark operation in ProjectsApi.
3011
+ * @export
3012
+ * @interface ProjectsApiCreateBookmarkRequest
3013
+ */
3014
+ export interface ProjectsApiCreateBookmarkRequest {
3015
+ /**
3016
+ * Projects unique identifier
3017
+ * @type {string}
3018
+ * @memberof ProjectsApiCreateBookmark
3019
+ */
3020
+ readonly project: string
3021
+
3022
+ /**
3023
+ * Create a new bookmark in the project
3024
+ * @type {CreateBookmarkRequest}
3025
+ * @memberof ProjectsApiCreateBookmark
3026
+ */
3027
+ readonly createBookmarkRequest: CreateBookmarkRequest
3028
+ }
3029
+
2596
3030
  /**
2597
3031
  * Request parameters for createInvite operation in ProjectsApi.
2598
3032
  * @export
@@ -2670,6 +3104,27 @@ export interface ProjectsApiDeleteAuthRequest {
2670
3104
  readonly auth: string
2671
3105
  }
2672
3106
 
3107
+ /**
3108
+ * Request parameters for deleteBookmark operation in ProjectsApi.
3109
+ * @export
3110
+ * @interface ProjectsApiDeleteBookmarkRequest
3111
+ */
3112
+ export interface ProjectsApiDeleteBookmarkRequest {
3113
+ /**
3114
+ * Projects unique identifier
3115
+ * @type {string}
3116
+ * @memberof ProjectsApiDeleteBookmark
3117
+ */
3118
+ readonly project: string
3119
+
3120
+ /**
3121
+ * The unique id of the bookmark
3122
+ * @type {string}
3123
+ * @memberof ProjectsApiDeleteBookmark
3124
+ */
3125
+ readonly id: string
3126
+ }
3127
+
2673
3128
  /**
2674
3129
  * Request parameters for deleteInvite operation in ProjectsApi.
2675
3130
  * @export
@@ -2985,6 +3440,20 @@ export interface ProjectsApiInstallTemplateRequest {
2985
3440
  readonly installTemplateRequest: InstallTemplateRequest
2986
3441
  }
2987
3442
 
3443
+ /**
3444
+ * Request parameters for listBookmarks operation in ProjectsApi.
3445
+ * @export
3446
+ * @interface ProjectsApiListBookmarksRequest
3447
+ */
3448
+ export interface ProjectsApiListBookmarksRequest {
3449
+ /**
3450
+ * Projects unique identifier
3451
+ * @type {string}
3452
+ * @memberof ProjectsApiListBookmarks
3453
+ */
3454
+ readonly project: string
3455
+ }
3456
+
2988
3457
  /**
2989
3458
  * Request parameters for listTasks operation in ProjectsApi.
2990
3459
  * @export
@@ -3048,6 +3517,34 @@ export interface ProjectsApiUninstallIntegrationRequest {
3048
3517
  readonly integration: string
3049
3518
  }
3050
3519
 
3520
+ /**
3521
+ * Request parameters for updateBookmark operation in ProjectsApi.
3522
+ * @export
3523
+ * @interface ProjectsApiUpdateBookmarkRequest
3524
+ */
3525
+ export interface ProjectsApiUpdateBookmarkRequest {
3526
+ /**
3527
+ * Projects unique identifier
3528
+ * @type {string}
3529
+ * @memberof ProjectsApiUpdateBookmark
3530
+ */
3531
+ readonly project: string
3532
+
3533
+ /**
3534
+ * The unique id of the bookmark
3535
+ * @type {string}
3536
+ * @memberof ProjectsApiUpdateBookmark
3537
+ */
3538
+ readonly id: string
3539
+
3540
+ /**
3541
+ * Update a bookmark in the project
3542
+ * @type {UpdateBookmarkRequest}
3543
+ * @memberof ProjectsApiUpdateBookmark
3544
+ */
3545
+ readonly updateBookmarkRequest: UpdateBookmarkRequest
3546
+ }
3547
+
3051
3548
  /**
3052
3549
  * Request parameters for updateIntegration operation in ProjectsApi.
3053
3550
  * @export
@@ -3144,6 +3641,18 @@ export class ProjectsApi extends BaseAPI {
3144
3641
  return ProjectsApiFp(this.configuration).createAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
3145
3642
  }
3146
3643
 
3644
+ /**
3645
+ * Create a bookmark in the project
3646
+ * @summary Create bookmark
3647
+ * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
3648
+ * @param {*} [options] Override http request option.
3649
+ * @throws {RequiredError}
3650
+ * @memberof ProjectsApi
3651
+ */
3652
+ public createBookmark(requestParameters: ProjectsApiCreateBookmarkRequest, options?: RawAxiosRequestConfig) {
3653
+ return ProjectsApiFp(this.configuration).createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
3654
+ }
3655
+
3147
3656
  /**
3148
3657
  * Creates an invite for the project
3149
3658
  * @summary Creates an invite
@@ -3192,6 +3701,18 @@ export class ProjectsApi extends BaseAPI {
3192
3701
  return ProjectsApiFp(this.configuration).deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(this.axios, this.basePath));
3193
3702
  }
3194
3703
 
3704
+ /**
3705
+ * Delete a bookmark in the project
3706
+ * @summary Delete bookmark
3707
+ * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
3708
+ * @param {*} [options] Override http request option.
3709
+ * @throws {RequiredError}
3710
+ * @memberof ProjectsApi
3711
+ */
3712
+ public deleteBookmark(requestParameters: ProjectsApiDeleteBookmarkRequest, options?: RawAxiosRequestConfig) {
3713
+ return ProjectsApiFp(this.configuration).deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
3714
+ }
3715
+
3195
3716
  /**
3196
3717
  * Deletes an invite to the project
3197
3718
  * @summary Deletes an invite
@@ -3372,6 +3893,18 @@ export class ProjectsApi extends BaseAPI {
3372
3893
  return ProjectsApiFp(this.configuration).installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(this.axios, this.basePath));
3373
3894
  }
3374
3895
 
3896
+ /**
3897
+ * List the bookmarks in the project
3898
+ * @summary List bookmarks
3899
+ * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
3900
+ * @param {*} [options] Override http request option.
3901
+ * @throws {RequiredError}
3902
+ * @memberof ProjectsApi
3903
+ */
3904
+ public listBookmarks(requestParameters: ProjectsApiListBookmarksRequest, options?: RawAxiosRequestConfig) {
3905
+ return ProjectsApiFp(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
3906
+ }
3907
+
3375
3908
  /**
3376
3909
  * List the tasks in the workflow
3377
3910
  * @summary List Tasks
@@ -3408,6 +3941,18 @@ export class ProjectsApi extends BaseAPI {
3408
3941
  return ProjectsApiFp(this.configuration).uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
3409
3942
  }
3410
3943
 
3944
+ /**
3945
+ * Update a bookmark in the project
3946
+ * @summary Update bookmark
3947
+ * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
3948
+ * @param {*} [options] Override http request option.
3949
+ * @throws {RequiredError}
3950
+ * @memberof ProjectsApi
3951
+ */
3952
+ public updateBookmark(requestParameters: ProjectsApiUpdateBookmarkRequest, options?: RawAxiosRequestConfig) {
3953
+ return ProjectsApiFp(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
3954
+ }
3955
+
3411
3956
  /**
3412
3957
  * Update an integration on the project
3413
3958
  * @summary Update integration