@emilgroup/tenant-sdk-node 1.39.1-beta.36 → 1.39.1-beta.37
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.
- package/.openapi-generator/FILES +1 -0
- package/README.md +2 -2
- package/api/ssoid-pgroups-api.ts +103 -0
- package/dist/api/ssoid-pgroups-api.d.ts +56 -0
- package/dist/api/ssoid-pgroups-api.js +92 -0
- package/dist/models/delete-by-code-response-class.d.ts +24 -0
- package/dist/models/delete-by-code-response-class.js +15 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/models/delete-by-code-response-class.ts +30 -0
- package/models/index.ts +1 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -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
|
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.
|
|
20
|
+
npm install @emilgroup/tenant-sdk-node@1.39.1-beta.37 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.37
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/api/ssoid-pgroups-api.ts
CHANGED
|
@@ -25,6 +25,8 @@ import { CreateSsoIdpGroupRequestDto } from '../models';
|
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { CreateSsoIdpGroupResponseClass } from '../models';
|
|
27
27
|
// @ts-ignore
|
|
28
|
+
import { DeleteByCodeResponseClass } from '../models';
|
|
29
|
+
// @ts-ignore
|
|
28
30
|
import { UpdateSsoIdpGroupBodyDto } from '../models';
|
|
29
31
|
// @ts-ignore
|
|
30
32
|
import { UpdateSsoIdpGroupResponseClass } from '../models';
|
|
@@ -85,6 +87,51 @@ export const SSOIdPGroupsApiAxiosParamCreator = function (configuration?: Config
|
|
|
85
87
|
options: localVarRequestOptions,
|
|
86
88
|
};
|
|
87
89
|
},
|
|
90
|
+
/**
|
|
91
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
92
|
+
* @summary Delete an IdP group and all of its mappings
|
|
93
|
+
* @param {string} code IdP group code.
|
|
94
|
+
* @param {string} [authorization] Bearer Token
|
|
95
|
+
* @param {*} [options] Override http request option.
|
|
96
|
+
* @throws {RequiredError}
|
|
97
|
+
*/
|
|
98
|
+
deleteSsoIdpGroup: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
99
|
+
// verify required parameter 'code' is not null or undefined
|
|
100
|
+
assertParamExists('deleteSsoIdpGroup', 'code', code)
|
|
101
|
+
const localVarPath = `/tenantservice/v1/sso-idp-groups/{code}`
|
|
102
|
+
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
103
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
104
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
105
|
+
let baseOptions;
|
|
106
|
+
let baseAccessToken;
|
|
107
|
+
if (configuration) {
|
|
108
|
+
baseOptions = configuration.baseOptions;
|
|
109
|
+
baseAccessToken = configuration.accessToken;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
113
|
+
const localVarHeaderParameter = {} as any;
|
|
114
|
+
const localVarQueryParameter = {} as any;
|
|
115
|
+
|
|
116
|
+
// authentication bearer required
|
|
117
|
+
// http bearer authentication required
|
|
118
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
119
|
+
|
|
120
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
121
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
127
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
128
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
129
|
+
|
|
130
|
+
return {
|
|
131
|
+
url: toPathString(localVarUrlObj),
|
|
132
|
+
options: localVarRequestOptions,
|
|
133
|
+
};
|
|
134
|
+
},
|
|
88
135
|
/**
|
|
89
136
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
90
137
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -158,6 +205,18 @@ export const SSOIdPGroupsApiFp = function(configuration?: Configuration) {
|
|
|
158
205
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options);
|
|
159
206
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
160
207
|
},
|
|
208
|
+
/**
|
|
209
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
210
|
+
* @summary Delete an IdP group and all of its mappings
|
|
211
|
+
* @param {string} code IdP group code.
|
|
212
|
+
* @param {string} [authorization] Bearer Token
|
|
213
|
+
* @param {*} [options] Override http request option.
|
|
214
|
+
* @throws {RequiredError}
|
|
215
|
+
*/
|
|
216
|
+
async deleteSsoIdpGroup(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteByCodeResponseClass>> {
|
|
217
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSsoIdpGroup(code, authorization, options);
|
|
218
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
219
|
+
},
|
|
161
220
|
/**
|
|
162
221
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
163
222
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -192,6 +251,17 @@ export const SSOIdPGroupsApiFactory = function (configuration?: Configuration, b
|
|
|
192
251
|
createSsoIdpGroup(createSsoIdpGroupRequestDto: CreateSsoIdpGroupRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSsoIdpGroupResponseClass> {
|
|
193
252
|
return localVarFp.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
194
253
|
},
|
|
254
|
+
/**
|
|
255
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
256
|
+
* @summary Delete an IdP group and all of its mappings
|
|
257
|
+
* @param {string} code IdP group code.
|
|
258
|
+
* @param {string} [authorization] Bearer Token
|
|
259
|
+
* @param {*} [options] Override http request option.
|
|
260
|
+
* @throws {RequiredError}
|
|
261
|
+
*/
|
|
262
|
+
deleteSsoIdpGroup(code: string, authorization?: string, options?: any): AxiosPromise<DeleteByCodeResponseClass> {
|
|
263
|
+
return localVarFp.deleteSsoIdpGroup(code, authorization, options).then((request) => request(axios, basePath));
|
|
264
|
+
},
|
|
195
265
|
/**
|
|
196
266
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
197
267
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -228,6 +298,27 @@ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
|
|
|
228
298
|
readonly authorization?: string
|
|
229
299
|
}
|
|
230
300
|
|
|
301
|
+
/**
|
|
302
|
+
* Request parameters for deleteSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
303
|
+
* @export
|
|
304
|
+
* @interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest
|
|
305
|
+
*/
|
|
306
|
+
export interface SSOIdPGroupsApiDeleteSsoIdpGroupRequest {
|
|
307
|
+
/**
|
|
308
|
+
* IdP group code.
|
|
309
|
+
* @type {string}
|
|
310
|
+
* @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
|
|
311
|
+
*/
|
|
312
|
+
readonly code: string
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* Bearer Token
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof SSOIdPGroupsApiDeleteSsoIdpGroup
|
|
318
|
+
*/
|
|
319
|
+
readonly authorization?: string
|
|
320
|
+
}
|
|
321
|
+
|
|
231
322
|
/**
|
|
232
323
|
* Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
233
324
|
* @export
|
|
@@ -275,6 +366,18 @@ export class SSOIdPGroupsApi extends BaseAPI {
|
|
|
275
366
|
return SSOIdPGroupsApiFp(this.configuration).createSsoIdpGroup(requestParameters.createSsoIdpGroupRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
276
367
|
}
|
|
277
368
|
|
|
369
|
+
/**
|
|
370
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
371
|
+
* @summary Delete an IdP group and all of its mappings
|
|
372
|
+
* @param {SSOIdPGroupsApiDeleteSsoIdpGroupRequest} requestParameters Request parameters.
|
|
373
|
+
* @param {*} [options] Override http request option.
|
|
374
|
+
* @throws {RequiredError}
|
|
375
|
+
* @memberof SSOIdPGroupsApi
|
|
376
|
+
*/
|
|
377
|
+
public deleteSsoIdpGroup(requestParameters: SSOIdPGroupsApiDeleteSsoIdpGroupRequest, options?: AxiosRequestConfig) {
|
|
378
|
+
return SSOIdPGroupsApiFp(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
379
|
+
}
|
|
380
|
+
|
|
278
381
|
/**
|
|
279
382
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
280
383
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -14,6 +14,7 @@ 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';
|
|
17
18
|
import { UpdateSsoIdpGroupBodyDto } from '../models';
|
|
18
19
|
import { UpdateSsoIdpGroupResponseClass } from '../models';
|
|
19
20
|
/**
|
|
@@ -30,6 +31,15 @@ export declare const SSOIdPGroupsApiAxiosParamCreator: (configuration?: Configur
|
|
|
30
31
|
* @throws {RequiredError}
|
|
31
32
|
*/
|
|
32
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>;
|
|
33
43
|
/**
|
|
34
44
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
35
45
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -55,6 +65,15 @@ export declare const SSOIdPGroupsApiFp: (configuration?: Configuration) => {
|
|
|
55
65
|
* @throws {RequiredError}
|
|
56
66
|
*/
|
|
57
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>>;
|
|
58
77
|
/**
|
|
59
78
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
60
79
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -80,6 +99,15 @@ export declare const SSOIdPGroupsApiFactory: (configuration?: Configuration, bas
|
|
|
80
99
|
* @throws {RequiredError}
|
|
81
100
|
*/
|
|
82
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>;
|
|
83
111
|
/**
|
|
84
112
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
85
113
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -110,6 +138,25 @@ export interface SSOIdPGroupsApiCreateSsoIdpGroupRequest {
|
|
|
110
138
|
*/
|
|
111
139
|
readonly authorization?: string;
|
|
112
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
|
+
}
|
|
113
160
|
/**
|
|
114
161
|
* Request parameters for updateSsoIdpGroup operation in SSOIdPGroupsApi.
|
|
115
162
|
* @export
|
|
@@ -151,6 +198,15 @@ export declare class SSOIdPGroupsApi extends BaseAPI {
|
|
|
151
198
|
* @memberof SSOIdPGroupsApi
|
|
152
199
|
*/
|
|
153
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, {}>>;
|
|
154
210
|
/**
|
|
155
211
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
156
212
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -145,6 +145,54 @@ var SSOIdPGroupsApiAxiosParamCreator = function (configuration) {
|
|
|
145
145
|
});
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
|
+
/**
|
|
149
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
150
|
+
* @summary Delete an IdP group and all of its mappings
|
|
151
|
+
* @param {string} code IdP group code.
|
|
152
|
+
* @param {string} [authorization] Bearer Token
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
deleteSsoIdpGroup: function (code, authorization, options) {
|
|
157
|
+
if (options === void 0) { options = {}; }
|
|
158
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
159
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
160
|
+
return __generator(this, function (_a) {
|
|
161
|
+
switch (_a.label) {
|
|
162
|
+
case 0:
|
|
163
|
+
// verify required parameter 'code' is not null or undefined
|
|
164
|
+
(0, common_1.assertParamExists)('deleteSsoIdpGroup', 'code', code);
|
|
165
|
+
localVarPath = "/tenantservice/v1/sso-idp-groups/{code}"
|
|
166
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
167
|
+
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
168
|
+
if (configuration) {
|
|
169
|
+
baseOptions = configuration.baseOptions;
|
|
170
|
+
baseAccessToken = configuration.accessToken;
|
|
171
|
+
}
|
|
172
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), options);
|
|
173
|
+
localVarHeaderParameter = {};
|
|
174
|
+
localVarQueryParameter = {};
|
|
175
|
+
// authentication bearer required
|
|
176
|
+
// http bearer authentication required
|
|
177
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
178
|
+
case 1:
|
|
179
|
+
// authentication bearer required
|
|
180
|
+
// http bearer authentication required
|
|
181
|
+
_a.sent();
|
|
182
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
183
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
184
|
+
}
|
|
185
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
186
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
187
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
188
|
+
return [2 /*return*/, {
|
|
189
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
190
|
+
options: localVarRequestOptions,
|
|
191
|
+
}];
|
|
192
|
+
}
|
|
193
|
+
});
|
|
194
|
+
});
|
|
195
|
+
},
|
|
148
196
|
/**
|
|
149
197
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
150
198
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -229,6 +277,27 @@ var SSOIdPGroupsApiFp = function (configuration) {
|
|
|
229
277
|
});
|
|
230
278
|
});
|
|
231
279
|
},
|
|
280
|
+
/**
|
|
281
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
282
|
+
* @summary Delete an IdP group and all of its mappings
|
|
283
|
+
* @param {string} code IdP group code.
|
|
284
|
+
* @param {string} [authorization] Bearer Token
|
|
285
|
+
* @param {*} [options] Override http request option.
|
|
286
|
+
* @throws {RequiredError}
|
|
287
|
+
*/
|
|
288
|
+
deleteSsoIdpGroup: function (code, authorization, options) {
|
|
289
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
290
|
+
var localVarAxiosArgs;
|
|
291
|
+
return __generator(this, function (_a) {
|
|
292
|
+
switch (_a.label) {
|
|
293
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteSsoIdpGroup(code, authorization, options)];
|
|
294
|
+
case 1:
|
|
295
|
+
localVarAxiosArgs = _a.sent();
|
|
296
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
297
|
+
}
|
|
298
|
+
});
|
|
299
|
+
});
|
|
300
|
+
},
|
|
232
301
|
/**
|
|
233
302
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
234
303
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -272,6 +341,17 @@ var SSOIdPGroupsApiFactory = function (configuration, basePath, axios) {
|
|
|
272
341
|
createSsoIdpGroup: function (createSsoIdpGroupRequestDto, authorization, options) {
|
|
273
342
|
return localVarFp.createSsoIdpGroup(createSsoIdpGroupRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
274
343
|
},
|
|
344
|
+
/**
|
|
345
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
346
|
+
* @summary Delete an IdP group and all of its mappings
|
|
347
|
+
* @param {string} code IdP group code.
|
|
348
|
+
* @param {string} [authorization] Bearer Token
|
|
349
|
+
* @param {*} [options] Override http request option.
|
|
350
|
+
* @throws {RequiredError}
|
|
351
|
+
*/
|
|
352
|
+
deleteSsoIdpGroup: function (code, authorization, options) {
|
|
353
|
+
return localVarFp.deleteSsoIdpGroup(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
354
|
+
},
|
|
275
355
|
/**
|
|
276
356
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
277
357
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -310,6 +390,18 @@ var SSOIdPGroupsApi = /** @class */ (function (_super) {
|
|
|
310
390
|
var _this = this;
|
|
311
391
|
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).createSsoIdpGroup(requestParameters.createSsoIdpGroupRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
312
392
|
};
|
|
393
|
+
/**
|
|
394
|
+
* undefined **Required Permissions** \"tenant-management.settings.delete\"
|
|
395
|
+
* @summary Delete an IdP group and all of its mappings
|
|
396
|
+
* @param {SSOIdPGroupsApiDeleteSsoIdpGroupRequest} requestParameters Request parameters.
|
|
397
|
+
* @param {*} [options] Override http request option.
|
|
398
|
+
* @throws {RequiredError}
|
|
399
|
+
* @memberof SSOIdPGroupsApi
|
|
400
|
+
*/
|
|
401
|
+
SSOIdPGroupsApi.prototype.deleteSsoIdpGroup = function (requestParameters, options) {
|
|
402
|
+
var _this = this;
|
|
403
|
+
return (0, exports.SSOIdPGroupsApiFp)(this.configuration).deleteSsoIdpGroup(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
404
|
+
};
|
|
313
405
|
/**
|
|
314
406
|
* externalId is immutable. eisUserGroupCodes is set-replace when present. **Required Permissions** \"tenant-management.settings.update\"
|
|
315
407
|
* @summary Update IdP group name and/or EIS mappings
|
|
@@ -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 });
|
package/dist/models/index.d.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';
|
package/dist/models/index.js
CHANGED
|
@@ -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);
|
|
@@ -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';
|