@teemill/projects 1.31.0 → 1.32.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 +13 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +8 -2
- package/dist/api.d.ts +13 -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 +3 -2
- package/dist/esm/api.d.ts +13 -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 +3 -2
- 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.32.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.32.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.32.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -749,6 +749,12 @@ export interface Task {
|
|
|
749
749
|
* @memberof Task
|
|
750
750
|
*/
|
|
751
751
|
'owner': string | null;
|
|
752
|
+
/**
|
|
753
|
+
* The unique ids of the users who will receive notifications for the task
|
|
754
|
+
* @type {Array<string>}
|
|
755
|
+
* @memberof Task
|
|
756
|
+
*/
|
|
757
|
+
'notificationRecipients': Array<string>;
|
|
752
758
|
/**
|
|
753
759
|
* The estimated hours to complete the task
|
|
754
760
|
* @type {number}
|
|
@@ -954,6 +960,12 @@ export interface UpdateTaskRequest {
|
|
|
954
960
|
* @memberof UpdateTaskRequest
|
|
955
961
|
*/
|
|
956
962
|
'owner'?: string | null;
|
|
963
|
+
/**
|
|
964
|
+
* The unique ids of the users who will receive notifications for the task
|
|
965
|
+
* @type {Array<string>}
|
|
966
|
+
* @memberof UpdateTaskRequest
|
|
967
|
+
*/
|
|
968
|
+
'notificationRecipients'?: Array<string>;
|
|
957
969
|
/**
|
|
958
970
|
* The estimated hours to complete the task
|
|
959
971
|
* @type {number}
|
package/base.ts
CHANGED
package/common.ts
CHANGED
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.32.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -89,7 +89,13 @@ export class Configuration {
|
|
|
89
89
|
this.accessToken = param.accessToken;
|
|
90
90
|
this.basePath = param.basePath;
|
|
91
91
|
this.serverIndex = param.serverIndex;
|
|
92
|
-
this.baseOptions =
|
|
92
|
+
this.baseOptions = {
|
|
93
|
+
headers: {
|
|
94
|
+
...param.baseOptions?.headers,
|
|
95
|
+
'User-Agent': "OpenAPI-Generator/1.32.0/typescript-axios"
|
|
96
|
+
},
|
|
97
|
+
...param.baseOptions
|
|
98
|
+
};
|
|
93
99
|
this.formDataCtor = param.formDataCtor;
|
|
94
100
|
}
|
|
95
101
|
|
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.32.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -737,6 +737,12 @@ export interface Task {
|
|
|
737
737
|
* @memberof Task
|
|
738
738
|
*/
|
|
739
739
|
'owner': string | null;
|
|
740
|
+
/**
|
|
741
|
+
* The unique ids of the users who will receive notifications for the task
|
|
742
|
+
* @type {Array<string>}
|
|
743
|
+
* @memberof Task
|
|
744
|
+
*/
|
|
745
|
+
'notificationRecipients': Array<string>;
|
|
740
746
|
/**
|
|
741
747
|
* The estimated hours to complete the task
|
|
742
748
|
* @type {number}
|
|
@@ -930,6 +936,12 @@ export interface UpdateTaskRequest {
|
|
|
930
936
|
* @memberof UpdateTaskRequest
|
|
931
937
|
*/
|
|
932
938
|
'owner'?: string | null;
|
|
939
|
+
/**
|
|
940
|
+
* The unique ids of the users who will receive notifications for the task
|
|
941
|
+
* @type {Array<string>}
|
|
942
|
+
* @memberof UpdateTaskRequest
|
|
943
|
+
*/
|
|
944
|
+
'notificationRecipients'?: Array<string>;
|
|
933
945
|
/**
|
|
934
946
|
* The estimated hours to complete the task
|
|
935
947
|
* @type {number}
|
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
|
@@ -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.32.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -16,13 +16,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.Configuration = void 0;
|
|
17
17
|
class Configuration {
|
|
18
18
|
constructor(param = {}) {
|
|
19
|
+
var _a;
|
|
19
20
|
this.apiKey = param.apiKey;
|
|
20
21
|
this.username = param.username;
|
|
21
22
|
this.password = param.password;
|
|
22
23
|
this.accessToken = param.accessToken;
|
|
23
24
|
this.basePath = param.basePath;
|
|
24
25
|
this.serverIndex = param.serverIndex;
|
|
25
|
-
this.baseOptions = param.baseOptions;
|
|
26
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/1.32.0/typescript-axios" }) }, param.baseOptions);
|
|
26
27
|
this.formDataCtor = param.formDataCtor;
|
|
27
28
|
}
|
|
28
29
|
/**
|
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.32.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -737,6 +737,12 @@ export interface Task {
|
|
|
737
737
|
* @memberof Task
|
|
738
738
|
*/
|
|
739
739
|
'owner': string | null;
|
|
740
|
+
/**
|
|
741
|
+
* The unique ids of the users who will receive notifications for the task
|
|
742
|
+
* @type {Array<string>}
|
|
743
|
+
* @memberof Task
|
|
744
|
+
*/
|
|
745
|
+
'notificationRecipients': Array<string>;
|
|
740
746
|
/**
|
|
741
747
|
* The estimated hours to complete the task
|
|
742
748
|
* @type {number}
|
|
@@ -930,6 +936,12 @@ export interface UpdateTaskRequest {
|
|
|
930
936
|
* @memberof UpdateTaskRequest
|
|
931
937
|
*/
|
|
932
938
|
'owner'?: string | null;
|
|
939
|
+
/**
|
|
940
|
+
* The unique ids of the users who will receive notifications for the task
|
|
941
|
+
* @type {Array<string>}
|
|
942
|
+
* @memberof UpdateTaskRequest
|
|
943
|
+
*/
|
|
944
|
+
'notificationRecipients'?: Array<string>;
|
|
933
945
|
/**
|
|
934
946
|
* The estimated hours to complete the task
|
|
935
947
|
* @type {number}
|
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
|
@@ -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.32.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -13,13 +13,14 @@
|
|
|
13
13
|
*/
|
|
14
14
|
export class Configuration {
|
|
15
15
|
constructor(param = {}) {
|
|
16
|
+
var _a;
|
|
16
17
|
this.apiKey = param.apiKey;
|
|
17
18
|
this.username = param.username;
|
|
18
19
|
this.password = param.password;
|
|
19
20
|
this.accessToken = param.accessToken;
|
|
20
21
|
this.basePath = param.basePath;
|
|
21
22
|
this.serverIndex = param.serverIndex;
|
|
22
|
-
this.baseOptions = param.baseOptions;
|
|
23
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/1.32.0/typescript-axios" }) }, param.baseOptions);
|
|
23
24
|
this.formDataCtor = param.formDataCtor;
|
|
24
25
|
}
|
|
25
26
|
/**
|
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