@nimee/shared-types 1.0.324 → 1.0.326

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.
@@ -133,6 +133,7 @@ export interface IEventModel {
133
133
  seatsEventKey?: string;
134
134
  isSeatsEvent?: boolean;
135
135
  seatsIoOrphanSeatsMode?: "off" | "lenient" | "strict";
136
+ maxSeatsPerUser?: number | null;
136
137
  isOnlyForMembers?: boolean;
137
138
  otpGateMode?: IOtpGateMode;
138
139
  isWellnessEvent?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.324",
3
+ "version": "1.0.326",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -115,6 +115,8 @@ export interface IEventModel {
115
115
  // Orphan-seat prevention mode for seats.io events (model + API schema define it; contract
116
116
  // parity per repo guideline).
117
117
  seatsIoOrphanSeatsMode?: "off" | "lenient" | "strict";
118
+ // Max seats a single buyer may select on a seats.io chart; null/unset = unlimited.
119
+ maxSeatsPerUser?: number | null;
118
120
  isOnlyForMembers?: boolean;
119
121
  otpGateMode?: IOtpGateMode;
120
122
  isWellnessEvent?: boolean;