@streamlayer/sdk-web-types 0.18.2 → 0.19.0
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/lib/sl-types.d.ts +2 -1
- package/package.json +1 -1
package/lib/sl-types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { StreamSettings as SLStreamSettings, SdkOverlay, Advertising, Organ
|
|
|
3
3
|
import type { ClientSettings } from '@streamlayer/sl-eslib/sdkSettings/client/client_pb';
|
|
4
4
|
import type { UserAttributes } from '@streamlayer/sl-eslib/users/users_common_pb';
|
|
5
5
|
export { QuestionType, QuestionStatus, QuestionImages, ImagePosition, ExtendedQuestion, SilenceSetting, QuestionOptions, } from '@streamlayer/sl-eslib/interactive/interactive.common_pb';
|
|
6
|
-
import type { PickHistory as IPickHistory, InsightHistory as IInsightHistory, FeedItemAttributes } from '@streamlayer/sl-eslib/interactive/feed/interactive.feed_pb';
|
|
6
|
+
import type { PickHistory as IPickHistory, InsightHistory as IInsightHistory, FeedItemAttributes, InstantView as IInstantView } from '@streamlayer/sl-eslib/interactive/feed/interactive.feed_pb';
|
|
7
7
|
export { PickHistoryStatus } from '@streamlayer/sl-eslib/interactive/feed/interactive.feed_pb';
|
|
8
8
|
import type { LeaderboardItem as ILeaderboardItem } from '@streamlayer/sl-eslib/interactive/leaderboard/interactive.leaderboard_pb';
|
|
9
9
|
import type { ExtendedQuestionAnswer as IExtendedQuestionAnswer } from '@streamlayer/sl-eslib/interactive/interactive.common_pb';
|
|
@@ -18,4 +18,5 @@ export type User = UserAttributes;
|
|
|
18
18
|
export type UserSettings = ClientSettings;
|
|
19
19
|
export type LeaderboardItem = ILeaderboardItem;
|
|
20
20
|
export type FeedItem = PlainMessage<FeedItemAttributes>;
|
|
21
|
+
export type InstantView = PlainMessage<IInstantView>;
|
|
21
22
|
export { SdkOverlayType as FeatureType, SdkOverlaySettings, GamesOverlaySettings, } from '@streamlayer/sl-eslib/sdkSettings/sdkSettings.common_pb';
|