@teemill/projects 1.47.0 → 1.48.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/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.47.0
7
+ * The version of the OpenAPI document: 1.48.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,8 +28,6 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setOAuthToObject,
28
28
  import { BASE_PATH, BaseAPI, operationServerMap } from './base';
29
29
  /**
30
30
  * Indicates whether the task is an OKR associated with the user
31
- * @export
32
- * @enum {string}
33
31
  */
34
32
  export const OkrLevel = {
35
33
  Objective: 'objective',
@@ -44,11 +42,6 @@ export const ProjectUserTypeEnum = {
44
42
  export const SetupMethodTypeEnum = {
45
43
  Authenticator: 'authenticator'
46
44
  };
47
- /**
48
- *
49
- * @export
50
- * @enum {string}
51
- */
52
45
  export const TaskStatus = {
53
46
  Nice: 'nice',
54
47
  Need: 'need',
@@ -56,11 +49,6 @@ export const TaskStatus = {
56
49
  Done: 'done',
57
50
  Archived: 'archived'
58
51
  };
59
- /**
60
- *
61
- * @export
62
- * @enum {string}
63
- */
64
52
  export const TemplateCode = {
65
53
  Shop: 'shop',
66
54
  ShopHeadless: 'shop-headless',
@@ -71,7 +59,6 @@ export const TemplateCode = {
71
59
  };
72
60
  /**
73
61
  * ProjectsApi - axios parameter creator
74
- * @export
75
62
  */
76
63
  export const ProjectsApiAxiosParamCreator = function (configuration) {
77
64
  return {
@@ -658,6 +645,44 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
658
645
  options: localVarRequestOptions,
659
646
  };
660
647
  }),
648
+ /**
649
+ * List the clients of the project that the user has access to
650
+ * @summary List clients
651
+ * @param {string} project Projects unique identifier
652
+ * @param {string} user the unique id of the user
653
+ * @param {*} [options] Override http request option.
654
+ * @throws {RequiredError}
655
+ */
656
+ getClients: (project_1, user_1, ...args_1) => __awaiter(this, [project_1, user_1, ...args_1], void 0, function* (project, user, options = {}) {
657
+ // verify required parameter 'project' is not null or undefined
658
+ assertParamExists('getClients', 'project', project);
659
+ // verify required parameter 'user' is not null or undefined
660
+ assertParamExists('getClients', 'user', user);
661
+ const localVarPath = `/v1/projects/{project}/users/{user}/clients`
662
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
663
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
664
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
665
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
666
+ let baseOptions;
667
+ if (configuration) {
668
+ baseOptions = configuration.baseOptions;
669
+ }
670
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
671
+ const localVarHeaderParameter = {};
672
+ const localVarQueryParameter = {};
673
+ // authentication session-oauth required
674
+ // oauth required
675
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
676
+ // authentication api-key required
677
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
678
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
679
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
680
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
681
+ return {
682
+ url: toPathString(localVarUrlObj),
683
+ options: localVarRequestOptions,
684
+ };
685
+ }),
661
686
  /**
662
687
  * Get an integration
663
688
  * @summary Get integration
@@ -780,6 +805,44 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
780
805
  options: localVarRequestOptions,
781
806
  };
782
807
  }),
808
+ /**
809
+ * List the logs associated with a user on the project
810
+ * @summary List logs
811
+ * @param {string} project Projects unique identifier
812
+ * @param {string} user the unique id of the user
813
+ * @param {*} [options] Override http request option.
814
+ * @throws {RequiredError}
815
+ */
816
+ getLogs: (project_1, user_1, ...args_1) => __awaiter(this, [project_1, user_1, ...args_1], void 0, function* (project, user, options = {}) {
817
+ // verify required parameter 'project' is not null or undefined
818
+ assertParamExists('getLogs', 'project', project);
819
+ // verify required parameter 'user' is not null or undefined
820
+ assertParamExists('getLogs', 'user', user);
821
+ const localVarPath = `/v1/projects/{project}/users/{user}/logs`
822
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
823
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
824
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
825
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
826
+ let baseOptions;
827
+ if (configuration) {
828
+ baseOptions = configuration.baseOptions;
829
+ }
830
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
831
+ const localVarHeaderParameter = {};
832
+ const localVarQueryParameter = {};
833
+ // authentication session-oauth required
834
+ // oauth required
835
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
836
+ // authentication api-key required
837
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
838
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
839
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
840
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
841
+ return {
842
+ url: toPathString(localVarUrlObj),
843
+ options: localVarRequestOptions,
844
+ };
845
+ }),
783
846
  /**
784
847
  * Get the AI-generated OKR summary for the project
785
848
  * @summary Get OKR summary
@@ -992,6 +1055,44 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
992
1055
  options: localVarRequestOptions,
993
1056
  };
994
1057
  }),
1058
+ /**
1059
+ * Get the details of the user\'s invite to the project
1060
+ * @summary Get invite
1061
+ * @param {string} project Projects unique identifier
1062
+ * @param {string} user the unique id of the user
1063
+ * @param {*} [options] Override http request option.
1064
+ * @throws {RequiredError}
1065
+ */
1066
+ getUserInvite: (project_1, user_1, ...args_1) => __awaiter(this, [project_1, user_1, ...args_1], void 0, function* (project, user, options = {}) {
1067
+ // verify required parameter 'project' is not null or undefined
1068
+ assertParamExists('getUserInvite', 'project', project);
1069
+ // verify required parameter 'user' is not null or undefined
1070
+ assertParamExists('getUserInvite', 'user', user);
1071
+ const localVarPath = `/v1/projects/{project}/users/{user}/invite`
1072
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1073
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
1074
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1075
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1076
+ let baseOptions;
1077
+ if (configuration) {
1078
+ baseOptions = configuration.baseOptions;
1079
+ }
1080
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1081
+ const localVarHeaderParameter = {};
1082
+ const localVarQueryParameter = {};
1083
+ // authentication session-oauth required
1084
+ // oauth required
1085
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
1086
+ // authentication api-key required
1087
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1088
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1089
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1090
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1091
+ return {
1092
+ url: toPathString(localVarUrlObj),
1093
+ options: localVarRequestOptions,
1094
+ };
1095
+ }),
995
1096
  /**
996
1097
  * List the users associated with a project
997
1098
  * @summary List project users
@@ -1592,7 +1693,6 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
1592
1693
  };
1593
1694
  /**
1594
1695
  * ProjectsApi - functional programming interface
1595
- * @export
1596
1696
  */
1597
1697
  export const ProjectsApiFp = function (configuration) {
1598
1698
  const localVarAxiosParamCreator = ProjectsApiAxiosParamCreator(configuration);
@@ -1862,6 +1962,23 @@ export const ProjectsApiFp = function (configuration) {
1862
1962
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1863
1963
  });
1864
1964
  },
1965
+ /**
1966
+ * List the clients of the project that the user has access to
1967
+ * @summary List clients
1968
+ * @param {string} project Projects unique identifier
1969
+ * @param {string} user the unique id of the user
1970
+ * @param {*} [options] Override http request option.
1971
+ * @throws {RequiredError}
1972
+ */
1973
+ getClients(project, user, options) {
1974
+ return __awaiter(this, void 0, void 0, function* () {
1975
+ var _a, _b, _c;
1976
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getClients(project, user, options);
1977
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1978
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.getClients']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1979
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1980
+ });
1981
+ },
1865
1982
  /**
1866
1983
  * Get an integration
1867
1984
  * @summary Get integration
@@ -1915,6 +2032,23 @@ export const ProjectsApiFp = function (configuration) {
1915
2032
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1916
2033
  });
1917
2034
  },
2035
+ /**
2036
+ * List the logs associated with a user on the project
2037
+ * @summary List logs
2038
+ * @param {string} project Projects unique identifier
2039
+ * @param {string} user the unique id of the user
2040
+ * @param {*} [options] Override http request option.
2041
+ * @throws {RequiredError}
2042
+ */
2043
+ getLogs(project, user, options) {
2044
+ return __awaiter(this, void 0, void 0, function* () {
2045
+ var _a, _b, _c;
2046
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getLogs(project, user, options);
2047
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2048
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.getLogs']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2049
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2050
+ });
2051
+ },
1918
2052
  /**
1919
2053
  * Get the AI-generated OKR summary for the project
1920
2054
  * @summary Get OKR summary
@@ -2013,6 +2147,23 @@ export const ProjectsApiFp = function (configuration) {
2013
2147
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2014
2148
  });
2015
2149
  },
2150
+ /**
2151
+ * Get the details of the user\'s invite to the project
2152
+ * @summary Get invite
2153
+ * @param {string} project Projects unique identifier
2154
+ * @param {string} user the unique id of the user
2155
+ * @param {*} [options] Override http request option.
2156
+ * @throws {RequiredError}
2157
+ */
2158
+ getUserInvite(project, user, options) {
2159
+ return __awaiter(this, void 0, void 0, function* () {
2160
+ var _a, _b, _c;
2161
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getUserInvite(project, user, options);
2162
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2163
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProjectsApi.getUserInvite']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2164
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2165
+ });
2166
+ },
2016
2167
  /**
2017
2168
  * List the users associated with a project
2018
2169
  * @summary List project users
@@ -2277,7 +2428,6 @@ export const ProjectsApiFp = function (configuration) {
2277
2428
  };
2278
2429
  /**
2279
2430
  * ProjectsApi - factory interface
2280
- * @export
2281
2431
  */
2282
2432
  export const ProjectsApiFactory = function (configuration, basePath, axios) {
2283
2433
  const localVarFp = ProjectsApiFp(configuration);
@@ -2442,6 +2592,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2442
2592
  getAuth(requestParameters, options) {
2443
2593
  return localVarFp.getAuth(requestParameters.project, options).then((request) => request(axios, basePath));
2444
2594
  },
2595
+ /**
2596
+ * List the clients of the project that the user has access to
2597
+ * @summary List clients
2598
+ * @param {ProjectsApiGetClientsRequest} requestParameters Request parameters.
2599
+ * @param {*} [options] Override http request option.
2600
+ * @throws {RequiredError}
2601
+ */
2602
+ getClients(requestParameters, options) {
2603
+ return localVarFp.getClients(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
2604
+ },
2445
2605
  /**
2446
2606
  * Get an integration
2447
2607
  * @summary Get integration
@@ -2472,6 +2632,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2472
2632
  getInvites(requestParameters, options) {
2473
2633
  return localVarFp.getInvites(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(axios, basePath));
2474
2634
  },
2635
+ /**
2636
+ * List the logs associated with a user on the project
2637
+ * @summary List logs
2638
+ * @param {ProjectsApiGetLogsRequest} requestParameters Request parameters.
2639
+ * @param {*} [options] Override http request option.
2640
+ * @throws {RequiredError}
2641
+ */
2642
+ getLogs(requestParameters, options) {
2643
+ return localVarFp.getLogs(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
2644
+ },
2475
2645
  /**
2476
2646
  * Get the AI-generated OKR summary for the project
2477
2647
  * @summary Get OKR summary
@@ -2532,6 +2702,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2532
2702
  getUser(requestParameters, options) {
2533
2703
  return localVarFp.getUser(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
2534
2704
  },
2705
+ /**
2706
+ * Get the details of the user\'s invite to the project
2707
+ * @summary Get invite
2708
+ * @param {ProjectsApiGetUserInviteRequest} requestParameters Request parameters.
2709
+ * @param {*} [options] Override http request option.
2710
+ * @throws {RequiredError}
2711
+ */
2712
+ getUserInvite(requestParameters, options) {
2713
+ return localVarFp.getUserInvite(requestParameters.project, requestParameters.user, options).then((request) => request(axios, basePath));
2714
+ },
2535
2715
  /**
2536
2716
  * List the users associated with a project
2537
2717
  * @summary List project users
@@ -2686,9 +2866,6 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2686
2866
  };
2687
2867
  /**
2688
2868
  * ProjectsApi - object-oriented interface
2689
- * @export
2690
- * @class ProjectsApi
2691
- * @extends {BaseAPI}
2692
2869
  */
2693
2870
  export class ProjectsApi extends BaseAPI {
2694
2871
  /**
@@ -2697,7 +2874,6 @@ export class ProjectsApi extends BaseAPI {
2697
2874
  * @param {ProjectsApiArchiveTasksRequest} requestParameters Request parameters.
2698
2875
  * @param {*} [options] Override http request option.
2699
2876
  * @throws {RequiredError}
2700
- * @memberof ProjectsApi
2701
2877
  */
2702
2878
  archiveTasks(requestParameters, options) {
2703
2879
  return ProjectsApiFp(this.configuration).archiveTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2708,7 +2884,6 @@ export class ProjectsApi extends BaseAPI {
2708
2884
  * @param {ProjectsApiBulkUpdateTasksRequest} requestParameters Request parameters.
2709
2885
  * @param {*} [options] Override http request option.
2710
2886
  * @throws {RequiredError}
2711
- * @memberof ProjectsApi
2712
2887
  */
2713
2888
  bulkUpdateTasks(requestParameters, options) {
2714
2889
  return ProjectsApiFp(this.configuration).bulkUpdateTasks(requestParameters.project, requestParameters.bulkUpdateTasksRequest, options).then((request) => request(this.axios, this.basePath));
@@ -2719,7 +2894,6 @@ export class ProjectsApi extends BaseAPI {
2719
2894
  * @param {ProjectsApiCreateAuthRequest} requestParameters Request parameters.
2720
2895
  * @param {*} [options] Override http request option.
2721
2896
  * @throws {RequiredError}
2722
- * @memberof ProjectsApi
2723
2897
  */
2724
2898
  createAuth(requestParameters, options) {
2725
2899
  return ProjectsApiFp(this.configuration).createAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2730,7 +2904,6 @@ export class ProjectsApi extends BaseAPI {
2730
2904
  * @param {ProjectsApiCreateBookmarkRequest} requestParameters Request parameters.
2731
2905
  * @param {*} [options] Override http request option.
2732
2906
  * @throws {RequiredError}
2733
- * @memberof ProjectsApi
2734
2907
  */
2735
2908
  createBookmark(requestParameters, options) {
2736
2909
  return ProjectsApiFp(this.configuration).createBookmark(requestParameters.project, requestParameters.createBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
@@ -2741,7 +2914,6 @@ export class ProjectsApi extends BaseAPI {
2741
2914
  * @param {ProjectsApiCreateInviteRequest} requestParameters Request parameters.
2742
2915
  * @param {*} [options] Override http request option.
2743
2916
  * @throws {RequiredError}
2744
- * @memberof ProjectsApi
2745
2917
  */
2746
2918
  createInvite(requestParameters, options) {
2747
2919
  return ProjectsApiFp(this.configuration).createInvite(requestParameters.project, requestParameters.createInviteRequest, options).then((request) => request(this.axios, this.basePath));
@@ -2752,7 +2924,6 @@ export class ProjectsApi extends BaseAPI {
2752
2924
  * @param {ProjectsApiCreateProjectRequest} requestParameters Request parameters.
2753
2925
  * @param {*} [options] Override http request option.
2754
2926
  * @throws {RequiredError}
2755
- * @memberof ProjectsApi
2756
2927
  */
2757
2928
  createProject(requestParameters, options) {
2758
2929
  return ProjectsApiFp(this.configuration).createProject(requestParameters.createProjectRequest, options).then((request) => request(this.axios, this.basePath));
@@ -2763,7 +2934,6 @@ export class ProjectsApi extends BaseAPI {
2763
2934
  * @param {ProjectsApiCreateTaskRequest} requestParameters Request parameters.
2764
2935
  * @param {*} [options] Override http request option.
2765
2936
  * @throws {RequiredError}
2766
- * @memberof ProjectsApi
2767
2937
  */
2768
2938
  createTask(requestParameters, options) {
2769
2939
  return ProjectsApiFp(this.configuration).createTask(requestParameters.project, requestParameters.createTaskRequest, options).then((request) => request(this.axios, this.basePath));
@@ -2774,7 +2944,6 @@ export class ProjectsApi extends BaseAPI {
2774
2944
  * @param {ProjectsApiDeleteAuthRequest} requestParameters Request parameters.
2775
2945
  * @param {*} [options] Override http request option.
2776
2946
  * @throws {RequiredError}
2777
- * @memberof ProjectsApi
2778
2947
  */
2779
2948
  deleteAuth(requestParameters, options) {
2780
2949
  return ProjectsApiFp(this.configuration).deleteAuth(requestParameters.project, requestParameters.auth, options).then((request) => request(this.axios, this.basePath));
@@ -2785,7 +2954,6 @@ export class ProjectsApi extends BaseAPI {
2785
2954
  * @param {ProjectsApiDeleteBookmarkRequest} requestParameters Request parameters.
2786
2955
  * @param {*} [options] Override http request option.
2787
2956
  * @throws {RequiredError}
2788
- * @memberof ProjectsApi
2789
2957
  */
2790
2958
  deleteBookmark(requestParameters, options) {
2791
2959
  return ProjectsApiFp(this.configuration).deleteBookmark(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
@@ -2796,7 +2964,6 @@ export class ProjectsApi extends BaseAPI {
2796
2964
  * @param {ProjectsApiDeleteInviteRequest} requestParameters Request parameters.
2797
2965
  * @param {*} [options] Override http request option.
2798
2966
  * @throws {RequiredError}
2799
- * @memberof ProjectsApi
2800
2967
  */
2801
2968
  deleteInvite(requestParameters, options) {
2802
2969
  return ProjectsApiFp(this.configuration).deleteInvite(requestParameters.project, requestParameters.invite, options).then((request) => request(this.axios, this.basePath));
@@ -2807,7 +2974,6 @@ export class ProjectsApi extends BaseAPI {
2807
2974
  * @param {ProjectsApiDeleteProjectRequest} requestParameters Request parameters.
2808
2975
  * @param {*} [options] Override http request option.
2809
2976
  * @throws {RequiredError}
2810
- * @memberof ProjectsApi
2811
2977
  */
2812
2978
  deleteProject(requestParameters, options) {
2813
2979
  return ProjectsApiFp(this.configuration).deleteProject(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2818,7 +2984,6 @@ export class ProjectsApi extends BaseAPI {
2818
2984
  * @param {ProjectsApiDeleteTaskRequest} requestParameters Request parameters.
2819
2985
  * @param {*} [options] Override http request option.
2820
2986
  * @throws {RequiredError}
2821
- * @memberof ProjectsApi
2822
2987
  */
2823
2988
  deleteTask(requestParameters, options) {
2824
2989
  return ProjectsApiFp(this.configuration).deleteTask(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
@@ -2829,7 +2994,6 @@ export class ProjectsApi extends BaseAPI {
2829
2994
  * @param {ProjectsApiDeleteUserRequest} requestParameters Request parameters.
2830
2995
  * @param {*} [options] Override http request option.
2831
2996
  * @throws {RequiredError}
2832
- * @memberof ProjectsApi
2833
2997
  */
2834
2998
  deleteUser(requestParameters, options) {
2835
2999
  return ProjectsApiFp(this.configuration).deleteUser(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
@@ -2840,7 +3004,6 @@ export class ProjectsApi extends BaseAPI {
2840
3004
  * @param {ProjectsApiExportOkrsRequest} requestParameters Request parameters.
2841
3005
  * @param {*} [options] Override http request option.
2842
3006
  * @throws {RequiredError}
2843
- * @memberof ProjectsApi
2844
3007
  */
2845
3008
  exportOkrs(requestParameters, options) {
2846
3009
  return ProjectsApiFp(this.configuration).exportOkrs(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2851,7 +3014,6 @@ export class ProjectsApi extends BaseAPI {
2851
3014
  * @param {ProjectsApiExportTasksRequest} requestParameters Request parameters.
2852
3015
  * @param {*} [options] Override http request option.
2853
3016
  * @throws {RequiredError}
2854
- * @memberof ProjectsApi
2855
3017
  */
2856
3018
  exportTasks(requestParameters, options) {
2857
3019
  return ProjectsApiFp(this.configuration).exportTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2862,18 +3024,26 @@ export class ProjectsApi extends BaseAPI {
2862
3024
  * @param {ProjectsApiGetAuthRequest} requestParameters Request parameters.
2863
3025
  * @param {*} [options] Override http request option.
2864
3026
  * @throws {RequiredError}
2865
- * @memberof ProjectsApi
2866
3027
  */
2867
3028
  getAuth(requestParameters, options) {
2868
3029
  return ProjectsApiFp(this.configuration).getAuth(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
2869
3030
  }
3031
+ /**
3032
+ * List the clients of the project that the user has access to
3033
+ * @summary List clients
3034
+ * @param {ProjectsApiGetClientsRequest} requestParameters Request parameters.
3035
+ * @param {*} [options] Override http request option.
3036
+ * @throws {RequiredError}
3037
+ */
3038
+ getClients(requestParameters, options) {
3039
+ return ProjectsApiFp(this.configuration).getClients(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
3040
+ }
2870
3041
  /**
2871
3042
  * Get an integration
2872
3043
  * @summary Get integration
2873
3044
  * @param {ProjectsApiGetIntegrationRequest} requestParameters Request parameters.
2874
3045
  * @param {*} [options] Override http request option.
2875
3046
  * @throws {RequiredError}
2876
- * @memberof ProjectsApi
2877
3047
  */
2878
3048
  getIntegration(requestParameters, options) {
2879
3049
  return ProjectsApiFp(this.configuration).getIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
@@ -2884,7 +3054,6 @@ export class ProjectsApi extends BaseAPI {
2884
3054
  * @param {ProjectsApiGetIntegrationsRequest} requestParameters Request parameters.
2885
3055
  * @param {*} [options] Override http request option.
2886
3056
  * @throws {RequiredError}
2887
- * @memberof ProjectsApi
2888
3057
  */
2889
3058
  getIntegrations(requestParameters, options) {
2890
3059
  return ProjectsApiFp(this.configuration).getIntegrations(requestParameters.project, requestParameters.withUninstalled, options).then((request) => request(this.axios, this.basePath));
@@ -2895,18 +3064,26 @@ export class ProjectsApi extends BaseAPI {
2895
3064
  * @param {ProjectsApiGetInvitesRequest} requestParameters Request parameters.
2896
3065
  * @param {*} [options] Override http request option.
2897
3066
  * @throws {RequiredError}
2898
- * @memberof ProjectsApi
2899
3067
  */
2900
3068
  getInvites(requestParameters, options) {
2901
3069
  return ProjectsApiFp(this.configuration).getInvites(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
2902
3070
  }
3071
+ /**
3072
+ * List the logs associated with a user on the project
3073
+ * @summary List logs
3074
+ * @param {ProjectsApiGetLogsRequest} requestParameters Request parameters.
3075
+ * @param {*} [options] Override http request option.
3076
+ * @throws {RequiredError}
3077
+ */
3078
+ getLogs(requestParameters, options) {
3079
+ return ProjectsApiFp(this.configuration).getLogs(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
3080
+ }
2903
3081
  /**
2904
3082
  * Get the AI-generated OKR summary for the project
2905
3083
  * @summary Get OKR summary
2906
3084
  * @param {ProjectsApiGetOkrSummaryRequest} requestParameters Request parameters.
2907
3085
  * @param {*} [options] Override http request option.
2908
3086
  * @throws {RequiredError}
2909
- * @memberof ProjectsApi
2910
3087
  */
2911
3088
  getOkrSummary(requestParameters, options) {
2912
3089
  return ProjectsApiFp(this.configuration).getOkrSummary(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2917,7 +3094,6 @@ export class ProjectsApi extends BaseAPI {
2917
3094
  * @param {ProjectsApiGetProjectRequest} requestParameters Request parameters.
2918
3095
  * @param {*} [options] Override http request option.
2919
3096
  * @throws {RequiredError}
2920
- * @memberof ProjectsApi
2921
3097
  */
2922
3098
  getProject(requestParameters, options) {
2923
3099
  return ProjectsApiFp(this.configuration).getProject(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2928,7 +3104,6 @@ export class ProjectsApi extends BaseAPI {
2928
3104
  * @param {ProjectsApiGetProjectsRequest} requestParameters Request parameters.
2929
3105
  * @param {*} [options] Override http request option.
2930
3106
  * @throws {RequiredError}
2931
- * @memberof ProjectsApi
2932
3107
  */
2933
3108
  getProjects(requestParameters = {}, options) {
2934
3109
  return ProjectsApiFp(this.configuration).getProjects(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2939,7 +3114,6 @@ export class ProjectsApi extends BaseAPI {
2939
3114
  * @param {ProjectsApiGetTaskRequest} requestParameters Request parameters.
2940
3115
  * @param {*} [options] Override http request option.
2941
3116
  * @throws {RequiredError}
2942
- * @memberof ProjectsApi
2943
3117
  */
2944
3118
  getTask(requestParameters, options) {
2945
3119
  return ProjectsApiFp(this.configuration).getTask(requestParameters.project, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
@@ -2950,7 +3124,6 @@ export class ProjectsApi extends BaseAPI {
2950
3124
  * @param {ProjectsApiGetTemplatesRequest} requestParameters Request parameters.
2951
3125
  * @param {*} [options] Override http request option.
2952
3126
  * @throws {RequiredError}
2953
- * @memberof ProjectsApi
2954
3127
  */
2955
3128
  getTemplates(requestParameters = {}, options) {
2956
3129
  return ProjectsApiFp(this.configuration).getTemplates(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -2961,18 +3134,26 @@ export class ProjectsApi extends BaseAPI {
2961
3134
  * @param {ProjectsApiGetUserRequest} requestParameters Request parameters.
2962
3135
  * @param {*} [options] Override http request option.
2963
3136
  * @throws {RequiredError}
2964
- * @memberof ProjectsApi
2965
3137
  */
2966
3138
  getUser(requestParameters, options) {
2967
3139
  return ProjectsApiFp(this.configuration).getUser(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
2968
3140
  }
3141
+ /**
3142
+ * Get the details of the user\'s invite to the project
3143
+ * @summary Get invite
3144
+ * @param {ProjectsApiGetUserInviteRequest} requestParameters Request parameters.
3145
+ * @param {*} [options] Override http request option.
3146
+ * @throws {RequiredError}
3147
+ */
3148
+ getUserInvite(requestParameters, options) {
3149
+ return ProjectsApiFp(this.configuration).getUserInvite(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
3150
+ }
2969
3151
  /**
2970
3152
  * List the users associated with a project
2971
3153
  * @summary List project users
2972
3154
  * @param {ProjectsApiGetUsersRequest} requestParameters Request parameters.
2973
3155
  * @param {*} [options] Override http request option.
2974
3156
  * @throws {RequiredError}
2975
- * @memberof ProjectsApi
2976
3157
  */
2977
3158
  getUsers(requestParameters, options) {
2978
3159
  return ProjectsApiFp(this.configuration).getUsers(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
@@ -2983,7 +3164,6 @@ export class ProjectsApi extends BaseAPI {
2983
3164
  * @param {ProjectsApiInstallIntegrationRequest} requestParameters Request parameters.
2984
3165
  * @param {*} [options] Override http request option.
2985
3166
  * @throws {RequiredError}
2986
- * @memberof ProjectsApi
2987
3167
  */
2988
3168
  installIntegration(requestParameters, options) {
2989
3169
  return ProjectsApiFp(this.configuration).installIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
@@ -2994,7 +3174,6 @@ export class ProjectsApi extends BaseAPI {
2994
3174
  * @param {ProjectsApiInstallTemplateRequest} requestParameters Request parameters.
2995
3175
  * @param {*} [options] Override http request option.
2996
3176
  * @throws {RequiredError}
2997
- * @memberof ProjectsApi
2998
3177
  */
2999
3178
  installTemplate(requestParameters, options) {
3000
3179
  return ProjectsApiFp(this.configuration).installTemplate(requestParameters.project, requestParameters.template, requestParameters.installTemplateRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3005,7 +3184,6 @@ export class ProjectsApi extends BaseAPI {
3005
3184
  * @param {ProjectsApiListBookmarksRequest} requestParameters Request parameters.
3006
3185
  * @param {*} [options] Override http request option.
3007
3186
  * @throws {RequiredError}
3008
- * @memberof ProjectsApi
3009
3187
  */
3010
3188
  listBookmarks(requestParameters, options) {
3011
3189
  return ProjectsApiFp(this.configuration).listBookmarks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -3016,7 +3194,6 @@ export class ProjectsApi extends BaseAPI {
3016
3194
  * @param {ProjectsApiListBookmarktabsRequest} requestParameters Request parameters.
3017
3195
  * @param {*} [options] Override http request option.
3018
3196
  * @throws {RequiredError}
3019
- * @memberof ProjectsApi
3020
3197
  */
3021
3198
  listBookmarktabs(requestParameters, options) {
3022
3199
  return ProjectsApiFp(this.configuration).listBookmarktabs(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -3027,7 +3204,6 @@ export class ProjectsApi extends BaseAPI {
3027
3204
  * @param {ProjectsApiListTasksRequest} requestParameters Request parameters.
3028
3205
  * @param {*} [options] Override http request option.
3029
3206
  * @throws {RequiredError}
3030
- * @memberof ProjectsApi
3031
3207
  */
3032
3208
  listTasks(requestParameters, options) {
3033
3209
  return ProjectsApiFp(this.configuration).listTasks(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -3038,7 +3214,6 @@ export class ProjectsApi extends BaseAPI {
3038
3214
  * @param {ProjectsApiReset2FARequest} requestParameters Request parameters.
3039
3215
  * @param {*} [options] Override http request option.
3040
3216
  * @throws {RequiredError}
3041
- * @memberof ProjectsApi
3042
3217
  */
3043
3218
  reset2FA(requestParameters, options) {
3044
3219
  return ProjectsApiFp(this.configuration).reset2FA(requestParameters.project, requestParameters.user, options).then((request) => request(this.axios, this.basePath));
@@ -3049,7 +3224,6 @@ export class ProjectsApi extends BaseAPI {
3049
3224
  * @param {ProjectsApiSetupIntegrationRequest} requestParameters Request parameters.
3050
3225
  * @param {*} [options] Override http request option.
3051
3226
  * @throws {RequiredError}
3052
- * @memberof ProjectsApi
3053
3227
  */
3054
3228
  setupIntegration(requestParameters, options) {
3055
3229
  return ProjectsApiFp(this.configuration).setupIntegration(requestParameters.project, requestParameters.integration, requestParameters.updateIntegrationRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3060,7 +3234,6 @@ export class ProjectsApi extends BaseAPI {
3060
3234
  * @param {ProjectsApiUninstallIntegrationRequest} requestParameters Request parameters.
3061
3235
  * @param {*} [options] Override http request option.
3062
3236
  * @throws {RequiredError}
3063
- * @memberof ProjectsApi
3064
3237
  */
3065
3238
  uninstallIntegration(requestParameters, options) {
3066
3239
  return ProjectsApiFp(this.configuration).uninstallIntegration(requestParameters.project, requestParameters.integration, options).then((request) => request(this.axios, this.basePath));
@@ -3071,7 +3244,6 @@ export class ProjectsApi extends BaseAPI {
3071
3244
  * @param {ProjectsApiUpdateBookmarkRequest} requestParameters Request parameters.
3072
3245
  * @param {*} [options] Override http request option.
3073
3246
  * @throws {RequiredError}
3074
- * @memberof ProjectsApi
3075
3247
  */
3076
3248
  updateBookmark(requestParameters, options) {
3077
3249
  return ProjectsApiFp(this.configuration).updateBookmark(requestParameters.project, requestParameters.id, requestParameters.updateBookmarkRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3082,7 +3254,6 @@ export class ProjectsApi extends BaseAPI {
3082
3254
  * @param {ProjectsApiUpdateBookmarkTabsRequest} requestParameters Request parameters.
3083
3255
  * @param {*} [options] Override http request option.
3084
3256
  * @throws {RequiredError}
3085
- * @memberof ProjectsApi
3086
3257
  */
3087
3258
  updateBookmarkTabs(requestParameters, options) {
3088
3259
  return ProjectsApiFp(this.configuration).updateBookmarkTabs(requestParameters.project, requestParameters.updateBookmarkTabsRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3093,7 +3264,6 @@ export class ProjectsApi extends BaseAPI {
3093
3264
  * @param {ProjectsApiUpdateIntegrationRequest} requestParameters Request parameters.
3094
3265
  * @param {*} [options] Override http request option.
3095
3266
  * @throws {RequiredError}
3096
- * @memberof ProjectsApi
3097
3267
  */
3098
3268
  updateIntegration(requestParameters, options) {
3099
3269
  return ProjectsApiFp(this.configuration).updateIntegration(requestParameters.project, requestParameters.integration, requestParameters.updateIntegrationRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3104,7 +3274,6 @@ export class ProjectsApi extends BaseAPI {
3104
3274
  * @param {ProjectsApiUpdateProjectRequest} requestParameters Request parameters.
3105
3275
  * @param {*} [options] Override http request option.
3106
3276
  * @throws {RequiredError}
3107
- * @memberof ProjectsApi
3108
3277
  */
3109
3278
  updateProject(requestParameters, options) {
3110
3279
  return ProjectsApiFp(this.configuration).updateProject(requestParameters.project, requestParameters.updateProjectRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3115,7 +3284,6 @@ export class ProjectsApi extends BaseAPI {
3115
3284
  * @param {ProjectsApiUpdateTaskRequest} requestParameters Request parameters.
3116
3285
  * @param {*} [options] Override http request option.
3117
3286
  * @throws {RequiredError}
3118
- * @memberof ProjectsApi
3119
3287
  */
3120
3288
  updateTask(requestParameters, options) {
3121
3289
  return ProjectsApiFp(this.configuration).updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3126,7 +3294,6 @@ export class ProjectsApi extends BaseAPI {
3126
3294
  * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
3127
3295
  * @param {*} [options] Override http request option.
3128
3296
  * @throws {RequiredError}
3129
- * @memberof ProjectsApi
3130
3297
  */
3131
3298
  updateUser(requestParameters, options) {
3132
3299
  return ProjectsApiFp(this.configuration).updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(this.axios, this.basePath));