@teemill/projects 1.12.1 → 1.12.4
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 +1 -0
- package/.openapi-generator/VERSION +1 -1
- package/README.md +2 -2
- package/dist/apis/ProjectsApi.d.ts +4 -4
- package/dist/apis/ProjectsApi.js +517 -927
- package/dist/esm/apis/ProjectsApi.d.ts +241 -0
- package/dist/esm/apis/ProjectsApi.js +701 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +3 -0
- package/dist/esm/index.d.ts +3 -0
- package/dist/esm/index.js +5 -0
- package/dist/esm/models/ApiError.d.ts +37 -0
- package/dist/esm/models/ApiError.js +42 -0
- package/dist/esm/models/CreateInviteRequest.d.ts +31 -0
- package/dist/esm/models/CreateInviteRequest.js +40 -0
- package/dist/esm/models/CreateProjectRequest.d.ts +43 -0
- package/dist/esm/models/CreateProjectRequest.js +44 -0
- package/dist/esm/models/CreateUserRequest.d.ts +56 -0
- package/dist/esm/models/CreateUserRequest.js +55 -0
- package/dist/esm/models/CreateUserRequestAvatar.d.ts +31 -0
- package/dist/esm/models/CreateUserRequestAvatar.js +43 -0
- package/dist/esm/models/InstallTemplateRequest.d.ts +31 -0
- package/dist/esm/models/InstallTemplateRequest.js +38 -0
- package/dist/esm/models/Integration.d.ts +49 -0
- package/dist/esm/models/Integration.js +47 -0
- package/dist/esm/models/IntegrationInfo.d.ts +49 -0
- package/dist/esm/models/IntegrationInfo.js +52 -0
- package/dist/esm/models/IntegrationsResponse.d.ts +32 -0
- package/dist/esm/models/IntegrationsResponse.js +41 -0
- package/dist/esm/models/Project.d.ts +50 -0
- package/dist/esm/models/Project.js +51 -0
- package/dist/esm/models/ProjectInvite.d.ts +56 -0
- package/dist/esm/models/ProjectInvite.js +57 -0
- package/dist/esm/models/ProjectInvites.d.ts +38 -0
- package/dist/esm/models/ProjectInvites.js +45 -0
- package/dist/esm/models/ProjectLogo.d.ts +37 -0
- package/dist/esm/models/ProjectLogo.js +40 -0
- package/dist/esm/models/ProjectUser.d.ts +83 -0
- package/dist/esm/models/ProjectUser.js +75 -0
- package/dist/esm/models/ProjectUserAvatar.d.ts +31 -0
- package/dist/esm/models/ProjectUserAvatar.js +38 -0
- package/dist/esm/models/ProjectUsers.d.ts +38 -0
- package/dist/esm/models/ProjectUsers.js +45 -0
- package/dist/esm/models/ProjectsResponse.d.ts +32 -0
- package/dist/esm/models/ProjectsResponse.js +41 -0
- package/dist/esm/models/SetupIntegrationRequest.d.ts +31 -0
- package/dist/esm/models/SetupIntegrationRequest.js +40 -0
- package/dist/esm/models/UpdateProjectRequest.d.ts +31 -0
- package/dist/esm/models/UpdateProjectRequest.js +38 -0
- package/dist/esm/models/UpdateUserRequest.d.ts +56 -0
- package/dist/esm/models/UpdateUserRequest.js +52 -0
- package/dist/esm/models/UpdateUserRequestAvatar.d.ts +31 -0
- package/dist/esm/models/UpdateUserRequestAvatar.js +43 -0
- package/dist/esm/models/index.d.ts +16 -0
- package/dist/esm/models/index.js +18 -0
- package/dist/esm/runtime.d.ts +187 -0
- package/dist/esm/runtime.js +333 -0
- 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/CreateUserRequest.js +3 -3
- package/dist/models/CreateUserRequestAvatar.js +2 -2
- package/dist/models/InstallTemplateRequest.d.ts +1 -1
- package/dist/models/InstallTemplateRequest.js +1 -1
- package/dist/models/Integration.d.ts +2 -2
- package/dist/models/Integration.js +1 -1
- package/dist/models/IntegrationInfo.js +1 -1
- package/dist/models/IntegrationsResponse.d.ts +1 -1
- package/dist/models/IntegrationsResponse.js +2 -2
- package/dist/models/Project.d.ts +2 -2
- package/dist/models/Project.js +2 -2
- package/dist/models/ProjectInvite.d.ts +1 -1
- package/dist/models/ProjectInvite.js +2 -2
- package/dist/models/ProjectInvites.d.ts +1 -1
- package/dist/models/ProjectInvites.js +2 -2
- package/dist/models/ProjectLogo.d.ts +1 -1
- package/dist/models/ProjectLogo.js +1 -1
- package/dist/models/ProjectUser.d.ts +1 -1
- package/dist/models/ProjectUser.js +2 -2
- 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 +2 -2
- package/dist/models/ProjectsResponse.d.ts +1 -1
- package/dist/models/ProjectsResponse.js +2 -2
- package/dist/models/SetupIntegrationRequest.d.ts +1 -1
- package/dist/models/SetupIntegrationRequest.js +1 -1
- package/dist/models/UpdateProjectRequest.d.ts +1 -1
- package/dist/models/UpdateProjectRequest.js +1 -1
- package/dist/models/UpdateUserRequest.js +3 -3
- package/dist/models/UpdateUserRequestAvatar.js +2 -2
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +223 -439
- package/package.json +4 -2
- package/src/apis/ProjectsApi.ts +6 -8
- 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 +2 -2
- package/src/models/IntegrationsResponse.ts +1 -1
- package/src/models/Project.ts +2 -2
- package/src/models/ProjectInvite.ts +1 -1
- package/src/models/ProjectInvites.ts +1 -1
- package/src/models/ProjectLogo.ts +1 -1
- 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 +1 -1
- package/src/runtime.ts +1 -1
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +2 -2
|
@@ -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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.IntegrationsResponseToJSON = exports.IntegrationsResponseFromJSONTyped = exports.IntegrationsResponseFromJSON = exports.instanceOfIntegrationsResponse = void 0;
|
|
17
|
-
|
|
17
|
+
const Integration_1 = require("./Integration");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the IntegrationsResponse interface.
|
|
20
20
|
*/
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -33,7 +33,7 @@ export interface Project {
|
|
|
33
33
|
* @type {ProjectLogo}
|
|
34
34
|
* @memberof Project
|
|
35
35
|
*/
|
|
36
|
-
logo: ProjectLogo;
|
|
36
|
+
logo: ProjectLogo | null;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectToJSON = exports.ProjectFromJSONTyped = exports.ProjectFromJSON = exports.instanceOfProject = void 0;
|
|
17
|
-
|
|
17
|
+
const ProjectLogo_1 = require("./ProjectLogo");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the Project interface.
|
|
20
20
|
*/
|
|
@@ -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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectInviteToJSON = exports.ProjectInviteFromJSONTyped = exports.ProjectInviteFromJSON = exports.instanceOfProjectInvite = void 0;
|
|
17
|
-
|
|
17
|
+
const ProjectUser_1 = require("./ProjectUser");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the ProjectInvite interface.
|
|
20
20
|
*/
|
|
@@ -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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectInvitesToJSON = exports.ProjectInvitesFromJSONTyped = exports.ProjectInvitesFromJSON = exports.instanceOfProjectInvites = void 0;
|
|
17
|
-
|
|
17
|
+
const ProjectInvite_1 = require("./ProjectInvite");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the ProjectInvites interface.
|
|
20
20
|
*/
|
|
@@ -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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectUserToJSON = exports.ProjectUserFromJSONTyped = exports.ProjectUserFromJSON = exports.instanceOfProjectUser = exports.ProjectUserTypeEnum = void 0;
|
|
17
|
-
|
|
17
|
+
const ProjectUserAvatar_1 = require("./ProjectUserAvatar");
|
|
18
18
|
/**
|
|
19
19
|
* @export
|
|
20
20
|
*/
|
|
@@ -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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectUsersToJSON = exports.ProjectUsersFromJSONTyped = exports.ProjectUsersFromJSON = exports.instanceOfProjectUsers = void 0;
|
|
17
|
-
|
|
17
|
+
const ProjectUser_1 = require("./ProjectUser");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the ProjectUsers interface.
|
|
20
20
|
*/
|
|
@@ -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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.ProjectsResponseToJSON = exports.ProjectsResponseFromJSONTyped = exports.ProjectsResponseFromJSON = exports.instanceOfProjectsResponse = void 0;
|
|
17
|
-
|
|
17
|
+
const Project_1 = require("./Project");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the ProjectsResponse interface.
|
|
20
20
|
*/
|
|
@@ -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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
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.12.
|
|
8
|
+
* The version of the OpenAPI document: 1.12.4
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.UpdateUserRequestToJSON = exports.UpdateUserRequestFromJSONTyped = exports.UpdateUserRequestFromJSON = exports.instanceOfUpdateUserRequest = void 0;
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
const UpdateUserRequestAvatar_1 = require("./UpdateUserRequestAvatar");
|
|
19
19
|
/**
|
|
20
20
|
* Check if a given object implements the UpdateUserRequest interface.
|
|
21
21
|
*/
|
|
22
22
|
function instanceOfUpdateUserRequest(value) {
|
|
23
|
-
|
|
23
|
+
let isInstance = true;
|
|
24
24
|
return isInstance;
|
|
25
25
|
}
|
|
26
26
|
exports.instanceOfUpdateUserRequest = instanceOfUpdateUserRequest;
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.UpdateUserRequestAvatarToJSON = exports.UpdateUserRequestAvatarFromJSONTyped = exports.UpdateUserRequestAvatarFromJSON = exports.instanceOfUpdateUserRequestAvatar = void 0;
|
|
17
|
-
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
18
|
/**
|
|
19
19
|
* Check if a given object implements the UpdateUserRequestAvatar interface.
|
|
20
20
|
*/
|
|
21
21
|
function instanceOfUpdateUserRequestAvatar(value) {
|
|
22
|
-
|
|
22
|
+
let isInstance = true;
|
|
23
23
|
return isInstance;
|
|
24
24
|
}
|
|
25
25
|
exports.instanceOfUpdateUserRequestAvatar = instanceOfUpdateUserRequestAvatar;
|
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.12.
|
|
5
|
+
* The version of the OpenAPI document: 1.12.4
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|