We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f9b9d6 commit c8896b7Copy full SHA for c8896b7
1 file changed
packages/javascript/src/__legacy__/models/client-config.ts
@@ -22,6 +22,10 @@ import {OIDCEndpoints} from '../../models/oidc-endpoints';
22
export interface DefaultAuthClientConfig {
23
afterSignInUrl: string;
24
afterSignOutUrl?: string;
25
+ /**
26
+ * Application UUID for the client.
27
+ */
28
+ applicationId?: string;
29
clientHost?: string;
30
clientId?: string;
31
clientSecret?: string;
@@ -67,10 +71,6 @@ export interface DefaultAuthClientConfig {
67
71
validateIssuer?: boolean;
68
72
};
69
73
70
- /**
- * Application UUID for the client.
- */
- applicationId?: string;
74
}
75
76
export interface WellKnownAuthClientConfig extends DefaultAuthClientConfig {
0 commit comments