@mac777/project-pinecone-models 1.0.12 → 1.1.0

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.
package/dist/Event.d.ts CHANGED
@@ -98,6 +98,7 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
98
98
  legalPermissionAccepted: boolean;
99
99
  platformTermsAccepted: boolean;
100
100
  visibility: "public" | "private" | "unlisted";
101
+ scheduleModified: boolean;
101
102
  history: mongoose.Types.DocumentArray<{
102
103
  timestamp: NativeDate;
103
104
  action?: string | null | undefined;
@@ -382,6 +383,7 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
382
383
  legalPermissionAccepted: boolean;
383
384
  platformTermsAccepted: boolean;
384
385
  visibility: "public" | "private" | "unlisted";
386
+ scheduleModified: boolean;
385
387
  history: mongoose.Types.DocumentArray<{
386
388
  timestamp: NativeDate;
387
389
  action?: string | null | undefined;
@@ -666,6 +668,7 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
666
668
  legalPermissionAccepted: boolean;
667
669
  platformTermsAccepted: boolean;
668
670
  visibility: "public" | "private" | "unlisted";
671
+ scheduleModified: boolean;
669
672
  history: mongoose.Types.DocumentArray<{
670
673
  timestamp: NativeDate;
671
674
  action?: string | null | undefined;
package/dist/Event.js CHANGED
@@ -213,6 +213,7 @@ const eventSchema = new mongoose_1.default.Schema({
213
213
  rejectionReason: String,
214
214
  visibility: { type: String, enum: ['public', 'private', 'unlisted'], default: 'public' },
215
215
  publishedAt: Date,
216
+ scheduleModified: { type: Boolean, default: false },
216
217
  // METRICS
217
218
  metrics: metricsSchema,
218
219
  // BUSINESS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mac777/project-pinecone-models",
3
- "version": "1.0.12",
3
+ "version": "1.1.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
package/src/Event.ts CHANGED
@@ -239,6 +239,7 @@ const eventSchema = new mongoose.Schema({
239
239
  rejectionReason: String,
240
240
  visibility: { type: String, enum: ['public', 'private', 'unlisted'], default: 'public' },
241
241
  publishedAt: Date,
242
+ scheduleModified: { type: Boolean, default: false },
242
243
 
243
244
  // METRICS
244
245
  metrics: metricsSchema,