@brimble/models 3.8.188 → 3.8.190

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.
@@ -169,7 +169,8 @@ export declare enum SUBSCRIPTION_PLAN_TYPE {
169
169
  TeamPlan = "TEAM_PLAN",
170
170
  DomainPlan = "DOMAIN_PLAN",
171
171
  HackerPlan = "HACKER_PLAN",
172
- LiscensePlan = "LISCENSE_PLAN"
172
+ LiscensePlan = "LISCENSE_PLAN",
173
+ EmailForwardingPlan = "EMAIL_FORWARDING_PLAN"
173
174
  }
174
175
  export declare enum OAUTH_PERMISSIONS {
175
176
  READ_USER = "read_user",
@@ -201,6 +201,7 @@ var SUBSCRIPTION_PLAN_TYPE;
201
201
  SUBSCRIPTION_PLAN_TYPE["DomainPlan"] = "DOMAIN_PLAN";
202
202
  SUBSCRIPTION_PLAN_TYPE["HackerPlan"] = "HACKER_PLAN";
203
203
  SUBSCRIPTION_PLAN_TYPE["LiscensePlan"] = "LISCENSE_PLAN";
204
+ SUBSCRIPTION_PLAN_TYPE["EmailForwardingPlan"] = "EMAIL_FORWARDING_PLAN";
204
205
  })(SUBSCRIPTION_PLAN_TYPE || (exports.SUBSCRIPTION_PLAN_TYPE = SUBSCRIPTION_PLAN_TYPE = {}));
205
206
  var OAUTH_PERMISSIONS;
206
207
  (function (OAUTH_PERMISSIONS) {
@@ -283,6 +283,10 @@ const projectSchema = new mongoose_1.Schema({
283
283
  type: String,
284
284
  default: "0 0 * * * *",
285
285
  },
286
+ backup_timezone: {
287
+ type: String,
288
+ default: "UTC",
289
+ },
286
290
  free_tier_expires_at: {
287
291
  type: Date,
288
292
  default: null,
@@ -78,6 +78,7 @@ export interface IProject extends Document {
78
78
  backupEnabled: boolean;
79
79
  backup_mode: "automatic" | "manual";
80
80
  backup_schedule: string;
81
+ backup_timezone: string;
81
82
  http2: boolean;
82
83
  free_tier_expires_at?: Date | null;
83
84
  free_tier_expiry_notified_at?: Date | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.188",
3
+ "version": "3.8.190",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",