@brimble/models 1.7.7 → 1.7.8

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.
@@ -63,6 +63,9 @@ const domainSchema = new mongoose_1.Schema({
63
63
  trigger_created_at: {
64
64
  type: String
65
65
  },
66
+ job_identifier: {
67
+ type: String
68
+ },
66
69
  dns: [
67
70
  {
68
71
  ref: "Dns",
@@ -40,6 +40,9 @@ const subscriptionPlanSchema = new mongoose_1.Schema({
40
40
  trigger_created_at: {
41
41
  type: String
42
42
  },
43
+ job_identifier: {
44
+ type: String
45
+ }
43
46
  }, {
44
47
  timestamps: true,
45
48
  collection: "subscriptions",
@@ -14,6 +14,7 @@ export interface IDomain extends Document {
14
14
  privacy_enabled: boolean;
15
15
  renewal_date: string;
16
16
  renewal_price: number;
17
+ job_identifier: string;
17
18
  trigger_created: boolean;
18
19
  trigger_created_at: string;
19
20
  nameservers: string[];
@@ -13,6 +13,7 @@ export interface ISubscription extends Document {
13
13
  start_date: string;
14
14
  expiry_date: string;
15
15
  reminder_date: string;
16
+ job_identifier: string;
16
17
  trigger_created: boolean;
17
18
  trigger_created_at: string;
18
19
  specifications: {
package/domain/index.ts CHANGED
@@ -64,6 +64,9 @@ const domainSchema = new Schema(
64
64
  trigger_created_at: {
65
65
  type: String
66
66
  },
67
+ job_identifier: {
68
+ type: String
69
+ },
67
70
  dns: [
68
71
  {
69
72
  ref: "Dns",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "1.7.7",
3
+ "version": "1.7.8",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/subscription.ts CHANGED
@@ -41,6 +41,9 @@ const subscriptionPlanSchema: Schema = new Schema(
41
41
  trigger_created_at: {
42
42
  type: String
43
43
  },
44
+ job_identifier: {
45
+ type: String
46
+ }
44
47
  },
45
48
  {
46
49
  timestamps: true,
@@ -15,6 +15,7 @@ export interface IDomain extends Document {
15
15
  privacy_enabled: boolean;
16
16
  renewal_date: string;
17
17
  renewal_price: number;
18
+ job_identifier: string;
18
19
  trigger_created: boolean;
19
20
  trigger_created_at: string;
20
21
  nameservers: string[];
@@ -14,6 +14,7 @@ export interface ISubscription extends Document {
14
14
  start_date: string;
15
15
  expiry_date: string;
16
16
  reminder_date: string;
17
+ job_identifier: string;
17
18
  trigger_created: boolean;
18
19
  trigger_created_at: string;
19
20
  specifications: {