@connectedxm/admin-sdk 7.2.5 → 7.2.8

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 CHANGED
@@ -1519,6 +1519,7 @@ export interface BaseEventSession {
1519
1519
  'tracks': Array<BaseEventTrack>;
1520
1520
  'nonSession': boolean;
1521
1521
  'visibility': EventSessionVisibility;
1522
+ 'featured': boolean;
1522
1523
  'location': BaseEventSessionLocation | null;
1523
1524
  'registrationEnabled': boolean;
1524
1525
  'price': number | null;
@@ -2300,6 +2301,7 @@ export interface BaseSideEffect {
2300
2301
  'newAccountTierId': string | null;
2301
2302
  'removedAccountTierId': string | null;
2302
2303
  'passWithQuestionChoiceId': string | null;
2304
+ 'purchasedAddOnId': string | null;
2303
2305
  'joinGroupId': string | null;
2304
2306
  'leaveGroupId': string | null;
2305
2307
  'addToTierId': string | null;
@@ -5808,6 +5810,7 @@ export interface EventSession {
5808
5810
  'tracks': Array<BaseEventTrack>;
5809
5811
  'nonSession': boolean;
5810
5812
  'visibility': EventSessionVisibility;
5813
+ 'featured': boolean;
5811
5814
  'location': BaseEventSessionLocation | null;
5812
5815
  'registrationEnabled': boolean;
5813
5816
  'price': number | null;
@@ -5870,6 +5873,7 @@ export interface EventSessionCreateInputs {
5870
5873
  'nonSession'?: boolean;
5871
5874
  'imageId'?: string | null;
5872
5875
  'visibility'?: EventSessionVisibility;
5876
+ 'featured'?: boolean;
5873
5877
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5874
5878
  'registrationEnabled'?: boolean;
5875
5879
  'onsiteRegistration'?: boolean;
@@ -6234,6 +6238,7 @@ export interface EventSessionUpdateInputs {
6234
6238
  'nonSession'?: boolean;
6235
6239
  'imageId'?: string | null;
6236
6240
  'visibility'?: EventSessionVisibility;
6241
+ 'featured'?: boolean;
6237
6242
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
6238
6243
  'registrationEnabled'?: boolean;
6239
6244
  'onsiteRegistration'?: boolean;
@@ -12693,6 +12698,7 @@ export interface SideEffect {
12693
12698
  'newAccountTierId': string | null;
12694
12699
  'removedAccountTierId': string | null;
12695
12700
  'passWithQuestionChoiceId': string | null;
12701
+ 'purchasedAddOnId': string | null;
12696
12702
  'joinGroupId': string | null;
12697
12703
  'leaveGroupId': string | null;
12698
12704
  'addToTierId': string | null;
@@ -12706,6 +12712,7 @@ export interface SideEffect {
12706
12712
  'newAccountTier': BaseTier | null;
12707
12713
  'removedAccountTier': BaseTier | null;
12708
12714
  'passWithQuestionChoice': BaseRegistrationQuestionChoice | null;
12715
+ 'purchasedAddOn': BaseEventAddOn | null;
12709
12716
  'joinGroup': BaseGroup | null;
12710
12717
  'leaveGroup': BaseGroup | null;
12711
12718
  'addToTier': BaseTier | null;
@@ -12734,7 +12741,8 @@ export enum SideEffectTriggerType {
12734
12741
  NewAccountTier = 'NEW_ACCOUNT_TIER',
12735
12742
  RemovedAccountTier = 'REMOVED_ACCOUNT_TIER',
12736
12743
  NewPassOfPassType = 'NEW_PASS_OF_PASS_TYPE',
12737
- PassWithQuestionChoice = 'PASS_WITH_QUESTION_CHOICE'
12744
+ PassWithQuestionChoice = 'PASS_WITH_QUESTION_CHOICE',
12745
+ PurchasedAddon = 'PURCHASED_ADDON'
12738
12746
  }
12739
12747
 
12740
12748
 
package/dist/api.d.ts CHANGED
@@ -1400,6 +1400,7 @@ export interface BaseEventSession {
1400
1400
  'tracks': Array<BaseEventTrack>;
1401
1401
  'nonSession': boolean;
1402
1402
  'visibility': EventSessionVisibility;
1403
+ 'featured': boolean;
1403
1404
  'location': BaseEventSessionLocation | null;
1404
1405
  'registrationEnabled': boolean;
1405
1406
  'price': number | null;
@@ -2133,6 +2134,7 @@ export interface BaseSideEffect {
2133
2134
  'newAccountTierId': string | null;
2134
2135
  'removedAccountTierId': string | null;
2135
2136
  'passWithQuestionChoiceId': string | null;
2137
+ 'purchasedAddOnId': string | null;
2136
2138
  'joinGroupId': string | null;
2137
2139
  'leaveGroupId': string | null;
2138
2140
  'addToTierId': string | null;
@@ -5300,6 +5302,7 @@ export interface EventSession {
5300
5302
  'tracks': Array<BaseEventTrack>;
5301
5303
  'nonSession': boolean;
5302
5304
  'visibility': EventSessionVisibility;
5305
+ 'featured': boolean;
5303
5306
  'location': BaseEventSessionLocation | null;
5304
5307
  'registrationEnabled': boolean;
5305
5308
  'price': number | null;
@@ -5356,6 +5359,7 @@ export interface EventSessionCreateInputs {
5356
5359
  'nonSession'?: boolean;
5357
5360
  'imageId'?: string | null;
5358
5361
  'visibility'?: EventSessionVisibility;
5362
+ 'featured'?: boolean;
5359
5363
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5360
5364
  'registrationEnabled'?: boolean;
5361
5365
  'onsiteRegistration'?: boolean;
@@ -5709,6 +5713,7 @@ export interface EventSessionUpdateInputs {
5709
5713
  'nonSession'?: boolean;
5710
5714
  'imageId'?: string | null;
5711
5715
  'visibility'?: EventSessionVisibility;
5716
+ 'featured'?: boolean;
5712
5717
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5713
5718
  'registrationEnabled'?: boolean;
5714
5719
  'onsiteRegistration'?: boolean;
@@ -11272,6 +11277,7 @@ export interface SideEffect {
11272
11277
  'newAccountTierId': string | null;
11273
11278
  'removedAccountTierId': string | null;
11274
11279
  'passWithQuestionChoiceId': string | null;
11280
+ 'purchasedAddOnId': string | null;
11275
11281
  'joinGroupId': string | null;
11276
11282
  'leaveGroupId': string | null;
11277
11283
  'addToTierId': string | null;
@@ -11285,6 +11291,7 @@ export interface SideEffect {
11285
11291
  'newAccountTier': BaseTier | null;
11286
11292
  'removedAccountTier': BaseTier | null;
11287
11293
  'passWithQuestionChoice': BaseRegistrationQuestionChoice | null;
11294
+ 'purchasedAddOn': BaseEventAddOn | null;
11288
11295
  'joinGroup': BaseGroup | null;
11289
11296
  'leaveGroup': BaseGroup | null;
11290
11297
  'addToTier': BaseTier | null;
@@ -11309,7 +11316,8 @@ export declare enum SideEffectTriggerType {
11309
11316
  NewAccountTier = "NEW_ACCOUNT_TIER",
11310
11317
  RemovedAccountTier = "REMOVED_ACCOUNT_TIER",
11311
11318
  NewPassOfPassType = "NEW_PASS_OF_PASS_TYPE",
11312
- PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE"
11319
+ PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE",
11320
+ PurchasedAddon = "PURCHASED_ADDON"
11313
11321
  }
11314
11322
  export interface SponsorshipLevelTranslation {
11315
11323
  '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
@@ -1400,6 +1400,7 @@ export interface BaseEventSession {
1400
1400
  'tracks': Array<BaseEventTrack>;
1401
1401
  'nonSession': boolean;
1402
1402
  'visibility': EventSessionVisibility;
1403
+ 'featured': boolean;
1403
1404
  'location': BaseEventSessionLocation | null;
1404
1405
  'registrationEnabled': boolean;
1405
1406
  'price': number | null;
@@ -2133,6 +2134,7 @@ export interface BaseSideEffect {
2133
2134
  'newAccountTierId': string | null;
2134
2135
  'removedAccountTierId': string | null;
2135
2136
  'passWithQuestionChoiceId': string | null;
2137
+ 'purchasedAddOnId': string | null;
2136
2138
  'joinGroupId': string | null;
2137
2139
  'leaveGroupId': string | null;
2138
2140
  'addToTierId': string | null;
@@ -5300,6 +5302,7 @@ export interface EventSession {
5300
5302
  'tracks': Array<BaseEventTrack>;
5301
5303
  'nonSession': boolean;
5302
5304
  'visibility': EventSessionVisibility;
5305
+ 'featured': boolean;
5303
5306
  'location': BaseEventSessionLocation | null;
5304
5307
  'registrationEnabled': boolean;
5305
5308
  'price': number | null;
@@ -5356,6 +5359,7 @@ export interface EventSessionCreateInputs {
5356
5359
  'nonSession'?: boolean;
5357
5360
  'imageId'?: string | null;
5358
5361
  'visibility'?: EventSessionVisibility;
5362
+ 'featured'?: boolean;
5359
5363
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5360
5364
  'registrationEnabled'?: boolean;
5361
5365
  'onsiteRegistration'?: boolean;
@@ -5709,6 +5713,7 @@ export interface EventSessionUpdateInputs {
5709
5713
  'nonSession'?: boolean;
5710
5714
  'imageId'?: string | null;
5711
5715
  'visibility'?: EventSessionVisibility;
5716
+ 'featured'?: boolean;
5712
5717
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5713
5718
  'registrationEnabled'?: boolean;
5714
5719
  'onsiteRegistration'?: boolean;
@@ -11272,6 +11277,7 @@ export interface SideEffect {
11272
11277
  'newAccountTierId': string | null;
11273
11278
  'removedAccountTierId': string | null;
11274
11279
  'passWithQuestionChoiceId': string | null;
11280
+ 'purchasedAddOnId': string | null;
11275
11281
  'joinGroupId': string | null;
11276
11282
  'leaveGroupId': string | null;
11277
11283
  'addToTierId': string | null;
@@ -11285,6 +11291,7 @@ export interface SideEffect {
11285
11291
  'newAccountTier': BaseTier | null;
11286
11292
  'removedAccountTier': BaseTier | null;
11287
11293
  'passWithQuestionChoice': BaseRegistrationQuestionChoice | null;
11294
+ 'purchasedAddOn': BaseEventAddOn | null;
11288
11295
  'joinGroup': BaseGroup | null;
11289
11296
  'leaveGroup': BaseGroup | null;
11290
11297
  'addToTier': BaseTier | null;
@@ -11309,7 +11316,8 @@ export declare enum SideEffectTriggerType {
11309
11316
  NewAccountTier = "NEW_ACCOUNT_TIER",
11310
11317
  RemovedAccountTier = "REMOVED_ACCOUNT_TIER",
11311
11318
  NewPassOfPassType = "NEW_PASS_OF_PASS_TYPE",
11312
- PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE"
11319
+ PassWithQuestionChoice = "PASS_WITH_QUESTION_CHOICE",
11320
+ PurchasedAddon = "PURCHASED_ADDON"
11313
11321
  }
11314
11322
  export interface SponsorshipLevelTranslation {
11315
11323
  '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) {
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
20
20
  **tracks** | [**Array&lt;BaseEventTrack&gt;**](BaseEventTrack.md) | | [default to undefined]
21
21
  **nonSession** | **boolean** | | [default to undefined]
22
22
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [default to undefined]
23
+ **featured** | **boolean** | | [default to undefined]
23
24
  **location** | [**BaseEventSessionLocation**](BaseEventSessionLocation.md) | | [default to undefined]
24
25
  **registrationEnabled** | **boolean** | | [default to undefined]
25
26
  **price** | **number** | | [default to undefined]
@@ -52,6 +53,7 @@ const instance: BaseEventSession = {
52
53
  tracks,
53
54
  nonSession,
54
55
  visibility,
56
+ featured,
55
57
  location,
56
58
  registrationEnabled,
57
59
  price,
@@ -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,
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
20
20
  **tracks** | [**Array&lt;BaseEventTrack&gt;**](BaseEventTrack.md) | | [default to undefined]
21
21
  **nonSession** | **boolean** | | [default to undefined]
22
22
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [default to undefined]
23
+ **featured** | **boolean** | | [default to undefined]
23
24
  **location** | [**BaseEventSessionLocation**](BaseEventSessionLocation.md) | | [default to undefined]
24
25
  **registrationEnabled** | **boolean** | | [default to undefined]
25
26
  **price** | **number** | | [default to undefined]
@@ -68,6 +69,7 @@ const instance: EventSession = {
68
69
  tracks,
69
70
  nonSession,
70
71
  visibility,
72
+ featured,
71
73
  location,
72
74
  registrationEnabled,
73
75
  price,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **nonSession** | **boolean** | | [optional] [default to undefined]
16
16
  **imageId** | **string** | | [optional] [default to undefined]
17
17
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [optional] [default to undefined]
18
+ **featured** | **boolean** | | [optional] [default to undefined]
18
19
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
19
20
  **registrationEnabled** | **boolean** | | [optional] [default to undefined]
20
21
  **onsiteRegistration** | **boolean** | | [optional] [default to undefined]
@@ -50,6 +51,7 @@ const instance: EventSessionCreateInputs = {
50
51
  nonSession,
51
52
  imageId,
52
53
  visibility,
54
+ featured,
53
55
  sortOrder,
54
56
  registrationEnabled,
55
57
  onsiteRegistration,
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **nonSession** | **boolean** | | [optional] [default to undefined]
16
16
  **imageId** | **string** | | [optional] [default to undefined]
17
17
  **visibility** | [**EventSessionVisibility**](EventSessionVisibility.md) | | [optional] [default to undefined]
18
+ **featured** | **boolean** | | [optional] [default to undefined]
18
19
  **sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
19
20
  **registrationEnabled** | **boolean** | | [optional] [default to undefined]
20
21
  **onsiteRegistration** | **boolean** | | [optional] [default to undefined]
@@ -50,6 +51,7 @@ const instance: EventSessionUpdateInputs = {
50
51
  nonSession,
51
52
  imageId,
52
53
  visibility,
54
+ featured,
53
55
  sortOrder,
54
56
  registrationEnabled,
55
57
  onsiteRegistration,
@@ -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)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "7.2.5",
3
+ "version": "7.2.8",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {