@nimee/shared-types 1.0.162 → 1.0.163

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.
@@ -6,6 +6,7 @@
6
6
  /// <reference types="mongoose/types/mongooseoptions" />
7
7
  /// <reference types="mongoose/types/schemaoptions" />
8
8
  import mongoose from "mongoose";
9
+ import { ISeasonTicketStatusType } from "../payment/endUserSeasonTicket";
9
10
  export declare enum ISegmentType {
10
11
  USER_CREATED = "user-created",
11
12
  EVENT = "event",
@@ -24,6 +25,7 @@ export interface ISegmentModel {
24
25
  seasonTicket?: string | mongoose.Types.ObjectId;
25
26
  event?: string | mongoose.Types.ObjectId;
26
27
  activityName?: string;
28
+ seasonTicketStatus?: ISeasonTicketStatusType;
27
29
  }
28
30
  export interface ISegmentEndUserModel {
29
31
  _id?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"segment.js","sourceRoot":"","sources":["../../src/user/segment.ts"],"names":[],"mappings":";;;AACA,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,6CAA6B,CAAA;IAC7B,+BAAe,CAAA;IACf,qEAAqD,CAAA;IACrD,+CAA+B,CAAA;IAC/B,qCAAqB,CAAA;AACvB,CAAC,EANW,YAAY,4BAAZ,YAAY,QAMvB"}
1
+ {"version":3,"file":"segment.js","sourceRoot":"","sources":["../../src/user/segment.ts"],"names":[],"mappings":";;;AAGA,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,6CAA6B,CAAA;IAC7B,+BAAe,CAAA;IACf,qEAAqD,CAAA;IACrD,+CAA+B,CAAA;IAC/B,qCAAqB,CAAA;AACvB,CAAC,EANW,YAAY,4BAAZ,YAAY,QAMvB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.162",
3
+ "version": "1.0.163",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -1,4 +1,6 @@
1
1
  import mongoose from "mongoose";
2
+ import { ISeasonTicketStatusType } from "../payment/endUserSeasonTicket";
3
+
2
4
  export enum ISegmentType {
3
5
  USER_CREATED = "user-created",
4
6
  EVENT = "event",
@@ -17,6 +19,7 @@ export interface ISegmentModel {
17
19
  seasonTicket?: string | mongoose.Types.ObjectId;
18
20
  event?: string | mongoose.Types.ObjectId;
19
21
  activityName?: string;
22
+ seasonTicketStatus?: ISeasonTicketStatusType;
20
23
  }
21
24
 
22
25
  export interface ISegmentEndUserModel {