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 +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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:
|
|
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:
|
|
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
|