@series-inc/rundot-game-sdk 5.20.0 → 5.21.0-beta.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-CGUqUO3N.d.ts → AdsApi-YHb678bD.d.ts} +19 -4
- package/dist/{chunk-FL76BZTM.js → chunk-3SHOU4I4.js} +6 -6
- package/dist/{chunk-FL76BZTM.js.map → chunk-3SHOU4I4.js.map} +1 -1
- package/dist/{chunk-BXGNMZKL.js → chunk-DYSNPHPM.js} +8 -2
- package/dist/chunk-DYSNPHPM.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -2
- package/dist/rundot-game-api/index.d.ts +2 -2
- package/dist/rundot-game-api/index.js +2 -2
- package/dist/sandbox/index.js +10 -3
- package/dist/sandbox/index.js.map +1 -1
- package/dist/vite/index.js +1 -1
- package/dist/vite/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-BXGNMZKL.js.map +0 -1
|
@@ -927,7 +927,7 @@ interface LifecycleApi {
|
|
|
927
927
|
*
|
|
928
928
|
* Use this to navigate back within your game's own UI or show an exit
|
|
929
929
|
* confirmation. If you want the host to perform its default quit behavior,
|
|
930
|
-
* call `RundotGameAPI.
|
|
930
|
+
* call `RundotGameAPI.requestPopOrQuit()` from within the callback.
|
|
931
931
|
*
|
|
932
932
|
* On platforms without a hardware back button (iOS, web), this event never fires,
|
|
933
933
|
* but registering a handler is safe and acts as a no-op.
|
|
@@ -1549,7 +1549,7 @@ interface LoggingApi {
|
|
|
1549
1549
|
}
|
|
1550
1550
|
|
|
1551
1551
|
interface SharedAssetsApi {
|
|
1552
|
-
loadAssetsBundle(game: string, bundleKey: string): Promise<ArrayBuffer>;
|
|
1552
|
+
loadAssetsBundle(game: string, bundleKey: string, fileType?: string): Promise<ArrayBuffer>;
|
|
1553
1553
|
}
|
|
1554
1554
|
|
|
1555
1555
|
declare class RpcSharedAssetsApi implements SharedAssetsApi {
|
|
@@ -2253,6 +2253,14 @@ interface UploadResult {
|
|
|
2253
2253
|
uploadHeaders: Record<string, string>;
|
|
2254
2254
|
key: string;
|
|
2255
2255
|
expiresAt: number;
|
|
2256
|
+
/**
|
|
2257
|
+
* Present only when overwriting an existing file. Pass it straight back to
|
|
2258
|
+
* `confirmUpload(key, { uploadToken })` so the server can atomically resolve
|
|
2259
|
+
* concurrent overwrites of the same key (the matching confirm wins; a
|
|
2260
|
+
* superseded one is rejected). The previous version keeps serving until the
|
|
2261
|
+
* matching confirm commits — reads are never interrupted by an overwrite.
|
|
2262
|
+
*/
|
|
2263
|
+
uploadToken?: string;
|
|
2256
2264
|
}
|
|
2257
2265
|
interface ListParams {
|
|
2258
2266
|
prefix?: string;
|
|
@@ -2434,6 +2442,13 @@ interface ArchiveExtractResult {
|
|
|
2434
2442
|
}
|
|
2435
2443
|
interface ConfirmUploadOptions {
|
|
2436
2444
|
clientRef?: string;
|
|
2445
|
+
/** The `uploadToken` returned by `upload()` for an overwrite. Required to confirm an overwrite. */
|
|
2446
|
+
uploadToken?: string;
|
|
2447
|
+
}
|
|
2448
|
+
interface BatchConfirmOptions {
|
|
2449
|
+
clientRef?: string;
|
|
2450
|
+
/** Per-key `uploadToken`s returned by `batchUpload()` for overwrites, keyed by file key. */
|
|
2451
|
+
uploadTokens?: Record<string, string>;
|
|
2437
2452
|
}
|
|
2438
2453
|
interface BatchUploadParams {
|
|
2439
2454
|
files: Array<{
|
|
@@ -2479,7 +2494,7 @@ interface FilesApi {
|
|
|
2479
2494
|
upload(params: UploadParams): Promise<UploadResult>;
|
|
2480
2495
|
confirmUpload(key: string, options?: ConfirmUploadOptions): Promise<FileEntry>;
|
|
2481
2496
|
batchUpload(params: BatchUploadParams): Promise<BatchUploadResult>;
|
|
2482
|
-
batchConfirm(keys: string[], options?:
|
|
2497
|
+
batchConfirm(keys: string[], options?: BatchConfirmOptions): Promise<BatchConfirmResult>;
|
|
2483
2498
|
getUrl(params: GetUrlParams): Promise<string>;
|
|
2484
2499
|
getUrls(params: GetUrlsParams): Promise<GetUrlsResult>;
|
|
2485
2500
|
getMetadata(params: GetMetadataParams): Promise<FileEntry>;
|
|
@@ -3781,4 +3796,4 @@ interface AdsApi {
|
|
|
3781
3796
|
showInterstitialAd(options?: ShowInterstitialAdOptions): Promise<boolean>;
|
|
3782
3797
|
}
|
|
3783
3798
|
|
|
3784
|
-
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 LoggingApi 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 ResetStateOptions as aA, type ResetStateResult as aB, type GetActiveRunsOptions as aC, type ExecuteScopedRecipeOptions as aD, type ExecuteScopedRecipeResult as aE, type GetAvailableRecipesOptions as aF, type GetAvailableRecipesResult as aG, type Recipe as aH, type GetBatchRecipeRequirements as aI, type TriggerRecipeChainOptions as aJ, type RoomDataUpdate as aK, type RoomMessageEvent as aL, type ProposedMoveEvent as aM, RundotGameTransport as aN, type RoomsApi as aO, type CreateRoomOptions as aP, type JoinOrCreateRoomOptions as aQ, type JoinOrCreateResult as aR, type ListRoomsOptions as aS, type UpdateRoomDataOptions as aT, type RoomMessageRequest as aU, type StartRoomGameOptions as aV, type ProposeMoveRequest as aW, type ProposeMoveResult as aX, type ValidateMoveVerdict as aY, type ValidateMoveResult as aZ, type RoomSubscriptionOptions as a_, type AiChatCompletionStreamChunk as aa, type HapticsApi as ab, HapticFeedbackStyle as ac, type FeaturesApi as ad, type Experiment as ae, type LifecycleApi as af, type SleepCallback as ag, type Subscription as ah, type AwakeCallback as ai, type PauseCallback as aj, type ResumeCallback as ak, type QuitCallback as al, type BackButtonCallback as am, type SimulationApi as an, type SimulationSlotValidationResult as ao, type SimulationBatchOperation as ap, type SimulationBatchOperationsResult as aq, type SimulationAvailableItem as ar, type SimulationPowerPreview as as, type SimulationSlotMutationResult as at, type SimulationSlotContainer as au, type SimulationAssignment as av, type SimulationState as aw, type ExecuteRecipeOptions as ax, type ExecuteRecipeResponse as ay, type CollectRecipeResult as az, type RecipeRequirementResult as b, type
|
|
3799
|
+
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 LoggingApi 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 ResetStateOptions as aA, type ResetStateResult as aB, type GetActiveRunsOptions as aC, type ExecuteScopedRecipeOptions as aD, type ExecuteScopedRecipeResult as aE, type GetAvailableRecipesOptions as aF, type GetAvailableRecipesResult as aG, type Recipe as aH, type GetBatchRecipeRequirements as aI, type TriggerRecipeChainOptions as aJ, type RoomDataUpdate as aK, type RoomMessageEvent as aL, type ProposedMoveEvent as aM, RundotGameTransport as aN, type RoomsApi as aO, type CreateRoomOptions as aP, type JoinOrCreateRoomOptions as aQ, type JoinOrCreateResult as aR, type ListRoomsOptions as aS, type UpdateRoomDataOptions as aT, type RoomMessageRequest as aU, type StartRoomGameOptions as aV, type ProposeMoveRequest as aW, type ProposeMoveResult as aX, type ValidateMoveVerdict as aY, type ValidateMoveResult as aZ, type RoomSubscriptionOptions as a_, type AiChatCompletionStreamChunk as aa, type HapticsApi as ab, HapticFeedbackStyle as ac, type FeaturesApi as ad, type Experiment as ae, type LifecycleApi as af, type SleepCallback as ag, type Subscription as ah, type AwakeCallback as ai, type PauseCallback as aj, type ResumeCallback as ak, type QuitCallback as al, type BackButtonCallback as am, type SimulationApi as an, type SimulationSlotValidationResult as ao, type SimulationBatchOperation as ap, type SimulationBatchOperationsResult as aq, type SimulationAvailableItem as ar, type SimulationPowerPreview as as, type SimulationSlotMutationResult as at, type SimulationSlotContainer as au, type SimulationAssignment as av, type SimulationState as aw, type ExecuteRecipeOptions as ax, type ExecuteRecipeResponse as ay, type CollectRecipeResult as az, type RecipeRequirementResult as b, type Avatar3dEdits as b$, type IapApi as b0, type SpendCurrencyOptions as b1, type SpendCurrencyResult as b2, type SubscriptionTier as b3, type RunSubscriptionsResponse as b4, type SubscriptionInterval as b5, type PurchaseSubscriptionResponse as b6, type OpenStoreResult as b7, type LoadEmbeddedAssetsResponse as b8, type SharedAssetsApi as b9, type AdminUgcApi as bA, type AdminImageGenApi as bB, type AdminVideoGenApi as bC, type AdminSpriteGenApi as bD, type AdminAudioGenApi as bE, type AdminThreeDGenApi as bF, type AppRole as bG, type AdminUgcBrowseParams as bH, type AdminUgcBrowseResponse as bI, type AdminUgcListReportsParams as bJ, type AdminUgcListReportsResponse as bK, type AdminUgcResolveAction as bL, type AdminGenBrowseParams as bM, type AdminGenBrowseResponse as bN, type ImageGenEntry as bO, type AdminGenListReportsParams as bP, type AdminGenListReportsResponse as bQ, type ImageGenReport as bR, type AdminGenResolveAction as bS, type SpriteGenEntry as bT, type SpriteGenReport as bU, type ThreeDGenEntry as bV, type ThreeDGenReport as bW, type Avatar3dApi as bX, type AssetManifest as bY, type Avatar3dConfig as bZ, type ShowEditorOptions as b_, type PreloaderApi as ba, type SocialApi as bb, type ShareMetadata as bc, type ShareLinkResult as bd, type SocialQRCodeOptions as be, type QRCodeResult as bf, type ShareClickData as bg, type ShareFileOptions as bh, type ShareFileResult as bi, type CanShareFileResult as bj, type EntitlementApi as bk, type Entitlement as bl, type LedgerEntry 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 MultiplayerApi as bx, type VideoApi as by, type AppApi as bz, type RundotGameAvailableRecipe as c, type JoinRoomMatchCriteria as c$, type AdsApi as c0, type SharedStorageHostApi as c1, type FilesApi as c2, type ClipsApi as c3, type AttributionApi as c4, type InitializationContext as c5, type InitializationOptions as c6, type CaptureConsent as c7, type StartClipRecordingOptions as c8, type ClipBlob as c9, type AdminVideoGenListReportsResponse as cA, type AdminVideoGenResolveAction as cB, type AiContentBlock as cC, type AiImageContent as cD, type AiImageUrlContent as cE, type AiMessage as cF, type AiResponseFormat as cG, type AiTextContent as cH, type AiToolResultContent as cI, type AiToolUseContent as cJ, type Asset as cK, type AudioGenEntry as cL, type AudioGenReport as cM, CLIP_CONTENT_TYPE as cN, type Category as cO, type ClipAudioOptions as cP, type ClipCameraOptions as cQ, type ClipPipLayout as cR, type ClipPipPosition as cS, type ConnectionState as cT, type GetSubscriptionsForTierRequest as cU, type HudInsets as cV, type InboundForKeyEntry as cW, type InboundMethodIds as cX, type InboundStorageApi as cY, type IsPlayerSubscribedRequest as cZ, type JoinOrCreateRoomEnvelopeResponse as c_, type ClipsSupport as ca, type ClipPersistOptions as cb, type ClipResult as cc, type UgcEntry as cd, type CaptureConsentStatus as ce, AccessDeniedError as cf, type AdminGenApi as cg, type AdminImageGenBrowseParams as ch, type AdminImageGenBrowseResponse as ci, type AdminImageGenListReportsParams as cj, type AdminImageGenListReportsResponse as ck, type AdminImageGenResolveAction as cl, type AdminSpriteGenBrowseParams as cm, type AdminSpriteGenBrowseResponse as cn, type AdminSpriteGenListReportsParams as co, type AdminSpriteGenListReportsResponse as cp, type AdminSpriteGenResolveAction as cq, type AdminThreeDGenBrowseParams as cr, type AdminThreeDGenBrowseResponse as cs, type AdminThreeDGenListReportsParams as ct, type AdminThreeDGenListReportsResponse as cu, type AdminThreeDGenResolveAction as cv, type AdminUgcEntry as cw, type AdminVideoGenBrowseParams as cx, type AdminVideoGenBrowseResponse as cy, type AdminVideoGenListReportsParams as cz, type RundotGameCollectRecipeResult as d, type LoadEmbeddedAssetsRequest as d0, MockAvatarApi as d1, type NotificationTriggerInput as d2, type OnNotificationCallback as d3, type OnRequestCallback as d4, type OnResponseCallback as d5, type ProposedMovePayload as d6, type Protocol as d7, type PurchaseSubscriptionRequest as d8, type RCSAvailabilityReason as d9, type SimulationBatchOperationRemove as dA, type SimulationBatchOperationResult as dB, type SimulationPersonalState as dC, type SimulationRoomActiveRecipe as dD, type SimulationRoomState as dE, type StorefrontCollection as dF, type StorefrontCollectionItem as dG, type SubPath as dH, type Tool as dI, type ToolChoice as dJ, type ToolUse as dK, type TimeIntervalTriggerInput as dL, type UgcReport as dM, type VideoGenEntry as dN, type VideoGenReport as dO, createHost as dP, resolveCollectionItemPrice as dQ, type RCSOptInStatus as da, ROOM_GAME_PHASES as db, type RecipeInfo as dc, type RoomEnvelopeResponse as dd, type RoomEvents as de, type RoomGamePhase as df, type RoomMessageEventType as dg, type RoomMessagePayload as dh, type RoomsEnvelopeResponse as di, RpcInboundStorageApi as dj, RpcSharedAssetsApi as dk, type RpcTransport as dl, type RunSubscription as dm, type RundotGameRoomCustomMetadata as dn, type RundotGameRoomPayload as dp, type RundotGameRoomRules as dq, type RundotGameRoomRulesGameState as dr, SHARE_FILE_ALLOWED_MIME_TYPES as ds, SHARE_FILE_MAX_SIZE_BYTES as dt, type ScheduleRCSStatus as du, type ServerPlayer as dv, type ServerRoom as dw, type ShareFileMimeType as dx, type ShopOrder as dy, type SimulationBatchOperationAssign as dz, type RundotGameExecuteRecipeOptions as e, 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 { generateId, createRpcAdminGenApi, MockAdminUgcApi, createMockAdminGenApi, SHARE_FILE_ALLOWED_MIME_TYPES, SHARE_FILE_MAX_SIZE_BYTES, RpcAdsApi, RpcAnalyticsApi, RpcStorageApi, RpcInboundStorageApi, DualEmitStorageApi, RpcAvatarApi, RpcNavigationApi, RpcNotificationsApi, RpcPopupsApi, HostProfileApi, HostDeviceApi, HostEnvironmentApi, HostSystemApi, HostCdnApi, HostTimeApi, RpcHapticsApi, RpcFeaturesApi, RpcLifecycleApi, RpcRoomsApi, RpcLoggingApi, RpcPreloaderApi, ClipsApiImpl, RpcEntitlementApi, RpcShopApi, RpcVideoApi, RpcAttributionApi, RpcSharedAssetsApi, initializeRoomsApi, RpcAccessGateApi,
|
|
1
|
+
import { generateId, createRpcAdminGenApi, MockAdminUgcApi, createMockAdminGenApi, SHARE_FILE_ALLOWED_MIME_TYPES, SHARE_FILE_MAX_SIZE_BYTES, RpcAdsApi, RpcAnalyticsApi, RpcStorageApi, RpcInboundStorageApi, DualEmitStorageApi, RpcAvatarApi, RpcNavigationApi, RpcNotificationsApi, RpcPopupsApi, HostProfileApi, HostDeviceApi, HostEnvironmentApi, HostSystemApi, HostCdnApi, HostTimeApi, RpcHapticsApi, RpcFeaturesApi, RpcLifecycleApi, RpcRoomsApi, RpcLoggingApi, RpcPreloaderApi, ClipsApiImpl, RpcEntitlementApi, RpcShopApi, RpcVideoApi, RpcAttributionApi, RpcSharedAssetsApi, initializeRoomsApi, RpcAccessGateApi, WsMultiplayerApi, applyAccessGates, MockAdsApi, MockLifecycleApi, MockAnalyticsApi, createMockStorageApi, MockAvatarApi, MockNavigationApi, MockNotificationsApi, MockPopupsApi, MockProfileApi, MockDeviceApi, MockEnvironmentApi, MockSystemApi, MockCdnApi, MockTimeApi, MockHapticsApi, MockFeaturesApi, MockLoggingApi, MockIapApi, MockEntitlementApi, MockShopApi, MockVideoApi, MockAttributionApi, MockPreloaderApi, MockSharedAssetsApi, MockAccessGateApi, MockMultiplayerApi } from './chunk-DYSNPHPM.js';
|
|
2
2
|
import { RundotApiError } from './chunk-HVVCNDSV.js';
|
|
3
3
|
|
|
4
4
|
// src/ai/RpcAiApi.ts
|
|
@@ -1009,7 +1009,7 @@ function initializeSimulation(rundotGameApi, host) {
|
|
|
1009
1009
|
}
|
|
1010
1010
|
|
|
1011
1011
|
// src/version.ts
|
|
1012
|
-
var SDK_VERSION = "5.
|
|
1012
|
+
var SDK_VERSION = "5.21.0-beta.0";
|
|
1013
1013
|
|
|
1014
1014
|
// src/leaderboard/utils.ts
|
|
1015
1015
|
var HASH_ALGORITHM_WEB_CRYPTO = "SHA-256";
|
|
@@ -2988,7 +2988,6 @@ var RemoteHost = class {
|
|
|
2988
2988
|
this.rundotGameApi.sharedAssets = new RpcSharedAssetsApi(rpcClient, rundotGameApi);
|
|
2989
2989
|
initializeRoomsApi(this.rundotGameApi, this);
|
|
2990
2990
|
this.accessGate = new RpcAccessGateApi(rpcClient, rundotGameApi);
|
|
2991
|
-
applyAccessGates(this);
|
|
2992
2991
|
this.multiplayer = new WsMultiplayerApi({
|
|
2993
2992
|
serverUrl: () => this._roomServerUrl,
|
|
2994
2993
|
getJoinTicket: async (req) => {
|
|
@@ -2999,6 +2998,7 @@ var RemoteHost = class {
|
|
|
2999
2998
|
return result.ticket;
|
|
3000
2999
|
}
|
|
3001
3000
|
});
|
|
3001
|
+
applyAccessGates(this);
|
|
3002
3002
|
}
|
|
3003
3003
|
async initialize(options) {
|
|
3004
3004
|
const transport = new RundotGameTransport();
|
|
@@ -3298,10 +3298,10 @@ var MockHost = class {
|
|
|
3298
3298
|
rundotGameApi.isMock = () => true;
|
|
3299
3299
|
this.rundotGameApi.sharedAssets = new MockSharedAssetsApi(this.rundotGameApi);
|
|
3300
3300
|
this.accessGate = new MockAccessGateApi(rundotGameApi);
|
|
3301
|
-
applyAccessGates(this);
|
|
3302
3301
|
this.multiplayer = new MockMultiplayerApi({
|
|
3303
3302
|
getProfile: () => rundotGameApi.getProfile()
|
|
3304
3303
|
});
|
|
3304
|
+
applyAccessGates(this);
|
|
3305
3305
|
}
|
|
3306
3306
|
initialize(options) {
|
|
3307
3307
|
this._isInitialized = true;
|
|
@@ -3718,5 +3718,5 @@ function initializeClips(rundotGameApi, host) {
|
|
|
3718
3718
|
}
|
|
3719
3719
|
|
|
3720
3720
|
export { HASH_ALGORITHM_NODE, HASH_ALGORITHM_WEB_CRYPTO, MockAdminImageGenApi, MockAdminSpriteGenApi, MockAdminThreeDGenApi, MockAiApi, MockAppApi, MockCaptureConsent, MockClipsApi, MockImageGenApi, MockLeaderboardApi, MockSocialApi, MockSpriteGenApi, RemoteHost, RpcAdminImageGenApi, RpcAdminSpriteGenApi, RpcAdminThreeDGenApi, RpcAdminUgcApi, RpcAiApi, RpcAppApi, RpcCaptureConsent, RpcClient, RpcIapApi, RpcImageGenApi, RpcLeaderboardApi, RpcSimulationApi, RpcSocialApi, RpcSpriteGenApi, SDK_VERSION, computeScoreHash, createHost, initializeAi, initializeApp, initializeAudioGen, initializeClips, initializeFiles, initializeIap, initializeImageGen, initializeLeaderboard, initializeSimulation, initializeSocial, initializeSpriteGen, initializeTextGen, initializeThreeDGen, initializeUgc, initializeVideoGen };
|
|
3721
|
-
//# sourceMappingURL=chunk-
|
|
3722
|
-
//# sourceMappingURL=chunk-
|
|
3721
|
+
//# sourceMappingURL=chunk-3SHOU4I4.js.map
|
|
3722
|
+
//# sourceMappingURL=chunk-3SHOU4I4.js.map
|