@brimble/models 3.8.98 → 3.8.99

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.
@@ -105,6 +105,14 @@ const domainSchema = new mongoose_1.Schema({
105
105
  default: null,
106
106
  },
107
107
  is_pending_verification: Boolean,
108
+ wildcard_enabled: {
109
+ type: Boolean,
110
+ default: false,
111
+ },
112
+ wildcard_verified: {
113
+ type: Boolean,
114
+ default: false,
115
+ },
108
116
  redirect: {
109
117
  url: String,
110
118
  status: Number,
@@ -27,6 +27,8 @@ export interface IDomain extends Document {
27
27
  project_environment?: IProjectEnvironment;
28
28
  is_pending_verification: boolean;
29
29
  last_expiry_notification_at?: Date | null;
30
+ wildcard_enabled: boolean;
31
+ wildcard_verified: boolean;
30
32
  redirect?: {
31
33
  url: string;
32
34
  status?: 301 | 302 | 307 | 308;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.98",
3
+ "version": "3.8.99",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",