@streamlayer/react 0.29.4 → 0.29.6
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/cjs/masters.js +1 -1
- package/lib/dist/cjs/masters.js +1 -1
- package/lib/dist/es/masters.js +1 -1
- package/lib/dist/index-bee6e4ec.cjs +1 -0
- package/lib/dist/{index-660952d7.js → index-c9c374fc.js} +550 -433
- package/lib/dist/index.d.ts +17 -0
- package/lib/dist/{masters-8c4e7068.js → masters-55ee878f.js} +379 -367
- package/lib/dist/{masters-7ea5d23e.cjs → masters-cbaf9f64.cjs} +8 -8
- package/lib/dist/style.css +14 -0
- package/lib/es/masters.js +1 -1
- package/lib/index-097ba5f5.cjs +6 -0
- package/lib/{index-efde52fd.js → index-aa64b1f2.js} +778 -661
- package/lib/{masters-05fe9e78.cjs → masters-541db712.cjs} +1 -1
- package/lib/{masters-e142c21e.js → masters-e3fde211.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +7 -7
- package/lib/dist/index-72e4d21b.cjs +0 -1
- package/lib/index-eb5039cd.cjs +0 -6
package/lib/dist/index.d.ts
CHANGED
|
@@ -1330,6 +1330,21 @@ declare module "../../feature-gamification/src/leaderboard" {
|
|
|
1330
1330
|
invalidate: () => void;
|
|
1331
1331
|
};
|
|
1332
1332
|
}
|
|
1333
|
+
declare module "../../feature-gamification/src/queries/deepLink" {
|
|
1334
|
+
import type { Transport } from '../../sdk-web-api/src/index.ts';
|
|
1335
|
+
import { ReadableAtom } from 'nanostores';
|
|
1336
|
+
import { DeepLink } from '@streamlayer/sl-eslib/sdkSettings/client/client_pb';
|
|
1337
|
+
type EventId = ReadableAtom<string | undefined>;
|
|
1338
|
+
export const $deepLink: (transport: Transport, params: [EventId]) => import("@nanostores/query").FetcherStore<DeepLink | undefined, any>;
|
|
1339
|
+
}
|
|
1340
|
+
declare module "../../feature-gamification/src/deepLink" {
|
|
1341
|
+
import type { Transport } from '../../sdk-web-api/src/index.ts';
|
|
1342
|
+
import { ReadableAtom } from 'nanostores';
|
|
1343
|
+
export const deepLink: (transport: Transport, $eventId: ReadableAtom<string | undefined>) => {
|
|
1344
|
+
$store: import("@nanostores/query").FetcherStore<import("@streamlayer/sl-eslib/sdkSettings/client/client_pb").DeepLink | undefined, any>;
|
|
1345
|
+
fetch: typeof fetch;
|
|
1346
|
+
};
|
|
1347
|
+
}
|
|
1333
1348
|
declare module "../../feature-gamification/src/gamification" {
|
|
1334
1349
|
import { AbstractFeature, ApiStore, FeatureSource, type FeatureProps, type StreamLayerContext } from '../../sdk-web-interfaces/src/index.ts';
|
|
1335
1350
|
import { type GamesOverlaySettings } from '../../sdk-web-types/src/index.ts';
|
|
@@ -1339,6 +1354,7 @@ declare module "../../feature-gamification/src/gamification" {
|
|
|
1339
1354
|
import { WritableAtom } from 'nanostores';
|
|
1340
1355
|
import * as queries from "../../feature-gamification/src/queries/index";
|
|
1341
1356
|
import { leaderboard } from "../../feature-gamification/src/leaderboard";
|
|
1357
|
+
import { deepLink } from "../../feature-gamification/src/deepLink";
|
|
1342
1358
|
import { OnboardingStatus } from "../../feature-gamification/src/onboarding";
|
|
1343
1359
|
import { LeaderboardItem } from "../../feature-gamification/src/queries/leaderboard";
|
|
1344
1360
|
import { GamificationBackground } from "../../feature-gamification/src/index";
|
|
@@ -1360,6 +1376,7 @@ declare module "../../feature-gamification/src/gamification" {
|
|
|
1360
1376
|
leaderboardId: WritableAtom<string | undefined>;
|
|
1361
1377
|
/** leaderboard list */
|
|
1362
1378
|
leaderboardList: ReturnType<typeof leaderboard>;
|
|
1379
|
+
deepLink: ReturnType<typeof deepLink>;
|
|
1363
1380
|
/** onboarding status */
|
|
1364
1381
|
onboardingStatus: {
|
|
1365
1382
|
$store: WritableAtom<OnboardingStatus | undefined>;
|