import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between organizations, organization roles, and applications. A relation means that an application has a role in an organization. * * @remarks This is a type for database creation. * @see {@link OrganizationRoleApplicationRelation} for the original type. */ export type CreateOrganizationRoleApplicationRelation = { tenantId?: string; organizationId: string; organizationRoleId: string; applicationId: string; }; /** The relations between organizations, organization roles, and applications. A relation means that an application has a role in an organization. */ export type OrganizationRoleApplicationRelation = { tenantId: string; organizationId: string; organizationRoleId: string; applicationId: string; }; export type OrganizationRoleApplicationRelationKeys = 'tenantId' | 'organizationId' | 'organizationRoleId' | 'applicationId'; export declare const OrganizationRoleApplicationRelations: GeneratedSchema;