@series-inc/rundot-game-sdk 5.22.0-beta.3 → 5.22.0-beta.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.
- package/dist/{AdsApi-BT2-dh42.d.ts → AdsApi-BMDHC7On.d.ts} +242 -1
- package/dist/{chunk-URUSACYP.js → chunk-33BJAOLE.js} +126 -116
- package/dist/chunk-33BJAOLE.js.map +1 -0
- package/dist/{chunk-O3DF3FUB.js → chunk-RWCJU5GG.js} +390 -63
- package/dist/chunk-RWCJU5GG.js.map +1 -0
- package/dist/index.d.ts +78 -3
- package/dist/index.js +2 -2
- package/dist/rundot-game-api/index.d.ts +2 -2
- package/dist/rundot-game-api/index.js +3 -2
- package/dist/rundot-game-api/index.js.map +1 -1
- package/dist/sandbox/index.js +5 -2
- package/dist/sandbox/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-O3DF3FUB.js.map +0 -1
- package/dist/chunk-URUSACYP.js.map +0 -1
|
@@ -313,8 +313,68 @@ interface ShowToastOptions {
|
|
|
313
313
|
label: string;
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
|
+
/** Outcome of a platform-owned Like prompt. */
|
|
317
|
+
type LikeDialogResult = {
|
|
318
|
+
shown: true;
|
|
319
|
+
dismissed: boolean;
|
|
320
|
+
liked: boolean;
|
|
321
|
+
} | {
|
|
322
|
+
shown: false;
|
|
323
|
+
reason: 'unavailable';
|
|
324
|
+
};
|
|
325
|
+
/** Outcome of opening the platform-owned Comments panel. */
|
|
326
|
+
type CommentsPanelResult = {
|
|
327
|
+
shown: true;
|
|
328
|
+
dismissed: boolean;
|
|
329
|
+
} | {
|
|
330
|
+
shown: false;
|
|
331
|
+
reason: 'unavailable';
|
|
332
|
+
};
|
|
333
|
+
/** The running player's like state for this game. */
|
|
334
|
+
interface LikeStateResult {
|
|
335
|
+
/** Whether the current player has already liked this game. */
|
|
336
|
+
isLiked: boolean;
|
|
337
|
+
/** Total like count for this game. */
|
|
338
|
+
likesCount: number;
|
|
339
|
+
}
|
|
316
340
|
interface PopupsApi {
|
|
317
341
|
showToast(message: string, options?: ShowToastOptions): Promise<boolean>;
|
|
342
|
+
/**
|
|
343
|
+
* Ask the platform to present its own Like prompt for the running game. The
|
|
344
|
+
* platform renders the UI and performs the like on a real user tap — the game
|
|
345
|
+
* never mutates the like itself. Resolves when the user acts or dismisses, or
|
|
346
|
+
* immediately with `{ shown:false }` if the platform suppresses it.
|
|
347
|
+
*/
|
|
348
|
+
showLikeDialog(): Promise<LikeDialogResult>;
|
|
349
|
+
/**
|
|
350
|
+
* Whether the Like prompt can currently be shown for this app. Capability
|
|
351
|
+
* only (platform support + per-app enablement) — NOT transient throttle. Use
|
|
352
|
+
* to decide whether to render a Like call-to-action at all.
|
|
353
|
+
*/
|
|
354
|
+
canShowLikeDialog(): Promise<{
|
|
355
|
+
available: boolean;
|
|
356
|
+
}>;
|
|
357
|
+
/**
|
|
358
|
+
* Ask the platform to open its Comments panel for the running game. The
|
|
359
|
+
* platform owns the panel and everything in it; no comment text or commenter
|
|
360
|
+
* identity crosses back to the game. Resolves when the panel closes, or
|
|
361
|
+
* immediately with `{ shown:false }` if suppressed.
|
|
362
|
+
*/
|
|
363
|
+
showCommentsPanel(): Promise<CommentsPanelResult>;
|
|
364
|
+
/**
|
|
365
|
+
* Whether the Comments panel can currently be shown for this app. Capability
|
|
366
|
+
* only — NOT transient throttle.
|
|
367
|
+
*/
|
|
368
|
+
canShowCommentsPanel(): Promise<{
|
|
369
|
+
available: boolean;
|
|
370
|
+
}>;
|
|
371
|
+
/**
|
|
372
|
+
* The running player's like state for this game (`isLiked` + `likesCount`).
|
|
373
|
+
* Read-only and not throttled — use it to decide whether to render a Like
|
|
374
|
+
* call-to-action or call `showLikeDialog()` at all (e.g. skip players who
|
|
375
|
+
* already liked). Rejects if the platform can't resolve the like state.
|
|
376
|
+
*/
|
|
377
|
+
getLikeState(): Promise<LikeStateResult>;
|
|
318
378
|
}
|
|
319
379
|
|
|
320
380
|
interface ProfileApi {
|
|
@@ -1784,6 +1844,13 @@ interface SpendCurrencyOptions {
|
|
|
1784
1844
|
* for revenue share. Forwarded to the server for future revshare bookkeeping.
|
|
1785
1845
|
*/
|
|
1786
1846
|
beneficiaryId?: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* Optional story-level UGC entry id the spend buys (e.g. a RUN.tv episode
|
|
1849
|
+
* unlock). When set, the server keys the Recombee purchase signal to that
|
|
1850
|
+
* content item instead of the host game, so the recommender learns the
|
|
1851
|
+
* specific story rather than the whole app.
|
|
1852
|
+
*/
|
|
1853
|
+
contentEntryId?: string;
|
|
1787
1854
|
}
|
|
1788
1855
|
interface SpendCurrencyResult {
|
|
1789
1856
|
success: boolean;
|
|
@@ -1814,6 +1881,148 @@ interface IapApi {
|
|
|
1814
1881
|
hasUserMadePurchase(): Promise<boolean>;
|
|
1815
1882
|
}
|
|
1816
1883
|
|
|
1884
|
+
/**
|
|
1885
|
+
* Canonical machine discriminator for creator-credits exhaustion. Mirrors the
|
|
1886
|
+
* server's `CREDITS_EXHAUSTED_CODE`: the host rejects an exhausted generation
|
|
1887
|
+
* with this `code`, and the SDK reconstructs the typed error from it. Single
|
|
1888
|
+
* source of truth — never write the literal elsewhere in the SDK.
|
|
1889
|
+
*/
|
|
1890
|
+
declare const CREDITS_EXHAUSTED_CODE = "CREDITS_EXHAUSTED";
|
|
1891
|
+
type Unsubscribe = () => void;
|
|
1892
|
+
/** Who AI generation in the current game is billed to. */
|
|
1893
|
+
type CreditsBilledTo = 'owner' | 'player';
|
|
1894
|
+
/**
|
|
1895
|
+
* Informational context about how the current game bills AI generation. This is
|
|
1896
|
+
* ALWAYS available and NEVER gates any other call — the game decides what to
|
|
1897
|
+
* render from it.
|
|
1898
|
+
*/
|
|
1899
|
+
interface CreditsBillingContext {
|
|
1900
|
+
billedTo: CreditsBilledTo;
|
|
1901
|
+
/** True only when `billedTo === 'player'` AND player-charge enforcement is live. */
|
|
1902
|
+
playerChargesEnabled: boolean;
|
|
1903
|
+
}
|
|
1904
|
+
/** Free-daily grant disclosure, so the game can render a reset countdown. */
|
|
1905
|
+
interface CreditFreeDailyInfo {
|
|
1906
|
+
dailyCredits: number;
|
|
1907
|
+
availableCredits: number;
|
|
1908
|
+
/** ISO timestamp of the next free-daily reset. */
|
|
1909
|
+
nextResetAt: string;
|
|
1910
|
+
}
|
|
1911
|
+
interface CreditBalance {
|
|
1912
|
+
/** Credits the player can spend right now (server `totalSpendable`). */
|
|
1913
|
+
available: number;
|
|
1914
|
+
/** "available / total" denominator (server `totalIssued`). */
|
|
1915
|
+
total: number;
|
|
1916
|
+
/** Free-daily grant info, or `null` when the player isn't eligible (paid plan). */
|
|
1917
|
+
freeDaily: CreditFreeDailyInfo | null;
|
|
1918
|
+
}
|
|
1919
|
+
interface CreditSubscription {
|
|
1920
|
+
status: 'active' | 'none';
|
|
1921
|
+
/** Paid SKU tier (NOT the effective/granted tier), or `null` when not subscribed. */
|
|
1922
|
+
tier: string | null;
|
|
1923
|
+
monthlyCredits: number | null;
|
|
1924
|
+
creditsRemaining: number | null;
|
|
1925
|
+
/** ISO renewal/expiry timestamp, or `null`. */
|
|
1926
|
+
renewsAt: string | null;
|
|
1927
|
+
willRenew: boolean;
|
|
1928
|
+
}
|
|
1929
|
+
interface CreditPlan {
|
|
1930
|
+
tier: string;
|
|
1931
|
+
productId: string;
|
|
1932
|
+
monthlyCredits: number;
|
|
1933
|
+
rolloverDays: number;
|
|
1934
|
+
}
|
|
1935
|
+
interface CreditTopUpPack {
|
|
1936
|
+
productId: string;
|
|
1937
|
+
credits: number;
|
|
1938
|
+
}
|
|
1939
|
+
interface CreditPlansCatalog {
|
|
1940
|
+
plans: CreditPlan[];
|
|
1941
|
+
topUpPacks: CreditTopUpPack[];
|
|
1942
|
+
freeDailyCredits: number;
|
|
1943
|
+
}
|
|
1944
|
+
interface OpenPaywallOptions {
|
|
1945
|
+
/** Which surface to focus. `'topup'` is a phase-2 surface (currently no-op). */
|
|
1946
|
+
focus?: 'plans' | 'topup';
|
|
1947
|
+
/** Tier id to visually highlight in the plan picker. */
|
|
1948
|
+
highlightTier?: string;
|
|
1949
|
+
/** Screen/route name for analytics attribution. */
|
|
1950
|
+
screenName?: string;
|
|
1951
|
+
}
|
|
1952
|
+
type CreditsPurchaseOutcome = 'purchased' | 'cancelled' | 'pending';
|
|
1953
|
+
interface CreditsPurchaseResult {
|
|
1954
|
+
outcome: CreditsPurchaseOutcome;
|
|
1955
|
+
/** Refreshed balance after the paywall closed, or `null` if it couldn't be read. */
|
|
1956
|
+
balance: CreditBalance | null;
|
|
1957
|
+
}
|
|
1958
|
+
/** Construction payload for {@link CreditsExhaustedError}. */
|
|
1959
|
+
interface CreditsExhaustedErrorInfo {
|
|
1960
|
+
billedTo: CreditsBilledTo;
|
|
1961
|
+
paywallShown: boolean;
|
|
1962
|
+
paywallOutcome: CreditsPurchaseOutcome | null;
|
|
1963
|
+
}
|
|
1964
|
+
/**
|
|
1965
|
+
* Thrown from AI generation calls (ai / imageGen / videoGen) when the
|
|
1966
|
+
* player-billed game runs the player out of creator credits and the host did
|
|
1967
|
+
* not (or could not) resolve the deficit. `paywallShown`/`paywallOutcome`
|
|
1968
|
+
* describe what the host did before giving up — see `setAutoPaywallOnExhaustion`
|
|
1969
|
+
* / `setAutoRetryOnPurchase`.
|
|
1970
|
+
*/
|
|
1971
|
+
declare class CreditsExhaustedError extends Error {
|
|
1972
|
+
readonly code = "CREDITS_EXHAUSTED";
|
|
1973
|
+
readonly billedTo: CreditsBilledTo;
|
|
1974
|
+
readonly paywallShown: boolean;
|
|
1975
|
+
/** `null` when `paywallShown === false`. */
|
|
1976
|
+
readonly paywallOutcome: CreditsPurchaseOutcome | null;
|
|
1977
|
+
constructor(message: string, info: CreditsExhaustedErrorInfo);
|
|
1978
|
+
}
|
|
1979
|
+
/** True iff `err` is (or carries the wire signature of) a credits-exhaustion
|
|
1980
|
+
* error. Derived from {@link asCreditsExhaustedError} so the predicate and the
|
|
1981
|
+
* narrowing can never disagree. */
|
|
1982
|
+
declare function isCreditsExhaustedError(err: unknown): boolean;
|
|
1983
|
+
/**
|
|
1984
|
+
* Reconstruct a {@link CreditsExhaustedError} from a transport error. The host
|
|
1985
|
+
* rejects the RPC with `code === 'CREDITS_EXHAUSTED'` and a JSON-encoded
|
|
1986
|
+
* `detail` carrying `{ billedTo, paywallShown, paywallOutcome }`; this turns
|
|
1987
|
+
* that wire shape back into a typed error. Returns `null` for any other error.
|
|
1988
|
+
*/
|
|
1989
|
+
declare function asCreditsExhaustedError(err: unknown): CreditsExhaustedError | null;
|
|
1990
|
+
/**
|
|
1991
|
+
* Await an RPC generation call, re-throwing creator-credits exhaustion as the
|
|
1992
|
+
* typed {@link CreditsExhaustedError} and passing every other error through
|
|
1993
|
+
* untouched. The single place the generation namespaces (ai / imageGen /
|
|
1994
|
+
* videoGen) funnel through, so the mapping can't drift between them.
|
|
1995
|
+
*/
|
|
1996
|
+
declare function mapCreditsExhaustion<T>(call: Promise<T>): Promise<T>;
|
|
1997
|
+
interface CreditsApi {
|
|
1998
|
+
/** Informational ONLY — never gates any other call. */
|
|
1999
|
+
getBillingContext(): Promise<CreditsBillingContext>;
|
|
2000
|
+
getBalance(): Promise<CreditBalance>;
|
|
2001
|
+
getSubscription(): Promise<CreditSubscription>;
|
|
2002
|
+
getPlans(): Promise<CreditPlansCatalog>;
|
|
2003
|
+
/**
|
|
2004
|
+
* Open the host's combined paywall (plan upgrade now; top-up packs in a later
|
|
2005
|
+
* release). Resolves once the player closes it. Reuses the same host UI the
|
|
2006
|
+
* exhaustion auto-paywall drives.
|
|
2007
|
+
*/
|
|
2008
|
+
openPaywall(options?: OpenPaywallOptions): Promise<CreditsPurchaseResult>;
|
|
2009
|
+
/**
|
|
2010
|
+
* When the player exhausts credits mid-generation, automatically open the
|
|
2011
|
+
* paywall (default `true`). Synchronous: local SDK state pushed to the host
|
|
2012
|
+
* fire-and-forget.
|
|
2013
|
+
*/
|
|
2014
|
+
setAutoPaywallOnExhaustion(enabled: boolean): void;
|
|
2015
|
+
getAutoPaywallOnExhaustion(): boolean;
|
|
2016
|
+
/**
|
|
2017
|
+
* After an exhaustion paywall purchase, automatically retry the original
|
|
2018
|
+
* generation once and resolve it with the result (default `true`). Synchronous.
|
|
2019
|
+
*/
|
|
2020
|
+
setAutoRetryOnPurchase(enabled: boolean): void;
|
|
2021
|
+
getAutoRetryOnPurchase(): boolean;
|
|
2022
|
+
/** Fires when the player's spendable balance changes (e.g. after a purchase). */
|
|
2023
|
+
onBalanceChanged(listener: (balance: CreditBalance) => void): Unsubscribe;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
1817
2026
|
/**
|
|
1818
2027
|
* UGC (User-Generated Content) API
|
|
1819
2028
|
*
|
|
@@ -3526,8 +3735,38 @@ type AdminThreeDGenBrowseResponse = AdminGenBrowseResponse<ThreeDGenEntry>;
|
|
|
3526
3735
|
type AdminThreeDGenListReportsParams = AdminGenListReportsParams;
|
|
3527
3736
|
type AdminThreeDGenListReportsResponse = AdminGenListReportsResponse<ThreeDGenReport>;
|
|
3528
3737
|
type AdminThreeDGenResolveAction = AdminGenResolveAction;
|
|
3738
|
+
/** Whether a published update was flagged as a major release (drives fan-out
|
|
3739
|
+
* to fans) or a routine minor update. */
|
|
3740
|
+
type ReleaseType = 'major' | 'minor';
|
|
3741
|
+
/** A single published changelog entry for a game, newest-first when listed. */
|
|
3742
|
+
interface ReleaseNote {
|
|
3743
|
+
/** The version label the creator deployed (e.g. `"1.4.0"`). */
|
|
3744
|
+
versionNumber: string;
|
|
3745
|
+
/** Moderated changelog markdown (safe subset: headings, lists, emphasis,
|
|
3746
|
+
* blockquotes, code, http(s) links/images). */
|
|
3747
|
+
changelog: string;
|
|
3748
|
+
releaseType: ReleaseType;
|
|
3749
|
+
/** ISO-8601 timestamp of when the version was published. */
|
|
3750
|
+
publishedAt: string;
|
|
3751
|
+
}
|
|
3529
3752
|
interface AppApi {
|
|
3530
3753
|
getMyRole(): Promise<AppRole>;
|
|
3754
|
+
/**
|
|
3755
|
+
* Fetch this app's published release notes, newest-first.
|
|
3756
|
+
*
|
|
3757
|
+
* Returns an empty array if the app has no published changelog entries.
|
|
3758
|
+
* Only notes for the currently-running app are returned. Use this to build an
|
|
3759
|
+
* in-game "What's new" panel or to deep-link players to the changelog.
|
|
3760
|
+
*/
|
|
3761
|
+
getReleaseNotesAsync(): Promise<ReleaseNote[]>;
|
|
3762
|
+
/**
|
|
3763
|
+
* Open the host's app info page with the Release Notes tab in view, showing
|
|
3764
|
+
* the latest update and the browsable history of prior updates.
|
|
3765
|
+
*
|
|
3766
|
+
* The running game is not torn down — the info page opens as an overlay on
|
|
3767
|
+
* top of it. Resolves once the request has been handed to the host.
|
|
3768
|
+
*/
|
|
3769
|
+
openReleaseNotesAsync(): Promise<void>;
|
|
3531
3770
|
/**
|
|
3532
3771
|
* Resolve how this game was launched (share / deep link / notification /
|
|
3533
3772
|
* none). Resolves as soon as the host has resolved the launch route; if that
|
|
@@ -3680,6 +3919,7 @@ interface Host {
|
|
|
3680
3919
|
readonly attribution: AttributionApi;
|
|
3681
3920
|
readonly isInitialized: boolean;
|
|
3682
3921
|
readonly iap: IapApi;
|
|
3922
|
+
readonly credits: CreditsApi;
|
|
3683
3923
|
readonly instanceId: string;
|
|
3684
3924
|
readonly context?: InitializationContext;
|
|
3685
3925
|
/**
|
|
@@ -4167,6 +4407,7 @@ interface RundotGameAPI {
|
|
|
4167
4407
|
Decimal: any;
|
|
4168
4408
|
};
|
|
4169
4409
|
iap: IapApi;
|
|
4410
|
+
credits: CreditsApi;
|
|
4170
4411
|
cdn: CdnApi;
|
|
4171
4412
|
ads: AdsApi;
|
|
4172
4413
|
ai: AiApi;
|
|
@@ -4216,4 +4457,4 @@ interface AdsApi {
|
|
|
4216
4457
|
showInterstitialAd(options?: ShowInterstitialAdOptions): Promise<boolean>;
|
|
4217
4458
|
}
|
|
4218
4459
|
|
|
4219
|
-
export { type AddToHomeScreenResult as $, type AnalyticsApi as A, type BatchRecipeRequirementsResult as B, type NotificationsApi as C, type ScheduleLocalNotification as D, type ScheduleNotificationOptions as E, type RCSAvailabilityStatus as F, type ScheduleRCSInput as G, type Host as H, type ScheduleRCSResult as I, type RequestRCSOptInInput as J, type RequestRCSOptInResult as K, type PopupsApi as L, type ShowToastOptions as M, type NavigationApi as N, type ShowInterstitialAdOptions as O, type Profile as P, type QuitOptions as Q, type RundotGameAPI as R, type SimulationActiveRunsUpdate as S, type ShowRewardedAdOptions as T, type ProfileApi as U, type DeviceApi as V, type DeviceInfo as W, type EnvironmentApi as X, type EnvironmentInfo as Y, type SystemApi as Z, type SafeArea as _, type RecipeRequirementQuery as a, type StartRoomGameOptions as a$, type CdnApi as a0, type FetchFromCdnOptions as a1, type AssetUrlResult as a2, type TimeApi as a3, type ServerTimeData as a4, type GetFutureTimeOptions as a5, type AiApi as a6, type AiChatCompletionRequest as a7, type AiChatCompletionData as a8, type AiChatCompletionStreamOptions as a9, type SimulationSlotContainer as aA, type SimulationAssignment as aB, type SimulationState as aC, type ExecuteRecipeOptions as aD, type ExecuteRecipeResponse as aE, type CollectRecipeResult as aF, type ResetStateOptions as aG, type ResetStateResult as aH, type GetActiveRunsOptions as aI, type ExecuteScopedRecipeOptions as aJ, type ExecuteScopedRecipeResult as aK, type GetAvailableRecipesOptions as aL, type GetAvailableRecipesResult as aM, type Recipe as aN, type GetBatchRecipeRequirements as aO, type TriggerRecipeChainOptions as aP, type RoomDataUpdate as aQ, type RoomMessageEvent as aR, type ProposedMoveEvent as aS, RundotGameTransport as aT, type RoomsApi as aU, type CreateRoomOptions as aV, type JoinOrCreateRoomOptions as aW, type JoinOrCreateResult as aX, type ListRoomsOptions as aY, type UpdateRoomDataOptions as aZ, type RoomMessageRequest as a_, type AiChatCompletionStreamChunk as aa, type HapticsApi as ab, HapticFeedbackStyle as ac, type GamepadSnapshot as ad, type GamepadConnectionEvent as ae, type Subscription as af, type GamepadApi as ag, type GamepadLatencyStats as ah, type FeaturesApi as ai, type Experiment as aj, type LifecycleApi as ak, type SleepCallback as al, type AwakeCallback as am, type PauseCallback as an, type ResumeCallback as ao, type QuitCallback as ap, type BackButtonCallback as aq, type IdentityChangedCallback as ar, type IdentityChangedEvent as as, type SimulationApi as at, type SimulationSlotValidationResult as au, type SimulationBatchOperation as av, type SimulationBatchOperationsResult as aw, type SimulationAvailableItem as ax, type SimulationPowerPreview as ay, type SimulationSlotMutationResult as az, type RecipeRequirementResult as b, type ImageGenEntry as b$, type ProposeMoveRequest as b0, type ProposeMoveResult as b1, type ValidateMoveVerdict as b2, type ValidateMoveResult as b3, type RoomSubscriptionOptions as b4, type LoggingApi as b5, type IapApi as b6, type SpendCurrencyOptions as b7, type SpendCurrencyResult as b8, type SubscriptionTier as b9, type StorefrontItem as bA, type ShopPurchaseResponse as bB, type ShopOrderHistoryResponse as bC, type PromptLoginResult as bD, type AccessTier as bE, type AccessGateApi as bF, type TextGenApi as bG, type UgcApi as bH, type MultiplayerApi as bI, type VideoApi as bJ, type AppApi as bK, type AdminUgcApi as bL, type AdminImageGenApi as bM, type AdminVideoGenApi as bN, type AdminSpriteGenApi as bO, type AdminAudioGenApi as bP, type AdminThreeDGenApi as bQ, type AppRole as bR, type ResolveLaunchIntentOptions as bS, type LaunchIntent as bT, type AdminUgcBrowseParams as bU, type AdminUgcBrowseResponse as bV, type AdminUgcListReportsParams as bW, type AdminUgcListReportsResponse as bX, type AdminUgcResolveAction as bY, type AdminGenBrowseParams as bZ, type AdminGenBrowseResponse as b_, type RunSubscriptionsResponse as ba, type SubscriptionInterval as bb, type PurchaseSubscriptionResponse as bc, type OpenStoreResult as bd, type LoadEmbeddedAssetsResponse as be, type SharedAssetsApi as bf, type PreloaderApi as bg, type SocialApi as bh, type ShareMetadata as bi, type ShareLinkResult as bj, type SocialQRCodeOptions as bk, type QRCodeResult as bl, type ShareClickData as bm, type ShareFileOptions as bn, type ShareFileResult as bo, type CanShareFileResult as bp, type EntitlementApi as bq, type Entitlement as br, type LedgerEntry as bs, type StatsApi as bt, type GrantInfo as bu, type CollectiblesApi as bv, type CollectibleCard as bw, type VipClaimResult as bx, type ShopApi as by, type StorefrontResponse as bz, type RundotGameAvailableRecipe as c, type Category as c$, type AdminGenListReportsParams as c0, type AdminGenListReportsResponse as c1, type ImageGenReport as c2, type AdminGenResolveAction as c3, type SpriteGenEntry as c4, type SpriteGenReport as c5, type ThreeDGenEntry as c6, type ThreeDGenReport as c7, type Avatar3dApi as c8, type AssetManifest as c9, type AdminSpriteGenBrowseResponse as cA, type AdminSpriteGenListReportsParams as cB, type AdminSpriteGenListReportsResponse as cC, type AdminSpriteGenResolveAction as cD, type AdminThreeDGenBrowseParams as cE, type AdminThreeDGenBrowseResponse as cF, type AdminThreeDGenListReportsParams as cG, type AdminThreeDGenListReportsResponse as cH, type AdminThreeDGenResolveAction as cI, type AdminUgcEntry as cJ, type AdminVideoGenBrowseParams as cK, type AdminVideoGenBrowseResponse as cL, type AdminVideoGenListReportsParams as cM, type AdminVideoGenListReportsResponse as cN, type AdminVideoGenResolveAction as cO, type AiContentBlock as cP, type AiImageContent as cQ, type AiImageUrlContent as cR, type AiMessage as cS, type AiResponseFormat as cT, type AiTextContent as cU, type AiToolResultContent as cV, type AiToolUseContent as cW, type Asset as cX, type AudioGenEntry as cY, type AudioGenReport as cZ, CLIP_CONTENT_TYPE as c_, type Avatar3dConfig as ca, type ShowEditorOptions as cb, type Avatar3dEdits as cc, type AdsApi as cd, type SharedStorageHostApi as ce, type FilesApi as cf, type ClipsApi as cg, type AttributionApi as ch, type InitializationContext as ci, type InitializationOptions as cj, type CaptureConsent as ck, type StartClipRecordingOptions as cl, type ClipBlob as cm, type ClipsSupport as cn, type ClipPersistOptions as co, type ClipResult as cp, type UgcEntry as cq, type CaptureConsentStatus as cr, AccessDeniedError as cs, type AdminGenApi as ct, type AdminImageGenBrowseParams as cu, type AdminImageGenBrowseResponse as cv, type AdminImageGenListReportsParams as cw, type AdminImageGenListReportsResponse as cx, type AdminImageGenResolveAction as cy, type AdminSpriteGenBrowseParams as cz, type RundotGameCollectRecipeResult as d, type StorefrontCollection as d$, type ClipAudioOptions as d0, type ClipCameraOptions as d1, type ClipPipLayout as d2, type ClipPipPosition as d3, type ConnectionState as d4, GAMEPAD_BUTTON_NAMES as d5, type GamepadAxes as d6, type GamepadButtonName as d7, type GamepadButtonState as d8, type GamepadSource as d9, type RoomEnvelopeResponse as dA, type RoomEvents as dB, type RoomGamePhase as dC, type RoomMessageEventType as dD, type RoomMessagePayload as dE, type RoomsEnvelopeResponse as dF, RpcInboundStorageApi as dG, RpcSharedAssetsApi as dH, type RpcTransport as dI, type RunSubscription as dJ, type RundotGameRoomCustomMetadata as dK, type RundotGameRoomPayload as dL, type RundotGameRoomRules as dM, type RundotGameRoomRulesGameState as dN, SHARE_FILE_ALLOWED_MIME_TYPES as dO, SHARE_FILE_MAX_SIZE_BYTES as dP, type ScheduleRCSStatus as dQ, type ServerPlayer as dR, type ServerRoom as dS, type ShareFileMimeType as dT, type ShopOrder as dU, type SimulationBatchOperationAssign as dV, type SimulationBatchOperationRemove as dW, type SimulationBatchOperationResult as dX, type SimulationPersonalState as dY, type SimulationRoomActiveRecipe as dZ, type SimulationRoomState as d_, type GetSubscriptionsForTierRequest as da, type HudInsets as db, type IdentityChangeReason as dc, type InboundForKeyEntry as dd, type InboundMethodIds as de, type InboundStorageApi as df, type IsPlayerSubscribedRequest as dg, type JoinOrCreateRoomEnvelopeResponse as dh, type JoinRoomMatchCriteria as di, type LaunchIntentKind as dj, type ListUserRoomsOptions as dk, type LoadEmbeddedAssetsRequest as dl, MockAvatarApi as dm, type NotificationTriggerInput as dn, type OnNotificationCallback as dp, type OnRequestCallback as dq, type OnResponseCallback as dr, type ProposedMovePayload as ds, type Protocol as dt, type PurchaseSubscriptionRequest as du, type RCSAvailabilityReason as dv, type RCSOptInStatus as dw, ROOM_GAME_PHASES as dx, type RealtimeRoomSummary as dy, type RecipeInfo as dz, type RundotGameExecuteRecipeOptions as e, type StorefrontCollectionItem as e0, type SubPath as e1, type Tool as e2, type ToolChoice as e3, type ToolUse as e4, type TimeIntervalTriggerInput as e5, type UgcReport as e6, type VideoGenEntry as e7, type VideoGenReport as e8, createHost as e9, resolveCollectionItemPrice as ea, type RundotGameExecuteRecipeResult as f, type RundotGameExecuteScopedRecipeOptions as g, RundotGameRoom as h, type RundotGameSimulationConfig as i, type RundotGameSimulationEffect as j, type RundotGameSimulationRecipe as k, type RundotGameSimulationStateResponse as l, type SimulationEntityUpdate as m, type SimulationRunSummary as n, type SimulationSnapshotUpdate as o, type SimulationSubscribeOptions as p, type SimulationUpdateData as q, type SimulationUpdateType as r, type RpcRequest as s, type RpcResponse as t, type RpcNotification as u, RpcClient as v, type StorageApi as w, type NavigationStackInfo as x, type PushAppOptions as y, type NavigateToGameOptions as z };
|
|
4460
|
+
export { type EnvironmentInfo as $, type AnalyticsApi as A, type BatchRecipeRequirementsResult as B, type NotificationsApi as C, type ScheduleLocalNotification as D, type ScheduleNotificationOptions as E, type RCSAvailabilityStatus as F, type ScheduleRCSInput as G, type Host as H, type ScheduleRCSResult as I, type RequestRCSOptInInput as J, type RequestRCSOptInResult as K, type PopupsApi as L, type ShowToastOptions as M, type NavigationApi as N, type LikeDialogResult as O, type Profile as P, type QuitOptions as Q, type RundotGameAPI as R, type SimulationActiveRunsUpdate as S, type CommentsPanelResult as T, type LikeStateResult as U, type ShowInterstitialAdOptions as V, type ShowRewardedAdOptions as W, type ProfileApi as X, type DeviceApi as Y, type DeviceInfo as Z, type EnvironmentApi as _, type RecipeRequirementQuery as a, type ListRoomsOptions as a$, type SystemApi as a0, type SafeArea as a1, type AddToHomeScreenResult as a2, type CdnApi as a3, type FetchFromCdnOptions as a4, type AssetUrlResult as a5, type TimeApi as a6, type ServerTimeData as a7, type GetFutureTimeOptions as a8, type AiApi as a9, type SimulationAvailableItem as aA, type SimulationPowerPreview as aB, type SimulationSlotMutationResult as aC, type SimulationSlotContainer as aD, type SimulationAssignment as aE, type SimulationState as aF, type ExecuteRecipeOptions as aG, type ExecuteRecipeResponse as aH, type CollectRecipeResult as aI, type ResetStateOptions as aJ, type ResetStateResult as aK, type GetActiveRunsOptions as aL, type ExecuteScopedRecipeOptions as aM, type ExecuteScopedRecipeResult as aN, type GetAvailableRecipesOptions as aO, type GetAvailableRecipesResult as aP, type Recipe as aQ, type GetBatchRecipeRequirements as aR, type TriggerRecipeChainOptions as aS, type RoomDataUpdate as aT, type RoomMessageEvent as aU, type ProposedMoveEvent as aV, RundotGameTransport as aW, type RoomsApi as aX, type CreateRoomOptions as aY, type JoinOrCreateRoomOptions as aZ, type JoinOrCreateResult as a_, type AiChatCompletionRequest as aa, type AiChatCompletionData as ab, type AiChatCompletionStreamOptions as ac, type AiChatCompletionStreamChunk as ad, type HapticsApi as ae, HapticFeedbackStyle as af, type GamepadSnapshot as ag, type GamepadConnectionEvent as ah, type Subscription as ai, type GamepadApi as aj, type GamepadLatencyStats as ak, type FeaturesApi as al, type Experiment as am, type LifecycleApi as an, type SleepCallback as ao, type AwakeCallback as ap, type PauseCallback as aq, type ResumeCallback as ar, type QuitCallback as as, type BackButtonCallback as at, type IdentityChangedCallback as au, type IdentityChangedEvent as av, type SimulationApi as aw, type SimulationSlotValidationResult as ax, type SimulationBatchOperation as ay, type SimulationBatchOperationsResult as az, type RecipeRequirementResult as b, type AdminThreeDGenApi as b$, type UpdateRoomDataOptions as b0, type RoomMessageRequest as b1, type StartRoomGameOptions as b2, type ProposeMoveRequest as b3, type ProposeMoveResult as b4, type ValidateMoveVerdict as b5, type ValidateMoveResult as b6, type RoomSubscriptionOptions as b7, type LoggingApi as b8, type IapApi as b9, type CanShareFileResult as bA, type EntitlementApi as bB, type Entitlement as bC, type LedgerEntry as bD, type StatsApi as bE, type GrantInfo as bF, type CollectiblesApi as bG, type CollectibleCard as bH, type VipClaimResult as bI, type ShopApi as bJ, type StorefrontResponse as bK, type StorefrontItem as bL, type ShopPurchaseResponse as bM, type ShopOrderHistoryResponse as bN, type PromptLoginResult as bO, type AccessTier as bP, type AccessGateApi as bQ, type TextGenApi as bR, type UgcApi as bS, type MultiplayerApi as bT, type VideoApi as bU, type AppApi as bV, type AdminUgcApi as bW, type AdminImageGenApi as bX, type AdminVideoGenApi as bY, type AdminSpriteGenApi as bZ, type AdminAudioGenApi as b_, type SpendCurrencyOptions as ba, type SpendCurrencyResult as bb, type SubscriptionTier as bc, type RunSubscriptionsResponse as bd, type SubscriptionInterval as be, type PurchaseSubscriptionResponse as bf, type OpenStoreResult as bg, type LoadEmbeddedAssetsResponse as bh, type SharedAssetsApi as bi, type CreditsApi as bj, type CreditsBillingContext as bk, type CreditBalance as bl, type CreditSubscription as bm, type CreditPlansCatalog as bn, type OpenPaywallOptions as bo, type CreditsPurchaseResult as bp, type Unsubscribe as bq, type PreloaderApi as br, type SocialApi as bs, type ShareMetadata as bt, type ShareLinkResult as bu, type SocialQRCodeOptions as bv, type QRCodeResult as bw, type ShareClickData as bx, type ShareFileOptions as by, type ShareFileResult as bz, type RundotGameAvailableRecipe as c, type AiContentBlock as c$, type AppRole as c0, type ResolveLaunchIntentOptions as c1, type LaunchIntent as c2, type ReleaseNote as c3, type AdminUgcBrowseParams as c4, type AdminUgcBrowseResponse as c5, type AdminUgcListReportsParams as c6, type AdminUgcListReportsResponse as c7, type AdminUgcResolveAction as c8, type AdminGenBrowseParams as c9, type ClipPersistOptions as cA, type ClipResult as cB, type UgcEntry as cC, type CaptureConsentStatus as cD, AccessDeniedError as cE, type AdminGenApi as cF, type AdminImageGenBrowseParams as cG, type AdminImageGenBrowseResponse as cH, type AdminImageGenListReportsParams as cI, type AdminImageGenListReportsResponse as cJ, type AdminImageGenResolveAction as cK, type AdminSpriteGenBrowseParams as cL, type AdminSpriteGenBrowseResponse as cM, type AdminSpriteGenListReportsParams as cN, type AdminSpriteGenListReportsResponse as cO, type AdminSpriteGenResolveAction as cP, type AdminThreeDGenBrowseParams as cQ, type AdminThreeDGenBrowseResponse as cR, type AdminThreeDGenListReportsParams as cS, type AdminThreeDGenListReportsResponse as cT, type AdminThreeDGenResolveAction as cU, type AdminUgcEntry as cV, type AdminVideoGenBrowseParams as cW, type AdminVideoGenBrowseResponse as cX, type AdminVideoGenListReportsParams as cY, type AdminVideoGenListReportsResponse as cZ, type AdminVideoGenResolveAction as c_, type AdminGenBrowseResponse as ca, type ImageGenEntry as cb, type AdminGenListReportsParams as cc, type AdminGenListReportsResponse as cd, type ImageGenReport as ce, type AdminGenResolveAction as cf, type SpriteGenEntry as cg, type SpriteGenReport as ch, type ThreeDGenEntry as ci, type ThreeDGenReport as cj, type Avatar3dApi as ck, type AssetManifest as cl, type Avatar3dConfig as cm, type ShowEditorOptions as cn, type Avatar3dEdits as co, type AdsApi as cp, type SharedStorageHostApi as cq, type FilesApi as cr, type ClipsApi as cs, type AttributionApi as ct, type InitializationContext as cu, type InitializationOptions as cv, type CaptureConsent as cw, type StartClipRecordingOptions as cx, type ClipBlob as cy, type ClipsSupport as cz, type RundotGameCollectRecipeResult as d, RpcInboundStorageApi as d$, type AiImageContent as d0, type AiImageUrlContent as d1, type AiMessage as d2, type AiResponseFormat as d3, type AiTextContent as d4, type AiToolResultContent as d5, type AiToolUseContent as d6, type Asset as d7, type AudioGenEntry as d8, type AudioGenReport as d9, type InboundStorageApi as dA, type IsPlayerSubscribedRequest as dB, type JoinOrCreateRoomEnvelopeResponse as dC, type JoinRoomMatchCriteria as dD, type LaunchIntentKind as dE, type ListUserRoomsOptions as dF, type LoadEmbeddedAssetsRequest as dG, MockAvatarApi as dH, type NotificationTriggerInput as dI, type OnNotificationCallback as dJ, type OnRequestCallback as dK, type OnResponseCallback as dL, type ProposedMovePayload as dM, type Protocol as dN, type PurchaseSubscriptionRequest as dO, type RCSAvailabilityReason as dP, type RCSOptInStatus as dQ, ROOM_GAME_PHASES as dR, type RealtimeRoomSummary as dS, type RecipeInfo as dT, type ReleaseType as dU, type RoomEnvelopeResponse as dV, type RoomEvents as dW, type RoomGamePhase as dX, type RoomMessageEventType as dY, type RoomMessagePayload as dZ, type RoomsEnvelopeResponse as d_, CLIP_CONTENT_TYPE as da, CREDITS_EXHAUSTED_CODE as db, type Category as dc, type ClipAudioOptions as dd, type ClipCameraOptions as de, type ClipPipLayout as df, type ClipPipPosition as dg, type ConnectionState as dh, type CreditFreeDailyInfo as di, type CreditPlan as dj, type CreditTopUpPack as dk, type CreditsBilledTo as dl, CreditsExhaustedError as dm, type CreditsExhaustedErrorInfo as dn, type CreditsPurchaseOutcome as dp, GAMEPAD_BUTTON_NAMES as dq, type GamepadAxes as dr, type GamepadButtonName as ds, type GamepadButtonState as dt, type GamepadSource as du, type GetSubscriptionsForTierRequest as dv, type HudInsets as dw, type IdentityChangeReason as dx, type InboundForKeyEntry as dy, type InboundMethodIds as dz, type RundotGameExecuteRecipeOptions as e, RpcSharedAssetsApi as e0, type RpcTransport as e1, type RunSubscription as e2, type RundotGameRoomCustomMetadata as e3, type RundotGameRoomPayload as e4, type RundotGameRoomRules as e5, type RundotGameRoomRulesGameState as e6, SHARE_FILE_ALLOWED_MIME_TYPES as e7, SHARE_FILE_MAX_SIZE_BYTES as e8, type ScheduleRCSStatus as e9, type ServerPlayer as ea, type ServerRoom as eb, type ShareFileMimeType as ec, type ShopOrder as ed, type SimulationBatchOperationAssign as ee, type SimulationBatchOperationRemove as ef, type SimulationBatchOperationResult as eg, type SimulationPersonalState as eh, type SimulationRoomActiveRecipe as ei, type SimulationRoomState as ej, type StorefrontCollection as ek, type StorefrontCollectionItem as el, type SubPath as em, type Tool as en, type ToolChoice as eo, type ToolUse as ep, type TimeIntervalTriggerInput as eq, type UgcReport as er, type VideoGenEntry as es, type VideoGenReport as et, asCreditsExhaustedError as eu, createHost as ev, isCreditsExhaustedError as ew, mapCreditsExhaustion as ex, resolveCollectionItemPrice as ey, type RundotGameExecuteRecipeResult as f, type RundotGameExecuteScopedRecipeOptions as g, RundotGameRoom as h, type RundotGameSimulationConfig as i, type RundotGameSimulationEffect as j, type RundotGameSimulationRecipe as k, type RundotGameSimulationStateResponse as l, type SimulationEntityUpdate as m, type SimulationRunSummary as n, type SimulationSnapshotUpdate as o, type SimulationSubscribeOptions as p, type SimulationUpdateData as q, type SimulationUpdateType as r, type RpcRequest as s, type RpcResponse as t, type RpcNotification as u, RpcClient as v, type StorageApi as w, type NavigationStackInfo as x, type PushAppOptions as y, type NavigateToGameOptions as z };
|