@nimee/shared-types 1.0.319 → 1.0.320
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 +3 -0
package/dist/event/event.d.ts
CHANGED
|
@@ -132,6 +132,7 @@ export interface IEventModel {
|
|
|
132
132
|
seatsChartKey?: string;
|
|
133
133
|
seatsEventKey?: string;
|
|
134
134
|
isSeatsEvent?: boolean;
|
|
135
|
+
seatsIoOrphanSeatsMode?: "off" | "lenient" | "strict";
|
|
135
136
|
isOnlyForMembers?: boolean;
|
|
136
137
|
otpGateMode?: IOtpGateMode;
|
|
137
138
|
isWellnessEvent?: boolean;
|
package/package.json
CHANGED
package/src/event/event.ts
CHANGED
|
@@ -112,6 +112,9 @@ export interface IEventModel {
|
|
|
112
112
|
seatsChartKey?: string;
|
|
113
113
|
seatsEventKey?: string;
|
|
114
114
|
isSeatsEvent?: boolean;
|
|
115
|
+
// Orphan-seat prevention mode for seats.io events (model + API schema define it; contract
|
|
116
|
+
// parity per repo guideline).
|
|
117
|
+
seatsIoOrphanSeatsMode?: "off" | "lenient" | "strict";
|
|
115
118
|
isOnlyForMembers?: boolean;
|
|
116
119
|
otpGateMode?: IOtpGateMode;
|
|
117
120
|
isWellnessEvent?: boolean;
|