@series-inc/rundot-game-sdk 5.23.0-beta.8 → 5.23.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/dist/{AdsApi-DGVpDGIb.d.ts → AdsApi-DksgfqAT.d.ts} +63 -1
- package/dist/{SyncplayRoomTransport-D6xsCdn5.d.ts → SyncplayRoomTransport-7F_e94v9.d.ts} +1 -1
- package/dist/{chunk-G7TYQYHC.js → chunk-5JSI7LA6.js} +554 -186
- package/dist/chunk-5JSI7LA6.js.map +1 -0
- package/dist/{chunk-ULE3BIYV.js → chunk-EFEOX7D7.js} +60 -6
- package/dist/chunk-EFEOX7D7.js.map +1 -0
- package/dist/{chunk-7T3Q22DD.js → chunk-KQ3J4GC4.js} +143 -93
- package/dist/chunk-KQ3J4GC4.js.map +1 -0
- package/dist/{chunk-VZLX7S73.js → chunk-TIOJVMES.js} +3 -3
- package/dist/{chunk-VZLX7S73.js.map → chunk-TIOJVMES.js.map} +1 -1
- package/dist/{chunk-EREDCD6A.js → chunk-VTEO4M7E.js} +4 -3
- package/dist/chunk-VTEO4M7E.js.map +1 -0
- package/dist/{chunk-HVVCNDSV.js → chunk-XJCC6PWO.js} +14 -3
- package/dist/chunk-XJCC6PWO.js.map +1 -0
- package/dist/host-http.js +2 -2
- package/dist/{index-UMslJhz5.d.ts → index-BJHZ_Q3g.d.ts} +1 -1
- package/dist/index.d.ts +32 -5
- package/dist/index.js +3 -3
- package/dist/mp-server/index.d.ts +22 -5
- package/dist/playground/index.js +80 -5
- package/dist/playground/index.js.map +1 -1
- package/dist/rundot-game-api/index.d.ts +2 -2
- package/dist/rundot-game-api/index.js +4 -3
- package/dist/rundot-game-api/index.js.map +1 -1
- package/dist/{session-promotion-DgrVQE2y.d.ts → session-promotion-CN7lr85d.d.ts} +1 -1
- package/dist/syncplay/browser.d.ts +70 -8
- package/dist/syncplay/browser.js +18454 -18232
- package/dist/syncplay/browser.js.map +1 -1
- package/dist/syncplay/creator.d.ts +4 -4
- package/dist/syncplay/creator.js +2 -2
- package/dist/syncplay/index.d.ts +2 -2
- package/dist/syncplay/index.js +2 -2
- package/dist/syncplay/node.d.ts +65 -6
- package/dist/syncplay/node.js +433 -16
- package/dist/syncplay/node.js.map +1 -1
- package/dist/syncplay/tools.js +13 -1
- package/dist/syncplay/tools.js.map +1 -1
- package/dist/{types-DbhOvOdx.d.ts → types-BXxDmID0.d.ts} +66 -7
- package/dist/vite/index.d.ts +7 -0
- package/dist/vite/index.js +53 -1597
- package/dist/vite/index.js.map +1 -1
- package/docs/SUMMARY.md +1 -0
- package/docs/agents-index.txt +1 -1
- package/docs/rundot-developer-platform/api/LIVEOPS.md +130 -0
- package/docs/rundot-developer-platform/api/MULTIPLAYER.md +8 -0
- package/docs/rundot-developer-platform/api/SYNCPLAY-MOVEMENT.md +23 -0
- package/docs/rundot-developer-platform/api/SYNCPLAY-PATHFINDING.md +34 -0
- package/docs/rundot-developer-platform/api/SYNCPLAY.md +141 -18
- package/docs/rundot-developer-platform/cli-reference.md +45 -0
- package/docs/rundot-developer-platform/playground.md +8 -2
- package/package.json +1 -1
- package/dist/chunk-7T3Q22DD.js.map +0 -1
- package/dist/chunk-EREDCD6A.js.map +0 -1
- package/dist/chunk-G7TYQYHC.js.map +0 -1
- package/dist/chunk-HVVCNDSV.js.map +0 -1
- package/dist/chunk-ULE3BIYV.js.map +0 -1
|
@@ -1084,6 +1084,66 @@ interface FeaturesApi {
|
|
|
1084
1084
|
getFeatureGate(gateName: string): Promise<boolean>;
|
|
1085
1085
|
}
|
|
1086
1086
|
|
|
1087
|
+
interface LiveOpsOverride {
|
|
1088
|
+
id: string;
|
|
1089
|
+
activeAt?: string;
|
|
1090
|
+
expiresAt?: string;
|
|
1091
|
+
values: Record<string, unknown>;
|
|
1092
|
+
}
|
|
1093
|
+
interface LiveOpsSection {
|
|
1094
|
+
values?: Record<string, unknown>;
|
|
1095
|
+
overrides?: LiveOpsOverride[];
|
|
1096
|
+
}
|
|
1097
|
+
interface ResolvedLiveOps {
|
|
1098
|
+
values: Record<string, unknown>;
|
|
1099
|
+
activeOverrideIds: string[];
|
|
1100
|
+
/** Epoch-ms of the next window boundary that changes the active set, or null. */
|
|
1101
|
+
nextChangeAt: number | null;
|
|
1102
|
+
}
|
|
1103
|
+
/**
|
|
1104
|
+
* Resolve a LiveOps `client` section against a caller-supplied clock. Pure: never
|
|
1105
|
+
* reads an ambient clock (`nowMs` is server-anchored in the SDK real paths,
|
|
1106
|
+
* `Date.now()` in Mock, UTC now in the CLI preview). Purity is load-bearing — the
|
|
1107
|
+
* MP authority resolves once at match start with a frozen timestamp.
|
|
1108
|
+
*/
|
|
1109
|
+
declare function resolveLiveOpsSection(section: LiveOpsSection | undefined, nowMs: number): ResolvedLiveOps;
|
|
1110
|
+
|
|
1111
|
+
/** Resolved config — the foot-gun-free default. */
|
|
1112
|
+
interface LiveOpsConfigResult {
|
|
1113
|
+
/** Resolved client-visible values (base + currently-active overrides). */
|
|
1114
|
+
values: Record<string, unknown>;
|
|
1115
|
+
activeOverrideIds: string[];
|
|
1116
|
+
/** Server config snapshot id the rules came from — quote it in bug reports. */
|
|
1117
|
+
configVersion: string;
|
|
1118
|
+
/** Epoch-ms (server clock) of the next schedule flip, or null. Re-call at/after it. */
|
|
1119
|
+
nextChangeAt: number | null;
|
|
1120
|
+
}
|
|
1121
|
+
/** Unresolved rules — advanced escape hatch. */
|
|
1122
|
+
interface LiveOpsRawConfig {
|
|
1123
|
+
values: Record<string, unknown>;
|
|
1124
|
+
overrides: LiveOpsOverride[];
|
|
1125
|
+
configVersion: string;
|
|
1126
|
+
/** Authoritative server clock at fetch, for callers doing their own resolution. */
|
|
1127
|
+
serverTimeMs: number;
|
|
1128
|
+
}
|
|
1129
|
+
interface LiveOpsApi {
|
|
1130
|
+
/**
|
|
1131
|
+
* Resolved LiveOps config (default). Resolves client-side against a
|
|
1132
|
+
* server-anchored clock, so scheduled on/off is always correct at call time
|
|
1133
|
+
* even when rules are cached. `maxAgeMs` (default 60_000; 0 = force network)
|
|
1134
|
+
* governs how fresh the underlying rules are, i.e. how fast a push propagates.
|
|
1135
|
+
* Always async, even on a cache hit. Re-call at natural boundaries and at
|
|
1136
|
+
* `nextChangeAt`; do not poll per-frame.
|
|
1137
|
+
*/
|
|
1138
|
+
getConfigAsync(options?: {
|
|
1139
|
+
maxAgeMs?: number;
|
|
1140
|
+
}): Promise<LiveOpsConfigResult>;
|
|
1141
|
+
/** Unresolved rules + server clock, for advanced consumers resolving themselves. */
|
|
1142
|
+
getRawConfigAsync(options?: {
|
|
1143
|
+
maxAgeMs?: number;
|
|
1144
|
+
}): Promise<LiveOpsRawConfig>;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1087
1147
|
type AwakeCallback = () => void;
|
|
1088
1148
|
type SleepCallback = () => void;
|
|
1089
1149
|
type ResumeCallback = () => void;
|
|
@@ -3858,6 +3918,7 @@ interface Host {
|
|
|
3858
3918
|
readonly haptics: HapticsApi;
|
|
3859
3919
|
readonly gamepad: GamepadApi;
|
|
3860
3920
|
readonly features: FeaturesApi;
|
|
3921
|
+
readonly liveops: LiveOpsApi;
|
|
3861
3922
|
readonly lifecycle: LifecycleApi;
|
|
3862
3923
|
readonly simulation: SimulationApi;
|
|
3863
3924
|
/** @deprecated Rooms V1 is unsupported. Use `RundotGameAPI.realtime` (server-authoritative WebSocket rooms). */
|
|
@@ -4191,6 +4252,7 @@ interface RundotGameAPI {
|
|
|
4191
4252
|
*/
|
|
4192
4253
|
initializeAsync(options?: InitializationOptions): Promise<InitializationContext>;
|
|
4193
4254
|
simulation: SimulationApi;
|
|
4255
|
+
liveops: LiveOpsApi;
|
|
4194
4256
|
leaderboard: LeaderboardApi;
|
|
4195
4257
|
ugc: UgcApi;
|
|
4196
4258
|
gamepad: GamepadApi;
|
|
@@ -4423,4 +4485,4 @@ interface AdsApi {
|
|
|
4423
4485
|
showInterstitialAd(options?: ShowInterstitialAdOptions): Promise<boolean>;
|
|
4424
4486
|
}
|
|
4425
4487
|
|
|
4426
|
-
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 AppRole 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 VideoApi as bT, type AppApi as bU, type AdminUgcApi as bV, type AdminImageGenApi as bW, type AdminVideoGenApi as bX, type AdminSpriteGenApi as bY, type AdminAudioGenApi as bZ, type AdminThreeDGenApi 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 ResolveLaunchIntentOptions as c0, type LaunchIntent as c1, type ReleaseNote as c2, type AdminUgcBrowseParams as c3, type AdminUgcBrowseResponse as c4, type AdminUgcListReportsParams as c5, type AdminUgcListReportsResponse as c6, type AdminUgcResolveAction as c7, type AdminGenBrowseParams as c8, type AdminGenBrowseResponse 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 ImageGenEntry as ca, type AdminGenListReportsParams as cb, type AdminGenListReportsResponse as cc, type ImageGenReport as cd, type AdminGenResolveAction as ce, type SpriteGenEntry as cf, type SpriteGenReport as cg, type ThreeDGenEntry as ch, type ThreeDGenReport as ci, type Avatar3dApi as cj, type AssetManifest as ck, type Avatar3dConfig as cl, type ShowEditorOptions as cm, type Avatar3dEdits as cn, type AdsApi as co, type RawEnvironmentInfo 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, type RundotGameRoomCustomMetadata 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 IsPlayerSubscribedRequest as dA, type JoinOrCreateRoomEnvelopeResponse as dB, type JoinRoomMatchCriteria as dC, type LaunchIntentKind as dD, type LoadEmbeddedAssetsRequest as dE, MockAvatarApi as dF, type NotificationTriggerInput as dG, type OnNotificationCallback as dH, type OnRequestCallback as dI, type OnResponseCallback as dJ, type PlatformCapabilities as dK, type ProposedMovePayload as dL, type PurchaseSubscriptionRequest as dM, type RCSAvailabilityReason as dN, type RCSOptInStatus as dO, ROOM_GAME_PHASES as dP, type RecipeInfo as dQ, type ReleaseType as dR, type RoomEnvelopeResponse as dS, type RoomGamePhase as dT, type RoomMessageEventType as dU, type RoomMessagePayload as dV, type RoomsEnvelopeResponse as dW, RpcInboundStorageApi as dX, RpcSharedAssetsApi as dY, type RpcTransport as dZ, type RunSubscription 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 CreditFreeDailyInfo as dh, type CreditPlan as di, type CreditTopUpPack as dj, type CreditsBilledTo as dk, CreditsExhaustedError as dl, type CreditsExhaustedErrorInfo as dm, type CreditsPurchaseOutcome as dn, GAMEPAD_BUTTON_NAMES as dp, type GamepadAxes as dq, type GamepadButtonName as dr, type GamepadButtonState as ds, type GamepadSource as dt, type GetSubscriptionsForTierRequest as du, type HudInsets as dv, type IdentityChangeReason as dw, type InboundForKeyEntry as dx, type InboundMethodIds as dy, type InboundStorageApi as dz, type RundotGameExecuteRecipeOptions as e, type RundotGameRoomPayload as e0, type RundotGameRoomRules as e1, type RundotGameRoomRulesGameState as e2, SHARE_FILE_ALLOWED_MIME_TYPES as e3, SHARE_FILE_MAX_SIZE_BYTES as e4, type ScheduleRCSStatus as e5, type ShareFileMimeType as e6, type ShopOrder as e7, type SimulationBatchOperationAssign as e8, type SimulationBatchOperationRemove as e9, type SimulationBatchOperationResult as ea, type SimulationPersonalState as eb, type SimulationRoomActiveRecipe as ec, type SimulationRoomState as ed, type StorefrontCollection as ee, type StorefrontCollectionItem as ef, type SubPath as eg, TIER_SUPPORTED_INTERVALS as eh, type Tool as ei, type ToolChoice as ej, type ToolUse as ek, type TimeIntervalTriggerInput as el, type UgcReport as em, type VideoGenEntry as en, type VideoGenReport as eo, asCreditsExhaustedError as ep, assertTierSupportsInterval as eq, createHost as er, isCreditsExhaustedError as es, mapCreditsExhaustion as et, resolveCollectionItemPrice as eu, 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 };
|
|
4488
|
+
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 RoomsApi 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 SimulationApi as aA, type SimulationSlotValidationResult as aB, type SimulationBatchOperation as aC, type SimulationBatchOperationsResult as aD, type SimulationAvailableItem as aE, type SimulationPowerPreview as aF, type SimulationSlotMutationResult as aG, type SimulationSlotContainer as aH, type SimulationAssignment as aI, type SimulationState as aJ, type ExecuteRecipeOptions as aK, type ExecuteRecipeResponse as aL, type CollectRecipeResult as aM, type ResetStateOptions as aN, type ResetStateResult as aO, type GetActiveRunsOptions as aP, type ExecuteScopedRecipeOptions as aQ, type ExecuteScopedRecipeResult as aR, type GetAvailableRecipesOptions as aS, type GetAvailableRecipesResult as aT, type Recipe as aU, type GetBatchRecipeRequirements as aV, type TriggerRecipeChainOptions as aW, type RoomDataUpdate as aX, type RoomMessageEvent as aY, type ProposedMoveEvent as aZ, RundotGameTransport 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 LiveOpsApi as an, type LiveOpsConfigResult as ao, type LiveOpsRawConfig as ap, type LiveOpsSection as aq, type LifecycleApi as ar, type SleepCallback as as, type AwakeCallback as at, type PauseCallback as au, type ResumeCallback as av, type QuitCallback as aw, type BackButtonCallback as ax, type IdentityChangedCallback as ay, type IdentityChangedEvent as az, type RecipeRequirementResult as b, type AdminVideoGenApi as b$, type CreateRoomOptions as b0, type JoinOrCreateRoomOptions as b1, type JoinOrCreateResult as b2, type ListRoomsOptions as b3, type UpdateRoomDataOptions as b4, type RoomMessageRequest as b5, type StartRoomGameOptions as b6, type ProposeMoveRequest as b7, type ProposeMoveResult as b8, type ValidateMoveVerdict as b9, type QRCodeResult as bA, type ShareClickData as bB, type ShareFileOptions as bC, type ShareFileResult as bD, type CanShareFileResult as bE, type EntitlementApi as bF, type Entitlement as bG, type LedgerEntry as bH, type StatsApi as bI, type GrantInfo as bJ, type CollectiblesApi as bK, type CollectibleCard as bL, type VipClaimResult as bM, type ShopApi as bN, type StorefrontResponse as bO, type StorefrontItem as bP, type ShopPurchaseResponse as bQ, type ShopOrderHistoryResponse as bR, type PromptLoginResult as bS, type AccessTier as bT, type AccessGateApi as bU, type TextGenApi as bV, type UgcApi as bW, type VideoApi as bX, type AppApi as bY, type AdminUgcApi as bZ, type AdminImageGenApi as b_, type ValidateMoveResult as ba, type RoomSubscriptionOptions as bb, type LoggingApi as bc, type IapApi as bd, type SpendCurrencyOptions as be, type SpendCurrencyResult as bf, type SubscriptionTier as bg, type RunSubscriptionsResponse as bh, type SubscriptionInterval as bi, type PurchaseSubscriptionResponse as bj, type OpenStoreResult as bk, type LoadEmbeddedAssetsResponse as bl, type SharedAssetsApi as bm, type CreditsApi as bn, type CreditsBillingContext as bo, type CreditBalance as bp, type CreditSubscription as bq, type CreditPlansCatalog as br, type OpenPaywallOptions as bs, type CreditsPurchaseResult as bt, type Unsubscribe as bu, type PreloaderApi as bv, type SocialApi as bw, type ShareMetadata as bx, type ShareLinkResult as by, type SocialQRCodeOptions as bz, type RundotGameAvailableRecipe as c, type AdminVideoGenBrowseResponse as c$, type AdminSpriteGenApi as c0, type AdminAudioGenApi as c1, type AdminThreeDGenApi as c2, type AppRole as c3, type ResolveLaunchIntentOptions as c4, type LaunchIntent as c5, type ReleaseNote as c6, type AdminUgcBrowseParams as c7, type AdminUgcBrowseResponse as c8, type AdminUgcListReportsParams as c9, type CaptureConsent as cA, type StartClipRecordingOptions as cB, type ClipBlob as cC, type ClipsSupport as cD, type ClipPersistOptions as cE, type ClipResult as cF, type UgcEntry as cG, type CaptureConsentStatus as cH, AccessDeniedError as cI, type AdminGenApi as cJ, type AdminImageGenBrowseParams as cK, type AdminImageGenBrowseResponse as cL, type AdminImageGenListReportsParams as cM, type AdminImageGenListReportsResponse as cN, type AdminImageGenResolveAction as cO, type AdminSpriteGenBrowseParams as cP, type AdminSpriteGenBrowseResponse as cQ, type AdminSpriteGenListReportsParams as cR, type AdminSpriteGenListReportsResponse as cS, type AdminSpriteGenResolveAction as cT, type AdminThreeDGenBrowseParams as cU, type AdminThreeDGenBrowseResponse as cV, type AdminThreeDGenListReportsParams as cW, type AdminThreeDGenListReportsResponse as cX, type AdminThreeDGenResolveAction as cY, type AdminUgcEntry as cZ, type AdminVideoGenBrowseParams as c_, type AdminUgcListReportsResponse as ca, type AdminUgcResolveAction as cb, type AdminGenBrowseParams as cc, type AdminGenBrowseResponse as cd, type ImageGenEntry as ce, type AdminGenListReportsParams as cf, type AdminGenListReportsResponse as cg, type ImageGenReport as ch, type AdminGenResolveAction as ci, type SpriteGenEntry as cj, type SpriteGenReport as ck, type ThreeDGenEntry as cl, type ThreeDGenReport as cm, type Avatar3dApi as cn, type AssetManifest as co, type Avatar3dConfig as cp, type ShowEditorOptions as cq, type Avatar3dEdits as cr, type AdsApi as cs, type RawEnvironmentInfo as ct, type SharedStorageHostApi as cu, type FilesApi as cv, type ClipsApi as cw, type AttributionApi as cx, type InitializationContext as cy, type InitializationOptions as cz, type RundotGameCollectRecipeResult as d, type RoomMessagePayload as d$, type AdminVideoGenListReportsParams as d0, type AdminVideoGenListReportsResponse as d1, type AdminVideoGenResolveAction as d2, type AiContentBlock as d3, type AiImageContent as d4, type AiImageUrlContent as d5, type AiMessage as d6, type AiResponseFormat as d7, type AiTextContent as d8, type AiToolResultContent as d9, type IdentityChangeReason as dA, type InboundForKeyEntry as dB, type InboundMethodIds as dC, type InboundStorageApi as dD, type IsPlayerSubscribedRequest as dE, type JoinOrCreateRoomEnvelopeResponse as dF, type JoinRoomMatchCriteria as dG, type LaunchIntentKind as dH, type LiveOpsOverride as dI, type LoadEmbeddedAssetsRequest as dJ, MockAvatarApi as dK, type NotificationTriggerInput as dL, type OnNotificationCallback as dM, type OnRequestCallback as dN, type OnResponseCallback as dO, type PlatformCapabilities as dP, type ProposedMovePayload as dQ, type PurchaseSubscriptionRequest as dR, type RCSAvailabilityReason as dS, type RCSOptInStatus as dT, ROOM_GAME_PHASES as dU, type RecipeInfo as dV, type ReleaseType as dW, type ResolvedLiveOps as dX, type RoomEnvelopeResponse as dY, type RoomGamePhase as dZ, type RoomMessageEventType as d_, type AiToolUseContent as da, type Asset as db, type AudioGenEntry as dc, type AudioGenReport as dd, CLIP_CONTENT_TYPE as de, CREDITS_EXHAUSTED_CODE as df, type Category as dg, type ClipAudioOptions as dh, type ClipCameraOptions as di, type ClipPipLayout as dj, type ClipPipPosition as dk, type CreditFreeDailyInfo as dl, type CreditPlan as dm, type CreditTopUpPack as dn, type CreditsBilledTo as dp, CreditsExhaustedError as dq, type CreditsExhaustedErrorInfo as dr, type CreditsPurchaseOutcome as ds, GAMEPAD_BUTTON_NAMES as dt, type GamepadAxes as du, type GamepadButtonName as dv, type GamepadButtonState as dw, type GamepadSource as dx, type GetSubscriptionsForTierRequest as dy, type HudInsets as dz, type RundotGameExecuteRecipeOptions as e, type RoomsEnvelopeResponse as e0, RpcInboundStorageApi as e1, RpcSharedAssetsApi as e2, type RpcTransport as e3, type RunSubscription as e4, type RundotGameRoomCustomMetadata as e5, type RundotGameRoomPayload as e6, type RundotGameRoomRules as e7, type RundotGameRoomRulesGameState as e8, SHARE_FILE_ALLOWED_MIME_TYPES as e9, resolveCollectionItemPrice as eA, resolveLiveOpsSection as eB, SHARE_FILE_MAX_SIZE_BYTES as ea, type ScheduleRCSStatus 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, TIER_SUPPORTED_INTERVALS as en, type Tool as eo, type ToolChoice as ep, type ToolUse as eq, type TimeIntervalTriggerInput as er, type UgcReport as es, type VideoGenEntry as et, type VideoGenReport as eu, asCreditsExhaustedError as ev, assertTierSupportsInterval as ew, createHost as ex, isCreditsExhaustedError as ey, mapCreditsExhaustion as ez, 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 };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as CanonicalValue, h as ReplayFile, O as OfflineSession } from './types-
|
|
1
|
+
import { C as CanonicalValue, h as ReplayFile, O as OfflineSession } from './types-BXxDmID0.js';
|
|
2
2
|
import { M as MultiplayerApi } from './MultiplayerApi-nnrGTTcO.js';
|
|
3
3
|
|
|
4
4
|
/**
|