@teemill/projects 1.43.0 → 1.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/projects@1.43.0
1
+ ## @teemill/projects@1.44.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/projects@1.43.0 --save
39
+ npm install @teemill/projects@1.44.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -88,6 +88,7 @@ Class | Method | HTTP request | Description
88
88
  *ProjectsApi* | [**updateIntegration**](docs/ProjectsApi.md#updateintegration) | **PATCH** /v1/projects/{project}/integrations/{integration} | Update integration
89
89
  *ProjectsApi* | [**updateProject**](docs/ProjectsApi.md#updateproject) | **PATCH** /v1/projects/{project} | Update project
90
90
  *ProjectsApi* | [**updateTask**](docs/ProjectsApi.md#updatetask) | **PATCH** /v1/projects/{project}/tasks/{id} | Update Task
91
+ *ProjectsApi* | [**updateUser**](docs/ProjectsApi.md#updateuser) | **PATCH** /v1/projects/{project}/users/{user} | Update a user
91
92
 
92
93
 
93
94
  ### Documentation For Models
@@ -142,6 +143,7 @@ Class | Method | HTTP request | Description
142
143
  - [UpdateIntegrationRequest](docs/UpdateIntegrationRequest.md)
143
144
  - [UpdateProjectRequest](docs/UpdateProjectRequest.md)
144
145
  - [UpdateTaskRequest](docs/UpdateTaskRequest.md)
146
+ - [UpdateUserRequest](docs/UpdateUserRequest.md)
145
147
 
146
148
 
147
149
  <a id="documentation-for-authorization"></a>
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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1366,6 +1366,19 @@ export interface UpdateTaskRequest {
1366
1366
  }
1367
1367
 
1368
1368
 
1369
+ /**
1370
+ *
1371
+ * @export
1372
+ * @interface UpdateUserRequest
1373
+ */
1374
+ export interface UpdateUserRequest {
1375
+ /**
1376
+ *
1377
+ * @type {boolean}
1378
+ * @memberof UpdateUserRequest
1379
+ */
1380
+ 'providesSupport': boolean;
1381
+ }
1369
1382
 
1370
1383
  /**
1371
1384
  * ProjectsApi - axios parameter creator
@@ -3046,6 +3059,57 @@ export const ProjectsApiAxiosParamCreator = function (configuration?: Configurat
3046
3059
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3047
3060
  localVarRequestOptions.data = serializeDataIfNeeded(updateTaskRequest, localVarRequestOptions, configuration)
3048
3061
 
3062
+ return {
3063
+ url: toPathString(localVarUrlObj),
3064
+ options: localVarRequestOptions,
3065
+ };
3066
+ },
3067
+ /**
3068
+ * Update a project user
3069
+ * @summary Update a user
3070
+ * @param {string} project Projects unique identifier
3071
+ * @param {string} user the unique id of the user
3072
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
3073
+ * @param {*} [options] Override http request option.
3074
+ * @throws {RequiredError}
3075
+ */
3076
+ updateUser: async (project: string, user: string, updateUserRequest: UpdateUserRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
3077
+ // verify required parameter 'project' is not null or undefined
3078
+ assertParamExists('updateUser', 'project', project)
3079
+ // verify required parameter 'user' is not null or undefined
3080
+ assertParamExists('updateUser', 'user', user)
3081
+ // verify required parameter 'updateUserRequest' is not null or undefined
3082
+ assertParamExists('updateUser', 'updateUserRequest', updateUserRequest)
3083
+ const localVarPath = `/v1/projects/{project}/users/{user}`
3084
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
3085
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
3086
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3087
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3088
+ let baseOptions;
3089
+ if (configuration) {
3090
+ baseOptions = configuration.baseOptions;
3091
+ }
3092
+
3093
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
3094
+ const localVarHeaderParameter = {} as any;
3095
+ const localVarQueryParameter = {} as any;
3096
+
3097
+ // authentication session-oauth required
3098
+ // oauth required
3099
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
3100
+
3101
+ // authentication api-key required
3102
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
3103
+
3104
+
3105
+
3106
+ localVarHeaderParameter['Content-Type'] = 'application/json';
3107
+
3108
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3109
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3110
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3111
+ localVarRequestOptions.data = serializeDataIfNeeded(updateUserRequest, localVarRequestOptions, configuration)
3112
+
3049
3113
  return {
3050
3114
  url: toPathString(localVarUrlObj),
3051
3115
  options: localVarRequestOptions,
@@ -3575,6 +3639,21 @@ export const ProjectsApiFp = function(configuration?: Configuration) {
3575
3639
  const localVarOperationServerBasePath = operationServerMap['ProjectsApi.updateTask']?.[localVarOperationServerIndex]?.url;
3576
3640
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3577
3641
  },
3642
+ /**
3643
+ * Update a project user
3644
+ * @summary Update a user
3645
+ * @param {string} project Projects unique identifier
3646
+ * @param {string} user the unique id of the user
3647
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
3648
+ * @param {*} [options] Override http request option.
3649
+ * @throws {RequiredError}
3650
+ */
3651
+ async updateUser(project: string, user: string, updateUserRequest: UpdateUserRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectUser>> {
3652
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateUser(project, user, updateUserRequest, options);
3653
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3654
+ const localVarOperationServerBasePath = operationServerMap['ProjectsApi.updateUser']?.[localVarOperationServerIndex]?.url;
3655
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3656
+ },
3578
3657
  }
3579
3658
  };
3580
3659
 
@@ -3955,6 +4034,16 @@ export const ProjectsApiFactory = function (configuration?: Configuration, baseP
3955
4034
  updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task> {
3956
4035
  return localVarFp.updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(axios, basePath));
3957
4036
  },
4037
+ /**
4038
+ * Update a project user
4039
+ * @summary Update a user
4040
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
4041
+ * @param {*} [options] Override http request option.
4042
+ * @throws {RequiredError}
4043
+ */
4044
+ updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectUser> {
4045
+ return localVarFp.updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(axios, basePath));
4046
+ },
3958
4047
  };
3959
4048
  };
3960
4049
 
@@ -4707,6 +4796,34 @@ export interface ProjectsApiUpdateTaskRequest {
4707
4796
  readonly updateTaskRequest?: UpdateTaskRequest
4708
4797
  }
4709
4798
 
4799
+ /**
4800
+ * Request parameters for updateUser operation in ProjectsApi.
4801
+ * @export
4802
+ * @interface ProjectsApiUpdateUserRequest
4803
+ */
4804
+ export interface ProjectsApiUpdateUserRequest {
4805
+ /**
4806
+ * Projects unique identifier
4807
+ * @type {string}
4808
+ * @memberof ProjectsApiUpdateUser
4809
+ */
4810
+ readonly project: string
4811
+
4812
+ /**
4813
+ * the unique id of the user
4814
+ * @type {string}
4815
+ * @memberof ProjectsApiUpdateUser
4816
+ */
4817
+ readonly user: string
4818
+
4819
+ /**
4820
+ * Updated project user data
4821
+ * @type {UpdateUserRequest}
4822
+ * @memberof ProjectsApiUpdateUser
4823
+ */
4824
+ readonly updateUserRequest: UpdateUserRequest
4825
+ }
4826
+
4710
4827
  /**
4711
4828
  * ProjectsApi - object-oriented interface
4712
4829
  * @export
@@ -5157,6 +5274,18 @@ export class ProjectsApi extends BaseAPI {
5157
5274
  public updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig) {
5158
5275
  return ProjectsApiFp(this.configuration).updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(this.axios, this.basePath));
5159
5276
  }
5277
+
5278
+ /**
5279
+ * Update a project user
5280
+ * @summary Update a user
5281
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
5282
+ * @param {*} [options] Override http request option.
5283
+ * @throws {RequiredError}
5284
+ * @memberof ProjectsApi
5285
+ */
5286
+ public updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig) {
5287
+ return ProjectsApiFp(this.configuration).updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(this.axios, this.basePath));
5288
+ }
5160
5289
  }
5161
5290
 
5162
5291
 
package/base.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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1332,6 +1332,19 @@ export interface UpdateTaskRequest {
1332
1332
  */
1333
1333
  'endDate'?: string | null;
1334
1334
  }
1335
+ /**
1336
+ *
1337
+ * @export
1338
+ * @interface UpdateUserRequest
1339
+ */
1340
+ export interface UpdateUserRequest {
1341
+ /**
1342
+ *
1343
+ * @type {boolean}
1344
+ * @memberof UpdateUserRequest
1345
+ */
1346
+ 'providesSupport': boolean;
1347
+ }
1335
1348
  /**
1336
1349
  * ProjectsApi - axios parameter creator
1337
1350
  * @export
@@ -1666,6 +1679,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1666
1679
  * @throws {RequiredError}
1667
1680
  */
1668
1681
  updateTask: (project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1682
+ /**
1683
+ * Update a project user
1684
+ * @summary Update a user
1685
+ * @param {string} project Projects unique identifier
1686
+ * @param {string} user the unique id of the user
1687
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
1688
+ * @param {*} [options] Override http request option.
1689
+ * @throws {RequiredError}
1690
+ */
1691
+ updateUser: (project: string, user: string, updateUserRequest: UpdateUserRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1669
1692
  };
1670
1693
  /**
1671
1694
  * ProjectsApi - functional programming interface
@@ -2001,6 +2024,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
2001
2024
  * @throws {RequiredError}
2002
2025
  */
2003
2026
  updateTask(project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Task>>;
2027
+ /**
2028
+ * Update a project user
2029
+ * @summary Update a user
2030
+ * @param {string} project Projects unique identifier
2031
+ * @param {string} user the unique id of the user
2032
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
2033
+ * @param {*} [options] Override http request option.
2034
+ * @throws {RequiredError}
2035
+ */
2036
+ updateUser(project: string, user: string, updateUserRequest: UpdateUserRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectUser>>;
2004
2037
  };
2005
2038
  /**
2006
2039
  * ProjectsApi - factory interface
@@ -2303,6 +2336,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
2303
2336
  * @throws {RequiredError}
2304
2337
  */
2305
2338
  updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
2339
+ /**
2340
+ * Update a project user
2341
+ * @summary Update a user
2342
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
2343
+ * @param {*} [options] Override http request option.
2344
+ * @throws {RequiredError}
2345
+ */
2346
+ updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectUser>;
2306
2347
  };
2307
2348
  /**
2308
2349
  * Request parameters for bulkUpdateTasks operation in ProjectsApi.
@@ -2983,6 +3024,31 @@ export interface ProjectsApiUpdateTaskRequest {
2983
3024
  */
2984
3025
  readonly updateTaskRequest?: UpdateTaskRequest;
2985
3026
  }
3027
+ /**
3028
+ * Request parameters for updateUser operation in ProjectsApi.
3029
+ * @export
3030
+ * @interface ProjectsApiUpdateUserRequest
3031
+ */
3032
+ export interface ProjectsApiUpdateUserRequest {
3033
+ /**
3034
+ * Projects unique identifier
3035
+ * @type {string}
3036
+ * @memberof ProjectsApiUpdateUser
3037
+ */
3038
+ readonly project: string;
3039
+ /**
3040
+ * the unique id of the user
3041
+ * @type {string}
3042
+ * @memberof ProjectsApiUpdateUser
3043
+ */
3044
+ readonly user: string;
3045
+ /**
3046
+ * Updated project user data
3047
+ * @type {UpdateUserRequest}
3048
+ * @memberof ProjectsApiUpdateUser
3049
+ */
3050
+ readonly updateUserRequest: UpdateUserRequest;
3051
+ }
2986
3052
  /**
2987
3053
  * ProjectsApi - object-oriented interface
2988
3054
  * @export
@@ -3323,4 +3389,13 @@ export declare class ProjectsApi extends BaseAPI {
3323
3389
  * @memberof ProjectsApi
3324
3390
  */
3325
3391
  updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
3392
+ /**
3393
+ * Update a project user
3394
+ * @summary Update a user
3395
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
3396
+ * @param {*} [options] Override http request option.
3397
+ * @throws {RequiredError}
3398
+ * @memberof ProjectsApi
3399
+ */
3400
+ updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUser, any>>;
3326
3401
  }
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.43.0
8
+ * The version of the OpenAPI document: 1.44.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1472,6 +1472,49 @@ const ProjectsApiAxiosParamCreator = function (configuration) {
1472
1472
  options: localVarRequestOptions,
1473
1473
  };
1474
1474
  }),
1475
+ /**
1476
+ * Update a project user
1477
+ * @summary Update a user
1478
+ * @param {string} project Projects unique identifier
1479
+ * @param {string} user the unique id of the user
1480
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
1481
+ * @param {*} [options] Override http request option.
1482
+ * @throws {RequiredError}
1483
+ */
1484
+ updateUser: (project_1, user_1, updateUserRequest_1, ...args_1) => __awaiter(this, [project_1, user_1, updateUserRequest_1, ...args_1], void 0, function* (project, user, updateUserRequest, options = {}) {
1485
+ // verify required parameter 'project' is not null or undefined
1486
+ (0, common_1.assertParamExists)('updateUser', 'project', project);
1487
+ // verify required parameter 'user' is not null or undefined
1488
+ (0, common_1.assertParamExists)('updateUser', 'user', user);
1489
+ // verify required parameter 'updateUserRequest' is not null or undefined
1490
+ (0, common_1.assertParamExists)('updateUser', 'updateUserRequest', updateUserRequest);
1491
+ const localVarPath = `/v1/projects/{project}/users/{user}`
1492
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1493
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
1494
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1495
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1496
+ let baseOptions;
1497
+ if (configuration) {
1498
+ baseOptions = configuration.baseOptions;
1499
+ }
1500
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
1501
+ const localVarHeaderParameter = {};
1502
+ const localVarQueryParameter = {};
1503
+ // authentication session-oauth required
1504
+ // oauth required
1505
+ yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
1506
+ // authentication api-key required
1507
+ yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
1508
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1509
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1510
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1511
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1512
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateUserRequest, localVarRequestOptions, configuration);
1513
+ return {
1514
+ url: (0, common_1.toPathString)(localVarUrlObj),
1515
+ options: localVarRequestOptions,
1516
+ };
1517
+ }),
1475
1518
  };
1476
1519
  };
1477
1520
  exports.ProjectsApiAxiosParamCreator = ProjectsApiAxiosParamCreator;
@@ -2107,6 +2150,24 @@ const ProjectsApiFp = function (configuration) {
2107
2150
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2108
2151
  });
2109
2152
  },
2153
+ /**
2154
+ * Update a project user
2155
+ * @summary Update a user
2156
+ * @param {string} project Projects unique identifier
2157
+ * @param {string} user the unique id of the user
2158
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
2159
+ * @param {*} [options] Override http request option.
2160
+ * @throws {RequiredError}
2161
+ */
2162
+ updateUser(project, user, updateUserRequest, options) {
2163
+ return __awaiter(this, void 0, void 0, function* () {
2164
+ var _a, _b, _c;
2165
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateUser(project, user, updateUserRequest, options);
2166
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2167
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProjectsApi.updateUser']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2168
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2169
+ });
2170
+ },
2110
2171
  };
2111
2172
  };
2112
2173
  exports.ProjectsApiFp = ProjectsApiFp;
@@ -2487,6 +2548,16 @@ const ProjectsApiFactory = function (configuration, basePath, axios) {
2487
2548
  updateTask(requestParameters, options) {
2488
2549
  return localVarFp.updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(axios, basePath));
2489
2550
  },
2551
+ /**
2552
+ * Update a project user
2553
+ * @summary Update a user
2554
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
2555
+ * @param {*} [options] Override http request option.
2556
+ * @throws {RequiredError}
2557
+ */
2558
+ updateUser(requestParameters, options) {
2559
+ return localVarFp.updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(axios, basePath));
2560
+ },
2490
2561
  };
2491
2562
  };
2492
2563
  exports.ProjectsApiFactory = ProjectsApiFactory;
@@ -2904,5 +2975,16 @@ class ProjectsApi extends base_1.BaseAPI {
2904
2975
  updateTask(requestParameters, options) {
2905
2976
  return (0, exports.ProjectsApiFp)(this.configuration).updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(this.axios, this.basePath));
2906
2977
  }
2978
+ /**
2979
+ * Update a project user
2980
+ * @summary Update a user
2981
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
2982
+ * @param {*} [options] Override http request option.
2983
+ * @throws {RequiredError}
2984
+ * @memberof ProjectsApi
2985
+ */
2986
+ updateUser(requestParameters, options) {
2987
+ return (0, exports.ProjectsApiFp)(this.configuration).updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(this.axios, this.basePath));
2988
+ }
2907
2989
  }
2908
2990
  exports.ProjectsApi = ProjectsApi;
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.43.0
5
+ * The version of the OpenAPI document: 1.44.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.43.0
8
+ * The version of the OpenAPI document: 1.44.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.43.0
5
+ * The version of the OpenAPI document: 1.44.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.43.0
8
+ * The version of the OpenAPI document: 1.44.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.43.0
5
+ * The version of the OpenAPI document: 1.44.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.43.0
8
+ * The version of the OpenAPI document: 1.44.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.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1332,6 +1332,19 @@ export interface UpdateTaskRequest {
1332
1332
  */
1333
1333
  'endDate'?: string | null;
1334
1334
  }
1335
+ /**
1336
+ *
1337
+ * @export
1338
+ * @interface UpdateUserRequest
1339
+ */
1340
+ export interface UpdateUserRequest {
1341
+ /**
1342
+ *
1343
+ * @type {boolean}
1344
+ * @memberof UpdateUserRequest
1345
+ */
1346
+ 'providesSupport': boolean;
1347
+ }
1335
1348
  /**
1336
1349
  * ProjectsApi - axios parameter creator
1337
1350
  * @export
@@ -1666,6 +1679,16 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
1666
1679
  * @throws {RequiredError}
1667
1680
  */
1668
1681
  updateTask: (project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1682
+ /**
1683
+ * Update a project user
1684
+ * @summary Update a user
1685
+ * @param {string} project Projects unique identifier
1686
+ * @param {string} user the unique id of the user
1687
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
1688
+ * @param {*} [options] Override http request option.
1689
+ * @throws {RequiredError}
1690
+ */
1691
+ updateUser: (project: string, user: string, updateUserRequest: UpdateUserRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1669
1692
  };
1670
1693
  /**
1671
1694
  * ProjectsApi - functional programming interface
@@ -2001,6 +2024,16 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
2001
2024
  * @throws {RequiredError}
2002
2025
  */
2003
2026
  updateTask(project: string, id: string, updateTaskRequest?: UpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Task>>;
2027
+ /**
2028
+ * Update a project user
2029
+ * @summary Update a user
2030
+ * @param {string} project Projects unique identifier
2031
+ * @param {string} user the unique id of the user
2032
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
2033
+ * @param {*} [options] Override http request option.
2034
+ * @throws {RequiredError}
2035
+ */
2036
+ updateUser(project: string, user: string, updateUserRequest: UpdateUserRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectUser>>;
2004
2037
  };
2005
2038
  /**
2006
2039
  * ProjectsApi - factory interface
@@ -2303,6 +2336,14 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
2303
2336
  * @throws {RequiredError}
2304
2337
  */
2305
2338
  updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): AxiosPromise<Task>;
2339
+ /**
2340
+ * Update a project user
2341
+ * @summary Update a user
2342
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
2343
+ * @param {*} [options] Override http request option.
2344
+ * @throws {RequiredError}
2345
+ */
2346
+ updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProjectUser>;
2306
2347
  };
2307
2348
  /**
2308
2349
  * Request parameters for bulkUpdateTasks operation in ProjectsApi.
@@ -2983,6 +3024,31 @@ export interface ProjectsApiUpdateTaskRequest {
2983
3024
  */
2984
3025
  readonly updateTaskRequest?: UpdateTaskRequest;
2985
3026
  }
3027
+ /**
3028
+ * Request parameters for updateUser operation in ProjectsApi.
3029
+ * @export
3030
+ * @interface ProjectsApiUpdateUserRequest
3031
+ */
3032
+ export interface ProjectsApiUpdateUserRequest {
3033
+ /**
3034
+ * Projects unique identifier
3035
+ * @type {string}
3036
+ * @memberof ProjectsApiUpdateUser
3037
+ */
3038
+ readonly project: string;
3039
+ /**
3040
+ * the unique id of the user
3041
+ * @type {string}
3042
+ * @memberof ProjectsApiUpdateUser
3043
+ */
3044
+ readonly user: string;
3045
+ /**
3046
+ * Updated project user data
3047
+ * @type {UpdateUserRequest}
3048
+ * @memberof ProjectsApiUpdateUser
3049
+ */
3050
+ readonly updateUserRequest: UpdateUserRequest;
3051
+ }
2986
3052
  /**
2987
3053
  * ProjectsApi - object-oriented interface
2988
3054
  * @export
@@ -3323,4 +3389,13 @@ export declare class ProjectsApi extends BaseAPI {
3323
3389
  * @memberof ProjectsApi
3324
3390
  */
3325
3391
  updateTask(requestParameters: ProjectsApiUpdateTaskRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Task, any>>;
3392
+ /**
3393
+ * Update a project user
3394
+ * @summary Update a user
3395
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
3396
+ * @param {*} [options] Override http request option.
3397
+ * @throws {RequiredError}
3398
+ * @memberof ProjectsApi
3399
+ */
3400
+ updateUser(requestParameters: ProjectsApiUpdateUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectUser, any>>;
3326
3401
  }
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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1469,6 +1469,49 @@ export const ProjectsApiAxiosParamCreator = function (configuration) {
1469
1469
  options: localVarRequestOptions,
1470
1470
  };
1471
1471
  }),
1472
+ /**
1473
+ * Update a project user
1474
+ * @summary Update a user
1475
+ * @param {string} project Projects unique identifier
1476
+ * @param {string} user the unique id of the user
1477
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
1478
+ * @param {*} [options] Override http request option.
1479
+ * @throws {RequiredError}
1480
+ */
1481
+ updateUser: (project_1, user_1, updateUserRequest_1, ...args_1) => __awaiter(this, [project_1, user_1, updateUserRequest_1, ...args_1], void 0, function* (project, user, updateUserRequest, options = {}) {
1482
+ // verify required parameter 'project' is not null or undefined
1483
+ assertParamExists('updateUser', 'project', project);
1484
+ // verify required parameter 'user' is not null or undefined
1485
+ assertParamExists('updateUser', 'user', user);
1486
+ // verify required parameter 'updateUserRequest' is not null or undefined
1487
+ assertParamExists('updateUser', 'updateUserRequest', updateUserRequest);
1488
+ const localVarPath = `/v1/projects/{project}/users/{user}`
1489
+ .replace(`{${"project"}}`, encodeURIComponent(String(project)))
1490
+ .replace(`{${"user"}}`, encodeURIComponent(String(user)));
1491
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1492
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1493
+ let baseOptions;
1494
+ if (configuration) {
1495
+ baseOptions = configuration.baseOptions;
1496
+ }
1497
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
1498
+ const localVarHeaderParameter = {};
1499
+ const localVarQueryParameter = {};
1500
+ // authentication session-oauth required
1501
+ // oauth required
1502
+ yield setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration);
1503
+ // authentication api-key required
1504
+ yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
1505
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1506
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1507
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1508
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1509
+ localVarRequestOptions.data = serializeDataIfNeeded(updateUserRequest, localVarRequestOptions, configuration);
1510
+ return {
1511
+ url: toPathString(localVarUrlObj),
1512
+ options: localVarRequestOptions,
1513
+ };
1514
+ }),
1472
1515
  };
1473
1516
  };
1474
1517
  /**
@@ -2103,6 +2146,24 @@ export const ProjectsApiFp = function (configuration) {
2103
2146
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2104
2147
  });
2105
2148
  },
2149
+ /**
2150
+ * Update a project user
2151
+ * @summary Update a user
2152
+ * @param {string} project Projects unique identifier
2153
+ * @param {string} user the unique id of the user
2154
+ * @param {UpdateUserRequest} updateUserRequest Updated project user data
2155
+ * @param {*} [options] Override http request option.
2156
+ * @throws {RequiredError}
2157
+ */
2158
+ updateUser(project, user, updateUserRequest, options) {
2159
+ return __awaiter(this, void 0, void 0, function* () {
2160
+ var _a, _b, _c;
2161
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateUser(project, user, updateUserRequest, 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.updateUser']) === 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
+ },
2106
2167
  };
2107
2168
  };
2108
2169
  /**
@@ -2482,6 +2543,16 @@ export const ProjectsApiFactory = function (configuration, basePath, axios) {
2482
2543
  updateTask(requestParameters, options) {
2483
2544
  return localVarFp.updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(axios, basePath));
2484
2545
  },
2546
+ /**
2547
+ * Update a project user
2548
+ * @summary Update a user
2549
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
2550
+ * @param {*} [options] Override http request option.
2551
+ * @throws {RequiredError}
2552
+ */
2553
+ updateUser(requestParameters, options) {
2554
+ return localVarFp.updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(axios, basePath));
2555
+ },
2485
2556
  };
2486
2557
  };
2487
2558
  /**
@@ -2898,4 +2969,15 @@ export class ProjectsApi extends BaseAPI {
2898
2969
  updateTask(requestParameters, options) {
2899
2970
  return ProjectsApiFp(this.configuration).updateTask(requestParameters.project, requestParameters.id, requestParameters.updateTaskRequest, options).then((request) => request(this.axios, this.basePath));
2900
2971
  }
2972
+ /**
2973
+ * Update a project user
2974
+ * @summary Update a user
2975
+ * @param {ProjectsApiUpdateUserRequest} requestParameters Request parameters.
2976
+ * @param {*} [options] Override http request option.
2977
+ * @throws {RequiredError}
2978
+ * @memberof ProjectsApi
2979
+ */
2980
+ updateUser(requestParameters, options) {
2981
+ return ProjectsApiFp(this.configuration).updateUser(requestParameters.project, requestParameters.user, requestParameters.updateUserRequest, options).then((request) => request(this.axios, this.basePath));
2982
+ }
2901
2983
  }
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * 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.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * 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.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * 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.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.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.43.0
5
+ * The version of the OpenAPI document: 1.44.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.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.43.0
8
+ * The version of the OpenAPI document: 1.44.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,6 +41,7 @@ All URIs are relative to *https://localhost:8080*
41
41
  |[**updateIntegration**](#updateintegration) | **PATCH** /v1/projects/{project}/integrations/{integration} | Update integration|
42
42
  |[**updateProject**](#updateproject) | **PATCH** /v1/projects/{project} | Update project|
43
43
  |[**updateTask**](#updatetask) | **PATCH** /v1/projects/{project}/tasks/{id} | Update Task|
44
+ |[**updateUser**](#updateuser) | **PATCH** /v1/projects/{project}/users/{user} | Update a user|
44
45
 
45
46
  # **bulkUpdateTasks**
46
47
  > ListTasksResponse bulkUpdateTasks(bulkUpdateTasksRequest)
@@ -2193,3 +2194,66 @@ const { status, data } = await apiInstance.updateTask(
2193
2194
 
2194
2195
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2195
2196
 
2197
+ # **updateUser**
2198
+ > ProjectUser updateUser(updateUserRequest)
2199
+
2200
+ Update a project user
2201
+
2202
+ ### Example
2203
+
2204
+ ```typescript
2205
+ import {
2206
+ ProjectsApi,
2207
+ Configuration,
2208
+ UpdateUserRequest
2209
+ } from '@teemill/projects';
2210
+
2211
+ const configuration = new Configuration();
2212
+ const apiInstance = new ProjectsApi(configuration);
2213
+
2214
+ let project: string; //Projects unique identifier (default to undefined)
2215
+ let user: string; //the unique id of the user (default to undefined)
2216
+ let updateUserRequest: UpdateUserRequest; //Updated project user data
2217
+
2218
+ const { status, data } = await apiInstance.updateUser(
2219
+ project,
2220
+ user,
2221
+ updateUserRequest
2222
+ );
2223
+ ```
2224
+
2225
+ ### Parameters
2226
+
2227
+ |Name | Type | Description | Notes|
2228
+ |------------- | ------------- | ------------- | -------------|
2229
+ | **updateUserRequest** | **UpdateUserRequest**| Updated project user data | |
2230
+ | **project** | [**string**] | Projects unique identifier | defaults to undefined|
2231
+ | **user** | [**string**] | the unique id of the user | defaults to undefined|
2232
+
2233
+
2234
+ ### Return type
2235
+
2236
+ **ProjectUser**
2237
+
2238
+ ### Authorization
2239
+
2240
+ [session-oauth](../README.md#session-oauth), [api-key](../README.md#api-key)
2241
+
2242
+ ### HTTP request headers
2243
+
2244
+ - **Content-Type**: application/json
2245
+ - **Accept**: application/json
2246
+
2247
+
2248
+ ### HTTP response details
2249
+ | Status code | Description | Response headers |
2250
+ |-------------|-------------|------------------|
2251
+ |**200** | Successfully retrieved a project user | - |
2252
+ |**400** | Failed validation | - |
2253
+ |**401** | Not authorised to access this resource | - |
2254
+ |**403** | Refuse to authorize | - |
2255
+ |**404** | Resource not found | - |
2256
+ |**500** | Unknown server error | - |
2257
+
2258
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
2259
+
@@ -0,0 +1,20 @@
1
+ # UpdateUserRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **providesSupport** | **boolean** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { UpdateUserRequest } from '@teemill/projects';
14
+
15
+ const instance: UpdateUserRequest = {
16
+ providesSupport,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/index.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.43.0
7
+ * The version of the OpenAPI document: 1.44.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/projects",
3
- "version": "1.43.0",
3
+ "version": "1.44.0",
4
4
  "description": "OpenAPI client for @teemill/projects",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {