@teemill/projects 1.39.0 → 1.41.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 +21 -2
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +20 -1
- package/dist/api.js +3 -2
- 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 +20 -1
- package/dist/esm/api.js +3 -2
- 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/TemplateCode.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.41.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.41.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.41.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}
|
|
@@ -1081,7 +1093,8 @@ export const TemplateCode = {
|
|
|
1081
1093
|
ShopHeadless: 'shop-headless',
|
|
1082
1094
|
ShopCommercial: 'shop-commercial',
|
|
1083
1095
|
Factory: 'factory',
|
|
1084
|
-
Shopify: 'shopify'
|
|
1096
|
+
Shopify: 'shopify',
|
|
1097
|
+
Woocommerce: 'woocommerce'
|
|
1085
1098
|
} as const;
|
|
1086
1099
|
|
|
1087
1100
|
export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
|
|
@@ -1285,6 +1298,12 @@ export interface UpdateTaskRequest {
|
|
|
1285
1298
|
* @memberof UpdateTaskRequest
|
|
1286
1299
|
*/
|
|
1287
1300
|
'parentTask'?: string | null;
|
|
1301
|
+
/**
|
|
1302
|
+
* Indicates the task deadline date
|
|
1303
|
+
* @type {string}
|
|
1304
|
+
* @memberof UpdateTaskRequest
|
|
1305
|
+
*/
|
|
1306
|
+
'endDate'?: string | null;
|
|
1288
1307
|
}
|
|
1289
1308
|
|
|
1290
1309
|
|
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.41.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}
|
|
@@ -1055,6 +1067,7 @@ export declare const TemplateCode: {
|
|
|
1055
1067
|
readonly ShopCommercial: "shop-commercial";
|
|
1056
1068
|
readonly Factory: "factory";
|
|
1057
1069
|
readonly Shopify: "shopify";
|
|
1070
|
+
readonly Woocommerce: "woocommerce";
|
|
1058
1071
|
};
|
|
1059
1072
|
export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
|
|
1060
1073
|
/**
|
|
@@ -1255,6 +1268,12 @@ export interface UpdateTaskRequest {
|
|
|
1255
1268
|
* @memberof UpdateTaskRequest
|
|
1256
1269
|
*/
|
|
1257
1270
|
'parentTask'?: string | null;
|
|
1271
|
+
/**
|
|
1272
|
+
* Indicates the task deadline date
|
|
1273
|
+
* @type {string}
|
|
1274
|
+
* @memberof UpdateTaskRequest
|
|
1275
|
+
*/
|
|
1276
|
+
'endDate'?: string | null;
|
|
1258
1277
|
}
|
|
1259
1278
|
/**
|
|
1260
1279
|
* ProjectsApi - axios parameter creator
|
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.
|
|
8
|
+
* The version of the OpenAPI document: 1.41.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -65,7 +65,8 @@ exports.TemplateCode = {
|
|
|
65
65
|
ShopHeadless: 'shop-headless',
|
|
66
66
|
ShopCommercial: 'shop-commercial',
|
|
67
67
|
Factory: 'factory',
|
|
68
|
-
Shopify: 'shopify'
|
|
68
|
+
Shopify: 'shopify',
|
|
69
|
+
Woocommerce: 'woocommerce'
|
|
69
70
|
};
|
|
70
71
|
/**
|
|
71
72
|
* ProjectsApi - axios parameter creator
|
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.41.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}
|
|
@@ -1055,6 +1067,7 @@ export declare const TemplateCode: {
|
|
|
1055
1067
|
readonly ShopCommercial: "shop-commercial";
|
|
1056
1068
|
readonly Factory: "factory";
|
|
1057
1069
|
readonly Shopify: "shopify";
|
|
1070
|
+
readonly Woocommerce: "woocommerce";
|
|
1058
1071
|
};
|
|
1059
1072
|
export type TemplateCode = typeof TemplateCode[keyof typeof TemplateCode];
|
|
1060
1073
|
/**
|
|
@@ -1255,6 +1268,12 @@ export interface UpdateTaskRequest {
|
|
|
1255
1268
|
* @memberof UpdateTaskRequest
|
|
1256
1269
|
*/
|
|
1257
1270
|
'parentTask'?: string | null;
|
|
1271
|
+
/**
|
|
1272
|
+
* Indicates the task deadline date
|
|
1273
|
+
* @type {string}
|
|
1274
|
+
* @memberof UpdateTaskRequest
|
|
1275
|
+
*/
|
|
1276
|
+
'endDate'?: string | null;
|
|
1258
1277
|
}
|
|
1259
1278
|
/**
|
|
1260
1279
|
* ProjectsApi - axios parameter creator
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.41.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -62,7 +62,8 @@ export const TemplateCode = {
|
|
|
62
62
|
ShopHeadless: 'shop-headless',
|
|
63
63
|
ShopCommercial: 'shop-commercial',
|
|
64
64
|
Factory: 'factory',
|
|
65
|
-
Shopify: 'shopify'
|
|
65
|
+
Shopify: 'shopify',
|
|
66
|
+
Woocommerce: 'woocommerce'
|
|
66
67
|
};
|
|
67
68
|
/**
|
|
68
69
|
* ProjectsApi - axios parameter creator
|
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
|
};
|
package/docs/TemplateCode.md
CHANGED
|
@@ -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