@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/projects@1.39.0
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.0 --save
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.39.0
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
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.39.0
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).
package/common.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.39.0
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).
package/configuration.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.39.0
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).
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.39.0
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.39.0
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
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
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).
package/dist/base.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.39.0
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).
package/dist/common.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.39.0
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).
package/dist/common.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.39.0
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).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
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).
@@ -5,7 +5,7 @@
5
5
  * Projects API
6
6
  * Manage PodOS Projects
7
7
  *
8
- * The version of the OpenAPI document: 1.39.0
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).
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.39.0
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.39.0
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
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
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).
package/dist/esm/base.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.39.0
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).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
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).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.39.0
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).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
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).
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.39.0
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).
@@ -2,7 +2,7 @@
2
2
  * Projects API
3
3
  * Manage PodOS Projects
4
4
  *
5
- * The version of the OpenAPI document: 1.39.0
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).
package/dist/esm/index.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.39.0
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).
package/dist/index.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.39.0
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).
package/dist/index.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.39.0
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).
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,
@@ -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
  };
@@ -13,4 +13,6 @@
13
13
 
14
14
  * `Shopify` (value: `'shopify'`)
15
15
 
16
+ * `Woocommerce` (value: `'woocommerce'`)
17
+
16
18
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -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
@@ -4,7 +4,7 @@
4
4
  * Projects API
5
5
  * Manage PodOS Projects
6
6
  *
7
- * The version of the OpenAPI document: 1.39.0
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/projects",
3
- "version": "1.39.0",
3
+ "version": "1.41.0",
4
4
  "description": "OpenAPI client for @teemill/projects",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {