@teemill/projects 1.6.1 → 1.8.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/.openapi-generator/FILES +2 -4
- package/.openapi-generator/VERSION +1 -1
- package/README.md +5 -4
- package/dist/apis/ProjectsApi.d.ts +23 -65
- package/dist/apis/ProjectsApi.js +42 -223
- package/dist/models/ApiError.d.ts +1 -1
- package/dist/models/ApiError.js +1 -1
- package/dist/models/CreateInviteRequest.d.ts +1 -1
- package/dist/models/CreateInviteRequest.js +1 -1
- package/dist/models/CreateProjectRequest.d.ts +1 -1
- package/dist/models/CreateProjectRequest.js +1 -1
- package/dist/models/Integration.d.ts +7 -1
- package/dist/models/Integration.js +3 -1
- package/dist/models/IntegrationsResponse.d.ts +1 -1
- package/dist/models/IntegrationsResponse.js +1 -1
- package/dist/models/Project.d.ts +1 -1
- package/dist/models/Project.js +1 -1
- package/dist/models/ProjectInvite.d.ts +5 -11
- package/dist/models/ProjectInvite.js +4 -7
- package/dist/models/ProjectInvites.d.ts +1 -1
- package/dist/models/ProjectInvites.js +1 -1
- package/dist/models/ProjectLogo.d.ts +1 -1
- package/dist/models/ProjectLogo.js +1 -1
- package/dist/models/ProjectUser.d.ts +7 -7
- package/dist/models/ProjectUser.js +7 -6
- package/dist/models/ProjectUserAvatar.d.ts +31 -0
- package/dist/models/ProjectUserAvatar.js +50 -0
- package/dist/models/ProjectUsers.d.ts +1 -1
- package/dist/models/ProjectUsers.js +1 -1
- package/dist/models/ProjectsResponse.d.ts +1 -1
- package/dist/models/ProjectsResponse.js +1 -1
- package/dist/models/SetupIntegrationRequest.d.ts +31 -0
- package/dist/models/SetupIntegrationRequest.js +50 -0
- package/dist/models/UpdateProjectRequest.d.ts +1 -1
- package/dist/models/UpdateProjectRequest.js +1 -1
- package/dist/models/index.d.ts +2 -4
- package/dist/models/index.js +2 -4
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
- package/src/apis/ProjectsApi.ts +51 -229
- package/src/models/ApiError.ts +1 -1
- package/src/models/CreateInviteRequest.ts +1 -1
- package/src/models/CreateProjectRequest.ts +1 -1
- package/src/models/Integration.ts +9 -1
- package/src/models/IntegrationsResponse.ts +1 -1
- package/src/models/Project.ts +1 -1
- package/src/models/ProjectInvite.ts +8 -17
- package/src/models/ProjectInvites.ts +1 -1
- package/src/models/ProjectLogo.ts +1 -1
- package/src/models/ProjectUser.ts +16 -14
- package/src/models/ProjectUserAvatar.ts +65 -0
- package/src/models/ProjectUsers.ts +1 -1
- package/src/models/ProjectsResponse.ts +1 -1
- package/src/models/SetupIntegrationRequest.ts +66 -0
- package/src/models/UpdateProjectRequest.ts +1 -1
- package/src/models/index.ts +2 -4
- package/src/runtime.ts +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -33,6 +33,12 @@ export interface Integration {
|
|
|
33
33
|
* @memberof Integration
|
|
34
34
|
*/
|
|
35
35
|
config: object;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Date}
|
|
39
|
+
* @memberof Integration
|
|
40
|
+
*/
|
|
41
|
+
setupAt?: Date;
|
|
36
42
|
}
|
|
37
43
|
/**
|
|
38
44
|
* Check if a given object implements the Integration interface.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -37,6 +37,7 @@ function IntegrationFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
|
|
38
38
|
'code': json['code'],
|
|
39
39
|
'config': json['config'],
|
|
40
|
+
'setupAt': !(0, runtime_1.exists)(json, 'setupAt') ? undefined : (new Date(json['setupAt'])),
|
|
40
41
|
};
|
|
41
42
|
}
|
|
42
43
|
exports.IntegrationFromJSONTyped = IntegrationFromJSONTyped;
|
|
@@ -50,6 +51,7 @@ function IntegrationToJSON(value) {
|
|
|
50
51
|
return {
|
|
51
52
|
'code': value.code,
|
|
52
53
|
'config': value.config,
|
|
54
|
+
'setupAt': value.setupAt === undefined ? undefined : (value.setupAt.toISOString()),
|
|
53
55
|
};
|
|
54
56
|
}
|
|
55
57
|
exports.IntegrationToJSON = IntegrationToJSON;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Project.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Project.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -21,31 +21,25 @@ export interface ProjectInvite {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ProjectInvite
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
id: string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ProjectInvite
|
|
29
29
|
*/
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof ProjectInvite
|
|
35
|
-
*/
|
|
36
|
-
expiresAt: string;
|
|
30
|
+
inviteeEmail: string;
|
|
37
31
|
/**
|
|
38
32
|
*
|
|
39
33
|
* @type {string}
|
|
40
34
|
* @memberof ProjectInvite
|
|
41
35
|
*/
|
|
42
|
-
|
|
36
|
+
createdAt: string;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {string}
|
|
46
40
|
* @memberof ProjectInvite
|
|
47
41
|
*/
|
|
48
|
-
|
|
42
|
+
expiresAt: string;
|
|
49
43
|
/**
|
|
50
44
|
*
|
|
51
45
|
* @type {ProjectUser}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -20,11 +20,10 @@ var ProjectUser_1 = require("./ProjectUser");
|
|
|
20
20
|
*/
|
|
21
21
|
function instanceOfProjectInvite(value) {
|
|
22
22
|
var isInstance = true;
|
|
23
|
+
isInstance = isInstance && "id" in value;
|
|
23
24
|
isInstance = isInstance && "inviteeEmail" in value;
|
|
24
25
|
isInstance = isInstance && "createdAt" in value;
|
|
25
26
|
isInstance = isInstance && "expiresAt" in value;
|
|
26
|
-
isInstance = isInstance && "acceptedAt" in value;
|
|
27
|
-
isInstance = isInstance && "deletedAt" in value;
|
|
28
27
|
isInstance = isInstance && "inviter" in value;
|
|
29
28
|
return isInstance;
|
|
30
29
|
}
|
|
@@ -38,11 +37,10 @@ function ProjectInviteFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
37
|
return json;
|
|
39
38
|
}
|
|
40
39
|
return {
|
|
40
|
+
'id': json['id'],
|
|
41
41
|
'inviteeEmail': json['inviteeEmail'],
|
|
42
42
|
'createdAt': json['createdAt'],
|
|
43
43
|
'expiresAt': json['expiresAt'],
|
|
44
|
-
'acceptedAt': json['acceptedAt'],
|
|
45
|
-
'deletedAt': json['deletedAt'],
|
|
46
44
|
'inviter': (0, ProjectUser_1.ProjectUserFromJSON)(json['inviter']),
|
|
47
45
|
};
|
|
48
46
|
}
|
|
@@ -55,11 +53,10 @@ function ProjectInviteToJSON(value) {
|
|
|
55
53
|
return null;
|
|
56
54
|
}
|
|
57
55
|
return {
|
|
56
|
+
'id': value.id,
|
|
58
57
|
'inviteeEmail': value.inviteeEmail,
|
|
59
58
|
'createdAt': value.createdAt,
|
|
60
59
|
'expiresAt': value.expiresAt,
|
|
61
|
-
'acceptedAt': value.acceptedAt,
|
|
62
|
-
'deletedAt': value.deletedAt,
|
|
63
60
|
'inviter': (0, ProjectUser_1.ProjectUserToJSON)(value.inviter),
|
|
64
61
|
};
|
|
65
62
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type {
|
|
12
|
+
import type { ProjectUserAvatar } from './ProjectUserAvatar';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -27,19 +27,19 @@ export interface ProjectUser {
|
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ProjectUser
|
|
29
29
|
*/
|
|
30
|
-
firstName: string;
|
|
30
|
+
firstName: string | null;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof ProjectUser
|
|
35
35
|
*/
|
|
36
|
-
lastName: string;
|
|
36
|
+
lastName: string | null;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof ProjectUser
|
|
41
41
|
*/
|
|
42
|
-
username
|
|
42
|
+
username: string | null;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {string}
|
|
@@ -48,10 +48,10 @@ export interface ProjectUser {
|
|
|
48
48
|
email: string;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
|
-
* @type {
|
|
51
|
+
* @type {ProjectUserAvatar}
|
|
52
52
|
* @memberof ProjectUser
|
|
53
53
|
*/
|
|
54
|
-
avatar
|
|
54
|
+
avatar: ProjectUserAvatar;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
57
|
* Check if a given object implements the ProjectUser interface.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectUserToJSON = exports.ProjectUserFromJSONTyped = exports.ProjectUserFromJSON = exports.instanceOfProjectUser = void 0;
|
|
17
|
-
var
|
|
18
|
-
var CreateUserRequestAvatar_1 = require("./CreateUserRequestAvatar");
|
|
17
|
+
var ProjectUserAvatar_1 = require("./ProjectUserAvatar");
|
|
19
18
|
/**
|
|
20
19
|
* Check if a given object implements the ProjectUser interface.
|
|
21
20
|
*/
|
|
@@ -24,7 +23,9 @@ function instanceOfProjectUser(value) {
|
|
|
24
23
|
isInstance = isInstance && "id" in value;
|
|
25
24
|
isInstance = isInstance && "firstName" in value;
|
|
26
25
|
isInstance = isInstance && "lastName" in value;
|
|
26
|
+
isInstance = isInstance && "username" in value;
|
|
27
27
|
isInstance = isInstance && "email" in value;
|
|
28
|
+
isInstance = isInstance && "avatar" in value;
|
|
28
29
|
return isInstance;
|
|
29
30
|
}
|
|
30
31
|
exports.instanceOfProjectUser = instanceOfProjectUser;
|
|
@@ -40,9 +41,9 @@ function ProjectUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
41
|
'id': json['id'],
|
|
41
42
|
'firstName': json['firstName'],
|
|
42
43
|
'lastName': json['lastName'],
|
|
43
|
-
'username':
|
|
44
|
+
'username': json['username'],
|
|
44
45
|
'email': json['email'],
|
|
45
|
-
'avatar':
|
|
46
|
+
'avatar': (0, ProjectUserAvatar_1.ProjectUserAvatarFromJSON)(json['avatar']),
|
|
46
47
|
};
|
|
47
48
|
}
|
|
48
49
|
exports.ProjectUserFromJSONTyped = ProjectUserFromJSONTyped;
|
|
@@ -59,7 +60,7 @@ function ProjectUserToJSON(value) {
|
|
|
59
60
|
'lastName': value.lastName,
|
|
60
61
|
'username': value.username,
|
|
61
62
|
'email': value.email,
|
|
62
|
-
'avatar': (0,
|
|
63
|
+
'avatar': (0, ProjectUserAvatar_1.ProjectUserAvatarToJSON)(value.avatar),
|
|
63
64
|
};
|
|
64
65
|
}
|
|
65
66
|
exports.ProjectUserToJSON = ProjectUserToJSON;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Projects API
|
|
3
|
+
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
|
+
* Contact: hello@teemill.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectUserAvatar
|
|
16
|
+
*/
|
|
17
|
+
export interface ProjectUserAvatar {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectUserAvatar
|
|
22
|
+
*/
|
|
23
|
+
original?: string | null;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the ProjectUserAvatar interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfProjectUserAvatar(value: object): boolean;
|
|
29
|
+
export declare function ProjectUserAvatarFromJSON(json: any): ProjectUserAvatar;
|
|
30
|
+
export declare function ProjectUserAvatarFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectUserAvatar;
|
|
31
|
+
export declare function ProjectUserAvatarToJSON(value?: ProjectUserAvatar | null): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Projects API
|
|
6
|
+
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
|
+
* Contact: hello@teemill.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ProjectUserAvatarToJSON = exports.ProjectUserAvatarFromJSONTyped = exports.ProjectUserAvatarFromJSON = exports.instanceOfProjectUserAvatar = void 0;
|
|
17
|
+
var runtime_1 = require("../runtime");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the ProjectUserAvatar interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfProjectUserAvatar(value) {
|
|
22
|
+
var isInstance = true;
|
|
23
|
+
return isInstance;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfProjectUserAvatar = instanceOfProjectUserAvatar;
|
|
26
|
+
function ProjectUserAvatarFromJSON(json) {
|
|
27
|
+
return ProjectUserAvatarFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.ProjectUserAvatarFromJSON = ProjectUserAvatarFromJSON;
|
|
30
|
+
function ProjectUserAvatarFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if ((json === undefined) || (json === null)) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'original': !(0, runtime_1.exists)(json, 'original') ? undefined : json['original'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
exports.ProjectUserAvatarFromJSONTyped = ProjectUserAvatarFromJSONTyped;
|
|
39
|
+
function ProjectUserAvatarToJSON(value) {
|
|
40
|
+
if (value === undefined) {
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
if (value === null) {
|
|
44
|
+
return null;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'original': value.original,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
exports.ProjectUserAvatarToJSON = ProjectUserAvatarToJSON;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Projects API
|
|
3
|
+
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
|
+
* Contact: hello@teemill.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SetupIntegrationRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SetupIntegrationRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {object}
|
|
21
|
+
* @memberof SetupIntegrationRequest
|
|
22
|
+
*/
|
|
23
|
+
config: object;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the SetupIntegrationRequest interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfSetupIntegrationRequest(value: object): boolean;
|
|
29
|
+
export declare function SetupIntegrationRequestFromJSON(json: any): SetupIntegrationRequest;
|
|
30
|
+
export declare function SetupIntegrationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetupIntegrationRequest;
|
|
31
|
+
export declare function SetupIntegrationRequestToJSON(value?: SetupIntegrationRequest | null): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Projects API
|
|
6
|
+
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
|
+
* Contact: hello@teemill.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.SetupIntegrationRequestToJSON = exports.SetupIntegrationRequestFromJSONTyped = exports.SetupIntegrationRequestFromJSON = exports.instanceOfSetupIntegrationRequest = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the SetupIntegrationRequest interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfSetupIntegrationRequest(value) {
|
|
21
|
+
var isInstance = true;
|
|
22
|
+
isInstance = isInstance && "config" in value;
|
|
23
|
+
return isInstance;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfSetupIntegrationRequest = instanceOfSetupIntegrationRequest;
|
|
26
|
+
function SetupIntegrationRequestFromJSON(json) {
|
|
27
|
+
return SetupIntegrationRequestFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.SetupIntegrationRequestFromJSON = SetupIntegrationRequestFromJSON;
|
|
30
|
+
function SetupIntegrationRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if ((json === undefined) || (json === null)) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'config': json['config'],
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
exports.SetupIntegrationRequestFromJSONTyped = SetupIntegrationRequestFromJSONTyped;
|
|
39
|
+
function SetupIntegrationRequestToJSON(value) {
|
|
40
|
+
if (value === undefined) {
|
|
41
|
+
return undefined;
|
|
42
|
+
}
|
|
43
|
+
if (value === null) {
|
|
44
|
+
return null;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'config': value.config,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
exports.SetupIntegrationRequestToJSON = SetupIntegrationRequestToJSON;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
export * from './ApiError';
|
|
2
2
|
export * from './CreateInviteRequest';
|
|
3
3
|
export * from './CreateProjectRequest';
|
|
4
|
-
export * from './CreateUserRequest';
|
|
5
|
-
export * from './CreateUserRequestAvatar';
|
|
6
4
|
export * from './Integration';
|
|
7
5
|
export * from './IntegrationsResponse';
|
|
8
6
|
export * from './Project';
|
|
@@ -10,8 +8,8 @@ export * from './ProjectInvite';
|
|
|
10
8
|
export * from './ProjectInvites';
|
|
11
9
|
export * from './ProjectLogo';
|
|
12
10
|
export * from './ProjectUser';
|
|
11
|
+
export * from './ProjectUserAvatar';
|
|
13
12
|
export * from './ProjectUsers';
|
|
14
13
|
export * from './ProjectsResponse';
|
|
14
|
+
export * from './SetupIntegrationRequest';
|
|
15
15
|
export * from './UpdateProjectRequest';
|
|
16
|
-
export * from './UpdateUserRequest';
|
|
17
|
-
export * from './UpdateUserRequestAvatar';
|
package/dist/models/index.js
CHANGED
|
@@ -19,8 +19,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
__exportStar(require("./ApiError"), exports);
|
|
20
20
|
__exportStar(require("./CreateInviteRequest"), exports);
|
|
21
21
|
__exportStar(require("./CreateProjectRequest"), exports);
|
|
22
|
-
__exportStar(require("./CreateUserRequest"), exports);
|
|
23
|
-
__exportStar(require("./CreateUserRequestAvatar"), exports);
|
|
24
22
|
__exportStar(require("./Integration"), exports);
|
|
25
23
|
__exportStar(require("./IntegrationsResponse"), exports);
|
|
26
24
|
__exportStar(require("./Project"), exports);
|
|
@@ -28,8 +26,8 @@ __exportStar(require("./ProjectInvite"), exports);
|
|
|
28
26
|
__exportStar(require("./ProjectInvites"), exports);
|
|
29
27
|
__exportStar(require("./ProjectLogo"), exports);
|
|
30
28
|
__exportStar(require("./ProjectUser"), exports);
|
|
29
|
+
__exportStar(require("./ProjectUserAvatar"), exports);
|
|
31
30
|
__exportStar(require("./ProjectUsers"), exports);
|
|
32
31
|
__exportStar(require("./ProjectsResponse"), exports);
|
|
32
|
+
__exportStar(require("./SetupIntegrationRequest"), exports);
|
|
33
33
|
__exportStar(require("./UpdateProjectRequest"), exports);
|
|
34
|
-
__exportStar(require("./UpdateUserRequest"), exports);
|
|
35
|
-
__exportStar(require("./UpdateUserRequestAvatar"), exports);
|
package/dist/runtime.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Projects API
|
|
3
3
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.8.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/runtime.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Projects API
|
|
6
6
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.8.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|