@brimble/models 3.8.189 → 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.
@@ -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.189",
3
+ "version": "3.8.190",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",