import { GeneratedSchema } from './../foundations/index.js'; /** * The organization resource scopes (permissions) assigned to an application's consent request. This is different from the application_user_consent_resource_scopes table, scopes in this table is granted by the organization roles. * * @remarks This is a type for database creation. * @see {@link ApplicationUserConsentOrganizationResourceScope} for the original type. */ export type CreateApplicationUserConsentOrganizationResourceScope = { tenantId?: string; /** The globally unique identifier of the application. */ applicationId: string; /** The globally unique identifier of the resource scope. */ scopeId: string; }; /** The organization resource scopes (permissions) assigned to an application's consent request. This is different from the application_user_consent_resource_scopes table, scopes in this table is granted by the organization roles. */ export type ApplicationUserConsentOrganizationResourceScope = { tenantId: string; /** The globally unique identifier of the application. */ applicationId: string; /** The globally unique identifier of the resource scope. */ scopeId: string; }; export type ApplicationUserConsentOrganizationResourceScopeKeys = 'tenantId' | 'applicationId' | 'scopeId'; export declare const ApplicationUserConsentOrganizationResourceScopes: GeneratedSchema;