@teemill/projects 1.41.0 → 1.43.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/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.41.0
8
+ * The version of the OpenAPI document: 1.43.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -74,6 +74,45 @@ exports.TemplateCode = {
74
74
  */
75
75
  const ProjectsApiAxiosParamCreator = function (configuration) {
76
76
  return {
77
+ /**
78
+ * Update multiple tasks in the workflow at once
79
+ * @summary Bulk update tasks
80
+ * @param {string} project Projects unique identifier
81
+ * @param {BulkUpdateTasksRequest} bulkUpdateTasksRequest Update multiple tasks in the workflow
82
+ * @param {*} [options] Override http request option.
83
+ * @throws {RequiredError}
84
+ */
85
+ bulkUpdateTasks: (project_1, bulkUpdateTasksRequest_1, ...args_1) => __awaiter(this, [project_1, bulkUpdateTasksRequest_1, ...args_1], void 0, function* (project, bulkUpdateTasksRequest, options = {}) {
86
+ // verify required parameter 'project' is not null or undefined
87
+ (0, common_1.assertParamExists)('bulkUpdateTasks', 'project', project);
88
+ // verify required parameter 'bulkUpdateTasksRequest' is not null or undefined
89
+ (0, common_1.assertParamExists)('bulkUpdateTasks', 'bulkUpdateTasksRequest', bulkUpdateTasksRequest);
90
+ const localVarPath = `/v1/projects/{project}/tasks`
91
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
92
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
93
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
94
+ let baseOptions;
95
+ if (configuration) {
96
+ baseOptions = configuration.baseOptions;
97
+ }
98
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
99
+ const localVarHeaderParameter = {};
100
+ const localVarQueryParameter = {};
101
+ // authentication session-oauth required
102
+ // oauth required
103
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
104
+ // authentication api-key required
105
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
106
+ localVarHeaderParameter['Content-Type'] = 'application/json';
107
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
108
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
109
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
110
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(bulkUpdateTasksRequest, localVarRequestOptions, configuration);
111
+ return {
112
+ url: (0, common_1.toPathString)(localVarUrlObj),
113
+ options: localVarRequestOptions,
114
+ };
115
+ }),
77
116
  /**
78
117
  * Create an auth token for the project
79
118
  * @summary Create auth token
@@ -706,6 +745,40 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
706
745
  options: localVarRequestOptions,
707
746
  };
708
747
  }),
748
+ /**
749
+ * Get the AI-generated OKR summary for the project
750
+ * @summary Get OKR summary
751
+ * @param {string} project Projects unique identifier
752
+ * @param {*} [options] Override http request option.
753
+ * @throws {RequiredError}
754
+ */
755
+ getOkrSummary: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
756
+ // verify required parameter 'project' is not null or undefined
757
+ (0, common_1.assertParamExists)('getOkrSummary', 'project', project);
758
+ const localVarPath = `/v1/projects/{project}/okrs/summary`
759
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)));
760
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
761
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
762
+ let baseOptions;
763
+ if (configuration) {
764
+ baseOptions = configuration.baseOptions;
765
+ }
766
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
767
+ const localVarHeaderParameter = {};
768
+ const localVarQueryParameter = {};
769
+ // authentication session-oauth required
770
+ // oauth required
771
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
772
+ // authentication api-key required
773
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
774
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
775
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
776
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
777
+ return {
778
+ url: (0, common_1.toPathString)(localVarUrlObj),
779
+ options: localVarRequestOptions,
780
+ };
781
+ }),
709
782
  /**
710
783
  * Get a project
711
784
  * @summary Get project
@@ -1409,6 +1482,23 @@ exports.ProjectsApiAxiosParamCreator = ProjectsApiAxiosParamCreator;
1409
1482
  const ProjectsApiFp = function (configuration) {
1410
1483
  const localVarAxiosParamCreator = (0, exports.ProjectsApiAxiosParamCreator)(configuration);
1411
1484
  return {
1485
+ /**
1486
+ * Update multiple tasks in the workflow at once
1487
+ * @summary Bulk update tasks
1488
+ * @param {string} project Projects unique identifier
1489
+ * @param {BulkUpdateTasksRequest} bulkUpdateTasksRequest Update multiple tasks in the workflow
1490
+ * @param {*} [options] Override http request option.
1491
+ * @throws {RequiredError}
1492
+ */
1493
+ bulkUpdateTasks(project, bulkUpdateTasksRequest, options) {
1494
+ return __awaiter(this, void 0, void 0, function* () {
1495
+ var _a, _b, _c;
1496
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.bulkUpdateTasks(project, bulkUpdateTasksRequest, options);
1497
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1498
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.bulkUpdateTasks']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1499
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1500
+ });
1501
+ },
1412
1502
  /**
1413
1503
  * Create an auth token for the project
1414
1504
  * @summary Create auth token
@@ -1694,6 +1784,22 @@ const ProjectsApiFp = function (configuration) {
1694
1784
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1695
1785
  });
1696
1786
  },
1787
+ /**
1788
+ * Get the AI-generated OKR summary for the project
1789
+ * @summary Get OKR summary
1790
+ * @param {string} project Projects unique identifier
1791
+ * @param {*} [options] Override http request option.
1792
+ * @throws {RequiredError}
1793
+ */
1794
+ getOkrSummary(project, options) {
1795
+ return __awaiter(this, void 0, void 0, function* () {
1796
+ var _a, _b, _c;
1797
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getOkrSummary(project, options);
1798
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1799
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.getOkrSummary']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1800
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1801
+ });
1802
+ },
1697
1803
  /**
1698
1804
  * Get a project
1699
1805
  * @summary Get project
@@ -2011,6 +2117,16 @@ exports.ProjectsApiFp = ProjectsApiFp;
2011
2117
  const ProjectsApiFactory = function (configuration, basePath, axios) {
2012
2118
  const localVarFp = (0, exports.ProjectsApiFp)(configuration);
2013
2119
  return {
2120
+ /**
2121
+ * Update multiple tasks in the workflow at once
2122
+ * @summary Bulk update tasks
2123
+ * @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
2124
+ * @param {*} [options] Override http request option.
2125
+ * @throws {RequiredError}
2126
+ */
2127
+ bulkUpdateTasks(requestParameters, options) {
2128
+ return localVarFp.bulkUpdateTasks(requestParameters.project, requestParameters.bulkUpdateTasksRequest, options).then((request) => request(axios, basePath));
2129
+ },
2014
2130
  /**
2015
2131
  * Create an auth token for the project
2016
2132
  * @summary Create auth token
@@ -2181,6 +2297,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
2181
2297
  getInvites(requestParameters, options) {
2182
2298
  return localVarFp.getInvites(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
2183
2299
  },
2300
+ /**
2301
+ * Get the AI-generated OKR summary for the project
2302
+ * @summary Get OKR summary
2303
+ * @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
2304
+ * @param {*} [options] Override http request option.
2305
+ * @throws {RequiredError}
2306
+ */
2307
+ getOkrSummary(requestParameters, options) {
2308
+ return localVarFp.getOkrSummary(requestParameters.project, options).then((request) => request(axios, basePath));
2309
+ },
2184
2310
  /**
2185
2311
  * Get a project
2186
2312
  * @summary Get project
@@ -2371,6 +2497,17 @@ exports.ProjectsApiFactory = ProjectsApiFactory;
2371
2497
  * @extends {BaseAPI}
2372
2498
  */
2373
2499
  class ProjectsApi extends base_1.BaseAPI {
2500
+ /**
2501
+ * Update multiple tasks in the workflow at once
2502
+ * @summary Bulk update tasks
2503
+ * @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
2504
+ * @param {*} [options] Override http request option.
2505
+ * @throws {RequiredError}
2506
+ * @memberof ProjectsApi
2507
+ */
2508
+ bulkUpdateTasks(requestParameters, options) {
2509
+ return (0, exports.ProjectsApiFp)(this.configuration).bulkUpdateTasks(requestParameters.project, requestParameters.bulkUpdateTasksRequest, options).then((request) => request(this.axios, this.basePath));
2510
+ }
2374
2511
  /**
2375
2512
  * Create an auth token for the project
2376
2513
  * @summary Create auth token
@@ -2558,6 +2695,17 @@ class ProjectsApi extends base_1.BaseAPI {
2558
2695
  getInvites(requestParameters, options) {
2559
2696
  return (0, exports.ProjectsApiFp)(this.configuration).getInvites(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
2560
2697
  }
2698
+ /**
2699
+ * Get the AI-generated OKR summary for the project
2700
+ * @summary Get OKR summary
2701
+ * @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
2702
+ * @param {*} [options] Override http request option.
2703
+ * @throws {RequiredError}
2704
+ * @memberof ProjectsApi
2705
+ */
2706
+ getOkrSummary(requestParameters, options) {
2707
+ return (0, exports.ProjectsApiFp)(this.configuration).getOkrSummary(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2708
+ }
2561
2709
  /**
2562
2710
  * Get a project
2563
2711
  * @summary Get project
package/dist/base.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.41.0
5
+ * The version of the OpenAPI document: 1.43.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.41.0
8
+ * The version of the OpenAPI document: 1.43.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.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.41.0
5
+ * The version of the OpenAPI document: 1.43.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.41.0
8
+ * The version of the OpenAPI document: 1.43.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.41.0
5
+ * The version of the OpenAPI document: 1.43.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.41.0
8
+ * The version of the OpenAPI document: 1.43.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.41.0
5
+ * The version of the OpenAPI document: 1.43.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -242,6 +242,38 @@ export interface Bookmarks {
242
242
  */
243
243
  'bookmarks': Array<Bookmark>;
244
244
  }
245
+ /**
246
+ *
247
+ * @export
248
+ * @interface BulkUpdateTasksRequest
249
+ */
250
+ export interface BulkUpdateTasksRequest {
251
+ /**
252
+ *
253
+ * @type {Array<BulkUpdateTasksRequestTasksInner>}
254
+ * @memberof BulkUpdateTasksRequest
255
+ */
256
+ 'tasks': Array<BulkUpdateTasksRequestTasksInner>;
257
+ }
258
+ /**
259
+ *
260
+ * @export
261
+ * @interface BulkUpdateTasksRequestTasksInner
262
+ */
263
+ export interface BulkUpdateTasksRequestTasksInner {
264
+ /**
265
+ *
266
+ * @type {string}
267
+ * @memberof BulkUpdateTasksRequestTasksInner
268
+ */
269
+ 'id': string;
270
+ /**
271
+ *
272
+ * @type {TaskStatus}
273
+ * @memberof BulkUpdateTasksRequestTasksInner
274
+ */
275
+ 'status': TaskStatus;
276
+ }
245
277
  /**
246
278
  *
247
279
  * @export
@@ -517,6 +549,31 @@ export declare const OkrLevel: {
517
549
  readonly Task: "task";
518
550
  };
519
551
  export type OkrLevel = typeof OkrLevel[keyof typeof OkrLevel];
552
+ /**
553
+ *
554
+ * @export
555
+ * @interface OkrSummary
556
+ */
557
+ export interface OkrSummary {
558
+ /**
559
+ *
560
+ * @type {string}
561
+ * @memberof OkrSummary
562
+ */
563
+ 'id': string;
564
+ /**
565
+ *
566
+ * @type {string}
567
+ * @memberof OkrSummary
568
+ */
569
+ 'content': string;
570
+ /**
571
+ *
572
+ * @type {string}
573
+ * @memberof OkrSummary
574
+ */
575
+ 'createdAt': string;
576
+ }
520
577
  /**
521
578
  *
522
579
  * @export
@@ -1280,6 +1337,15 @@ export interface UpdateTaskRequest {
1280
1337
  * @export
1281
1338
  */
1282
1339
  export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration) => {
1340
+ /**
1341
+ * Update multiple tasks in the workflow at once
1342
+ * @summary Bulk update tasks
1343
+ * @param {string} project Projects unique identifier
1344
+ * @param {BulkUpdateTasksRequest} bulkUpdateTasksRequest Update multiple tasks in the workflow
1345
+ * @param {*} [options] Override http request option.
1346
+ * @throws {RequiredError}
1347
+ */
1348
+ bulkUpdateTasks: (project: string, bulkUpdateTasksRequest: BulkUpdateTasksRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1283
1349
  /**
1284
1350
  * Create an auth token for the project
1285
1351
  * @summary Create auth token
@@ -1429,6 +1495,14 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1429
1495
  * @throws {RequiredError}
1430
1496
  */
1431
1497
  getInvites: (project: string, search?: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1498
+ /**
1499
+ * Get the AI-generated OKR summary for the project
1500
+ * @summary Get OKR summary
1501
+ * @param {string} project Projects unique identifier
1502
+ * @param {*} [options] Override http request option.
1503
+ * @throws {RequiredError}
1504
+ */
1505
+ getOkrSummary: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1432
1506
  /**
1433
1507
  * Get a project
1434
1508
  * @summary Get project
@@ -1598,6 +1672,15 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1598
1672
  * @export
1599
1673
  */
1600
1674
  export declare const ProjectsApiFp: (configuration?: Configuration) => {
1675
+ /**
1676
+ * Update multiple tasks in the workflow at once
1677
+ * @summary Bulk update tasks
1678
+ * @param {string} project Projects unique identifier
1679
+ * @param {BulkUpdateTasksRequest} bulkUpdateTasksRequest Update multiple tasks in the workflow
1680
+ * @param {*} [options] Override http request option.
1681
+ * @throws {RequiredError}
1682
+ */
1683
+ bulkUpdateTasks(project: string, bulkUpdateTasksRequest: BulkUpdateTasksRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTasksResponse>>;
1601
1684
  /**
1602
1685
  * Create an auth token for the project
1603
1686
  * @summary Create auth token
@@ -1747,6 +1830,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1747
1830
  * @throws {RequiredError}
1748
1831
  */
1749
1832
  getInvites(project: string, search?: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectInvites>>;
1833
+ /**
1834
+ * Get the AI-generated OKR summary for the project
1835
+ * @summary Get OKR summary
1836
+ * @param {string} project Projects unique identifier
1837
+ * @param {*} [options] Override http request option.
1838
+ * @throws {RequiredError}
1839
+ */
1840
+ getOkrSummary(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OkrSummary>>;
1750
1841
  /**
1751
1842
  * Get a project
1752
1843
  * @summary Get project
@@ -1916,6 +2007,14 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
1916
2007
  * @export
1917
2008
  */
1918
2009
  export declare const ProjectsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2010
+ /**
2011
+ * Update multiple tasks in the workflow at once
2012
+ * @summary Bulk update tasks
2013
+ * @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
2014
+ * @param {*} [options] Override http request option.
2015
+ * @throws {RequiredError}
2016
+ */
2017
+ bulkUpdateTasks(requestParameters: ProjectsApiBulkUpdateTasksRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListTasksResponse>;
1919
2018
  /**
1920
2019
  * Create an auth token for the project
1921
2020
  * @summary Create auth token
@@ -2052,6 +2151,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
2052
2151
  * @throws {RequiredError}
2053
2152
  */
2054
2153
  getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectInvites>;
2154
+ /**
2155
+ * Get the AI-generated OKR summary for the project
2156
+ * @summary Get OKR summary
2157
+ * @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
2158
+ * @param {*} [options] Override http request option.
2159
+ * @throws {RequiredError}
2160
+ */
2161
+ getOkrSummary(requestParameters: ProjectsApiGetOkrSummaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<OkrSummary>;
2055
2162
  /**
2056
2163
  * Get a project
2057
2164
  * @summary Get project
@@ -2197,6 +2304,25 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
2197
2304
  */
2198
2305
  updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
2199
2306
  };
2307
+ /**
2308
+ * Request parameters for bulkUpdateTasks operation in ProjectsApi.
2309
+ * @export
2310
+ * @interface ProjectsApiBulkUpdateTasksRequest
2311
+ */
2312
+ export interface ProjectsApiBulkUpdateTasksRequest {
2313
+ /**
2314
+ * Projects unique identifier
2315
+ * @type {string}
2316
+ * @memberof ProjectsApiBulkUpdateTasks
2317
+ */
2318
+ readonly project: string;
2319
+ /**
2320
+ * Update multiple tasks in the workflow
2321
+ * @type {BulkUpdateTasksRequest}
2322
+ * @memberof ProjectsApiBulkUpdateTasks
2323
+ */
2324
+ readonly bulkUpdateTasksRequest: BulkUpdateTasksRequest;
2325
+ }
2200
2326
  /**
2201
2327
  * Request parameters for createAuth operation in ProjectsApi.
2202
2328
  * @export
@@ -2496,6 +2622,19 @@ export interface ProjectsApiGetInvitesRequest {
2496
2622
  */
2497
2623
  readonly pageSize?: number;
2498
2624
  }
2625
+ /**
2626
+ * Request parameters for getOkrSummary operation in ProjectsApi.
2627
+ * @export
2628
+ * @interface ProjectsApiGetOkrSummaryRequest
2629
+ */
2630
+ export interface ProjectsApiGetOkrSummaryRequest {
2631
+ /**
2632
+ * Projects unique identifier
2633
+ * @type {string}
2634
+ * @memberof ProjectsApiGetOkrSummary
2635
+ */
2636
+ readonly project: string;
2637
+ }
2499
2638
  /**
2500
2639
  * Request parameters for getProject operation in ProjectsApi.
2501
2640
  * @export
@@ -2851,6 +2990,15 @@ export interface ProjectsApiUpdateTaskRequest {
2851
2990
  * @extends {BaseAPI}
2852
2991
  */
2853
2992
  export declare class ProjectsApi extends BaseAPI {
2993
+ /**
2994
+ * Update multiple tasks in the workflow at once
2995
+ * @summary Bulk update tasks
2996
+ * @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
2997
+ * @param {*} [options] Override http request option.
2998
+ * @throws {RequiredError}
2999
+ * @memberof ProjectsApi
3000
+ */
3001
+ bulkUpdateTasks(requestParameters: ProjectsApiBulkUpdateTasksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTasksResponse, any>>;
2854
3002
  /**
2855
3003
  * Create an auth token for the project
2856
3004
  * @summary Create auth token
@@ -3004,6 +3152,15 @@ export declare class ProjectsApi extends BaseAPI {
3004
3152
  * @memberof ProjectsApi
3005
3153
  */
3006
3154
  getInvites(requestParameters: ProjectsApiGetInvitesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectInvites, any>>;
3155
+ /**
3156
+ * Get the AI-generated OKR summary for the project
3157
+ * @summary Get OKR summary
3158
+ * @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
3159
+ * @param {*} [options] Override http request option.
3160
+ * @throws {RequiredError}
3161
+ * @memberof ProjectsApi
3162
+ */
3163
+ getOkrSummary(requestParameters: ProjectsApiGetOkrSummaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OkrSummary, any>>;
3007
3164
  /**
3008
3165
  * Get a project
3009
3166
  * @summary Get project