@teemill/projects 1.58.0 → 1.59.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 +5 -2
- package/api.ts +161 -71
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +62 -6
- package/dist/api.js +129 -2
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +62 -6
- package/dist/esm/api.js +128 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/GenerateBrandContextRequest.md +22 -0
- package/docs/GenerateBrandContextRequestReferenceFileRefsInner.md +24 -0
- package/docs/ProjectUser.md +0 -2
- package/docs/ProjectsApi.md +60 -0
- package/docs/UpdateUserRequest.md +0 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/projects@1.
|
|
1
|
+
## @teemill/projects@1.59.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.
|
|
39
|
+
npm install @teemill/projects@1.59.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -68,6 +68,7 @@ Class | Method | HTTP request | Description
|
|
|
68
68
|
*ProjectsApi* | [**deleteUserGroup**](docs/ProjectsApi.md#deleteusergroup) | **DELETE** /v1/projects/{project}/user-groups/{userGroup} | Delete group
|
|
69
69
|
*ProjectsApi* | [**exportOkrs**](docs/ProjectsApi.md#exportokrs) | **GET** /v1/projects/{project}/okrs/export | Export all OKRs
|
|
70
70
|
*ProjectsApi* | [**exportTasks**](docs/ProjectsApi.md#exporttasks) | **GET** /v1/projects/{project}/tasks/export | Export all tasks
|
|
71
|
+
*ProjectsApi* | [**generateBrandContext**](docs/ProjectsApi.md#generatebrandcontext) | **POST** /v1/projects/{project}/brand-context/generate | Generate or update brand context
|
|
71
72
|
*ProjectsApi* | [**getAuth**](docs/ProjectsApi.md#getauth) | **GET** /v1/projects/{project}/auth | List auth tokens
|
|
72
73
|
*ProjectsApi* | [**getClients**](docs/ProjectsApi.md#getclients) | **GET** /v1/projects/{project}/users/{user}/clients | List clients
|
|
73
74
|
*ProjectsApi* | [**getIntegration**](docs/ProjectsApi.md#getintegration) | **GET** /v1/projects/{project}/integrations/{integration} | Get integration
|
|
@@ -124,6 +125,8 @@ Class | Method | HTTP request | Description
|
|
|
124
125
|
- [CreateTaskRequestSource](docs/CreateTaskRequestSource.md)
|
|
125
126
|
- [CreateUserGroupRequest](docs/CreateUserGroupRequest.md)
|
|
126
127
|
- [ExportTasks202Response](docs/ExportTasks202Response.md)
|
|
128
|
+
- [GenerateBrandContextRequest](docs/GenerateBrandContextRequest.md)
|
|
129
|
+
- [GenerateBrandContextRequestReferenceFileRefsInner](docs/GenerateBrandContextRequestReferenceFileRefsInner.md)
|
|
127
130
|
- [GetClients200Response](docs/GetClients200Response.md)
|
|
128
131
|
- [GetLogs200Response](docs/GetLogs200Response.md)
|
|
129
132
|
- [Icon](docs/Icon.md)
|