import { GeneratedSchema } from './../foundations/index.js'; /** * The relations between organizations and applications. It indicates membership of applications in organizations. For now only machine-to-machine applications are supported. * * @remarks This is a type for database creation. * @see {@link OrganizationApplicationRelation} for the original type. */ export type CreateOrganizationApplicationRelation = { tenantId?: string; organizationId: string; applicationId: string; }; /** The relations between organizations and applications. It indicates membership of applications in organizations. For now only machine-to-machine applications are supported. */ export type OrganizationApplicationRelation = { tenantId: string; organizationId: string; applicationId: string; }; export type OrganizationApplicationRelationKeys = 'tenantId' | 'organizationId' | 'applicationId'; export declare const OrganizationApplicationRelations: GeneratedSchema;