UNPKG

@mintlify/models

Version:

Mintlify models

20 lines (19 loc) 739 B
import { GithubInstallationType } from '../types/githubInstallationType.js'; import { GitlabInstallationType } from '../types/gitlabInstallationType.js'; import { GrowthDataType } from '../types/growthDataType.js'; import { OrgEntitlements } from './orgEntitlements.js'; export type OrgType = { name: string; stytchOrgId: string; githubInstallations: GithubInstallationType[]; gitlabInstallations: GitlabInstallationType[]; plan?: 'trial' | 'startup' | 'growth' | 'enterprise'; createdAt?: Date | string; growthData?: GrowthDataType; slug: string; stripe?: { customerId: string; }; entitlements?: OrgEntitlements; }; export type StaticPropsOrgType = Pick<OrgType, 'plan' | 'createdAt'>;