asfur 1.0.136 → 1.0.137

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -392,7 +392,7 @@ exports.MongoTierSchema = new mongoose_1.Schema({
392
392
  description: { type: String },
393
393
  features: {
394
394
  events: {
395
- has_access: { type: Boolean, default: false }, // true if the tier has access to events data
395
+ has_access: { type: Boolean, default: true }, // true if the tier has access to events data
396
396
  },
397
397
  ask: {
398
398
  has_access: { type: Boolean, default: false },
package/index.ts CHANGED
@@ -459,7 +459,7 @@ export const MongoTierSchema = new Schema(
459
459
  description: { type: String }, // optional description of the tier
460
460
  features: {
461
461
  events: {
462
- has_access: { type: Boolean, default: false }, // true if the tier has access to events data
462
+ has_access: { type: Boolean, default: true }, // true if the tier has access to events data
463
463
  },
464
464
  ask: {
465
465
  has_access: { type: Boolean, default: false }, // true if the tier has access to ask feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asfur",
3
- "version": "1.0.136",
3
+ "version": "1.0.137",
4
4
  "description": "SDK for interacting with the Asfur API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",