diff options
Diffstat (limited to 'packages/shared/source/index.ts')
| -rw-r--r-- | packages/shared/source/index.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/shared/source/index.ts b/packages/shared/source/index.ts index cf3a124..335a74e 100644 --- a/packages/shared/source/index.ts +++ b/packages/shared/source/index.ts @@ -13,6 +13,7 @@ export const TIER_LIMITS = { allowsManualRefresh: false, allowsApiAccess: false, allowsWebhooks: false, + allowsOfflineReading: false, }, pro: { maximumFeeds: 200, @@ -26,6 +27,7 @@ export const TIER_LIMITS = { allowsManualRefresh: true, allowsApiAccess: false, allowsWebhooks: false, + allowsOfflineReading: true, }, developer: { maximumFeeds: 500, @@ -39,6 +41,7 @@ export const TIER_LIMITS = { allowsManualRefresh: true, allowsApiAccess: true, allowsWebhooks: true, + allowsOfflineReading: true, }, } as const |