@connectedxm/client 1.0.26 → 1.0.28
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -82,6 +82,7 @@ interface BaseOrganization {
|
|
|
82
82
|
iconId: string | null;
|
|
83
83
|
darkIcon: BaseImage | null;
|
|
84
84
|
darkIconId: string | null;
|
|
85
|
+
locale: string;
|
|
85
86
|
}
|
|
86
87
|
declare enum Currency {
|
|
87
88
|
USD = "USD"
|
|
@@ -183,6 +184,7 @@ interface Self extends Account {
|
|
|
183
184
|
zip: string | null;
|
|
184
185
|
shareCode: string;
|
|
185
186
|
chatToken?: string;
|
|
187
|
+
locale: string;
|
|
186
188
|
}
|
|
187
189
|
declare const isSelf: (account: Self | Account | BaseAccount) => account is Self;
|
|
188
190
|
interface AccountShare extends Account {
|
|
@@ -315,6 +317,11 @@ interface Event extends BaseEvent {
|
|
|
315
317
|
speakers: BaseSpeaker[];
|
|
316
318
|
sponsors: BaseAccount[];
|
|
317
319
|
faqSections: BaseFaqSection[];
|
|
320
|
+
_count: {
|
|
321
|
+
sessions: number;
|
|
322
|
+
speakers: number;
|
|
323
|
+
sponsors: number;
|
|
324
|
+
};
|
|
318
325
|
}
|
|
319
326
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
320
327
|
interface RegistrationEventDetails extends BaseEvent {
|
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ interface BaseOrganization {
|
|
|
82
82
|
iconId: string | null;
|
|
83
83
|
darkIcon: BaseImage | null;
|
|
84
84
|
darkIconId: string | null;
|
|
85
|
+
locale: string;
|
|
85
86
|
}
|
|
86
87
|
declare enum Currency {
|
|
87
88
|
USD = "USD"
|
|
@@ -183,6 +184,7 @@ interface Self extends Account {
|
|
|
183
184
|
zip: string | null;
|
|
184
185
|
shareCode: string;
|
|
185
186
|
chatToken?: string;
|
|
187
|
+
locale: string;
|
|
186
188
|
}
|
|
187
189
|
declare const isSelf: (account: Self | Account | BaseAccount) => account is Self;
|
|
188
190
|
interface AccountShare extends Account {
|
|
@@ -315,6 +317,11 @@ interface Event extends BaseEvent {
|
|
|
315
317
|
speakers: BaseSpeaker[];
|
|
316
318
|
sponsors: BaseAccount[];
|
|
317
319
|
faqSections: BaseFaqSection[];
|
|
320
|
+
_count: {
|
|
321
|
+
sessions: number;
|
|
322
|
+
speakers: number;
|
|
323
|
+
sponsors: number;
|
|
324
|
+
};
|
|
318
325
|
}
|
|
319
326
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
320
327
|
interface RegistrationEventDetails extends BaseEvent {
|