@nimee/shared-types 1.0.294 → 1.0.296

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.
@@ -0,0 +1,8 @@
1
+ {
2
+ "enabledMcpjsonServers": [
3
+ "github",
4
+ "coralogix-server",
5
+ "playwright",
6
+ "mongodb"
7
+ ]
8
+ }
@@ -104,6 +104,7 @@ export interface IEndUserSeasonTicketModel {
104
104
  parentSubscriptionId?: string | mongoose.Types.ObjectId | null;
105
105
  familyRole?: IFamilyRole | null;
106
106
  isProfileComplete?: boolean;
107
+ seasonTicketRequiredFields?: string[];
107
108
  familyMemberCount?: number | null;
108
109
  familyTotalPrice?: number | null;
109
110
  imageUrl?: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AA6FA,IAAY,uBAYX;AAZD,WAAY,uBAAuB;IACjC,4CAAiB,CAAA;IACjB,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;IACvB,wEAA6C,CAAA;IAC7C,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,8CAAmB,CAAA;IACnB,4CAAiB,CAAA;IACjB,0EAA+C,CAAA;IAC/C,0EAA+C,CAAA;IAC/C,gDAAqB,CAAA;AACvB,CAAC,EAZW,uBAAuB,uCAAvB,uBAAuB,QAYlC;AAED,IAAY,WAIX;AAJD,WAAY,WAAW;IACrB,gCAAiB,CAAA;IACjB,8BAAe,CAAA;IACf,8BAAe,CAAA;AACjB,CAAC,EAJW,WAAW,2BAAX,WAAW,QAItB"}
1
+ {"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AA8FA,IAAY,uBAYX;AAZD,WAAY,uBAAuB;IACjC,4CAAiB,CAAA;IACjB,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;IACvB,wEAA6C,CAAA;IAC7C,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,8CAAmB,CAAA;IACnB,4CAAiB,CAAA;IACjB,0EAA+C,CAAA;IAC/C,0EAA+C,CAAA;IAC/C,gDAAqB,CAAA;AACvB,CAAC,EAZW,uBAAuB,uCAAvB,uBAAuB,QAYlC;AAED,IAAY,WAIX;AAJD,WAAY,WAAW;IACrB,gCAAiB,CAAA;IACjB,8BAAe,CAAA;IACf,8BAAe,CAAA;AACjB,CAAC,EAJW,WAAW,2BAAX,WAAW,QAItB"}
@@ -54,6 +54,7 @@ export interface ISeasonTicketModel {
54
54
  adult?: string[];
55
55
  };
56
56
  familyPricingTiers?: IFamilyPricingTier[];
57
+ requiredFields?: string[];
57
58
  }
58
59
  export interface IFamilyPricingTier {
59
60
  adults: number;
@@ -1 +1 @@
1
- {"version":3,"file":"seasonTicket.js","sourceRoot":"","sources":["../../src/payment/seasonTicket.ts"],"names":[],"mappings":";;;AAyCA,IAAY,iCAKX;AALD,WAAY,iCAAiC;IAC3C,2FAAS,CAAA;IACT,6FAAU,CAAA;IACV,+FAAW,CAAA;IACX,6FAAU,CAAA;AACZ,CAAC,EALW,iCAAiC,iDAAjC,iCAAiC,QAK5C;AAED,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC3B,oDAA+B,CAAA;IAC/B,8CAAyB,CAAA;AAC3B,CAAC,EAHW,iBAAiB,iCAAjB,iBAAiB,QAG5B"}
1
+ {"version":3,"file":"seasonTicket.js","sourceRoot":"","sources":["../../src/payment/seasonTicket.ts"],"names":[],"mappings":";;;AA0CA,IAAY,iCAKX;AALD,WAAY,iCAAiC;IAC3C,2FAAS,CAAA;IACT,6FAAU,CAAA;IACV,+FAAW,CAAA;IACX,6FAAU,CAAA;AACZ,CAAC,EALW,iCAAiC,iDAAjC,iCAAiC,QAK5C;AAED,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IAC3B,oDAA+B,CAAA;IAC/B,8CAAyB,CAAA;AAC3B,CAAC,EAHW,iBAAiB,iCAAjB,iBAAiB,QAG5B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.294",
3
+ "version": "1.0.296",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -85,6 +85,7 @@ export interface IEndUserSeasonTicketModel {
85
85
  parentSubscriptionId?: string | mongoose.Types.ObjectId | null;
86
86
  familyRole?: IFamilyRole | null;
87
87
  isProfileComplete?: boolean;
88
+ seasonTicketRequiredFields?: string[];
88
89
  familyMemberCount?: number | null; // only on parent - total members excluding parent
89
90
  familyTotalPrice?: number | null; // only on parent - total recurring charge
90
91
  imageUrl?: string | null; // profile image for family members (stored on subscription, not endUser)
@@ -31,6 +31,7 @@ export interface ISeasonTicketModel {
31
31
  adult?: string[];
32
32
  };
33
33
  familyPricingTiers?: IFamilyPricingTier[];
34
+ requiredFields?: string[];
34
35
  }
35
36
 
36
37
  export interface IFamilyPricingTier {