@teemill/projects 1.28.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 +55 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +55 -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 +55 -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
|
*
|
|
@@ -825,6 +861,24 @@ export interface UpdateBookmarkRequest {
|
|
|
825
861
|
* @memberof UpdateBookmarkRequest
|
|
826
862
|
*/
|
|
827
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;
|
|
828
882
|
}
|
|
829
883
|
/**
|
|
830
884
|
*
|
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
|
*
|
|
@@ -801,6 +837,24 @@ export interface UpdateBookmarkRequest {
|
|
|
801
837
|
* @memberof UpdateBookmarkRequest
|
|
802
838
|
*/
|
|
803
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;
|
|
804
858
|
}
|
|
805
859
|
/**
|
|
806
860
|
*
|
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
|
*
|
|
@@ -801,6 +837,24 @@ export interface UpdateBookmarkRequest {
|
|
|
801
837
|
* @memberof UpdateBookmarkRequest
|
|
802
838
|
*/
|
|
803
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;
|
|
804
858
|
}
|
|
805
859
|
/**
|
|
806
860
|
*
|
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