@teemill/projects 1.36.0 → 1.38.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.
Files changed (74) hide show
  1. package/README.md +115 -2
  2. package/api.ts +50 -1
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +50 -1
  7. package/dist/api.js +1 -1
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +50 -1
  15. package/dist/esm/api.js +1 -1
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/ApiError.md +22 -0
  27. package/docs/Auth.md +24 -0
  28. package/docs/AuthResponse.md +20 -0
  29. package/docs/Bookmark.md +36 -0
  30. package/docs/BookmarkData.md +22 -0
  31. package/docs/BookmarkRoute.md +20 -0
  32. package/docs/BookmarkRouteRoute.md +24 -0
  33. package/docs/BookmarkTab.md +24 -0
  34. package/docs/BookmarkTabs.md +20 -0
  35. package/docs/BookmarkUrl.md +20 -0
  36. package/docs/Bookmarks.md +20 -0
  37. package/docs/CreateBookmarkRequest.md +30 -0
  38. package/docs/CreateInviteRequest.md +22 -0
  39. package/docs/CreateProjectRequest.md +26 -0
  40. package/docs/CreateTaskRequest.md +22 -0
  41. package/docs/ExportTasks202Response.md +20 -0
  42. package/docs/Icon.md +24 -0
  43. package/docs/InstallTemplateRequest.md +20 -0
  44. package/docs/Integration.md +26 -0
  45. package/docs/IntegrationsResponse.md +20 -0
  46. package/docs/LegacyProjectLogo.md +22 -0
  47. package/docs/ListTasksResponse.md +20 -0
  48. package/docs/NullableIcon.md +24 -0
  49. package/docs/Project.md +36 -0
  50. package/docs/ProjectCurrency.md +22 -0
  51. package/docs/ProjectInvite.md +30 -0
  52. package/docs/ProjectInvites.md +22 -0
  53. package/docs/ProjectLogo.md +22 -0
  54. package/docs/ProjectManager.md +24 -0
  55. package/docs/ProjectPlatform.md +22 -0
  56. package/docs/ProjectUser.md +34 -0
  57. package/docs/ProjectUserAvatar.md +20 -0
  58. package/docs/ProjectUsers.md +22 -0
  59. package/docs/ProjectsApi.md +2023 -0
  60. package/docs/ProjectsResponse.md +20 -0
  61. package/docs/Task.md +40 -0
  62. package/docs/TaskStatus.md +14 -0
  63. package/docs/TaskSummary.md +34 -0
  64. package/docs/Template.md +28 -0
  65. package/docs/TemplateCode.md +16 -0
  66. package/docs/TemplatesResponse.md +20 -0
  67. package/docs/UpdateBookmarkRequest.md +34 -0
  68. package/docs/UpdateBookmarkTabsRequest.md +20 -0
  69. package/docs/UpdateBookmarkTabsRequestTabsInner.md +24 -0
  70. package/docs/UpdateIntegrationRequest.md +20 -0
  71. package/docs/UpdateProjectRequest.md +22 -0
  72. package/docs/UpdateTaskRequest.md +32 -0
  73. package/index.ts +1 -1
  74. package/package.json +1 -1
@@ -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)
@@ -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)
@@ -0,0 +1,22 @@
1
+ # ProjectLogo
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **url** | **string** | | [default to undefined]
9
+ **meta** | **{ [key: string]: string; }** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ProjectLogo } from '@teemill/projects';
15
+
16
+ const instance: ProjectLogo = {
17
+ url,
18
+ meta,
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,24 @@
1
+ # ProjectManager
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [default to undefined]
9
+ **name** | **string** | | [default to undefined]
10
+ **logos** | [**Array<ProjectLogo>**](ProjectLogo.md) | | [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { ProjectManager } from '@teemill/projects';
16
+
17
+ const instance: ProjectManager = {
18
+ id,
19
+ name,
20
+ logos,
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,22 @@
1
+ # ProjectPlatform
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [optional] [default to undefined]
9
+ **name** | **string** | | [optional] [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ProjectPlatform } from '@teemill/projects';
15
+
16
+ const instance: ProjectPlatform = {
17
+ id,
18
+ name,
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)