@teemill/projects 1.28.0 → 1.30.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 +67 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +67 -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 +67 -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.30.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.30.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.30.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
|
*
|
|
@@ -713,6 +749,12 @@ export interface Task {
|
|
|
713
749
|
* @memberof Task
|
|
714
750
|
*/
|
|
715
751
|
'owner': string | null;
|
|
752
|
+
/**
|
|
753
|
+
* The estimated hours to complete the task
|
|
754
|
+
* @type {number}
|
|
755
|
+
* @memberof Task
|
|
756
|
+
*/
|
|
757
|
+
'estimatedHours': number | null;
|
|
716
758
|
/**
|
|
717
759
|
*
|
|
718
760
|
* @type {string}
|
|
@@ -825,6 +867,24 @@ export interface UpdateBookmarkRequest {
|
|
|
825
867
|
* @memberof UpdateBookmarkRequest
|
|
826
868
|
*/
|
|
827
869
|
'data'?: BookmarkData;
|
|
870
|
+
/**
|
|
871
|
+
*
|
|
872
|
+
* @type {string}
|
|
873
|
+
* @memberof UpdateBookmarkRequest
|
|
874
|
+
*/
|
|
875
|
+
'description'?: string;
|
|
876
|
+
/**
|
|
877
|
+
*
|
|
878
|
+
* @type {string}
|
|
879
|
+
* @memberof UpdateBookmarkRequest
|
|
880
|
+
*/
|
|
881
|
+
'color'?: string;
|
|
882
|
+
/**
|
|
883
|
+
* The icon name of the bookmark
|
|
884
|
+
* @type {string}
|
|
885
|
+
* @memberof UpdateBookmarkRequest
|
|
886
|
+
*/
|
|
887
|
+
'icon'?: string;
|
|
828
888
|
}
|
|
829
889
|
/**
|
|
830
890
|
*
|
|
@@ -888,6 +948,12 @@ export interface UpdateTaskRequest {
|
|
|
888
948
|
* @memberof UpdateTaskRequest
|
|
889
949
|
*/
|
|
890
950
|
'owner'?: string | null;
|
|
951
|
+
/**
|
|
952
|
+
* The estimated hours to complete the task
|
|
953
|
+
* @type {number}
|
|
954
|
+
* @memberof UpdateTaskRequest
|
|
955
|
+
*/
|
|
956
|
+
'estimatedHours'?: number | null;
|
|
891
957
|
}
|
|
892
958
|
|
|
893
959
|
|
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.30.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
|
*
|
|
@@ -701,6 +737,12 @@ export interface Task {
|
|
|
701
737
|
* @memberof Task
|
|
702
738
|
*/
|
|
703
739
|
'owner': string | null;
|
|
740
|
+
/**
|
|
741
|
+
* The estimated hours to complete the task
|
|
742
|
+
* @type {number}
|
|
743
|
+
* @memberof Task
|
|
744
|
+
*/
|
|
745
|
+
'estimatedHours': number | null;
|
|
704
746
|
/**
|
|
705
747
|
*
|
|
706
748
|
* @type {string}
|
|
@@ -801,6 +843,24 @@ export interface UpdateBookmarkRequest {
|
|
|
801
843
|
* @memberof UpdateBookmarkRequest
|
|
802
844
|
*/
|
|
803
845
|
'data'?: BookmarkData;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof UpdateBookmarkRequest
|
|
850
|
+
*/
|
|
851
|
+
'description'?: string;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof UpdateBookmarkRequest
|
|
856
|
+
*/
|
|
857
|
+
'color'?: string;
|
|
858
|
+
/**
|
|
859
|
+
* The icon name of the bookmark
|
|
860
|
+
* @type {string}
|
|
861
|
+
* @memberof UpdateBookmarkRequest
|
|
862
|
+
*/
|
|
863
|
+
'icon'?: string;
|
|
804
864
|
}
|
|
805
865
|
/**
|
|
806
866
|
*
|
|
@@ -864,6 +924,12 @@ export interface UpdateTaskRequest {
|
|
|
864
924
|
* @memberof UpdateTaskRequest
|
|
865
925
|
*/
|
|
866
926
|
'owner'?: string | null;
|
|
927
|
+
/**
|
|
928
|
+
* The estimated hours to complete the task
|
|
929
|
+
* @type {number}
|
|
930
|
+
* @memberof UpdateTaskRequest
|
|
931
|
+
*/
|
|
932
|
+
'estimatedHours'?: number | null;
|
|
867
933
|
}
|
|
868
934
|
/**
|
|
869
935
|
* 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.30.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
|
*
|
|
@@ -701,6 +737,12 @@ export interface Task {
|
|
|
701
737
|
* @memberof Task
|
|
702
738
|
*/
|
|
703
739
|
'owner': string | null;
|
|
740
|
+
/**
|
|
741
|
+
* The estimated hours to complete the task
|
|
742
|
+
* @type {number}
|
|
743
|
+
* @memberof Task
|
|
744
|
+
*/
|
|
745
|
+
'estimatedHours': number | null;
|
|
704
746
|
/**
|
|
705
747
|
*
|
|
706
748
|
* @type {string}
|
|
@@ -801,6 +843,24 @@ export interface UpdateBookmarkRequest {
|
|
|
801
843
|
* @memberof UpdateBookmarkRequest
|
|
802
844
|
*/
|
|
803
845
|
'data'?: BookmarkData;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof UpdateBookmarkRequest
|
|
850
|
+
*/
|
|
851
|
+
'description'?: string;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof UpdateBookmarkRequest
|
|
856
|
+
*/
|
|
857
|
+
'color'?: string;
|
|
858
|
+
/**
|
|
859
|
+
* The icon name of the bookmark
|
|
860
|
+
* @type {string}
|
|
861
|
+
* @memberof UpdateBookmarkRequest
|
|
862
|
+
*/
|
|
863
|
+
'icon'?: string;
|
|
804
864
|
}
|
|
805
865
|
/**
|
|
806
866
|
*
|
|
@@ -864,6 +924,12 @@ export interface UpdateTaskRequest {
|
|
|
864
924
|
* @memberof UpdateTaskRequest
|
|
865
925
|
*/
|
|
866
926
|
'owner'?: string | null;
|
|
927
|
+
/**
|
|
928
|
+
* The estimated hours to complete the task
|
|
929
|
+
* @type {number}
|
|
930
|
+
* @memberof UpdateTaskRequest
|
|
931
|
+
*/
|
|
932
|
+
'estimatedHours'?: number | null;
|
|
867
933
|
}
|
|
868
934
|
/**
|
|
869
935
|
* 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