@goauthentik/api 2025.2.4-1744288676 → 2025.2.4-1744640358
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 +8 -0
- package/dist/apis/CoreApi.d.ts +2 -2
- package/dist/apis/CoreApi.js +6 -6
- package/dist/apis/RbacApi.d.ts +4 -0
- package/dist/apis/RbacApi.js +4 -0
- package/dist/apis/SourcesApi.d.ts +169 -1
- package/dist/apis/SourcesApi.js +536 -0
- package/dist/esm/apis/CoreApi.d.ts +2 -2
- package/dist/esm/apis/CoreApi.js +6 -6
- package/dist/esm/apis/RbacApi.d.ts +4 -0
- package/dist/esm/apis/RbacApi.js +4 -0
- package/dist/esm/apis/SourcesApi.d.ts +169 -1
- package/dist/esm/apis/SourcesApi.js +537 -1
- package/dist/esm/models/AuthenticatedSession.d.ts +4 -4
- package/dist/esm/models/AuthenticatedSession.js +6 -5
- package/dist/esm/models/GroupLDAPSourceConnection.d.ts +69 -0
- package/dist/esm/models/GroupLDAPSourceConnection.js +64 -0
- package/dist/esm/models/GroupLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/esm/models/GroupLDAPSourceConnectionRequest.js +51 -0
- package/dist/esm/models/ModelEnum.d.ts +2 -0
- package/dist/esm/models/ModelEnum.js +2 -0
- package/dist/esm/models/PaginatedGroupLDAPSourceConnectionList.d.ts +40 -0
- package/dist/esm/models/PaginatedGroupLDAPSourceConnectionList.js +49 -0
- package/dist/esm/models/PaginatedUserLDAPSourceConnectionList.d.ts +40 -0
- package/dist/esm/models/PaginatedUserLDAPSourceConnectionList.js +49 -0
- package/dist/esm/models/PatchedGroupLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/esm/models/PatchedGroupLDAPSourceConnectionRequest.js +45 -0
- package/dist/esm/models/PatchedSettingsRequest.d.ts +12 -0
- package/dist/esm/models/PatchedSettingsRequest.js +4 -0
- package/dist/esm/models/PatchedUserLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/esm/models/PatchedUserLDAPSourceConnectionRequest.js +45 -0
- package/dist/esm/models/Settings.d.ts +12 -0
- package/dist/esm/models/Settings.js +4 -0
- package/dist/esm/models/SettingsRequest.d.ts +12 -0
- package/dist/esm/models/SettingsRequest.js +4 -0
- package/dist/esm/models/UserLDAPSourceConnection.d.ts +69 -0
- package/dist/esm/models/UserLDAPSourceConnection.js +64 -0
- package/dist/esm/models/UserLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/esm/models/UserLDAPSourceConnectionRequest.js +51 -0
- package/dist/esm/models/index.d.ts +8 -0
- package/dist/esm/models/index.js +8 -0
- package/dist/models/AuthenticatedSession.d.ts +4 -4
- package/dist/models/AuthenticatedSession.js +6 -5
- package/dist/models/GroupLDAPSourceConnection.d.ts +69 -0
- package/dist/models/GroupLDAPSourceConnection.js +71 -0
- package/dist/models/GroupLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/models/GroupLDAPSourceConnectionRequest.js +58 -0
- package/dist/models/ModelEnum.d.ts +2 -0
- package/dist/models/ModelEnum.js +2 -0
- package/dist/models/PaginatedGroupLDAPSourceConnectionList.d.ts +40 -0
- package/dist/models/PaginatedGroupLDAPSourceConnectionList.js +56 -0
- package/dist/models/PaginatedUserLDAPSourceConnectionList.d.ts +40 -0
- package/dist/models/PaginatedUserLDAPSourceConnectionList.js +56 -0
- package/dist/models/PatchedGroupLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/models/PatchedGroupLDAPSourceConnectionRequest.js +52 -0
- package/dist/models/PatchedSettingsRequest.d.ts +12 -0
- package/dist/models/PatchedSettingsRequest.js +4 -0
- package/dist/models/PatchedUserLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/models/PatchedUserLDAPSourceConnectionRequest.js +52 -0
- package/dist/models/Settings.d.ts +12 -0
- package/dist/models/Settings.js +4 -0
- package/dist/models/SettingsRequest.d.ts +12 -0
- package/dist/models/SettingsRequest.js +4 -0
- package/dist/models/UserLDAPSourceConnection.d.ts +69 -0
- package/dist/models/UserLDAPSourceConnection.js +71 -0
- package/dist/models/UserLDAPSourceConnectionRequest.d.ts +44 -0
- package/dist/models/UserLDAPSourceConnectionRequest.js +58 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/package.json +1 -1
- package/src/apis/CoreApi.ts +10 -10
- package/src/apis/RbacApi.ts +4 -0
- package/src/apis/SourcesApi.ts +1929 -1197
- package/src/models/AuthenticatedSession.ts +8 -9
- package/src/models/GroupLDAPSourceConnection.ts +124 -0
- package/src/models/GroupLDAPSourceConnectionRequest.ts +84 -0
- package/src/models/ModelEnum.ts +2 -0
- package/src/models/PaginatedGroupLDAPSourceConnectionList.ts +90 -0
- package/src/models/PaginatedUserLDAPSourceConnectionList.ts +90 -0
- package/src/models/PatchedGroupLDAPSourceConnectionRequest.ts +81 -0
- package/src/models/PatchedSettingsRequest.ts +16 -0
- package/src/models/PatchedUserLDAPSourceConnectionRequest.ts +81 -0
- package/src/models/Settings.ts +16 -0
- package/src/models/SettingsRequest.ts +16 -0
- package/src/models/UserLDAPSourceConnection.ts +124 -0
- package/src/models/UserLDAPSourceConnectionRequest.ts +84 -0
- package/src/models/index.ts +8 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* authentik
|
|
6
|
+
* Making authentication simple.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2025.2.4
|
|
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.instanceOfUserLDAPSourceConnection = instanceOfUserLDAPSourceConnection;
|
|
17
|
+
exports.UserLDAPSourceConnectionFromJSON = UserLDAPSourceConnectionFromJSON;
|
|
18
|
+
exports.UserLDAPSourceConnectionFromJSONTyped = UserLDAPSourceConnectionFromJSONTyped;
|
|
19
|
+
exports.UserLDAPSourceConnectionToJSON = UserLDAPSourceConnectionToJSON;
|
|
20
|
+
exports.UserLDAPSourceConnectionToJSONTyped = UserLDAPSourceConnectionToJSONTyped;
|
|
21
|
+
const Source_1 = require("./Source");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the UserLDAPSourceConnection interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfUserLDAPSourceConnection(value) {
|
|
26
|
+
if (!('pk' in value) || value['pk'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('user' in value) || value['user'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('source' in value) || value['source'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('sourceObj' in value) || value['sourceObj'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('identifier' in value) || value['identifier'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('created' in value) || value['created'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
if (!('lastUpdated' in value) || value['lastUpdated'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
function UserLDAPSourceConnectionFromJSON(json) {
|
|
43
|
+
return UserLDAPSourceConnectionFromJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
function UserLDAPSourceConnectionFromJSONTyped(json, ignoreDiscriminator) {
|
|
46
|
+
if (json == null) {
|
|
47
|
+
return json;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'pk': json['pk'],
|
|
51
|
+
'user': json['user'],
|
|
52
|
+
'source': json['source'],
|
|
53
|
+
'sourceObj': (0, Source_1.SourceFromJSON)(json['source_obj']),
|
|
54
|
+
'identifier': json['identifier'],
|
|
55
|
+
'created': (new Date(json['created'])),
|
|
56
|
+
'lastUpdated': (new Date(json['last_updated'])),
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
function UserLDAPSourceConnectionToJSON(json) {
|
|
60
|
+
return UserLDAPSourceConnectionToJSONTyped(json, false);
|
|
61
|
+
}
|
|
62
|
+
function UserLDAPSourceConnectionToJSONTyped(value, ignoreDiscriminator = false) {
|
|
63
|
+
if (value == null) {
|
|
64
|
+
return value;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
'user': value['user'],
|
|
68
|
+
'source': value['source'],
|
|
69
|
+
'identifier': value['identifier'],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* authentik
|
|
3
|
+
* Making authentication simple.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2025.2.4
|
|
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
|
+
* User source connection
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UserLDAPSourceConnectionRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface UserLDAPSourceConnectionRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof UserLDAPSourceConnectionRequest
|
|
22
|
+
*/
|
|
23
|
+
user: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UserLDAPSourceConnectionRequest
|
|
28
|
+
*/
|
|
29
|
+
source: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UserLDAPSourceConnectionRequest
|
|
34
|
+
*/
|
|
35
|
+
identifier: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the UserLDAPSourceConnectionRequest interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfUserLDAPSourceConnectionRequest(value: object): value is UserLDAPSourceConnectionRequest;
|
|
41
|
+
export declare function UserLDAPSourceConnectionRequestFromJSON(json: any): UserLDAPSourceConnectionRequest;
|
|
42
|
+
export declare function UserLDAPSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLDAPSourceConnectionRequest;
|
|
43
|
+
export declare function UserLDAPSourceConnectionRequestToJSON(json: any): UserLDAPSourceConnectionRequest;
|
|
44
|
+
export declare function UserLDAPSourceConnectionRequestToJSONTyped(value?: UserLDAPSourceConnectionRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* authentik
|
|
6
|
+
* Making authentication simple.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2025.2.4
|
|
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.instanceOfUserLDAPSourceConnectionRequest = instanceOfUserLDAPSourceConnectionRequest;
|
|
17
|
+
exports.UserLDAPSourceConnectionRequestFromJSON = UserLDAPSourceConnectionRequestFromJSON;
|
|
18
|
+
exports.UserLDAPSourceConnectionRequestFromJSONTyped = UserLDAPSourceConnectionRequestFromJSONTyped;
|
|
19
|
+
exports.UserLDAPSourceConnectionRequestToJSON = UserLDAPSourceConnectionRequestToJSON;
|
|
20
|
+
exports.UserLDAPSourceConnectionRequestToJSONTyped = UserLDAPSourceConnectionRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the UserLDAPSourceConnectionRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfUserLDAPSourceConnectionRequest(value) {
|
|
25
|
+
if (!('user' in value) || value['user'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('source' in value) || value['source'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('identifier' in value) || value['identifier'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function UserLDAPSourceConnectionRequestFromJSON(json) {
|
|
34
|
+
return UserLDAPSourceConnectionRequestFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function UserLDAPSourceConnectionRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'user': json['user'],
|
|
42
|
+
'source': json['source'],
|
|
43
|
+
'identifier': json['identifier'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
function UserLDAPSourceConnectionRequestToJSON(json) {
|
|
47
|
+
return UserLDAPSourceConnectionRequestToJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
function UserLDAPSourceConnectionRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'user': value['user'],
|
|
55
|
+
'source': value['source'],
|
|
56
|
+
'identifier': value['identifier'],
|
|
57
|
+
};
|
|
58
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -174,6 +174,8 @@ export * from './GoogleWorkspaceProviderUserRequest';
|
|
|
174
174
|
export * from './Group';
|
|
175
175
|
export * from './GroupKerberosSourceConnection';
|
|
176
176
|
export * from './GroupKerberosSourceConnectionRequest';
|
|
177
|
+
export * from './GroupLDAPSourceConnection';
|
|
178
|
+
export * from './GroupLDAPSourceConnectionRequest';
|
|
177
179
|
export * from './GroupMatchingModeEnum';
|
|
178
180
|
export * from './GroupMember';
|
|
179
181
|
export * from './GroupMemberRequest';
|
|
@@ -313,6 +315,7 @@ export * from './PaginatedGoogleWorkspaceProviderList';
|
|
|
313
315
|
export * from './PaginatedGoogleWorkspaceProviderMappingList';
|
|
314
316
|
export * from './PaginatedGoogleWorkspaceProviderUserList';
|
|
315
317
|
export * from './PaginatedGroupKerberosSourceConnectionList';
|
|
318
|
+
export * from './PaginatedGroupLDAPSourceConnectionList';
|
|
316
319
|
export * from './PaginatedGroupList';
|
|
317
320
|
export * from './PaginatedGroupOAuthSourceConnectionList';
|
|
318
321
|
export * from './PaginatedGroupPlexSourceConnectionList';
|
|
@@ -395,6 +398,7 @@ export * from './PaginatedUserAssignedObjectPermissionList';
|
|
|
395
398
|
export * from './PaginatedUserConsentList';
|
|
396
399
|
export * from './PaginatedUserDeleteStageList';
|
|
397
400
|
export * from './PaginatedUserKerberosSourceConnectionList';
|
|
401
|
+
export * from './PaginatedUserLDAPSourceConnectionList';
|
|
398
402
|
export * from './PaginatedUserList';
|
|
399
403
|
export * from './PaginatedUserLoginStageList';
|
|
400
404
|
export * from './PaginatedUserLogoutStageList';
|
|
@@ -451,6 +455,7 @@ export * from './PatchedGeoIPPolicyRequest';
|
|
|
451
455
|
export * from './PatchedGoogleWorkspaceProviderMappingRequest';
|
|
452
456
|
export * from './PatchedGoogleWorkspaceProviderRequest';
|
|
453
457
|
export * from './PatchedGroupKerberosSourceConnectionRequest';
|
|
458
|
+
export * from './PatchedGroupLDAPSourceConnectionRequest';
|
|
454
459
|
export * from './PatchedGroupOAuthSourceConnectionRequest';
|
|
455
460
|
export * from './PatchedGroupPlexSourceConnectionRequest';
|
|
456
461
|
export * from './PatchedGroupRequest';
|
|
@@ -514,6 +519,7 @@ export * from './PatchedTenantRequest';
|
|
|
514
519
|
export * from './PatchedTokenRequest';
|
|
515
520
|
export * from './PatchedUserDeleteStageRequest';
|
|
516
521
|
export * from './PatchedUserKerberosSourceConnectionRequest';
|
|
522
|
+
export * from './PatchedUserLDAPSourceConnectionRequest';
|
|
517
523
|
export * from './PatchedUserLoginStageRequest';
|
|
518
524
|
export * from './PatchedUserLogoutStageRequest';
|
|
519
525
|
export * from './PatchedUserOAuthSourceConnectionRequest';
|
|
@@ -682,6 +688,8 @@ export * from './UserGroup';
|
|
|
682
688
|
export * from './UserGroupRequest';
|
|
683
689
|
export * from './UserKerberosSourceConnection';
|
|
684
690
|
export * from './UserKerberosSourceConnectionRequest';
|
|
691
|
+
export * from './UserLDAPSourceConnection';
|
|
692
|
+
export * from './UserLDAPSourceConnectionRequest';
|
|
685
693
|
export * from './UserLoginChallenge';
|
|
686
694
|
export * from './UserLoginChallengeResponseRequest';
|
|
687
695
|
export * from './UserLoginStage';
|
package/dist/models/index.js
CHANGED
|
@@ -192,6 +192,8 @@ __exportStar(require("./GoogleWorkspaceProviderUserRequest"), exports);
|
|
|
192
192
|
__exportStar(require("./Group"), exports);
|
|
193
193
|
__exportStar(require("./GroupKerberosSourceConnection"), exports);
|
|
194
194
|
__exportStar(require("./GroupKerberosSourceConnectionRequest"), exports);
|
|
195
|
+
__exportStar(require("./GroupLDAPSourceConnection"), exports);
|
|
196
|
+
__exportStar(require("./GroupLDAPSourceConnectionRequest"), exports);
|
|
195
197
|
__exportStar(require("./GroupMatchingModeEnum"), exports);
|
|
196
198
|
__exportStar(require("./GroupMember"), exports);
|
|
197
199
|
__exportStar(require("./GroupMemberRequest"), exports);
|
|
@@ -331,6 +333,7 @@ __exportStar(require("./PaginatedGoogleWorkspaceProviderList"), exports);
|
|
|
331
333
|
__exportStar(require("./PaginatedGoogleWorkspaceProviderMappingList"), exports);
|
|
332
334
|
__exportStar(require("./PaginatedGoogleWorkspaceProviderUserList"), exports);
|
|
333
335
|
__exportStar(require("./PaginatedGroupKerberosSourceConnectionList"), exports);
|
|
336
|
+
__exportStar(require("./PaginatedGroupLDAPSourceConnectionList"), exports);
|
|
334
337
|
__exportStar(require("./PaginatedGroupList"), exports);
|
|
335
338
|
__exportStar(require("./PaginatedGroupOAuthSourceConnectionList"), exports);
|
|
336
339
|
__exportStar(require("./PaginatedGroupPlexSourceConnectionList"), exports);
|
|
@@ -413,6 +416,7 @@ __exportStar(require("./PaginatedUserAssignedObjectPermissionList"), exports);
|
|
|
413
416
|
__exportStar(require("./PaginatedUserConsentList"), exports);
|
|
414
417
|
__exportStar(require("./PaginatedUserDeleteStageList"), exports);
|
|
415
418
|
__exportStar(require("./PaginatedUserKerberosSourceConnectionList"), exports);
|
|
419
|
+
__exportStar(require("./PaginatedUserLDAPSourceConnectionList"), exports);
|
|
416
420
|
__exportStar(require("./PaginatedUserList"), exports);
|
|
417
421
|
__exportStar(require("./PaginatedUserLoginStageList"), exports);
|
|
418
422
|
__exportStar(require("./PaginatedUserLogoutStageList"), exports);
|
|
@@ -469,6 +473,7 @@ __exportStar(require("./PatchedGeoIPPolicyRequest"), exports);
|
|
|
469
473
|
__exportStar(require("./PatchedGoogleWorkspaceProviderMappingRequest"), exports);
|
|
470
474
|
__exportStar(require("./PatchedGoogleWorkspaceProviderRequest"), exports);
|
|
471
475
|
__exportStar(require("./PatchedGroupKerberosSourceConnectionRequest"), exports);
|
|
476
|
+
__exportStar(require("./PatchedGroupLDAPSourceConnectionRequest"), exports);
|
|
472
477
|
__exportStar(require("./PatchedGroupOAuthSourceConnectionRequest"), exports);
|
|
473
478
|
__exportStar(require("./PatchedGroupPlexSourceConnectionRequest"), exports);
|
|
474
479
|
__exportStar(require("./PatchedGroupRequest"), exports);
|
|
@@ -532,6 +537,7 @@ __exportStar(require("./PatchedTenantRequest"), exports);
|
|
|
532
537
|
__exportStar(require("./PatchedTokenRequest"), exports);
|
|
533
538
|
__exportStar(require("./PatchedUserDeleteStageRequest"), exports);
|
|
534
539
|
__exportStar(require("./PatchedUserKerberosSourceConnectionRequest"), exports);
|
|
540
|
+
__exportStar(require("./PatchedUserLDAPSourceConnectionRequest"), exports);
|
|
535
541
|
__exportStar(require("./PatchedUserLoginStageRequest"), exports);
|
|
536
542
|
__exportStar(require("./PatchedUserLogoutStageRequest"), exports);
|
|
537
543
|
__exportStar(require("./PatchedUserOAuthSourceConnectionRequest"), exports);
|
|
@@ -700,6 +706,8 @@ __exportStar(require("./UserGroup"), exports);
|
|
|
700
706
|
__exportStar(require("./UserGroupRequest"), exports);
|
|
701
707
|
__exportStar(require("./UserKerberosSourceConnection"), exports);
|
|
702
708
|
__exportStar(require("./UserKerberosSourceConnectionRequest"), exports);
|
|
709
|
+
__exportStar(require("./UserLDAPSourceConnection"), exports);
|
|
710
|
+
__exportStar(require("./UserLDAPSourceConnectionRequest"), exports);
|
|
703
711
|
__exportStar(require("./UserLoginChallenge"), exports);
|
|
704
712
|
__exportStar(require("./UserLoginChallengeResponseRequest"), exports);
|
|
705
713
|
__exportStar(require("./UserLoginStage"), exports);
|
package/package.json
CHANGED
package/src/apis/CoreApi.ts
CHANGED
|
@@ -266,12 +266,12 @@ export interface CoreAuthenticatedSessionsDestroyRequest {
|
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
export interface CoreAuthenticatedSessionsListRequest {
|
|
269
|
-
lastIp?: string;
|
|
270
|
-
lastUserAgent?: string;
|
|
271
269
|
ordering?: string;
|
|
272
270
|
page?: number;
|
|
273
271
|
pageSize?: number;
|
|
274
272
|
search?: string;
|
|
273
|
+
sessionLastIp?: string;
|
|
274
|
+
sessionLastUserAgent?: string;
|
|
275
275
|
userUsername?: string;
|
|
276
276
|
}
|
|
277
277
|
|
|
@@ -1453,14 +1453,6 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
1453
1453
|
async coreAuthenticatedSessionsListRaw(requestParameters: CoreAuthenticatedSessionsListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedAuthenticatedSessionList>> {
|
|
1454
1454
|
const queryParameters: any = {};
|
|
1455
1455
|
|
|
1456
|
-
if (requestParameters['lastIp'] != null) {
|
|
1457
|
-
queryParameters['last_ip'] = requestParameters['lastIp'];
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
if (requestParameters['lastUserAgent'] != null) {
|
|
1461
|
-
queryParameters['last_user_agent'] = requestParameters['lastUserAgent'];
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
1456
|
if (requestParameters['ordering'] != null) {
|
|
1465
1457
|
queryParameters['ordering'] = requestParameters['ordering'];
|
|
1466
1458
|
}
|
|
@@ -1477,6 +1469,14 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
1477
1469
|
queryParameters['search'] = requestParameters['search'];
|
|
1478
1470
|
}
|
|
1479
1471
|
|
|
1472
|
+
if (requestParameters['sessionLastIp'] != null) {
|
|
1473
|
+
queryParameters['session__last_ip'] = requestParameters['sessionLastIp'];
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
if (requestParameters['sessionLastUserAgent'] != null) {
|
|
1477
|
+
queryParameters['session__last_user_agent'] = requestParameters['sessionLastUserAgent'];
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
1480
|
if (requestParameters['userUsername'] != null) {
|
|
1481
1481
|
queryParameters['user__username'] = requestParameters['userUsername'];
|
|
1482
1482
|
}
|
package/src/apis/RbacApi.ts
CHANGED
|
@@ -1490,8 +1490,10 @@ export const RbacPermissionsAssignedByRolesListModelEnum = {
|
|
|
1490
1490
|
AuthentikSourcesKerberosKerberossource: 'authentik_sources_kerberos.kerberossource',
|
|
1491
1491
|
AuthentikSourcesKerberosKerberossourcepropertymapping: 'authentik_sources_kerberos.kerberossourcepropertymapping',
|
|
1492
1492
|
AuthentikSourcesKerberosUserkerberossourceconnection: 'authentik_sources_kerberos.userkerberossourceconnection',
|
|
1493
|
+
AuthentikSourcesLdapGroupldapsourceconnection: 'authentik_sources_ldap.groupldapsourceconnection',
|
|
1493
1494
|
AuthentikSourcesLdapLdapsource: 'authentik_sources_ldap.ldapsource',
|
|
1494
1495
|
AuthentikSourcesLdapLdapsourcepropertymapping: 'authentik_sources_ldap.ldapsourcepropertymapping',
|
|
1496
|
+
AuthentikSourcesLdapUserldapsourceconnection: 'authentik_sources_ldap.userldapsourceconnection',
|
|
1495
1497
|
AuthentikSourcesOauthGroupoauthsourceconnection: 'authentik_sources_oauth.groupoauthsourceconnection',
|
|
1496
1498
|
AuthentikSourcesOauthOauthsource: 'authentik_sources_oauth.oauthsource',
|
|
1497
1499
|
AuthentikSourcesOauthOauthsourcepropertymapping: 'authentik_sources_oauth.oauthsourcepropertymapping',
|
|
@@ -1596,8 +1598,10 @@ export const RbacPermissionsAssignedByUsersListModelEnum = {
|
|
|
1596
1598
|
AuthentikSourcesKerberosKerberossource: 'authentik_sources_kerberos.kerberossource',
|
|
1597
1599
|
AuthentikSourcesKerberosKerberossourcepropertymapping: 'authentik_sources_kerberos.kerberossourcepropertymapping',
|
|
1598
1600
|
AuthentikSourcesKerberosUserkerberossourceconnection: 'authentik_sources_kerberos.userkerberossourceconnection',
|
|
1601
|
+
AuthentikSourcesLdapGroupldapsourceconnection: 'authentik_sources_ldap.groupldapsourceconnection',
|
|
1599
1602
|
AuthentikSourcesLdapLdapsource: 'authentik_sources_ldap.ldapsource',
|
|
1600
1603
|
AuthentikSourcesLdapLdapsourcepropertymapping: 'authentik_sources_ldap.ldapsourcepropertymapping',
|
|
1604
|
+
AuthentikSourcesLdapUserldapsourceconnection: 'authentik_sources_ldap.userldapsourceconnection',
|
|
1601
1605
|
AuthentikSourcesOauthGroupoauthsourceconnection: 'authentik_sources_oauth.groupoauthsourceconnection',
|
|
1602
1606
|
AuthentikSourcesOauthOauthsource: 'authentik_sources_oauth.oauthsource',
|
|
1603
1607
|
AuthentikSourcesOauthOauthsourcepropertymapping: 'authentik_sources_oauth.oauthsourcepropertymapping',
|