mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02:00
63c20826da
Redeploy AI add-on PRs GitOrigin-RevId: d234ac0862947e9ea8926055ad205e32a456dd2e
11 lines
463 B
TypeScript
11 lines
463 B
TypeScript
export const AI_STANDALONE_PLAN_CODE = 'assistant'
|
|
export const AI_ADD_ON_CODE = 'assistant'
|
|
// we dont want translations on plan or add-on names
|
|
export const ADD_ON_NAME = "Error Assist"
|
|
export const AI_STANDALONE_PLAN_NAME = "Overleaf Free"
|
|
export const AI_STANDALONE_ANNUAL_PLAN_CODE = 'assistant-annual'
|
|
|
|
export function isStandaloneAiPlanCode(planCode: string) {
|
|
return planCode === AI_STANDALONE_PLAN_CODE || planCode === AI_STANDALONE_ANNUAL_PLAN_CODE
|
|
}
|