diff --git a/src/limits/plans.ts b/src/limits/plans.ts new file mode 100644 index 0000000..41bd0e1 --- /dev/null +++ b/src/limits/plans.ts @@ -0,0 +1,26 @@ +export const planLimits = { + personal: { + LICENSES: 100, + MEMBERS: 1, + GROUPS: 3, + KEYS: 1, + META: 3, + PERMISSIONS: 10 + }, + plus: { + LICENSES: 5000, + MEMBERS: 10, + GROUPS: 15, + KEYS: 10, + META: 10, + PERMISSIONS: 50 + }, + pro: { + LICENSES: 50000, + MEMBERS: 20, + GROUPS: 40, + KEYS: 20, + META: 20, + PERMISSIONS: 100 + } +} \ No newline at end of file