@teemill/projects 1.39.0 → 1.40.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 +19 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +19 -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 +19 -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/docs/Task.md +2 -0
- package/docs/TaskSummary.md +2 -0
- package/docs/UpdateTaskRequest.md +2 -0
- 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.40.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.40.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.40.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -919,6 +919,12 @@ export interface Task {
|
|
|
919
919
|
* @memberof Task
|
|
920
920
|
*/
|
|
921
921
|
'parentTask': string | null;
|
|
922
|
+
/**
|
|
923
|
+
* Indicates the task deadline date
|
|
924
|
+
* @type {string}
|
|
925
|
+
* @memberof Task
|
|
926
|
+
*/
|
|
927
|
+
'endDate': string | null;
|
|
922
928
|
/**
|
|
923
929
|
* The unique id of the user who created the task
|
|
924
930
|
* @type {string}
|
|
@@ -1016,6 +1022,12 @@ export interface TaskSummary {
|
|
|
1016
1022
|
* @memberof TaskSummary
|
|
1017
1023
|
*/
|
|
1018
1024
|
'parentTask': string | null;
|
|
1025
|
+
/**
|
|
1026
|
+
* Indicates the task deadline date
|
|
1027
|
+
* @type {string}
|
|
1028
|
+
* @memberof TaskSummary
|
|
1029
|
+
*/
|
|
1030
|
+
'endDate': string | null;
|
|
1019
1031
|
/**
|
|
1020
1032
|
*
|
|
1021
1033
|
* @type {string}
|
|
@@ -1285,6 +1297,12 @@ export interface UpdateTaskRequest {
|
|
|
1285
1297
|
* @memberof UpdateTaskRequest
|
|
1286
1298
|
*/
|
|
1287
1299
|
'parentTask'?: string | null;
|
|
1300
|
+
/**
|
|
1301
|
+
* Indicates the task deadline date
|
|
1302
|
+
* @type {string}
|
|
1303
|
+
* @memberof UpdateTaskRequest
|
|
1304
|
+
*/
|
|
1305
|
+
'endDate'?: string | null;
|
|
1288
1306
|
}
|
|
1289
1307
|
|
|
1290
1308
|
|
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.40.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -903,6 +903,12 @@ export interface Task {
|
|
|
903
903
|
* @memberof Task
|
|
904
904
|
*/
|
|
905
905
|
'parentTask': string | null;
|
|
906
|
+
/**
|
|
907
|
+
* Indicates the task deadline date
|
|
908
|
+
* @type {string}
|
|
909
|
+
* @memberof Task
|
|
910
|
+
*/
|
|
911
|
+
'endDate': string | null;
|
|
906
912
|
/**
|
|
907
913
|
* The unique id of the user who created the task
|
|
908
914
|
* @type {string}
|
|
@@ -994,6 +1000,12 @@ export interface TaskSummary {
|
|
|
994
1000
|
* @memberof TaskSummary
|
|
995
1001
|
*/
|
|
996
1002
|
'parentTask': string | null;
|
|
1003
|
+
/**
|
|
1004
|
+
* Indicates the task deadline date
|
|
1005
|
+
* @type {string}
|
|
1006
|
+
* @memberof TaskSummary
|
|
1007
|
+
*/
|
|
1008
|
+
'endDate': string | null;
|
|
997
1009
|
/**
|
|
998
1010
|
*
|
|
999
1011
|
* @type {string}
|
|
@@ -1255,6 +1267,12 @@ export interface UpdateTaskRequest {
|
|
|
1255
1267
|
* @memberof UpdateTaskRequest
|
|
1256
1268
|
*/
|
|
1257
1269
|
'parentTask'?: string | null;
|
|
1270
|
+
/**
|
|
1271
|
+
* Indicates the task deadline date
|
|
1272
|
+
* @type {string}
|
|
1273
|
+
* @memberof UpdateTaskRequest
|
|
1274
|
+
*/
|
|
1275
|
+
'endDate'?: string | null;
|
|
1258
1276
|
}
|
|
1259
1277
|
/**
|
|
1260
1278
|
* 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.40.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -903,6 +903,12 @@ export interface Task {
|
|
|
903
903
|
* @memberof Task
|
|
904
904
|
*/
|
|
905
905
|
'parentTask': string | null;
|
|
906
|
+
/**
|
|
907
|
+
* Indicates the task deadline date
|
|
908
|
+
* @type {string}
|
|
909
|
+
* @memberof Task
|
|
910
|
+
*/
|
|
911
|
+
'endDate': string | null;
|
|
906
912
|
/**
|
|
907
913
|
* The unique id of the user who created the task
|
|
908
914
|
* @type {string}
|
|
@@ -994,6 +1000,12 @@ export interface TaskSummary {
|
|
|
994
1000
|
* @memberof TaskSummary
|
|
995
1001
|
*/
|
|
996
1002
|
'parentTask': string | null;
|
|
1003
|
+
/**
|
|
1004
|
+
* Indicates the task deadline date
|
|
1005
|
+
* @type {string}
|
|
1006
|
+
* @memberof TaskSummary
|
|
1007
|
+
*/
|
|
1008
|
+
'endDate': string | null;
|
|
997
1009
|
/**
|
|
998
1010
|
*
|
|
999
1011
|
* @type {string}
|
|
@@ -1255,6 +1267,12 @@ export interface UpdateTaskRequest {
|
|
|
1255
1267
|
* @memberof UpdateTaskRequest
|
|
1256
1268
|
*/
|
|
1257
1269
|
'parentTask'?: string | null;
|
|
1270
|
+
/**
|
|
1271
|
+
* Indicates the task deadline date
|
|
1272
|
+
* @type {string}
|
|
1273
|
+
* @memberof UpdateTaskRequest
|
|
1274
|
+
*/
|
|
1275
|
+
'endDate'?: string | null;
|
|
1258
1276
|
}
|
|
1259
1277
|
/**
|
|
1260
1278
|
* 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/docs/Task.md
CHANGED
|
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**workProgress** | **number** | The completion percentage of the task | [default to undefined]
|
|
17
17
|
**okrLevel** | [**OkrLevel**](OkrLevel.md) | | [default to undefined]
|
|
18
18
|
**parentTask** | **string** | | [default to undefined]
|
|
19
|
+
**endDate** | **string** | Indicates the task deadline date | [default to undefined]
|
|
19
20
|
**createdUser** | **string** | The unique id of the user who created the task | [default to undefined]
|
|
20
21
|
**createdAt** | **string** | | [default to undefined]
|
|
21
22
|
**updatedAt** | **string** | | [default to undefined]
|
|
@@ -37,6 +38,7 @@ const instance: Task = {
|
|
|
37
38
|
workProgress,
|
|
38
39
|
okrLevel,
|
|
39
40
|
parentTask,
|
|
41
|
+
endDate,
|
|
40
42
|
createdUser,
|
|
41
43
|
createdAt,
|
|
42
44
|
updatedAt,
|
package/docs/TaskSummary.md
CHANGED
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**workProgress** | **number** | The completion percentage of the task | [default to undefined]
|
|
15
15
|
**okrLevel** | [**OkrLevel**](OkrLevel.md) | | [default to undefined]
|
|
16
16
|
**parentTask** | **string** | | [default to undefined]
|
|
17
|
+
**endDate** | **string** | Indicates the task deadline date | [default to undefined]
|
|
17
18
|
**createdAt** | **string** | | [default to undefined]
|
|
18
19
|
**updatedAt** | **string** | | [default to undefined]
|
|
19
20
|
|
|
@@ -32,6 +33,7 @@ const instance: TaskSummary = {
|
|
|
32
33
|
workProgress,
|
|
33
34
|
okrLevel,
|
|
34
35
|
parentTask,
|
|
36
|
+
endDate,
|
|
35
37
|
createdAt,
|
|
36
38
|
updatedAt,
|
|
37
39
|
};
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**workProgress** | **number** | The completion percentage of the task | [optional] [default to undefined]
|
|
15
15
|
**okrLevel** | [**OkrLevel**](OkrLevel.md) | | [optional] [default to undefined]
|
|
16
16
|
**parentTask** | **string** | | [optional] [default to undefined]
|
|
17
|
+
**endDate** | **string** | Indicates the task deadline date | [optional] [default to undefined]
|
|
17
18
|
|
|
18
19
|
## Example
|
|
19
20
|
|
|
@@ -30,6 +31,7 @@ const instance: UpdateTaskRequest = {
|
|
|
30
31
|
workProgress,
|
|
31
32
|
okrLevel,
|
|
32
33
|
parentTask,
|
|
34
|
+
endDate,
|
|
33
35
|
};
|
|
34
36
|
```
|
|
35
37
|
|
package/index.ts
CHANGED