@dritelabs/accounts-protobuf
Version:
Accounts database module
23 lines (21 loc) • 612 B
TypeScript
interface CreateAuthorizationCodeRequest {
'aud'?: (string)[];
'clientId'?: (string);
'codeChallenge'?: (string);
'codeChallengeMethod'?: (string);
'exp'?: (string);
'redirectUri'?: (string);
'sub'?: (string);
'scope'?: (string);
}
interface CreateAuthorizationCodeRequest__Output {
'aud': (string)[];
'clientId': (string);
'codeChallenge': (string);
'codeChallengeMethod': (string);
'exp': (string);
'redirectUri': (string);
'sub': (string);
'scope': (string);
}
export { CreateAuthorizationCodeRequest, CreateAuthorizationCodeRequest__Output };