@connectedxm/client 5.0.7 → 5.0.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.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -221,7 +221,12 @@ interface BaseActivity {
|
|
|
221
221
|
message: string;
|
|
222
222
|
image: BaseImage | null;
|
|
223
223
|
video: BaseVideo | null;
|
|
224
|
+
giphyId: string | null;
|
|
224
225
|
account: BaseAccount;
|
|
226
|
+
groupId: string | null;
|
|
227
|
+
eventId: string | null;
|
|
228
|
+
contentId: string | null;
|
|
229
|
+
commentedId: string | null;
|
|
225
230
|
createdAt: string;
|
|
226
231
|
}
|
|
227
232
|
interface Activity extends BaseActivity {
|
|
@@ -344,7 +349,6 @@ interface Event extends BaseEvent {
|
|
|
344
349
|
updatedAt: string;
|
|
345
350
|
sessions: BaseSession[];
|
|
346
351
|
speakers: BaseSpeaker[];
|
|
347
|
-
sponsors: BaseAccount[];
|
|
348
352
|
faqSections: BaseFaqSection[];
|
|
349
353
|
sponsorshipLevels: EventSponsorshipLevel[];
|
|
350
354
|
reservationDescription: string | null;
|
|
@@ -355,7 +359,6 @@ interface Event extends BaseEvent {
|
|
|
355
359
|
activations: number;
|
|
356
360
|
sessions: number;
|
|
357
361
|
speakers: number;
|
|
358
|
-
sponsors: number;
|
|
359
362
|
sponsorshipLevels: number;
|
|
360
363
|
media: number;
|
|
361
364
|
};
|