@emilgroup/tenant-sdk 1.0.0 → 1.0.1

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 (227) hide show
  1. package/.openapi-generator/FILES +57 -14
  2. package/README.md +2 -2
  3. package/api/alerts-api.ts +860 -0
  4. package/api/custom-schema-api.ts +60 -52
  5. package/api/dashboard-api.ts +792 -0
  6. package/api/data-report-api.ts +75 -65
  7. package/api/data-report-executor-api.ts +26 -10
  8. package/api/invite-users-api.ts +79 -75
  9. package/api/reports-api.ts +860 -0
  10. package/api/scenario-analysis-api.ts +977 -0
  11. package/api/settings-api.ts +484 -0
  12. package/api/tariff-comparisons-api.ts +381 -0
  13. package/api/{invite-organizations-api.ts → user-subscription-api.ts} +161 -139
  14. package/api/users-api.ts +148 -138
  15. package/api.ts +14 -4
  16. package/dist/api/alerts-api.d.ts +479 -0
  17. package/dist/api/alerts-api.js +752 -0
  18. package/dist/api/custom-schema-api.d.ts +42 -42
  19. package/dist/api/custom-schema-api.js +38 -31
  20. package/dist/api/dashboard-api.d.ts +434 -0
  21. package/dist/api/dashboard-api.js +724 -0
  22. package/dist/api/data-report-api.d.ts +52 -52
  23. package/dist/api/data-report-api.js +49 -40
  24. package/dist/api/data-report-executor-api.d.ts +16 -7
  25. package/dist/api/data-report-executor-api.js +17 -9
  26. package/dist/api/invite-users-api.d.ts +60 -63
  27. package/dist/api/invite-users-api.js +49 -40
  28. package/dist/api/reports-api.d.ts +479 -0
  29. package/dist/api/reports-api.js +752 -0
  30. package/dist/api/scenario-analysis-api.d.ts +529 -0
  31. package/dist/api/scenario-analysis-api.js +895 -0
  32. package/dist/api/settings-api.d.ts +264 -0
  33. package/dist/api/settings-api.js +509 -0
  34. package/dist/api/tariff-comparisons-api.d.ts +206 -0
  35. package/dist/api/{organizations-api.js → tariff-comparisons-api.js} +158 -99
  36. package/dist/api/{organizations-api.d.ts → user-subscription-api.d.ts} +103 -88
  37. package/dist/api/{invite-organizations-api.js → user-subscription-api.js} +114 -106
  38. package/dist/api/users-api.d.ts +109 -113
  39. package/dist/api/users-api.js +93 -76
  40. package/dist/api.d.ts +7 -2
  41. package/dist/api.js +7 -2
  42. package/dist/models/alert-class.d.ts +90 -0
  43. package/dist/models/alert-history-class.d.ts +108 -0
  44. package/dist/models/assign-user-roles-request-dto.d.ts +2 -2
  45. package/dist/models/channel-response-class.d.ts +30 -0
  46. package/dist/models/compare-tariffs-request-dto.d.ts +37 -0
  47. package/dist/models/compare-tariffs-request-dto.js +22 -0
  48. package/dist/models/compare-tariffs-response-class.d.ts +31 -0
  49. package/dist/models/condition-dto.d.ts +43 -0
  50. package/dist/models/condition-dto.js +22 -0
  51. package/dist/models/create-alert-request-dto.d.ts +79 -0
  52. package/dist/models/create-alert-request-dto.js +27 -0
  53. package/dist/models/create-alert-response-class.d.ts +25 -0
  54. package/dist/models/create-custom-schema-request-dto.d.ts +0 -1
  55. package/dist/models/create-custom-schema-request-dto.js +1 -2
  56. package/dist/models/create-dashboard-request-dto.d.ts +70 -0
  57. package/dist/models/create-dashboard-request-dto.js +29 -0
  58. package/dist/models/create-dashboard-response-class.d.ts +25 -0
  59. package/dist/models/create-report-request-dto.d.ts +49 -0
  60. package/dist/models/create-report-request-dto.js +22 -0
  61. package/dist/models/create-report-response-class.d.ts +25 -0
  62. package/dist/models/create-scenario-analysis-request-dto.d.ts +74 -0
  63. package/dist/models/create-scenario-analysis-request-dto.js +22 -0
  64. package/dist/models/create-scenario-analysis-response-class.d.ts +25 -0
  65. package/dist/models/dashboard-class.d.ts +78 -0
  66. package/dist/models/get-alert-response-class.d.ts +25 -0
  67. package/dist/models/get-dashboard-response-class.d.ts +25 -0
  68. package/dist/models/{delete-response-class.d.ts → get-embedded-url-response-class.d.ts} +6 -6
  69. package/dist/models/get-report-response-class.d.ts +25 -0
  70. package/dist/models/get-report-response-class.js +15 -0
  71. package/dist/models/get-scenario-analysis-response-class.d.ts +25 -0
  72. package/dist/models/get-scenario-analysis-response-class.js +15 -0
  73. package/dist/models/grouped-tariff-class.d.ts +30 -0
  74. package/dist/models/grouped-tariff-class.js +15 -0
  75. package/dist/models/index.d.ts +50 -12
  76. package/dist/models/index.js +50 -12
  77. package/dist/models/{enable-users-response-class.d.ts → insurance-company-response-class.d.ts} +6 -6
  78. package/dist/models/insurance-company-response-class.js +15 -0
  79. package/dist/models/{disable-users-response-class.d.ts → insurance-response-class.d.ts} +6 -6
  80. package/dist/models/insurance-response-class.js +15 -0
  81. package/dist/models/invite-user-request-dto.d.ts +2 -8
  82. package/dist/models/invite-users-request-dto.d.ts +2 -2
  83. package/dist/models/{list-organizations-response-class.d.ts → list-alert-history-response-class.d.ts} +9 -9
  84. package/dist/models/list-alert-history-response-class.js +15 -0
  85. package/dist/models/list-alerts-response-class.d.ts +31 -0
  86. package/dist/models/list-alerts-response-class.js +15 -0
  87. package/dist/models/list-channels-response-class.d.ts +25 -0
  88. package/dist/models/list-channels-response-class.js +15 -0
  89. package/dist/models/list-dashboards-response-class.d.ts +31 -0
  90. package/dist/models/list-dashboards-response-class.js +15 -0
  91. package/dist/models/list-insurance-companies-response-class.d.ts +25 -0
  92. package/dist/models/list-insurance-companies-response-class.js +15 -0
  93. package/dist/models/list-report-history-response-class.d.ts +31 -0
  94. package/dist/models/list-report-history-response-class.js +15 -0
  95. package/dist/models/list-reports-response-class.d.ts +31 -0
  96. package/dist/models/list-reports-response-class.js +15 -0
  97. package/dist/models/list-scenario-analyses-response-class.d.ts +31 -0
  98. package/dist/models/list-scenario-analyses-response-class.js +15 -0
  99. package/dist/models/list-scenario-analysis-dates-response-class.d.ts +25 -0
  100. package/dist/models/list-scenario-analysis-dates-response-class.js +15 -0
  101. package/dist/models/list-tariff-insurance-companies-response-class.d.ts +25 -0
  102. package/dist/models/list-tariff-insurance-companies-response-class.js +15 -0
  103. package/dist/models/list-tariffs-response-class.d.ts +25 -0
  104. package/dist/models/list-tariffs-response-class.js +15 -0
  105. package/dist/models/{list-org-invitations-response-class.d.ts → list-user-subscriptions-response-class.d.ts} +8 -8
  106. package/dist/models/list-user-subscriptions-response-class.js +15 -0
  107. package/dist/models/{batch-delete-response-class.d.ts → manage-subscription-request-dto.d.ts} +5 -5
  108. package/dist/models/manage-subscription-request-dto.js +15 -0
  109. package/dist/models/manage-subscription-response-class.d.ts +25 -0
  110. package/dist/models/manage-subscription-response-class.js +15 -0
  111. package/dist/models/report-class.d.ts +66 -0
  112. package/dist/models/report-class.js +15 -0
  113. package/dist/models/report-history-class.d.ts +48 -0
  114. package/dist/models/report-history-class.js +15 -0
  115. package/dist/models/scenario-analysis-class.d.ts +108 -0
  116. package/dist/models/scenario-analysis-class.js +15 -0
  117. package/dist/models/scenario-analysis-date-response-class.d.ts +36 -0
  118. package/dist/models/scenario-analysis-date-response-class.js +15 -0
  119. package/dist/models/set-setting-request-dto.d.ts +4 -10
  120. package/dist/models/set-tenant-setting-response-class.d.ts +36 -0
  121. package/dist/models/set-tenant-setting-response-class.js +15 -0
  122. package/dist/models/subscription-class.d.ts +2 -9
  123. package/dist/models/update-alert-request-dto.d.ts +72 -0
  124. package/dist/models/update-alert-request-dto.js +21 -0
  125. package/dist/models/update-alert-response-class.d.ts +25 -0
  126. package/dist/models/update-alert-response-class.js +15 -0
  127. package/dist/models/update-custom-schema-request-dto.d.ts +0 -1
  128. package/dist/models/update-custom-schema-request-dto.js +1 -2
  129. package/dist/models/update-dashboard-request-dto.d.ts +76 -0
  130. package/dist/models/update-dashboard-request-dto.js +29 -0
  131. package/dist/models/update-dashboard-response-class.d.ts +25 -0
  132. package/dist/models/update-dashboard-response-class.js +15 -0
  133. package/dist/models/update-report-request-dto.d.ts +55 -0
  134. package/dist/models/update-report-request-dto.js +22 -0
  135. package/dist/models/update-report-response-class.d.ts +25 -0
  136. package/dist/models/update-report-response-class.js +15 -0
  137. package/dist/models/update-scenario-analysis-request-dto.d.ts +74 -0
  138. package/dist/models/update-scenario-analysis-request-dto.js +22 -0
  139. package/dist/models/update-scenario-analysis-response-class.d.ts +25 -0
  140. package/dist/models/update-scenario-analysis-response-class.js +15 -0
  141. package/dist/models/user-class.d.ts +5 -13
  142. package/models/alert-class.ts +96 -0
  143. package/models/alert-history-class.ts +114 -0
  144. package/models/assign-user-roles-request-dto.ts +2 -2
  145. package/models/channel-response-class.ts +36 -0
  146. package/models/compare-tariffs-request-dto.ts +46 -0
  147. package/models/compare-tariffs-response-class.ts +37 -0
  148. package/models/condition-dto.ts +52 -0
  149. package/models/create-alert-request-dto.ts +89 -0
  150. package/models/create-alert-response-class.ts +31 -0
  151. package/models/create-custom-schema-request-dto.ts +1 -2
  152. package/models/create-dashboard-request-dto.ts +81 -0
  153. package/models/create-dashboard-response-class.ts +31 -0
  154. package/models/create-report-request-dto.ts +58 -0
  155. package/models/create-report-response-class.ts +31 -0
  156. package/models/create-scenario-analysis-request-dto.ts +83 -0
  157. package/models/create-scenario-analysis-response-class.ts +31 -0
  158. package/models/dashboard-class.ts +84 -0
  159. package/models/get-alert-response-class.ts +31 -0
  160. package/models/get-dashboard-response-class.ts +31 -0
  161. package/models/{disable-users-response-class.ts → get-embedded-url-response-class.ts} +6 -6
  162. package/models/get-report-response-class.ts +31 -0
  163. package/models/get-scenario-analysis-response-class.ts +31 -0
  164. package/models/grouped-tariff-class.ts +36 -0
  165. package/models/index.ts +50 -12
  166. package/models/{enable-users-response-class.ts → insurance-company-response-class.ts} +6 -6
  167. package/models/{delete-response-class.ts → insurance-response-class.ts} +6 -6
  168. package/models/invite-user-request-dto.ts +2 -8
  169. package/models/invite-users-request-dto.ts +2 -2
  170. package/models/{list-organizations-response-class.ts → list-alert-history-response-class.ts} +9 -9
  171. package/models/list-alerts-response-class.ts +37 -0
  172. package/models/list-channels-response-class.ts +31 -0
  173. package/models/list-dashboards-response-class.ts +37 -0
  174. package/models/list-insurance-companies-response-class.ts +31 -0
  175. package/models/list-report-history-response-class.ts +37 -0
  176. package/models/list-reports-response-class.ts +37 -0
  177. package/models/list-scenario-analyses-response-class.ts +37 -0
  178. package/models/list-scenario-analysis-dates-response-class.ts +31 -0
  179. package/models/list-tariff-insurance-companies-response-class.ts +31 -0
  180. package/models/list-tariffs-response-class.ts +31 -0
  181. package/models/{list-org-invitations-response-class.ts → list-user-subscriptions-response-class.ts} +8 -8
  182. package/models/{batch-delete-response-class.ts → manage-subscription-request-dto.ts} +5 -5
  183. package/models/manage-subscription-response-class.ts +31 -0
  184. package/models/report-class.ts +72 -0
  185. package/models/report-history-class.ts +54 -0
  186. package/models/scenario-analysis-class.ts +114 -0
  187. package/models/scenario-analysis-date-response-class.ts +42 -0
  188. package/models/set-setting-request-dto.ts +4 -10
  189. package/models/set-tenant-setting-response-class.ts +42 -0
  190. package/models/subscription-class.ts +2 -9
  191. package/models/update-alert-request-dto.ts +81 -0
  192. package/models/update-alert-response-class.ts +31 -0
  193. package/models/update-custom-schema-request-dto.ts +1 -2
  194. package/models/update-dashboard-request-dto.ts +87 -0
  195. package/models/update-dashboard-response-class.ts +31 -0
  196. package/models/update-report-request-dto.ts +64 -0
  197. package/models/update-report-response-class.ts +31 -0
  198. package/models/update-scenario-analysis-request-dto.ts +83 -0
  199. package/models/update-scenario-analysis-response-class.ts +31 -0
  200. package/models/user-class.ts +5 -13
  201. package/package.json +1 -1
  202. package/api/organizations-api.ts +0 -339
  203. package/dist/api/invite-organizations-api.d.ts +0 -198
  204. package/dist/models/get-organization-response-class.d.ts +0 -25
  205. package/dist/models/invite-org-request-dto.d.ts +0 -78
  206. package/dist/models/invite-users-response-class.d.ts +0 -24
  207. package/dist/models/org-invitation-class.d.ts +0 -103
  208. package/dist/models/org-invitation-response-class.d.ts +0 -25
  209. package/dist/models/organization-class.d.ts +0 -84
  210. package/models/get-organization-response-class.ts +0 -31
  211. package/models/invite-org-request-dto.ts +0 -84
  212. package/models/invite-users-response-class.ts +0 -30
  213. package/models/org-invitation-class.ts +0 -109
  214. package/models/org-invitation-response-class.ts +0 -31
  215. package/models/organization-class.ts +0 -90
  216. /package/dist/models/{batch-delete-response-class.js → alert-class.js} +0 -0
  217. /package/dist/models/{delete-response-class.js → alert-history-class.js} +0 -0
  218. /package/dist/models/{disable-users-response-class.js → channel-response-class.js} +0 -0
  219. /package/dist/models/{enable-users-response-class.js → compare-tariffs-response-class.js} +0 -0
  220. /package/dist/models/{get-organization-response-class.js → create-alert-response-class.js} +0 -0
  221. /package/dist/models/{invite-org-request-dto.js → create-dashboard-response-class.js} +0 -0
  222. /package/dist/models/{invite-users-response-class.js → create-report-response-class.js} +0 -0
  223. /package/dist/models/{list-org-invitations-response-class.js → create-scenario-analysis-response-class.js} +0 -0
  224. /package/dist/models/{list-organizations-response-class.js → dashboard-class.js} +0 -0
  225. /package/dist/models/{org-invitation-class.js → get-alert-response-class.js} +0 -0
  226. /package/dist/models/{org-invitation-response-class.js → get-dashboard-response-class.js} +0 -0
  227. /package/dist/models/{organization-class.js → get-embedded-url-response-class.js} +0 -0
@@ -1,103 +0,0 @@
1
- /**
2
- * EMIL Tenant Service
3
- * The EMIL TenantService API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
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 { RoleClass } from './role-class';
13
- /**
14
- *
15
- * @export
16
- * @interface OrgInvitationClass
17
- */
18
- export interface OrgInvitationClass {
19
- /**
20
- * Internal unique identifier for the object. You should not have to use this, use code instead.
21
- * @type {number}
22
- * @memberof OrgInvitationClass
23
- */
24
- 'id': number;
25
- /**
26
- * Organization user\'s email address.
27
- * @type {string}
28
- * @memberof OrgInvitationClass
29
- */
30
- 'email': string;
31
- /**
32
- * Permissions associated with the invite.
33
- * @type {Array<RoleClass>}
34
- * @memberof OrgInvitationClass
35
- */
36
- 'roles'?: Array<RoleClass>;
37
- /**
38
- * Name of the invited organization.
39
- * @type {string}
40
- * @memberof OrgInvitationClass
41
- */
42
- 'name': string;
43
- /**
44
- * Identifier for the organization.
45
- * @type {string}
46
- * @memberof OrgInvitationClass
47
- */
48
- 'slug': string;
49
- /**
50
- * Inviting organization.
51
- * @type {number}
52
- * @memberof OrgInvitationClass
53
- */
54
- 'parentOrganizationId'?: number;
55
- /**
56
- * Address of the organization.
57
- * @type {string}
58
- * @memberof OrgInvitationClass
59
- */
60
- 'address': string;
61
- /**
62
- * Zip code of the organization.
63
- * @type {string}
64
- * @memberof OrgInvitationClass
65
- */
66
- 'zipCode': string;
67
- /**
68
- * City of the organization.
69
- * @type {string}
70
- * @memberof OrgInvitationClass
71
- */
72
- 'city': string;
73
- /**
74
- * Country of the organization.
75
- * @type {string}
76
- * @memberof OrgInvitationClass
77
- */
78
- 'country': string;
79
- /**
80
- * Custom fields of the organization.
81
- * @type {object}
82
- * @memberof OrgInvitationClass
83
- */
84
- 'customFields'?: object;
85
- /**
86
- * Expiry date of invitation email.
87
- * @type {string}
88
- * @memberof OrgInvitationClass
89
- */
90
- 'expiresAt': string;
91
- /**
92
- * Time at which the object was created.
93
- * @type {string}
94
- * @memberof OrgInvitationClass
95
- */
96
- 'createdAt': string;
97
- /**
98
- * Time at which the object was updated.
99
- * @type {string}
100
- * @memberof OrgInvitationClass
101
- */
102
- 'updatedAt': string;
103
- }
@@ -1,25 +0,0 @@
1
- /**
2
- * EMIL Tenant Service
3
- * The EMIL TenantService API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
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 { OrgInvitationClass } from './org-invitation-class';
13
- /**
14
- *
15
- * @export
16
- * @interface OrgInvitationResponseClass
17
- */
18
- export interface OrgInvitationResponseClass {
19
- /**
20
- * Invite organizations.
21
- * @type {OrgInvitationClass}
22
- * @memberof OrgInvitationResponseClass
23
- */
24
- 'invitation': OrgInvitationClass;
25
- }
@@ -1,84 +0,0 @@
1
- /**
2
- * EMIL Tenant Service
3
- * The EMIL TenantService API description
4
- *
5
- * The version of the OpenAPI document: 1.0
6
- * Contact: kontakt@emil.de
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 OrganizationClass
16
- */
17
- export interface OrganizationClass {
18
- /**
19
- * Internal unique identifier for the object. You should not have to use this, use code instead.
20
- * @type {number}
21
- * @memberof OrganizationClass
22
- */
23
- 'id': number;
24
- /**
25
- * Unique identifier for the object.
26
- * @type {string}
27
- * @memberof OrganizationClass
28
- */
29
- 'code': string;
30
- /**
31
- * Parent organization ID.
32
- * @type {object}
33
- * @memberof OrganizationClass
34
- */
35
- 'parentId'?: object;
36
- /**
37
- * ERN of the organization.
38
- * @type {string}
39
- * @memberof OrganizationClass
40
- */
41
- 'ern': string;
42
- /**
43
- * Organization email address
44
- * @type {string}
45
- * @memberof OrganizationClass
46
- */
47
- 'email': string;
48
- /**
49
- * Name of the invited organization.
50
- * @type {string}
51
- * @memberof OrganizationClass
52
- */
53
- 'name': string;
54
- /**
55
- * Address of the organization.
56
- * @type {string}
57
- * @memberof OrganizationClass
58
- */
59
- 'address': string;
60
- /**
61
- * Zip code of the organization.
62
- * @type {string}
63
- * @memberof OrganizationClass
64
- */
65
- 'zipCode': string;
66
- /**
67
- * City of the organization.
68
- * @type {string}
69
- * @memberof OrganizationClass
70
- */
71
- 'city': string;
72
- /**
73
- * Country of the organization.
74
- * @type {string}
75
- * @memberof OrganizationClass
76
- */
77
- 'country': string;
78
- /**
79
- * Custom fields of the organization.
80
- * @type {object}
81
- * @memberof OrganizationClass
82
- */
83
- 'customFields'?: object;
84
- }
@@ -1,31 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL Tenant Service
5
- * The EMIL TenantService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
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
-
16
- import { OrganizationClass } from './organization-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface GetOrganizationResponseClass
22
- */
23
- export interface GetOrganizationResponseClass {
24
- /**
25
- * Organization
26
- * @type {OrganizationClass}
27
- * @memberof GetOrganizationResponseClass
28
- */
29
- 'organization': OrganizationClass;
30
- }
31
-
@@ -1,84 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL Tenant Service
5
- * The EMIL TenantService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
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
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface InviteOrgRequestDto
21
- */
22
- export interface InviteOrgRequestDto {
23
- /**
24
- * Organization\'s contact person email address.
25
- * @type {string}
26
- * @memberof InviteOrgRequestDto
27
- */
28
- 'email': string;
29
- /**
30
- * Role ids to be assigned.
31
- * @type {Array<number>}
32
- * @memberof InviteOrgRequestDto
33
- */
34
- 'roleIds': Array<number>;
35
- /**
36
- * Name of the invited organization.
37
- * @type {string}
38
- * @memberof InviteOrgRequestDto
39
- */
40
- 'name': string;
41
- /**
42
- * Identifier for the organization.
43
- * @type {string}
44
- * @memberof InviteOrgRequestDto
45
- */
46
- 'slug': string;
47
- /**
48
- * Inviting organization.
49
- * @type {number}
50
- * @memberof InviteOrgRequestDto
51
- */
52
- 'parentOrganizationId': number;
53
- /**
54
- * Address of the organization.
55
- * @type {string}
56
- * @memberof InviteOrgRequestDto
57
- */
58
- 'address': string;
59
- /**
60
- * Zip code of the organization.
61
- * @type {string}
62
- * @memberof InviteOrgRequestDto
63
- */
64
- 'zipCode': string;
65
- /**
66
- * City of the organization.
67
- * @type {string}
68
- * @memberof InviteOrgRequestDto
69
- */
70
- 'city': string;
71
- /**
72
- * Country of the organization.
73
- * @type {string}
74
- * @memberof InviteOrgRequestDto
75
- */
76
- 'country': string;
77
- /**
78
- * Custom fields of the organization
79
- * @type {object}
80
- * @memberof InviteOrgRequestDto
81
- */
82
- 'customFields': object;
83
- }
84
-
@@ -1,30 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL Tenant Service
5
- * The EMIL TenantService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
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
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface InviteUsersResponseClass
21
- */
22
- export interface InviteUsersResponseClass {
23
- /**
24
- *
25
- * @type {object}
26
- * @memberof InviteUsersResponseClass
27
- */
28
- 'response': object;
29
- }
30
-
@@ -1,109 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL Tenant Service
5
- * The EMIL TenantService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
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
-
16
- import { RoleClass } from './role-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface OrgInvitationClass
22
- */
23
- export interface OrgInvitationClass {
24
- /**
25
- * Internal unique identifier for the object. You should not have to use this, use code instead.
26
- * @type {number}
27
- * @memberof OrgInvitationClass
28
- */
29
- 'id': number;
30
- /**
31
- * Organization user\'s email address.
32
- * @type {string}
33
- * @memberof OrgInvitationClass
34
- */
35
- 'email': string;
36
- /**
37
- * Permissions associated with the invite.
38
- * @type {Array<RoleClass>}
39
- * @memberof OrgInvitationClass
40
- */
41
- 'roles'?: Array<RoleClass>;
42
- /**
43
- * Name of the invited organization.
44
- * @type {string}
45
- * @memberof OrgInvitationClass
46
- */
47
- 'name': string;
48
- /**
49
- * Identifier for the organization.
50
- * @type {string}
51
- * @memberof OrgInvitationClass
52
- */
53
- 'slug': string;
54
- /**
55
- * Inviting organization.
56
- * @type {number}
57
- * @memberof OrgInvitationClass
58
- */
59
- 'parentOrganizationId'?: number;
60
- /**
61
- * Address of the organization.
62
- * @type {string}
63
- * @memberof OrgInvitationClass
64
- */
65
- 'address': string;
66
- /**
67
- * Zip code of the organization.
68
- * @type {string}
69
- * @memberof OrgInvitationClass
70
- */
71
- 'zipCode': string;
72
- /**
73
- * City of the organization.
74
- * @type {string}
75
- * @memberof OrgInvitationClass
76
- */
77
- 'city': string;
78
- /**
79
- * Country of the organization.
80
- * @type {string}
81
- * @memberof OrgInvitationClass
82
- */
83
- 'country': string;
84
- /**
85
- * Custom fields of the organization.
86
- * @type {object}
87
- * @memberof OrgInvitationClass
88
- */
89
- 'customFields'?: object;
90
- /**
91
- * Expiry date of invitation email.
92
- * @type {string}
93
- * @memberof OrgInvitationClass
94
- */
95
- 'expiresAt': string;
96
- /**
97
- * Time at which the object was created.
98
- * @type {string}
99
- * @memberof OrgInvitationClass
100
- */
101
- 'createdAt': string;
102
- /**
103
- * Time at which the object was updated.
104
- * @type {string}
105
- * @memberof OrgInvitationClass
106
- */
107
- 'updatedAt': string;
108
- }
109
-
@@ -1,31 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL Tenant Service
5
- * The EMIL TenantService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
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
-
16
- import { OrgInvitationClass } from './org-invitation-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface OrgInvitationResponseClass
22
- */
23
- export interface OrgInvitationResponseClass {
24
- /**
25
- * Invite organizations.
26
- * @type {OrgInvitationClass}
27
- * @memberof OrgInvitationResponseClass
28
- */
29
- 'invitation': OrgInvitationClass;
30
- }
31
-
@@ -1,90 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL Tenant Service
5
- * The EMIL TenantService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
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
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface OrganizationClass
21
- */
22
- export interface OrganizationClass {
23
- /**
24
- * Internal unique identifier for the object. You should not have to use this, use code instead.
25
- * @type {number}
26
- * @memberof OrganizationClass
27
- */
28
- 'id': number;
29
- /**
30
- * Unique identifier for the object.
31
- * @type {string}
32
- * @memberof OrganizationClass
33
- */
34
- 'code': string;
35
- /**
36
- * Parent organization ID.
37
- * @type {object}
38
- * @memberof OrganizationClass
39
- */
40
- 'parentId'?: object;
41
- /**
42
- * ERN of the organization.
43
- * @type {string}
44
- * @memberof OrganizationClass
45
- */
46
- 'ern': string;
47
- /**
48
- * Organization email address
49
- * @type {string}
50
- * @memberof OrganizationClass
51
- */
52
- 'email': string;
53
- /**
54
- * Name of the invited organization.
55
- * @type {string}
56
- * @memberof OrganizationClass
57
- */
58
- 'name': string;
59
- /**
60
- * Address of the organization.
61
- * @type {string}
62
- * @memberof OrganizationClass
63
- */
64
- 'address': string;
65
- /**
66
- * Zip code of the organization.
67
- * @type {string}
68
- * @memberof OrganizationClass
69
- */
70
- 'zipCode': string;
71
- /**
72
- * City of the organization.
73
- * @type {string}
74
- * @memberof OrganizationClass
75
- */
76
- 'city': string;
77
- /**
78
- * Country of the organization.
79
- * @type {string}
80
- * @memberof OrganizationClass
81
- */
82
- 'country': string;
83
- /**
84
- * Custom fields of the organization.
85
- * @type {object}
86
- * @memberof OrganizationClass
87
- */
88
- 'customFields'?: object;
89
- }
90
-