@keycloak/keycloak-admin-client 16.0.0-dev.4 → 16.0.0-dev.43
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/README.md +5 -1
- package/lib/client.d.ts +8 -6
- package/lib/client.js +15 -7
- package/lib/client.js.map +1 -1
- package/lib/defs/clientPoliciesRepresentation.d.ts +4 -0
- package/lib/defs/clientPoliciesRepresentation.js +3 -0
- package/lib/defs/clientPoliciesRepresentation.js.map +1 -0
- package/lib/defs/clientPolicyConditionRepresentation.d.ts +4 -0
- package/lib/defs/clientPolicyConditionRepresentation.js +3 -0
- package/lib/defs/clientPolicyConditionRepresentation.js.map +1 -0
- package/lib/defs/clientPolicyExecutorRepresentation.d.ts +4 -0
- package/lib/defs/clientPolicyExecutorRepresentation.js +3 -0
- package/lib/defs/clientPolicyExecutorRepresentation.js.map +1 -0
- package/lib/defs/clientPolicyRepresentation.d.ts +8 -0
- package/lib/defs/clientPolicyRepresentation.js +3 -0
- package/lib/defs/clientPolicyRepresentation.js.map +1 -0
- package/lib/defs/clientProfileRepresentation.d.ts +6 -0
- package/lib/defs/clientProfileRepresentation.js +3 -0
- package/lib/defs/clientProfileRepresentation.js.map +1 -0
- package/lib/defs/clientProfilesRepresentation.d.ts +5 -0
- package/lib/defs/clientProfilesRepresentation.js +3 -0
- package/lib/defs/clientProfilesRepresentation.js.map +1 -0
- package/lib/defs/credentialRepresentation.d.ts +5 -9
- package/lib/defs/identityProviderMapperTypeRepresentation.d.ts +8 -0
- package/lib/defs/identityProviderMapperTypeRepresentation.js +3 -0
- package/lib/defs/identityProviderMapperTypeRepresentation.js.map +1 -0
- package/lib/defs/realmRepresentation.d.ts +5 -0
- package/lib/defs/requiredActionProviderRepresentation.d.ts +1 -1
- package/lib/defs/requiredActionProviderSimpleRepresentation.d.ts +5 -0
- package/lib/defs/requiredActionProviderSimpleRepresentation.js +3 -0
- package/lib/defs/requiredActionProviderSimpleRepresentation.js.map +1 -0
- package/lib/defs/resourceRepresentation.d.ts +1 -1
- package/lib/resources/agent.js +45 -38
- package/lib/resources/agent.js.map +1 -1
- package/lib/resources/attackDetection.d.ts +8 -8
- package/lib/resources/attackDetection.js.map +1 -1
- package/lib/resources/authenticationManagement.d.ts +28 -27
- package/lib/resources/authenticationManagement.js.map +1 -1
- package/lib/resources/cache.d.ts +2 -2
- package/lib/resources/clientPolicies.d.ts +23 -0
- package/lib/resources/clientPolicies.js +58 -0
- package/lib/resources/clientPolicies.js.map +1 -0
- package/lib/resources/clientScopes.d.ts +72 -72
- package/lib/resources/clientScopes.js +4 -6
- package/lib/resources/clientScopes.js.map +1 -1
- package/lib/resources/clients.d.ts +217 -195
- package/lib/resources/clients.js +12 -3
- package/lib/resources/clients.js.map +1 -1
- package/lib/resources/components.d.ts +13 -13
- package/lib/resources/components.js.map +1 -1
- package/lib/resources/groups.d.ts +53 -53
- package/lib/resources/groups.js.map +1 -1
- package/lib/resources/identityProviders.d.ts +36 -35
- package/lib/resources/identityProviders.js.map +1 -1
- package/lib/resources/realms.d.ts +46 -46
- package/lib/resources/realms.js.map +1 -1
- package/lib/resources/resource.d.ts +1 -1
- package/lib/resources/roles.d.ts +44 -36
- package/lib/resources/roles.js.map +1 -1
- package/lib/resources/serverInfo.d.ts +1 -1
- package/lib/resources/sessions.d.ts +2 -2
- package/lib/resources/userStorageProvider.d.ts +17 -17
- package/lib/resources/users.d.ts +117 -105
- package/lib/resources/users.js +10 -0
- package/lib/resources/users.js.map +1 -1
- package/lib/resources/whoAmI.d.ts +2 -2
- package/lib/utils/auth.d.ts +10 -0
- package/lib/utils/auth.js +2 -2
- package/lib/utils/auth.js.map +1 -1
- package/package.json +9 -4
|
@@ -5,83 +5,84 @@ import AuthenticationExecutionInfoRepresentation from '../defs/authenticationExe
|
|
|
5
5
|
import AuthenticationFlowRepresentation from '../defs/authenticationFlowRepresentation';
|
|
6
6
|
import AuthenticatorConfigRepresentation, { AuthenticationProviderRepresentation } from '../defs/authenticatorConfigRepresentation';
|
|
7
7
|
import AuthenticatorConfigInfoRepresentation from '../defs/authenticatorConfigInfoRepresentation';
|
|
8
|
+
import RequiredActionProviderSimpleRepresentation from '../defs/requiredActionProviderSimpleRepresentation';
|
|
8
9
|
export declare class AuthenticationManagement extends Resource {
|
|
9
|
-
registerRequiredAction: (payload?: Record<string, any>) => Promise<any>;
|
|
10
|
-
getRequiredActions: (payload?: void & {}) => Promise<
|
|
10
|
+
registerRequiredAction: (payload?: Record<string, any> | undefined) => Promise<any>;
|
|
11
|
+
getRequiredActions: (payload?: (void & {}) | undefined) => Promise<RequiredActionProviderRepresentation[]>;
|
|
11
12
|
getRequiredActionForAlias: (payload?: {
|
|
12
13
|
alias: string;
|
|
13
|
-
}) => Promise<any>;
|
|
14
|
-
getClientAuthenticatorProviders: (payload?: void & {}) => Promise<AuthenticationProviderRepresentation[]>;
|
|
15
|
-
getAuthenticatorProviders: (payload?: void & {}) => Promise<AuthenticationProviderRepresentation[]>;
|
|
16
|
-
getFormActionProviders: (payload?: void & {}) => Promise<AuthenticationProviderRepresentation[]>;
|
|
14
|
+
} | undefined) => Promise<any>;
|
|
15
|
+
getClientAuthenticatorProviders: (payload?: (void & {}) | undefined) => Promise<AuthenticationProviderRepresentation[]>;
|
|
16
|
+
getAuthenticatorProviders: (payload?: (void & {}) | undefined) => Promise<AuthenticationProviderRepresentation[]>;
|
|
17
|
+
getFormActionProviders: (payload?: (void & {}) | undefined) => Promise<AuthenticationProviderRepresentation[]>;
|
|
17
18
|
updateRequiredAction: (query: {
|
|
18
19
|
alias: string;
|
|
19
20
|
}, payload: RequiredActionProviderRepresentation) => Promise<void>;
|
|
20
21
|
deleteRequiredAction: (payload?: {
|
|
21
22
|
alias: string;
|
|
22
|
-
}) => Promise<void>;
|
|
23
|
+
} | undefined) => Promise<void>;
|
|
23
24
|
lowerRequiredActionPriority: (payload?: {
|
|
24
25
|
alias: string;
|
|
25
|
-
}) => Promise<any>;
|
|
26
|
+
} | undefined) => Promise<any>;
|
|
26
27
|
raiseRequiredActionPriority: (payload?: {
|
|
27
28
|
alias: string;
|
|
28
|
-
}) => Promise<any>;
|
|
29
|
-
getUnregisteredRequiredActions: (payload?: void & {}) => Promise<
|
|
30
|
-
getFlows: (payload?: void & {}) => Promise<AuthenticationFlowRepresentation[]>;
|
|
29
|
+
} | undefined) => Promise<any>;
|
|
30
|
+
getUnregisteredRequiredActions: (payload?: (void & {}) | undefined) => Promise<RequiredActionProviderSimpleRepresentation[]>;
|
|
31
|
+
getFlows: (payload?: (void & {}) | undefined) => Promise<AuthenticationFlowRepresentation[]>;
|
|
31
32
|
getFlow: (payload?: {
|
|
32
33
|
flowId: string;
|
|
33
|
-
}) => Promise<AuthenticationFlowRepresentation>;
|
|
34
|
-
getFormProviders: (payload?: void & {}) => Promise<
|
|
35
|
-
createFlow: (payload?: AuthenticationFlowRepresentation) => Promise<
|
|
34
|
+
} | undefined) => Promise<AuthenticationFlowRepresentation>;
|
|
35
|
+
getFormProviders: (payload?: (void & {}) | undefined) => Promise<AuthenticationProviderRepresentation[]>;
|
|
36
|
+
createFlow: (payload?: AuthenticationFlowRepresentation | undefined) => Promise<AuthenticationFlowRepresentation>;
|
|
36
37
|
copyFlow: (payload?: {
|
|
37
38
|
flow: string;
|
|
38
39
|
newName: string;
|
|
39
|
-
}) => Promise<any>;
|
|
40
|
+
} | undefined) => Promise<any>;
|
|
40
41
|
deleteFlow: (payload?: {
|
|
41
42
|
flowId: string;
|
|
42
|
-
}) => Promise<any>;
|
|
43
|
+
} | undefined) => Promise<any>;
|
|
43
44
|
updateFlow: (query: {
|
|
44
45
|
flowId: string;
|
|
45
46
|
}, payload: AuthenticationFlowRepresentation) => Promise<any>;
|
|
46
47
|
getExecutions: (payload?: {
|
|
47
48
|
flow: string;
|
|
48
|
-
}) => Promise<AuthenticationExecutionInfoRepresentation[]>;
|
|
49
|
+
} | undefined) => Promise<AuthenticationExecutionInfoRepresentation[]>;
|
|
49
50
|
addExecution: (query: {
|
|
50
51
|
flow: string;
|
|
51
52
|
}, payload: AuthenticationExecutionInfoRepresentation) => Promise<any>;
|
|
52
53
|
addExecutionToFlow: (payload?: {
|
|
53
54
|
flow: string;
|
|
54
55
|
provider: string;
|
|
55
|
-
}) => Promise<AuthenticationExecutionInfoRepresentation>;
|
|
56
|
+
} | undefined) => Promise<AuthenticationExecutionInfoRepresentation>;
|
|
56
57
|
addFlowToFlow: (payload?: {
|
|
57
58
|
flow: string;
|
|
58
59
|
alias: string;
|
|
59
60
|
type: string;
|
|
60
61
|
provider: string;
|
|
61
62
|
description: string;
|
|
62
|
-
}) => Promise<AuthenticationFlowRepresentation>;
|
|
63
|
+
} | undefined) => Promise<AuthenticationFlowRepresentation>;
|
|
63
64
|
updateExecution: (query: {
|
|
64
65
|
flow: string;
|
|
65
66
|
}, payload: AuthenticationExecutionInfoRepresentation) => Promise<any>;
|
|
66
67
|
delExecution: (payload?: {
|
|
67
68
|
id: string;
|
|
68
|
-
}) => Promise<any>;
|
|
69
|
+
} | undefined) => Promise<any>;
|
|
69
70
|
lowerPriorityExecution: (payload?: {
|
|
70
71
|
id: string;
|
|
71
|
-
}) => Promise<any>;
|
|
72
|
+
} | undefined) => Promise<any>;
|
|
72
73
|
raisePriorityExecution: (payload?: {
|
|
73
74
|
id: string;
|
|
74
|
-
}) => Promise<any>;
|
|
75
|
+
} | undefined) => Promise<any>;
|
|
75
76
|
getConfigDescription: (payload?: {
|
|
76
77
|
providerId: string;
|
|
77
|
-
}) => Promise<AuthenticatorConfigInfoRepresentation>;
|
|
78
|
-
createConfig: (payload?: AuthenticatorConfigRepresentation) => Promise<AuthenticatorConfigRepresentation>;
|
|
79
|
-
updateConfig: (payload?: AuthenticatorConfigRepresentation) => Promise<void>;
|
|
78
|
+
} | undefined) => Promise<AuthenticatorConfigInfoRepresentation>;
|
|
79
|
+
createConfig: (payload?: AuthenticatorConfigRepresentation | undefined) => Promise<AuthenticatorConfigRepresentation>;
|
|
80
|
+
updateConfig: (payload?: AuthenticatorConfigRepresentation | undefined) => Promise<void>;
|
|
80
81
|
getConfig: (payload?: {
|
|
81
82
|
id: string;
|
|
82
|
-
}) => Promise<AuthenticatorConfigRepresentation>;
|
|
83
|
+
} | undefined) => Promise<AuthenticatorConfigRepresentation>;
|
|
83
84
|
delConfig: (payload?: {
|
|
84
85
|
id: string;
|
|
85
|
-
}) => Promise<any>;
|
|
86
|
+
} | undefined) => Promise<any>;
|
|
86
87
|
constructor(client: KeycloakAdminClient);
|
|
87
88
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authenticationManagement.js","sourceRoot":"","sources":["../../src/resources/authenticationManagement.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,wDAAkC;
|
|
1
|
+
{"version":3,"file":"authenticationManagement.js","sourceRoot":"","sources":["../../src/resources/authenticationManagement.ts"],"names":[],"mappings":"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"}
|
package/lib/resources/cache.d.ts
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import Resource from './resource';
|
|
2
|
+
import { KeycloakAdminClient } from '../client';
|
|
3
|
+
import ClientProfilesRepresentation from '../defs/clientProfilesRepresentation';
|
|
4
|
+
import ClientPoliciesRepresentation from '../defs/clientPoliciesRepresentation';
|
|
5
|
+
export declare class ClientPolicies extends Resource<{
|
|
6
|
+
realm?: string;
|
|
7
|
+
}> {
|
|
8
|
+
constructor(client: KeycloakAdminClient);
|
|
9
|
+
listProfiles: (payload?: ({
|
|
10
|
+
includeGlobalProfiles?: boolean | undefined;
|
|
11
|
+
} & {
|
|
12
|
+
realm?: string | undefined;
|
|
13
|
+
}) | undefined) => Promise<ClientProfilesRepresentation>;
|
|
14
|
+
createProfiles: (payload?: (ClientProfilesRepresentation & {
|
|
15
|
+
realm?: string | undefined;
|
|
16
|
+
}) | undefined) => Promise<void>;
|
|
17
|
+
listPolicies: (payload?: (void & {
|
|
18
|
+
realm?: string | undefined;
|
|
19
|
+
}) | undefined) => Promise<ClientPoliciesRepresentation>;
|
|
20
|
+
updatePolicy: (payload?: (ClientPoliciesRepresentation & {
|
|
21
|
+
realm?: string | undefined;
|
|
22
|
+
}) | undefined) => Promise<void>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
19
|
+
};
|
|
20
|
+
exports.__esModule = true;
|
|
21
|
+
exports.ClientPolicies = void 0;
|
|
22
|
+
var resource_1 = __importDefault(require("./resource"));
|
|
23
|
+
var ClientPolicies = (function (_super) {
|
|
24
|
+
__extends(ClientPolicies, _super);
|
|
25
|
+
function ClientPolicies(client) {
|
|
26
|
+
var _this = _super.call(this, client, {
|
|
27
|
+
path: '/admin/realms/{realm}/client-policies',
|
|
28
|
+
getUrlParams: function () { return ({
|
|
29
|
+
realm: client.realmName
|
|
30
|
+
}); },
|
|
31
|
+
getBaseUrl: function () { return client.baseUrl; }
|
|
32
|
+
}) || this;
|
|
33
|
+
_this.listProfiles = _this.makeRequest({
|
|
34
|
+
method: 'GET',
|
|
35
|
+
path: '/profiles',
|
|
36
|
+
queryParamKeys: ['include-global-profiles'],
|
|
37
|
+
keyTransform: {
|
|
38
|
+
includeGlobalProfiles: 'include-global-profiles'
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
_this.createProfiles = _this.makeRequest({
|
|
42
|
+
method: 'PUT',
|
|
43
|
+
path: '/profiles'
|
|
44
|
+
});
|
|
45
|
+
_this.listPolicies = _this.makeRequest({
|
|
46
|
+
method: 'GET',
|
|
47
|
+
path: '/policies'
|
|
48
|
+
});
|
|
49
|
+
_this.updatePolicy = _this.makeRequest({
|
|
50
|
+
method: 'PUT',
|
|
51
|
+
path: '/policies'
|
|
52
|
+
});
|
|
53
|
+
return _this;
|
|
54
|
+
}
|
|
55
|
+
return ClientPolicies;
|
|
56
|
+
}(resource_1["default"]));
|
|
57
|
+
exports.ClientPolicies = ClientPolicies;
|
|
58
|
+
//# sourceMappingURL=clientPolicies.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clientPolicies.js","sourceRoot":"","sources":["../../src/resources/clientPolicies.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,wDAAkC;AASlC;IAAoC,kCAA0B;IAC5D,wBAAY,MAA2B;QAAvC,YACE,kBAAM,MAAM,EAAE;YACZ,IAAI,EAAE,uCAAuC;YAC7C,YAAY,EAAE,cAAM,OAAA,CAAC;gBACnB,KAAK,EAAE,MAAM,CAAC,SAAS;aACxB,CAAC,EAFkB,CAElB;YACF,UAAU,EAAE,cAAM,OAAA,MAAM,CAAC,OAAO,EAAd,CAAc;SACjC,CAAC,SACH;QAIM,kBAAY,GAAG,KAAI,CAAC,WAAW,CAGpC;YACA,MAAM,EAAE,KAAK;YACb,IAAI,EAAE,WAAW;YACjB,cAAc,EAAE,CAAC,yBAAyB,CAAC;YAC3C,YAAY,EAAE;gBACZ,qBAAqB,EAAE,yBAAyB;aACjD;SACF,CAAC,CAAC;QAEI,oBAAc,GAAG,KAAI,CAAC,WAAW,CAAqC;YAC3E,MAAM,EAAE,KAAK;YACb,IAAI,EAAE,WAAW;SAClB,CAAC,CAAC;QAII,kBAAY,GAAG,KAAI,CAAC,WAAW,CAAqC;YACzE,MAAM,EAAE,KAAK;YACb,IAAI,EAAE,WAAW;SAClB,CAAC,CAAC;QAEI,kBAAY,GAAG,KAAI,CAAC,WAAW,CAAqC;YACzE,MAAM,EAAE,KAAK;YACb,IAAI,EAAE,WAAW;SAClB,CAAC,CAAC;;IA/BH,CAAC;IAgCH,qBAAC;AAAD,CAAC,AAzCD,CAAoC,qBAAQ,GAyC3C;AAzCY,wCAAc"}
|
|
@@ -8,156 +8,156 @@ export declare class ClientScopes extends Resource<{
|
|
|
8
8
|
realm?: string;
|
|
9
9
|
}> {
|
|
10
10
|
find: (payload?: {
|
|
11
|
-
realm?: string;
|
|
12
|
-
}) => Promise<ClientScopeRepresentation[]>;
|
|
13
|
-
create: (payload?: ClientScopeRepresentation & {
|
|
14
|
-
realm?: string;
|
|
15
|
-
}) => Promise<void>;
|
|
16
|
-
findOne: (payload?: {
|
|
11
|
+
realm?: string | undefined;
|
|
12
|
+
} | undefined) => Promise<ClientScopeRepresentation[]>;
|
|
13
|
+
create: (payload?: (ClientScopeRepresentation & {
|
|
14
|
+
realm?: string | undefined;
|
|
15
|
+
}) | undefined) => Promise<void>;
|
|
16
|
+
findOne: (payload?: ({
|
|
17
17
|
id: string;
|
|
18
18
|
} & {
|
|
19
|
-
realm?: string;
|
|
20
|
-
}) => Promise<ClientScopeRepresentation>;
|
|
19
|
+
realm?: string | undefined;
|
|
20
|
+
}) | undefined) => Promise<ClientScopeRepresentation | undefined>;
|
|
21
21
|
update: (query: {
|
|
22
22
|
id: string;
|
|
23
23
|
} & {
|
|
24
|
-
realm?: string;
|
|
24
|
+
realm?: string | undefined;
|
|
25
25
|
}, payload: ClientScopeRepresentation) => Promise<void>;
|
|
26
|
-
del: (payload?: {
|
|
26
|
+
del: (payload?: ({
|
|
27
27
|
id: string;
|
|
28
28
|
} & {
|
|
29
|
-
realm?: string;
|
|
30
|
-
}) => Promise<void>;
|
|
31
|
-
listDefaultClientScopes: (payload?: void & {
|
|
32
|
-
realm?: string;
|
|
33
|
-
}) => Promise<ClientScopeRepresentation[]>;
|
|
34
|
-
addDefaultClientScope: (payload?: {
|
|
29
|
+
realm?: string | undefined;
|
|
30
|
+
}) | undefined) => Promise<void>;
|
|
31
|
+
listDefaultClientScopes: (payload?: (void & {
|
|
32
|
+
realm?: string | undefined;
|
|
33
|
+
}) | undefined) => Promise<ClientScopeRepresentation[]>;
|
|
34
|
+
addDefaultClientScope: (payload?: ({
|
|
35
35
|
id: string;
|
|
36
36
|
} & {
|
|
37
|
-
realm?: string;
|
|
38
|
-
}) => Promise<void>;
|
|
39
|
-
delDefaultClientScope: (payload?: {
|
|
37
|
+
realm?: string | undefined;
|
|
38
|
+
}) | undefined) => Promise<void>;
|
|
39
|
+
delDefaultClientScope: (payload?: ({
|
|
40
40
|
id: string;
|
|
41
41
|
} & {
|
|
42
|
-
realm?: string;
|
|
43
|
-
}) => Promise<void>;
|
|
44
|
-
listDefaultOptionalClientScopes: (payload?: void & {
|
|
45
|
-
realm?: string;
|
|
46
|
-
}) => Promise<ClientScopeRepresentation[]>;
|
|
47
|
-
addDefaultOptionalClientScope: (payload?: {
|
|
42
|
+
realm?: string | undefined;
|
|
43
|
+
}) | undefined) => Promise<void>;
|
|
44
|
+
listDefaultOptionalClientScopes: (payload?: (void & {
|
|
45
|
+
realm?: string | undefined;
|
|
46
|
+
}) | undefined) => Promise<ClientScopeRepresentation[]>;
|
|
47
|
+
addDefaultOptionalClientScope: (payload?: ({
|
|
48
48
|
id: string;
|
|
49
49
|
} & {
|
|
50
|
-
realm?: string;
|
|
51
|
-
}) => Promise<void>;
|
|
52
|
-
delDefaultOptionalClientScope: (payload?: {
|
|
50
|
+
realm?: string | undefined;
|
|
51
|
+
}) | undefined) => Promise<void>;
|
|
52
|
+
delDefaultOptionalClientScope: (payload?: ({
|
|
53
53
|
id: string;
|
|
54
54
|
} & {
|
|
55
|
-
realm?: string;
|
|
56
|
-
}) => Promise<void>;
|
|
55
|
+
realm?: string | undefined;
|
|
56
|
+
}) | undefined) => Promise<void>;
|
|
57
57
|
addMultipleProtocolMappers: (query: {
|
|
58
58
|
id: string;
|
|
59
59
|
} & {
|
|
60
|
-
realm?: string;
|
|
60
|
+
realm?: string | undefined;
|
|
61
61
|
}, payload: ProtocolMapperRepresentation[]) => Promise<void>;
|
|
62
62
|
addProtocolMapper: (query: {
|
|
63
63
|
id: string;
|
|
64
64
|
} & {
|
|
65
|
-
realm?: string;
|
|
65
|
+
realm?: string | undefined;
|
|
66
66
|
}, payload: ProtocolMapperRepresentation) => Promise<void>;
|
|
67
|
-
listProtocolMappers: (payload?: {
|
|
67
|
+
listProtocolMappers: (payload?: ({
|
|
68
68
|
id: string;
|
|
69
69
|
} & {
|
|
70
|
-
realm?: string;
|
|
71
|
-
}) => Promise<ProtocolMapperRepresentation[]>;
|
|
72
|
-
findProtocolMapper: (payload?: {
|
|
70
|
+
realm?: string | undefined;
|
|
71
|
+
}) | undefined) => Promise<ProtocolMapperRepresentation[]>;
|
|
72
|
+
findProtocolMapper: (payload?: ({
|
|
73
73
|
id: string;
|
|
74
74
|
mapperId: string;
|
|
75
75
|
} & {
|
|
76
|
-
realm?: string;
|
|
77
|
-
}) => Promise<ProtocolMapperRepresentation>;
|
|
78
|
-
findProtocolMappersByProtocol: (payload?: {
|
|
76
|
+
realm?: string | undefined;
|
|
77
|
+
}) | undefined) => Promise<ProtocolMapperRepresentation | undefined>;
|
|
78
|
+
findProtocolMappersByProtocol: (payload?: ({
|
|
79
79
|
id: string;
|
|
80
80
|
protocol: string;
|
|
81
81
|
} & {
|
|
82
|
-
realm?: string;
|
|
83
|
-
}) => Promise<ProtocolMapperRepresentation[]>;
|
|
82
|
+
realm?: string | undefined;
|
|
83
|
+
}) | undefined) => Promise<ProtocolMapperRepresentation[]>;
|
|
84
84
|
updateProtocolMapper: (query: {
|
|
85
85
|
id: string;
|
|
86
86
|
mapperId: string;
|
|
87
87
|
} & {
|
|
88
|
-
realm?: string;
|
|
88
|
+
realm?: string | undefined;
|
|
89
89
|
}, payload: ProtocolMapperRepresentation) => Promise<void>;
|
|
90
|
-
delProtocolMapper: (payload?: {
|
|
90
|
+
delProtocolMapper: (payload?: ({
|
|
91
91
|
id: string;
|
|
92
92
|
mapperId: string;
|
|
93
93
|
} & {
|
|
94
|
-
realm?: string;
|
|
95
|
-
}) => Promise<void>;
|
|
96
|
-
listScopeMappings: (payload?: {
|
|
94
|
+
realm?: string | undefined;
|
|
95
|
+
}) | undefined) => Promise<void>;
|
|
96
|
+
listScopeMappings: (payload?: ({
|
|
97
97
|
id: string;
|
|
98
98
|
} & {
|
|
99
|
-
realm?: string;
|
|
100
|
-
}) => Promise<MappingsRepresentation>;
|
|
99
|
+
realm?: string | undefined;
|
|
100
|
+
}) | undefined) => Promise<MappingsRepresentation>;
|
|
101
101
|
addClientScopeMappings: (query: {
|
|
102
102
|
id: string;
|
|
103
103
|
client: string;
|
|
104
104
|
} & {
|
|
105
|
-
realm?: string;
|
|
105
|
+
realm?: string | undefined;
|
|
106
106
|
}, payload: RoleRepresentation[]) => Promise<void>;
|
|
107
|
-
listClientScopeMappings: (payload?: {
|
|
107
|
+
listClientScopeMappings: (payload?: ({
|
|
108
108
|
id: string;
|
|
109
109
|
client: string;
|
|
110
110
|
} & {
|
|
111
|
-
realm?: string;
|
|
112
|
-
}) => Promise<RoleRepresentation[]>;
|
|
113
|
-
listAvailableClientScopeMappings: (payload?: {
|
|
111
|
+
realm?: string | undefined;
|
|
112
|
+
}) | undefined) => Promise<RoleRepresentation[]>;
|
|
113
|
+
listAvailableClientScopeMappings: (payload?: ({
|
|
114
114
|
id: string;
|
|
115
115
|
client: string;
|
|
116
116
|
} & {
|
|
117
|
-
realm?: string;
|
|
118
|
-
}) => Promise<RoleRepresentation[]>;
|
|
119
|
-
listCompositeClientScopeMappings: (payload?: {
|
|
117
|
+
realm?: string | undefined;
|
|
118
|
+
}) | undefined) => Promise<RoleRepresentation[]>;
|
|
119
|
+
listCompositeClientScopeMappings: (payload?: ({
|
|
120
120
|
id: string;
|
|
121
121
|
client: string;
|
|
122
122
|
} & {
|
|
123
|
-
realm?: string;
|
|
124
|
-
}) => Promise<RoleRepresentation[]>;
|
|
123
|
+
realm?: string | undefined;
|
|
124
|
+
}) | undefined) => Promise<RoleRepresentation[]>;
|
|
125
125
|
delClientScopeMappings: (query: {
|
|
126
126
|
id: string;
|
|
127
127
|
client: string;
|
|
128
128
|
} & {
|
|
129
|
-
realm?: string;
|
|
129
|
+
realm?: string | undefined;
|
|
130
130
|
}, payload: RoleRepresentation[]) => Promise<void>;
|
|
131
131
|
addRealmScopeMappings: (query: {
|
|
132
132
|
id: string;
|
|
133
133
|
} & {
|
|
134
|
-
realm?: string;
|
|
134
|
+
realm?: string | undefined;
|
|
135
135
|
}, payload: RoleRepresentation[]) => Promise<void>;
|
|
136
|
-
listRealmScopeMappings: (payload?: {
|
|
136
|
+
listRealmScopeMappings: (payload?: ({
|
|
137
137
|
id: string;
|
|
138
138
|
} & {
|
|
139
|
-
realm?: string;
|
|
140
|
-
}) => Promise<RoleRepresentation[]>;
|
|
141
|
-
listAvailableRealmScopeMappings: (payload?: {
|
|
139
|
+
realm?: string | undefined;
|
|
140
|
+
}) | undefined) => Promise<RoleRepresentation[]>;
|
|
141
|
+
listAvailableRealmScopeMappings: (payload?: ({
|
|
142
142
|
id: string;
|
|
143
143
|
} & {
|
|
144
|
-
realm?: string;
|
|
145
|
-
}) => Promise<RoleRepresentation[]>;
|
|
146
|
-
listCompositeRealmScopeMappings: (payload?: {
|
|
144
|
+
realm?: string | undefined;
|
|
145
|
+
}) | undefined) => Promise<RoleRepresentation[]>;
|
|
146
|
+
listCompositeRealmScopeMappings: (payload?: ({
|
|
147
147
|
id: string;
|
|
148
148
|
} & {
|
|
149
|
-
realm?: string;
|
|
150
|
-
}) => Promise<RoleRepresentation[]>;
|
|
149
|
+
realm?: string | undefined;
|
|
150
|
+
}) | undefined) => Promise<RoleRepresentation[]>;
|
|
151
151
|
delRealmScopeMappings: (query: {
|
|
152
152
|
id: string;
|
|
153
153
|
} & {
|
|
154
|
-
realm?: string;
|
|
154
|
+
realm?: string | undefined;
|
|
155
155
|
}, payload: RoleRepresentation[]) => Promise<void>;
|
|
156
156
|
constructor(client: KeycloakAdminClient);
|
|
157
157
|
findOneByName(payload: {
|
|
158
158
|
realm?: string;
|
|
159
159
|
name: string;
|
|
160
|
-
}): Promise<ClientScopeRepresentation>;
|
|
160
|
+
}): Promise<ClientScopeRepresentation | undefined>;
|
|
161
161
|
delByName(payload: {
|
|
162
162
|
realm?: string;
|
|
163
163
|
name: string;
|
|
@@ -166,5 +166,5 @@ export declare class ClientScopes extends Resource<{
|
|
|
166
166
|
realm?: string;
|
|
167
167
|
id: string;
|
|
168
168
|
name: string;
|
|
169
|
-
}): Promise<ProtocolMapperRepresentation>;
|
|
169
|
+
}): Promise<ProtocolMapperRepresentation | undefined>;
|
|
170
170
|
}
|
|
@@ -225,14 +225,13 @@ var ClientScopes = (function (_super) {
|
|
|
225
225
|
}
|
|
226
226
|
ClientScopes.prototype.findOneByName = function (payload) {
|
|
227
227
|
return __awaiter(this, void 0, void 0, function () {
|
|
228
|
-
var allScopes
|
|
228
|
+
var allScopes;
|
|
229
229
|
return __generator(this, function (_a) {
|
|
230
230
|
switch (_a.label) {
|
|
231
231
|
case 0: return [4, this.find(__assign({}, (payload.realm ? { realm: payload.realm } : {})))];
|
|
232
232
|
case 1:
|
|
233
233
|
allScopes = _a.sent();
|
|
234
|
-
|
|
235
|
-
return [2, scope ? scope : null];
|
|
234
|
+
return [2, allScopes.find(function (item) { return item.name === payload.name; })];
|
|
236
235
|
}
|
|
237
236
|
});
|
|
238
237
|
});
|
|
@@ -258,14 +257,13 @@ var ClientScopes = (function (_super) {
|
|
|
258
257
|
};
|
|
259
258
|
ClientScopes.prototype.findProtocolMapperByName = function (payload) {
|
|
260
259
|
return __awaiter(this, void 0, void 0, function () {
|
|
261
|
-
var allProtocolMappers
|
|
260
|
+
var allProtocolMappers;
|
|
262
261
|
return __generator(this, function (_a) {
|
|
263
262
|
switch (_a.label) {
|
|
264
263
|
case 0: return [4, this.listProtocolMappers(__assign({ id: payload.id }, (payload.realm ? { realm: payload.realm } : {})))];
|
|
265
264
|
case 1:
|
|
266
265
|
allProtocolMappers = _a.sent();
|
|
267
|
-
|
|
268
|
-
return [2, protocolMapper ? protocolMapper : null];
|
|
266
|
+
return [2, allProtocolMappers.find(function (mapper) { return mapper.name === payload.name; })];
|
|
269
267
|
}
|
|
270
268
|
});
|
|
271
269
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientScopes.js","sourceRoot":"","sources":["../../src/resources/clientScopes.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,wDAAkC;AAMlC;IAAkC,gCAA0B;
|
|
1
|
+
{"version":3,"file":"clientScopes.js","sourceRoot":"","sources":["../../src/resources/clientScopes.ts"],"names":[],"mappings":"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"}
|