@emilgroup/tenant-sdk-node 1.39.1-beta.23 → 1.39.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.
@@ -163,6 +163,8 @@ models/update-organization-request-dto-rest.ts
163
163
  models/update-organization-response-class.ts
164
164
  models/update-report-schedule-request-dto.ts
165
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
166
168
  models/update-user-group-request-dto.ts
167
169
  models/update-user-group-response-class.ts
168
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-node@1.39.1-beta.23 --save
20
+ npm install @emilgroup/tenant-sdk-node@1.39.1-beta.24 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.23
24
+ yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.24
25
25
  ```
26
26
 
27
27
  And then you can import `UsersApi`.
@@ -26,6 +26,10 @@ import { CreateSsoConnectionRequestDto } from '../models';
26
26
  import { CreateSsoConnectionResponseClass } from '../models';
27
27
  // @ts-ignore
28
28
  import { GetSsoConnectionResponseClass } from '../models';
29
+ // @ts-ignore
30
+ import { UpdateSsoConnectionStatusBodyDto } from '../models';
31
+ // @ts-ignore
32
+ import { UpdateSsoConnectionStatusResponseClass } from '../models';
29
33
  // URLSearchParams not necessarily used
30
34
  // @ts-ignore
31
35
  import { URL, URLSearchParams } from 'url';
@@ -123,6 +127,57 @@ export const SSOConnectionApiAxiosParamCreator = function (configuration?: Confi
123
127
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124
128
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
125
129
 
130
+ return {
131
+ url: toPathString(localVarUrlObj),
132
+ options: localVarRequestOptions,
133
+ };
134
+ },
135
+ /**
136
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
137
+ * @summary Switch the tenant\'s SSO connection on or off
138
+ * @param {string} code Connection code.
139
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
140
+ * @param {string} [authorization] Bearer Token
141
+ * @param {*} [options] Override http request option.
142
+ * @throws {RequiredError}
143
+ */
144
+ updateSsoConnectionStatus: async (code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
145
+ // verify required parameter 'code' is not null or undefined
146
+ assertParamExists('updateSsoConnectionStatus', 'code', code)
147
+ // verify required parameter 'updateSsoConnectionStatusBodyDto' is not null or undefined
148
+ assertParamExists('updateSsoConnectionStatus', 'updateSsoConnectionStatusBodyDto', updateSsoConnectionStatusBodyDto)
149
+ const localVarPath = `/tenantservice/v1/sso-connection/{code}`
150
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
151
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
152
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
153
+ let baseOptions;
154
+ let baseAccessToken;
155
+ if (configuration) {
156
+ baseOptions = configuration.baseOptions;
157
+ baseAccessToken = configuration.accessToken;
158
+ }
159
+
160
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
161
+ const localVarHeaderParameter = {} as any;
162
+ const localVarQueryParameter = {} as any;
163
+
164
+ // authentication bearer required
165
+ // http bearer authentication required
166
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
167
+
168
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
169
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
170
+ }
171
+
172
+
173
+
174
+ localVarHeaderParameter['Content-Type'] = 'application/json';
175
+
176
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
177
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
178
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
179
+ localVarRequestOptions.data = serializeDataIfNeeded(updateSsoConnectionStatusBodyDto, localVarRequestOptions, configuration)
180
+
126
181
  return {
127
182
  url: toPathString(localVarUrlObj),
128
183
  options: localVarRequestOptions,
@@ -162,6 +217,19 @@ export const SSOConnectionApiFp = function(configuration?: Configuration) {
162
217
  const localVarAxiosArgs = await localVarAxiosParamCreator.getSsoConnection(code, authorization, options);
163
218
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
164
219
  },
220
+ /**
221
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
222
+ * @summary Switch the tenant\'s SSO connection on or off
223
+ * @param {string} code Connection code.
224
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
225
+ * @param {string} [authorization] Bearer Token
226
+ * @param {*} [options] Override http request option.
227
+ * @throws {RequiredError}
228
+ */
229
+ async updateSsoConnectionStatus(code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoConnectionStatusResponseClass>> {
230
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options);
231
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
232
+ },
165
233
  }
166
234
  };
167
235
 
@@ -194,6 +262,18 @@ export const SSOConnectionApiFactory = function (configuration?: Configuration,
194
262
  getSsoConnection(code: string, authorization?: string, options?: any): AxiosPromise<GetSsoConnectionResponseClass> {
195
263
  return localVarFp.getSsoConnection(code, authorization, options).then((request) => request(axios, basePath));
196
264
  },
265
+ /**
266
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
267
+ * @summary Switch the tenant\'s SSO connection on or off
268
+ * @param {string} code Connection code.
269
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
270
+ * @param {string} [authorization] Bearer Token
271
+ * @param {*} [options] Override http request option.
272
+ * @throws {RequiredError}
273
+ */
274
+ updateSsoConnectionStatus(code: string, updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoConnectionStatusResponseClass> {
275
+ return localVarFp.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options).then((request) => request(axios, basePath));
276
+ },
197
277
  };
198
278
  };
199
279
 
@@ -239,6 +319,34 @@ export interface SSOConnectionApiGetSsoConnectionRequest {
239
319
  readonly authorization?: string
240
320
  }
241
321
 
322
+ /**
323
+ * Request parameters for updateSsoConnectionStatus operation in SSOConnectionApi.
324
+ * @export
325
+ * @interface SSOConnectionApiUpdateSsoConnectionStatusRequest
326
+ */
327
+ export interface SSOConnectionApiUpdateSsoConnectionStatusRequest {
328
+ /**
329
+ * Connection code.
330
+ * @type {string}
331
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
332
+ */
333
+ readonly code: string
334
+
335
+ /**
336
+ *
337
+ * @type {UpdateSsoConnectionStatusBodyDto}
338
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
339
+ */
340
+ readonly updateSsoConnectionStatusBodyDto: UpdateSsoConnectionStatusBodyDto
341
+
342
+ /**
343
+ * Bearer Token
344
+ * @type {string}
345
+ * @memberof SSOConnectionApiUpdateSsoConnectionStatus
346
+ */
347
+ readonly authorization?: string
348
+ }
349
+
242
350
  /**
243
351
  * SSOConnectionApi - object-oriented interface
244
352
  * @export
@@ -269,4 +377,16 @@ export class SSOConnectionApi extends BaseAPI {
269
377
  public getSsoConnection(requestParameters: SSOConnectionApiGetSsoConnectionRequest, options?: AxiosRequestConfig) {
270
378
  return SSOConnectionApiFp(this.configuration).getSsoConnection(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
271
379
  }
380
+
381
+ /**
382
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
383
+ * @summary Switch the tenant\'s SSO connection on or off
384
+ * @param {SSOConnectionApiUpdateSsoConnectionStatusRequest} requestParameters Request parameters.
385
+ * @param {*} [options] Override http request option.
386
+ * @throws {RequiredError}
387
+ * @memberof SSOConnectionApi
388
+ */
389
+ public updateSsoConnectionStatus(requestParameters: SSOConnectionApiUpdateSsoConnectionStatusRequest, options?: AxiosRequestConfig) {
390
+ return SSOConnectionApiFp(this.configuration).updateSsoConnectionStatus(requestParameters.code, requestParameters.updateSsoConnectionStatusBodyDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
391
+ }
272
392
  }
@@ -15,6 +15,8 @@ import { RequestArgs, BaseAPI } from '../base';
15
15
  import { CreateSsoConnectionRequestDto } from '../models';
16
16
  import { CreateSsoConnectionResponseClass } from '../models';
17
17
  import { GetSsoConnectionResponseClass } from '../models';
18
+ import { UpdateSsoConnectionStatusBodyDto } from '../models';
19
+ import { UpdateSsoConnectionStatusResponseClass } from '../models';
18
20
  /**
19
21
  * SSOConnectionApi - axios parameter creator
20
22
  * @export
@@ -38,6 +40,16 @@ export declare const SSOConnectionApiAxiosParamCreator: (configuration?: Configu
38
40
  * @throws {RequiredError}
39
41
  */
40
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>;
41
53
  };
42
54
  /**
43
55
  * SSOConnectionApi - functional programming interface
@@ -62,6 +74,16 @@ export declare const SSOConnectionApiFp: (configuration?: Configuration) => {
62
74
  * @throws {RequiredError}
63
75
  */
64
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>>;
65
87
  };
66
88
  /**
67
89
  * SSOConnectionApi - factory interface
@@ -86,6 +108,16 @@ export declare const SSOConnectionApiFactory: (configuration?: Configuration, ba
86
108
  * @throws {RequiredError}
87
109
  */
88
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>;
89
121
  };
90
122
  /**
91
123
  * Request parameters for createSsoConnection operation in SSOConnectionApi.
@@ -125,6 +157,31 @@ export interface SSOConnectionApiGetSsoConnectionRequest {
125
157
  */
126
158
  readonly authorization?: string;
127
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
+ }
128
185
  /**
129
186
  * SSOConnectionApi - object-oriented interface
130
187
  * @export
@@ -150,4 +207,13 @@ export declare class SSOConnectionApi extends BaseAPI {
150
207
  * @memberof SSOConnectionApi
151
208
  */
152
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, {}>>;
153
219
  }
@@ -193,6 +193,59 @@ var SSOConnectionApiAxiosParamCreator = function (configuration) {
193
193
  });
194
194
  });
195
195
  },
196
+ /**
197
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
198
+ * @summary Switch the tenant\'s SSO connection on or off
199
+ * @param {string} code Connection code.
200
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
201
+ * @param {string} [authorization] Bearer Token
202
+ * @param {*} [options] Override http request option.
203
+ * @throws {RequiredError}
204
+ */
205
+ updateSsoConnectionStatus: function (code, updateSsoConnectionStatusBodyDto, authorization, options) {
206
+ if (options === void 0) { options = {}; }
207
+ return __awaiter(_this, void 0, void 0, function () {
208
+ var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
209
+ return __generator(this, function (_a) {
210
+ switch (_a.label) {
211
+ case 0:
212
+ // verify required parameter 'code' is not null or undefined
213
+ (0, common_1.assertParamExists)('updateSsoConnectionStatus', 'code', code);
214
+ // verify required parameter 'updateSsoConnectionStatusBodyDto' is not null or undefined
215
+ (0, common_1.assertParamExists)('updateSsoConnectionStatus', 'updateSsoConnectionStatusBodyDto', updateSsoConnectionStatusBodyDto);
216
+ localVarPath = "/tenantservice/v1/sso-connection/{code}"
217
+ .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
218
+ localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
219
+ if (configuration) {
220
+ baseOptions = configuration.baseOptions;
221
+ baseAccessToken = configuration.accessToken;
222
+ }
223
+ localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), options);
224
+ localVarHeaderParameter = {};
225
+ localVarQueryParameter = {};
226
+ // authentication bearer required
227
+ // http bearer authentication required
228
+ return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
229
+ case 1:
230
+ // authentication bearer required
231
+ // http bearer authentication required
232
+ _a.sent();
233
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
234
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
235
+ }
236
+ localVarHeaderParameter['Content-Type'] = 'application/json';
237
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
238
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
239
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
240
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateSsoConnectionStatusBodyDto, localVarRequestOptions, configuration);
241
+ return [2 /*return*/, {
242
+ url: (0, common_1.toPathString)(localVarUrlObj),
243
+ options: localVarRequestOptions,
244
+ }];
245
+ }
246
+ });
247
+ });
248
+ },
196
249
  };
197
250
  };
198
251
  exports.SSOConnectionApiAxiosParamCreator = SSOConnectionApiAxiosParamCreator;
@@ -245,6 +298,28 @@ var SSOConnectionApiFp = function (configuration) {
245
298
  });
246
299
  });
247
300
  },
301
+ /**
302
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
303
+ * @summary Switch the tenant\'s SSO connection on or off
304
+ * @param {string} code Connection code.
305
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
306
+ * @param {string} [authorization] Bearer Token
307
+ * @param {*} [options] Override http request option.
308
+ * @throws {RequiredError}
309
+ */
310
+ updateSsoConnectionStatus: function (code, updateSsoConnectionStatusBodyDto, authorization, options) {
311
+ return __awaiter(this, void 0, void 0, function () {
312
+ var localVarAxiosArgs;
313
+ return __generator(this, function (_a) {
314
+ switch (_a.label) {
315
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options)];
316
+ case 1:
317
+ localVarAxiosArgs = _a.sent();
318
+ return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
319
+ }
320
+ });
321
+ });
322
+ },
248
323
  };
249
324
  };
250
325
  exports.SSOConnectionApiFp = SSOConnectionApiFp;
@@ -277,6 +352,18 @@ var SSOConnectionApiFactory = function (configuration, basePath, axios) {
277
352
  getSsoConnection: function (code, authorization, options) {
278
353
  return localVarFp.getSsoConnection(code, authorization, options).then(function (request) { return request(axios, basePath); });
279
354
  },
355
+ /**
356
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
357
+ * @summary Switch the tenant\'s SSO connection on or off
358
+ * @param {string} code Connection code.
359
+ * @param {UpdateSsoConnectionStatusBodyDto} updateSsoConnectionStatusBodyDto
360
+ * @param {string} [authorization] Bearer Token
361
+ * @param {*} [options] Override http request option.
362
+ * @throws {RequiredError}
363
+ */
364
+ updateSsoConnectionStatus: function (code, updateSsoConnectionStatusBodyDto, authorization, options) {
365
+ return localVarFp.updateSsoConnectionStatus(code, updateSsoConnectionStatusBodyDto, authorization, options).then(function (request) { return request(axios, basePath); });
366
+ },
280
367
  };
281
368
  };
282
369
  exports.SSOConnectionApiFactory = SSOConnectionApiFactory;
@@ -315,6 +402,18 @@ var SSOConnectionApi = /** @class */ (function (_super) {
315
402
  var _this = this;
316
403
  return (0, exports.SSOConnectionApiFp)(this.configuration).getSsoConnection(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
317
404
  };
405
+ /**
406
+ * Activates and deactivates SSO connection status. **Required Permissions** \"tenant-management.settings.update\"
407
+ * @summary Switch the tenant\'s SSO connection on or off
408
+ * @param {SSOConnectionApiUpdateSsoConnectionStatusRequest} requestParameters Request parameters.
409
+ * @param {*} [options] Override http request option.
410
+ * @throws {RequiredError}
411
+ * @memberof SSOConnectionApi
412
+ */
413
+ SSOConnectionApi.prototype.updateSsoConnectionStatus = function (requestParameters, options) {
414
+ var _this = this;
415
+ return (0, exports.SSOConnectionApiFp)(this.configuration).updateSsoConnectionStatus(requestParameters.code, requestParameters.updateSsoConnectionStatusBodyDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
416
+ };
318
417
  return SSOConnectionApi;
319
418
  }(base_1.BaseAPI));
320
419
  exports.SSOConnectionApi = SSOConnectionApi;
@@ -130,6 +130,8 @@ export * from './update-organization-request-dto-rest';
130
130
  export * from './update-organization-response-class';
131
131
  export * from './update-report-schedule-request-dto';
132
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';
133
135
  export * from './update-user-group-request-dto';
134
136
  export * from './update-user-group-response-class';
135
137
  export * from './user-class';
@@ -146,6 +146,8 @@ __exportStar(require("./update-organization-request-dto-rest"), exports);
146
146
  __exportStar(require("./update-organization-response-class"), exports);
147
147
  __exportStar(require("./update-report-schedule-request-dto"), exports);
148
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);
149
151
  __exportStar(require("./update-user-group-request-dto"), exports);
150
152
  __exportStar(require("./update-user-group-response-class"), exports);
151
153
  __exportStar(require("./user-class"), exports);
@@ -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 });
package/models/index.ts CHANGED
@@ -130,6 +130,8 @@ export * from './update-organization-request-dto-rest';
130
130
  export * from './update-organization-response-class';
131
131
  export * from './update-report-schedule-request-dto';
132
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';
133
135
  export * from './update-user-group-request-dto';
134
136
  export * from './update-user-group-response-class';
135
137
  export * from './user-class';
@@ -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-node",
3
- "version": "1.39.1-beta.23",
3
+ "version": "1.39.1-beta.24",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [