@emilgroup/tenant-sdk 1.42.1-beta.22 → 1.42.1-beta.24

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.
@@ -88,6 +88,7 @@ models/get-organization-migration-response-class.ts
88
88
  models/get-organization-response-class.ts
89
89
  models/get-report-schedule-response-class.ts
90
90
  models/get-settings-response-class.ts
91
+ models/get-sso-connection-response-class.ts
91
92
  models/get-user-group-response-class.ts
92
93
  models/get-user-response-class.ts
93
94
  models/index.ts
@@ -162,6 +163,8 @@ models/update-organization-request-dto-rest.ts
162
163
  models/update-organization-response-class.ts
163
164
  models/update-report-schedule-request-dto.ts
164
165
  models/update-report-schedule-response-class.ts
166
+ models/update-sso-connection-status-body-dto.ts
167
+ models/update-sso-connection-status-response-class.ts
165
168
  models/update-user-group-request-dto.ts
166
169
  models/update-user-group-response-class.ts
167
170
  models/user-class.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@1.42.1-beta.22 --save
20
+ npm install @emilgroup/tenant-sdk@1.42.1-beta.24 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk@1.42.1-beta.22
24
+ yarn add @emilgroup/tenant-sdk@1.42.1-beta.24
25
25
  ```
26
26
 
27
27
  And then you can import `UsersApi`.
@@ -24,6 +24,12 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
24
24
  import { CreateSsoConnectionRequestDto } from '../models';
25
25
  // @ts-ignore
26
26
  import { CreateSsoConnectionResponseClass } from '../models';
27
+ // @ts-ignore
28
+ import { GetSsoConnectionResponseClass } from '../models';
29
+ // @ts-ignore
30
+ import { UpdateSsoConnectionStatusBodyDto } from '../models';
31
+ // @ts-ignore
32
+ import { UpdateSsoConnectionStatusResponseClass } from '../models';
27
33
  /**
28
34
  * SSOConnectionApi - axios parameter creator
29
35
  * @export
@@ -72,6 +78,102 @@ export const SSOConnectionApiAxiosParamCreator = function (configuration?: Confi
72
78
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
73
79
  localVarRequestOptions.data = serializeDataIfNeeded(createSsoConnectionRequestDto, localVarRequestOptions, configuration)
74
80
 
81
+ return {
82
+ url: toPathString(localVarUrlObj),
83
+ options: localVarRequestOptions,
84
+ };
85
+ },
86
+ /**
87
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
88
+ * @summary Read the tenant\'s SSO connection
89
+ * @param {string} code Connection code.
90
+ * @param {string} [authorization] Bearer Token
91
+ * @param {*} [options] Override http request option.
92
+ * @throws {RequiredError}
93
+ */
94
+ getSsoConnection: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
95
+ // verify required parameter 'code' is not null or undefined
96
+ assertParamExists('getSsoConnection', 'code', code)
97
+ const localVarPath = `/tenantservice/v1/sso-connection/{code}`
98
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
99
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
100
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
101
+ let baseOptions;
102
+ let baseAccessToken;
103
+ if (configuration) {
104
+ baseOptions = configuration.baseOptions;
105
+ baseAccessToken = configuration.accessToken;
106
+ }
107
+
108
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
109
+ const localVarHeaderParameter = {} as any;
110
+ const localVarQueryParameter = {} as any;
111
+
112
+ // authentication bearer required
113
+ // http bearer authentication required
114
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
115
+
116
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
117
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
118
+ }
119
+
120
+
121
+
122
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
123
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
125
+
126
+ return {
127
+ url: toPathString(localVarUrlObj),
128
+ options: localVarRequestOptions,
129
+ };
130
+ },
131
+ /**
132
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
133
+ * @summary Switch the tenant\'s SSO connection on or off
134
+ * @param {string} code Connection code.
135
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
136
+ * @param {string} [authorization] Bearer Token
137
+ * @param {*} [options] Override http request option.
138
+ * @throws {RequiredError}
139
+ */
140
+ updateSsoConnectionStatus: async (code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
141
+ // verify required parameter 'code' is not null or undefined
142
+ assertParamExists('updateSsoConnectionStatus', 'code', code)
143
+ // verify required parameter 'updateSsoConnectionStatusBodyDto' is not null or undefined
144
+ assertParamExists('updateSsoConnectionStatus', 'updateSsoConnectionStatusBodyDto', updateSsoConnectionStatusBodyDto)
145
+ const localVarPath = `/tenantservice/v1/sso-connection/{code}`
146
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
147
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
148
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
149
+ let baseOptions;
150
+ let baseAccessToken;
151
+ if (configuration) {
152
+ baseOptions = configuration.baseOptions;
153
+ baseAccessToken = configuration.accessToken;
154
+ }
155
+
156
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
157
+ const localVarHeaderParameter = {} as any;
158
+ const localVarQueryParameter = {} as any;
159
+
160
+ // authentication bearer required
161
+ // http bearer authentication required
162
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
163
+
164
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
165
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
166
+ }
167
+
168
+
169
+
170
+ localVarHeaderParameter['Content-Type'] = 'application/json';
171
+
172
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
173
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
174
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
175
+ localVarRequestOptions.data = serializeDataIfNeeded(updateSsoConnectionStatusBodyDto, localVarRequestOptions, configuration)
176
+
75
177
  return {
76
178
  url: toPathString(localVarUrlObj),
77
179
  options: localVarRequestOptions,
@@ -99,6 +201,31 @@ export const SSOConnectionApiFp = function(configuration?: Configuration) {
99
201
  const localVarAxiosArgs = await localVarAxiosParamCreator.createSsoConnection(createSsoConnectionRequestDto, authorization, options);
100
202
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
101
203
  },
204
+ /**
205
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
206
+ * @summary Read the tenant\'s SSO connection
207
+ * @param {string} code Connection code.
208
+ * @param {string} [authorization] Bearer Token
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ */
212
+ async getSsoConnection(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSsoConnectionResponseClass>> {
213
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getSsoConnection(code, authorization, options);
214
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
215
+ },
216
+ /**
217
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
218
+ * @summary Switch the tenant\'s SSO connection on or off
219
+ * @param {string} code Connection code.
220
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
221
+ * @param {string} [authorization] Bearer Token
222
+ * @param {*} [options] Override http request option.
223
+ * @throws {RequiredError}
224
+ */
225
+ async updateSsoConnectionStatus(code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoConnectionStatusResponseClass>> {
226
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options);
227
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
228
+ },
102
229
  }
103
230
  };
104
231
 
@@ -120,6 +247,29 @@ export const SSOConnectionApiFactory = function (configuration?: Configuration,
120
247
  createSsoConnection(createSsoConnectionRequestDto: CreateSsoConnectionRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoConnectionResponseClass> {
121
248
  return localVarFp.createSsoConnection(createSsoConnectionRequestDto, authorization, options).then((request) => request(axios, basePath));
122
249
  },
250
+ /**
251
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
252
+ * @summary Read the tenant\'s SSO connection
253
+ * @param {string} code Connection code.
254
+ * @param {string} [authorization] Bearer Token
255
+ * @param {*} [options] Override http request option.
256
+ * @throws {RequiredError}
257
+ */
258
+ getSsoConnection(code: string, authorization?: string, options?: any): AxiosPromise<GetSsoConnectionResponseClass> {
259
+ return localVarFp.getSsoConnection(code, authorization, options).then((request) => request(axios, basePath));
260
+ },
261
+ /**
262
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
263
+ * @summary Switch the tenant\'s SSO connection on or off
264
+ * @param {string} code Connection code.
265
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
266
+ * @param {string} [authorization] Bearer Token
267
+ * @param {*} [options] Override http request option.
268
+ * @throws {RequiredError}
269
+ */
270
+ updateSsoConnectionStatus(code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoConnectionStatusResponseClass> {
271
+ return localVarFp.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options).then((request) => request(axios, basePath));
272
+ },
123
273
  };
124
274
  };
125
275
 
@@ -144,6 +294,55 @@ export interface SSOConnectionApiCreateSsoConnectionRequest {
144
294
  readonly authorization?: string
145
295
  }
146
296
 
297
+ /**
298
+ * Request parameters for getSsoConnection operation in SSOConnectionApi.
299
+ * @export
300
+ * @interface SSOConnectionApiGetSsoConnectionRequest
301
+ */
302
+ export interface SSOConnectionApiGetSsoConnectionRequest {
303
+ /**
304
+ * Connection code.
305
+ * @type {string}
306
+ * @memberof SSOConnectionApiGetSsoConnection
307
+ */
308
+ readonly code: string
309
+
310
+ /**
311
+ * Bearer Token
312
+ * @type {string}
313
+ * @memberof SSOConnectionApiGetSsoConnection
314
+ */
315
+ readonly authorization?: string
316
+ }
317
+
318
+ /**
319
+ * Request parameters for updateSsoConnectionStatus operation in SSOConnectionApi.
320
+ * @export
321
+ * @interface SSOConnectionApiUpdateSsoConnectionStatusRequest
322
+ */
323
+ export interface SSOConnectionApiUpdateSsoConnectionStatusRequest {
324
+ /**
325
+ * Connection code.
326
+ * @type {string}
327
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
328
+ */
329
+ readonly code: string
330
+
331
+ /**
332
+ *
333
+ * @type {UpdateSsoConnectionStatusBodyDto}
334
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
335
+ */
336
+ readonly updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto
337
+
338
+ /**
339
+ * Bearer Token
340
+ * @type {string}
341
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
342
+ */
343
+ readonly authorization?: string
344
+ }
345
+
147
346
  /**
148
347
  * SSOConnectionApi - object-oriented interface
149
348
  * @export
@@ -162,4 +361,28 @@ export class SSOConnectionApi extends BaseAPI {
162
361
  public createSsoConnection(requestParameters: SSOConnectionApiCreateSsoConnectionRequest, options?: AxiosRequestConfig) {
163
362
  return SSOConnectionApiFp(this.configuration).createSsoConnection(requestParameters.createSsoConnectionRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
164
363
  }
364
+
365
+ /**
366
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
367
+ * @summary Read the tenant\'s SSO connection
368
+ * @param {SSOConnectionApiGetSsoConnectionRequest} requestParameters Request parameters.
369
+ * @param {*} [options] Override http request option.
370
+ * @throws {RequiredError}
371
+ * @memberof SSOConnectionApi
372
+ */
373
+ public getSsoConnection(requestParameters: SSOConnectionApiGetSsoConnectionRequest, options?: AxiosRequestConfig) {
374
+ return SSOConnectionApiFp(this.configuration).getSsoConnection(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
375
+ }
376
+
377
+ /**
378
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
379
+ * @summary Switch the tenant\'s SSO connection on or off
380
+ * @param {SSOConnectionApiUpdateSsoConnectionStatusRequest} requestParameters Request parameters.
381
+ * @param {*} [options] Override http request option.
382
+ * @throws {RequiredError}
383
+ * @memberof SSOConnectionApi
384
+ */
385
+ public updateSsoConnectionStatus(requestParameters: SSOConnectionApiUpdateSsoConnectionStatusRequest, options?: AxiosRequestConfig) {
386
+ return SSOConnectionApiFp(this.configuration).updateSsoConnectionStatus(requestParameters.code, requestParameters.updateSsoConnectionStatusBodyDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
387
+ }
165
388
  }
@@ -14,6 +14,9 @@ import { Configuration } from '../configuration';
14
14
  import { RequestArgs, BaseAPI } from '../base';
15
15
  import { CreateSsoConnectionRequestDto } from '../models';
16
16
  import { CreateSsoConnectionResponseClass } from '../models';
17
+ import { GetSsoConnectionResponseClass } from '../models';
18
+ import { UpdateSsoConnectionStatusBodyDto } from '../models';
19
+ import { UpdateSsoConnectionStatusResponseClass } from '../models';
17
20
  /**
18
21
  * SSOConnectionApi - axios parameter creator
19
22
  * @export
@@ -28,6 +31,25 @@ export declare const SSOConnectionApiAxiosParamCreator: (configuration?: Configu
28
31
  * @throws {RequiredError}
29
32
  */
30
33
  createSsoConnection: (createSsoConnectionRequestDto: CreateSsoConnectionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34
+ /**
35
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
36
+ * @summary Read the tenant\'s SSO connection
37
+ * @param {string} code Connection code.
38
+ * @param {string} [authorization] Bearer Token
39
+ * @param {*} [options] Override http request option.
40
+ * @throws {RequiredError}
41
+ */
42
+ getSsoConnection: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
43
+ /**
44
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
45
+ * @summary Switch the tenant\'s SSO connection on or off
46
+ * @param {string} code Connection code.
47
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
48
+ * @param {string} [authorization] Bearer Token
49
+ * @param {*} [options] Override http request option.
50
+ * @throws {RequiredError}
51
+ */
52
+ updateSsoConnectionStatus: (code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
31
53
  };
32
54
  /**
33
55
  * SSOConnectionApi - functional programming interface
@@ -43,6 +65,25 @@ export declare const SSOConnectionApiFp: (configuration?: Configuration) => {
43
65
  * @throws {RequiredError}
44
66
  */
45
67
  createSsoConnection(createSsoConnectionRequestDto: CreateSsoConnectionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSsoConnectionResponseClass>>;
68
+ /**
69
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
70
+ * @summary Read the tenant\'s SSO connection
71
+ * @param {string} code Connection code.
72
+ * @param {string} [authorization] Bearer Token
73
+ * @param {*} [options] Override http request option.
74
+ * @throws {RequiredError}
75
+ */
76
+ getSsoConnection(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSsoConnectionResponseClass>>;
77
+ /**
78
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
79
+ * @summary Switch the tenant\'s SSO connection on or off
80
+ * @param {string} code Connection code.
81
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
82
+ * @param {string} [authorization] Bearer Token
83
+ * @param {*} [options] Override http request option.
84
+ * @throws {RequiredError}
85
+ */
86
+ updateSsoConnectionStatus(code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoConnectionStatusResponseClass>>;
46
87
  };
47
88
  /**
48
89
  * SSOConnectionApi - factory interface
@@ -58,6 +99,25 @@ export declare const SSOConnectionApiFactory: (configuration?: Configuration, ba
58
99
  * @throws {RequiredError}
59
100
  */
60
101
  createSsoConnection(createSsoConnectionRequestDto: CreateSsoConnectionRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoConnectionResponseClass>;
102
+ /**
103
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
104
+ * @summary Read the tenant\'s SSO connection
105
+ * @param {string} code Connection code.
106
+ * @param {string} [authorization] Bearer Token
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ getSsoConnection(code: string, authorization?: string, options?: any): AxiosPromise<GetSsoConnectionResponseClass>;
111
+ /**
112
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
113
+ * @summary Switch the tenant\'s SSO connection on or off
114
+ * @param {string} code Connection code.
115
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
116
+ * @param {string} [authorization] Bearer Token
117
+ * @param {*} [options] Override http request option.
118
+ * @throws {RequiredError}
119
+ */
120
+ updateSsoConnectionStatus(code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoConnectionStatusResponseClass>;
61
121
  };
62
122
  /**
63
123
  * Request parameters for createSsoConnection operation in SSOConnectionApi.
@@ -78,6 +138,50 @@ export interface SSOConnectionApiCreateSsoConnectionRequest {
78
138
  */
79
139
  readonly authorization?: string;
80
140
  }
141
+ /**
142
+ * Request parameters for getSsoConnection operation in SSOConnectionApi.
143
+ * @export
144
+ * @interface SSOConnectionApiGetSsoConnectionRequest
145
+ */
146
+ export interface SSOConnectionApiGetSsoConnectionRequest {
147
+ /**
148
+ * Connection code.
149
+ * @type {string}
150
+ * @memberof SSOConnectionApiGetSsoConnection
151
+ */
152
+ readonly code: string;
153
+ /**
154
+ * Bearer Token
155
+ * @type {string}
156
+ * @memberof SSOConnectionApiGetSsoConnection
157
+ */
158
+ readonly authorization?: string;
159
+ }
160
+ /**
161
+ * Request parameters for updateSsoConnectionStatus operation in SSOConnectionApi.
162
+ * @export
163
+ * @interface SSOConnectionApiUpdateSsoConnectionStatusRequest
164
+ */
165
+ export interface SSOConnectionApiUpdateSsoConnectionStatusRequest {
166
+ /**
167
+ * Connection code.
168
+ * @type {string}
169
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
170
+ */
171
+ readonly code: string;
172
+ /**
173
+ *
174
+ * @type {UpdateSsoConnectionStatusBodyDto}
175
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
176
+ */
177
+ readonly updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto;
178
+ /**
179
+ * Bearer Token
180
+ * @type {string}
181
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
182
+ */
183
+ readonly authorization?: string;
184
+ }
81
185
  /**
82
186
  * SSOConnectionApi - object-oriented interface
83
187
  * @export
@@ -94,4 +198,22 @@ export declare class SSOConnectionApi extends BaseAPI {
94
198
  * @memberof SSOConnectionApi
95
199
  */
96
200
  createSsoConnection(requestParameters: SSOConnectionApiCreateSsoConnectionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSsoConnectionResponseClass, any, {}>>;
201
+ /**
202
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
203
+ * @summary Read the tenant\'s SSO connection
204
+ * @param {SSOConnectionApiGetSsoConnectionRequest} requestParameters Request parameters.
205
+ * @param {*} [options] Override http request option.
206
+ * @throws {RequiredError}
207
+ * @memberof SSOConnectionApi
208
+ */
209
+ getSsoConnection(requestParameters: SSOConnectionApiGetSsoConnectionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSsoConnectionResponseClass, any, {}>>;
210
+ /**
211
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
212
+ * @summary Switch the tenant\'s SSO connection on or off
213
+ * @param {SSOConnectionApiUpdateSsoConnectionStatusRequest} requestParameters Request parameters.
214
+ * @param {*} [options] Override http request option.
215
+ * @throws {RequiredError}
216
+ * @memberof SSOConnectionApi
217
+ */
218
+ updateSsoConnectionStatus(requestParameters: SSOConnectionApiUpdateSsoConnectionStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateSsoConnectionStatusResponseClass, any, {}>>;
97
219
  }
@@ -141,6 +141,107 @@ var SSOConnectionApiAxiosParamCreator = function (configuration) {
141
141
  });
142
142
  });
143
143
  },
144
+ /**
145
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
146
+ * @summary Read the tenant\'s SSO connection
147
+ * @param {string} code Connection code.
148
+ * @param {string} [authorization] Bearer Token
149
+ * @param {*} [options] Override http request option.
150
+ * @throws {RequiredError}
151
+ */
152
+ getSsoConnection: function (code, authorization, options) {
153
+ if (options === void 0) { options = {}; }
154
+ return __awaiter(_this, void 0, void 0, function () {
155
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
156
+ return __generator(this, function (_a) {
157
+ switch (_a.label) {
158
+ case 0:
159
+ // verify required parameter 'code' is not null or undefined
160
+ (0, common_1.assertParamExists)('getSsoConnection', 'code', code);
161
+ localVarPath = "/tenantservice/v1/sso-connection/{code}"
162
+ .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
163
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
164
+ if (configuration) {
165
+ baseOptions = configuration.baseOptions;
166
+ baseAccessToken = configuration.accessToken;
167
+ }
168
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
169
+ localVarHeaderParameter = {};
170
+ localVarQueryParameter = {};
171
+ // authentication bearer required
172
+ // http bearer authentication required
173
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
174
+ case 1:
175
+ // authentication bearer required
176
+ // http bearer authentication required
177
+ _a.sent();
178
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
179
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
180
+ }
181
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
182
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
183
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
184
+ return [2 /*return*/, {
185
+ url: (0, common_1.toPathString)(localVarUrlObj),
186
+ options: localVarRequestOptions,
187
+ }];
188
+ }
189
+ });
190
+ });
191
+ },
192
+ /**
193
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
194
+ * @summary Switch the tenant\'s SSO connection on or off
195
+ * @param {string} code Connection code.
196
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
197
+ * @param {string} [authorization] Bearer Token
198
+ * @param {*} [options] Override http request option.
199
+ * @throws {RequiredError}
200
+ */
201
+ updateSsoConnectionStatus: function (code, updateSsoConnectionStatusBodyDto, authorization, options) {
202
+ if (options === void 0) { options = {}; }
203
+ return __awaiter(_this, void 0, void 0, function () {
204
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
205
+ return __generator(this, function (_a) {
206
+ switch (_a.label) {
207
+ case 0:
208
+ // verify required parameter 'code' is not null or undefined
209
+ (0, common_1.assertParamExists)('updateSsoConnectionStatus', 'code', code);
210
+ // verify required parameter 'updateSsoConnectionStatusBodyDto' is not null or undefined
211
+ (0, common_1.assertParamExists)('updateSsoConnectionStatus', 'updateSsoConnectionStatusBodyDto', updateSsoConnectionStatusBodyDto);
212
+ localVarPath = "/tenantservice/v1/sso-connection/{code}"
213
+ .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
214
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
215
+ if (configuration) {
216
+ baseOptions = configuration.baseOptions;
217
+ baseAccessToken = configuration.accessToken;
218
+ }
219
+ localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), options);
220
+ localVarHeaderParameter = {};
221
+ localVarQueryParameter = {};
222
+ // authentication bearer required
223
+ // http bearer authentication required
224
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
225
+ case 1:
226
+ // authentication bearer required
227
+ // http bearer authentication required
228
+ _a.sent();
229
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
230
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
231
+ }
232
+ localVarHeaderParameter['Content-Type'] = 'application/json';
233
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
234
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
235
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
236
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateSsoConnectionStatusBodyDto, localVarRequestOptions, configuration);
237
+ return [2 /*return*/, {
238
+ url: (0, common_1.toPathString)(localVarUrlObj),
239
+ options: localVarRequestOptions,
240
+ }];
241
+ }
242
+ });
243
+ });
244
+ },
144
245
  };
145
246
  };
146
247
  exports.SSOConnectionApiAxiosParamCreator = SSOConnectionApiAxiosParamCreator;
@@ -172,6 +273,49 @@ var SSOConnectionApiFp = function (configuration) {
172
273
  });
173
274
  });
174
275
  },
276
+ /**
277
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
278
+ * @summary Read the tenant\'s SSO connection
279
+ * @param {string} code Connection code.
280
+ * @param {string} [authorization] Bearer Token
281
+ * @param {*} [options] Override http request option.
282
+ * @throws {RequiredError}
283
+ */
284
+ getSsoConnection: function (code, authorization, options) {
285
+ return __awaiter(this, void 0, void 0, function () {
286
+ var localVarAxiosArgs;
287
+ return __generator(this, function (_a) {
288
+ switch (_a.label) {
289
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getSsoConnection(code, authorization, options)];
290
+ case 1:
291
+ localVarAxiosArgs = _a.sent();
292
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
293
+ }
294
+ });
295
+ });
296
+ },
297
+ /**
298
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
299
+ * @summary Switch the tenant\'s SSO connection on or off
300
+ * @param {string} code Connection code.
301
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
302
+ * @param {string} [authorization] Bearer Token
303
+ * @param {*} [options] Override http request option.
304
+ * @throws {RequiredError}
305
+ */
306
+ updateSsoConnectionStatus: function (code, updateSsoConnectionStatusBodyDto, authorization, options) {
307
+ return __awaiter(this, void 0, void 0, function () {
308
+ var localVarAxiosArgs;
309
+ return __generator(this, function (_a) {
310
+ switch (_a.label) {
311
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options)];
312
+ case 1:
313
+ localVarAxiosArgs = _a.sent();
314
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
315
+ }
316
+ });
317
+ });
318
+ },
175
319
  };
176
320
  };
177
321
  exports.SSOConnectionApiFp = SSOConnectionApiFp;
@@ -193,6 +337,29 @@ var SSOConnectionApiFactory = function (configuration, basePath, axios) {
193
337
  createSsoConnection: function (createSsoConnectionRequestDto, authorization, options) {
194
338
  return localVarFp.createSsoConnection(createSsoConnectionRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
195
339
  },
340
+ /**
341
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
342
+ * @summary Read the tenant\'s SSO connection
343
+ * @param {string} code Connection code.
344
+ * @param {string} [authorization] Bearer Token
345
+ * @param {*} [options] Override http request option.
346
+ * @throws {RequiredError}
347
+ */
348
+ getSsoConnection: function (code, authorization, options) {
349
+ return localVarFp.getSsoConnection(code, authorization, options).then(function (request) { return request(axios, basePath); });
350
+ },
351
+ /**
352
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
353
+ * @summary Switch the tenant\'s SSO connection on or off
354
+ * @param {string} code Connection code.
355
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
356
+ * @param {string} [authorization] Bearer Token
357
+ * @param {*} [options] Override http request option.
358
+ * @throws {RequiredError}
359
+ */
360
+ updateSsoConnectionStatus: function (code, updateSsoConnectionStatusBodyDto, authorization, options) {
361
+ return localVarFp.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options).then(function (request) { return request(axios, basePath); });
362
+ },
196
363
  };
197
364
  };
198
365
  exports.SSOConnectionApiFactory = SSOConnectionApiFactory;
@@ -219,6 +386,30 @@ var SSOConnectionApi = /** @class */ (function (_super) {
219
386
  var _this = this;
220
387
  return (0, exports.SSOConnectionApiFp)(this.configuration).createSsoConnection(requestParameters.createSsoConnectionRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
221
388
  };
389
+ /**
390
+ * Returns the SSO Connection entity identified by code **Required Permissions** \"tenant-management.settings.view\"
391
+ * @summary Read the tenant\'s SSO connection
392
+ * @param {SSOConnectionApiGetSsoConnectionRequest} requestParameters Request parameters.
393
+ * @param {*} [options] Override http request option.
394
+ * @throws {RequiredError}
395
+ * @memberof SSOConnectionApi
396
+ */
397
+ SSOConnectionApi.prototype.getSsoConnection = function (requestParameters, options) {
398
+ var _this = this;
399
+ return (0, exports.SSOConnectionApiFp)(this.configuration).getSsoConnection(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
400
+ };
401
+ /**
402
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
403
+ * @summary Switch the tenant\'s SSO connection on or off
404
+ * @param {SSOConnectionApiUpdateSsoConnectionStatusRequest} requestParameters Request parameters.
405
+ * @param {*} [options] Override http request option.
406
+ * @throws {RequiredError}
407
+ * @memberof SSOConnectionApi
408
+ */
409
+ SSOConnectionApi.prototype.updateSsoConnectionStatus = function (requestParameters, options) {
410
+ var _this = this;
411
+ return (0, exports.SSOConnectionApiFp)(this.configuration).updateSsoConnectionStatus(requestParameters.code, requestParameters.updateSsoConnectionStatusBodyDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
412
+ };
222
413
  return SSOConnectionApi;
223
414
  }(base_1.BaseAPI));
224
415
  exports.SSOConnectionApi = SSOConnectionApi;
@@ -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 { SsoConnectionClass } from './sso-connection-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetSsoConnectionResponseClass
17
+ */
18
+ export interface GetSsoConnectionResponseClass {
19
+ /**
20
+ *
21
+ * @type {SsoConnectionClass}
22
+ * @memberof GetSsoConnectionResponseClass
23
+ */
24
+ 'ssoConnection': SsoConnectionClass;
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 });
@@ -56,6 +56,7 @@ export * from './get-organization-migration-response-class';
56
56
  export * from './get-organization-response-class';
57
57
  export * from './get-report-schedule-response-class';
58
58
  export * from './get-settings-response-class';
59
+ export * from './get-sso-connection-response-class';
59
60
  export * from './get-user-group-response-class';
60
61
  export * from './get-user-response-class';
61
62
  export * from './initial-tenant-config-class';
@@ -129,6 +130,8 @@ export * from './update-organization-request-dto-rest';
129
130
  export * from './update-organization-response-class';
130
131
  export * from './update-report-schedule-request-dto';
131
132
  export * from './update-report-schedule-response-class';
133
+ export * from './update-sso-connection-status-body-dto';
134
+ export * from './update-sso-connection-status-response-class';
132
135
  export * from './update-user-group-request-dto';
133
136
  export * from './update-user-group-response-class';
134
137
  export * from './user-class';
@@ -72,6 +72,7 @@ __exportStar(require("./get-organization-migration-response-class"), exports);
72
72
  __exportStar(require("./get-organization-response-class"), exports);
73
73
  __exportStar(require("./get-report-schedule-response-class"), exports);
74
74
  __exportStar(require("./get-settings-response-class"), exports);
75
+ __exportStar(require("./get-sso-connection-response-class"), exports);
75
76
  __exportStar(require("./get-user-group-response-class"), exports);
76
77
  __exportStar(require("./get-user-response-class"), exports);
77
78
  __exportStar(require("./initial-tenant-config-class"), exports);
@@ -145,6 +146,8 @@ __exportStar(require("./update-organization-request-dto-rest"), exports);
145
146
  __exportStar(require("./update-organization-response-class"), exports);
146
147
  __exportStar(require("./update-report-schedule-request-dto"), exports);
147
148
  __exportStar(require("./update-report-schedule-response-class"), exports);
149
+ __exportStar(require("./update-sso-connection-status-body-dto"), exports);
150
+ __exportStar(require("./update-sso-connection-status-response-class"), exports);
148
151
  __exportStar(require("./update-user-group-request-dto"), exports);
149
152
  __exportStar(require("./update-user-group-response-class"), exports);
150
153
  __exportStar(require("./user-class"), exports);
@@ -27,4 +27,10 @@ export interface SharedOidcSsoDetailsClass {
27
27
  * @memberof SharedOidcSsoDetailsClass
28
28
  */
29
29
  'clientId': string;
30
+ /**
31
+ * Whether a client secret is stored. The value itself is never returned.
32
+ * @type {boolean}
33
+ * @memberof SharedOidcSsoDetailsClass
34
+ */
35
+ 'hasClientSecret': boolean;
30
36
  }
@@ -0,0 +1,24 @@
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 UpdateSsoConnectionStatusBodyDto
16
+ */
17
+ export interface UpdateSsoConnectionStatusBodyDto {
18
+ /**
19
+ * Is SSO connection active.
20
+ * @type {boolean}
21
+ * @memberof UpdateSsoConnectionStatusBodyDto
22
+ */
23
+ 'isActive': boolean;
24
+ }
@@ -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 { SsoConnectionClass } from './sso-connection-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateSsoConnectionStatusResponseClass
17
+ */
18
+ export interface UpdateSsoConnectionStatusResponseClass {
19
+ /**
20
+ *
21
+ * @type {SsoConnectionClass}
22
+ * @memberof UpdateSsoConnectionStatusResponseClass
23
+ */
24
+ 'ssoConnection': SsoConnectionClass;
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,31 @@
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 { SsoConnectionClass } from './sso-connection-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetSsoConnectionResponseClass
22
+ */
23
+ export interface GetSsoConnectionResponseClass {
24
+ /**
25
+ *
26
+ * @type {SsoConnectionClass}
27
+ * @memberof GetSsoConnectionResponseClass
28
+ */
29
+ 'ssoConnection': SsoConnectionClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -56,6 +56,7 @@ export * from './get-organization-migration-response-class';
56
56
  export * from './get-organization-response-class';
57
57
  export * from './get-report-schedule-response-class';
58
58
  export * from './get-settings-response-class';
59
+ export * from './get-sso-connection-response-class';
59
60
  export * from './get-user-group-response-class';
60
61
  export * from './get-user-response-class';
61
62
  export * from './initial-tenant-config-class';
@@ -129,6 +130,8 @@ export * from './update-organization-request-dto-rest';
129
130
  export * from './update-organization-response-class';
130
131
  export * from './update-report-schedule-request-dto';
131
132
  export * from './update-report-schedule-response-class';
133
+ export * from './update-sso-connection-status-body-dto';
134
+ export * from './update-sso-connection-status-response-class';
132
135
  export * from './update-user-group-request-dto';
133
136
  export * from './update-user-group-response-class';
134
137
  export * from './user-class';
@@ -32,5 +32,11 @@ export interface SharedOidcSsoDetailsClass {
32
32
  * @memberof SharedOidcSsoDetailsClass
33
33
  */
34
34
  'clientId': string;
35
+ /**
36
+ * Whether a client secret is stored. The value itself is never returned.
37
+ * @type {boolean}
38
+ * @memberof SharedOidcSsoDetailsClass
39
+ */
40
+ 'hasClientSecret': boolean;
35
41
  }
36
42
 
@@ -0,0 +1,30 @@
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 UpdateSsoConnectionStatusBodyDto
21
+ */
22
+ export interface UpdateSsoConnectionStatusBodyDto {
23
+ /**
24
+ * Is SSO connection active.
25
+ * @type {boolean}
26
+ * @memberof UpdateSsoConnectionStatusBodyDto
27
+ */
28
+ 'isActive': boolean;
29
+ }
30
+
@@ -0,0 +1,31 @@
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 { SsoConnectionClass } from './sso-connection-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface UpdateSsoConnectionStatusResponseClass
22
+ */
23
+ export interface UpdateSsoConnectionStatusResponseClass {
24
+ /**
25
+ *
26
+ * @type {SsoConnectionClass}
27
+ * @memberof UpdateSsoConnectionStatusResponseClass
28
+ */
29
+ 'ssoConnection': SsoConnectionClass;
30
+ }
31
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/tenant-sdk",
3
- "version": "1.42.1-beta.22",
3
+ "version": "1.42.1-beta.24",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [