@connectedxm/admin 7.9.0 → 7.9.1
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/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/openapi.json +10 -0
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -11
package/dist/index.d.cts
CHANGED
|
@@ -1054,6 +1054,7 @@ interface Event extends BaseEvent {
|
|
|
1054
1054
|
groupId: string | null;
|
|
1055
1055
|
group: BaseGroup | null;
|
|
1056
1056
|
groupOnly: boolean;
|
|
1057
|
+
guestRegistration: boolean;
|
|
1057
1058
|
backgroundImageId: string | null;
|
|
1058
1059
|
backgroundImage: BaseImage | null;
|
|
1059
1060
|
registrationHeaderImageId: string | null;
|
|
@@ -5330,6 +5331,7 @@ interface EventCreateInputs {
|
|
|
5330
5331
|
streamReplayId?: string | null;
|
|
5331
5332
|
groupId?: string | null;
|
|
5332
5333
|
groupOnly?: boolean;
|
|
5334
|
+
guestRegistration?: boolean;
|
|
5333
5335
|
passSupply?: number | string | null;
|
|
5334
5336
|
passLimitPerAccount?: string | number | null;
|
|
5335
5337
|
roundName?: string | null;
|
|
@@ -5388,6 +5390,7 @@ interface EventUpdateInputs {
|
|
|
5388
5390
|
streamReplayId?: string | null;
|
|
5389
5391
|
groupId?: string | null;
|
|
5390
5392
|
groupOnly?: boolean;
|
|
5393
|
+
guestRegistration?: boolean;
|
|
5391
5394
|
passSupply?: number | string | null;
|
|
5392
5395
|
passLimitPerAccount?: string | number | null;
|
|
5393
5396
|
roundName?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1054,6 +1054,7 @@ interface Event extends BaseEvent {
|
|
|
1054
1054
|
groupId: string | null;
|
|
1055
1055
|
group: BaseGroup | null;
|
|
1056
1056
|
groupOnly: boolean;
|
|
1057
|
+
guestRegistration: boolean;
|
|
1057
1058
|
backgroundImageId: string | null;
|
|
1058
1059
|
backgroundImage: BaseImage | null;
|
|
1059
1060
|
registrationHeaderImageId: string | null;
|
|
@@ -5330,6 +5331,7 @@ interface EventCreateInputs {
|
|
|
5330
5331
|
streamReplayId?: string | null;
|
|
5331
5332
|
groupId?: string | null;
|
|
5332
5333
|
groupOnly?: boolean;
|
|
5334
|
+
guestRegistration?: boolean;
|
|
5333
5335
|
passSupply?: number | string | null;
|
|
5334
5336
|
passLimitPerAccount?: string | number | null;
|
|
5335
5337
|
roundName?: string | null;
|
|
@@ -5388,6 +5390,7 @@ interface EventUpdateInputs {
|
|
|
5388
5390
|
streamReplayId?: string | null;
|
|
5389
5391
|
groupId?: string | null;
|
|
5390
5392
|
groupOnly?: boolean;
|
|
5393
|
+
guestRegistration?: boolean;
|
|
5391
5394
|
passSupply?: number | string | null;
|
|
5392
5395
|
passLimitPerAccount?: string | number | null;
|
|
5393
5396
|
roundName?: string | null;
|
package/openapi.json
CHANGED
|
@@ -98214,6 +98214,9 @@
|
|
|
98214
98214
|
"groupOnly": {
|
|
98215
98215
|
"type": "boolean"
|
|
98216
98216
|
},
|
|
98217
|
+
"guestRegistration": {
|
|
98218
|
+
"type": "boolean"
|
|
98219
|
+
},
|
|
98217
98220
|
"backgroundImageId": {
|
|
98218
98221
|
"type": "string",
|
|
98219
98222
|
"nullable": true
|
|
@@ -98321,6 +98324,7 @@
|
|
|
98321
98324
|
"groupId",
|
|
98322
98325
|
"group",
|
|
98323
98326
|
"groupOnly",
|
|
98327
|
+
"guestRegistration",
|
|
98324
98328
|
"backgroundImageId",
|
|
98325
98329
|
"backgroundImage",
|
|
98326
98330
|
"registrationHeaderImageId",
|
|
@@ -116309,6 +116313,9 @@
|
|
|
116309
116313
|
"groupOnly": {
|
|
116310
116314
|
"type": "boolean"
|
|
116311
116315
|
},
|
|
116316
|
+
"guestRegistration": {
|
|
116317
|
+
"type": "boolean"
|
|
116318
|
+
},
|
|
116312
116319
|
"passSupply": {
|
|
116313
116320
|
"oneOf": [
|
|
116314
116321
|
{
|
|
@@ -116570,6 +116577,9 @@
|
|
|
116570
116577
|
"groupOnly": {
|
|
116571
116578
|
"type": "boolean"
|
|
116572
116579
|
},
|
|
116580
|
+
"guestRegistration": {
|
|
116581
|
+
"type": "boolean"
|
|
116582
|
+
},
|
|
116573
116583
|
"passSupply": {
|
|
116574
116584
|
"oneOf": [
|
|
116575
116585
|
{
|
package/package.json
CHANGED