UNPKG

@dritelabs/accounts-protobuf

Version:

Accounts database module

43 lines (40 loc) 1.78 kB
import * as grpc from '@grpc/grpc-js'; import { ProtoGrpcType } from './protobuf/accounts'; export { AccountHandlers } from './protobuf/accounts/Account'; import '@grpc/proto-loader'; import './protobuf/jwk/AddJWKToClientRequest'; import './protobuf/core/PublicJWK'; import './protobuf/client/AuthenticateClientRequest'; import './protobuf/user/AuthenticateUserRequest'; import './protobuf/user/AuthenticateUserResponse'; import './protobuf/core/AuthorizationServerMetadata'; import './protobuf/core/Client'; import './protobuf/core/JWKS'; import './protobuf/authorization_code/CreateAuthorizationCodeRequest'; import './protobuf/authorization_code/CreateAuthorizationCodeResponse'; import './protobuf/client/CreateClientRequest'; import './protobuf/jwk/CreateJWKPairResponse'; import './protobuf/core/PrivateJWK'; import './protobuf/token/CreateTokenRequest'; import './protobuf/token/CreateTokenResponse'; import './protobuf/user/CreateUserRequest'; import './protobuf/core/DeleteRequest'; import './protobuf/core/Empty'; import './protobuf/core/GetRequest'; import './protobuf/token/InvalidateTokenRequest'; import './protobuf/token/InvalidateTokenResponse'; import './protobuf/client/ListClientsResponse'; import './protobuf/core/ListRequest'; import './protobuf/scope/ListScopesResponse'; import './protobuf/core/Scope'; import './protobuf/client/UpdateClientRequest'; import './protobuf/client/UpdateClientSecretRequest'; import './protobuf/core/User'; import './protobuf/core/Address'; import './protobuf/core/ClientApproval'; import './protobuf/core/Profile'; import './protobuf/token/ValidateTokenRequest'; import './protobuf/token/ValidateTokenResponse'; declare const proto: ProtoGrpcType; declare function createServer(): grpc.Server; export { createServer, proto };