@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.
- package/dist/event/event.d.ts +1 -0
- package/package.json +1 -1
- package/src/event/event.ts +2 -0
package/dist/event/event.d.ts
CHANGED
|
@@ -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
package/src/event/event.ts
CHANGED
|
@@ -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;
|