File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
apps/api/src/users/config Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,23 @@ export const plansConfig: Record<string, PlanConfig> = {
14
14
free : {
15
15
key : 'free' ,
16
16
maxOperations : 10000 ,
17
- maxActiveWorkflows : 10 ,
17
+ maxActiveWorkflows : 5 ,
18
18
minPollingInterval : 60 * 15 ,
19
19
features : {
20
20
executeWorkflowOnError : false ,
21
21
} ,
22
22
} ,
23
- prod_NYG90VSEfU0TfQ : {
23
+ prod_NbsBYZA9BxFF7r : {
24
24
key : 'starter' ,
25
+ maxOperations : 30000 ,
26
+ maxActiveWorkflows : 25 ,
27
+ minPollingInterval : 60 * 5 ,
28
+ features : {
29
+ executeWorkflowOnError : true ,
30
+ } ,
31
+ } ,
32
+ prod_NYG90VSEfU0TfQ : {
33
+ key : 'core' ,
25
34
maxOperations : 1e5 ,
26
35
maxActiveWorkflows : Infinity ,
27
36
minPollingInterval : 60 ,
@@ -70,6 +79,9 @@ export const plansConfig: Record<string, PlanConfig> = {
70
79
// Plans on Stripe test mode
71
80
if ( process . env . NODE_ENV === 'development' ) {
72
81
// starter
82
+ plansConfig [ 'prod_NbsFKhWJ6PMBpx' ] = plansConfig [ 'prod_NbsBYZA9BxFF7r' ]
83
+ delete plansConfig [ 'prod_NbsBYZA9BxFF7r' ]
84
+ // core
73
85
plansConfig [ 'prod_NXQOvZowLlwuaH' ] = plansConfig [ 'prod_NYG90VSEfU0TfQ' ]
74
86
delete plansConfig [ 'prod_NYG90VSEfU0TfQ' ]
75
87
// pro
You can’t perform that action at this time.
0 commit comments