@connectedxm/admin-sdk 6.30.1 → 6.31.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/api.ts +18 -4
- package/dist/api.d.ts +18 -4
- package/dist/api.js +5 -4
- package/dist/esm/api.d.ts +18 -4
- package/dist/esm/api.js +5 -4
- package/docs/ActivationCompletion.md +4 -0
- package/docs/Activity.md +2 -0
- package/docs/ActivityCreateInputs.md +4 -0
- package/docs/ActivityUpdateInputs.md +2 -0
- package/docs/BaseActivationCompletion.md +4 -0
- package/docs/BaseActivity.md +2 -0
- package/docs/BaseEventActivation.md +2 -0
- package/docs/EventActivation.md +2 -0
- package/docs/EventActivationCreateInputs.md +2 -0
- package/docs/EventActivationUpdateInputs.md +2 -0
- package/docs/ImageType.md +7 -5
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -290,6 +290,8 @@ export interface ActivationCompletion {
|
|
|
290
290
|
'eventActivation': BaseEventActivation;
|
|
291
291
|
'earnedPoints': number;
|
|
292
292
|
'passId': string;
|
|
293
|
+
'imageId': string | null;
|
|
294
|
+
'image': BaseImage | null;
|
|
293
295
|
'pass': BaseEventPass;
|
|
294
296
|
'createdAt': string;
|
|
295
297
|
'updatedAt': string;
|
|
@@ -309,6 +311,7 @@ export interface Activity {
|
|
|
309
311
|
'status': ActivityStatus;
|
|
310
312
|
'featured': boolean;
|
|
311
313
|
'pinned': boolean;
|
|
314
|
+
'pinnedExplore': boolean;
|
|
312
315
|
'giphyId': string | null;
|
|
313
316
|
'imageId': string | null;
|
|
314
317
|
'videoId': string | null;
|
|
@@ -336,6 +339,8 @@ export interface ActivityCreateInputs {
|
|
|
336
339
|
'message': string;
|
|
337
340
|
'entities'?: Array<ActivityEntityInputs> | null;
|
|
338
341
|
'featured'?: boolean;
|
|
342
|
+
'pinned'?: boolean;
|
|
343
|
+
'pinnedExplore'?: boolean;
|
|
339
344
|
'imageId'?: string | null;
|
|
340
345
|
'videoId'?: string | null;
|
|
341
346
|
'eventId'?: string | null;
|
|
@@ -397,6 +402,7 @@ export interface ActivityUpdateInputs {
|
|
|
397
402
|
'moderation'?: ModerationStatus | null;
|
|
398
403
|
'featured'?: boolean;
|
|
399
404
|
'pinned'?: boolean;
|
|
405
|
+
'pinnedExplore'?: boolean;
|
|
400
406
|
'imageId'?: string | null;
|
|
401
407
|
'videoId'?: string | null;
|
|
402
408
|
'meetingId'?: string | null;
|
|
@@ -816,6 +822,8 @@ export interface BaseActivationCompletion {
|
|
|
816
822
|
'eventActivation': BaseEventActivation;
|
|
817
823
|
'earnedPoints': number;
|
|
818
824
|
'passId': string;
|
|
825
|
+
'imageId': string | null;
|
|
826
|
+
'image': BaseImage | null;
|
|
819
827
|
}
|
|
820
828
|
export interface BaseActivity {
|
|
821
829
|
'id': string;
|
|
@@ -823,6 +831,7 @@ export interface BaseActivity {
|
|
|
823
831
|
'status': ActivityStatus;
|
|
824
832
|
'featured': boolean;
|
|
825
833
|
'pinned': boolean;
|
|
834
|
+
'pinnedExplore': boolean;
|
|
826
835
|
'giphyId': string | null;
|
|
827
836
|
'imageId': string | null;
|
|
828
837
|
'videoId': string | null;
|
|
@@ -1235,6 +1244,7 @@ export interface BaseEventActivation {
|
|
|
1235
1244
|
'accessLevel': PassTypeAccessLevel;
|
|
1236
1245
|
'sortOrder': number;
|
|
1237
1246
|
'survey': BaseSurvey | null;
|
|
1247
|
+
'imageUpload': boolean;
|
|
1238
1248
|
'_count': BaseEventActivationCount;
|
|
1239
1249
|
}
|
|
1240
1250
|
|
|
@@ -4765,6 +4775,7 @@ export interface EventActivation {
|
|
|
4765
4775
|
'accessLevel': PassTypeAccessLevel;
|
|
4766
4776
|
'sortOrder': number;
|
|
4767
4777
|
'survey': BaseSurvey | null;
|
|
4778
|
+
'imageUpload': boolean;
|
|
4768
4779
|
'_count': BaseEventActivationCount;
|
|
4769
4780
|
'eventId': string;
|
|
4770
4781
|
'event': BaseEvent;
|
|
@@ -4803,6 +4814,7 @@ export interface EventActivationCreateInputs {
|
|
|
4803
4814
|
'continuousScanning'?: boolean;
|
|
4804
4815
|
'scanType'?: OnSiteScanType | null;
|
|
4805
4816
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4817
|
+
'imageUpload'?: boolean;
|
|
4806
4818
|
}
|
|
4807
4819
|
|
|
4808
4820
|
|
|
@@ -4840,6 +4852,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4840
4852
|
'continuousScanning'?: boolean;
|
|
4841
4853
|
'scanType'?: OnSiteScanType | null;
|
|
4842
4854
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4855
|
+
'imageUpload'?: boolean;
|
|
4843
4856
|
}
|
|
4844
4857
|
|
|
4845
4858
|
|
|
@@ -10101,11 +10114,12 @@ export enum ImageModerationLevel {
|
|
|
10101
10114
|
|
|
10102
10115
|
export enum ImageType {
|
|
10103
10116
|
Admin = 'admin',
|
|
10104
|
-
|
|
10117
|
+
Account = 'account',
|
|
10118
|
+
Thread = 'thread',
|
|
10119
|
+
Content = 'content',
|
|
10105
10120
|
Activity = 'activity',
|
|
10106
|
-
|
|
10107
|
-
|
|
10108
|
-
Content = 'content'
|
|
10121
|
+
Event = 'event',
|
|
10122
|
+
Activation = 'activation'
|
|
10109
10123
|
}
|
|
10110
10124
|
|
|
10111
10125
|
|
package/dist/api.d.ts
CHANGED
|
@@ -266,6 +266,8 @@ export interface ActivationCompletion {
|
|
|
266
266
|
'eventActivation': BaseEventActivation;
|
|
267
267
|
'earnedPoints': number;
|
|
268
268
|
'passId': string;
|
|
269
|
+
'imageId': string | null;
|
|
270
|
+
'image': BaseImage | null;
|
|
269
271
|
'pass': BaseEventPass;
|
|
270
272
|
'createdAt': string;
|
|
271
273
|
'updatedAt': string;
|
|
@@ -285,6 +287,7 @@ export interface Activity {
|
|
|
285
287
|
'status': ActivityStatus;
|
|
286
288
|
'featured': boolean;
|
|
287
289
|
'pinned': boolean;
|
|
290
|
+
'pinnedExplore': boolean;
|
|
288
291
|
'giphyId': string | null;
|
|
289
292
|
'imageId': string | null;
|
|
290
293
|
'videoId': string | null;
|
|
@@ -310,6 +313,8 @@ export interface ActivityCreateInputs {
|
|
|
310
313
|
'message': string;
|
|
311
314
|
'entities'?: Array<ActivityEntityInputs> | null;
|
|
312
315
|
'featured'?: boolean;
|
|
316
|
+
'pinned'?: boolean;
|
|
317
|
+
'pinnedExplore'?: boolean;
|
|
313
318
|
'imageId'?: string | null;
|
|
314
319
|
'videoId'?: string | null;
|
|
315
320
|
'eventId'?: string | null;
|
|
@@ -359,6 +364,7 @@ export interface ActivityUpdateInputs {
|
|
|
359
364
|
'moderation'?: ModerationStatus | null;
|
|
360
365
|
'featured'?: boolean;
|
|
361
366
|
'pinned'?: boolean;
|
|
367
|
+
'pinnedExplore'?: boolean;
|
|
362
368
|
'imageId'?: string | null;
|
|
363
369
|
'videoId'?: string | null;
|
|
364
370
|
'meetingId'?: string | null;
|
|
@@ -739,6 +745,8 @@ export interface BaseActivationCompletion {
|
|
|
739
745
|
'eventActivation': BaseEventActivation;
|
|
740
746
|
'earnedPoints': number;
|
|
741
747
|
'passId': string;
|
|
748
|
+
'imageId': string | null;
|
|
749
|
+
'image': BaseImage | null;
|
|
742
750
|
}
|
|
743
751
|
export interface BaseActivity {
|
|
744
752
|
'id': string;
|
|
@@ -746,6 +754,7 @@ export interface BaseActivity {
|
|
|
746
754
|
'status': ActivityStatus;
|
|
747
755
|
'featured': boolean;
|
|
748
756
|
'pinned': boolean;
|
|
757
|
+
'pinnedExplore': boolean;
|
|
749
758
|
'giphyId': string | null;
|
|
750
759
|
'imageId': string | null;
|
|
751
760
|
'videoId': string | null;
|
|
@@ -1132,6 +1141,7 @@ export interface BaseEventActivation {
|
|
|
1132
1141
|
'accessLevel': PassTypeAccessLevel;
|
|
1133
1142
|
'sortOrder': number;
|
|
1134
1143
|
'survey': BaseSurvey | null;
|
|
1144
|
+
'imageUpload': boolean;
|
|
1135
1145
|
'_count': BaseEventActivationCount;
|
|
1136
1146
|
}
|
|
1137
1147
|
export interface BaseEventActivationCount {
|
|
@@ -4316,6 +4326,7 @@ export interface EventActivation {
|
|
|
4316
4326
|
'accessLevel': PassTypeAccessLevel;
|
|
4317
4327
|
'sortOrder': number;
|
|
4318
4328
|
'survey': BaseSurvey | null;
|
|
4329
|
+
'imageUpload': boolean;
|
|
4319
4330
|
'_count': BaseEventActivationCount;
|
|
4320
4331
|
'eventId': string;
|
|
4321
4332
|
'event': BaseEvent;
|
|
@@ -4352,6 +4363,7 @@ export interface EventActivationCreateInputs {
|
|
|
4352
4363
|
'continuousScanning'?: boolean;
|
|
4353
4364
|
'scanType'?: OnSiteScanType | null;
|
|
4354
4365
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4366
|
+
'imageUpload'?: boolean;
|
|
4355
4367
|
}
|
|
4356
4368
|
export interface EventActivationTranslation {
|
|
4357
4369
|
'locale': string;
|
|
@@ -4384,6 +4396,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4384
4396
|
'continuousScanning'?: boolean;
|
|
4385
4397
|
'scanType'?: OnSiteScanType | null;
|
|
4386
4398
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4399
|
+
'imageUpload'?: boolean;
|
|
4387
4400
|
}
|
|
4388
4401
|
export interface EventAddOn {
|
|
4389
4402
|
'id': string;
|
|
@@ -8904,11 +8917,12 @@ export declare enum ImageModerationLevel {
|
|
|
8904
8917
|
}
|
|
8905
8918
|
export declare enum ImageType {
|
|
8906
8919
|
Admin = "admin",
|
|
8907
|
-
|
|
8920
|
+
Account = "account",
|
|
8921
|
+
Thread = "thread",
|
|
8922
|
+
Content = "content",
|
|
8908
8923
|
Activity = "activity",
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
Content = "content"
|
|
8924
|
+
Event = "event",
|
|
8925
|
+
Activation = "activation"
|
|
8912
8926
|
}
|
|
8913
8927
|
export interface ImageUpdateInputs {
|
|
8914
8928
|
'name'?: string | null;
|
package/dist/api.js
CHANGED
|
@@ -1961,11 +1961,12 @@ var ImageModerationLevel;
|
|
|
1961
1961
|
var ImageType;
|
|
1962
1962
|
(function (ImageType) {
|
|
1963
1963
|
ImageType["Admin"] = "admin";
|
|
1964
|
-
ImageType["
|
|
1965
|
-
ImageType["
|
|
1966
|
-
ImageType["Banner"] = "banner";
|
|
1967
|
-
ImageType["Chat"] = "chat";
|
|
1964
|
+
ImageType["Account"] = "account";
|
|
1965
|
+
ImageType["Thread"] = "thread";
|
|
1968
1966
|
ImageType["Content"] = "content";
|
|
1967
|
+
ImageType["Activity"] = "activity";
|
|
1968
|
+
ImageType["Event"] = "event";
|
|
1969
|
+
ImageType["Activation"] = "activation";
|
|
1969
1970
|
})(ImageType || (exports.ImageType = ImageType = {}));
|
|
1970
1971
|
var ImpersonateAccount200ResponseStatusEnum;
|
|
1971
1972
|
(function (ImpersonateAccount200ResponseStatusEnum) {
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -266,6 +266,8 @@ export interface ActivationCompletion {
|
|
|
266
266
|
'eventActivation': BaseEventActivation;
|
|
267
267
|
'earnedPoints': number;
|
|
268
268
|
'passId': string;
|
|
269
|
+
'imageId': string | null;
|
|
270
|
+
'image': BaseImage | null;
|
|
269
271
|
'pass': BaseEventPass;
|
|
270
272
|
'createdAt': string;
|
|
271
273
|
'updatedAt': string;
|
|
@@ -285,6 +287,7 @@ export interface Activity {
|
|
|
285
287
|
'status': ActivityStatus;
|
|
286
288
|
'featured': boolean;
|
|
287
289
|
'pinned': boolean;
|
|
290
|
+
'pinnedExplore': boolean;
|
|
288
291
|
'giphyId': string | null;
|
|
289
292
|
'imageId': string | null;
|
|
290
293
|
'videoId': string | null;
|
|
@@ -310,6 +313,8 @@ export interface ActivityCreateInputs {
|
|
|
310
313
|
'message': string;
|
|
311
314
|
'entities'?: Array<ActivityEntityInputs> | null;
|
|
312
315
|
'featured'?: boolean;
|
|
316
|
+
'pinned'?: boolean;
|
|
317
|
+
'pinnedExplore'?: boolean;
|
|
313
318
|
'imageId'?: string | null;
|
|
314
319
|
'videoId'?: string | null;
|
|
315
320
|
'eventId'?: string | null;
|
|
@@ -359,6 +364,7 @@ export interface ActivityUpdateInputs {
|
|
|
359
364
|
'moderation'?: ModerationStatus | null;
|
|
360
365
|
'featured'?: boolean;
|
|
361
366
|
'pinned'?: boolean;
|
|
367
|
+
'pinnedExplore'?: boolean;
|
|
362
368
|
'imageId'?: string | null;
|
|
363
369
|
'videoId'?: string | null;
|
|
364
370
|
'meetingId'?: string | null;
|
|
@@ -739,6 +745,8 @@ export interface BaseActivationCompletion {
|
|
|
739
745
|
'eventActivation': BaseEventActivation;
|
|
740
746
|
'earnedPoints': number;
|
|
741
747
|
'passId': string;
|
|
748
|
+
'imageId': string | null;
|
|
749
|
+
'image': BaseImage | null;
|
|
742
750
|
}
|
|
743
751
|
export interface BaseActivity {
|
|
744
752
|
'id': string;
|
|
@@ -746,6 +754,7 @@ export interface BaseActivity {
|
|
|
746
754
|
'status': ActivityStatus;
|
|
747
755
|
'featured': boolean;
|
|
748
756
|
'pinned': boolean;
|
|
757
|
+
'pinnedExplore': boolean;
|
|
749
758
|
'giphyId': string | null;
|
|
750
759
|
'imageId': string | null;
|
|
751
760
|
'videoId': string | null;
|
|
@@ -1132,6 +1141,7 @@ export interface BaseEventActivation {
|
|
|
1132
1141
|
'accessLevel': PassTypeAccessLevel;
|
|
1133
1142
|
'sortOrder': number;
|
|
1134
1143
|
'survey': BaseSurvey | null;
|
|
1144
|
+
'imageUpload': boolean;
|
|
1135
1145
|
'_count': BaseEventActivationCount;
|
|
1136
1146
|
}
|
|
1137
1147
|
export interface BaseEventActivationCount {
|
|
@@ -4316,6 +4326,7 @@ export interface EventActivation {
|
|
|
4316
4326
|
'accessLevel': PassTypeAccessLevel;
|
|
4317
4327
|
'sortOrder': number;
|
|
4318
4328
|
'survey': BaseSurvey | null;
|
|
4329
|
+
'imageUpload': boolean;
|
|
4319
4330
|
'_count': BaseEventActivationCount;
|
|
4320
4331
|
'eventId': string;
|
|
4321
4332
|
'event': BaseEvent;
|
|
@@ -4352,6 +4363,7 @@ export interface EventActivationCreateInputs {
|
|
|
4352
4363
|
'continuousScanning'?: boolean;
|
|
4353
4364
|
'scanType'?: OnSiteScanType | null;
|
|
4354
4365
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4366
|
+
'imageUpload'?: boolean;
|
|
4355
4367
|
}
|
|
4356
4368
|
export interface EventActivationTranslation {
|
|
4357
4369
|
'locale': string;
|
|
@@ -4384,6 +4396,7 @@ export interface EventActivationUpdateInputs {
|
|
|
4384
4396
|
'continuousScanning'?: boolean;
|
|
4385
4397
|
'scanType'?: OnSiteScanType | null;
|
|
4386
4398
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
4399
|
+
'imageUpload'?: boolean;
|
|
4387
4400
|
}
|
|
4388
4401
|
export interface EventAddOn {
|
|
4389
4402
|
'id': string;
|
|
@@ -8904,11 +8917,12 @@ export declare enum ImageModerationLevel {
|
|
|
8904
8917
|
}
|
|
8905
8918
|
export declare enum ImageType {
|
|
8906
8919
|
Admin = "admin",
|
|
8907
|
-
|
|
8920
|
+
Account = "account",
|
|
8921
|
+
Thread = "thread",
|
|
8922
|
+
Content = "content",
|
|
8908
8923
|
Activity = "activity",
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
Content = "content"
|
|
8924
|
+
Event = "event",
|
|
8925
|
+
Activation = "activation"
|
|
8912
8926
|
}
|
|
8913
8927
|
export interface ImageUpdateInputs {
|
|
8914
8928
|
'name'?: string | null;
|
package/dist/esm/api.js
CHANGED
|
@@ -1931,11 +1931,12 @@ export var ImageModerationLevel;
|
|
|
1931
1931
|
export var ImageType;
|
|
1932
1932
|
(function (ImageType) {
|
|
1933
1933
|
ImageType["Admin"] = "admin";
|
|
1934
|
-
ImageType["
|
|
1935
|
-
ImageType["
|
|
1936
|
-
ImageType["Banner"] = "banner";
|
|
1937
|
-
ImageType["Chat"] = "chat";
|
|
1934
|
+
ImageType["Account"] = "account";
|
|
1935
|
+
ImageType["Thread"] = "thread";
|
|
1938
1936
|
ImageType["Content"] = "content";
|
|
1937
|
+
ImageType["Activity"] = "activity";
|
|
1938
|
+
ImageType["Event"] = "event";
|
|
1939
|
+
ImageType["Activation"] = "activation";
|
|
1939
1940
|
})(ImageType || (ImageType = {}));
|
|
1940
1941
|
export var ImpersonateAccount200ResponseStatusEnum;
|
|
1941
1942
|
(function (ImpersonateAccount200ResponseStatusEnum) {
|
|
@@ -11,6 +11,8 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**eventActivation** | [**BaseEventActivation**](BaseEventActivation.md) | | [default to undefined]
|
|
12
12
|
**earnedPoints** | **number** | | [default to undefined]
|
|
13
13
|
**passId** | **string** | | [default to undefined]
|
|
14
|
+
**imageId** | **string** | | [default to undefined]
|
|
15
|
+
**image** | [**BaseImage**](BaseImage.md) | | [default to undefined]
|
|
14
16
|
**pass** | [**BaseEventPass**](BaseEventPass.md) | | [default to undefined]
|
|
15
17
|
**createdAt** | **string** | | [default to undefined]
|
|
16
18
|
**updatedAt** | **string** | | [default to undefined]
|
|
@@ -27,6 +29,8 @@ const instance: ActivationCompletion = {
|
|
|
27
29
|
eventActivation,
|
|
28
30
|
earnedPoints,
|
|
29
31
|
passId,
|
|
32
|
+
imageId,
|
|
33
|
+
image,
|
|
30
34
|
pass,
|
|
31
35
|
createdAt,
|
|
32
36
|
updatedAt,
|
package/docs/Activity.md
CHANGED
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**status** | [**ActivityStatus**](ActivityStatus.md) | | [default to undefined]
|
|
11
11
|
**featured** | **boolean** | | [default to undefined]
|
|
12
12
|
**pinned** | **boolean** | | [default to undefined]
|
|
13
|
+
**pinnedExplore** | **boolean** | | [default to undefined]
|
|
13
14
|
**giphyId** | **string** | | [default to undefined]
|
|
14
15
|
**imageId** | **string** | | [default to undefined]
|
|
15
16
|
**videoId** | **string** | | [default to undefined]
|
|
@@ -42,6 +43,7 @@ const instance: Activity = {
|
|
|
42
43
|
status,
|
|
43
44
|
featured,
|
|
44
45
|
pinned,
|
|
46
|
+
pinnedExplore,
|
|
45
47
|
giphyId,
|
|
46
48
|
imageId,
|
|
47
49
|
videoId,
|
|
@@ -8,6 +8,8 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**message** | **string** | | [default to undefined]
|
|
9
9
|
**entities** | [**Array<ActivityEntityInputs>**](ActivityEntityInputs.md) | | [optional] [default to undefined]
|
|
10
10
|
**featured** | **boolean** | | [optional] [default to undefined]
|
|
11
|
+
**pinned** | **boolean** | | [optional] [default to undefined]
|
|
12
|
+
**pinnedExplore** | **boolean** | | [optional] [default to undefined]
|
|
11
13
|
**imageId** | **string** | | [optional] [default to undefined]
|
|
12
14
|
**videoId** | **string** | | [optional] [default to undefined]
|
|
13
15
|
**eventId** | **string** | | [optional] [default to undefined]
|
|
@@ -26,6 +28,8 @@ const instance: ActivityCreateInputs = {
|
|
|
26
28
|
message,
|
|
27
29
|
entities,
|
|
28
30
|
featured,
|
|
31
|
+
pinned,
|
|
32
|
+
pinnedExplore,
|
|
29
33
|
imageId,
|
|
30
34
|
videoId,
|
|
31
35
|
eventId,
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**moderation** | [**ModerationStatus**](ModerationStatus.md) | | [optional] [default to undefined]
|
|
12
12
|
**featured** | **boolean** | | [optional] [default to undefined]
|
|
13
13
|
**pinned** | **boolean** | | [optional] [default to undefined]
|
|
14
|
+
**pinnedExplore** | **boolean** | | [optional] [default to undefined]
|
|
14
15
|
**imageId** | **string** | | [optional] [default to undefined]
|
|
15
16
|
**videoId** | **string** | | [optional] [default to undefined]
|
|
16
17
|
**meetingId** | **string** | | [optional] [default to undefined]
|
|
@@ -28,6 +29,7 @@ const instance: ActivityUpdateInputs = {
|
|
|
28
29
|
moderation,
|
|
29
30
|
featured,
|
|
30
31
|
pinned,
|
|
32
|
+
pinnedExplore,
|
|
31
33
|
imageId,
|
|
32
34
|
videoId,
|
|
33
35
|
meetingId,
|
|
@@ -11,6 +11,8 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**eventActivation** | [**BaseEventActivation**](BaseEventActivation.md) | | [default to undefined]
|
|
12
12
|
**earnedPoints** | **number** | | [default to undefined]
|
|
13
13
|
**passId** | **string** | | [default to undefined]
|
|
14
|
+
**imageId** | **string** | | [default to undefined]
|
|
15
|
+
**image** | [**BaseImage**](BaseImage.md) | | [default to undefined]
|
|
14
16
|
|
|
15
17
|
## Example
|
|
16
18
|
|
|
@@ -24,6 +26,8 @@ const instance: BaseActivationCompletion = {
|
|
|
24
26
|
eventActivation,
|
|
25
27
|
earnedPoints,
|
|
26
28
|
passId,
|
|
29
|
+
imageId,
|
|
30
|
+
image,
|
|
27
31
|
};
|
|
28
32
|
```
|
|
29
33
|
|
package/docs/BaseActivity.md
CHANGED
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**status** | [**ActivityStatus**](ActivityStatus.md) | | [default to undefined]
|
|
11
11
|
**featured** | **boolean** | | [default to undefined]
|
|
12
12
|
**pinned** | **boolean** | | [default to undefined]
|
|
13
|
+
**pinnedExplore** | **boolean** | | [default to undefined]
|
|
13
14
|
**giphyId** | **string** | | [default to undefined]
|
|
14
15
|
**imageId** | **string** | | [default to undefined]
|
|
15
16
|
**videoId** | **string** | | [default to undefined]
|
|
@@ -35,6 +36,7 @@ const instance: BaseActivity = {
|
|
|
35
36
|
status,
|
|
36
37
|
featured,
|
|
37
38
|
pinned,
|
|
39
|
+
pinnedExplore,
|
|
38
40
|
giphyId,
|
|
39
41
|
imageId,
|
|
40
42
|
videoId,
|
|
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**accessLevel** | [**PassTypeAccessLevel**](PassTypeAccessLevel.md) | | [default to undefined]
|
|
17
17
|
**sortOrder** | **number** | | [default to undefined]
|
|
18
18
|
**survey** | [**BaseSurvey**](BaseSurvey.md) | | [default to undefined]
|
|
19
|
+
**imageUpload** | **boolean** | | [default to undefined]
|
|
19
20
|
**_count** | [**BaseEventActivationCount**](BaseEventActivationCount.md) | | [default to undefined]
|
|
20
21
|
|
|
21
22
|
## Example
|
|
@@ -35,6 +36,7 @@ const instance: BaseEventActivation = {
|
|
|
35
36
|
accessLevel,
|
|
36
37
|
sortOrder,
|
|
37
38
|
survey,
|
|
39
|
+
imageUpload,
|
|
38
40
|
_count,
|
|
39
41
|
};
|
|
40
42
|
```
|
package/docs/EventActivation.md
CHANGED
|
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
|
|
|
16
16
|
**accessLevel** | [**PassTypeAccessLevel**](PassTypeAccessLevel.md) | | [default to undefined]
|
|
17
17
|
**sortOrder** | **number** | | [default to undefined]
|
|
18
18
|
**survey** | [**BaseSurvey**](BaseSurvey.md) | | [default to undefined]
|
|
19
|
+
**imageUpload** | **boolean** | | [default to undefined]
|
|
19
20
|
**_count** | [**BaseEventActivationCount**](BaseEventActivationCount.md) | | [default to undefined]
|
|
20
21
|
**eventId** | **string** | | [default to undefined]
|
|
21
22
|
**event** | [**BaseEvent**](BaseEvent.md) | | [default to undefined]
|
|
@@ -45,6 +46,7 @@ const instance: EventActivation = {
|
|
|
45
46
|
accessLevel,
|
|
46
47
|
sortOrder,
|
|
47
48
|
survey,
|
|
49
|
+
imageUpload,
|
|
48
50
|
_count,
|
|
49
51
|
eventId,
|
|
50
52
|
event,
|
|
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
|
|
|
21
21
|
**continuousScanning** | **boolean** | | [optional] [default to undefined]
|
|
22
22
|
**scanType** | [**OnSiteScanType**](OnSiteScanType.md) | | [optional] [default to undefined]
|
|
23
23
|
**sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
24
|
+
**imageUpload** | **boolean** | | [optional] [default to undefined]
|
|
24
25
|
|
|
25
26
|
## Example
|
|
26
27
|
|
|
@@ -44,6 +45,7 @@ const instance: EventActivationCreateInputs = {
|
|
|
44
45
|
continuousScanning,
|
|
45
46
|
scanType,
|
|
46
47
|
sortOrder,
|
|
48
|
+
imageUpload,
|
|
47
49
|
};
|
|
48
50
|
```
|
|
49
51
|
|
|
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**continuousScanning** | **boolean** | | [optional] [default to undefined]
|
|
20
20
|
**scanType** | [**OnSiteScanType**](OnSiteScanType.md) | | [optional] [default to undefined]
|
|
21
21
|
**sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
22
|
+
**imageUpload** | **boolean** | | [optional] [default to undefined]
|
|
22
23
|
|
|
23
24
|
## Example
|
|
24
25
|
|
|
@@ -40,6 +41,7 @@ const instance: EventActivationUpdateInputs = {
|
|
|
40
41
|
continuousScanning,
|
|
41
42
|
scanType,
|
|
42
43
|
sortOrder,
|
|
44
|
+
imageUpload,
|
|
43
45
|
};
|
|
44
46
|
```
|
|
45
47
|
|
package/docs/ImageType.md
CHANGED
|
@@ -5,14 +5,16 @@
|
|
|
5
5
|
|
|
6
6
|
* `Admin` (value: `'admin'`)
|
|
7
7
|
|
|
8
|
-
* `
|
|
8
|
+
* `Account` (value: `'account'`)
|
|
9
9
|
|
|
10
|
-
* `
|
|
10
|
+
* `Thread` (value: `'thread'`)
|
|
11
11
|
|
|
12
|
-
* `
|
|
12
|
+
* `Content` (value: `'content'`)
|
|
13
13
|
|
|
14
|
-
* `
|
|
14
|
+
* `Activity` (value: `'activity'`)
|
|
15
15
|
|
|
16
|
-
* `
|
|
16
|
+
* `Event` (value: `'event'`)
|
|
17
|
+
|
|
18
|
+
* `Activation` (value: `'activation'`)
|
|
17
19
|
|
|
18
20
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|