@mac777/project-pinecone-models 1.1.5 → 1.1.6

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
@@ -9,6 +9,8 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
9
9
  categories: string[];
10
10
  highlights: string[];
11
11
  languages: string[];
12
+ payoutGenerated: boolean;
13
+ payoutSkipped: boolean;
12
14
  tickets: mongoose.Types.DocumentArray<{
13
15
  name: string;
14
16
  quantity: number;
@@ -120,6 +122,7 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
120
122
  rejectionReason?: string | null | undefined;
121
123
  slug?: string | null | undefined;
122
124
  dressCode?: string | null | undefined;
125
+ payoutSkipReason?: string | null | undefined;
123
126
  media?: {
124
127
  gallery: mongoose.Types.DocumentArray<{
125
128
  url?: string | null | undefined;
@@ -295,6 +298,8 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
295
298
  categories: string[];
296
299
  highlights: string[];
297
300
  languages: string[];
301
+ payoutGenerated: boolean;
302
+ payoutSkipped: boolean;
298
303
  tickets: mongoose.Types.DocumentArray<{
299
304
  name: string;
300
305
  quantity: number;
@@ -406,6 +411,7 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
406
411
  rejectionReason?: string | null | undefined;
407
412
  slug?: string | null | undefined;
408
413
  dressCode?: string | null | undefined;
414
+ payoutSkipReason?: string | null | undefined;
409
415
  media?: {
410
416
  gallery: mongoose.Types.DocumentArray<{
411
417
  url?: string | null | undefined;
@@ -581,6 +587,8 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
581
587
  categories: string[];
582
588
  highlights: string[];
583
589
  languages: string[];
590
+ payoutGenerated: boolean;
591
+ payoutSkipped: boolean;
584
592
  tickets: mongoose.Types.DocumentArray<{
585
593
  name: string;
586
594
  quantity: number;
@@ -692,6 +700,7 @@ declare const eventSchema: mongoose.Schema<any, mongoose.Model<any, any, any, an
692
700
  rejectionReason?: string | null | undefined;
693
701
  slug?: string | null | undefined;
694
702
  dressCode?: string | null | undefined;
703
+ payoutSkipReason?: string | null | undefined;
695
704
  media?: {
696
705
  gallery: mongoose.Types.DocumentArray<{
697
706
  url?: string | null | undefined;
package/dist/Event.js CHANGED
@@ -196,6 +196,9 @@ const eventSchema = new mongoose_1.default.Schema({
196
196
  languages: [String],
197
197
  ageRestriction: { type: String, enum: ['all_ages', '18+', '21+'] },
198
198
  dressCode: String,
199
+ payoutGenerated: { type: Boolean, default: false },
200
+ payoutSkipped: { type: Boolean, default: false },
201
+ payoutSkipReason: String,
199
202
  media: mediaSchema,
200
203
  // STEP 3: DATE, TIME & LOCATION
201
204
  schedule: scheduleSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mac777/project-pinecone-models",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
package/src/Event.ts CHANGED
@@ -218,6 +218,9 @@ const eventSchema = new mongoose.Schema({
218
218
  languages: [String],
219
219
  ageRestriction: { type: String, enum: ['all_ages', '18+', '21+'] },
220
220
  dressCode: String,
221
+ payoutGenerated: { type: Boolean, default: false },
222
+ payoutSkipped: { type: Boolean, default: false },
223
+ payoutSkipReason: String,
221
224
 
222
225
  media: mediaSchema,
223
226