@brimble/models 3.1.5 → 3.1.7
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/enum/index.d.ts +1 -0
- package/dist/enum/index.js +1 -0
- package/dist/plan_configuration.js +3 -0
- package/dist/types/plan_configuration.d.ts +3 -0
- package/enum/index.ts +1 -0
- package/package.json +1 -1
- package/plan_configuration.ts +3 -0
- package/types/plan_configuration.ts +3 -0
- package/.turbo/turbo-build.log +0 -1
- package/brimble.json +0 -3
package/dist/enum/index.d.ts
CHANGED
package/dist/enum/index.js
CHANGED
|
@@ -77,6 +77,7 @@ var SUBSCRIPTION_PLAN_TYPE;
|
|
|
77
77
|
SUBSCRIPTION_PLAN_TYPE["DeveloperPlan"] = "DEVELOPER_PLAN";
|
|
78
78
|
SUBSCRIPTION_PLAN_TYPE["TeamPlan"] = "TEAM_PLAN";
|
|
79
79
|
SUBSCRIPTION_PLAN_TYPE["DomainPlan"] = "DOMAIN_PLAN";
|
|
80
|
+
SUBSCRIPTION_PLAN_TYPE["HackerPlan"] = "HACKER_PLAN";
|
|
80
81
|
SUBSCRIPTION_PLAN_TYPE["LiscensePlan"] = "LISCENSE_PLAN";
|
|
81
82
|
})(SUBSCRIPTION_PLAN_TYPE = exports.SUBSCRIPTION_PLAN_TYPE || (exports.SUBSCRIPTION_PLAN_TYPE = {}));
|
|
82
83
|
var OAUTH_PERMISSIONS;
|
|
@@ -26,5 +26,8 @@ const PlanConfigurationSchema = new mongoose_1.Schema({
|
|
|
26
26
|
cpu: { type: Number, required: true },
|
|
27
27
|
tokens: { type: Number, required: false },
|
|
28
28
|
token_request: { type: Number, required: false },
|
|
29
|
+
view_metrics: { type: Boolean, required: false, default: false },
|
|
30
|
+
custom_domain: { type: Boolean, required: true, default: false },
|
|
31
|
+
can_deploy_all_applications: { type: Boolean, required: true, default: false },
|
|
29
32
|
}, { timestamps: true });
|
|
30
33
|
exports.default = (0, mongoose_1.model)("PlanConfigurations", PlanConfigurationSchema, "plan_configurations");
|
package/enum/index.ts
CHANGED
package/package.json
CHANGED
package/plan_configuration.ts
CHANGED
|
@@ -27,6 +27,9 @@ const PlanConfigurationSchema = new Schema<IPlanConfiguration>(
|
|
|
27
27
|
cpu: { type: Number, required: true },
|
|
28
28
|
tokens: { type: Number, required: false },
|
|
29
29
|
token_request: { type: Number, required: false },
|
|
30
|
+
view_metrics: { type: Boolean, required: false, default: false },
|
|
31
|
+
custom_domain: { type: Boolean, required: true, default: false },
|
|
32
|
+
can_deploy_all_applications: { type: Boolean, required: true, default: false },
|
|
30
33
|
},
|
|
31
34
|
{ timestamps: true },
|
|
32
35
|
);
|
package/.turbo/turbo-build.log
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$ rm -rf dist && tsc -p .
|
package/brimble.json
DELETED