import { GeneratedSchema } from './../foundations/index.js'; /** * The user scopes (permissions) assigned to an application * * @remarks This is a type for database creation. * @see {@link ApplicationUserConsentUserScope} for the original type. */ export type CreateApplicationUserConsentUserScope = { tenantId?: string; /** The globally unique identifier of the application. */ applicationId: string; /** The unique UserScope enum value @see (@logto/core-kit/open-id.js) for more details */ userScope: string; }; /** The user scopes (permissions) assigned to an application */ export type ApplicationUserConsentUserScope = { tenantId: string; /** The globally unique identifier of the application. */ applicationId: string; /** The unique UserScope enum value @see (@logto/core-kit/open-id.js) for more details */ userScope: string; }; export type ApplicationUserConsentUserScopeKeys = 'tenantId' | 'applicationId' | 'userScope'; export declare const ApplicationUserConsentUserScopes: GeneratedSchema;