@@ -130,7 +130,7 @@ export async function seed() {
130130 includedItems : {
131131 [ ITEM_IDS . seats ] : { quantity : PLAN_LIMITS . free . seats , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
132132 [ ITEM_IDS . authUsers ] : { quantity : PLAN_LIMITS . free . authUsers , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
133- [ ITEM_IDS . emailsPerMonth ] : { quantity : PLAN_LIMITS . free . emailsPerMonth , repeat : [ 1 , "month" ] as const , expires : "when-repeated" as const } ,
133+ [ ITEM_IDS . emailsPerMonth ] : { quantity : PLAN_LIMITS . free . emailsPerMonth , repeat : [ 1 , "month" ] as any , expires : "when-repeated" as const } ,
134134 [ ITEM_IDS . analyticsTimeoutSeconds ] : { quantity : PLAN_LIMITS . free . analyticsTimeoutSeconds , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
135135 [ ITEM_IDS . analyticsEvents ] : { quantity : PLAN_LIMITS . free . analyticsEvents , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
136136 } ,
@@ -151,7 +151,7 @@ export async function seed() {
151151 includedItems : {
152152 [ ITEM_IDS . seats ] : { quantity : PLAN_LIMITS . team . seats , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
153153 [ ITEM_IDS . authUsers ] : { quantity : PLAN_LIMITS . team . authUsers , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
154- [ ITEM_IDS . emailsPerMonth ] : { quantity : PLAN_LIMITS . team . emailsPerMonth , repeat : [ 1 , "month" ] as const , expires : "when-repeated" as const } ,
154+ [ ITEM_IDS . emailsPerMonth ] : { quantity : PLAN_LIMITS . team . emailsPerMonth , repeat : [ 1 , "month" ] as any , expires : "when-repeated" as const } ,
155155 [ ITEM_IDS . analyticsTimeoutSeconds ] : { quantity : PLAN_LIMITS . team . analyticsTimeoutSeconds , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
156156 [ ITEM_IDS . analyticsEvents ] : { quantity : PLAN_LIMITS . team . analyticsEvents , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
157157 } ,
@@ -172,7 +172,7 @@ export async function seed() {
172172 includedItems : {
173173 [ ITEM_IDS . seats ] : { quantity : PLAN_LIMITS . growth . seats , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
174174 [ ITEM_IDS . authUsers ] : { quantity : PLAN_LIMITS . growth . authUsers , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
175- [ ITEM_IDS . emailsPerMonth ] : { quantity : PLAN_LIMITS . growth . emailsPerMonth , repeat : [ 1 , "month" ] as const , expires : "when-repeated" as const } ,
175+ [ ITEM_IDS . emailsPerMonth ] : { quantity : PLAN_LIMITS . growth . emailsPerMonth , repeat : [ 1 , "month" ] as any , expires : "when-repeated" as const } ,
176176 [ ITEM_IDS . analyticsTimeoutSeconds ] : { quantity : PLAN_LIMITS . growth . analyticsTimeoutSeconds , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
177177 [ ITEM_IDS . analyticsEvents ] : { quantity : PLAN_LIMITS . growth . analyticsEvents , repeat : "never" as const , expires : "when-purchase-expires" as const } ,
178178 } ,
0 commit comments