@connectedxm/client 5.0.6 → 5.0.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/dist/index.d.ts +7 -0
- 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 {
|
|
@@ -350,6 +355,7 @@ interface Event extends BaseEvent {
|
|
|
350
355
|
reservationDescription: string | null;
|
|
351
356
|
backgroundImage: BaseImage | null;
|
|
352
357
|
media: EventMediaItem[];
|
|
358
|
+
options: object | null;
|
|
353
359
|
_count: {
|
|
354
360
|
activations: number;
|
|
355
361
|
sessions: number;
|
|
@@ -1832,6 +1838,7 @@ interface OrganizationConfig {
|
|
|
1832
1838
|
CHAT_URL: "wss://websocket.connected.dev" | "wss://staging-websocket.connected.dev";
|
|
1833
1839
|
APPLE_APPSTORE_LINK: string | null;
|
|
1834
1840
|
GOOGLE_PLAYSTORE_LINK: string | null;
|
|
1841
|
+
GOOGLE_TAG_MANAGER_ID: string | null;
|
|
1835
1842
|
NAME: string;
|
|
1836
1843
|
DESCRIPTION: string;
|
|
1837
1844
|
PRIMARY_MODULE: PrimaryModule;
|