@@ -108,10 +108,12 @@ export const ABSOLUTE_MAX_USAGE = MAX_PARALLEL_WORKSPACES * 24 * 31;
108
108
* - Unlimited (35/39)
109
109
* - v4:
110
110
* - Professional Open Source (free)
111
+ * - v5:
112
+ * - Unleashed: rebranded Unlimited
111
113
*/
112
114
export namespace Plans {
113
115
/**
114
- * THE default plan (v1): 100h hours for public repos
116
+ * The old default plan (v1): 100h hours for public repos
115
117
*/
116
118
export const FREE : Plan = {
117
119
chargebeeId : 'free' ,
@@ -158,49 +160,49 @@ export namespace Plans {
158
160
} ;
159
161
160
162
/**
161
- * The 'Student Unlimited ' plans were introduced to give students access to the highly-priced unlimited plans.
163
+ * The 'Student Unleashed ' plans were introduced to give students access to the highly-priced unlimited plans.
162
164
*/
163
165
export const PROFESSIONAL_STUDENT_EUR : Plan = {
164
166
chargebeeId : 'professional-student-eur' ,
165
167
type : 'student' ,
166
- name : 'Student Unlimited ' ,
168
+ name : 'Student Unleashed ' ,
167
169
currency : 'EUR' ,
168
170
pricePerMonth : 8 ,
169
171
hoursPerMonth : 'unlimited'
170
172
} ;
171
173
172
174
/**
173
- * The 'Student Unlimited ' plans were introduced to give students access to the highly-priced unlimited plans.
175
+ * The 'Student Unleashed ' plans were introduced to give students access to the highly-priced unlimited plans.
174
176
*/
175
177
export const PROFESSIONAL_STUDENT_USD : Plan = {
176
178
chargebeeId : 'professional-student-usd' ,
177
179
type : 'student' ,
178
- name : 'Student Unlimited ' ,
180
+ name : 'Student Unleashed ' ,
179
181
currency : 'USD' ,
180
182
pricePerMonth : 9 ,
181
183
hoursPerMonth : 'unlimited'
182
184
} ;
183
185
184
186
/**
185
- * The 'Student Unlimited ' plans were introduced to give students access to the highly-priced unlimited plans.
187
+ * The 'Student Unleashed ' plans were introduced to give students access to the highly-priced unlimited plans.
186
188
*/
187
189
export const TEAM_PROFESSIONAL_STUDENT_EUR : Plan = {
188
190
chargebeeId : 'team-professional-student-eur' ,
189
191
type : 'student' ,
190
- name : 'Team Student Unlimited ' ,
192
+ name : 'Team Student Unleashed ' ,
191
193
team : true ,
192
194
currency : 'EUR' ,
193
195
pricePerMonth : 8 ,
194
196
hoursPerMonth : 'unlimited'
195
197
} ;
196
198
197
199
/**
198
- * The 'Student Unlimited ' plans were introduced to give students access to the highly-priced unlimited plans.
200
+ * The 'Student Unleashed ' plans were introduced to give students access to the highly-priced unlimited plans.
199
201
*/
200
202
export const TEAM_PROFESSIONAL_STUDENT_USD : Plan = {
201
203
chargebeeId : 'team-professional-student-usd' ,
202
204
type : 'student' ,
203
- name : 'Team Student Unlimited ' ,
205
+ name : 'Team Student Unleashed ' ,
204
206
team : true ,
205
207
currency : 'USD' ,
206
208
pricePerMonth : 9 ,
@@ -263,7 +265,7 @@ export namespace Plans {
263
265
264
266
/**
265
267
* This is the 'new' Professional plan (v3), which is meant to fit well between Personal (9$/8€) on the left and
266
- * Unlimited (39$/35€) on the right.
268
+ * Unleashed (39$/35€) on the right.
267
269
*/
268
270
export const PROFESSIONAL_NEW_EUR : Plan = {
269
271
chargebeeId : 'professional-new-eur' ,
@@ -276,7 +278,7 @@ export namespace Plans {
276
278
277
279
/**
278
280
* This is the 'new' Professional plan (v3), which is meant to fit well between Personal (9$/8€) on the left and
279
- * Unlimited (39$/35€) on the right.
281
+ * Unleashed (39$/35€) on the right.
280
282
*/
281
283
export const PROFESSIONAL_NEW_USD : Plan = {
282
284
chargebeeId : 'professional-new-usd' ,
@@ -289,7 +291,7 @@ export namespace Plans {
289
291
290
292
/**
291
293
* This is the 'new' Team Professional plan (v3), which is meant to fit well between Personal (9$/8€) on the left and
292
- * Unlimited (39$/35€) on the right.
294
+ * Unleashed (39$/35€) on the right.
293
295
*/
294
296
export const TEAM_PROFESSIONAL_NEW_EUR : Plan = {
295
297
chargebeeId : 'team-professional-new-eur' ,
@@ -303,7 +305,7 @@ export namespace Plans {
303
305
304
306
/**
305
307
* This is the 'new' Team Professional plan (v3), which is meant to fit well between Personal (9$/8€) on the left and
306
- * Unlimited (39$/35€) on the right.
308
+ * Unleashed (39$/35€) on the right.
307
309
*/
308
310
export const TEAM_PROFESSIONAL_NEW_USD : Plan = {
309
311
chargebeeId : 'team-professional-new-usd' ,
@@ -316,20 +318,20 @@ export namespace Plans {
316
318
} ;
317
319
318
320
/**
319
- * This is the 'Unlimited ' plan (v1, rebranded v2)
321
+ * This is the 'Unleashed ' plan (v1, rebranded v2, v5 )
320
322
* It was originally introduced as 'Professional', and we cannot update the ids, so it stays that way in the code.
321
323
*/
322
324
export const PROFESSIONAL_EUR : Plan = {
323
325
chargebeeId : 'professional-eur' ,
324
326
type : 'professional' ,
325
- name : 'Unlimited ' ,
327
+ name : 'Unleashed ' ,
326
328
currency : 'EUR' ,
327
329
pricePerMonth : 35 ,
328
330
hoursPerMonth : 'unlimited'
329
331
} ;
330
332
331
333
/**
332
- * This is the 'Unlimited ' plan (v1, rebranded v2)
334
+ * This is the 'Unleashed ' plan (v1, rebranded v2, v5 )
333
335
* It was originally introduced as 'Professional', and we cannot update the ids, so it stays that way in the code.
334
336
*/
335
337
export const PROFESSIONAL_USD : Plan = {
@@ -338,34 +340,34 @@ export namespace Plans {
338
340
githubPlanNumber : 3 ,
339
341
340
342
type : 'professional' ,
341
- name : 'Unlimited ' ,
343
+ name : 'Unleashed ' ,
342
344
currency : 'USD' ,
343
345
pricePerMonth : 39 ,
344
346
hoursPerMonth : 'unlimited'
345
347
} ;
346
348
347
349
/**
348
- * This is the Team-'Unlimited ' plan (v1, rebranded v2)
350
+ * This is the Team-'Unleashed ' plan (v1, rebranded v2, v5 )
349
351
* It was originally introduced as 'Professional', and we cannot update the ids, so it stays that way in the code.
350
352
*/
351
353
export const TEAM_PROFESSIONAL_USD : Plan = {
352
354
chargebeeId : 'team-professional-usd' ,
353
355
type : 'professional' ,
354
- name : 'Team Unlimited ' ,
356
+ name : 'Team Unleashed ' ,
355
357
currency : 'USD' ,
356
358
team : true ,
357
359
pricePerMonth : 39 ,
358
360
hoursPerMonth : 'unlimited'
359
361
} ;
360
362
361
363
/**
362
- * This is the Team-'Unlimited ' plan (v1, rebranded v2)
364
+ * This is the Team-'Unleashed ' plan (v1, rebranded v2, v5 )
363
365
* It was originally introduced as 'Professional', and we cannot update the ids, so it stays that way in the code.
364
366
*/
365
367
export const TEAM_PROFESSIONAL_EUR : Plan = {
366
368
chargebeeId : 'team-professional-eur' ,
367
369
type : 'professional' ,
368
- name : 'Team Unlimited ' ,
370
+ name : 'Team Unleashed ' ,
369
371
currency : 'EUR' ,
370
372
team : true ,
371
373
pricePerMonth : 35 ,
@@ -615,7 +617,7 @@ export namespace Plans {
615
617
{ title : '30min Timeout' , tooltip : 'Workspaces without user activity are stopped after 30 minutes' }
616
618
] ;
617
619
618
- // Unlimited
620
+ // Unleashed
619
621
case "professional" :
620
622
return [
621
623
{ title : 'Private & Public repos' } ,
0 commit comments