@teemill/projects 1.27.0 → 1.29.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 +2 -2
- package/api.ts +73 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +73 -1
- package/dist/api.js +1 -1
- 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 +73 -1
- package/dist/esm/api.js +1 -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/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.29.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.29.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.29.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -104,6 +104,24 @@ export interface Bookmark {
|
|
|
104
104
|
* @memberof Bookmark
|
|
105
105
|
*/
|
|
106
106
|
'data': BookmarkData;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof Bookmark
|
|
111
|
+
*/
|
|
112
|
+
'description': string | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof Bookmark
|
|
117
|
+
*/
|
|
118
|
+
'color': string | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {Icon}
|
|
122
|
+
* @memberof Bookmark
|
|
123
|
+
*/
|
|
124
|
+
'icon': Icon | null;
|
|
107
125
|
}
|
|
108
126
|
/**
|
|
109
127
|
* @type BookmarkData
|
|
@@ -193,6 +211,24 @@ export interface CreateBookmarkRequest {
|
|
|
193
211
|
* @memberof CreateBookmarkRequest
|
|
194
212
|
*/
|
|
195
213
|
'data': BookmarkData;
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @type {string}
|
|
217
|
+
* @memberof CreateBookmarkRequest
|
|
218
|
+
*/
|
|
219
|
+
'description'?: string;
|
|
220
|
+
/**
|
|
221
|
+
*
|
|
222
|
+
* @type {string}
|
|
223
|
+
* @memberof CreateBookmarkRequest
|
|
224
|
+
*/
|
|
225
|
+
'color'?: string;
|
|
226
|
+
/**
|
|
227
|
+
* The icon name of the bookmark
|
|
228
|
+
* @type {string}
|
|
229
|
+
* @memberof CreateBookmarkRequest
|
|
230
|
+
*/
|
|
231
|
+
'icon'?: string;
|
|
196
232
|
}
|
|
197
233
|
/**
|
|
198
234
|
*
|
|
@@ -707,6 +743,18 @@ export interface Task {
|
|
|
707
743
|
* @memberof Task
|
|
708
744
|
*/
|
|
709
745
|
'chatChannel': string | null;
|
|
746
|
+
/**
|
|
747
|
+
* The unique id of the user who owns the task
|
|
748
|
+
* @type {string}
|
|
749
|
+
* @memberof Task
|
|
750
|
+
*/
|
|
751
|
+
'owner': string | null;
|
|
752
|
+
/**
|
|
753
|
+
*
|
|
754
|
+
* @type {string}
|
|
755
|
+
* @memberof Task
|
|
756
|
+
*/
|
|
757
|
+
'createdAt': string;
|
|
710
758
|
}
|
|
711
759
|
|
|
712
760
|
|
|
@@ -813,6 +861,24 @@ export interface UpdateBookmarkRequest {
|
|
|
813
861
|
* @memberof UpdateBookmarkRequest
|
|
814
862
|
*/
|
|
815
863
|
'data'?: BookmarkData;
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @type {string}
|
|
867
|
+
* @memberof UpdateBookmarkRequest
|
|
868
|
+
*/
|
|
869
|
+
'description'?: string;
|
|
870
|
+
/**
|
|
871
|
+
*
|
|
872
|
+
* @type {string}
|
|
873
|
+
* @memberof UpdateBookmarkRequest
|
|
874
|
+
*/
|
|
875
|
+
'color'?: string;
|
|
876
|
+
/**
|
|
877
|
+
* The icon name of the bookmark
|
|
878
|
+
* @type {string}
|
|
879
|
+
* @memberof UpdateBookmarkRequest
|
|
880
|
+
*/
|
|
881
|
+
'icon'?: string;
|
|
816
882
|
}
|
|
817
883
|
/**
|
|
818
884
|
*
|
|
@@ -870,6 +936,12 @@ export interface UpdateTaskRequest {
|
|
|
870
936
|
* @memberof UpdateTaskRequest
|
|
871
937
|
*/
|
|
872
938
|
'sortOrder'?: number;
|
|
939
|
+
/**
|
|
940
|
+
* The unique id of the user who owns the task
|
|
941
|
+
* @type {string}
|
|
942
|
+
* @memberof UpdateTaskRequest
|
|
943
|
+
*/
|
|
944
|
+
'owner'?: string | null;
|
|
873
945
|
}
|
|
874
946
|
|
|
875
947
|
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.29.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -94,6 +94,24 @@ export interface Bookmark {
|
|
|
94
94
|
* @memberof Bookmark
|
|
95
95
|
*/
|
|
96
96
|
'data': BookmarkData;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof Bookmark
|
|
101
|
+
*/
|
|
102
|
+
'description': string | null;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof Bookmark
|
|
107
|
+
*/
|
|
108
|
+
'color': string | null;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {Icon}
|
|
112
|
+
* @memberof Bookmark
|
|
113
|
+
*/
|
|
114
|
+
'icon': Icon | null;
|
|
97
115
|
}
|
|
98
116
|
/**
|
|
99
117
|
* @type BookmarkData
|
|
@@ -186,6 +204,24 @@ export interface CreateBookmarkRequest {
|
|
|
186
204
|
* @memberof CreateBookmarkRequest
|
|
187
205
|
*/
|
|
188
206
|
'data': BookmarkData;
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @type {string}
|
|
210
|
+
* @memberof CreateBookmarkRequest
|
|
211
|
+
*/
|
|
212
|
+
'description'?: string;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @type {string}
|
|
216
|
+
* @memberof CreateBookmarkRequest
|
|
217
|
+
*/
|
|
218
|
+
'color'?: string;
|
|
219
|
+
/**
|
|
220
|
+
* The icon name of the bookmark
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof CreateBookmarkRequest
|
|
223
|
+
*/
|
|
224
|
+
'icon'?: string;
|
|
189
225
|
}
|
|
190
226
|
/**
|
|
191
227
|
*
|
|
@@ -695,6 +731,18 @@ export interface Task {
|
|
|
695
731
|
* @memberof Task
|
|
696
732
|
*/
|
|
697
733
|
'chatChannel': string | null;
|
|
734
|
+
/**
|
|
735
|
+
* The unique id of the user who owns the task
|
|
736
|
+
* @type {string}
|
|
737
|
+
* @memberof Task
|
|
738
|
+
*/
|
|
739
|
+
'owner': string | null;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {string}
|
|
743
|
+
* @memberof Task
|
|
744
|
+
*/
|
|
745
|
+
'createdAt': string;
|
|
698
746
|
}
|
|
699
747
|
/**
|
|
700
748
|
*
|
|
@@ -789,6 +837,24 @@ export interface UpdateBookmarkRequest {
|
|
|
789
837
|
* @memberof UpdateBookmarkRequest
|
|
790
838
|
*/
|
|
791
839
|
'data'?: BookmarkData;
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {string}
|
|
843
|
+
* @memberof UpdateBookmarkRequest
|
|
844
|
+
*/
|
|
845
|
+
'description'?: string;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof UpdateBookmarkRequest
|
|
850
|
+
*/
|
|
851
|
+
'color'?: string;
|
|
852
|
+
/**
|
|
853
|
+
* The icon name of the bookmark
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof UpdateBookmarkRequest
|
|
856
|
+
*/
|
|
857
|
+
'icon'?: string;
|
|
792
858
|
}
|
|
793
859
|
/**
|
|
794
860
|
*
|
|
@@ -846,6 +912,12 @@ export interface UpdateTaskRequest {
|
|
|
846
912
|
* @memberof UpdateTaskRequest
|
|
847
913
|
*/
|
|
848
914
|
'sortOrder'?: number;
|
|
915
|
+
/**
|
|
916
|
+
* The unique id of the user who owns the task
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof UpdateTaskRequest
|
|
919
|
+
*/
|
|
920
|
+
'owner'?: string | null;
|
|
849
921
|
}
|
|
850
922
|
/**
|
|
851
923
|
* ProjectsApi - axios parameter creator
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
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.
|
|
5
|
+
* The version of the OpenAPI document: 1.29.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -94,6 +94,24 @@ export interface Bookmark {
|
|
|
94
94
|
* @memberof Bookmark
|
|
95
95
|
*/
|
|
96
96
|
'data': BookmarkData;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof Bookmark
|
|
101
|
+
*/
|
|
102
|
+
'description': string | null;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof Bookmark
|
|
107
|
+
*/
|
|
108
|
+
'color': string | null;
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @type {Icon}
|
|
112
|
+
* @memberof Bookmark
|
|
113
|
+
*/
|
|
114
|
+
'icon': Icon | null;
|
|
97
115
|
}
|
|
98
116
|
/**
|
|
99
117
|
* @type BookmarkData
|
|
@@ -186,6 +204,24 @@ export interface CreateBookmarkRequest {
|
|
|
186
204
|
* @memberof CreateBookmarkRequest
|
|
187
205
|
*/
|
|
188
206
|
'data': BookmarkData;
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @type {string}
|
|
210
|
+
* @memberof CreateBookmarkRequest
|
|
211
|
+
*/
|
|
212
|
+
'description'?: string;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @type {string}
|
|
216
|
+
* @memberof CreateBookmarkRequest
|
|
217
|
+
*/
|
|
218
|
+
'color'?: string;
|
|
219
|
+
/**
|
|
220
|
+
* The icon name of the bookmark
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof CreateBookmarkRequest
|
|
223
|
+
*/
|
|
224
|
+
'icon'?: string;
|
|
189
225
|
}
|
|
190
226
|
/**
|
|
191
227
|
*
|
|
@@ -695,6 +731,18 @@ export interface Task {
|
|
|
695
731
|
* @memberof Task
|
|
696
732
|
*/
|
|
697
733
|
'chatChannel': string | null;
|
|
734
|
+
/**
|
|
735
|
+
* The unique id of the user who owns the task
|
|
736
|
+
* @type {string}
|
|
737
|
+
* @memberof Task
|
|
738
|
+
*/
|
|
739
|
+
'owner': string | null;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {string}
|
|
743
|
+
* @memberof Task
|
|
744
|
+
*/
|
|
745
|
+
'createdAt': string;
|
|
698
746
|
}
|
|
699
747
|
/**
|
|
700
748
|
*
|
|
@@ -789,6 +837,24 @@ export interface UpdateBookmarkRequest {
|
|
|
789
837
|
* @memberof UpdateBookmarkRequest
|
|
790
838
|
*/
|
|
791
839
|
'data'?: BookmarkData;
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {string}
|
|
843
|
+
* @memberof UpdateBookmarkRequest
|
|
844
|
+
*/
|
|
845
|
+
'description'?: string;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof UpdateBookmarkRequest
|
|
850
|
+
*/
|
|
851
|
+
'color'?: string;
|
|
852
|
+
/**
|
|
853
|
+
* The icon name of the bookmark
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof UpdateBookmarkRequest
|
|
856
|
+
*/
|
|
857
|
+
'icon'?: string;
|
|
792
858
|
}
|
|
793
859
|
/**
|
|
794
860
|
*
|
|
@@ -846,6 +912,12 @@ export interface UpdateTaskRequest {
|
|
|
846
912
|
* @memberof UpdateTaskRequest
|
|
847
913
|
*/
|
|
848
914
|
'sortOrder'?: number;
|
|
915
|
+
/**
|
|
916
|
+
* The unique id of the user who owns the task
|
|
917
|
+
* @type {string}
|
|
918
|
+
* @memberof UpdateTaskRequest
|
|
919
|
+
*/
|
|
920
|
+
'owner'?: string | null;
|
|
849
921
|
}
|
|
850
922
|
/**
|
|
851
923
|
* ProjectsApi - axios parameter creator
|
package/dist/esm/api.js
CHANGED
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/index.ts
CHANGED