@goauthentik/api 2024.2.2-1712922569 → 2024.2.2-1713183841
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 +12 -1
- package/dist/apis/CoreApi.d.ts +2 -0
- package/dist/apis/CoreApi.js +6 -0
- package/dist/apis/RbacApi.d.ts +2 -0
- package/dist/apis/RbacApi.js +2 -0
- package/dist/apis/SourcesApi.d.ts +255 -1
- package/dist/apis/SourcesApi.js +810 -0
- package/dist/esm/apis/CoreApi.d.ts +2 -0
- package/dist/esm/apis/CoreApi.js +6 -0
- package/dist/esm/apis/RbacApi.d.ts +2 -0
- package/dist/esm/apis/RbacApi.js +2 -0
- package/dist/esm/apis/SourcesApi.d.ts +255 -1
- package/dist/esm/apis/SourcesApi.js +811 -1
- package/dist/esm/models/AppEnum.d.ts +1 -0
- package/dist/esm/models/AppEnum.js +1 -0
- package/dist/esm/models/ModelEnum.d.ts +1 -0
- package/dist/esm/models/ModelEnum.js +1 -0
- package/dist/esm/models/PaginatedSCIMSourceGroupList.d.ts +39 -0
- package/dist/esm/models/PaginatedSCIMSourceGroupList.js +48 -0
- package/dist/esm/models/PaginatedSCIMSourceList.d.ts +39 -0
- package/dist/esm/models/PaginatedSCIMSourceList.js +48 -0
- package/dist/esm/models/PaginatedSCIMSourceUserList.d.ts +39 -0
- package/dist/esm/models/PaginatedSCIMSourceUserList.js +48 -0
- package/dist/esm/models/PatchedSCIMSourceGroupRequest.d.ts +49 -0
- package/dist/esm/models/PatchedSCIMSourceGroupRequest.js +49 -0
- package/dist/esm/models/PatchedSCIMSourceRequest.d.ts +56 -0
- package/dist/esm/models/PatchedSCIMSourceRequest.js +52 -0
- package/dist/esm/models/PatchedSCIMSourceUserRequest.d.ts +49 -0
- package/dist/esm/models/PatchedSCIMSourceUserRequest.js +49 -0
- package/dist/esm/models/SCIMSource.d.ts +105 -0
- package/dist/esm/models/SCIMSource.js +71 -0
- package/dist/esm/models/SCIMSourceGroup.d.ts +56 -0
- package/dist/esm/models/SCIMSourceGroup.js +55 -0
- package/dist/esm/models/SCIMSourceGroupRequest.d.ts +49 -0
- package/dist/esm/models/SCIMSourceGroupRequest.js +52 -0
- package/dist/esm/models/SCIMSourceRequest.d.ts +56 -0
- package/dist/esm/models/SCIMSourceRequest.js +54 -0
- package/dist/esm/models/SCIMSourceUser.d.ts +56 -0
- package/dist/esm/models/SCIMSourceUser.js +55 -0
- package/dist/esm/models/SCIMSourceUserRequest.d.ts +49 -0
- package/dist/esm/models/{UserGroupRequest.js → SCIMSourceUserRequest.js} +15 -13
- package/dist/esm/models/index.d.ts +12 -1
- package/dist/esm/models/index.js +12 -1
- package/dist/models/AppEnum.d.ts +1 -0
- package/dist/models/AppEnum.js +1 -0
- package/dist/models/ModelEnum.d.ts +1 -0
- package/dist/models/ModelEnum.js +1 -0
- package/dist/models/PaginatedSCIMSourceGroupList.d.ts +39 -0
- package/dist/models/PaginatedSCIMSourceGroupList.js +55 -0
- package/dist/models/PaginatedSCIMSourceList.d.ts +39 -0
- package/dist/models/PaginatedSCIMSourceList.js +55 -0
- package/dist/models/PaginatedSCIMSourceUserList.d.ts +39 -0
- package/dist/models/PaginatedSCIMSourceUserList.js +55 -0
- package/dist/models/PatchedSCIMSourceGroupRequest.d.ts +49 -0
- package/dist/models/PatchedSCIMSourceGroupRequest.js +56 -0
- package/dist/models/PatchedSCIMSourceRequest.d.ts +56 -0
- package/dist/models/PatchedSCIMSourceRequest.js +59 -0
- package/dist/models/PatchedSCIMSourceUserRequest.d.ts +49 -0
- package/dist/models/PatchedSCIMSourceUserRequest.js +56 -0
- package/dist/models/SCIMSource.d.ts +105 -0
- package/dist/models/SCIMSource.js +78 -0
- package/dist/models/SCIMSourceGroup.d.ts +56 -0
- package/dist/models/SCIMSourceGroup.js +62 -0
- package/dist/models/SCIMSourceGroupRequest.d.ts +49 -0
- package/dist/models/SCIMSourceGroupRequest.js +59 -0
- package/dist/models/SCIMSourceRequest.d.ts +56 -0
- package/dist/models/SCIMSourceRequest.js +61 -0
- package/dist/models/SCIMSourceUser.d.ts +56 -0
- package/dist/models/SCIMSourceUser.js +62 -0
- package/dist/models/SCIMSourceUserRequest.d.ts +49 -0
- package/dist/models/SCIMSourceUserRequest.js +59 -0
- package/dist/models/index.d.ts +12 -1
- package/dist/models/index.js +12 -1
- package/package.json +1 -1
- package/src/apis/CoreApi.ts +10 -0
- package/src/apis/RbacApi.ts +2 -0
- package/src/apis/SourcesApi.ts +1045 -0
- package/src/models/AppEnum.ts +1 -0
- package/src/models/ModelEnum.ts +1 -0
- package/src/models/PaginatedSCIMSourceGroupList.ts +88 -0
- package/src/models/PaginatedSCIMSourceList.ts +88 -0
- package/src/models/PaginatedSCIMSourceUserList.ts +88 -0
- package/src/models/PatchedSCIMSourceGroupRequest.ts +89 -0
- package/src/models/PatchedSCIMSourceRequest.ts +104 -0
- package/src/models/PatchedSCIMSourceUserRequest.ts +89 -0
- package/src/models/SCIMSource.ts +176 -0
- package/src/models/SCIMSourceGroup.ts +107 -0
- package/src/models/SCIMSourceGroupRequest.ts +92 -0
- package/src/models/SCIMSourceRequest.ts +106 -0
- package/src/models/SCIMSourceUser.ts +107 -0
- package/src/models/SCIMSourceUserRequest.ts +92 -0
- package/src/models/index.ts +12 -1
- package/dist/esm/models/UserGroupRequest.d.ts +0 -51
- package/dist/models/UserGroupRequest.d.ts +0 -51
- package/dist/models/UserGroupRequest.js +0 -57
- package/src/models/UserGroupRequest.ts +0 -90
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* authentik
|
|
6
|
+
* Making authentication simple.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2024.2.2
|
|
9
|
+
* Contact: hello@goauthentik.io
|
|
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 });
|
|
16
|
+
exports.SCIMSourceRequestToJSON = exports.SCIMSourceRequestFromJSONTyped = exports.SCIMSourceRequestFromJSON = exports.instanceOfSCIMSourceRequest = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
const UserMatchingModeEnum_1 = require("./UserMatchingModeEnum");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the SCIMSourceRequest interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfSCIMSourceRequest(value) {
|
|
23
|
+
let isInstance = true;
|
|
24
|
+
isInstance = isInstance && "name" in value;
|
|
25
|
+
isInstance = isInstance && "slug" in value;
|
|
26
|
+
return isInstance;
|
|
27
|
+
}
|
|
28
|
+
exports.instanceOfSCIMSourceRequest = instanceOfSCIMSourceRequest;
|
|
29
|
+
function SCIMSourceRequestFromJSON(json) {
|
|
30
|
+
return SCIMSourceRequestFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
exports.SCIMSourceRequestFromJSON = SCIMSourceRequestFromJSON;
|
|
33
|
+
function SCIMSourceRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if ((json === undefined) || (json === null)) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'name': json['name'],
|
|
39
|
+
'slug': json['slug'],
|
|
40
|
+
'enabled': !(0, runtime_1.exists)(json, 'enabled') ? undefined : json['enabled'],
|
|
41
|
+
'userMatchingMode': !(0, runtime_1.exists)(json, 'user_matching_mode') ? undefined : (0, UserMatchingModeEnum_1.UserMatchingModeEnumFromJSON)(json['user_matching_mode']),
|
|
42
|
+
'userPathTemplate': !(0, runtime_1.exists)(json, 'user_path_template') ? undefined : json['user_path_template'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
exports.SCIMSourceRequestFromJSONTyped = SCIMSourceRequestFromJSONTyped;
|
|
46
|
+
function SCIMSourceRequestToJSON(value) {
|
|
47
|
+
if (value === undefined) {
|
|
48
|
+
return undefined;
|
|
49
|
+
}
|
|
50
|
+
if (value === null) {
|
|
51
|
+
return null;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'name': value.name,
|
|
55
|
+
'slug': value.slug,
|
|
56
|
+
'enabled': value.enabled,
|
|
57
|
+
'user_matching_mode': (0, UserMatchingModeEnum_1.UserMatchingModeEnumToJSON)(value.userMatchingMode),
|
|
58
|
+
'user_path_template': value.userPathTemplate,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
exports.SCIMSourceRequestToJSON = SCIMSourceRequestToJSON;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* authentik
|
|
3
|
+
* Making authentication simple.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2024.2.2
|
|
6
|
+
* Contact: hello@goauthentik.io
|
|
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 type { GroupMember } from './GroupMember';
|
|
13
|
+
/**
|
|
14
|
+
* SCIMSourceUser Serializer
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SCIMSourceUser
|
|
17
|
+
*/
|
|
18
|
+
export interface SCIMSourceUser {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof SCIMSourceUser
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof SCIMSourceUser
|
|
29
|
+
*/
|
|
30
|
+
user: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {GroupMember}
|
|
34
|
+
* @memberof SCIMSourceUser
|
|
35
|
+
*/
|
|
36
|
+
readonly userObj: GroupMember;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof SCIMSourceUser
|
|
41
|
+
*/
|
|
42
|
+
source: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {any}
|
|
46
|
+
* @memberof SCIMSourceUser
|
|
47
|
+
*/
|
|
48
|
+
attributes?: any | null;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Check if a given object implements the SCIMSourceUser interface.
|
|
52
|
+
*/
|
|
53
|
+
export declare function instanceOfSCIMSourceUser(value: object): boolean;
|
|
54
|
+
export declare function SCIMSourceUserFromJSON(json: any): SCIMSourceUser;
|
|
55
|
+
export declare function SCIMSourceUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourceUser;
|
|
56
|
+
export declare function SCIMSourceUserToJSON(value?: SCIMSourceUser | null): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* authentik
|
|
6
|
+
* Making authentication simple.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2024.2.2
|
|
9
|
+
* Contact: hello@goauthentik.io
|
|
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 });
|
|
16
|
+
exports.SCIMSourceUserToJSON = exports.SCIMSourceUserFromJSONTyped = exports.SCIMSourceUserFromJSON = exports.instanceOfSCIMSourceUser = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
const GroupMember_1 = require("./GroupMember");
|
|
19
|
+
/**
|
|
20
|
+
* Check if a given object implements the SCIMSourceUser interface.
|
|
21
|
+
*/
|
|
22
|
+
function instanceOfSCIMSourceUser(value) {
|
|
23
|
+
let isInstance = true;
|
|
24
|
+
isInstance = isInstance && "id" in value;
|
|
25
|
+
isInstance = isInstance && "user" in value;
|
|
26
|
+
isInstance = isInstance && "userObj" in value;
|
|
27
|
+
isInstance = isInstance && "source" in value;
|
|
28
|
+
return isInstance;
|
|
29
|
+
}
|
|
30
|
+
exports.instanceOfSCIMSourceUser = instanceOfSCIMSourceUser;
|
|
31
|
+
function SCIMSourceUserFromJSON(json) {
|
|
32
|
+
return SCIMSourceUserFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
exports.SCIMSourceUserFromJSON = SCIMSourceUserFromJSON;
|
|
35
|
+
function SCIMSourceUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if ((json === undefined) || (json === null)) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'id': json['id'],
|
|
41
|
+
'user': json['user'],
|
|
42
|
+
'userObj': (0, GroupMember_1.GroupMemberFromJSON)(json['user_obj']),
|
|
43
|
+
'source': json['source'],
|
|
44
|
+
'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
exports.SCIMSourceUserFromJSONTyped = SCIMSourceUserFromJSONTyped;
|
|
48
|
+
function SCIMSourceUserToJSON(value) {
|
|
49
|
+
if (value === undefined) {
|
|
50
|
+
return undefined;
|
|
51
|
+
}
|
|
52
|
+
if (value === null) {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'id': value.id,
|
|
57
|
+
'user': value.user,
|
|
58
|
+
'source': value.source,
|
|
59
|
+
'attributes': value.attributes,
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
exports.SCIMSourceUserToJSON = SCIMSourceUserToJSON;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* authentik
|
|
3
|
+
* Making authentication simple.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2024.2.2
|
|
6
|
+
* Contact: hello@goauthentik.io
|
|
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
|
+
* SCIMSourceUser Serializer
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SCIMSourceUserRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SCIMSourceUserRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SCIMSourceUserRequest
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SCIMSourceUserRequest
|
|
28
|
+
*/
|
|
29
|
+
user: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SCIMSourceUserRequest
|
|
34
|
+
*/
|
|
35
|
+
source: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {any}
|
|
39
|
+
* @memberof SCIMSourceUserRequest
|
|
40
|
+
*/
|
|
41
|
+
attributes?: any | null;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the SCIMSourceUserRequest interface.
|
|
45
|
+
*/
|
|
46
|
+
export declare function instanceOfSCIMSourceUserRequest(value: object): boolean;
|
|
47
|
+
export declare function SCIMSourceUserRequestFromJSON(json: any): SCIMSourceUserRequest;
|
|
48
|
+
export declare function SCIMSourceUserRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourceUserRequest;
|
|
49
|
+
export declare function SCIMSourceUserRequestToJSON(value?: SCIMSourceUserRequest | null): any;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* authentik
|
|
6
|
+
* Making authentication simple.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2024.2.2
|
|
9
|
+
* Contact: hello@goauthentik.io
|
|
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 });
|
|
16
|
+
exports.SCIMSourceUserRequestToJSON = exports.SCIMSourceUserRequestFromJSONTyped = exports.SCIMSourceUserRequestFromJSON = exports.instanceOfSCIMSourceUserRequest = void 0;
|
|
17
|
+
const runtime_1 = require("../runtime");
|
|
18
|
+
/**
|
|
19
|
+
* Check if a given object implements the SCIMSourceUserRequest interface.
|
|
20
|
+
*/
|
|
21
|
+
function instanceOfSCIMSourceUserRequest(value) {
|
|
22
|
+
let isInstance = true;
|
|
23
|
+
isInstance = isInstance && "id" in value;
|
|
24
|
+
isInstance = isInstance && "user" in value;
|
|
25
|
+
isInstance = isInstance && "source" in value;
|
|
26
|
+
return isInstance;
|
|
27
|
+
}
|
|
28
|
+
exports.instanceOfSCIMSourceUserRequest = instanceOfSCIMSourceUserRequest;
|
|
29
|
+
function SCIMSourceUserRequestFromJSON(json) {
|
|
30
|
+
return SCIMSourceUserRequestFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
exports.SCIMSourceUserRequestFromJSON = SCIMSourceUserRequestFromJSON;
|
|
33
|
+
function SCIMSourceUserRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if ((json === undefined) || (json === null)) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'id': json['id'],
|
|
39
|
+
'user': json['user'],
|
|
40
|
+
'source': json['source'],
|
|
41
|
+
'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
exports.SCIMSourceUserRequestFromJSONTyped = SCIMSourceUserRequestFromJSONTyped;
|
|
45
|
+
function SCIMSourceUserRequestToJSON(value) {
|
|
46
|
+
if (value === undefined) {
|
|
47
|
+
return undefined;
|
|
48
|
+
}
|
|
49
|
+
if (value === null) {
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'id': value.id,
|
|
54
|
+
'user': value.user,
|
|
55
|
+
'source': value.source,
|
|
56
|
+
'attributes': value.attributes,
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
exports.SCIMSourceUserRequestToJSON = SCIMSourceUserRequestToJSON;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -281,6 +281,9 @@ export * from './PaginatedSAMLProviderList';
|
|
|
281
281
|
export * from './PaginatedSAMLSourceList';
|
|
282
282
|
export * from './PaginatedSCIMMappingList';
|
|
283
283
|
export * from './PaginatedSCIMProviderList';
|
|
284
|
+
export * from './PaginatedSCIMSourceGroupList';
|
|
285
|
+
export * from './PaginatedSCIMSourceList';
|
|
286
|
+
export * from './PaginatedSCIMSourceUserList';
|
|
284
287
|
export * from './PaginatedSMSDeviceList';
|
|
285
288
|
export * from './PaginatedScopeMappingList';
|
|
286
289
|
export * from './PaginatedServiceConnectionList';
|
|
@@ -376,6 +379,9 @@ export * from './PatchedSAMLProviderRequest';
|
|
|
376
379
|
export * from './PatchedSAMLSourceRequest';
|
|
377
380
|
export * from './PatchedSCIMMappingRequest';
|
|
378
381
|
export * from './PatchedSCIMProviderRequest';
|
|
382
|
+
export * from './PatchedSCIMSourceGroupRequest';
|
|
383
|
+
export * from './PatchedSCIMSourceRequest';
|
|
384
|
+
export * from './PatchedSCIMSourceUserRequest';
|
|
379
385
|
export * from './PatchedSMSDeviceRequest';
|
|
380
386
|
export * from './PatchedScopeMappingRequest';
|
|
381
387
|
export * from './PatchedSettingsRequest';
|
|
@@ -455,6 +461,12 @@ export * from './SCIMMapping';
|
|
|
455
461
|
export * from './SCIMMappingRequest';
|
|
456
462
|
export * from './SCIMProvider';
|
|
457
463
|
export * from './SCIMProviderRequest';
|
|
464
|
+
export * from './SCIMSource';
|
|
465
|
+
export * from './SCIMSourceGroup';
|
|
466
|
+
export * from './SCIMSourceGroupRequest';
|
|
467
|
+
export * from './SCIMSourceRequest';
|
|
468
|
+
export * from './SCIMSourceUser';
|
|
469
|
+
export * from './SCIMSourceUserRequest';
|
|
458
470
|
export * from './SCIMSyncStatus';
|
|
459
471
|
export * from './SMSDevice';
|
|
460
472
|
export * from './SMSDeviceRequest';
|
|
@@ -515,7 +527,6 @@ export * from './UserDeleteStage';
|
|
|
515
527
|
export * from './UserDeleteStageRequest';
|
|
516
528
|
export * from './UserFieldsEnum';
|
|
517
529
|
export * from './UserGroup';
|
|
518
|
-
export * from './UserGroupRequest';
|
|
519
530
|
export * from './UserLoginChallenge';
|
|
520
531
|
export * from './UserLoginChallengeResponseRequest';
|
|
521
532
|
export * from './UserLoginStage';
|
package/dist/models/index.js
CHANGED
|
@@ -299,6 +299,9 @@ __exportStar(require("./PaginatedSAMLProviderList"), exports);
|
|
|
299
299
|
__exportStar(require("./PaginatedSAMLSourceList"), exports);
|
|
300
300
|
__exportStar(require("./PaginatedSCIMMappingList"), exports);
|
|
301
301
|
__exportStar(require("./PaginatedSCIMProviderList"), exports);
|
|
302
|
+
__exportStar(require("./PaginatedSCIMSourceGroupList"), exports);
|
|
303
|
+
__exportStar(require("./PaginatedSCIMSourceList"), exports);
|
|
304
|
+
__exportStar(require("./PaginatedSCIMSourceUserList"), exports);
|
|
302
305
|
__exportStar(require("./PaginatedSMSDeviceList"), exports);
|
|
303
306
|
__exportStar(require("./PaginatedScopeMappingList"), exports);
|
|
304
307
|
__exportStar(require("./PaginatedServiceConnectionList"), exports);
|
|
@@ -394,6 +397,9 @@ __exportStar(require("./PatchedSAMLProviderRequest"), exports);
|
|
|
394
397
|
__exportStar(require("./PatchedSAMLSourceRequest"), exports);
|
|
395
398
|
__exportStar(require("./PatchedSCIMMappingRequest"), exports);
|
|
396
399
|
__exportStar(require("./PatchedSCIMProviderRequest"), exports);
|
|
400
|
+
__exportStar(require("./PatchedSCIMSourceGroupRequest"), exports);
|
|
401
|
+
__exportStar(require("./PatchedSCIMSourceRequest"), exports);
|
|
402
|
+
__exportStar(require("./PatchedSCIMSourceUserRequest"), exports);
|
|
397
403
|
__exportStar(require("./PatchedSMSDeviceRequest"), exports);
|
|
398
404
|
__exportStar(require("./PatchedScopeMappingRequest"), exports);
|
|
399
405
|
__exportStar(require("./PatchedSettingsRequest"), exports);
|
|
@@ -473,6 +479,12 @@ __exportStar(require("./SCIMMapping"), exports);
|
|
|
473
479
|
__exportStar(require("./SCIMMappingRequest"), exports);
|
|
474
480
|
__exportStar(require("./SCIMProvider"), exports);
|
|
475
481
|
__exportStar(require("./SCIMProviderRequest"), exports);
|
|
482
|
+
__exportStar(require("./SCIMSource"), exports);
|
|
483
|
+
__exportStar(require("./SCIMSourceGroup"), exports);
|
|
484
|
+
__exportStar(require("./SCIMSourceGroupRequest"), exports);
|
|
485
|
+
__exportStar(require("./SCIMSourceRequest"), exports);
|
|
486
|
+
__exportStar(require("./SCIMSourceUser"), exports);
|
|
487
|
+
__exportStar(require("./SCIMSourceUserRequest"), exports);
|
|
476
488
|
__exportStar(require("./SCIMSyncStatus"), exports);
|
|
477
489
|
__exportStar(require("./SMSDevice"), exports);
|
|
478
490
|
__exportStar(require("./SMSDeviceRequest"), exports);
|
|
@@ -533,7 +545,6 @@ __exportStar(require("./UserDeleteStage"), exports);
|
|
|
533
545
|
__exportStar(require("./UserDeleteStageRequest"), exports);
|
|
534
546
|
__exportStar(require("./UserFieldsEnum"), exports);
|
|
535
547
|
__exportStar(require("./UserGroup"), exports);
|
|
536
|
-
__exportStar(require("./UserGroupRequest"), exports);
|
|
537
548
|
__exportStar(require("./UserLoginChallenge"), exports);
|
|
538
549
|
__exportStar(require("./UserLoginChallengeResponseRequest"), exports);
|
|
539
550
|
__exportStar(require("./UserLoginStage"), exports);
|
package/package.json
CHANGED
package/src/apis/CoreApi.ts
CHANGED
|
@@ -292,6 +292,7 @@ export interface CoreGroupsDestroyRequest {
|
|
|
292
292
|
|
|
293
293
|
export interface CoreGroupsListRequest {
|
|
294
294
|
attributes?: string;
|
|
295
|
+
includeUsers?: boolean;
|
|
295
296
|
isSuperuser?: boolean;
|
|
296
297
|
membersByPk?: Array<number>;
|
|
297
298
|
membersByUsername?: Array<string>;
|
|
@@ -416,6 +417,7 @@ export interface CoreUsersListRequest {
|
|
|
416
417
|
email?: string;
|
|
417
418
|
groupsByName?: Array<string>;
|
|
418
419
|
groupsByPk?: Array<string>;
|
|
420
|
+
includeGroups?: boolean;
|
|
419
421
|
isActive?: boolean;
|
|
420
422
|
isSuperuser?: boolean;
|
|
421
423
|
name?: string;
|
|
@@ -1670,6 +1672,10 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
1670
1672
|
queryParameters['attributes'] = requestParameters.attributes;
|
|
1671
1673
|
}
|
|
1672
1674
|
|
|
1675
|
+
if (requestParameters.includeUsers !== undefined) {
|
|
1676
|
+
queryParameters['include_users'] = requestParameters.includeUsers;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1673
1679
|
if (requestParameters.isSuperuser !== undefined) {
|
|
1674
1680
|
queryParameters['is_superuser'] = requestParameters.isSuperuser;
|
|
1675
1681
|
}
|
|
@@ -2718,6 +2724,10 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
2718
2724
|
queryParameters['groups_by_pk'] = requestParameters.groupsByPk;
|
|
2719
2725
|
}
|
|
2720
2726
|
|
|
2727
|
+
if (requestParameters.includeGroups !== undefined) {
|
|
2728
|
+
queryParameters['include_groups'] = requestParameters.includeGroups;
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2721
2731
|
if (requestParameters.isActive !== undefined) {
|
|
2722
2732
|
queryParameters['is_active'] = requestParameters.isActive;
|
|
2723
2733
|
}
|
package/src/apis/RbacApi.ts
CHANGED
|
@@ -1035,6 +1035,7 @@ export const RbacPermissionsAssignedByRolesListModelEnum = {
|
|
|
1035
1035
|
SourcesPlexPlexsourceconnection: 'authentik_sources_plex.plexsourceconnection',
|
|
1036
1036
|
SourcesSamlSamlsource: 'authentik_sources_saml.samlsource',
|
|
1037
1037
|
SourcesSamlUsersamlsourceconnection: 'authentik_sources_saml.usersamlsourceconnection',
|
|
1038
|
+
SourcesScimScimsource: 'authentik_sources_scim.scimsource',
|
|
1038
1039
|
StagesAuthenticatorDuoAuthenticatorduostage: 'authentik_stages_authenticator_duo.authenticatorduostage',
|
|
1039
1040
|
StagesAuthenticatorDuoDuodevice: 'authentik_stages_authenticator_duo.duodevice',
|
|
1040
1041
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|
|
@@ -1117,6 +1118,7 @@ export const RbacPermissionsAssignedByUsersListModelEnum = {
|
|
|
1117
1118
|
SourcesPlexPlexsourceconnection: 'authentik_sources_plex.plexsourceconnection',
|
|
1118
1119
|
SourcesSamlSamlsource: 'authentik_sources_saml.samlsource',
|
|
1119
1120
|
SourcesSamlUsersamlsourceconnection: 'authentik_sources_saml.usersamlsourceconnection',
|
|
1121
|
+
SourcesScimScimsource: 'authentik_sources_scim.scimsource',
|
|
1120
1122
|
StagesAuthenticatorDuoAuthenticatorduostage: 'authentik_stages_authenticator_duo.authenticatorduostage',
|
|
1121
1123
|
StagesAuthenticatorDuoDuodevice: 'authentik_stages_authenticator_duo.duodevice',
|
|
1122
1124
|
StagesAuthenticatorSmsAuthenticatorsmsstage: 'authentik_stages_authenticator_sms.authenticatorsmsstage',
|