mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
31 lines
682 B
TypeScript
31 lines
682 B
TypeScript
import type { TLimitsSchema } from './schema';
|
|
|
|
export const FREE_PLAN_LIMITS: TLimitsSchema = {
|
|
documents: 5,
|
|
recipients: 10,
|
|
directTemplates: 3,
|
|
};
|
|
|
|
export const INACTIVE_PLAN_LIMITS: TLimitsSchema = {
|
|
documents: 0,
|
|
recipients: 0,
|
|
directTemplates: 0,
|
|
};
|
|
|
|
export const PAID_PLAN_LIMITS: TLimitsSchema = {
|
|
documents: Infinity,
|
|
recipients: Infinity,
|
|
directTemplates: Infinity,
|
|
};
|
|
|
|
export const SELFHOSTED_PLAN_LIMITS: TLimitsSchema = {
|
|
documents: Infinity,
|
|
recipients: Infinity,
|
|
directTemplates: Infinity,
|
|
};
|
|
|
|
/**
|
|
* Used as an initial value for the frontend before values are loaded from the server.
|
|
*/
|
|
export const DEFAULT_MINIMUM_ENVELOPE_ITEM_COUNT = 5;
|