@connectedxm/admin 7.2.6 → 7.2.9
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.cjs +1 -0
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -0
- package/openapi.json +43 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4312,6 +4312,7 @@ var SideEffectTriggerType = /* @__PURE__ */ ((SideEffectTriggerType2) => {
|
|
|
4312
4312
|
SideEffectTriggerType2["REMOVED_ACCOUNT_TIER"] = "REMOVED_ACCOUNT_TIER";
|
|
4313
4313
|
SideEffectTriggerType2["NEW_PASS_OF_PASS_TYPE"] = "NEW_PASS_OF_PASS_TYPE";
|
|
4314
4314
|
SideEffectTriggerType2["PASS_WITH_QUESTION_CHOICE"] = "PASS_WITH_QUESTION_CHOICE";
|
|
4315
|
+
SideEffectTriggerType2["PURCHASED_ADDON"] = "PURCHASED_ADDON";
|
|
4315
4316
|
return SideEffectTriggerType2;
|
|
4316
4317
|
})(SideEffectTriggerType || {});
|
|
4317
4318
|
var SideEffectActionType = /* @__PURE__ */ ((SideEffectActionType2) => {
|
package/dist/index.d.cts
CHANGED
|
@@ -3781,6 +3781,7 @@ interface BaseBookingSpace {
|
|
|
3781
3781
|
name: string;
|
|
3782
3782
|
slug: string;
|
|
3783
3783
|
supply: number;
|
|
3784
|
+
bookingLimitPerAccount: number | null;
|
|
3784
3785
|
slotDuration: number;
|
|
3785
3786
|
price: number;
|
|
3786
3787
|
description: string | null;
|
|
@@ -4406,7 +4407,8 @@ declare enum SideEffectTriggerType {
|
|
|
4406
4407
|
NEW_ACCOUNT_TIER = "NEW_ACCOUNT_TIER",
|
|
4407
4408
|
REMOVED_ACCOUNT_TIER = "REMOVED_ACCOUNT_TIER",
|
|
4408
4409
|
NEW_PASS_OF_PASS_TYPE = "NEW_PASS_OF_PASS_TYPE",
|
|
4409
|
-
PASS_WITH_QUESTION_CHOICE = "PASS_WITH_QUESTION_CHOICE"
|
|
4410
|
+
PASS_WITH_QUESTION_CHOICE = "PASS_WITH_QUESTION_CHOICE",
|
|
4411
|
+
PURCHASED_ADDON = "PURCHASED_ADDON"
|
|
4410
4412
|
}
|
|
4411
4413
|
declare enum SideEffectActionType {
|
|
4412
4414
|
JOIN_GROUP = "JOIN_GROUP",
|
|
@@ -4424,6 +4426,7 @@ interface BaseSideEffect {
|
|
|
4424
4426
|
newAccountTierId: string | null;
|
|
4425
4427
|
removedAccountTierId: string | null;
|
|
4426
4428
|
passWithQuestionChoiceId: string | null;
|
|
4429
|
+
purchasedAddOnId: string | null;
|
|
4427
4430
|
joinGroupId: string | null;
|
|
4428
4431
|
leaveGroupId: string | null;
|
|
4429
4432
|
addToTierId: string | null;
|
|
@@ -4440,6 +4443,7 @@ interface SideEffect extends BaseSideEffect {
|
|
|
4440
4443
|
newAccountTier: BaseTier | null;
|
|
4441
4444
|
removedAccountTier: BaseTier | null;
|
|
4442
4445
|
passWithQuestionChoice: BaseRegistrationQuestionChoice | null;
|
|
4446
|
+
purchasedAddOn: BaseEventAddOn | null;
|
|
4443
4447
|
joinGroup: BaseGroup | null;
|
|
4444
4448
|
leaveGroup: BaseGroup | null;
|
|
4445
4449
|
addToTier: BaseTier | null;
|
|
@@ -6691,6 +6695,7 @@ interface BookingPlaceTranslationUpdateInputs {
|
|
|
6691
6695
|
interface BookingSpaceCreateInputs {
|
|
6692
6696
|
name: string;
|
|
6693
6697
|
supply: number | string;
|
|
6698
|
+
bookingLimitPerAccount?: number | string | null;
|
|
6694
6699
|
slotDuration: number | string;
|
|
6695
6700
|
price?: number | string;
|
|
6696
6701
|
description?: string | null;
|
|
@@ -6715,6 +6720,7 @@ interface BookingSpaceCreateInputs {
|
|
|
6715
6720
|
interface BookingSpaceUpdateInputs {
|
|
6716
6721
|
name?: string;
|
|
6717
6722
|
supply?: number | string;
|
|
6723
|
+
bookingLimitPerAccount?: number | string | null;
|
|
6718
6724
|
price?: number | string;
|
|
6719
6725
|
description?: string | null;
|
|
6720
6726
|
imageId?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -3781,6 +3781,7 @@ interface BaseBookingSpace {
|
|
|
3781
3781
|
name: string;
|
|
3782
3782
|
slug: string;
|
|
3783
3783
|
supply: number;
|
|
3784
|
+
bookingLimitPerAccount: number | null;
|
|
3784
3785
|
slotDuration: number;
|
|
3785
3786
|
price: number;
|
|
3786
3787
|
description: string | null;
|
|
@@ -4406,7 +4407,8 @@ declare enum SideEffectTriggerType {
|
|
|
4406
4407
|
NEW_ACCOUNT_TIER = "NEW_ACCOUNT_TIER",
|
|
4407
4408
|
REMOVED_ACCOUNT_TIER = "REMOVED_ACCOUNT_TIER",
|
|
4408
4409
|
NEW_PASS_OF_PASS_TYPE = "NEW_PASS_OF_PASS_TYPE",
|
|
4409
|
-
PASS_WITH_QUESTION_CHOICE = "PASS_WITH_QUESTION_CHOICE"
|
|
4410
|
+
PASS_WITH_QUESTION_CHOICE = "PASS_WITH_QUESTION_CHOICE",
|
|
4411
|
+
PURCHASED_ADDON = "PURCHASED_ADDON"
|
|
4410
4412
|
}
|
|
4411
4413
|
declare enum SideEffectActionType {
|
|
4412
4414
|
JOIN_GROUP = "JOIN_GROUP",
|
|
@@ -4424,6 +4426,7 @@ interface BaseSideEffect {
|
|
|
4424
4426
|
newAccountTierId: string | null;
|
|
4425
4427
|
removedAccountTierId: string | null;
|
|
4426
4428
|
passWithQuestionChoiceId: string | null;
|
|
4429
|
+
purchasedAddOnId: string | null;
|
|
4427
4430
|
joinGroupId: string | null;
|
|
4428
4431
|
leaveGroupId: string | null;
|
|
4429
4432
|
addToTierId: string | null;
|
|
@@ -4440,6 +4443,7 @@ interface SideEffect extends BaseSideEffect {
|
|
|
4440
4443
|
newAccountTier: BaseTier | null;
|
|
4441
4444
|
removedAccountTier: BaseTier | null;
|
|
4442
4445
|
passWithQuestionChoice: BaseRegistrationQuestionChoice | null;
|
|
4446
|
+
purchasedAddOn: BaseEventAddOn | null;
|
|
4443
4447
|
joinGroup: BaseGroup | null;
|
|
4444
4448
|
leaveGroup: BaseGroup | null;
|
|
4445
4449
|
addToTier: BaseTier | null;
|
|
@@ -6691,6 +6695,7 @@ interface BookingPlaceTranslationUpdateInputs {
|
|
|
6691
6695
|
interface BookingSpaceCreateInputs {
|
|
6692
6696
|
name: string;
|
|
6693
6697
|
supply: number | string;
|
|
6698
|
+
bookingLimitPerAccount?: number | string | null;
|
|
6694
6699
|
slotDuration: number | string;
|
|
6695
6700
|
price?: number | string;
|
|
6696
6701
|
description?: string | null;
|
|
@@ -6715,6 +6720,7 @@ interface BookingSpaceCreateInputs {
|
|
|
6715
6720
|
interface BookingSpaceUpdateInputs {
|
|
6716
6721
|
name?: string;
|
|
6717
6722
|
supply?: number | string;
|
|
6723
|
+
bookingLimitPerAccount?: number | string | null;
|
|
6718
6724
|
price?: number | string;
|
|
6719
6725
|
description?: string | null;
|
|
6720
6726
|
imageId?: string | null;
|
package/dist/index.js
CHANGED
|
@@ -717,6 +717,7 @@ var SideEffectTriggerType = /* @__PURE__ */ ((SideEffectTriggerType2) => {
|
|
|
717
717
|
SideEffectTriggerType2["REMOVED_ACCOUNT_TIER"] = "REMOVED_ACCOUNT_TIER";
|
|
718
718
|
SideEffectTriggerType2["NEW_PASS_OF_PASS_TYPE"] = "NEW_PASS_OF_PASS_TYPE";
|
|
719
719
|
SideEffectTriggerType2["PASS_WITH_QUESTION_CHOICE"] = "PASS_WITH_QUESTION_CHOICE";
|
|
720
|
+
SideEffectTriggerType2["PURCHASED_ADDON"] = "PURCHASED_ADDON";
|
|
720
721
|
return SideEffectTriggerType2;
|
|
721
722
|
})(SideEffectTriggerType || {});
|
|
722
723
|
var SideEffectActionType = /* @__PURE__ */ ((SideEffectActionType2) => {
|
package/openapi.json
CHANGED
|
@@ -108504,6 +108504,10 @@
|
|
|
108504
108504
|
"supply": {
|
|
108505
108505
|
"type": "number"
|
|
108506
108506
|
},
|
|
108507
|
+
"bookingLimitPerAccount": {
|
|
108508
|
+
"type": "number",
|
|
108509
|
+
"nullable": true
|
|
108510
|
+
},
|
|
108507
108511
|
"slotDuration": {
|
|
108508
108512
|
"type": "number"
|
|
108509
108513
|
},
|
|
@@ -108552,6 +108556,7 @@
|
|
|
108552
108556
|
"name",
|
|
108553
108557
|
"slug",
|
|
108554
108558
|
"supply",
|
|
108559
|
+
"bookingLimitPerAccount",
|
|
108555
108560
|
"slotDuration",
|
|
108556
108561
|
"price",
|
|
108557
108562
|
"description",
|
|
@@ -111259,7 +111264,8 @@
|
|
|
111259
111264
|
"NEW_ACCOUNT_TIER",
|
|
111260
111265
|
"REMOVED_ACCOUNT_TIER",
|
|
111261
111266
|
"NEW_PASS_OF_PASS_TYPE",
|
|
111262
|
-
"PASS_WITH_QUESTION_CHOICE"
|
|
111267
|
+
"PASS_WITH_QUESTION_CHOICE",
|
|
111268
|
+
"PURCHASED_ADDON"
|
|
111263
111269
|
]
|
|
111264
111270
|
},
|
|
111265
111271
|
"SideEffectActionType": {
|
|
@@ -111300,6 +111306,10 @@
|
|
|
111300
111306
|
"type": "string",
|
|
111301
111307
|
"nullable": true
|
|
111302
111308
|
},
|
|
111309
|
+
"purchasedAddOnId": {
|
|
111310
|
+
"type": "string",
|
|
111311
|
+
"nullable": true
|
|
111312
|
+
},
|
|
111303
111313
|
"joinGroupId": {
|
|
111304
111314
|
"type": "string",
|
|
111305
111315
|
"nullable": true
|
|
@@ -111336,6 +111346,7 @@
|
|
|
111336
111346
|
"newAccountTierId",
|
|
111337
111347
|
"removedAccountTierId",
|
|
111338
111348
|
"passWithQuestionChoiceId",
|
|
111349
|
+
"purchasedAddOnId",
|
|
111339
111350
|
"joinGroupId",
|
|
111340
111351
|
"leaveGroupId",
|
|
111341
111352
|
"addToTierId",
|
|
@@ -111399,6 +111410,14 @@
|
|
|
111399
111410
|
],
|
|
111400
111411
|
"nullable": true
|
|
111401
111412
|
},
|
|
111413
|
+
"purchasedAddOn": {
|
|
111414
|
+
"allOf": [
|
|
111415
|
+
{
|
|
111416
|
+
"$ref": "#/components/schemas/BaseEventAddOn"
|
|
111417
|
+
}
|
|
111418
|
+
],
|
|
111419
|
+
"nullable": true
|
|
111420
|
+
},
|
|
111402
111421
|
"joinGroup": {
|
|
111403
111422
|
"allOf": [
|
|
111404
111423
|
{
|
|
@@ -111470,6 +111489,7 @@
|
|
|
111470
111489
|
"newAccountTier",
|
|
111471
111490
|
"removedAccountTier",
|
|
111472
111491
|
"passWithQuestionChoice",
|
|
111492
|
+
"purchasedAddOn",
|
|
111473
111493
|
"joinGroup",
|
|
111474
111494
|
"leaveGroup",
|
|
111475
111495
|
"addToTier",
|
|
@@ -120766,6 +120786,17 @@
|
|
|
120766
120786
|
}
|
|
120767
120787
|
]
|
|
120768
120788
|
},
|
|
120789
|
+
"bookingLimitPerAccount": {
|
|
120790
|
+
"oneOf": [
|
|
120791
|
+
{
|
|
120792
|
+
"type": "number"
|
|
120793
|
+
},
|
|
120794
|
+
{
|
|
120795
|
+
"type": "string"
|
|
120796
|
+
}
|
|
120797
|
+
],
|
|
120798
|
+
"nullable": true
|
|
120799
|
+
},
|
|
120769
120800
|
"slotDuration": {
|
|
120770
120801
|
"oneOf": [
|
|
120771
120802
|
{
|
|
@@ -120884,6 +120915,17 @@
|
|
|
120884
120915
|
}
|
|
120885
120916
|
]
|
|
120886
120917
|
},
|
|
120918
|
+
"bookingLimitPerAccount": {
|
|
120919
|
+
"oneOf": [
|
|
120920
|
+
{
|
|
120921
|
+
"type": "number"
|
|
120922
|
+
},
|
|
120923
|
+
{
|
|
120924
|
+
"type": "string"
|
|
120925
|
+
}
|
|
120926
|
+
],
|
|
120927
|
+
"nullable": true
|
|
120928
|
+
},
|
|
120887
120929
|
"price": {
|
|
120888
120930
|
"oneOf": [
|
|
120889
120931
|
{
|