@emilgroup/tenant-sdk 1.42.1-beta.34 → 1.42.1-beta.36

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.
@@ -72,6 +72,7 @@ models/data-report-filter-dto.ts
72
72
  models/data-report-filter-single-value-dto.ts
73
73
  models/data-report-filter-value-dto.ts
74
74
  models/dbconfig-dto.ts
75
+ models/delete-by-code-response-class.ts
75
76
  models/delete-response-class.ts
76
77
  models/delete-tenant-request-dto.ts
77
78
  models/disable-users-request-dto.ts
@@ -177,6 +178,8 @@ models/update-sso-connection-body-dto.ts
177
178
  models/update-sso-connection-response-class.ts
178
179
  models/update-sso-connection-status-body-dto.ts
179
180
  models/update-sso-connection-status-response-class.ts
181
+ models/update-sso-idp-group-body-dto.ts
182
+ models/update-sso-idp-group-response-class.ts
180
183
  models/update-user-group-request-dto.ts
181
184
  models/update-user-group-response-class.ts
182
185
  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.34 --save
20
+ npm install @emilgroup/tenant-sdk@1.42.1-beta.36 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk@1.42.1-beta.34
24
+ yarn add @emilgroup/tenant-sdk@1.42.1-beta.36
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 { CreateSsoIdpGroupRequestDto } from '../models';
25
25
  // @ts-ignore
26
26
  import { CreateSsoIdpGroupResponseClass } from '../models';
27
+ // @ts-ignore
28
+ import { DeleteByCodeResponseClass } from '../models';
29
+ // @ts-ignore
30
+ import { UpdateSsoIdpGroupBodyDto } from '../models';
31
+ // @ts-ignore
32
+ import { UpdateSsoIdpGroupResponseClass } from '../models';
27
33
  /**
28
34
  * SSOIdPGroupsApi - axios parameter creator
29
35
  * @export
@@ -72,6 +78,102 @@ export const SSOIdPGroupsApiAxiosParamCreator = function (configuration?: Config
72
78
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
73
79
  localVarRequestOptions.data = serializeDataIfNeeded(createSsoIdpGroupRequestDto, localVarRequestOptions, configuration)
74
80
 
81
+ return {
82
+ url: toPathString(localVarUrlObj),
83
+ options: localVarRequestOptions,
84
+ };
85
+ },
86
+ /**
87
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
88
+ * @summary Delete an IdP group and all of its mappings
89
+ * @param {string} code IdP group code.
90
+ * @param {string} [authorization] Bearer Token
91
+ * @param {*} [options] Override http request option.
92
+ * @throws {RequiredError}
93
+ */
94
+ deleteSsoIdpGroup: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
95
+ // verify required parameter 'code' is not null or undefined
96
+ assertParamExists('deleteSsoIdpGroup', 'code', code)
97
+ const localVarPath = `/tenantservice/v1/sso-idp-groups/{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: 'DELETE', ...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
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
133
+ * @summary Update IdP group name and/or EIS mappings
134
+ * @param {string} code IdP group code.
135
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
136
+ * @param {string} [authorization] Bearer Token
137
+ * @param {*} [options] Override http request option.
138
+ * @throws {RequiredError}
139
+ */
140
+ updateSsoIdpGroup: async (code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
141
+ // verify required parameter 'code' is not null or undefined
142
+ assertParamExists('updateSsoIdpGroup', 'code', code)
143
+ // verify required parameter 'updateSsoIdpGroupBodyDto' is not null or undefined
144
+ assertParamExists('updateSsoIdpGroup', 'updateSsoIdpGroupBodyDto', updateSsoIdpGroupBodyDto)
145
+ const localVarPath = `/tenantservice/v1/sso-idp-groups/{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: 'PUT', ...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(updateSsoIdpGroupBodyDto, localVarRequestOptions, configuration)
176
+
75
177
  return {
76
178
  url: toPathString(localVarUrlObj),
77
179
  options: localVarRequestOptions,
@@ -99,6 +201,31 @@ export const SSOIdPGroupsApiFp = function(configuration?: Configuration) {
99
201
  const localVarAxiosArgs = await localVarAxiosParamCreator.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options);
100
202
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
101
203
  },
204
+ /**
205
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
206
+ * @summary Delete an IdP group and all of its mappings
207
+ * @param {string} code IdP group code.
208
+ * @param {string} [authorization] Bearer Token
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ */
212
+ async deleteSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteByCodeResponseClass>> {
213
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSsoIdpGroup(code, authorization, options);
214
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
215
+ },
216
+ /**
217
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
218
+ * @summary Update IdP group name and/or EIS mappings
219
+ * @param {string} code IdP group code.
220
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
221
+ * @param {string} [authorization] Bearer Token
222
+ * @param {*} [options] Override http request option.
223
+ * @throws {RequiredError}
224
+ */
225
+ async updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoIdpGroupResponseClass>> {
226
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateSsoIdpGroup(code, updateSsoIdpGroupBodyDto, authorization, options);
227
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
228
+ },
102
229
  }
103
230
  };
104
231
 
@@ -120,6 +247,29 @@ export const SSOIdPGroupsApiFactory = function (configuration?: Configuration, b
120
247
  createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoIdpGroupResponseClass> {
121
248
  return localVarFp.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options).then((request) => request(axios, basePath));
122
249
  },
250
+ /**
251
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
252
+ * @summary Delete an IdP group and all of its mappings
253
+ * @param {string} code IdP group code.
254
+ * @param {string} [authorization] Bearer Token
255
+ * @param {*} [options] Override http request option.
256
+ * @throws {RequiredError}
257
+ */
258
+ deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass> {
259
+ return localVarFp.deleteSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
260
+ },
261
+ /**
262
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
263
+ * @summary Update IdP group name and/or EIS mappings
264
+ * @param {string} code IdP group code.
265
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
266
+ * @param {string} [authorization] Bearer Token
267
+ * @param {*} [options] Override http request option.
268
+ * @throws {RequiredError}
269
+ */
270
+ updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoIdpGroupResponseClass> {
271
+ return localVarFp.updateSsoIdpGroup(code, updateSsoIdpGroupBodyDto, authorization, options).then((request) => request(axios, basePath));
272
+ },
123
273
  };
124
274
  };
125
275
 
@@ -144,6 +294,55 @@ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
144
294
  readonly authorization?: string
145
295
  }
146
296
 
297
+ /**
298
+ * Request parameters for deleteSsoIdpGroup operation in SSOIdPGroupsApi.
299
+ * @export
300
+ * @interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest
301
+ */
302
+ export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
303
+ /**
304
+ * IdP group code.
305
+ * @type {string}
306
+ * @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
307
+ */
308
+ readonly code: string
309
+
310
+ /**
311
+ * Bearer Token
312
+ * @type {string}
313
+ * @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
314
+ */
315
+ readonly authorization?: string
316
+ }
317
+
318
+ /**
319
+ * Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
320
+ * @export
321
+ * @interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest
322
+ */
323
+ export interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest {
324
+ /**
325
+ * IdP group code.
326
+ * @type {string}
327
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
328
+ */
329
+ readonly code: string
330
+
331
+ /**
332
+ *
333
+ * @type {UpdateSsoIdpGroupBodyDto}
334
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
335
+ */
336
+ readonly updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto
337
+
338
+ /**
339
+ * Bearer Token
340
+ * @type {string}
341
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
342
+ */
343
+ readonly authorization?: string
344
+ }
345
+
147
346
  /**
148
347
  * SSOIdPGroupsApi - object-oriented interface
149
348
  * @export
@@ -162,4 +361,28 @@ export class SSOIdPGroupsApi extends BaseAPI {
162
361
  public createSsoIdpGroup(requestParameters: SSOIdPGroupsApiCreateSsoIdpGroupRequest, options?: AxiosRequestConfig) {
163
362
  return SSOIdPGroupsApiFp(this.configuration).createSsoIdpGroup(requestParameters.createSsoIdpGroupRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
164
363
  }
364
+
365
+ /**
366
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
367
+ * @summary Delete an IdP group and all of its mappings
368
+ * @param {SSOIdPGroupsApiDeleteSsoIdpGroupRequest} requestParameters Request parameters.
369
+ * @param {*} [options] Override http request option.
370
+ * @throws {RequiredError}
371
+ * @memberof SSOIdPGroupsApi
372
+ */
373
+ public deleteSsoIdpGroup(requestParameters: SSOIdPGroupsApiDeleteSsoIdpGroupRequest, options?: AxiosRequestConfig) {
374
+ return SSOIdPGroupsApiFp(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
375
+ }
376
+
377
+ /**
378
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
379
+ * @summary Update IdP group name and/or EIS mappings
380
+ * @param {SSOIdPGroupsApiUpdateSsoIdpGroupRequest} requestParameters Request parameters.
381
+ * @param {*} [options] Override http request option.
382
+ * @throws {RequiredError}
383
+ * @memberof SSOIdPGroupsApi
384
+ */
385
+ public updateSsoIdpGroup(requestParameters: SSOIdPGroupsApiUpdateSsoIdpGroupRequest, options?: AxiosRequestConfig) {
386
+ return SSOIdPGroupsApiFp(this.configuration).updateSsoIdpGroup(requestParameters.code, requestParameters.updateSsoIdpGroupBodyDto, 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 { CreateSsoIdpGroupRequestDto } from '../models';
16
16
  import { CreateSsoIdpGroupResponseClass } from '../models';
17
+ import { DeleteByCodeResponseClass } from '../models';
18
+ import { UpdateSsoIdpGroupBodyDto } from '../models';
19
+ import { UpdateSsoIdpGroupResponseClass } from '../models';
17
20
  /**
18
21
  * SSOIdPGroupsApi - axios parameter creator
19
22
  * @export
@@ -28,6 +31,25 @@ export declare const SSOIdPGroupsApiAxiosParamCreator: (configuration?: Configur
28
31
  * @throws {RequiredError}
29
32
  */
30
33
  createSsoIdpGroup: (createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34
+ /**
35
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
36
+ * @summary Delete an IdP group and all of its mappings
37
+ * @param {string} code IdP group code.
38
+ * @param {string} [authorization] Bearer Token
39
+ * @param {*} [options] Override http request option.
40
+ * @throws {RequiredError}
41
+ */
42
+ deleteSsoIdpGroup: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
43
+ /**
44
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
45
+ * @summary Update IdP group name and/or EIS mappings
46
+ * @param {string} code IdP group code.
47
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
48
+ * @param {string} [authorization] Bearer Token
49
+ * @param {*} [options] Override http request option.
50
+ * @throws {RequiredError}
51
+ */
52
+ updateSsoIdpGroup: (code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
31
53
  };
32
54
  /**
33
55
  * SSOIdPGroupsApi - functional programming interface
@@ -43,6 +65,25 @@ export declare const SSOIdPGroupsApiFp: (configuration?: Configuration) => {
43
65
  * @throws {RequiredError}
44
66
  */
45
67
  createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSsoIdpGroupResponseClass>>;
68
+ /**
69
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
70
+ * @summary Delete an IdP group and all of its mappings
71
+ * @param {string} code IdP group code.
72
+ * @param {string} [authorization] Bearer Token
73
+ * @param {*} [options] Override http request option.
74
+ * @throws {RequiredError}
75
+ */
76
+ deleteSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteByCodeResponseClass>>;
77
+ /**
78
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
79
+ * @summary Update IdP group name and/or EIS mappings
80
+ * @param {string} code IdP group code.
81
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
82
+ * @param {string} [authorization] Bearer Token
83
+ * @param {*} [options] Override http request option.
84
+ * @throws {RequiredError}
85
+ */
86
+ updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSsoIdpGroupResponseClass>>;
46
87
  };
47
88
  /**
48
89
  * SSOIdPGroupsApi - factory interface
@@ -58,6 +99,25 @@ export declare const SSOIdPGroupsApiFactory: (configuration?: Configuration, bas
58
99
  * @throws {RequiredError}
59
100
  */
60
101
  createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoIdpGroupResponseClass>;
102
+ /**
103
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
104
+ * @summary Delete an IdP group and all of its mappings
105
+ * @param {string} code IdP group code.
106
+ * @param {string} [authorization] Bearer Token
107
+ * @param {*} [options] Override http request option.
108
+ * @throws {RequiredError}
109
+ */
110
+ deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass>;
111
+ /**
112
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
113
+ * @summary Update IdP group name and/or EIS mappings
114
+ * @param {string} code IdP group code.
115
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
116
+ * @param {string} [authorization] Bearer Token
117
+ * @param {*} [options] Override http request option.
118
+ * @throws {RequiredError}
119
+ */
120
+ updateSsoIdpGroup(code: string, updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto, authorization?: string, options?: any): AxiosPromise<UpdateSsoIdpGroupResponseClass>;
61
121
  };
62
122
  /**
63
123
  * Request parameters for createSsoIdpGroup operation in SSOIdPGroupsApi.
@@ -78,6 +138,50 @@ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
78
138
  */
79
139
  readonly authorization?: string;
80
140
  }
141
+ /**
142
+ * Request parameters for deleteSsoIdpGroup operation in SSOIdPGroupsApi.
143
+ * @export
144
+ * @interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest
145
+ */
146
+ export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
147
+ /**
148
+ * IdP group code.
149
+ * @type {string}
150
+ * @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
151
+ */
152
+ readonly code: string;
153
+ /**
154
+ * Bearer Token
155
+ * @type {string}
156
+ * @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
157
+ */
158
+ readonly authorization?: string;
159
+ }
160
+ /**
161
+ * Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
162
+ * @export
163
+ * @interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest
164
+ */
165
+ export interface SSOIdPGroupsApiUpdateSsoIdpGroupRequest {
166
+ /**
167
+ * IdP group code.
168
+ * @type {string}
169
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
170
+ */
171
+ readonly code: string;
172
+ /**
173
+ *
174
+ * @type {UpdateSsoIdpGroupBodyDto}
175
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
176
+ */
177
+ readonly updateSsoIdpGroupBodyDto: UpdateSsoIdpGroupBodyDto;
178
+ /**
179
+ * Bearer Token
180
+ * @type {string}
181
+ * @memberof SSOIdPGroupsApiUpdateSsoIdpGroup
182
+ */
183
+ readonly authorization?: string;
184
+ }
81
185
  /**
82
186
  * SSOIdPGroupsApi - object-oriented interface
83
187
  * @export
@@ -94,4 +198,22 @@ export declare class SSOIdPGroupsApi extends BaseAPI {
94
198
  * @memberof SSOIdPGroupsApi
95
199
  */
96
200
  createSsoIdpGroup(requestParameters: SSOIdPGroupsApiCreateSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSsoIdpGroupResponseClass, any, {}>>;
201
+ /**
202
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
203
+ * @summary Delete an IdP group and all of its mappings
204
+ * @param {SSOIdPGroupsApiDeleteSsoIdpGroupRequest} requestParameters Request parameters.
205
+ * @param {*} [options] Override http request option.
206
+ * @throws {RequiredError}
207
+ * @memberof SSOIdPGroupsApi
208
+ */
209
+ deleteSsoIdpGroup(requestParameters: SSOIdPGroupsApiDeleteSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteByCodeResponseClass, any, {}>>;
210
+ /**
211
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
212
+ * @summary Update IdP group name and/or EIS mappings
213
+ * @param {SSOIdPGroupsApiUpdateSsoIdpGroupRequest} requestParameters Request parameters.
214
+ * @param {*} [options] Override http request option.
215
+ * @throws {RequiredError}
216
+ * @memberof SSOIdPGroupsApi
217
+ */
218
+ updateSsoIdpGroup(requestParameters: SSOIdPGroupsApiUpdateSsoIdpGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateSsoIdpGroupResponseClass, any, {}>>;
97
219
  }
@@ -141,6 +141,107 @@ var SSOIdPGroupsApiAxiosParamCreator = function (configuration) {
141
141
  });
142
142
  });
143
143
  },
144
+ /**
145
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
146
+ * @summary Delete an IdP group and all of its mappings
147
+ * @param {string} code IdP group code.
148
+ * @param {string} [authorization] Bearer Token
149
+ * @param {*} [options] Override http request option.
150
+ * @throws {RequiredError}
151
+ */
152
+ deleteSsoIdpGroup: 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)('deleteSsoIdpGroup', 'code', code);
161
+ localVarPath = "/tenantservice/v1/sso-idp-groups/{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: 'DELETE' }, 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
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
194
+ * @summary Update IdP group name and/or EIS mappings
195
+ * @param {string} code IdP group code.
196
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
197
+ * @param {string} [authorization] Bearer Token
198
+ * @param {*} [options] Override http request option.
199
+ * @throws {RequiredError}
200
+ */
201
+ updateSsoIdpGroup: function (code, updateSsoIdpGroupBodyDto, 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)('updateSsoIdpGroup', 'code', code);
210
+ // verify required parameter 'updateSsoIdpGroupBodyDto' is not null or undefined
211
+ (0, common_1.assertParamExists)('updateSsoIdpGroup', 'updateSsoIdpGroupBodyDto', updateSsoIdpGroupBodyDto);
212
+ localVarPath = "/tenantservice/v1/sso-idp-groups/{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: 'PUT' }, 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)(updateSsoIdpGroupBodyDto, 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.SSOIdPGroupsApiAxiosParamCreator = SSOIdPGroupsApiAxiosParamCreator;
@@ -172,6 +273,49 @@ var SSOIdPGroupsApiFp = function (configuration) {
172
273
  });
173
274
  });
174
275
  },
276
+ /**
277
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
278
+ * @summary Delete an IdP group and all of its mappings
279
+ * @param {string} code IdP group code.
280
+ * @param {string} [authorization] Bearer Token
281
+ * @param {*} [options] Override http request option.
282
+ * @throws {RequiredError}
283
+ */
284
+ deleteSsoIdpGroup: 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.deleteSsoIdpGroup(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
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
299
+ * @summary Update IdP group name and/or EIS mappings
300
+ * @param {string} code IdP group code.
301
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
302
+ * @param {string} [authorization] Bearer Token
303
+ * @param {*} [options] Override http request option.
304
+ * @throws {RequiredError}
305
+ */
306
+ updateSsoIdpGroup: function (code, updateSsoIdpGroupBodyDto, 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.updateSsoIdpGroup(code, updateSsoIdpGroupBodyDto, 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.SSOIdPGroupsApiFp = SSOIdPGroupsApiFp;
@@ -193,6 +337,29 @@ var SSOIdPGroupsApiFactory = function (configuration, basePath, axios) {
193
337
  createSsoIdpGroup: function (createSsoIdpGroupRequestDto, authorization, options) {
194
338
  return localVarFp.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
195
339
  },
340
+ /**
341
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
342
+ * @summary Delete an IdP group and all of its mappings
343
+ * @param {string} code IdP group code.
344
+ * @param {string} [authorization] Bearer Token
345
+ * @param {*} [options] Override http request option.
346
+ * @throws {RequiredError}
347
+ */
348
+ deleteSsoIdpGroup: function (code, authorization, options) {
349
+ return localVarFp.deleteSsoIdpGroup(code, authorization, options).then(function (request) { return request(axios, basePath); });
350
+ },
351
+ /**
352
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
353
+ * @summary Update IdP group name and/or EIS mappings
354
+ * @param {string} code IdP group code.
355
+ * @param {UpdateSsoIdpGroupBodyDto} updateSsoIdpGroupBodyDto
356
+ * @param {string} [authorization] Bearer Token
357
+ * @param {*} [options] Override http request option.
358
+ * @throws {RequiredError}
359
+ */
360
+ updateSsoIdpGroup: function (code, updateSsoIdpGroupBodyDto, authorization, options) {
361
+ return localVarFp.updateSsoIdpGroup(code, updateSsoIdpGroupBodyDto, authorization, options).then(function (request) { return request(axios, basePath); });
362
+ },
196
363
  };
197
364
  };
198
365
  exports.SSOIdPGroupsApiFactory = SSOIdPGroupsApiFactory;
@@ -219,6 +386,30 @@ var SSOIdPGroupsApi = /** @class */ (function (_super) {
219
386
  var _this = this;
220
387
  return (0, exports.SSOIdPGroupsApiFp)(this.configuration).createSsoIdpGroup(requestParameters.createSsoIdpGroupRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
221
388
  };
389
+ /**
390
+ * undefined **Required Permissions** \"tenant-management.settings.delete\"
391
+ * @summary Delete an IdP group and all of its mappings
392
+ * @param {SSOIdPGroupsApiDeleteSsoIdpGroupRequest} requestParameters Request parameters.
393
+ * @param {*} [options] Override http request option.
394
+ * @throws {RequiredError}
395
+ * @memberof SSOIdPGroupsApi
396
+ */
397
+ SSOIdPGroupsApi.prototype.deleteSsoIdpGroup = function (requestParameters, options) {
398
+ var _this = this;
399
+ return (0, exports.SSOIdPGroupsApiFp)(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
400
+ };
401
+ /**
402
+ * externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
403
+ * @summary Update IdP group name and/or EIS mappings
404
+ * @param {SSOIdPGroupsApiUpdateSsoIdpGroupRequest} requestParameters Request parameters.
405
+ * @param {*} [options] Override http request option.
406
+ * @throws {RequiredError}
407
+ * @memberof SSOIdPGroupsApi
408
+ */
409
+ SSOIdPGroupsApi.prototype.updateSsoIdpGroup = function (requestParameters, options) {
410
+ var _this = this;
411
+ return (0, exports.SSOIdPGroupsApiFp)(this.configuration).updateSsoIdpGroup(requestParameters.code, requestParameters.updateSsoIdpGroupBodyDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
412
+ };
222
413
  return SSOIdPGroupsApi;
223
414
  }(base_1.BaseAPI));
224
415
  exports.SSOIdPGroupsApi = SSOIdPGroupsApi;
@@ -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 DeleteByCodeResponseClass
16
+ */
17
+ export interface DeleteByCodeResponseClass {
18
+ /**
19
+ * Whether the IdP group was deleted.
20
+ * @type {boolean}
21
+ * @memberof DeleteByCodeResponseClass
22
+ */
23
+ 'success': 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 });
@@ -39,6 +39,7 @@ export * from './data-report-filter-class';
39
39
  export * from './data-report-filter-dto';
40
40
  export * from './data-report-filter-single-value-dto';
41
41
  export * from './data-report-filter-value-dto';
42
+ export * from './delete-by-code-response-class';
42
43
  export * from './delete-response-class';
43
44
  export * from './delete-tenant-request-dto';
44
45
  export * from './disable-users-request-dto';
@@ -143,6 +144,8 @@ export * from './update-sso-connection-body-dto';
143
144
  export * from './update-sso-connection-response-class';
144
145
  export * from './update-sso-connection-status-body-dto';
145
146
  export * from './update-sso-connection-status-response-class';
147
+ export * from './update-sso-idp-group-body-dto';
148
+ export * from './update-sso-idp-group-response-class';
146
149
  export * from './update-user-group-request-dto';
147
150
  export * from './update-user-group-response-class';
148
151
  export * from './user-class';
@@ -55,6 +55,7 @@ __exportStar(require("./data-report-filter-class"), exports);
55
55
  __exportStar(require("./data-report-filter-dto"), exports);
56
56
  __exportStar(require("./data-report-filter-single-value-dto"), exports);
57
57
  __exportStar(require("./data-report-filter-value-dto"), exports);
58
+ __exportStar(require("./delete-by-code-response-class"), exports);
58
59
  __exportStar(require("./delete-response-class"), exports);
59
60
  __exportStar(require("./delete-tenant-request-dto"), exports);
60
61
  __exportStar(require("./disable-users-request-dto"), exports);
@@ -159,6 +160,8 @@ __exportStar(require("./update-sso-connection-body-dto"), exports);
159
160
  __exportStar(require("./update-sso-connection-response-class"), exports);
160
161
  __exportStar(require("./update-sso-connection-status-body-dto"), exports);
161
162
  __exportStar(require("./update-sso-connection-status-response-class"), exports);
163
+ __exportStar(require("./update-sso-idp-group-body-dto"), exports);
164
+ __exportStar(require("./update-sso-idp-group-response-class"), exports);
162
165
  __exportStar(require("./update-user-group-request-dto"), exports);
163
166
  __exportStar(require("./update-user-group-response-class"), exports);
164
167
  __exportStar(require("./user-class"), exports);
@@ -0,0 +1,30 @@
1
+ /**
2
+ * EMIL Tenant Service
3
+ * The EMIL TenantService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateSsoIdpGroupBodyDto
16
+ */
17
+ export interface UpdateSsoIdpGroupBodyDto {
18
+ /**
19
+ * New display name. Omitted keeps the stored name.
20
+ * @type {string}
21
+ * @memberof UpdateSsoIdpGroupBodyDto
22
+ */
23
+ 'name'?: string;
24
+ /**
25
+ * Set-replace when present; must not be empty. Omitted keeps mappings.
26
+ * @type {Array<string>}
27
+ * @memberof UpdateSsoIdpGroupBodyDto
28
+ */
29
+ 'eisUserGroupCodes'?: Array<string>;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL Tenant Service
6
+ * The EMIL TenantService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,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 { SsoIdpGroupClass } from './sso-idp-group-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateSsoIdpGroupResponseClass
17
+ */
18
+ export interface UpdateSsoIdpGroupResponseClass {
19
+ /**
20
+ *
21
+ * @type {SsoIdpGroupClass}
22
+ * @memberof UpdateSsoIdpGroupResponseClass
23
+ */
24
+ 'ssoIdpGroup': SsoIdpGroupClass;
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,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 DeleteByCodeResponseClass
21
+ */
22
+ export interface DeleteByCodeResponseClass {
23
+ /**
24
+ * Whether the IdP group was deleted.
25
+ * @type {boolean}
26
+ * @memberof DeleteByCodeResponseClass
27
+ */
28
+ 'success': boolean;
29
+ }
30
+
package/models/index.ts CHANGED
@@ -39,6 +39,7 @@ export * from './data-report-filter-class';
39
39
  export * from './data-report-filter-dto';
40
40
  export * from './data-report-filter-single-value-dto';
41
41
  export * from './data-report-filter-value-dto';
42
+ export * from './delete-by-code-response-class';
42
43
  export * from './delete-response-class';
43
44
  export * from './delete-tenant-request-dto';
44
45
  export * from './disable-users-request-dto';
@@ -143,6 +144,8 @@ export * from './update-sso-connection-body-dto';
143
144
  export * from './update-sso-connection-response-class';
144
145
  export * from './update-sso-connection-status-body-dto';
145
146
  export * from './update-sso-connection-status-response-class';
147
+ export * from './update-sso-idp-group-body-dto';
148
+ export * from './update-sso-idp-group-response-class';
146
149
  export * from './update-user-group-request-dto';
147
150
  export * from './update-user-group-response-class';
148
151
  export * from './user-class';
@@ -0,0 +1,36 @@
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 UpdateSsoIdpGroupBodyDto
21
+ */
22
+ export interface UpdateSsoIdpGroupBodyDto {
23
+ /**
24
+ * New display name. Omitted keeps the stored name.
25
+ * @type {string}
26
+ * @memberof UpdateSsoIdpGroupBodyDto
27
+ */
28
+ 'name'?: string;
29
+ /**
30
+ * Set-replace when present; must not be empty. Omitted keeps mappings.
31
+ * @type {Array<string>}
32
+ * @memberof UpdateSsoIdpGroupBodyDto
33
+ */
34
+ 'eisUserGroupCodes'?: Array<string>;
35
+ }
36
+
@@ -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 { SsoIdpGroupClass } from './sso-idp-group-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface UpdateSsoIdpGroupResponseClass
22
+ */
23
+ export interface UpdateSsoIdpGroupResponseClass {
24
+ /**
25
+ *
26
+ * @type {SsoIdpGroupClass}
27
+ * @memberof UpdateSsoIdpGroupResponseClass
28
+ */
29
+ 'ssoIdpGroup': SsoIdpGroupClass;
30
+ }
31
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/tenant-sdk",
3
- "version": "1.42.1-beta.34",
3
+ "version": "1.42.1-beta.36",
4
4
  "description": "OpenAPI client for @emilgroup/tenant-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [