@teemill/projects 1.13.0 → 1.15.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 -0
- package/README.md +2 -2
- package/dist/apis/ProjectsApi.d.ts +16 -2
- package/dist/apis/ProjectsApi.js +43 -1
- package/dist/esm/apis/ProjectsApi.d.ts +16 -2
- package/dist/esm/apis/ProjectsApi.js +44 -2
- package/dist/esm/models/ApiError.d.ts +1 -1
- package/dist/esm/models/ApiError.js +1 -1
- package/dist/esm/models/CreateInviteRequest.d.ts +1 -1
- package/dist/esm/models/CreateInviteRequest.js +1 -1
- package/dist/esm/models/CreateProjectRequest.d.ts +1 -1
- package/dist/esm/models/CreateProjectRequest.js +1 -1
- package/dist/esm/models/InstallTemplateRequest.d.ts +1 -1
- package/dist/esm/models/InstallTemplateRequest.js +1 -1
- package/dist/esm/models/Integration.d.ts +1 -1
- package/dist/esm/models/Integration.js +1 -1
- package/dist/esm/models/IntegrationsResponse.d.ts +1 -1
- package/dist/esm/models/IntegrationsResponse.js +1 -1
- package/dist/esm/models/LegacyProjectLogo.d.ts +37 -0
- package/dist/esm/models/LegacyProjectLogo.js +44 -0
- package/dist/esm/models/Project.d.ts +18 -3
- package/dist/esm/models/Project.js +11 -3
- package/dist/esm/models/ProjectInvite.d.ts +1 -1
- package/dist/esm/models/ProjectInvite.js +1 -1
- package/dist/esm/models/ProjectInvites.d.ts +1 -1
- package/dist/esm/models/ProjectInvites.js +1 -1
- package/dist/esm/models/ProjectLogo.d.ts +6 -4
- package/dist/esm/models/ProjectLogo.js +8 -4
- package/dist/esm/models/ProjectManager.d.ts +44 -0
- package/dist/esm/models/ProjectManager.js +49 -0
- package/dist/esm/models/ProjectUser.d.ts +1 -1
- package/dist/esm/models/ProjectUser.js +1 -1
- package/dist/esm/models/ProjectUserAvatar.d.ts +1 -1
- package/dist/esm/models/ProjectUserAvatar.js +1 -1
- package/dist/esm/models/ProjectUsers.d.ts +1 -1
- package/dist/esm/models/ProjectUsers.js +1 -1
- package/dist/esm/models/ProjectsResponse.d.ts +1 -1
- package/dist/esm/models/ProjectsResponse.js +1 -1
- package/dist/esm/models/SetupIntegrationRequest.d.ts +1 -1
- package/dist/esm/models/SetupIntegrationRequest.js +1 -1
- package/dist/esm/models/UpdateProjectRequest.d.ts +8 -1
- package/dist/esm/models/UpdateProjectRequest.js +4 -1
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/runtime.d.ts +1 -1
- package/dist/esm/runtime.js +1 -1
- 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/InstallTemplateRequest.d.ts +1 -1
- package/dist/models/InstallTemplateRequest.js +1 -1
- package/dist/models/Integration.d.ts +1 -1
- package/dist/models/Integration.js +1 -1
- package/dist/models/IntegrationsResponse.d.ts +1 -1
- package/dist/models/IntegrationsResponse.js +1 -1
- package/dist/models/LegacyProjectLogo.d.ts +37 -0
- package/dist/models/LegacyProjectLogo.js +51 -0
- package/dist/models/Project.d.ts +18 -3
- package/dist/models/Project.js +11 -3
- package/dist/models/ProjectInvite.d.ts +1 -1
- package/dist/models/ProjectInvite.js +1 -1
- package/dist/models/ProjectInvites.d.ts +1 -1
- package/dist/models/ProjectInvites.js +1 -1
- package/dist/models/ProjectLogo.d.ts +6 -4
- package/dist/models/ProjectLogo.js +8 -4
- package/dist/models/ProjectManager.d.ts +44 -0
- package/dist/models/ProjectManager.js +56 -0
- package/dist/models/ProjectUser.d.ts +1 -1
- package/dist/models/ProjectUser.js +1 -1
- package/dist/models/ProjectUserAvatar.d.ts +1 -1
- package/dist/models/ProjectUserAvatar.js +1 -1
- 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 +1 -1
- package/dist/models/SetupIntegrationRequest.js +1 -1
- package/dist/models/UpdateProjectRequest.d.ts +8 -1
- package/dist/models/UpdateProjectRequest.js +4 -1
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
- package/src/apis/ProjectsApi.ts +63 -1
- package/src/models/ApiError.ts +1 -1
- package/src/models/CreateInviteRequest.ts +1 -1
- package/src/models/CreateProjectRequest.ts +1 -1
- package/src/models/InstallTemplateRequest.ts +1 -1
- package/src/models/Integration.ts +1 -1
- package/src/models/IntegrationsResponse.ts +1 -1
- package/src/models/LegacyProjectLogo.ts +70 -0
- package/src/models/Project.ts +35 -5
- package/src/models/ProjectInvite.ts +1 -1
- package/src/models/ProjectInvites.ts +1 -1
- package/src/models/ProjectLogo.ts +9 -7
- package/src/models/ProjectManager.ts +86 -0
- package/src/models/ProjectUser.ts +1 -1
- package/src/models/ProjectUserAvatar.ts +1 -1
- package/src/models/ProjectUsers.ts +1 -1
- package/src/models/ProjectsResponse.ts +1 -1
- package/src/models/SetupIntegrationRequest.ts +1 -1
- package/src/models/UpdateProjectRequest.ts +16 -1
- package/src/models/index.ts +2 -0
- package/src/runtime.ts +1 -1
|
@@ -0,0 +1,44 @@
|
|
|
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.15.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
|
+
import type { ProjectLogo } from './ProjectLogo';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectManager
|
|
17
|
+
*/
|
|
18
|
+
export interface ProjectManager {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ProjectManager
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ProjectManager
|
|
29
|
+
*/
|
|
30
|
+
name: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<ProjectLogo>}
|
|
34
|
+
* @memberof ProjectManager
|
|
35
|
+
*/
|
|
36
|
+
logos: Array<ProjectLogo>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the ProjectManager interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfProjectManager(value: object): boolean;
|
|
42
|
+
export declare function ProjectManagerFromJSON(json: any): ProjectManager;
|
|
43
|
+
export declare function ProjectManagerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectManager;
|
|
44
|
+
export declare function ProjectManagerToJSON(value?: ProjectManager | null): any;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Projects API
|
|
5
|
+
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
|
+
* Contact: hello@teemill.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { ProjectLogoFromJSON, ProjectLogoToJSON, } from './ProjectLogo';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the ProjectManager interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfProjectManager(value) {
|
|
19
|
+
if (!('id' in value))
|
|
20
|
+
return false;
|
|
21
|
+
if (!('name' in value))
|
|
22
|
+
return false;
|
|
23
|
+
if (!('logos' in value))
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
export function ProjectManagerFromJSON(json) {
|
|
28
|
+
return ProjectManagerFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
export function ProjectManagerFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'id': json['id'],
|
|
36
|
+
'name': json['name'],
|
|
37
|
+
'logos': (json['logos'].map(ProjectLogoFromJSON)),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
export function ProjectManagerToJSON(value) {
|
|
41
|
+
if (value == null) {
|
|
42
|
+
return value;
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
'id': value['id'],
|
|
46
|
+
'name': value['name'],
|
|
47
|
+
'logos': (value['logos'].map(ProjectLogoToJSON)),
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -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.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.15.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,13 +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.15.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 { ProjectLogo } from './ProjectLogo';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,6 +22,12 @@ export interface UpdateProjectRequest {
|
|
|
21
22
|
* @memberof UpdateProjectRequest
|
|
22
23
|
*/
|
|
23
24
|
name?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<ProjectLogo>}
|
|
28
|
+
* @memberof UpdateProjectRequest
|
|
29
|
+
*/
|
|
30
|
+
logos?: Array<ProjectLogo>;
|
|
24
31
|
}
|
|
25
32
|
/**
|
|
26
33
|
* Check if a given object implements the UpdateProjectRequest interface.
|
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
* Projects API
|
|
5
5
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
import { ProjectLogoFromJSON, ProjectLogoToJSON, } from './ProjectLogo';
|
|
14
15
|
/**
|
|
15
16
|
* Check if a given object implements the UpdateProjectRequest interface.
|
|
16
17
|
*/
|
|
@@ -26,6 +27,7 @@ export function UpdateProjectRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
27
|
}
|
|
27
28
|
return {
|
|
28
29
|
'name': json['name'] == null ? undefined : json['name'],
|
|
30
|
+
'logos': json['logos'] == null ? undefined : (json['logos'].map(ProjectLogoFromJSON)),
|
|
29
31
|
};
|
|
30
32
|
}
|
|
31
33
|
export function UpdateProjectRequestToJSON(value) {
|
|
@@ -34,5 +36,6 @@ export function UpdateProjectRequestToJSON(value) {
|
|
|
34
36
|
}
|
|
35
37
|
return {
|
|
36
38
|
'name': value['name'],
|
|
39
|
+
'logos': value['logos'] == null ? undefined : (value['logos'].map(ProjectLogoToJSON)),
|
|
37
40
|
};
|
|
38
41
|
}
|
|
@@ -4,10 +4,12 @@ export * from './CreateProjectRequest';
|
|
|
4
4
|
export * from './InstallTemplateRequest';
|
|
5
5
|
export * from './Integration';
|
|
6
6
|
export * from './IntegrationsResponse';
|
|
7
|
+
export * from './LegacyProjectLogo';
|
|
7
8
|
export * from './Project';
|
|
8
9
|
export * from './ProjectInvite';
|
|
9
10
|
export * from './ProjectInvites';
|
|
10
11
|
export * from './ProjectLogo';
|
|
12
|
+
export * from './ProjectManager';
|
|
11
13
|
export * from './ProjectUser';
|
|
12
14
|
export * from './ProjectUserAvatar';
|
|
13
15
|
export * from './ProjectUsers';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -6,10 +6,12 @@ export * from './CreateProjectRequest';
|
|
|
6
6
|
export * from './InstallTemplateRequest';
|
|
7
7
|
export * from './Integration';
|
|
8
8
|
export * from './IntegrationsResponse';
|
|
9
|
+
export * from './LegacyProjectLogo';
|
|
9
10
|
export * from './Project';
|
|
10
11
|
export * from './ProjectInvite';
|
|
11
12
|
export * from './ProjectInvites';
|
|
12
13
|
export * from './ProjectLogo';
|
|
14
|
+
export * from './ProjectManager';
|
|
13
15
|
export * from './ProjectUser';
|
|
14
16
|
export * from './ProjectUserAvatar';
|
|
15
17
|
export * from './ProjectUsers';
|
package/dist/esm/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.15.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/esm/runtime.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Projects API
|
|
5
5
|
* Manage Teemill Projects For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.15.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.15.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/ApiError.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.15.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.15.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.15.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.15.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.15.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.15.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.15.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.15.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.15.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.15.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.15.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,37 @@
|
|
|
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.15.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 LegacyProjectLogo
|
|
16
|
+
*/
|
|
17
|
+
export interface LegacyProjectLogo {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LegacyProjectLogo
|
|
22
|
+
*/
|
|
23
|
+
url: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof LegacyProjectLogo
|
|
28
|
+
*/
|
|
29
|
+
backgroundColor: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the LegacyProjectLogo interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfLegacyProjectLogo(value: object): boolean;
|
|
35
|
+
export declare function LegacyProjectLogoFromJSON(json: any): LegacyProjectLogo;
|
|
36
|
+
export declare function LegacyProjectLogoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LegacyProjectLogo;
|
|
37
|
+
export declare function LegacyProjectLogoToJSON(value?: LegacyProjectLogo | null): any;
|
|
@@ -0,0 +1,51 @@
|
|
|
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.15.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.LegacyProjectLogoToJSON = exports.LegacyProjectLogoFromJSONTyped = exports.LegacyProjectLogoFromJSON = exports.instanceOfLegacyProjectLogo = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the LegacyProjectLogo interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfLegacyProjectLogo(value) {
|
|
21
|
+
if (!('url' in value))
|
|
22
|
+
return false;
|
|
23
|
+
if (!('backgroundColor' in value))
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
exports.instanceOfLegacyProjectLogo = instanceOfLegacyProjectLogo;
|
|
28
|
+
function LegacyProjectLogoFromJSON(json) {
|
|
29
|
+
return LegacyProjectLogoFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
exports.LegacyProjectLogoFromJSON = LegacyProjectLogoFromJSON;
|
|
32
|
+
function LegacyProjectLogoFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'url': json['url'],
|
|
38
|
+
'backgroundColor': json['backgroundColor'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
exports.LegacyProjectLogoFromJSONTyped = LegacyProjectLogoFromJSONTyped;
|
|
42
|
+
function LegacyProjectLogoToJSON(value) {
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'url': value['url'],
|
|
48
|
+
'backgroundColor': value['backgroundColor'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
exports.LegacyProjectLogoToJSON = LegacyProjectLogoToJSON;
|
package/dist/models/Project.d.ts
CHANGED
|
@@ -2,14 +2,16 @@
|
|
|
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.15.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 { LegacyProjectLogo } from './LegacyProjectLogo';
|
|
12
13
|
import type { ProjectLogo } from './ProjectLogo';
|
|
14
|
+
import type { ProjectManager } from './ProjectManager';
|
|
13
15
|
/**
|
|
14
16
|
*
|
|
15
17
|
* @export
|
|
@@ -30,10 +32,23 @@ export interface Project {
|
|
|
30
32
|
name: string;
|
|
31
33
|
/**
|
|
32
34
|
*
|
|
33
|
-
* @type {
|
|
35
|
+
* @type {LegacyProjectLogo}
|
|
34
36
|
* @memberof Project
|
|
37
|
+
* @deprecated
|
|
35
38
|
*/
|
|
36
|
-
logo:
|
|
39
|
+
logo: LegacyProjectLogo | null;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {Array<ProjectLogo>}
|
|
43
|
+
* @memberof Project
|
|
44
|
+
*/
|
|
45
|
+
logos: Array<ProjectLogo>;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {ProjectManager}
|
|
49
|
+
* @memberof Project
|
|
50
|
+
*/
|
|
51
|
+
manager?: ProjectManager;
|
|
37
52
|
/**
|
|
38
53
|
*
|
|
39
54
|
* @type {Array<string>}
|
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.15.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,7 +14,9 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectToJSON = exports.ProjectFromJSONTyped = exports.ProjectFromJSON = exports.instanceOfProject = void 0;
|
|
17
|
+
const LegacyProjectLogo_1 = require("./LegacyProjectLogo");
|
|
17
18
|
const ProjectLogo_1 = require("./ProjectLogo");
|
|
19
|
+
const ProjectManager_1 = require("./ProjectManager");
|
|
18
20
|
/**
|
|
19
21
|
* Check if a given object implements the Project interface.
|
|
20
22
|
*/
|
|
@@ -25,6 +27,8 @@ function instanceOfProject(value) {
|
|
|
25
27
|
return false;
|
|
26
28
|
if (!('logo' in value))
|
|
27
29
|
return false;
|
|
30
|
+
if (!('logos' in value))
|
|
31
|
+
return false;
|
|
28
32
|
return true;
|
|
29
33
|
}
|
|
30
34
|
exports.instanceOfProject = instanceOfProject;
|
|
@@ -39,7 +43,9 @@ function ProjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
43
|
return {
|
|
40
44
|
'id': json['id'],
|
|
41
45
|
'name': json['name'],
|
|
42
|
-
'logo': (0,
|
|
46
|
+
'logo': (0, LegacyProjectLogo_1.LegacyProjectLogoFromJSON)(json['logo']),
|
|
47
|
+
'logos': (json['logos'].map(ProjectLogo_1.ProjectLogoFromJSON)),
|
|
48
|
+
'manager': json['manager'] == null ? undefined : (0, ProjectManager_1.ProjectManagerFromJSON)(json['manager']),
|
|
43
49
|
'integrations': json['integrations'] == null ? undefined : json['integrations'],
|
|
44
50
|
};
|
|
45
51
|
}
|
|
@@ -51,7 +57,9 @@ function ProjectToJSON(value) {
|
|
|
51
57
|
return {
|
|
52
58
|
'id': value['id'],
|
|
53
59
|
'name': value['name'],
|
|
54
|
-
'logo': (0,
|
|
60
|
+
'logo': (0, LegacyProjectLogo_1.LegacyProjectLogoToJSON)(value['logo']),
|
|
61
|
+
'logos': (value['logos'].map(ProjectLogo_1.ProjectLogoToJSON)),
|
|
62
|
+
'manager': (0, ProjectManager_1.ProjectManagerToJSON)(value['manager']),
|
|
55
63
|
'integrations': value['integrations'],
|
|
56
64
|
};
|
|
57
65
|
}
|
|
@@ -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.15.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.15.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.15.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.15.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|