@emilgroup/tenant-sdk-node 1.20.0 → 1.22.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.
@@ -8,8 +8,8 @@ api/dashboard-api.ts
8
8
  api/dashboard-group-api.ts
9
9
  api/data-report-api.ts
10
10
  api/data-report-executor-api.ts
11
- api/default-api.ts
12
11
  api/delete-organization-invitations-api.ts
12
+ api/health-check-api.ts
13
13
  api/invite-organizations-api.ts
14
14
  api/invite-users-api.ts
15
15
  api/list-organization-invitations-api.ts
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/tenant-sdk-node@1.20.0 --save
20
+ npm install @emilgroup/tenant-sdk-node@1.22.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk-node@1.20.0
24
+ yarn add @emilgroup/tenant-sdk-node@1.22.0
25
25
  ```
26
26
 
27
27
  And then you can import `UsersApi`.
@@ -29,13 +29,14 @@ import { InlineResponse503 } from '../models';
29
29
  import { URL, URLSearchParams } from 'url';
30
30
  const FormData = require('form-data');
31
31
  /**
32
- * DefaultApi - axios parameter creator
32
+ * HealthCheckApi - axios parameter creator
33
33
  * @export
34
34
  */
35
- export const DefaultApiAxiosParamCreator = function (configuration?: Configuration) {
35
+ export const HealthCheckApiAxiosParamCreator = function (configuration?: Configuration) {
36
36
  return {
37
37
  /**
38
- *
38
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
39
+ * @summary Health Check
39
40
  * @param {*} [options] Override http request option.
40
41
  * @throws {RequiredError}
41
42
  */
@@ -69,14 +70,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
69
70
  };
70
71
 
71
72
  /**
72
- * DefaultApi - functional programming interface
73
+ * HealthCheckApi - functional programming interface
73
74
  * @export
74
75
  */
75
- export const DefaultApiFp = function(configuration?: Configuration) {
76
- const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
76
+ export const HealthCheckApiFp = function(configuration?: Configuration) {
77
+ const localVarAxiosParamCreator = HealthCheckApiAxiosParamCreator(configuration)
77
78
  return {
78
79
  /**
79
- *
80
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
81
+ * @summary Health Check
80
82
  * @param {*} [options] Override http request option.
81
83
  * @throws {RequiredError}
82
84
  */
@@ -88,14 +90,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
88
90
  };
89
91
 
90
92
  /**
91
- * DefaultApi - factory interface
93
+ * HealthCheckApi - factory interface
92
94
  * @export
93
95
  */
94
- export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
95
- const localVarFp = DefaultApiFp(configuration)
96
+ export const HealthCheckApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
97
+ const localVarFp = HealthCheckApiFp(configuration)
96
98
  return {
97
99
  /**
98
- *
100
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
101
+ * @summary Health Check
99
102
  * @param {*} [options] Override http request option.
100
103
  * @throws {RequiredError}
101
104
  */
@@ -106,19 +109,20 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
106
109
  };
107
110
 
108
111
  /**
109
- * DefaultApi - object-oriented interface
112
+ * HealthCheckApi - object-oriented interface
110
113
  * @export
111
- * @class DefaultApi
114
+ * @class HealthCheckApi
112
115
  * @extends {BaseAPI}
113
116
  */
114
- export class DefaultApi extends BaseAPI {
117
+ export class HealthCheckApi extends BaseAPI {
115
118
  /**
116
- *
119
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
120
+ * @summary Health Check
117
121
  * @param {*} [options] Override http request option.
118
122
  * @throws {RequiredError}
119
- * @memberof DefaultApi
123
+ * @memberof HealthCheckApi
120
124
  */
121
125
  public check(options?: AxiosRequestConfig) {
122
- return DefaultApiFp(this.configuration).check(options).then((request) => request(this.axios, this.basePath));
126
+ return HealthCheckApiFp(this.configuration).check(options).then((request) => request(this.axios, this.basePath));
123
127
  }
124
128
  }
package/api.ts CHANGED
@@ -29,8 +29,8 @@ import { DashboardApi } from './api';
29
29
  import { DashboardGroupApi } from './api';
30
30
  import { DataReportApi } from './api';
31
31
  import { DataReportExecutorApi } from './api';
32
- import { DefaultApi } from './api';
33
32
  import { DeleteOrganizationInvitationsApi } from './api';
33
+ import { HealthCheckApi } from './api';
34
34
  import { InviteOrganizationsApi } from './api';
35
35
  import { InviteUsersApi } from './api';
36
36
  import { ListOrganizationInvitationsApi } from './api';
@@ -46,8 +46,8 @@ export * from './api/dashboard-api';
46
46
  export * from './api/dashboard-group-api';
47
47
  export * from './api/data-report-api';
48
48
  export * from './api/data-report-executor-api';
49
- export * from './api/default-api';
50
49
  export * from './api/delete-organization-invitations-api';
50
+ export * from './api/health-check-api';
51
51
  export * from './api/invite-organizations-api';
52
52
  export * from './api/invite-users-api';
53
53
  export * from './api/list-organization-invitations-api';
@@ -0,0 +1,70 @@
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { InlineResponse200 } from '../models';
16
+ /**
17
+ * HealthCheckApi - axios parameter creator
18
+ * @export
19
+ */
20
+ export declare const HealthCheckApiAxiosParamCreator: (configuration?: Configuration) => {
21
+ /**
22
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
23
+ * @summary Health Check
24
+ * @param {*} [options] Override http request option.
25
+ * @throws {RequiredError}
26
+ */
27
+ check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
28
+ };
29
+ /**
30
+ * HealthCheckApi - functional programming interface
31
+ * @export
32
+ */
33
+ export declare const HealthCheckApiFp: (configuration?: Configuration) => {
34
+ /**
35
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
36
+ * @summary Health Check
37
+ * @param {*} [options] Override http request option.
38
+ * @throws {RequiredError}
39
+ */
40
+ check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
41
+ };
42
+ /**
43
+ * HealthCheckApi - factory interface
44
+ * @export
45
+ */
46
+ export declare const HealthCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
47
+ /**
48
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
49
+ * @summary Health Check
50
+ * @param {*} [options] Override http request option.
51
+ * @throws {RequiredError}
52
+ */
53
+ check(options?: any): AxiosPromise<InlineResponse200>;
54
+ };
55
+ /**
56
+ * HealthCheckApi - object-oriented interface
57
+ * @export
58
+ * @class HealthCheckApi
59
+ * @extends {BaseAPI}
60
+ */
61
+ export declare class HealthCheckApi extends BaseAPI {
62
+ /**
63
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
64
+ * @summary Health Check
65
+ * @param {*} [options] Override http request option.
66
+ * @throws {RequiredError}
67
+ * @memberof HealthCheckApi
68
+ */
69
+ check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
70
+ }
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
78
78
  return (mod && mod.__esModule) ? mod : { "default": mod };
79
79
  };
80
80
  Object.defineProperty(exports, "__esModule", { value: true });
81
- exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = void 0;
81
+ exports.HealthCheckApi = exports.HealthCheckApiFactory = exports.HealthCheckApiFp = exports.HealthCheckApiAxiosParamCreator = void 0;
82
82
  var axios_1 = __importDefault(require("axios"));
83
83
  // Some imports not used depending on template conditions
84
84
  // @ts-ignore
@@ -90,14 +90,15 @@ var base_1 = require("../base");
90
90
  var url_1 = require("url");
91
91
  var FormData = require('form-data');
92
92
  /**
93
- * DefaultApi - axios parameter creator
93
+ * HealthCheckApi - axios parameter creator
94
94
  * @export
95
95
  */
96
- var DefaultApiAxiosParamCreator = function (configuration) {
96
+ var HealthCheckApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- *
100
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
101
+ * @summary Health Check
101
102
  * @param {*} [options] Override http request option.
102
103
  * @throws {RequiredError}
103
104
  */
@@ -127,16 +128,17 @@ var DefaultApiAxiosParamCreator = function (configuration) {
127
128
  },
128
129
  };
129
130
  };
130
- exports.DefaultApiAxiosParamCreator = DefaultApiAxiosParamCreator;
131
+ exports.HealthCheckApiAxiosParamCreator = HealthCheckApiAxiosParamCreator;
131
132
  /**
132
- * DefaultApi - functional programming interface
133
+ * HealthCheckApi - functional programming interface
133
134
  * @export
134
135
  */
135
- var DefaultApiFp = function (configuration) {
136
- var localVarAxiosParamCreator = (0, exports.DefaultApiAxiosParamCreator)(configuration);
136
+ var HealthCheckApiFp = function (configuration) {
137
+ var localVarAxiosParamCreator = (0, exports.HealthCheckApiAxiosParamCreator)(configuration);
137
138
  return {
138
139
  /**
139
- *
140
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
141
+ * @summary Health Check
140
142
  * @param {*} [options] Override http request option.
141
143
  * @throws {RequiredError}
142
144
  */
@@ -155,16 +157,17 @@ var DefaultApiFp = function (configuration) {
155
157
  },
156
158
  };
157
159
  };
158
- exports.DefaultApiFp = DefaultApiFp;
160
+ exports.HealthCheckApiFp = HealthCheckApiFp;
159
161
  /**
160
- * DefaultApi - factory interface
162
+ * HealthCheckApi - factory interface
161
163
  * @export
162
164
  */
163
- var DefaultApiFactory = function (configuration, basePath, axios) {
164
- var localVarFp = (0, exports.DefaultApiFp)(configuration);
165
+ var HealthCheckApiFactory = function (configuration, basePath, axios) {
166
+ var localVarFp = (0, exports.HealthCheckApiFp)(configuration);
165
167
  return {
166
168
  /**
167
- *
169
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
170
+ * @summary Health Check
168
171
  * @param {*} [options] Override http request option.
169
172
  * @throws {RequiredError}
170
173
  */
@@ -173,28 +176,29 @@ var DefaultApiFactory = function (configuration, basePath, axios) {
173
176
  },
174
177
  };
175
178
  };
176
- exports.DefaultApiFactory = DefaultApiFactory;
179
+ exports.HealthCheckApiFactory = HealthCheckApiFactory;
177
180
  /**
178
- * DefaultApi - object-oriented interface
181
+ * HealthCheckApi - object-oriented interface
179
182
  * @export
180
- * @class DefaultApi
183
+ * @class HealthCheckApi
181
184
  * @extends {BaseAPI}
182
185
  */
183
- var DefaultApi = /** @class */ (function (_super) {
184
- __extends(DefaultApi, _super);
185
- function DefaultApi() {
186
+ var HealthCheckApi = /** @class */ (function (_super) {
187
+ __extends(HealthCheckApi, _super);
188
+ function HealthCheckApi() {
186
189
  return _super !== null && _super.apply(this, arguments) || this;
187
190
  }
188
191
  /**
189
- *
192
+ * Returns the health status of the tenant service. This endpoint is used to monitor the operational status of the tenant service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
193
+ * @summary Health Check
190
194
  * @param {*} [options] Override http request option.
191
195
  * @throws {RequiredError}
192
- * @memberof DefaultApi
196
+ * @memberof HealthCheckApi
193
197
  */
194
- DefaultApi.prototype.check = function (options) {
198
+ HealthCheckApi.prototype.check = function (options) {
195
199
  var _this = this;
196
- return (0, exports.DefaultApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
200
+ return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
197
201
  };
198
- return DefaultApi;
202
+ return HealthCheckApi;
199
203
  }(base_1.BaseAPI));
200
- exports.DefaultApi = DefaultApi;
204
+ exports.HealthCheckApi = HealthCheckApi;
package/dist/api.d.ts CHANGED
@@ -14,8 +14,8 @@ export * from './api/dashboard-api';
14
14
  export * from './api/dashboard-group-api';
15
15
  export * from './api/data-report-api';
16
16
  export * from './api/data-report-executor-api';
17
- export * from './api/default-api';
18
17
  export * from './api/delete-organization-invitations-api';
18
+ export * from './api/health-check-api';
19
19
  export * from './api/invite-organizations-api';
20
20
  export * from './api/invite-users-api';
21
21
  export * from './api/list-organization-invitations-api';
package/dist/api.js CHANGED
@@ -32,8 +32,8 @@ __exportStar(require("./api/dashboard-api"), exports);
32
32
  __exportStar(require("./api/dashboard-group-api"), exports);
33
33
  __exportStar(require("./api/data-report-api"), exports);
34
34
  __exportStar(require("./api/data-report-executor-api"), exports);
35
- __exportStar(require("./api/default-api"), exports);
36
35
  __exportStar(require("./api/delete-organization-invitations-api"), exports);
36
+ __exportStar(require("./api/health-check-api"), exports);
37
37
  __exportStar(require("./api/invite-organizations-api"), exports);
38
38
  __exportStar(require("./api/invite-users-api"), exports);
39
39
  __exportStar(require("./api/list-organization-invitations-api"), exports);
@@ -63,4 +63,16 @@ export interface CustomSchemaClass {
63
63
  * @memberof CustomSchemaClass
64
64
  */
65
65
  'updatedAt': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof CustomSchemaClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof CustomSchemaClass
76
+ */
77
+ 'updatedBy': string;
66
78
  }
@@ -76,4 +76,16 @@ export interface DataReportClass {
76
76
  * @memberof DataReportClass
77
77
  */
78
78
  'updatedAt': string;
79
+ /**
80
+ * Identifier of the user who created the record.
81
+ * @type {string}
82
+ * @memberof DataReportClass
83
+ */
84
+ 'createdBy': string;
85
+ /**
86
+ * Identifier of the user who last updated the record.
87
+ * @type {string}
88
+ * @memberof DataReportClass
89
+ */
90
+ 'updatedBy': string;
79
91
  }
@@ -69,4 +69,16 @@ export interface DataReportFilterClass {
69
69
  * @memberof DataReportFilterClass
70
70
  */
71
71
  'updatedAt': string;
72
+ /**
73
+ * Identifier of the user who created the record.
74
+ * @type {string}
75
+ * @memberof DataReportFilterClass
76
+ */
77
+ 'createdBy': string;
78
+ /**
79
+ * Identifier of the user who last updated the record.
80
+ * @type {string}
81
+ * @memberof DataReportFilterClass
82
+ */
83
+ 'updatedBy': string;
72
84
  }
@@ -77,6 +77,18 @@ export interface InviteClass {
77
77
  * @memberof InviteClass
78
78
  */
79
79
  'organizationId'?: number;
80
+ /**
81
+ * Identifier of the user who created the record.
82
+ * @type {string}
83
+ * @memberof InviteClass
84
+ */
85
+ 'createdBy': string;
86
+ /**
87
+ * Identifier of the user who last updated the record.
88
+ * @type {string}
89
+ * @memberof InviteClass
90
+ */
91
+ 'updatedBy': string;
80
92
  /**
81
93
  * Organization associated with the user
82
94
  * @type {OrganizationClass}
@@ -106,4 +106,16 @@ export interface OrgInvitationClass {
106
106
  * @memberof OrgInvitationClass
107
107
  */
108
108
  'updatedAt': string;
109
+ /**
110
+ * Identifier of the user who created the record.
111
+ * @type {string}
112
+ * @memberof OrgInvitationClass
113
+ */
114
+ 'createdBy': string;
115
+ /**
116
+ * Identifier of the user who last updated the record.
117
+ * @type {string}
118
+ * @memberof OrgInvitationClass
119
+ */
120
+ 'updatedBy': string;
109
121
  }
@@ -105,4 +105,16 @@ export interface OrganizationClass {
105
105
  * @memberof OrganizationClass
106
106
  */
107
107
  'updatedAt': string;
108
+ /**
109
+ * Identifier of the user who created the record.
110
+ * @type {string}
111
+ * @memberof OrganizationClass
112
+ */
113
+ 'createdBy': string;
114
+ /**
115
+ * Identifier of the user who last updated the record.
116
+ * @type {string}
117
+ * @memberof OrganizationClass
118
+ */
119
+ 'updatedBy': string;
108
120
  }
@@ -57,4 +57,16 @@ export interface PermissionClass {
57
57
  * @memberof PermissionClass
58
58
  */
59
59
  'updatedAt': string;
60
+ /**
61
+ * Identifier of the user who created the record.
62
+ * @type {string}
63
+ * @memberof PermissionClass
64
+ */
65
+ 'createdBy': string;
66
+ /**
67
+ * Identifier of the user who last updated the record.
68
+ * @type {string}
69
+ * @memberof PermissionClass
70
+ */
71
+ 'updatedBy': string;
60
72
  }
@@ -58,4 +58,16 @@ export interface RoleClass {
58
58
  * @memberof RoleClass
59
59
  */
60
60
  'updatedAt': string;
61
+ /**
62
+ * Identifier of the user who created the record.
63
+ * @type {string}
64
+ * @memberof RoleClass
65
+ */
66
+ 'createdBy': string;
67
+ /**
68
+ * Identifier of the user who last updated the record.
69
+ * @type {string}
70
+ * @memberof RoleClass
71
+ */
72
+ 'updatedBy': string;
61
73
  }
@@ -58,6 +58,18 @@ export interface SubscriptionClass {
58
58
  * @memberof SubscriptionClass
59
59
  */
60
60
  'updatedAt'?: string;
61
+ /**
62
+ * Identifier of the user who created the record.
63
+ * @type {string}
64
+ * @memberof SubscriptionClass
65
+ */
66
+ 'createdBy': string;
67
+ /**
68
+ * Identifier of the user who last updated the record.
69
+ * @type {string}
70
+ * @memberof SubscriptionClass
71
+ */
72
+ 'updatedBy': string;
61
73
  /**
62
74
  * user
63
75
  * @type {UserClass}
@@ -102,6 +102,18 @@ export interface UserClass {
102
102
  * @memberof UserClass
103
103
  */
104
104
  'partnerCode'?: string;
105
+ /**
106
+ * Identifier of the user who created the record.
107
+ * @type {string}
108
+ * @memberof UserClass
109
+ */
110
+ 'createdBy': string;
111
+ /**
112
+ * Identifier of the user who last updated the record.
113
+ * @type {string}
114
+ * @memberof UserClass
115
+ */
116
+ 'updatedBy': string;
105
117
  /**
106
118
  * Organization associated with the user
107
119
  * @type {OrganizationClass}
@@ -68,5 +68,17 @@ export interface CustomSchemaClass {
68
68
  * @memberof CustomSchemaClass
69
69
  */
70
70
  'updatedAt': string;
71
+ /**
72
+ * Identifier of the user who created the record.
73
+ * @type {string}
74
+ * @memberof CustomSchemaClass
75
+ */
76
+ 'createdBy': string;
77
+ /**
78
+ * Identifier of the user who last updated the record.
79
+ * @type {string}
80
+ * @memberof CustomSchemaClass
81
+ */
82
+ 'updatedBy': string;
71
83
  }
72
84
 
@@ -81,5 +81,17 @@ export interface DataReportClass {
81
81
  * @memberof DataReportClass
82
82
  */
83
83
  'updatedAt': string;
84
+ /**
85
+ * Identifier of the user who created the record.
86
+ * @type {string}
87
+ * @memberof DataReportClass
88
+ */
89
+ 'createdBy': string;
90
+ /**
91
+ * Identifier of the user who last updated the record.
92
+ * @type {string}
93
+ * @memberof DataReportClass
94
+ */
95
+ 'updatedBy': string;
84
96
  }
85
97
 
@@ -74,5 +74,17 @@ export interface DataReportFilterClass {
74
74
  * @memberof DataReportFilterClass
75
75
  */
76
76
  'updatedAt': string;
77
+ /**
78
+ * Identifier of the user who created the record.
79
+ * @type {string}
80
+ * @memberof DataReportFilterClass
81
+ */
82
+ 'createdBy': string;
83
+ /**
84
+ * Identifier of the user who last updated the record.
85
+ * @type {string}
86
+ * @memberof DataReportFilterClass
87
+ */
88
+ 'updatedBy': string;
77
89
  }
78
90
 
@@ -82,6 +82,18 @@ export interface InviteClass {
82
82
  * @memberof InviteClass
83
83
  */
84
84
  'organizationId'?: number;
85
+ /**
86
+ * Identifier of the user who created the record.
87
+ * @type {string}
88
+ * @memberof InviteClass
89
+ */
90
+ 'createdBy': string;
91
+ /**
92
+ * Identifier of the user who last updated the record.
93
+ * @type {string}
94
+ * @memberof InviteClass
95
+ */
96
+ 'updatedBy': string;
85
97
  /**
86
98
  * Organization associated with the user
87
99
  * @type {OrganizationClass}
@@ -111,5 +111,17 @@ export interface OrgInvitationClass {
111
111
  * @memberof OrgInvitationClass
112
112
  */
113
113
  'updatedAt': string;
114
+ /**
115
+ * Identifier of the user who created the record.
116
+ * @type {string}
117
+ * @memberof OrgInvitationClass
118
+ */
119
+ 'createdBy': string;
120
+ /**
121
+ * Identifier of the user who last updated the record.
122
+ * @type {string}
123
+ * @memberof OrgInvitationClass
124
+ */
125
+ 'updatedBy': string;
114
126
  }
115
127
 
@@ -110,5 +110,17 @@ export interface OrganizationClass {
110
110
  * @memberof OrganizationClass
111
111
  */
112
112
  'updatedAt': string;
113
+ /**
114
+ * Identifier of the user who created the record.
115
+ * @type {string}
116
+ * @memberof OrganizationClass
117
+ */
118
+ 'createdBy': string;
119
+ /**
120
+ * Identifier of the user who last updated the record.
121
+ * @type {string}
122
+ * @memberof OrganizationClass
123
+ */
124
+ 'updatedBy': string;
113
125
  }
114
126
 
@@ -62,5 +62,17 @@ export interface PermissionClass {
62
62
  * @memberof PermissionClass
63
63
  */
64
64
  'updatedAt': string;
65
+ /**
66
+ * Identifier of the user who created the record.
67
+ * @type {string}
68
+ * @memberof PermissionClass
69
+ */
70
+ 'createdBy': string;
71
+ /**
72
+ * Identifier of the user who last updated the record.
73
+ * @type {string}
74
+ * @memberof PermissionClass
75
+ */
76
+ 'updatedBy': string;
65
77
  }
66
78
 
@@ -63,5 +63,17 @@ export interface RoleClass {
63
63
  * @memberof RoleClass
64
64
  */
65
65
  'updatedAt': string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof RoleClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof RoleClass
76
+ */
77
+ 'updatedBy': string;
66
78
  }
67
79
 
@@ -63,6 +63,18 @@ export interface SubscriptionClass {
63
63
  * @memberof SubscriptionClass
64
64
  */
65
65
  'updatedAt'?: string;
66
+ /**
67
+ * Identifier of the user who created the record.
68
+ * @type {string}
69
+ * @memberof SubscriptionClass
70
+ */
71
+ 'createdBy': string;
72
+ /**
73
+ * Identifier of the user who last updated the record.
74
+ * @type {string}
75
+ * @memberof SubscriptionClass
76
+ */
77
+ 'updatedBy': string;
66
78
  /**
67
79
  * user
68
80
  * @type {UserClass}
@@ -107,6 +107,18 @@ export interface UserClass {
107
107
  * @memberof UserClass
108
108
  */
109
109
  'partnerCode'?: string;
110
+ /**
111
+ * Identifier of the user who created the record.
112
+ * @type {string}
113
+ * @memberof UserClass
114
+ */
115
+ 'createdBy': string;
116
+ /**
117
+ * Identifier of the user who last updated the record.
118
+ * @type {string}
119
+ * @memberof UserClass
120
+ */
121
+ 'updatedBy': string;
110
122
  /**
111
123
  * Organization associated with the user
112
124
  * @type {OrganizationClass}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/tenant-sdk-node",
3
- "version": "1.20.0",
3
+ "version": "1.22.0",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -1,66 +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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
- import { Configuration } from '../configuration';
14
- import { RequestArgs, BaseAPI } from '../base';
15
- import { InlineResponse200 } from '../models';
16
- /**
17
- * DefaultApi - axios parameter creator
18
- * @export
19
- */
20
- export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
21
- /**
22
- *
23
- * @param {*} [options] Override http request option.
24
- * @throws {RequiredError}
25
- */
26
- check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
27
- };
28
- /**
29
- * DefaultApi - functional programming interface
30
- * @export
31
- */
32
- export declare const DefaultApiFp: (configuration?: Configuration) => {
33
- /**
34
- *
35
- * @param {*} [options] Override http request option.
36
- * @throws {RequiredError}
37
- */
38
- check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
39
- };
40
- /**
41
- * DefaultApi - factory interface
42
- * @export
43
- */
44
- export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
45
- /**
46
- *
47
- * @param {*} [options] Override http request option.
48
- * @throws {RequiredError}
49
- */
50
- check(options?: any): AxiosPromise<InlineResponse200>;
51
- };
52
- /**
53
- * DefaultApi - object-oriented interface
54
- * @export
55
- * @class DefaultApi
56
- * @extends {BaseAPI}
57
- */
58
- export declare class DefaultApi extends BaseAPI {
59
- /**
60
- *
61
- * @param {*} [options] Override http request option.
62
- * @throws {RequiredError}
63
- * @memberof DefaultApi
64
- */
65
- check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
66
- }