@mac777/project-pinecone-models 1.0.12 → 1.1.1
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 +6 -0
- package/dist/Event.js +2 -0
- package/package.json +1 -1
- package/src/Event.ts +2 -0
package/dist/Event.d.ts
CHANGED
|
@@ -98,6 +98,8 @@ 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;
|
|
102
|
+
salesPaused: boolean;
|
|
101
103
|
history: mongoose.Types.DocumentArray<{
|
|
102
104
|
timestamp: NativeDate;
|
|
103
105
|
action?: string | null | undefined;
|
|
@@ -382,6 +384,8 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
|
|
|
382
384
|
legalPermissionAccepted: boolean;
|
|
383
385
|
platformTermsAccepted: boolean;
|
|
384
386
|
visibility: "public" | "private" | "unlisted";
|
|
387
|
+
scheduleModified: boolean;
|
|
388
|
+
salesPaused: boolean;
|
|
385
389
|
history: mongoose.Types.DocumentArray<{
|
|
386
390
|
timestamp: NativeDate;
|
|
387
391
|
action?: string | null | undefined;
|
|
@@ -666,6 +670,8 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
|
|
|
666
670
|
legalPermissionAccepted: boolean;
|
|
667
671
|
platformTermsAccepted: boolean;
|
|
668
672
|
visibility: "public" | "private" | "unlisted";
|
|
673
|
+
scheduleModified: boolean;
|
|
674
|
+
salesPaused: boolean;
|
|
669
675
|
history: mongoose.Types.DocumentArray<{
|
|
670
676
|
timestamp: NativeDate;
|
|
671
677
|
action?: string | null | undefined;
|
package/dist/Event.js
CHANGED
|
@@ -213,6 +213,8 @@ 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 },
|
|
217
|
+
salesPaused: { type: Boolean, default: false },
|
|
216
218
|
// METRICS
|
|
217
219
|
metrics: metricsSchema,
|
|
218
220
|
// BUSINESS
|
package/package.json
CHANGED
package/src/Event.ts
CHANGED
|
@@ -239,6 +239,8 @@ 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 },
|
|
243
|
+
salesPaused: { type: Boolean, default: false },
|
|
242
244
|
|
|
243
245
|
// METRICS
|
|
244
246
|
metrics: metricsSchema,
|