@streamlayer/sdk-web-types 0.19.0 → 0.20.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 -0
- package/package.json +1 -1
package/lib/sl-types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PlainMessage } from '@bufbuild/protobuf';
|
|
2
2
|
import type { StreamSettings as SLStreamSettings, SdkOverlay, Advertising, OrganizationSettings as SLOrganizationSettings } from '@streamlayer/sl-eslib/sdkSettings/sdkSettings.common_pb';
|
|
3
|
+
import type { GameSettings as IGameSettings } from '@streamlayer/sl-eslib/sdkSettings/game/common/game_common_pb';
|
|
3
4
|
import type { ClientSettings } from '@streamlayer/sl-eslib/sdkSettings/client/client_pb';
|
|
4
5
|
import type { UserAttributes } from '@streamlayer/sl-eslib/users/users_common_pb';
|
|
5
6
|
export { QuestionType, QuestionStatus, QuestionImages, ImagePosition, ExtendedQuestion, SilenceSetting, QuestionOptions, } from '@streamlayer/sl-eslib/interactive/interactive.common_pb';
|
|
@@ -19,4 +20,5 @@ export type UserSettings = ClientSettings;
|
|
|
19
20
|
export type LeaderboardItem = ILeaderboardItem;
|
|
20
21
|
export type FeedItem = PlainMessage<FeedItemAttributes>;
|
|
21
22
|
export type InstantView = PlainMessage<IInstantView>;
|
|
23
|
+
export type GameSettings = PlainMessage<IGameSettings>;
|
|
22
24
|
export { SdkOverlayType as FeatureType, SdkOverlaySettings, GamesOverlaySettings, } from '@streamlayer/sl-eslib/sdkSettings/sdkSettings.common_pb';
|