@teemill/projects 1.37.0 → 1.39.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 +117 -2
- package/api.ts +178 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +130 -1
- package/dist/api.js +83 -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 +130 -1
- package/dist/esm/api.js +82 -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/ApiError.md +22 -0
- package/docs/Auth.md +24 -0
- package/docs/AuthResponse.md +20 -0
- package/docs/Bookmark.md +36 -0
- package/docs/BookmarkData.md +22 -0
- package/docs/BookmarkRoute.md +20 -0
- package/docs/BookmarkRouteRoute.md +24 -0
- package/docs/BookmarkTab.md +24 -0
- package/docs/BookmarkTabs.md +20 -0
- package/docs/BookmarkUrl.md +20 -0
- package/docs/Bookmarks.md +20 -0
- package/docs/CreateBookmarkRequest.md +30 -0
- package/docs/CreateInviteRequest.md +22 -0
- package/docs/CreateProjectRequest.md +26 -0
- package/docs/CreateTaskRequest.md +22 -0
- package/docs/ExportTasks202Response.md +20 -0
- package/docs/Icon.md +24 -0
- package/docs/InstallTemplateRequest.md +20 -0
- package/docs/Integration.md +26 -0
- package/docs/IntegrationsResponse.md +20 -0
- package/docs/LegacyProjectLogo.md +22 -0
- package/docs/ListTasksResponse.md +20 -0
- package/docs/NullableIcon.md +24 -0
- package/docs/OkrLevel.md +13 -0
- package/docs/Project.md +36 -0
- package/docs/ProjectCurrency.md +22 -0
- package/docs/ProjectInvite.md +30 -0
- package/docs/ProjectInvites.md +22 -0
- package/docs/ProjectLogo.md +22 -0
- package/docs/ProjectManager.md +24 -0
- package/docs/ProjectPlatform.md +22 -0
- package/docs/ProjectUser.md +34 -0
- package/docs/ProjectUserAvatar.md +20 -0
- package/docs/ProjectUsers.md +22 -0
- package/docs/ProjectsApi.md +2079 -0
- package/docs/ProjectsResponse.md +20 -0
- package/docs/Task.md +46 -0
- package/docs/TaskStatus.md +14 -0
- package/docs/TaskSummary.md +40 -0
- package/docs/Template.md +28 -0
- package/docs/TemplateCode.md +16 -0
- package/docs/TemplatesResponse.md +20 -0
- package/docs/UpdateBookmarkRequest.md +34 -0
- package/docs/UpdateBookmarkTabsRequest.md +20 -0
- package/docs/UpdateBookmarkTabsRequestTabsInner.md +24 -0
- package/docs/UpdateIntegrationRequest.md +20 -0
- package/docs/UpdateProjectRequest.md +22 -0
- package/docs/UpdateTaskRequest.md +36 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/docs/Auth.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Auth
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**projectId** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**token** | **string** | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { Auth } from '@teemill/projects';
|
|
16
|
+
|
|
17
|
+
const instance: Auth = {
|
|
18
|
+
id,
|
|
19
|
+
projectId,
|
|
20
|
+
token,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# AuthResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**auth** | [**Array<Auth>**](Auth.md) | | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { AuthResponse } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: AuthResponse = {
|
|
16
|
+
auth,
|
|
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/docs/Bookmark.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Bookmark
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**title** | **string** | | [default to undefined]
|
|
10
|
+
**data** | [**BookmarkData**](BookmarkData.md) | | [default to undefined]
|
|
11
|
+
**description** | **string** | | [default to undefined]
|
|
12
|
+
**color** | **string** | | [default to undefined]
|
|
13
|
+
**icon** | [**NullableIcon**](NullableIcon.md) | | [default to undefined]
|
|
14
|
+
**tabId** | **string** | | [default to undefined]
|
|
15
|
+
**sortOrder** | **number** | | [default to undefined]
|
|
16
|
+
**tabSortOrder** | **number** | | [default to undefined]
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { Bookmark } from '@teemill/projects';
|
|
22
|
+
|
|
23
|
+
const instance: Bookmark = {
|
|
24
|
+
id,
|
|
25
|
+
title,
|
|
26
|
+
data,
|
|
27
|
+
description,
|
|
28
|
+
color,
|
|
29
|
+
icon,
|
|
30
|
+
tabId,
|
|
31
|
+
sortOrder,
|
|
32
|
+
tabSortOrder,
|
|
33
|
+
};
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# BookmarkData
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**url** | **string** | | [default to undefined]
|
|
9
|
+
**route** | [**BookmarkRouteRoute**](BookmarkRouteRoute.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { BookmarkData } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: BookmarkData = {
|
|
17
|
+
url,
|
|
18
|
+
route,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# BookmarkRoute
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**route** | [**BookmarkRouteRoute**](BookmarkRouteRoute.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { BookmarkRoute } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: BookmarkRoute = {
|
|
16
|
+
route,
|
|
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)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# BookmarkRouteRoute
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**name** | **string** | | [default to undefined]
|
|
9
|
+
**params** | **{ [key: string]: any; }** | | [optional] [default to undefined]
|
|
10
|
+
**query** | **{ [key: string]: any; }** | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { BookmarkRouteRoute } from '@teemill/projects';
|
|
16
|
+
|
|
17
|
+
const instance: BookmarkRouteRoute = {
|
|
18
|
+
name,
|
|
19
|
+
params,
|
|
20
|
+
query,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# BookmarkTab
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**name** | **string** | | [default to undefined]
|
|
10
|
+
**sortOrder** | **number** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { BookmarkTab } from '@teemill/projects';
|
|
16
|
+
|
|
17
|
+
const instance: BookmarkTab = {
|
|
18
|
+
id,
|
|
19
|
+
name,
|
|
20
|
+
sortOrder,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# BookmarkTabs
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**tabs** | [**Array<BookmarkTab>**](BookmarkTab.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { BookmarkTabs } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: BookmarkTabs = {
|
|
16
|
+
tabs,
|
|
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)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# BookmarkUrl
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**url** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { BookmarkUrl } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: BookmarkUrl = {
|
|
16
|
+
url,
|
|
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)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Bookmarks
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**bookmarks** | [**Array<Bookmark>**](Bookmark.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { Bookmarks } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: Bookmarks = {
|
|
16
|
+
bookmarks,
|
|
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)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# CreateBookmarkRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**title** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**data** | [**BookmarkData**](BookmarkData.md) | | [default to undefined]
|
|
10
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**color** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**icon** | **string** | The icon name of the bookmark | [optional] [default to undefined]
|
|
13
|
+
**tabId** | **string** | The ID of the tab the bookmark belongs to | [optional] [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { CreateBookmarkRequest } from '@teemill/projects';
|
|
19
|
+
|
|
20
|
+
const instance: CreateBookmarkRequest = {
|
|
21
|
+
title,
|
|
22
|
+
data,
|
|
23
|
+
description,
|
|
24
|
+
color,
|
|
25
|
+
icon,
|
|
26
|
+
tabId,
|
|
27
|
+
};
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CreateInviteRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**email** | **string** | | [default to undefined]
|
|
9
|
+
**role** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { CreateInviteRequest } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: CreateInviteRequest = {
|
|
17
|
+
email,
|
|
18
|
+
role,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# CreateProjectRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**name** | **string** | | [default to undefined]
|
|
9
|
+
**template** | [**TemplateCode**](TemplateCode.md) | | [optional] [default to undefined]
|
|
10
|
+
**config** | **object** | | [optional] [default to undefined]
|
|
11
|
+
**platformId** | **string** | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { CreateProjectRequest } from '@teemill/projects';
|
|
17
|
+
|
|
18
|
+
const instance: CreateProjectRequest = {
|
|
19
|
+
name,
|
|
20
|
+
template,
|
|
21
|
+
config,
|
|
22
|
+
platformId,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CreateTaskRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**content** | **string** | | [default to undefined]
|
|
9
|
+
**status** | [**TaskStatus**](TaskStatus.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { CreateTaskRequest } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: CreateTaskRequest = {
|
|
17
|
+
content,
|
|
18
|
+
status,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ExportTasks202Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**message** | **string** | A message describing the export status | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { ExportTasks202Response } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: ExportTasks202Response = {
|
|
16
|
+
message,
|
|
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/docs/Icon.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Icon
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**prefix** | **string** | | [default to undefined]
|
|
9
|
+
**iconName** | **string** | | [default to undefined]
|
|
10
|
+
**icon** | **Array<any>** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { Icon } from '@teemill/projects';
|
|
16
|
+
|
|
17
|
+
const instance: Icon = {
|
|
18
|
+
prefix,
|
|
19
|
+
iconName,
|
|
20
|
+
icon,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# InstallTemplateRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**config** | **object** | | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { InstallTemplateRequest } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: InstallTemplateRequest = {
|
|
16
|
+
config,
|
|
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)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Integration
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **number** | | [optional] [readonly] [default to undefined]
|
|
9
|
+
**code** | **string** | | [default to undefined]
|
|
10
|
+
**config** | **object** | | [default to undefined]
|
|
11
|
+
**setupAt** | **string** | | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { Integration } from '@teemill/projects';
|
|
17
|
+
|
|
18
|
+
const instance: Integration = {
|
|
19
|
+
id,
|
|
20
|
+
code,
|
|
21
|
+
config,
|
|
22
|
+
setupAt,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# IntegrationsResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**integrations** | [**Array<Integration>**](Integration.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { IntegrationsResponse } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: IntegrationsResponse = {
|
|
16
|
+
integrations,
|
|
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)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# LegacyProjectLogo
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**url** | **string** | | [default to undefined]
|
|
9
|
+
**backgroundColor** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { LegacyProjectLogo } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: LegacyProjectLogo = {
|
|
17
|
+
url,
|
|
18
|
+
backgroundColor,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ListTasksResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**tasks** | [**Array<TaskSummary>**](TaskSummary.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { ListTasksResponse } from '@teemill/projects';
|
|
14
|
+
|
|
15
|
+
const instance: ListTasksResponse = {
|
|
16
|
+
tasks,
|
|
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)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# NullableIcon
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**prefix** | **string** | | [default to undefined]
|
|
9
|
+
**iconName** | **string** | | [default to undefined]
|
|
10
|
+
**icon** | **Array<any>** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { NullableIcon } from '@teemill/projects';
|
|
16
|
+
|
|
17
|
+
const instance: NullableIcon = {
|
|
18
|
+
prefix,
|
|
19
|
+
iconName,
|
|
20
|
+
icon,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[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/docs/OkrLevel.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# OkrLevel
|
|
2
|
+
|
|
3
|
+
Indicates whether the task is an OKR associated with the user
|
|
4
|
+
|
|
5
|
+
## Enum
|
|
6
|
+
|
|
7
|
+
* `Objective` (value: `'objective'`)
|
|
8
|
+
|
|
9
|
+
* `KeyResult` (value: `'key_result'`)
|
|
10
|
+
|
|
11
|
+
* `Task` (value: `'task'`)
|
|
12
|
+
|
|
13
|
+
[[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/docs/Project.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Project
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**name** | **string** | | [default to undefined]
|
|
10
|
+
**logo** | [**LegacyProjectLogo**](LegacyProjectLogo.md) | | [default to undefined]
|
|
11
|
+
**logos** | [**Array<ProjectLogo>**](ProjectLogo.md) | | [default to undefined]
|
|
12
|
+
**manager** | [**ProjectManager**](ProjectManager.md) | | [optional] [default to undefined]
|
|
13
|
+
**platform** | [**ProjectPlatform**](ProjectPlatform.md) | | [optional] [default to undefined]
|
|
14
|
+
**integrations** | **Array<string>** | | [optional] [default to undefined]
|
|
15
|
+
**currency** | [**ProjectCurrency**](ProjectCurrency.md) | | [optional] [default to undefined]
|
|
16
|
+
**publicKey** | **string** | The public API key for the project which can be used to access basic information about the project such as the store url | [optional] [default to undefined]
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { Project } from '@teemill/projects';
|
|
22
|
+
|
|
23
|
+
const instance: Project = {
|
|
24
|
+
id,
|
|
25
|
+
name,
|
|
26
|
+
logo,
|
|
27
|
+
logos,
|
|
28
|
+
manager,
|
|
29
|
+
platform,
|
|
30
|
+
integrations,
|
|
31
|
+
currency,
|
|
32
|
+
publicKey,
|
|
33
|
+
};
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ProjectCurrency
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**code** | **string** | | [default to undefined]
|
|
9
|
+
**symbol** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ProjectCurrency } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: ProjectCurrency = {
|
|
17
|
+
code,
|
|
18
|
+
symbol,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# ProjectInvite
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**inviteeEmail** | **string** | | [default to undefined]
|
|
10
|
+
**inviteeRole** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**createdAt** | **string** | | [default to undefined]
|
|
12
|
+
**expiresAt** | **string** | | [default to undefined]
|
|
13
|
+
**inviter** | [**ProjectUser**](ProjectUser.md) | | [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { ProjectInvite } from '@teemill/projects';
|
|
19
|
+
|
|
20
|
+
const instance: ProjectInvite = {
|
|
21
|
+
id,
|
|
22
|
+
inviteeEmail,
|
|
23
|
+
inviteeRole,
|
|
24
|
+
createdAt,
|
|
25
|
+
expiresAt,
|
|
26
|
+
inviter,
|
|
27
|
+
};
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ProjectInvites
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**invites** | [**Array<ProjectInvite>**](ProjectInvite.md) | | [default to undefined]
|
|
9
|
+
**nextPageToken** | **number** | The token referencing the next page number | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ProjectInvites } from '@teemill/projects';
|
|
15
|
+
|
|
16
|
+
const instance: ProjectInvites = {
|
|
17
|
+
invites,
|
|
18
|
+
nextPageToken,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|