biz-email-builder-shared 1.6.19 → 1.6.20

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.
@@ -8,7 +8,6 @@ export interface IOrganisationTeamSchema extends Document {
8
8
  deletedAt: Date;
9
9
  createdAt: Date;
10
10
  updatedAt: Date;
11
- addedAt: Date;
12
11
  }
13
12
  export declare const OrganisationTeamModel: import("mongoose").Model<{
14
13
  createdAt: NativeDate;
@@ -37,7 +36,6 @@ export declare const OrganisationTeamModel: import("mongoose").Model<{
37
36
  isValid?: {} | null | undefined;
38
37
  };
39
38
  inviteStatus: "Pending" | "Accepted";
40
- addedAt: Types.ObjectId;
41
39
  }, {}, {}, {}, import("mongoose").Document<unknown, {}, {
42
40
  createdAt: NativeDate;
43
41
  updatedAt: NativeDate;
@@ -65,7 +63,6 @@ export declare const OrganisationTeamModel: import("mongoose").Model<{
65
63
  isValid?: {} | null | undefined;
66
64
  };
67
65
  inviteStatus: "Pending" | "Accepted";
68
- addedAt: Types.ObjectId;
69
66
  }> & {
70
67
  createdAt: NativeDate;
71
68
  updatedAt: NativeDate;
@@ -93,7 +90,6 @@ export declare const OrganisationTeamModel: import("mongoose").Model<{
93
90
  isValid?: {} | null | undefined;
94
91
  };
95
92
  inviteStatus: "Pending" | "Accepted";
96
- addedAt: Types.ObjectId;
97
93
  } & {
98
94
  _id: Types.ObjectId;
99
95
  } & {
@@ -127,7 +123,6 @@ export declare const OrganisationTeamModel: import("mongoose").Model<{
127
123
  isValid?: {} | null | undefined;
128
124
  };
129
125
  inviteStatus: "Pending" | "Accepted";
130
- addedAt: Types.ObjectId;
131
126
  }, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<{
132
127
  createdAt: NativeDate;
133
128
  updatedAt: NativeDate;
@@ -155,7 +150,6 @@ export declare const OrganisationTeamModel: import("mongoose").Model<{
155
150
  isValid?: {} | null | undefined;
156
151
  };
157
152
  inviteStatus: "Pending" | "Accepted";
158
- addedAt: Types.ObjectId;
159
153
  }>> & import("mongoose").FlatRecord<{
160
154
  createdAt: NativeDate;
161
155
  updatedAt: NativeDate;
@@ -183,7 +177,6 @@ export declare const OrganisationTeamModel: import("mongoose").Model<{
183
177
  isValid?: {} | null | undefined;
184
178
  };
185
179
  inviteStatus: "Pending" | "Accepted";
186
- addedAt: Types.ObjectId;
187
180
  }> & {
188
181
  _id: Types.ObjectId;
189
182
  } & {
@@ -1 +1 @@
1
- {"version":3,"file":"organisationTeams.entity.d.ts","sourceRoot":"","sources":["../../src/entity/organisationTeams.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAS,MAAM,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEhD,MAAM,WAAW,uBAAwB,SAAQ,QAAQ;IACvD,cAAc,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC/B,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;CACf;AAWD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SACgxH,MAAO,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAf,MAAO,QAAQ;;;GAD1uH,CAAC"}
1
+ {"version":3,"file":"organisationTeams.entity.d.ts","sourceRoot":"","sources":["../../src/entity/organisationTeams.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAS,MAAM,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEhD,MAAM,WAAW,uBAAwB,SAAQ,QAAQ;IACvD,cAAc,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC/B,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;CACjB;AAWD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAC41H,MAAO,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAf,MAAO,QAAQ;;;GADtzH,CAAC"}
@@ -11,6 +11,5 @@ const OrganisationTeamSchema = new mongoose_1.Schema({
11
11
  isDeleted: { type: Boolean, default: false },
12
12
  deletedAt: { type: Date, default: null },
13
13
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, required: true },
14
- addedAt: { type: mongoose_1.Schema.Types.ObjectId, required: true }
15
14
  }, { timestamps: true });
16
15
  exports.OrganisationTeamModel = (0, mongoose_1.model)("organisation-team", OrganisationTeamSchema);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz-email-builder-shared",
3
- "version": "1.6.19",
3
+ "version": "1.6.20",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [