@connectedxm/client 1.0.1 → 1.0.2
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.mts +4 -6
- package/dist/index.d.ts +4 -6
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -301,12 +301,10 @@ interface Event extends BaseEvent {
|
|
|
301
301
|
streamReplay: BaseVideo | null;
|
|
302
302
|
createdAt: string;
|
|
303
303
|
updatedAt: string;
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
faqSections: number;
|
|
309
|
-
};
|
|
304
|
+
sessions: BaseSession[];
|
|
305
|
+
speakers: BaseSpeaker[];
|
|
306
|
+
sponsors: BaseAccount[];
|
|
307
|
+
faqSections: BaseFaqSection[];
|
|
310
308
|
}
|
|
311
309
|
type EventWithSessions = Event & {
|
|
312
310
|
sessions: BaseSession[];
|
package/dist/index.d.ts
CHANGED
|
@@ -301,12 +301,10 @@ interface Event extends BaseEvent {
|
|
|
301
301
|
streamReplay: BaseVideo | null;
|
|
302
302
|
createdAt: string;
|
|
303
303
|
updatedAt: string;
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
faqSections: number;
|
|
309
|
-
};
|
|
304
|
+
sessions: BaseSession[];
|
|
305
|
+
speakers: BaseSpeaker[];
|
|
306
|
+
sponsors: BaseAccount[];
|
|
307
|
+
faqSections: BaseFaqSection[];
|
|
310
308
|
}
|
|
311
309
|
type EventWithSessions = Event & {
|
|
312
310
|
sessions: BaseSession[];
|
package/dist/index.js
CHANGED
|
@@ -1109,7 +1109,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
1109
1109
|
return EventType2;
|
|
1110
1110
|
})(EventType || {});
|
|
1111
1111
|
var isTypeEvent = (event) => {
|
|
1112
|
-
return event.
|
|
1112
|
+
return event.sessions !== void 0;
|
|
1113
1113
|
};
|
|
1114
1114
|
var RegistrationQuestionType = /* @__PURE__ */ ((RegistrationQuestionType2) => {
|
|
1115
1115
|
RegistrationQuestionType2["text"] = "text";
|
package/dist/index.mjs
CHANGED
|
@@ -179,7 +179,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
|
|
|
179
179
|
return EventType2;
|
|
180
180
|
})(EventType || {});
|
|
181
181
|
var isTypeEvent = (event) => {
|
|
182
|
-
return event.
|
|
182
|
+
return event.sessions !== void 0;
|
|
183
183
|
};
|
|
184
184
|
var RegistrationQuestionType = /* @__PURE__ */ ((RegistrationQuestionType2) => {
|
|
185
185
|
RegistrationQuestionType2["text"] = "text";
|