@series-inc/rundot-game-sdk 5.23.0 → 5.24.0-beta.1
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-DksgfqAT.d.ts → AdsApi-qZCBWQM4.d.ts} +110 -2
- package/dist/{LeaderboardApi-DoKIAAHN.d.ts → LeaderboardApi-BJIye4S7.d.ts} +92 -3
- package/dist/{chunk-EFEOX7D7.js → chunk-I3S5ZVHT.js} +572 -120
- package/dist/chunk-I3S5ZVHT.js.map +1 -0
- package/dist/{chunk-KQ3J4GC4.js → chunk-RKWUCLFV.js} +219 -513
- package/dist/chunk-RKWUCLFV.js.map +1 -0
- package/dist/{chunk-VTEO4M7E.js → chunk-WFRNUODW.js} +57 -19
- package/dist/chunk-WFRNUODW.js.map +1 -0
- package/dist/chunk-YQEDG3Z2.js +118 -0
- package/dist/chunk-YQEDG3Z2.js.map +1 -0
- package/dist/dist-AQIWY6KR.js +3636 -0
- package/dist/dist-AQIWY6KR.js.map +1 -0
- package/dist/host-http.d.ts +2 -1
- package/dist/host-http.js +2 -2
- package/dist/{index-BJHZ_Q3g.d.ts → index-C_6su2d5.d.ts} +51 -51
- package/dist/index.d.ts +32 -31
- package/dist/index.js +3 -3
- package/dist/playground/index.js +323 -10
- package/dist/playground/index.js.map +1 -1
- package/dist/rundot-game-api/index.d.ts +4 -3
- package/dist/rundot-game-api/index.js +6 -3
- package/dist/rundot-game-api/index.js.map +1 -1
- package/dist/syncplay/browser.d.ts +429 -9
- package/dist/syncplay/browser.js +4796 -328
- package/dist/syncplay/browser.js.map +1 -1
- package/dist/syncplay/creator.d.ts +1 -1
- package/dist/syncplay/index.d.ts +1 -1
- package/dist/syncplay/node.js +8593 -3886
- package/dist/syncplay/node.js.map +1 -1
- package/dist/vite/index.d.ts +13 -27
- package/dist/vite/index.js +70 -0
- package/dist/vite/index.js.map +1 -1
- package/docs/rundot-developer-platform/api/ANALYTICS.md +1 -1
- package/docs/rundot-developer-platform/api/LEADERBOARD.md +69 -0
- package/docs/rundot-developer-platform/api/LIVEOPS.md +15 -1
- package/docs/rundot-developer-platform/api/SHARED_ASSETS.md +4 -3
- package/docs/rundot-developer-platform/api/SHARING.md +62 -0
- package/docs/rundot-developer-platform/api/SHOP.md +2 -0
- package/docs/rundot-developer-platform/api/SYNCPLAY-PHYSICS.md +86 -0
- package/docs/rundot-developer-platform/api/SYNCPLAY.md +36 -1
- package/docs/rundot-developer-platform/api/UGC.md +48 -0
- package/docs/rundot-developer-platform/api/VIDEO_GEN.md +41 -1
- package/docs/rundot-developer-platform/error-handling.md +40 -0
- package/docs/rundot-developer-platform/playground.md +73 -0
- package/package.json +2 -1
- package/dist/chunk-EFEOX7D7.js.map +0 -1
- package/dist/chunk-KQ3J4GC4.js.map +0 -1
- package/dist/chunk-VTEO4M7E.js.map +0 -1
- package/dist/chunk-XJCC6PWO.js +0 -46
- package/dist/chunk-XJCC6PWO.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { M as LeaderboardApi, I as ImageGenApi, A as AudioGenApi, V as VideoGenApi, q as SpriteGenApi, T as ThreeDGenApi } from './LeaderboardApi-
|
|
1
|
+
import { $ as ProviderErrorDetail, M as LeaderboardApi, I as ImageGenApi, A as AudioGenApi, V as VideoGenApi, q as SpriteGenApi, T as ThreeDGenApi } from './LeaderboardApi-BJIye4S7.js';
|
|
2
2
|
import { M as MultiplayerApi } from './MultiplayerApi-nnrGTTcO.js';
|
|
3
3
|
|
|
4
4
|
interface StorageApi {
|
|
@@ -35,6 +35,8 @@ interface RpcResponse {
|
|
|
35
35
|
code?: string;
|
|
36
36
|
/** Human-readable cause from an upstream provider, when available. */
|
|
37
37
|
detail?: string;
|
|
38
|
+
/** Structured provider rejection detail, when available. */
|
|
39
|
+
errorDetail?: ProviderErrorDetail;
|
|
38
40
|
stack?: string;
|
|
39
41
|
};
|
|
40
42
|
}
|
|
@@ -1695,7 +1697,10 @@ interface RundotGameMessage {
|
|
|
1695
1697
|
data?: any;
|
|
1696
1698
|
error?: string;
|
|
1697
1699
|
errorCode?: string;
|
|
1700
|
+
/** Legacy flattened provider detail STRING — the field name is wire-frozen. */
|
|
1698
1701
|
errorDetail?: string;
|
|
1702
|
+
/** Structured provider rejection detail (new wire field; see errors.ts). */
|
|
1703
|
+
errorInfo?: ProviderErrorDetail;
|
|
1699
1704
|
script?: string;
|
|
1700
1705
|
};
|
|
1701
1706
|
instanceId: string;
|
|
@@ -2314,6 +2319,25 @@ interface UgcVotingApi {
|
|
|
2314
2319
|
*/
|
|
2315
2320
|
getWinners(params?: UgcVoteWinnersListParams): Promise<UgcVoteWinnersResponse>;
|
|
2316
2321
|
}
|
|
2322
|
+
/**
|
|
2323
|
+
* Strictness of the local profanity check. Mirrors the server's policies:
|
|
2324
|
+
* - 'strict': all 23 languages, obfuscation + fuzzy matching. What the server
|
|
2325
|
+
* applies to UGC, comments, profiles, and game tags.
|
|
2326
|
+
* - 'lenient': exact-match English only. What the server applies to AI
|
|
2327
|
+
* generation prompts.
|
|
2328
|
+
*/
|
|
2329
|
+
type UgcCheckTextPolicy = 'strict' | 'lenient';
|
|
2330
|
+
interface UgcCheckTextOptions {
|
|
2331
|
+
/** Defaults to 'strict'. */
|
|
2332
|
+
policy?: UgcCheckTextPolicy;
|
|
2333
|
+
/** Extra words to flag in addition to the built-in dictionaries. */
|
|
2334
|
+
customWords?: string[];
|
|
2335
|
+
}
|
|
2336
|
+
interface UgcCheckTextResult {
|
|
2337
|
+
clean: boolean;
|
|
2338
|
+
/** The matched profane words; empty when clean. */
|
|
2339
|
+
profaneWords: string[];
|
|
2340
|
+
}
|
|
2317
2341
|
interface UgcRecommendationResponse {
|
|
2318
2342
|
recommId: string;
|
|
2319
2343
|
entries: Array<UgcEntry & {
|
|
@@ -2417,6 +2441,16 @@ interface UgcApi {
|
|
|
2417
2441
|
* @param params Report parameters
|
|
2418
2442
|
*/
|
|
2419
2443
|
report(params: UgcReportParams): Promise<void>;
|
|
2444
|
+
/**
|
|
2445
|
+
* Check text against the same procedural profanity filter the server runs,
|
|
2446
|
+
* entirely client-side (no network call). Use it as a UX pre-filter before
|
|
2447
|
+
* submitting user text; the server still enforces its own moderation.
|
|
2448
|
+
* Fail-open: internal filter errors resolve to a clean result.
|
|
2449
|
+
* @param text Text to check
|
|
2450
|
+
* @param options Policy ('strict' default | 'lenient') and custom words
|
|
2451
|
+
* @returns Whether the text is clean, plus any matched profane words
|
|
2452
|
+
*/
|
|
2453
|
+
checkTextAsync(text: string, options?: UgcCheckTextOptions): Promise<UgcCheckTextResult>;
|
|
2420
2454
|
/**
|
|
2421
2455
|
* Get multiple entries by ID in a single request
|
|
2422
2456
|
* @param params Parameters including array of entry IDs (max 100)
|
|
@@ -2593,6 +2627,61 @@ interface CanShareFileResult {
|
|
|
2593
2627
|
/** True if the platform supports navigator.share with files. */
|
|
2594
2628
|
supported: boolean;
|
|
2595
2629
|
}
|
|
2630
|
+
/** Platforms accepted as a `composeSocialPostAsync` targeting hint. */
|
|
2631
|
+
declare const SOCIAL_COMPOSE_PLATFORMS: readonly ["x", "reddit", "tiktok", "instagram"];
|
|
2632
|
+
type SocialComposePlatform = (typeof SOCIAL_COMPOSE_PLATFORMS)[number];
|
|
2633
|
+
/** Max length for a compose post body, after control characters are stripped. */
|
|
2634
|
+
declare const COMPOSE_POST_MAX_TEXT_LENGTH = 500;
|
|
2635
|
+
/** Max length for a compose post title (used when routed to Reddit). */
|
|
2636
|
+
declare const COMPOSE_POST_MAX_TITLE_LENGTH = 300;
|
|
2637
|
+
/** Valid subreddit names (bare name, no `r/` prefix). */
|
|
2638
|
+
declare const COMPOSE_POST_SUBREDDIT_PATTERN: RegExp;
|
|
2639
|
+
/** Optional image/video attached to a composed post. */
|
|
2640
|
+
interface ComposeSocialPostMedia {
|
|
2641
|
+
/** Same encoding rules as {@link ShareFileOptions.data}. */
|
|
2642
|
+
data: Blob | ArrayBuffer | string;
|
|
2643
|
+
filename: string;
|
|
2644
|
+
mimeType: ShareFileMimeType;
|
|
2645
|
+
}
|
|
2646
|
+
interface ComposeSocialPostOptions {
|
|
2647
|
+
/** Post body / caption. Max 500 characters. */
|
|
2648
|
+
text: string;
|
|
2649
|
+
/**
|
|
2650
|
+
* When present, the host mints a tracked share link (same machinery as
|
|
2651
|
+
* `shareLinkAsync`) and attaches it to the post. There is deliberately no
|
|
2652
|
+
* `url` parameter — games can never inject an arbitrary destination URL.
|
|
2653
|
+
*/
|
|
2654
|
+
shareParams?: Record<string, string>;
|
|
2655
|
+
/** Optional image/video, same encoding rules as `shareFileAsync`. */
|
|
2656
|
+
media?: ComposeSocialPostMedia;
|
|
2657
|
+
/**
|
|
2658
|
+
* Optional targeting hint. If the hinted platform can't work on the current
|
|
2659
|
+
* surface, the host degrades to its generic destination chooser instead of
|
|
2660
|
+
* throwing — games never branch on OS/browser/destination support.
|
|
2661
|
+
*/
|
|
2662
|
+
platform?: SocialComposePlatform;
|
|
2663
|
+
/** Post title, used only when routed to Reddit. Max 300 characters. */
|
|
2664
|
+
title?: string;
|
|
2665
|
+
/** Target subreddit (bare name, no `r/` prefix), used only when routed to Reddit. */
|
|
2666
|
+
subreddit?: string;
|
|
2667
|
+
}
|
|
2668
|
+
interface ComposeSocialPostResult {
|
|
2669
|
+
/**
|
|
2670
|
+
* True when the user acted on a destination and it actually opened. False
|
|
2671
|
+
* when they dismissed the sheet, cancelled the OS share sheet (web), or
|
|
2672
|
+
* when the destination could not be shown (e.g. a popup blocker — the
|
|
2673
|
+
* composer URL is left on the clipboard — or the game could not leave
|
|
2674
|
+
* fullscreen).
|
|
2675
|
+
*
|
|
2676
|
+
* Native caveat: iOS/Android do not report whether the user cancelled the
|
|
2677
|
+
* system share sheet (same limitation as {@link ShareFileResult.cancelled}),
|
|
2678
|
+
* so share-sheet destinations resolve `completed: true` once the sheet
|
|
2679
|
+
* opens.
|
|
2680
|
+
*/
|
|
2681
|
+
completed: boolean;
|
|
2682
|
+
/** Destination that handled the post (e.g. 'x', 'reddit', 'tiktok', 'instagram', 'copy-link', 'more'). */
|
|
2683
|
+
destination?: string;
|
|
2684
|
+
}
|
|
2596
2685
|
/**
|
|
2597
2686
|
* Social distribution API used by H5 games.
|
|
2598
2687
|
*
|
|
@@ -2700,6 +2789,25 @@ interface SocialApi {
|
|
|
2700
2789
|
* @beta
|
|
2701
2790
|
*/
|
|
2702
2791
|
canShareFileAsync(): Promise<CanShareFileResult>;
|
|
2792
|
+
/**
|
|
2793
|
+
* Compose a post to an external social platform (X, Reddit, TikTok,
|
|
2794
|
+
* Instagram) through host-owned UI.
|
|
2795
|
+
*
|
|
2796
|
+
* The game passes content only; the host owns the entire
|
|
2797
|
+
* (surface × destination) matrix: it renders a destination sheet, and the
|
|
2798
|
+
* user's tap inside that sheet opens the platform composer (X/Reddit) or the
|
|
2799
|
+
* OS share sheet with the caption pre-copied (TikTok/Instagram). If
|
|
2800
|
+
* `shareParams` is present the host mints a tracked share link and attaches
|
|
2801
|
+
* it to the post.
|
|
2802
|
+
*
|
|
2803
|
+
* This never rejects for "unsupported platform": when the `platform` hint
|
|
2804
|
+
* can't work on the current surface, the host falls back to its generic
|
|
2805
|
+
* destination chooser.
|
|
2806
|
+
*
|
|
2807
|
+
* @beta
|
|
2808
|
+
* @throws If text/title/subreddit/media fail validation.
|
|
2809
|
+
*/
|
|
2810
|
+
composeSocialPostAsync(options: ComposeSocialPostOptions): Promise<ComposeSocialPostResult>;
|
|
2703
2811
|
}
|
|
2704
2812
|
|
|
2705
2813
|
interface FileEntry {
|
|
@@ -4485,4 +4593,4 @@ interface AdsApi {
|
|
|
4485
4593
|
showInterstitialAd(options?: ShowInterstitialAdOptions): Promise<boolean>;
|
|
4486
4594
|
}
|
|
4487
4595
|
|
|
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 };
|
|
4596
|
+
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 AdminUgcApi 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 ComposeSocialPostOptions as bF, type ComposeSocialPostResult as bG, type EntitlementApi as bH, type Entitlement as bI, type LedgerEntry as bJ, type StatsApi as bK, type GrantInfo as bL, type CollectiblesApi as bM, type CollectibleCard as bN, type VipClaimResult as bO, type ShopApi as bP, type StorefrontResponse as bQ, type StorefrontItem as bR, type ShopPurchaseResponse as bS, type ShopOrderHistoryResponse as bT, type PromptLoginResult as bU, type AccessTier as bV, type AccessGateApi as bW, type TextGenApi as bX, type UgcApi as bY, type VideoApi as bZ, type AppApi 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 AdminUgcEntry as c$, type AdminImageGenApi as c0, type AdminVideoGenApi as c1, type AdminSpriteGenApi as c2, type AdminAudioGenApi as c3, type AdminThreeDGenApi as c4, type AppRole as c5, type ResolveLaunchIntentOptions as c6, type LaunchIntent as c7, type ReleaseNote as c8, type AdminUgcBrowseParams as c9, type InitializationContext as cA, type InitializationOptions as cB, type CaptureConsent as cC, type StartClipRecordingOptions as cD, type ClipBlob as cE, type ClipsSupport as cF, type ClipPersistOptions as cG, type ClipResult as cH, type UgcEntry as cI, type CaptureConsentStatus as cJ, AccessDeniedError as cK, type AdminGenApi as cL, type AdminImageGenBrowseParams as cM, type AdminImageGenBrowseResponse as cN, type AdminImageGenListReportsParams as cO, type AdminImageGenListReportsResponse as cP, type AdminImageGenResolveAction as cQ, type AdminSpriteGenBrowseParams as cR, type AdminSpriteGenBrowseResponse as cS, type AdminSpriteGenListReportsParams as cT, type AdminSpriteGenListReportsResponse as cU, type AdminSpriteGenResolveAction as cV, type AdminThreeDGenBrowseParams as cW, type AdminThreeDGenBrowseResponse as cX, type AdminThreeDGenListReportsParams as cY, type AdminThreeDGenListReportsResponse as cZ, type AdminThreeDGenResolveAction as c_, type AdminUgcBrowseResponse as ca, type AdminUgcListReportsParams as cb, type AdminUgcListReportsResponse as cc, type AdminUgcResolveAction as cd, type AdminGenBrowseParams as ce, type AdminGenBrowseResponse as cf, type ImageGenEntry as cg, type AdminGenListReportsParams as ch, type AdminGenListReportsResponse as ci, type ImageGenReport as cj, type AdminGenResolveAction as ck, type SpriteGenEntry as cl, type SpriteGenReport as cm, type ThreeDGenEntry as cn, type ThreeDGenReport as co, type Avatar3dApi as cp, type AssetManifest as cq, type Avatar3dConfig as cr, type ShowEditorOptions as cs, type Avatar3dEdits as ct, type AdsApi as cu, type RawEnvironmentInfo as cv, type SharedStorageHostApi as cw, type FilesApi as cx, type ClipsApi as cy, type AttributionApi as cz, type RundotGameCollectRecipeResult as d, type RecipeInfo as d$, type AdminVideoGenBrowseParams as d0, type AdminVideoGenBrowseResponse as d1, type AdminVideoGenListReportsParams as d2, type AdminVideoGenListReportsResponse as d3, type AdminVideoGenResolveAction as d4, type AiContentBlock as d5, type AiImageContent as d6, type AiImageUrlContent as d7, type AiMessage as d8, type AiResponseFormat as d9, type GamepadAxes as dA, type GamepadButtonName as dB, type GamepadButtonState as dC, type GamepadSource as dD, type GetSubscriptionsForTierRequest as dE, type HudInsets as dF, type IdentityChangeReason as dG, type InboundForKeyEntry as dH, type InboundMethodIds as dI, type InboundStorageApi as dJ, type IsPlayerSubscribedRequest as dK, type JoinOrCreateRoomEnvelopeResponse as dL, type JoinRoomMatchCriteria as dM, type LaunchIntentKind as dN, type LiveOpsOverride as dO, type LoadEmbeddedAssetsRequest as dP, MockAvatarApi as dQ, type NotificationTriggerInput as dR, type OnNotificationCallback as dS, type OnRequestCallback as dT, type OnResponseCallback as dU, type PlatformCapabilities as dV, type ProposedMovePayload as dW, type PurchaseSubscriptionRequest as dX, type RCSAvailabilityReason as dY, type RCSOptInStatus as dZ, ROOM_GAME_PHASES as d_, type AiTextContent as da, type AiToolResultContent as db, type AiToolUseContent as dc, type Asset as dd, type AudioGenEntry as de, type AudioGenReport as df, CLIP_CONTENT_TYPE as dg, COMPOSE_POST_MAX_TEXT_LENGTH as dh, COMPOSE_POST_MAX_TITLE_LENGTH as di, COMPOSE_POST_SUBREDDIT_PATTERN as dj, CREDITS_EXHAUSTED_CODE as dk, type Category as dl, type ClipAudioOptions as dm, type ClipCameraOptions as dn, type ClipPipLayout as dp, type ClipPipPosition as dq, type ComposeSocialPostMedia as dr, type CreditFreeDailyInfo as ds, type CreditPlan as dt, type CreditTopUpPack as du, type CreditsBilledTo as dv, CreditsExhaustedError as dw, type CreditsExhaustedErrorInfo as dx, type CreditsPurchaseOutcome as dy, GAMEPAD_BUTTON_NAMES as dz, type RundotGameExecuteRecipeOptions as e, type ReleaseType as e0, type ResolvedLiveOps as e1, type RoomEnvelopeResponse as e2, type RoomGamePhase as e3, type RoomMessageEventType as e4, type RoomMessagePayload as e5, type RoomsEnvelopeResponse as e6, RpcInboundStorageApi as e7, RpcSharedAssetsApi as e8, type RpcTransport as e9, type UgcReport as eA, type VideoGenEntry as eB, type VideoGenReport as eC, asCreditsExhaustedError as eD, assertTierSupportsInterval as eE, createHost as eF, isCreditsExhaustedError as eG, mapCreditsExhaustion as eH, resolveCollectionItemPrice as eI, resolveLiveOpsSection as eJ, type RunSubscription as ea, type RundotGameRoomCustomMetadata as eb, type RundotGameRoomPayload as ec, type RundotGameRoomRules as ed, type RundotGameRoomRulesGameState as ee, SHARE_FILE_ALLOWED_MIME_TYPES as ef, SHARE_FILE_MAX_SIZE_BYTES as eg, SOCIAL_COMPOSE_PLATFORMS as eh, type ScheduleRCSStatus as ei, type ShareFileMimeType as ej, type ShopOrder as ek, type SimulationBatchOperationAssign as el, type SimulationBatchOperationRemove as em, type SimulationBatchOperationResult as en, type SimulationPersonalState as eo, type SimulationRoomActiveRecipe as ep, type SimulationRoomState as eq, type SocialComposePlatform as er, type StorefrontCollection as es, type StorefrontCollectionItem as et, type SubPath as eu, TIER_SUPPORTED_INTERVALS as ev, type Tool as ew, type ToolChoice as ex, type ToolUse as ey, type TimeIntervalTriggerInput 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,3 +1,5 @@
|
|
|
1
|
+
import { h as ReplayFile } from './types-BXxDmID0.js';
|
|
2
|
+
|
|
1
3
|
type ImageGenModel = 'gemini-3.1-flash-image-preview' | 'gemini-3-pro-image-preview' | 'gpt-image-1' | 'gpt-image-2';
|
|
2
4
|
type BgRemovalModel = 'bria' | 'birefnet';
|
|
3
5
|
type BiRefNetVariant = 'light' | 'heavy' | 'portrait';
|
|
@@ -224,6 +226,57 @@ interface AudioGenApi {
|
|
|
224
226
|
saveDesignedVoice(params: SaveDesignedVoiceParams): Promise<SaveDesignedVoiceResult>;
|
|
225
227
|
}
|
|
226
228
|
|
|
229
|
+
/**
|
|
230
|
+
* Structured rejection detail from an upstream AI provider (e.g. a video-gen
|
|
231
|
+
* content-policy violation). All fields are best-effort and optional.
|
|
232
|
+
*
|
|
233
|
+
* Mirror of the canonical server type
|
|
234
|
+
* (venus server/cloud-run/src/types/providerError.ts).
|
|
235
|
+
*/
|
|
236
|
+
interface ProviderErrorDetail {
|
|
237
|
+
/** Path to the offending request field, e.g. ["body", "image_urls"]. */
|
|
238
|
+
loc?: (string | number)[];
|
|
239
|
+
/** Provider error type, e.g. "content_policy_violation". */
|
|
240
|
+
type?: string;
|
|
241
|
+
/** Provider-internal reason code, e.g. "partner_validation_failed". */
|
|
242
|
+
reason?: string;
|
|
243
|
+
/** Provider's verbatim human-readable message. */
|
|
244
|
+
msg?: string;
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Base error for rundot API failures that include a machine-readable code.
|
|
248
|
+
* Thrown by SDK methods when the server returns a structured error response.
|
|
249
|
+
*/
|
|
250
|
+
declare class RundotApiError extends Error {
|
|
251
|
+
readonly code: string;
|
|
252
|
+
/** HTTP status when the error came over HTTP; `0` for transport/RPC errors with no HTTP status. */
|
|
253
|
+
readonly status: number;
|
|
254
|
+
/**
|
|
255
|
+
* Optional human-readable cause from the server (e.g. an upstream provider's
|
|
256
|
+
* validation message), surfaced alongside the controlled `message` so callers
|
|
257
|
+
* can show the specific reason rather than a generic failure.
|
|
258
|
+
*
|
|
259
|
+
* This is a flattened STRING. For the machine-readable breakdown of a
|
|
260
|
+
* provider rejection (type / reason / offending field), use `errorDetail`.
|
|
261
|
+
*/
|
|
262
|
+
readonly detail?: string;
|
|
263
|
+
/**
|
|
264
|
+
* Optional structured provider rejection detail (e.g.
|
|
265
|
+
* `{ type: 'content_policy_violation', reason: 'partner_validation_failed' }`).
|
|
266
|
+
* Unlike `detail` (a display string), this is meant for programmatic handling.
|
|
267
|
+
*/
|
|
268
|
+
readonly errorDetail?: ProviderErrorDetail;
|
|
269
|
+
constructor(code: string, message: string, status?: number, detail?: string, errorDetail?: ProviderErrorDetail);
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Thrown when a request is rate-limited (HTTP 429).
|
|
273
|
+
* `retryAfterMs` indicates how long to wait before retrying.
|
|
274
|
+
*/
|
|
275
|
+
declare class RateLimitedError extends RundotApiError {
|
|
276
|
+
readonly retryAfterMs: number;
|
|
277
|
+
constructor(retryAfterMs: number, message?: string);
|
|
278
|
+
}
|
|
279
|
+
|
|
227
280
|
type VideoGenProvider = 'seedance-2.0' | 'seedance-2.0-fast' | 'kling-3.0-standard';
|
|
228
281
|
type VideoGenMode = 'text-to-video' | 'image-to-video' | 'reference-to-video';
|
|
229
282
|
type VideoGenAspectRatio = '21:9' | '16:9' | '4:3' | '1:1' | '3:4' | '9:16';
|
|
@@ -299,7 +352,23 @@ interface VideoGenJobEvent {
|
|
|
299
352
|
status: 'completed' | 'failed';
|
|
300
353
|
params: VideoGenParams;
|
|
301
354
|
result?: VideoGenResult;
|
|
302
|
-
|
|
355
|
+
/**
|
|
356
|
+
* Failure info. Historically typed as `string`, but the host passes the raw
|
|
357
|
+
* job-doc error through, which is an object for most failures — typed
|
|
358
|
+
* honestly here without changing what arrives at runtime.
|
|
359
|
+
*/
|
|
360
|
+
error?: string | {
|
|
361
|
+
code?: string;
|
|
362
|
+
message?: string;
|
|
363
|
+
detail?: string;
|
|
364
|
+
providerType?: string;
|
|
365
|
+
errorDetail?: ProviderErrorDetail;
|
|
366
|
+
};
|
|
367
|
+
/**
|
|
368
|
+
* Structured provider rejection detail for failed jobs (e.g.
|
|
369
|
+
* `{ type: 'content_policy_violation' }`), when the provider supplied one.
|
|
370
|
+
*/
|
|
371
|
+
errorDetail?: ProviderErrorDetail;
|
|
303
372
|
}
|
|
304
373
|
interface VideoGenJobStartedEvent {
|
|
305
374
|
jobId: string;
|
|
@@ -669,6 +738,14 @@ interface LeaderboardConfig {
|
|
|
669
738
|
requiresToken: boolean;
|
|
670
739
|
enableScoreSealing: boolean;
|
|
671
740
|
scoreSealingSecret?: string;
|
|
741
|
+
/**
|
|
742
|
+
* When true, a submitted score enters the public ranking only after the
|
|
743
|
+
* server re-runs the game's certified score runtime over the player's
|
|
744
|
+
* recorded inputs and confirms the score matches (M8.5 replay verification).
|
|
745
|
+
* Per-board (applies to all of the board's modes); absent/false ⇒ today's
|
|
746
|
+
* behavior. A `requiresReplay` submission must attach `SubmitScoreParams.replay`.
|
|
747
|
+
*/
|
|
748
|
+
requiresReplay?: boolean;
|
|
672
749
|
modes: Record<string, LeaderboardModeConfig>;
|
|
673
750
|
periods: Record<string, LeaderboardPeriodConfig>;
|
|
674
751
|
antiCheat: LeaderboardAntiCheatConfig;
|
|
@@ -696,14 +773,26 @@ interface SubmitScoreParams {
|
|
|
696
773
|
* leaderboards reject submissions without a valid hash.
|
|
697
774
|
*/
|
|
698
775
|
hash?: string;
|
|
776
|
+
/**
|
|
777
|
+
* The player's recorded syncplay replay (inputs + seed). Required for a
|
|
778
|
+
* `requiresReplay` board: the server re-runs the certified score runtime over
|
|
779
|
+
* these inputs and only ranks the score on a match. Attach it from
|
|
780
|
+
* `session.exportReplay()`. A replay serializing above the inline cap
|
|
781
|
+
* ({@link REPLAY_INLINE_MAX_BYTES}) is rejected client-side before submitting.
|
|
782
|
+
*/
|
|
783
|
+
replay?: ReplayFile;
|
|
699
784
|
}
|
|
700
785
|
/**
|
|
701
786
|
* Machine-readable reason a submit was not accepted.
|
|
702
787
|
* - `identity_changed`: the score token was minted under a different identity
|
|
703
788
|
* (the player signed into another account mid-session). Re-mint with
|
|
704
789
|
* `createScoreToken()` and resubmit under the new identity.
|
|
790
|
+
* - `replay_rejected`: a `requiresReplay` board could not verify the submitted
|
|
791
|
+
* score against the recorded replay (mismatch, invalid/missing replay, or the
|
|
792
|
+
* verifier was unavailable). The score was NOT ranked. Surface it as the
|
|
793
|
+
* terminal "rejected" state of the optimistic pending → ranked/rejected UX.
|
|
705
794
|
*/
|
|
706
|
-
type SubmitScoreFailureReason = 'identity_changed';
|
|
795
|
+
type SubmitScoreFailureReason = 'identity_changed' | 'replay_rejected';
|
|
707
796
|
interface SubmitScoreResult {
|
|
708
797
|
accepted: boolean;
|
|
709
798
|
rank?: number | null;
|
|
@@ -787,4 +876,4 @@ interface LeaderboardApi {
|
|
|
787
876
|
getPodiumScores(options?: GetPodiumScoresOptions): Promise<PodiumScoresResponse>;
|
|
788
877
|
}
|
|
789
878
|
|
|
790
|
-
export type
|
|
879
|
+
export { type ProviderErrorDetail as $, type AudioGenApi as A, type RemeshParams as B, type CharacterAnimateParams as C, type DepthEstimationParams as D, type RemeshResult as E, type RigParams as F, type RigResult as G, type AnimateParams as H, type ImageGenApi as I, type AnimateResult as J, type ThreeDGenJobEvent as K, type ListVoicesResult as L, type LeaderboardApi as M, type ScoreToken as N, type SubmitScoreParams as O, type SubmitScoreResult as P, type GetPagedScoresOptions as Q, type RemoveBackgroundParams as R, type SaveDesignedVoiceParams as S, type ThreeDGenApi as T, type UpscaleImageParams as U, type VideoGenApi as V, type PagedScoresResponse as W, type PlayerRankOptions as X, type PlayerRankResult as Y, type GetPodiumScoresOptions as Z, type PodiumScoresResponse as _, type ImageGenParams as a, type BgRemovalModel as a0, type BiRefNetVariant as a1, type CharacterAnimateResult as a2, type CharacterAnimationOutput as a3, type ImageGenModel as a4, type LeaderboardAntiCheatConfig as a5, type LeaderboardConfig as a6, type LeaderboardDisplaySettings as a7, type LeaderboardEntry as a8, type LeaderboardModeConfig as a9, type LeaderboardPeriodConfig as aa, type LeaderboardPeriodType as ab, type PodiumScoresContext as ac, RateLimitedError as ad, type RemoveBackgroundOptions as ae, RundotApiError as af, type SpriteGenGeneratedAsset as ag, type SpriteGenModel as ah, type SubmitScoreFailureReason as ai, type UpscaleImageModel as aj, type ImageGenResult as b, type DepthEstimationResult as c, type RemoveBackgroundResult as d, type UpscaleImageResult as e, type ImageGenJobEvent as f, type AudioGenParams as g, type AudioGenResult as h, type AudioGenJobEvent as i, type DesignVoicesParams as j, type DesignVoicesResult as k, type SaveDesignedVoiceResult as l, type VideoGenParams as m, type VideoGenResult as n, type VideoGenJobEvent as o, type VideoGenJobStartedEvent as p, type SpriteGenApi as q, type SpriteGenParams as r, type SpriteGenResult as s, type AnimateSpriteParams as t, type AnimateSpriteResult as u, type CharacterWorkflow as v, type SpriteGenCosts as w, type SpriteGenJobEvent as x, type ThreeDGenParams as y, type ThreeDGenResult as z };
|