@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
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/projects@1.36.0
1
+ ## @teemill/projects@1.38.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.36.0 --save
39
+ npm install @teemill/projects@1.38.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,3 +44,116 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
+
48
+ ### Documentation for API Endpoints
49
+
50
+ All URIs are relative to *https://localhost:8080*
51
+
52
+ Class | Method | HTTP request | Description
53
+ ------------ | ------------- | ------------- | -------------
54
+ *ProjectsApi* | [**createAuth**](docs/ProjectsApi.md#createauth) | **POST** /v1/projects/{project}/auth | Create auth token
55
+ *ProjectsApi* | [**createBookmark**](docs/ProjectsApi.md#createbookmark) | **POST** /v1/projects/{project}/bookmarks | Create bookmark
56
+ *ProjectsApi* | [**createInvite**](docs/ProjectsApi.md#createinvite) | **POST** /v1/projects/{project}/invites | Creates an invite
57
+ *ProjectsApi* | [**createProject**](docs/ProjectsApi.md#createproject) | **POST** /v1/projects | Create project
58
+ *ProjectsApi* | [**createTask**](docs/ProjectsApi.md#createtask) | **POST** /v1/projects/{project}/tasks | Create Task
59
+ *ProjectsApi* | [**deleteAuth**](docs/ProjectsApi.md#deleteauth) | **DELETE** /v1/projects/{project}/auth/{auth} | Delete auth token
60
+ *ProjectsApi* | [**deleteBookmark**](docs/ProjectsApi.md#deletebookmark) | **DELETE** /v1/projects/{project}/bookmarks/{id} | Delete bookmark
61
+ *ProjectsApi* | [**deleteInvite**](docs/ProjectsApi.md#deleteinvite) | **DELETE** /v1/projects/{project}/invites/{invite} | Deletes an invite
62
+ *ProjectsApi* | [**deleteProject**](docs/ProjectsApi.md#deleteproject) | **DELETE** /v1/projects/{project} | Delete project
63
+ *ProjectsApi* | [**deleteTask**](docs/ProjectsApi.md#deletetask) | **DELETE** /v1/projects/{project}/tasks/{id} | Delete Task
64
+ *ProjectsApi* | [**deleteUser**](docs/ProjectsApi.md#deleteuser) | **DELETE** /v1/projects/{project}/users/{user} | Delete a user by ID
65
+ *ProjectsApi* | [**exportTasks**](docs/ProjectsApi.md#exporttasks) | **GET** /v1/projects/{project}/tasks/export | Export all tasks
66
+ *ProjectsApi* | [**getAuth**](docs/ProjectsApi.md#getauth) | **GET** /v1/projects/{project}/auth | List auth tokens
67
+ *ProjectsApi* | [**getIntegration**](docs/ProjectsApi.md#getintegration) | **GET** /v1/projects/{project}/integrations/{integration} | Get integration
68
+ *ProjectsApi* | [**getIntegrations**](docs/ProjectsApi.md#getintegrations) | **GET** /v1/projects/{project}/integrations | List integrations
69
+ *ProjectsApi* | [**getInvites**](docs/ProjectsApi.md#getinvites) | **GET** /v1/projects/{project}/invites | List Invites
70
+ *ProjectsApi* | [**getProject**](docs/ProjectsApi.md#getproject) | **GET** /v1/projects/{project} | Get project
71
+ *ProjectsApi* | [**getProjects**](docs/ProjectsApi.md#getprojects) | **GET** /v1/projects | List projects
72
+ *ProjectsApi* | [**getTask**](docs/ProjectsApi.md#gettask) | **GET** /v1/projects/{project}/tasks/{id} | Get Task
73
+ *ProjectsApi* | [**getTemplates**](docs/ProjectsApi.md#gettemplates) | **GET** /v1/projects/templates | List templates
74
+ *ProjectsApi* | [**getUser**](docs/ProjectsApi.md#getuser) | **GET** /v1/projects/{project}/users/{user} | Get a user
75
+ *ProjectsApi* | [**getUsers**](docs/ProjectsApi.md#getusers) | **GET** /v1/projects/{project}/users | List project users
76
+ *ProjectsApi* | [**installIntegration**](docs/ProjectsApi.md#installintegration) | **POST** /v1/projects/{project}/integrations/{integration} | Install integration
77
+ *ProjectsApi* | [**installTemplate**](docs/ProjectsApi.md#installtemplate) | **POST** /v1/projects/{project}/templates/{template} | Install integration template
78
+ *ProjectsApi* | [**listBookmarks**](docs/ProjectsApi.md#listbookmarks) | **GET** /v1/projects/{project}/bookmarks | List bookmarks
79
+ *ProjectsApi* | [**listBookmarktabs**](docs/ProjectsApi.md#listbookmarktabs) | **GET** /v1/projects/{project}/bookmarktabs | List bookmark tabs
80
+ *ProjectsApi* | [**listTasks**](docs/ProjectsApi.md#listtasks) | **GET** /v1/projects/{project}/tasks | List Tasks
81
+ *ProjectsApi* | [**setupIntegration**](docs/ProjectsApi.md#setupintegration) | **POST** /v1/projects/{project}/integrations/{integration}/setup | Setup integration
82
+ *ProjectsApi* | [**uninstallIntegration**](docs/ProjectsApi.md#uninstallintegration) | **DELETE** /v1/projects/{project}/integrations/{integration} | Uninstall integration
83
+ *ProjectsApi* | [**updateBookmark**](docs/ProjectsApi.md#updatebookmark) | **PATCH** /v1/projects/{project}/bookmarks/{id} | Update bookmark
84
+ *ProjectsApi* | [**updateBookmarkTabs**](docs/ProjectsApi.md#updatebookmarktabs) | **PUT** /v1/projects/{project}/bookmarktabs | Update bookmark tabs
85
+ *ProjectsApi* | [**updateIntegration**](docs/ProjectsApi.md#updateintegration) | **PATCH** /v1/projects/{project}/integrations/{integration} | Update integration
86
+ *ProjectsApi* | [**updateProject**](docs/ProjectsApi.md#updateproject) | **PATCH** /v1/projects/{project} | Update project
87
+ *ProjectsApi* | [**updateTask**](docs/ProjectsApi.md#updatetask) | **PATCH** /v1/projects/{project}/tasks/{id} | Update Task
88
+
89
+
90
+ ### Documentation For Models
91
+
92
+ - [ApiError](docs/ApiError.md)
93
+ - [Auth](docs/Auth.md)
94
+ - [AuthResponse](docs/AuthResponse.md)
95
+ - [Bookmark](docs/Bookmark.md)
96
+ - [BookmarkData](docs/BookmarkData.md)
97
+ - [BookmarkRoute](docs/BookmarkRoute.md)
98
+ - [BookmarkRouteRoute](docs/BookmarkRouteRoute.md)
99
+ - [BookmarkTab](docs/BookmarkTab.md)
100
+ - [BookmarkTabs](docs/BookmarkTabs.md)
101
+ - [BookmarkUrl](docs/BookmarkUrl.md)
102
+ - [Bookmarks](docs/Bookmarks.md)
103
+ - [CreateBookmarkRequest](docs/CreateBookmarkRequest.md)
104
+ - [CreateInviteRequest](docs/CreateInviteRequest.md)
105
+ - [CreateProjectRequest](docs/CreateProjectRequest.md)
106
+ - [CreateTaskRequest](docs/CreateTaskRequest.md)
107
+ - [ExportTasks202Response](docs/ExportTasks202Response.md)
108
+ - [Icon](docs/Icon.md)
109
+ - [InstallTemplateRequest](docs/InstallTemplateRequest.md)
110
+ - [Integration](docs/Integration.md)
111
+ - [IntegrationsResponse](docs/IntegrationsResponse.md)
112
+ - [LegacyProjectLogo](docs/LegacyProjectLogo.md)
113
+ - [ListTasksResponse](docs/ListTasksResponse.md)
114
+ - [NullableIcon](docs/NullableIcon.md)
115
+ - [Project](docs/Project.md)
116
+ - [ProjectCurrency](docs/ProjectCurrency.md)
117
+ - [ProjectInvite](docs/ProjectInvite.md)
118
+ - [ProjectInvites](docs/ProjectInvites.md)
119
+ - [ProjectLogo](docs/ProjectLogo.md)
120
+ - [ProjectManager](docs/ProjectManager.md)
121
+ - [ProjectPlatform](docs/ProjectPlatform.md)
122
+ - [ProjectUser](docs/ProjectUser.md)
123
+ - [ProjectUserAvatar](docs/ProjectUserAvatar.md)
124
+ - [ProjectUsers](docs/ProjectUsers.md)
125
+ - [ProjectsResponse](docs/ProjectsResponse.md)
126
+ - [Task](docs/Task.md)
127
+ - [TaskStatus](docs/TaskStatus.md)
128
+ - [TaskSummary](docs/TaskSummary.md)
129
+ - [Template](docs/Template.md)
130
+ - [TemplateCode](docs/TemplateCode.md)
131
+ - [TemplatesResponse](docs/TemplatesResponse.md)
132
+ - [UpdateBookmarkRequest](docs/UpdateBookmarkRequest.md)
133
+ - [UpdateBookmarkTabsRequest](docs/UpdateBookmarkTabsRequest.md)
134
+ - [UpdateBookmarkTabsRequestTabsInner](docs/UpdateBookmarkTabsRequestTabsInner.md)
135
+ - [UpdateIntegrationRequest](docs/UpdateIntegrationRequest.md)
136
+ - [UpdateProjectRequest](docs/UpdateProjectRequest.md)
137
+ - [UpdateTaskRequest](docs/UpdateTaskRequest.md)
138
+
139
+
140
+ <a id="documentation-for-authorization"></a>
141
+ ## Documentation For Authorization
142
+
143
+
144
+ Authentication schemes defined for the API:
145
+ <a id="api-key"></a>
146
+ ### api-key
147
+
148
+ - **Type**: API key
149
+ - **API key parameter name**: Authorization
150
+ - **Location**: HTTP header
151
+
152
+ <a id="session-oauth"></a>
153
+ ### session-oauth
154
+
155
+ - **Type**: OAuth
156
+ - **Flow**: password
157
+ - **Authorization URL**:
158
+ - **Scopes**: N/A
159
+
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.36.0
7
+ * The version of the OpenAPI document: 1.38.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -128,6 +128,18 @@ export interface Bookmark {
128
128
  * @memberof Bookmark
129
129
  */
130
130
  'tabId': string | null;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof Bookmark
135
+ */
136
+ 'sortOrder': number;
137
+ /**
138
+ *
139
+ * @type {number}
140
+ * @memberof Bookmark
141
+ */
142
+ 'tabSortOrder': number;
131
143
  }
132
144
  /**
133
145
  * @type BookmarkData
@@ -542,6 +554,12 @@ export interface Project {
542
554
  * @memberof Project
543
555
  */
544
556
  'manager'?: ProjectManager | null;
557
+ /**
558
+ *
559
+ * @type {ProjectPlatform}
560
+ * @memberof Project
561
+ */
562
+ 'platform'?: ProjectPlatform | null;
545
563
  /**
546
564
  *
547
565
  * @type {Array<string>}
@@ -686,6 +704,25 @@ export interface ProjectManager {
686
704
  */
687
705
  'logos': Array<ProjectLogo>;
688
706
  }
707
+ /**
708
+ *
709
+ * @export
710
+ * @interface ProjectPlatform
711
+ */
712
+ export interface ProjectPlatform {
713
+ /**
714
+ *
715
+ * @type {string}
716
+ * @memberof ProjectPlatform
717
+ */
718
+ 'id'?: string;
719
+ /**
720
+ *
721
+ * @type {string}
722
+ * @memberof ProjectPlatform
723
+ */
724
+ 'name'?: string;
725
+ }
689
726
  /**
690
727
  *
691
728
  * @export
@@ -1054,6 +1091,18 @@ export interface UpdateBookmarkRequest {
1054
1091
  * @memberof UpdateBookmarkRequest
1055
1092
  */
1056
1093
  'tabId'?: string | null;
1094
+ /**
1095
+ * The sort order of the bookmark in all tab
1096
+ * @type {number}
1097
+ * @memberof UpdateBookmarkRequest
1098
+ */
1099
+ 'sortOrder'?: number | null;
1100
+ /**
1101
+ * The sort order of the bookmark in the custom or favourite tab
1102
+ * @type {number}
1103
+ * @memberof UpdateBookmarkRequest
1104
+ */
1105
+ 'tabSortOrder'?: number | null;
1057
1106
  }
1058
1107
  /**
1059
1108
  *
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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -118,6 +118,18 @@ export interface Bookmark {
118
118
  * @memberof Bookmark
119
119
  */
120
120
  'tabId': string | null;
121
+ /**
122
+ *
123
+ * @type {number}
124
+ * @memberof Bookmark
125
+ */
126
+ 'sortOrder': number;
127
+ /**
128
+ *
129
+ * @type {number}
130
+ * @memberof Bookmark
131
+ */
132
+ 'tabSortOrder': number;
121
133
  }
122
134
  /**
123
135
  * @type BookmarkData
@@ -531,6 +543,12 @@ export interface Project {
531
543
  * @memberof Project
532
544
  */
533
545
  'manager'?: ProjectManager | null;
546
+ /**
547
+ *
548
+ * @type {ProjectPlatform}
549
+ * @memberof Project
550
+ */
551
+ 'platform'?: ProjectPlatform | null;
534
552
  /**
535
553
  *
536
554
  * @type {Array<string>}
@@ -677,6 +695,25 @@ export interface ProjectManager {
677
695
  */
678
696
  'logos': Array<ProjectLogo>;
679
697
  }
698
+ /**
699
+ *
700
+ * @export
701
+ * @interface ProjectPlatform
702
+ */
703
+ export interface ProjectPlatform {
704
+ /**
705
+ *
706
+ * @type {string}
707
+ * @memberof ProjectPlatform
708
+ */
709
+ 'id'?: string;
710
+ /**
711
+ *
712
+ * @type {string}
713
+ * @memberof ProjectPlatform
714
+ */
715
+ 'name'?: string;
716
+ }
680
717
  /**
681
718
  *
682
719
  * @export
@@ -1028,6 +1065,18 @@ export interface UpdateBookmarkRequest {
1028
1065
  * @memberof UpdateBookmarkRequest
1029
1066
  */
1030
1067
  'tabId'?: string | null;
1068
+ /**
1069
+ * The sort order of the bookmark in all tab
1070
+ * @type {number}
1071
+ * @memberof UpdateBookmarkRequest
1072
+ */
1073
+ 'sortOrder'?: number | null;
1074
+ /**
1075
+ * The sort order of the bookmark in the custom or favourite tab
1076
+ * @type {number}
1077
+ * @memberof UpdateBookmarkRequest
1078
+ */
1079
+ 'tabSortOrder'?: number | null;
1031
1080
  }
1032
1081
  /**
1033
1082
  *
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.36.0
8
+ * The version of the OpenAPI document: 1.38.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
8
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
8
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
8
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -118,6 +118,18 @@ export interface Bookmark {
118
118
  * @memberof Bookmark
119
119
  */
120
120
  'tabId': string | null;
121
+ /**
122
+ *
123
+ * @type {number}
124
+ * @memberof Bookmark
125
+ */
126
+ 'sortOrder': number;
127
+ /**
128
+ *
129
+ * @type {number}
130
+ * @memberof Bookmark
131
+ */
132
+ 'tabSortOrder': number;
121
133
  }
122
134
  /**
123
135
  * @type BookmarkData
@@ -531,6 +543,12 @@ export interface Project {
531
543
  * @memberof Project
532
544
  */
533
545
  'manager'?: ProjectManager | null;
546
+ /**
547
+ *
548
+ * @type {ProjectPlatform}
549
+ * @memberof Project
550
+ */
551
+ 'platform'?: ProjectPlatform | null;
534
552
  /**
535
553
  *
536
554
  * @type {Array<string>}
@@ -677,6 +695,25 @@ export interface ProjectManager {
677
695
  */
678
696
  'logos': Array<ProjectLogo>;
679
697
  }
698
+ /**
699
+ *
700
+ * @export
701
+ * @interface ProjectPlatform
702
+ */
703
+ export interface ProjectPlatform {
704
+ /**
705
+ *
706
+ * @type {string}
707
+ * @memberof ProjectPlatform
708
+ */
709
+ 'id'?: string;
710
+ /**
711
+ *
712
+ * @type {string}
713
+ * @memberof ProjectPlatform
714
+ */
715
+ 'name'?: string;
716
+ }
680
717
  /**
681
718
  *
682
719
  * @export
@@ -1028,6 +1065,18 @@ export interface UpdateBookmarkRequest {
1028
1065
  * @memberof UpdateBookmarkRequest
1029
1066
  */
1030
1067
  'tabId'?: string | null;
1068
+ /**
1069
+ * The sort order of the bookmark in all tab
1070
+ * @type {number}
1071
+ * @memberof UpdateBookmarkRequest
1072
+ */
1073
+ 'sortOrder'?: number | null;
1074
+ /**
1075
+ * The sort order of the bookmark in the custom or favourite tab
1076
+ * @type {number}
1077
+ * @memberof UpdateBookmarkRequest
1078
+ */
1079
+ 'tabSortOrder'?: number | null;
1031
1080
  }
1032
1081
  /**
1033
1082
  *
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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
7
+ * The version of the OpenAPI document: 1.38.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.36.0
5
+ * The version of the OpenAPI document: 1.38.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.36.0
8
+ * The version of the OpenAPI document: 1.38.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,22 @@
1
+ # ApiError
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **code** | **string** | | [optional] [default to undefined]
9
+ **message** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ApiError } from '@teemill/projects';
15
+
16
+ const instance: ApiError = {
17
+ code,
18
+ message,
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)
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&lt;Auth&gt;**](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)