@teemill/projects 1.7.0 → 1.9.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.
Files changed (58) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +5 -4
  4. package/dist/apis/ProjectsApi.d.ts +25 -17
  5. package/dist/apis/ProjectsApi.js +94 -55
  6. package/dist/models/ApiError.d.ts +1 -1
  7. package/dist/models/ApiError.js +1 -1
  8. package/dist/models/CreateInviteRequest.d.ts +1 -1
  9. package/dist/models/CreateInviteRequest.js +1 -1
  10. package/dist/models/CreateProjectRequest.d.ts +1 -1
  11. package/dist/models/CreateProjectRequest.js +1 -1
  12. package/dist/models/Integration.d.ts +7 -1
  13. package/dist/models/Integration.js +3 -1
  14. package/dist/models/IntegrationsResponse.d.ts +1 -1
  15. package/dist/models/IntegrationsResponse.js +1 -1
  16. package/dist/models/Project.d.ts +1 -1
  17. package/dist/models/Project.js +1 -1
  18. package/dist/models/ProjectInvite.d.ts +7 -1
  19. package/dist/models/ProjectInvite.js +4 -1
  20. package/dist/models/ProjectInvites.d.ts +7 -1
  21. package/dist/models/ProjectInvites.js +4 -1
  22. package/dist/models/ProjectLogo.d.ts +1 -1
  23. package/dist/models/ProjectLogo.js +1 -1
  24. package/dist/models/ProjectUser.d.ts +1 -1
  25. package/dist/models/ProjectUser.js +1 -1
  26. package/dist/models/ProjectUserAvatar.d.ts +1 -1
  27. package/dist/models/ProjectUserAvatar.js +1 -1
  28. package/dist/models/ProjectUsers.d.ts +7 -1
  29. package/dist/models/ProjectUsers.js +4 -1
  30. package/dist/models/ProjectsResponse.d.ts +1 -1
  31. package/dist/models/ProjectsResponse.js +1 -1
  32. package/dist/models/SetupIntegrationRequest.d.ts +31 -0
  33. package/dist/models/SetupIntegrationRequest.js +50 -0
  34. package/dist/models/UpdateProjectRequest.d.ts +1 -1
  35. package/dist/models/UpdateProjectRequest.js +1 -1
  36. package/dist/models/index.d.ts +1 -0
  37. package/dist/models/index.js +1 -0
  38. package/dist/runtime.d.ts +1 -1
  39. package/dist/runtime.js +1 -1
  40. package/package.json +1 -1
  41. package/src/apis/ProjectsApi.ts +105 -44
  42. package/src/models/ApiError.ts +1 -1
  43. package/src/models/CreateInviteRequest.ts +1 -1
  44. package/src/models/CreateProjectRequest.ts +1 -1
  45. package/src/models/Integration.ts +9 -1
  46. package/src/models/IntegrationsResponse.ts +1 -1
  47. package/src/models/Project.ts +1 -1
  48. package/src/models/ProjectInvite.ts +10 -1
  49. package/src/models/ProjectInvites.ts +10 -1
  50. package/src/models/ProjectLogo.ts +1 -1
  51. package/src/models/ProjectUser.ts +1 -1
  52. package/src/models/ProjectUserAvatar.ts +1 -1
  53. package/src/models/ProjectUsers.ts +10 -1
  54. package/src/models/ProjectsResponse.ts +1 -1
  55. package/src/models/SetupIntegrationRequest.ts +66 -0
  56. package/src/models/UpdateProjectRequest.ts +1 -1
  57. package/src/models/index.ts +1 -0
  58. package/src/runtime.ts +1 -1
@@ -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.0
7
+ * The version of the OpenAPI document: 1.9.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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.0
7
+ * The version of the OpenAPI document: 1.9.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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.0
7
+ * The version of the OpenAPI document: 1.9.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,6 +32,12 @@ export interface ProjectUsers {
32
32
  * @memberof ProjectUsers
33
33
  */
34
34
  users: Array<ProjectUser>;
35
+ /**
36
+ * The token referencing the next page number
37
+ * @type {number}
38
+ * @memberof ProjectUsers
39
+ */
40
+ nextPageToken: number | null;
35
41
  }
36
42
 
37
43
  /**
@@ -40,6 +46,7 @@ export interface ProjectUsers {
40
46
  export function instanceOfProjectUsers(value: object): boolean {
41
47
  let isInstance = true;
42
48
  isInstance = isInstance && "users" in value;
49
+ isInstance = isInstance && "nextPageToken" in value;
43
50
 
44
51
  return isInstance;
45
52
  }
@@ -55,6 +62,7 @@ export function ProjectUsersFromJSONTyped(json: any, ignoreDiscriminator: boolea
55
62
  return {
56
63
 
57
64
  'users': ((json['users'] as Array<any>).map(ProjectUserFromJSON)),
65
+ 'nextPageToken': json['nextPageToken'],
58
66
  };
59
67
  }
60
68
 
@@ -68,6 +76,7 @@ export function ProjectUsersToJSON(value?: ProjectUsers | null): any {
68
76
  return {
69
77
 
70
78
  'users': ((value.users as Array<any>).map(ProjectUserToJSON)),
79
+ 'nextPageToken': value.nextPageToken,
71
80
  };
72
81
  }
73
82
 
@@ -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.0
7
+ * The version of the OpenAPI document: 1.9.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,66 @@
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.9.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
+
15
+ import { exists, mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface SetupIntegrationRequest
20
+ */
21
+ export interface SetupIntegrationRequest {
22
+ /**
23
+ *
24
+ * @type {object}
25
+ * @memberof SetupIntegrationRequest
26
+ */
27
+ config: object;
28
+ }
29
+
30
+ /**
31
+ * Check if a given object implements the SetupIntegrationRequest interface.
32
+ */
33
+ export function instanceOfSetupIntegrationRequest(value: object): boolean {
34
+ let isInstance = true;
35
+ isInstance = isInstance && "config" in value;
36
+
37
+ return isInstance;
38
+ }
39
+
40
+ export function SetupIntegrationRequestFromJSON(json: any): SetupIntegrationRequest {
41
+ return SetupIntegrationRequestFromJSONTyped(json, false);
42
+ }
43
+
44
+ export function SetupIntegrationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetupIntegrationRequest {
45
+ if ((json === undefined) || (json === null)) {
46
+ return json;
47
+ }
48
+ return {
49
+
50
+ 'config': json['config'],
51
+ };
52
+ }
53
+
54
+ export function SetupIntegrationRequestToJSON(value?: SetupIntegrationRequest | null): any {
55
+ if (value === undefined) {
56
+ return undefined;
57
+ }
58
+ if (value === null) {
59
+ return null;
60
+ }
61
+ return {
62
+
63
+ 'config': value.config,
64
+ };
65
+ }
66
+
@@ -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.0
7
+ * The version of the OpenAPI document: 1.9.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,4 +13,5 @@ export * from './ProjectUser';
13
13
  export * from './ProjectUserAvatar';
14
14
  export * from './ProjectUsers';
15
15
  export * from './ProjectsResponse';
16
+ export * from './SetupIntegrationRequest';
16
17
  export * from './UpdateProjectRequest';
package/src/runtime.ts 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.0
7
+ * The version of the OpenAPI document: 1.9.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).