@emilgroup/tenant-sdk-node 1.34.1-beta.21 → 1.34.1-beta.22

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 (105) hide show
  1. package/.openapi-generator/FILES +30 -0
  2. package/README.md +2 -2
  3. package/api/dashboard-api.ts +103 -0
  4. package/api/report-schedule-api.ts +697 -0
  5. package/api/report-schedule-logs-api.ts +250 -0
  6. package/api/user-group-api.ts +1090 -0
  7. package/api.ts +6 -0
  8. package/base.ts +1 -0
  9. package/dist/api/dashboard-api.d.ts +56 -0
  10. package/dist/api/dashboard-api.js +92 -0
  11. package/dist/api/report-schedule-api.d.ts +394 -0
  12. package/dist/api/report-schedule-api.js +646 -0
  13. package/dist/api/report-schedule-logs-api.d.ts +150 -0
  14. package/dist/api/report-schedule-logs-api.js +264 -0
  15. package/dist/api/user-group-api.d.ts +603 -0
  16. package/dist/api/user-group-api.js +940 -0
  17. package/dist/api.d.ts +3 -0
  18. package/dist/api.js +3 -0
  19. package/dist/base.d.ts +2 -1
  20. package/dist/base.js +1 -0
  21. package/dist/models/add-users-to-group-request-dto.d.ts +24 -0
  22. package/dist/models/add-users-to-group-request-dto.js +15 -0
  23. package/dist/models/add-users-to-group-response-class.d.ts +25 -0
  24. package/dist/models/add-users-to-group-response-class.js +15 -0
  25. package/dist/models/create-report-schedule-request-dto.d.ts +115 -0
  26. package/dist/models/create-report-schedule-request-dto.js +15 -0
  27. package/dist/models/create-report-schedule-response-class.d.ts +25 -0
  28. package/dist/models/create-report-schedule-response-class.js +15 -0
  29. package/dist/models/create-user-group-request-dto.d.ts +36 -0
  30. package/dist/models/create-user-group-request-dto.js +15 -0
  31. package/dist/models/create-user-group-response-class.d.ts +25 -0
  32. package/dist/models/create-user-group-response-class.js +15 -0
  33. package/dist/models/dashboard-metadata-class.d.ts +43 -0
  34. package/dist/models/dashboard-metadata-class.js +15 -0
  35. package/dist/models/get-dashboard-metadata-response-class.d.ts +25 -0
  36. package/dist/models/get-dashboard-metadata-response-class.js +15 -0
  37. package/dist/models/get-report-schedule-response-class.d.ts +25 -0
  38. package/dist/models/get-report-schedule-response-class.js +15 -0
  39. package/dist/models/get-user-group-response-class.d.ts +25 -0
  40. package/dist/models/get-user-group-response-class.js +15 -0
  41. package/dist/models/index.d.ts +27 -0
  42. package/dist/models/index.js +27 -0
  43. package/dist/models/list-report-schedule-logs-response-class.d.ts +43 -0
  44. package/dist/models/list-report-schedule-logs-response-class.js +15 -0
  45. package/dist/models/list-report-schedules-response-class.d.ts +43 -0
  46. package/dist/models/list-report-schedules-response-class.js +15 -0
  47. package/dist/models/list-user-group-members-response-class.d.ts +43 -0
  48. package/dist/models/list-user-group-members-response-class.js +15 -0
  49. package/dist/models/list-user-groups-response-class.d.ts +43 -0
  50. package/dist/models/list-user-groups-response-class.js +15 -0
  51. package/dist/models/quick-sight-analysis-parameter-class.d.ts +36 -0
  52. package/dist/models/quick-sight-analysis-parameter-class.js +15 -0
  53. package/dist/models/remove-users-from-group-request-dto.d.ts +24 -0
  54. package/dist/models/remove-users-from-group-request-dto.js +15 -0
  55. package/dist/models/report-schedule-class.d.ts +157 -0
  56. package/dist/models/report-schedule-class.js +15 -0
  57. package/dist/models/report-schedule-log-class.d.ts +133 -0
  58. package/dist/models/report-schedule-log-class.js +15 -0
  59. package/dist/models/report-schedule-parameter-class.d.ts +42 -0
  60. package/dist/models/report-schedule-parameter-class.js +15 -0
  61. package/dist/models/report-schedule-parameter-dto.d.ts +42 -0
  62. package/dist/models/report-schedule-parameter-dto.js +15 -0
  63. package/dist/models/report-schedule-parameter-value-class.d.ts +30 -0
  64. package/dist/models/report-schedule-parameter-value-class.js +15 -0
  65. package/dist/models/update-report-schedule-request-dto.d.ts +121 -0
  66. package/dist/models/update-report-schedule-request-dto.js +15 -0
  67. package/dist/models/update-report-schedule-response-class.d.ts +25 -0
  68. package/dist/models/update-report-schedule-response-class.js +15 -0
  69. package/dist/models/update-user-group-request-dto.d.ts +36 -0
  70. package/dist/models/update-user-group-request-dto.js +15 -0
  71. package/dist/models/update-user-group-response-class.d.ts +25 -0
  72. package/dist/models/update-user-group-response-class.js +15 -0
  73. package/dist/models/user-group-class.d.ts +72 -0
  74. package/dist/models/user-group-class.js +15 -0
  75. package/dist/models/user-group-member-class.d.ts +42 -0
  76. package/dist/models/user-group-member-class.js +15 -0
  77. package/models/add-users-to-group-request-dto.ts +30 -0
  78. package/models/add-users-to-group-response-class.ts +31 -0
  79. package/models/create-report-schedule-request-dto.ts +121 -0
  80. package/models/create-report-schedule-response-class.ts +31 -0
  81. package/models/create-user-group-request-dto.ts +42 -0
  82. package/models/create-user-group-response-class.ts +31 -0
  83. package/models/dashboard-metadata-class.ts +49 -0
  84. package/models/get-dashboard-metadata-response-class.ts +31 -0
  85. package/models/get-report-schedule-response-class.ts +31 -0
  86. package/models/get-user-group-response-class.ts +31 -0
  87. package/models/index.ts +27 -0
  88. package/models/list-report-schedule-logs-response-class.ts +49 -0
  89. package/models/list-report-schedules-response-class.ts +49 -0
  90. package/models/list-user-group-members-response-class.ts +49 -0
  91. package/models/list-user-groups-response-class.ts +49 -0
  92. package/models/quick-sight-analysis-parameter-class.ts +42 -0
  93. package/models/remove-users-from-group-request-dto.ts +30 -0
  94. package/models/report-schedule-class.ts +163 -0
  95. package/models/report-schedule-log-class.ts +139 -0
  96. package/models/report-schedule-parameter-class.ts +48 -0
  97. package/models/report-schedule-parameter-dto.ts +48 -0
  98. package/models/report-schedule-parameter-value-class.ts +36 -0
  99. package/models/update-report-schedule-request-dto.ts +127 -0
  100. package/models/update-report-schedule-response-class.ts +31 -0
  101. package/models/update-user-group-request-dto.ts +42 -0
  102. package/models/update-user-group-response-class.ts +31 -0
  103. package/models/user-group-class.ts +78 -0
  104. package/models/user-group-member-class.ts +48 -0
  105. package/package.json +2 -2
@@ -0,0 +1,133 @@
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 { ReportScheduleParameterValueClass } from './report-schedule-parameter-value-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ReportScheduleLogClass
17
+ */
18
+ export interface ReportScheduleLogClass {
19
+ /**
20
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
21
+ * @type {number}
22
+ * @memberof ReportScheduleLogClass
23
+ */
24
+ 'id': number;
25
+ /**
26
+ * Unique identifier for the object.
27
+ * @type {string}
28
+ * @memberof ReportScheduleLogClass
29
+ */
30
+ 'code': string;
31
+ /**
32
+ * Unique identifier referencing the report schedule.
33
+ * @type {number}
34
+ * @memberof ReportScheduleLogClass
35
+ */
36
+ 'reportScheduleId': number;
37
+ /**
38
+ * Unique identifier of the report schedule that this object belongs to.
39
+ * @type {string}
40
+ * @memberof ReportScheduleLogClass
41
+ */
42
+ 'reportScheduleCode': string;
43
+ /**
44
+ * Name of the parent report schedule
45
+ * @type {string}
46
+ * @memberof ReportScheduleLogClass
47
+ */
48
+ 'reportScheduleName': string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof ReportScheduleLogClass
53
+ */
54
+ 'adminUrl': string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof ReportScheduleLogClass
59
+ */
60
+ 'exportFormat': string;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof ReportScheduleLogClass
65
+ */
66
+ 's3FilePath'?: string;
67
+ /**
68
+ * Pre-signed URL for downloading the report file from S3
69
+ * @type {string}
70
+ * @memberof ReportScheduleLogClass
71
+ */
72
+ 'signedS3FileUrl'?: string;
73
+ /**
74
+ * ECS task ARN that executed the scheduled report export
75
+ * @type {string}
76
+ * @memberof ReportScheduleLogClass
77
+ */
78
+ 'ecsTaskArn'?: string;
79
+ /**
80
+ *
81
+ * @type {boolean}
82
+ * @memberof ReportScheduleLogClass
83
+ */
84
+ 'isSuccess'?: boolean;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof ReportScheduleLogClass
89
+ */
90
+ 'errorMessage'?: string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof ReportScheduleLogClass
95
+ */
96
+ 'errorStack'?: string;
97
+ /**
98
+ * When the scheduled report was executed
99
+ * @type {string}
100
+ * @memberof ReportScheduleLogClass
101
+ */
102
+ 'executionMoment': string;
103
+ /**
104
+ *
105
+ * @type {Array<ReportScheduleParameterValueClass>}
106
+ * @memberof ReportScheduleLogClass
107
+ */
108
+ 'parameters': Array<ReportScheduleParameterValueClass>;
109
+ /**
110
+ * Time at which the object was created.
111
+ * @type {string}
112
+ * @memberof ReportScheduleLogClass
113
+ */
114
+ 'createdAt': string;
115
+ /**
116
+ * Time at which the object was updated.
117
+ * @type {string}
118
+ * @memberof ReportScheduleLogClass
119
+ */
120
+ 'updatedAt': string;
121
+ /**
122
+ * Identifier of the user who created the record.
123
+ * @type {string}
124
+ * @memberof ReportScheduleLogClass
125
+ */
126
+ 'createdBy': string;
127
+ /**
128
+ * Identifier of the user who last updated the record.
129
+ * @type {string}
130
+ * @memberof ReportScheduleLogClass
131
+ */
132
+ 'updatedBy': string;
133
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,42 @@
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 ReportScheduleParameterClass
16
+ */
17
+ export interface ReportScheduleParameterClass {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ReportScheduleParameterClass
22
+ */
23
+ 'name': string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ReportScheduleParameterClass
28
+ */
29
+ 'type': string;
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof ReportScheduleParameterClass
34
+ */
35
+ 'isMultiValue': boolean;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ReportScheduleParameterClass
40
+ */
41
+ 'expression': string;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,42 @@
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 ReportScheduleParameterDto
16
+ */
17
+ export interface ReportScheduleParameterDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ReportScheduleParameterDto
22
+ */
23
+ 'name': string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ReportScheduleParameterDto
28
+ */
29
+ 'type': string;
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof ReportScheduleParameterDto
34
+ */
35
+ 'isMultiValue': boolean;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ReportScheduleParameterDto
40
+ */
41
+ 'expression': string;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,30 @@
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 ReportScheduleParameterValueClass
16
+ */
17
+ export interface ReportScheduleParameterValueClass {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ReportScheduleParameterValueClass
22
+ */
23
+ 'name': string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ReportScheduleParameterValueClass
28
+ */
29
+ 'value': string;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,121 @@
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 { ReportScheduleParameterDto } from './report-schedule-parameter-dto';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateReportScheduleRequestDto
17
+ */
18
+ export interface UpdateReportScheduleRequestDto {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof UpdateReportScheduleRequestDto
23
+ */
24
+ 'code': string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof UpdateReportScheduleRequestDto
29
+ */
30
+ 'name': string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof UpdateReportScheduleRequestDto
35
+ */
36
+ 'description'?: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof UpdateReportScheduleRequestDto
41
+ */
42
+ 'reportCode': string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof UpdateReportScheduleRequestDto
47
+ */
48
+ 'reportName': string;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof UpdateReportScheduleRequestDto
53
+ */
54
+ 'exportFormat': string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof UpdateReportScheduleRequestDto
59
+ */
60
+ 'reportSheet'?: string;
61
+ /**
62
+ *
63
+ * @type {boolean}
64
+ * @memberof UpdateReportScheduleRequestDto
65
+ */
66
+ 'skipHeaderRow': boolean;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof UpdateReportScheduleRequestDto
71
+ */
72
+ 'frequency': string;
73
+ /**
74
+ *
75
+ * @type {Array<number>}
76
+ * @memberof UpdateReportScheduleRequestDto
77
+ */
78
+ 'periods': Array<number>;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof UpdateReportScheduleRequestDto
83
+ */
84
+ 'executionTime': string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof UpdateReportScheduleRequestDto
89
+ */
90
+ 'adminUrl': string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof UpdateReportScheduleRequestDto
95
+ */
96
+ 'emailRecipients': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof UpdateReportScheduleRequestDto
101
+ */
102
+ 'emailSubject'?: string;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof UpdateReportScheduleRequestDto
107
+ */
108
+ 'emailTemplateSlug': string;
109
+ /**
110
+ *
111
+ * @type {boolean}
112
+ * @memberof UpdateReportScheduleRequestDto
113
+ */
114
+ 'isActive': boolean;
115
+ /**
116
+ *
117
+ * @type {Array<ReportScheduleParameterDto>}
118
+ * @memberof UpdateReportScheduleRequestDto
119
+ */
120
+ 'parameters': Array<ReportScheduleParameterDto>;
121
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,25 @@
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 { ReportScheduleClass } from './report-schedule-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateReportScheduleResponseClass
17
+ */
18
+ export interface UpdateReportScheduleResponseClass {
19
+ /**
20
+ * The report-schedule response.
21
+ * @type {ReportScheduleClass}
22
+ * @memberof UpdateReportScheduleResponseClass
23
+ */
24
+ 'reportSchedule': ReportScheduleClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,36 @@
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 UpdateUserGroupRequestDto
16
+ */
17
+ export interface UpdateUserGroupRequestDto {
18
+ /**
19
+ * New slug. Slug remains unique per tenant. Must match /^[a-z0-9-]+$/.
20
+ * @type {string}
21
+ * @memberof UpdateUserGroupRequestDto
22
+ */
23
+ 'slug'?: string;
24
+ /**
25
+ * New display name.
26
+ * @type {string}
27
+ * @memberof UpdateUserGroupRequestDto
28
+ */
29
+ 'name'?: string;
30
+ /**
31
+ * New free-text description.
32
+ * @type {string}
33
+ * @memberof UpdateUserGroupRequestDto
34
+ */
35
+ 'description'?: string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,25 @@
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 { UserGroupClass } from './user-group-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateUserGroupResponseClass
17
+ */
18
+ export interface UpdateUserGroupResponseClass {
19
+ /**
20
+ * The updated user group.
21
+ * @type {UserGroupClass}
22
+ * @memberof UpdateUserGroupResponseClass
23
+ */
24
+ 'userGroup': UserGroupClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });
@@ -0,0 +1,72 @@
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 UserGroupClass
16
+ */
17
+ export interface UserGroupClass {
18
+ /**
19
+ * Internal numeric id.
20
+ * @type {number}
21
+ * @memberof UserGroupClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Auto-generated immutable identifier. Used for cross-service references.
26
+ * @type {string}
27
+ * @memberof UserGroupClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Human-readable, renameable identifier. Unique per tenant.
32
+ * @type {string}
33
+ * @memberof UserGroupClass
34
+ */
35
+ 'slug': string;
36
+ /**
37
+ * Display name.
38
+ * @type {string}
39
+ * @memberof UserGroupClass
40
+ */
41
+ 'name': string;
42
+ /**
43
+ * Free-text description.
44
+ * @type {string}
45
+ * @memberof UserGroupClass
46
+ */
47
+ 'description'?: string;
48
+ /**
49
+ * Time at which the object was created.
50
+ * @type {string}
51
+ * @memberof UserGroupClass
52
+ */
53
+ 'createdAt': string;
54
+ /**
55
+ * Time at which the object was updated.
56
+ * @type {string}
57
+ * @memberof UserGroupClass
58
+ */
59
+ 'updatedAt': string;
60
+ /**
61
+ * Identifier of the user who created the record.
62
+ * @type {string}
63
+ * @memberof UserGroupClass
64
+ */
65
+ 'createdBy': string;
66
+ /**
67
+ * Identifier of the user who last updated the record.
68
+ * @type {string}
69
+ * @memberof UserGroupClass
70
+ */
71
+ 'updatedBy': string;
72
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
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 });