@connectedxm/admin-sdk 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/api.ts +9 -1
- package/dist/api.d.ts +9 -1
- package/dist/api.js +1 -0
- package/dist/esm/api.d.ts +9 -1
- package/dist/esm/api.js +1 -0
- package/docs/BaseBookingSpace.md +2 -0
- package/docs/BaseSideEffect.md +2 -0
- package/docs/BookingSpace.md +2 -0
- package/docs/BookingSpaceCreateInputs.md +2 -0
- package/docs/BookingSpaceUpdateInputs.md +2 -0
- package/docs/SideEffect.md +4 -0
- package/docs/SideEffectTriggerType.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1001,6 +1001,7 @@ export interface BaseBookingSpace {
|
|
|
1001
1001
|
'name': string;
|
|
1002
1002
|
'slug': string;
|
|
1003
1003
|
'supply': number;
|
|
1004
|
+
'bookingLimitPerAccount': number | null;
|
|
1004
1005
|
'slotDuration': number;
|
|
1005
1006
|
'price': number;
|
|
1006
1007
|
'description': string | null;
|
|
@@ -2301,6 +2302,7 @@ export interface BaseSideEffect {
|
|
|
2301
2302
|
'newAccountTierId': string | null;
|
|
2302
2303
|
'removedAccountTierId': string | null;
|
|
2303
2304
|
'passWithQuestionChoiceId': string | null;
|
|
2305
|
+
'purchasedAddOnId': string | null;
|
|
2304
2306
|
'joinGroupId': string | null;
|
|
2305
2307
|
'leaveGroupId': string | null;
|
|
2306
2308
|
'addToTierId': string | null;
|
|
@@ -2811,6 +2813,7 @@ export interface BookingSpace {
|
|
|
2811
2813
|
'name': string;
|
|
2812
2814
|
'slug': string;
|
|
2813
2815
|
'supply': number;
|
|
2816
|
+
'bookingLimitPerAccount': number | null;
|
|
2814
2817
|
'slotDuration': number;
|
|
2815
2818
|
'price': number;
|
|
2816
2819
|
'description': string | null;
|
|
@@ -2876,6 +2879,7 @@ export interface BookingSpaceBlackoutUpdateInputs {
|
|
|
2876
2879
|
export interface BookingSpaceCreateInputs {
|
|
2877
2880
|
'name': string;
|
|
2878
2881
|
'supply': EventCreateInputsSplitPaymentPercentage;
|
|
2882
|
+
'bookingLimitPerAccount'?: AdvertisementCreateInputsWeight | null;
|
|
2879
2883
|
'slotDuration': EventCreateInputsSplitPaymentPercentage;
|
|
2880
2884
|
'price'?: EventCreateInputsSplitPaymentPercentage;
|
|
2881
2885
|
'description'?: string | null;
|
|
@@ -3070,6 +3074,7 @@ export interface BookingSpaceTranslationUpdateInputs {
|
|
|
3070
3074
|
export interface BookingSpaceUpdateInputs {
|
|
3071
3075
|
'name'?: string;
|
|
3072
3076
|
'supply'?: EventCreateInputsSplitPaymentPercentage;
|
|
3077
|
+
'bookingLimitPerAccount'?: AdvertisementCreateInputsWeight | null;
|
|
3073
3078
|
'price'?: EventCreateInputsSplitPaymentPercentage;
|
|
3074
3079
|
'description'?: string | null;
|
|
3075
3080
|
'imageId'?: string | null;
|
|
@@ -12697,6 +12702,7 @@ export interface SideEffect {
|
|
|
12697
12702
|
'newAccountTierId': string | null;
|
|
12698
12703
|
'removedAccountTierId': string | null;
|
|
12699
12704
|
'passWithQuestionChoiceId': string | null;
|
|
12705
|
+
'purchasedAddOnId': string | null;
|
|
12700
12706
|
'joinGroupId': string | null;
|
|
12701
12707
|
'leaveGroupId': string | null;
|
|
12702
12708
|
'addToTierId': string | null;
|
|
@@ -12710,6 +12716,7 @@ export interface SideEffect {
|
|
|
12710
12716
|
'newAccountTier': BaseTier | null;
|
|
12711
12717
|
'removedAccountTier': BaseTier | null;
|
|
12712
12718
|
'passWithQuestionChoice': BaseRegistrationQuestionChoice | null;
|
|
12719
|
+
'purchasedAddOn': BaseEventAddOn | null;
|
|
12713
12720
|
'joinGroup': BaseGroup | null;
|
|
12714
12721
|
'leaveGroup': BaseGroup | null;
|
|
12715
12722
|
'addToTier': BaseTier | null;
|
|
@@ -12738,7 +12745,8 @@ export enum SideEffectTriggerType {
|
|
|
12738
12745
|
NewAccountTier = 'NEW_ACCOUNT_TIER',
|
|
12739
12746
|
RemovedAccountTier = 'REMOVED_ACCOUNT_TIER',
|
|
12740
12747
|
NewPassOfPassType = 'NEW_PASS_OF_PASS_TYPE',
|
|
12741
|
-
PassWithQuestionChoice = 'PASS_WITH_QUESTION_CHOICE'
|
|
12748
|
+
PassWithQuestionChoice = 'PASS_WITH_QUESTION_CHOICE',
|
|
12749
|
+
PurchasedAddon = 'PURCHASED_ADDON'
|
|
12742
12750
|
}
|
|
12743
12751
|
|
|
12744
12752
|
|
package/dist/api.d.ts
CHANGED
|
@@ -908,6 +908,7 @@ export interface BaseBookingSpace {
|
|
|
908
908
|
'name': string;
|
|
909
909
|
'slug': string;
|
|
910
910
|
'supply': number;
|
|
911
|
+
'bookingLimitPerAccount': number | null;
|
|
911
912
|
'slotDuration': number;
|
|
912
913
|
'price': number;
|
|
913
914
|
'description': string | null;
|
|
@@ -2134,6 +2135,7 @@ export interface BaseSideEffect {
|
|
|
2134
2135
|
'newAccountTierId': string | null;
|
|
2135
2136
|
'removedAccountTierId': string | null;
|
|
2136
2137
|
'passWithQuestionChoiceId': string | null;
|
|
2138
|
+
'purchasedAddOnId': string | null;
|
|
2137
2139
|
'joinGroupId': string | null;
|
|
2138
2140
|
'leaveGroupId': string | null;
|
|
2139
2141
|
'addToTierId': string | null;
|
|
@@ -2621,6 +2623,7 @@ export interface BookingSpace {
|
|
|
2621
2623
|
'name': string;
|
|
2622
2624
|
'slug': string;
|
|
2623
2625
|
'supply': number;
|
|
2626
|
+
'bookingLimitPerAccount': number | null;
|
|
2624
2627
|
'slotDuration': number;
|
|
2625
2628
|
'price': number;
|
|
2626
2629
|
'description': string | null;
|
|
@@ -2682,6 +2685,7 @@ export interface BookingSpaceBlackoutUpdateInputs {
|
|
|
2682
2685
|
export interface BookingSpaceCreateInputs {
|
|
2683
2686
|
'name': string;
|
|
2684
2687
|
'supply': EventCreateInputsSplitPaymentPercentage;
|
|
2688
|
+
'bookingLimitPerAccount'?: AdvertisementCreateInputsWeight | null;
|
|
2685
2689
|
'slotDuration': EventCreateInputsSplitPaymentPercentage;
|
|
2686
2690
|
'price'?: EventCreateInputsSplitPaymentPercentage;
|
|
2687
2691
|
'description'?: string | null;
|
|
@@ -2864,6 +2868,7 @@ export interface BookingSpaceTranslationUpdateInputs {
|
|
|
2864
2868
|
export interface BookingSpaceUpdateInputs {
|
|
2865
2869
|
'name'?: string;
|
|
2866
2870
|
'supply'?: EventCreateInputsSplitPaymentPercentage;
|
|
2871
|
+
'bookingLimitPerAccount'?: AdvertisementCreateInputsWeight | null;
|
|
2867
2872
|
'price'?: EventCreateInputsSplitPaymentPercentage;
|
|
2868
2873
|
'description'?: string | null;
|
|
2869
2874
|
'imageId'?: string | null;
|
|
@@ -11276,6 +11281,7 @@ export interface SideEffect {
|
|
|
11276
11281
|
'newAccountTierId': string | null;
|
|
11277
11282
|
'removedAccountTierId': string | null;
|
|
11278
11283
|
'passWithQuestionChoiceId': string | null;
|
|
11284
|
+
'purchasedAddOnId': string | null;
|
|
11279
11285
|
'joinGroupId': string | null;
|
|
11280
11286
|
'leaveGroupId': string | null;
|
|
11281
11287
|
'addToTierId': string | null;
|
|
@@ -11289,6 +11295,7 @@ export interface SideEffect {
|
|
|
11289
11295
|
'newAccountTier': BaseTier | null;
|
|
11290
11296
|
'removedAccountTier': BaseTier | null;
|
|
11291
11297
|
'passWithQuestionChoice': BaseRegistrationQuestionChoice | null;
|
|
11298
|
+
'purchasedAddOn': BaseEventAddOn | null;
|
|
11292
11299
|
'joinGroup': BaseGroup | null;
|
|
11293
11300
|
'leaveGroup': BaseGroup | null;
|
|
11294
11301
|
'addToTier': BaseTier | null;
|
|
@@ -11313,7 +11320,8 @@ export declare enum SideEffectTriggerType {
|
|
|
11313
11320
|
NewAccountTier = "NEW_ACCOUNT_TIER",
|
|
11314
11321
|
RemovedAccountTier = "REMOVED_ACCOUNT_TIER",
|
|
11315
11322
|
NewPassOfPassType = "NEW_PASS_OF_PASS_TYPE",
|
|
11316
|
-
PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE"
|
|
11323
|
+
PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE",
|
|
11324
|
+
PurchasedAddon = "PURCHASED_ADDON"
|
|
11317
11325
|
}
|
|
11318
11326
|
export interface SponsorshipLevelTranslation {
|
|
11319
11327
|
'id': number;
|
package/dist/api.js
CHANGED
|
@@ -2420,6 +2420,7 @@ var SideEffectTriggerType;
|
|
|
2420
2420
|
SideEffectTriggerType["RemovedAccountTier"] = "REMOVED_ACCOUNT_TIER";
|
|
2421
2421
|
SideEffectTriggerType["NewPassOfPassType"] = "NEW_PASS_OF_PASS_TYPE";
|
|
2422
2422
|
SideEffectTriggerType["PassWithQuestionChoice"] = "PASS_WITH_QUESTION_CHOICE";
|
|
2423
|
+
SideEffectTriggerType["PurchasedAddon"] = "PURCHASED_ADDON";
|
|
2423
2424
|
})(SideEffectTriggerType || (exports.SideEffectTriggerType = SideEffectTriggerType = {}));
|
|
2424
2425
|
var StorageConfigTypeEnum;
|
|
2425
2426
|
(function (StorageConfigTypeEnum) {
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -908,6 +908,7 @@ export interface BaseBookingSpace {
|
|
|
908
908
|
'name': string;
|
|
909
909
|
'slug': string;
|
|
910
910
|
'supply': number;
|
|
911
|
+
'bookingLimitPerAccount': number | null;
|
|
911
912
|
'slotDuration': number;
|
|
912
913
|
'price': number;
|
|
913
914
|
'description': string | null;
|
|
@@ -2134,6 +2135,7 @@ export interface BaseSideEffect {
|
|
|
2134
2135
|
'newAccountTierId': string | null;
|
|
2135
2136
|
'removedAccountTierId': string | null;
|
|
2136
2137
|
'passWithQuestionChoiceId': string | null;
|
|
2138
|
+
'purchasedAddOnId': string | null;
|
|
2137
2139
|
'joinGroupId': string | null;
|
|
2138
2140
|
'leaveGroupId': string | null;
|
|
2139
2141
|
'addToTierId': string | null;
|
|
@@ -2621,6 +2623,7 @@ export interface BookingSpace {
|
|
|
2621
2623
|
'name': string;
|
|
2622
2624
|
'slug': string;
|
|
2623
2625
|
'supply': number;
|
|
2626
|
+
'bookingLimitPerAccount': number | null;
|
|
2624
2627
|
'slotDuration': number;
|
|
2625
2628
|
'price': number;
|
|
2626
2629
|
'description': string | null;
|
|
@@ -2682,6 +2685,7 @@ export interface BookingSpaceBlackoutUpdateInputs {
|
|
|
2682
2685
|
export interface BookingSpaceCreateInputs {
|
|
2683
2686
|
'name': string;
|
|
2684
2687
|
'supply': EventCreateInputsSplitPaymentPercentage;
|
|
2688
|
+
'bookingLimitPerAccount'?: AdvertisementCreateInputsWeight | null;
|
|
2685
2689
|
'slotDuration': EventCreateInputsSplitPaymentPercentage;
|
|
2686
2690
|
'price'?: EventCreateInputsSplitPaymentPercentage;
|
|
2687
2691
|
'description'?: string | null;
|
|
@@ -2864,6 +2868,7 @@ export interface BookingSpaceTranslationUpdateInputs {
|
|
|
2864
2868
|
export interface BookingSpaceUpdateInputs {
|
|
2865
2869
|
'name'?: string;
|
|
2866
2870
|
'supply'?: EventCreateInputsSplitPaymentPercentage;
|
|
2871
|
+
'bookingLimitPerAccount'?: AdvertisementCreateInputsWeight | null;
|
|
2867
2872
|
'price'?: EventCreateInputsSplitPaymentPercentage;
|
|
2868
2873
|
'description'?: string | null;
|
|
2869
2874
|
'imageId'?: string | null;
|
|
@@ -11276,6 +11281,7 @@ export interface SideEffect {
|
|
|
11276
11281
|
'newAccountTierId': string | null;
|
|
11277
11282
|
'removedAccountTierId': string | null;
|
|
11278
11283
|
'passWithQuestionChoiceId': string | null;
|
|
11284
|
+
'purchasedAddOnId': string | null;
|
|
11279
11285
|
'joinGroupId': string | null;
|
|
11280
11286
|
'leaveGroupId': string | null;
|
|
11281
11287
|
'addToTierId': string | null;
|
|
@@ -11289,6 +11295,7 @@ export interface SideEffect {
|
|
|
11289
11295
|
'newAccountTier': BaseTier | null;
|
|
11290
11296
|
'removedAccountTier': BaseTier | null;
|
|
11291
11297
|
'passWithQuestionChoice': BaseRegistrationQuestionChoice | null;
|
|
11298
|
+
'purchasedAddOn': BaseEventAddOn | null;
|
|
11292
11299
|
'joinGroup': BaseGroup | null;
|
|
11293
11300
|
'leaveGroup': BaseGroup | null;
|
|
11294
11301
|
'addToTier': BaseTier | null;
|
|
@@ -11313,7 +11320,8 @@ export declare enum SideEffectTriggerType {
|
|
|
11313
11320
|
NewAccountTier = "NEW_ACCOUNT_TIER",
|
|
11314
11321
|
RemovedAccountTier = "REMOVED_ACCOUNT_TIER",
|
|
11315
11322
|
NewPassOfPassType = "NEW_PASS_OF_PASS_TYPE",
|
|
11316
|
-
PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE"
|
|
11323
|
+
PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE",
|
|
11324
|
+
PurchasedAddon = "PURCHASED_ADDON"
|
|
11317
11325
|
}
|
|
11318
11326
|
export interface SponsorshipLevelTranslation {
|
|
11319
11327
|
'id': number;
|
package/dist/esm/api.js
CHANGED
|
@@ -2391,6 +2391,7 @@ export var SideEffectTriggerType;
|
|
|
2391
2391
|
SideEffectTriggerType["RemovedAccountTier"] = "REMOVED_ACCOUNT_TIER";
|
|
2392
2392
|
SideEffectTriggerType["NewPassOfPassType"] = "NEW_PASS_OF_PASS_TYPE";
|
|
2393
2393
|
SideEffectTriggerType["PassWithQuestionChoice"] = "PASS_WITH_QUESTION_CHOICE";
|
|
2394
|
+
SideEffectTriggerType["PurchasedAddon"] = "PURCHASED_ADDON";
|
|
2394
2395
|
})(SideEffectTriggerType || (SideEffectTriggerType = {}));
|
|
2395
2396
|
export var StorageConfigTypeEnum;
|
|
2396
2397
|
(function (StorageConfigTypeEnum) {
|
package/docs/BaseBookingSpace.md
CHANGED
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
10
|
**slug** | **string** | | [default to undefined]
|
|
11
11
|
**supply** | **number** | | [default to undefined]
|
|
12
|
+
**bookingLimitPerAccount** | **number** | | [default to undefined]
|
|
12
13
|
**slotDuration** | **number** | | [default to undefined]
|
|
13
14
|
**price** | **number** | | [default to undefined]
|
|
14
15
|
**description** | **string** | | [default to undefined]
|
|
@@ -31,6 +32,7 @@ const instance: BaseBookingSpace = {
|
|
|
31
32
|
name,
|
|
32
33
|
slug,
|
|
33
34
|
supply,
|
|
35
|
+
bookingLimitPerAccount,
|
|
34
36
|
slotDuration,
|
|
35
37
|
price,
|
|
36
38
|
description,
|
package/docs/BaseSideEffect.md
CHANGED
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**newAccountTierId** | **string** | | [default to undefined]
|
|
12
12
|
**removedAccountTierId** | **string** | | [default to undefined]
|
|
13
13
|
**passWithQuestionChoiceId** | **string** | | [default to undefined]
|
|
14
|
+
**purchasedAddOnId** | **string** | | [default to undefined]
|
|
14
15
|
**joinGroupId** | **string** | | [default to undefined]
|
|
15
16
|
**leaveGroupId** | **string** | | [default to undefined]
|
|
16
17
|
**addToTierId** | **string** | | [default to undefined]
|
|
@@ -31,6 +32,7 @@ const instance: BaseSideEffect = {
|
|
|
31
32
|
newAccountTierId,
|
|
32
33
|
removedAccountTierId,
|
|
33
34
|
passWithQuestionChoiceId,
|
|
35
|
+
purchasedAddOnId,
|
|
34
36
|
joinGroupId,
|
|
35
37
|
leaveGroupId,
|
|
36
38
|
addToTierId,
|
package/docs/BookingSpace.md
CHANGED
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
10
|
**slug** | **string** | | [default to undefined]
|
|
11
11
|
**supply** | **number** | | [default to undefined]
|
|
12
|
+
**bookingLimitPerAccount** | **number** | | [default to undefined]
|
|
12
13
|
**slotDuration** | **number** | | [default to undefined]
|
|
13
14
|
**price** | **number** | | [default to undefined]
|
|
14
15
|
**description** | **string** | | [default to undefined]
|
|
@@ -44,6 +45,7 @@ const instance: BookingSpace = {
|
|
|
44
45
|
name,
|
|
45
46
|
slug,
|
|
46
47
|
supply,
|
|
48
|
+
bookingLimitPerAccount,
|
|
47
49
|
slotDuration,
|
|
48
50
|
price,
|
|
49
51
|
description,
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | | [default to undefined]
|
|
9
9
|
**supply** | [**EventCreateInputsSplitPaymentPercentage**](EventCreateInputsSplitPaymentPercentage.md) | | [default to undefined]
|
|
10
|
+
**bookingLimitPerAccount** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
10
11
|
**slotDuration** | [**EventCreateInputsSplitPaymentPercentage**](EventCreateInputsSplitPaymentPercentage.md) | | [default to undefined]
|
|
11
12
|
**price** | [**EventCreateInputsSplitPaymentPercentage**](EventCreateInputsSplitPaymentPercentage.md) | | [optional] [default to undefined]
|
|
12
13
|
**description** | **string** | | [optional] [default to undefined]
|
|
@@ -36,6 +37,7 @@ import { BookingSpaceCreateInputs } from '@connectedxm/admin-sdk';
|
|
|
36
37
|
const instance: BookingSpaceCreateInputs = {
|
|
37
38
|
name,
|
|
38
39
|
supply,
|
|
40
|
+
bookingLimitPerAccount,
|
|
39
41
|
slotDuration,
|
|
40
42
|
price,
|
|
41
43
|
description,
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**supply** | [**EventCreateInputsSplitPaymentPercentage**](EventCreateInputsSplitPaymentPercentage.md) | | [optional] [default to undefined]
|
|
10
|
+
**bookingLimitPerAccount** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
10
11
|
**price** | [**EventCreateInputsSplitPaymentPercentage**](EventCreateInputsSplitPaymentPercentage.md) | | [optional] [default to undefined]
|
|
11
12
|
**description** | **string** | | [optional] [default to undefined]
|
|
12
13
|
**imageId** | **string** | | [optional] [default to undefined]
|
|
@@ -35,6 +36,7 @@ import { BookingSpaceUpdateInputs } from '@connectedxm/admin-sdk';
|
|
|
35
36
|
const instance: BookingSpaceUpdateInputs = {
|
|
36
37
|
name,
|
|
37
38
|
supply,
|
|
39
|
+
bookingLimitPerAccount,
|
|
38
40
|
price,
|
|
39
41
|
description,
|
|
40
42
|
imageId,
|
package/docs/SideEffect.md
CHANGED
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**newAccountTierId** | **string** | | [default to undefined]
|
|
12
12
|
**removedAccountTierId** | **string** | | [default to undefined]
|
|
13
13
|
**passWithQuestionChoiceId** | **string** | | [default to undefined]
|
|
14
|
+
**purchasedAddOnId** | **string** | | [default to undefined]
|
|
14
15
|
**joinGroupId** | **string** | | [default to undefined]
|
|
15
16
|
**leaveGroupId** | **string** | | [default to undefined]
|
|
16
17
|
**addToTierId** | **string** | | [default to undefined]
|
|
@@ -24,6 +25,7 @@ Name | Type | Description | Notes
|
|
|
24
25
|
**newAccountTier** | [**BaseTier**](BaseTier.md) | | [default to undefined]
|
|
25
26
|
**removedAccountTier** | [**BaseTier**](BaseTier.md) | | [default to undefined]
|
|
26
27
|
**passWithQuestionChoice** | [**BaseRegistrationQuestionChoice**](BaseRegistrationQuestionChoice.md) | | [default to undefined]
|
|
28
|
+
**purchasedAddOn** | [**BaseEventAddOn**](BaseEventAddOn.md) | | [default to undefined]
|
|
27
29
|
**joinGroup** | [**BaseGroup**](BaseGroup.md) | | [default to undefined]
|
|
28
30
|
**leaveGroup** | [**BaseGroup**](BaseGroup.md) | | [default to undefined]
|
|
29
31
|
**addToTier** | [**BaseTier**](BaseTier.md) | | [default to undefined]
|
|
@@ -46,6 +48,7 @@ const instance: SideEffect = {
|
|
|
46
48
|
newAccountTierId,
|
|
47
49
|
removedAccountTierId,
|
|
48
50
|
passWithQuestionChoiceId,
|
|
51
|
+
purchasedAddOnId,
|
|
49
52
|
joinGroupId,
|
|
50
53
|
leaveGroupId,
|
|
51
54
|
addToTierId,
|
|
@@ -59,6 +62,7 @@ const instance: SideEffect = {
|
|
|
59
62
|
newAccountTier,
|
|
60
63
|
removedAccountTier,
|
|
61
64
|
passWithQuestionChoice,
|
|
65
|
+
purchasedAddOn,
|
|
62
66
|
joinGroup,
|
|
63
67
|
leaveGroup,
|
|
64
68
|
addToTier,
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
|
|
14
14
|
* `PassWithQuestionChoice` (value: `'PASS_WITH_QUESTION_CHOICE'`)
|
|
15
15
|
|
|
16
|
+
* `PurchasedAddon` (value: `'PURCHASED_ADDON'`)
|
|
17
|
+
|
|
16
18
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|