@streamlayer/react 0.29.4 → 0.29.5

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.
@@ -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>;