File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @squarecloud/api-types " : patch
3+ ---
4+
5+ Added ` advanced ` and ` enterprise-24 ` plans
Original file line number Diff line number Diff line change 1+ ---
2+ " @squarecloud/api-types " : patch
3+ ---
4+
5+ Removed ` student ` and ` enterprise-16 ` plans
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { ApplicationLanguage } from "./application";
66 * @see https://docs.squarecloud.app/api-reference/endpoint/users/me
77 */
88export type EnterprisePlanSizes =
9- | 16
9+ | 24
1010 | 32
1111 | 48
1212 | 64
@@ -31,16 +31,16 @@ export type EnterprisePlanSizes =
3131 */
3232type UserPlanName =
3333 | "free"
34- | "student"
3534 | "hobby"
3635 | "standard"
36+ | "advanced"
3737 | "pro"
3838 | `enterprise-${EnterprisePlanSizes } `;
3939export const UserPlanName = {
4040 Free : "free" ,
41- Student : "student" ,
4241 Hobby : "hobby" ,
4342 Standard : "standard" ,
43+ Advanced : "advanced" ,
4444 Pro : "pro" ,
4545 Enterprise : ( size : EnterprisePlanSizes ) => `enterprise-${ size } ` ,
4646} ;
You can’t perform that action at this time.
0 commit comments