File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,6 @@ export type SubscriptionStatus = 'active' | 'trialing' | 'past_due' | 'deleted';
216
216
type AppData = {
217
217
email : string ;
218
218
subscription_status ?: SubscriptionStatus ;
219
- subscription_id ?: number ;
220
219
subscription_plan_id ?: number ;
221
220
subscription_expiry ?: number ;
222
221
update_url ?: string ;
@@ -227,7 +226,6 @@ type AppData = {
227
226
}
228
227
229
228
type SubscriptionData = {
230
- id : number ;
231
229
status : SubscriptionStatus ;
232
230
plan : SKU ;
233
231
expiry : Date ;
@@ -292,7 +290,6 @@ function parseUserData(userJwt: string | null): User {
292
290
} ) ;
293
291
294
292
const subscription = {
295
- id : appData . subscription_id ,
296
293
status : appData . subscription_status ,
297
294
plan : getSKU ( appData . subscription_plan_id ) ,
298
295
expiry : appData . subscription_expiry ? new Date ( appData . subscription_expiry ) : undefined ,
You can’t perform that action at this time.
0 commit comments