From 651902c97dd7e413ef0f56ad32176611fc2fb80d Mon Sep 17 00:00:00 2001 From: wangsijie Date: Tue, 21 Nov 2023 11:35:07 +0800 Subject: [PATCH] refactor(schemas): add js-doc to tenant tag enum (#4909) * refactor(schemas): add jsdoc to tenant tag enum * chore: code review fix Co-authored-by: Charles Zhao * chore: code review fix Co-authored-by: Charles Zhao --------- Co-authored-by: Charles Zhao --- packages/schemas/src/types/tenant.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/schemas/src/types/tenant.ts b/packages/schemas/src/types/tenant.ts index 4f8dc2fc9..2ead693ad 100644 --- a/packages/schemas/src/types/tenant.ts +++ b/packages/schemas/src/types/tenant.ts @@ -1,5 +1,8 @@ export enum TenantTag { + /* Development tenants are free to use but are not meant to be used as production environment */ Development = 'development', + /* @deprecated */ Staging = 'staging', + /* A production tenant must have an associated subscription plan, even if it's a free plan */ Production = 'production', }