@series-inc/rundot-game-sdk 5.11.0 → 5.12.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-Caa7ZUNh.d.ts → AdsApi-DGx0ZlG1.d.ts} +26 -1
- package/dist/{chunk-6AZ7ZV7L.js → chunk-5JZJLAZT.js} +66 -3
- package/dist/chunk-5JZJLAZT.js.map +1 -0
- package/dist/{chunk-S4HJUF5E.js → chunk-WBV3HEGL.js} +18 -4
- package/dist/chunk-WBV3HEGL.js.map +1 -0
- package/dist/index.d.ts +59 -4
- 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 +67 -21
- package/dist/sandbox/index.js.map +1 -1
- package/dist/vite/index.d.ts +2 -0
- package/dist/vite/index.js +15 -6
- package/dist/vite/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-6AZ7ZV7L.js.map +0 -1
- package/dist/chunk-S4HJUF5E.js.map +0 -1
|
@@ -1859,6 +1859,29 @@ interface AccessGateApi {
|
|
|
1859
1859
|
autoPromptLogin: boolean;
|
|
1860
1860
|
}
|
|
1861
1861
|
|
|
1862
|
+
interface VideoApi {
|
|
1863
|
+
requestPiPAsync(input: {
|
|
1864
|
+
contentId: string;
|
|
1865
|
+
videoUrl: string;
|
|
1866
|
+
positionSeconds: number;
|
|
1867
|
+
playbackRate?: number;
|
|
1868
|
+
contentLabel?: string;
|
|
1869
|
+
}): Promise<{
|
|
1870
|
+
sessionId: string;
|
|
1871
|
+
}>;
|
|
1872
|
+
readyForPlaybackResumeAsync(input: {
|
|
1873
|
+
sessionId: string;
|
|
1874
|
+
}): Promise<void>;
|
|
1875
|
+
resumeAckAsync(input: {
|
|
1876
|
+
sessionId: string;
|
|
1877
|
+
}): Promise<void>;
|
|
1878
|
+
onResumeFromNativePlayback(callback: (data: {
|
|
1879
|
+
sessionId: string;
|
|
1880
|
+
positionSeconds: number;
|
|
1881
|
+
contentId: string;
|
|
1882
|
+
}) => void): Subscription;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1862
1885
|
/**
|
|
1863
1886
|
* Safe area insets representing padding needed to avoid device notches and host UI.
|
|
1864
1887
|
* Includes toolbar/feedHeader height + device safe areas.
|
|
@@ -1925,6 +1948,7 @@ interface Host {
|
|
|
1925
1948
|
readonly shop: ShopApi;
|
|
1926
1949
|
readonly accessGate: AccessGateApi;
|
|
1927
1950
|
readonly multiplayer: MultiplayerApi;
|
|
1951
|
+
readonly video: VideoApi;
|
|
1928
1952
|
readonly isInitialized: boolean;
|
|
1929
1953
|
readonly iap: IapApi;
|
|
1930
1954
|
readonly context?: InitializationContext;
|
|
@@ -2370,6 +2394,7 @@ interface RundotGameAPI {
|
|
|
2370
2394
|
entitlements: EntitlementApi;
|
|
2371
2395
|
shop: ShopApi;
|
|
2372
2396
|
accessGate: AccessGateApi;
|
|
2397
|
+
video: VideoApi;
|
|
2373
2398
|
context: InitializationContext;
|
|
2374
2399
|
}
|
|
2375
2400
|
|
|
@@ -2387,4 +2412,4 @@ interface AdsApi {
|
|
|
2387
2412
|
showInterstitialAd(options?: ShowInterstitialAdOptions): Promise<boolean>;
|
|
2388
2413
|
}
|
|
2389
2414
|
|
|
2390
|
-
export { type AiApi as $, type AnalyticsApi as A, type BatchRecipeRequirementsResult as B, type ScheduleLocalNotification as C, type ScheduleNotificationOptions as D, type PopupsApi as E, type ShowToastOptions as F, type ShowInterstitialAdOptions as G, type Host as H, type ShowRewardedAdOptions as I, type ProfileApi as J, type DeviceApi as K, type DeviceInfo as L, type EnvironmentApi as M, type NavigationApi as N, type EnvironmentInfo as O, type Profile as P, type QuitOptions as Q, type RundotGameAPI as R, type SimulationRunSummary as S, type SystemApi as T, type SafeArea as U, type CdnApi as V, type FetchFromCdnOptions as W, type AssetUrlResult as X, type TimeApi as Y, type ServerTimeData as Z, type GetFutureTimeOptions as _, type RecipeRequirementResult as a, type SharedAssetsApi as a$, type AiChatCompletionRequest as a0, type AiChatCompletionData as a1, type HapticsApi as a2, HapticFeedbackStyle as a3, type FeaturesApi as a4, type Experiment as a5, type LifecycleApi as a6, type SleepCallback as a7, type Subscription as a8, type AwakeCallback as a9, type RoomDataUpdate as aA, type RoomMessageEvent as aB, type ProposedMoveEvent as aC, RundotGameTransport as aD, type RoomsApi as aE, type CreateRoomOptions as aF, type JoinOrCreateRoomOptions as aG, type JoinOrCreateResult as aH, type ListRoomsOptions as aI, type UpdateRoomDataOptions as aJ, type RoomMessageRequest as aK, type StartRoomGameOptions as aL, type ProposeMoveRequest as aM, type ProposeMoveResult as aN, type ValidateMoveVerdict as aO, type ValidateMoveResult as aP, type RoomSubscriptionOptions as aQ, type LoggingApi as aR, type IapApi as aS, type SpendCurrencyOptions as aT, type SpendCurrencyResult as aU, type SubscriptionTier as aV, type RunSubscriptionsResponse as aW, type SubscriptionInterval as aX, type PurchaseSubscriptionResponse as aY, type OpenStoreResult as aZ, type LoadEmbeddedAssetsResponse as a_, type PauseCallback as aa, type ResumeCallback as ab, type QuitCallback as ac, type SimulationApi as ad, type SimulationSlotValidationResult as ae, type SimulationBatchOperation as af, type SimulationBatchOperationsResult as ag, type SimulationAvailableItem as ah, type SimulationPowerPreview as ai, type SimulationSlotMutationResult as aj, type SimulationSlotContainer as ak, type SimulationAssignment as al, type SimulationState as am, type ExecuteRecipeOptions as an, type ExecuteRecipeResponse as ao, type CollectRecipeResult as ap, type ResetStateOptions as aq, type ResetStateResult as ar, type GetActiveRunsOptions as as, type ExecuteScopedRecipeOptions as at, type ExecuteScopedRecipeResult as au, type GetAvailableRecipesOptions as av, type GetAvailableRecipesResult as aw, type Recipe as ax, type GetBatchRecipeRequirements as ay, type TriggerRecipeChainOptions as az, type RundotGameSimulationStateResponse as b, type
|
|
2415
|
+
export { type AiApi as $, type AnalyticsApi as A, type BatchRecipeRequirementsResult as B, type ScheduleLocalNotification as C, type ScheduleNotificationOptions as D, type PopupsApi as E, type ShowToastOptions as F, type ShowInterstitialAdOptions as G, type Host as H, type ShowRewardedAdOptions as I, type ProfileApi as J, type DeviceApi as K, type DeviceInfo as L, type EnvironmentApi as M, type NavigationApi as N, type EnvironmentInfo as O, type Profile as P, type QuitOptions as Q, type RundotGameAPI as R, type SimulationRunSummary as S, type SystemApi as T, type SafeArea as U, type CdnApi as V, type FetchFromCdnOptions as W, type AssetUrlResult as X, type TimeApi as Y, type ServerTimeData as Z, type GetFutureTimeOptions as _, type RecipeRequirementResult as a, type SharedAssetsApi as a$, type AiChatCompletionRequest as a0, type AiChatCompletionData as a1, type HapticsApi as a2, HapticFeedbackStyle as a3, type FeaturesApi as a4, type Experiment as a5, type LifecycleApi as a6, type SleepCallback as a7, type Subscription as a8, type AwakeCallback as a9, type RoomDataUpdate as aA, type RoomMessageEvent as aB, type ProposedMoveEvent as aC, RundotGameTransport as aD, type RoomsApi as aE, type CreateRoomOptions as aF, type JoinOrCreateRoomOptions as aG, type JoinOrCreateResult as aH, type ListRoomsOptions as aI, type UpdateRoomDataOptions as aJ, type RoomMessageRequest as aK, type StartRoomGameOptions as aL, type ProposeMoveRequest as aM, type ProposeMoveResult as aN, type ValidateMoveVerdict as aO, type ValidateMoveResult as aP, type RoomSubscriptionOptions as aQ, type LoggingApi as aR, type IapApi as aS, type SpendCurrencyOptions as aT, type SpendCurrencyResult as aU, type SubscriptionTier as aV, type RunSubscriptionsResponse as aW, type SubscriptionInterval as aX, type PurchaseSubscriptionResponse as aY, type OpenStoreResult as aZ, type LoadEmbeddedAssetsResponse as a_, type PauseCallback as aa, type ResumeCallback as ab, type QuitCallback as ac, type SimulationApi as ad, type SimulationSlotValidationResult as ae, type SimulationBatchOperation as af, type SimulationBatchOperationsResult as ag, type SimulationAvailableItem as ah, type SimulationPowerPreview as ai, type SimulationSlotMutationResult as aj, type SimulationSlotContainer as ak, type SimulationAssignment as al, type SimulationState as am, type ExecuteRecipeOptions as an, type ExecuteRecipeResponse as ao, type CollectRecipeResult as ap, type ResetStateOptions as aq, type ResetStateResult as ar, type GetActiveRunsOptions as as, type ExecuteScopedRecipeOptions as at, type ExecuteScopedRecipeResult as au, type GetAvailableRecipesOptions as av, type GetAvailableRecipesResult as aw, type Recipe as ax, type GetBatchRecipeRequirements as ay, type TriggerRecipeChainOptions as az, type RundotGameSimulationStateResponse as b, type JoinRoomMatchCriteria as b$, type LeaderboardApi as b0, type ScoreToken as b1, type SubmitScoreParams as b2, type SubmitScoreResult as b3, type GetPagedScoresOptions as b4, type PagedScoresResponse as b5, type PlayerRankOptions as b6, type PlayerRankResult as b7, type GetPodiumScoresOptions as b8, type PodiumScoresResponse as b9, type AdsApi as bA, type ImageGenParams as bB, type ImageGenResult as bC, type MultiplayerApi as bD, type InitializationContext as bE, type InitializationOptions as bF, type ServerRoom as bG, type ServerPlayer as bH, type RoomEvents as bI, type ConnectionState as bJ, type Protocol as bK, type AiMessage as bL, type Asset as bM, type Category as bN, MockAvatarApi as bO, type SubPath as bP, type IsPlayerSubscribedRequest as bQ, type RunSubscription as bR, type PurchaseSubscriptionRequest as bS, type GetSubscriptionsForTierRequest as bT, type TimeIntervalTriggerInput as bU, type NotificationTriggerInput as bV, type OnRequestCallback as bW, type OnResponseCallback as bX, type OnNotificationCallback as bY, type RpcTransport as bZ, type ImageGenModel 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 EntitlementApi as bh, type Entitlement as bi, type LedgerEntry as bj, type ShopApi as bk, type StorefrontResponse as bl, type StorefrontItem as bm, type ShopPurchaseResponse as bn, type ShopOrderHistoryResponse as bo, type PromptLoginResult as bp, type AccessTier as bq, type AccessGateApi as br, type ImageGenApi as bs, type UgcApi as bt, type VideoApi as bu, type Avatar3dApi as bv, type AssetManifest as bw, type Avatar3dConfig as bx, type ShowEditorOptions as by, type Avatar3dEdits as bz, type SimulationUpdateType as c, type RoomMessageEventType as c0, type RoomMessagePayload as c1, type ProposedMovePayload as c2, ROOM_GAME_PHASES as c3, type RoomGamePhase as c4, type RundotGameRoomRulesGameState as c5, type RundotGameRoomRules as c6, type RundotGameRoomCustomMetadata as c7, type RundotGameRoomPayload as c8, type RoomEnvelopeResponse as c9, type RoomsEnvelopeResponse as ca, type JoinOrCreateRoomEnvelopeResponse as cb, type RecipeInfo as cc, type SimulationPersonalState as cd, type SimulationRoomActiveRecipe as ce, type SimulationRoomState as cf, type SimulationBatchOperationAssign as cg, type SimulationBatchOperationRemove as ch, type SimulationBatchOperationResult as ci, RpcSharedAssetsApi as cj, type LoadEmbeddedAssetsRequest as ck, type LeaderboardModeConfig as cl, type LeaderboardPeriodType as cm, type LeaderboardPeriodConfig as cn, type LeaderboardAntiCheatConfig as co, type LeaderboardDisplaySettings as cp, type LeaderboardConfig as cq, type LeaderboardEntry as cr, type PodiumScoresContext as cs, type StorefrontCollectionItem as ct, type StorefrontCollection as cu, type ShopOrder as cv, resolveCollectionItemPrice as cw, type HudInsets as cx, createHost as cy, AccessDeniedError as cz, type SimulationEntityUpdate as d, type SimulationActiveRunsUpdate as e, type SimulationSnapshotUpdate as f, type SimulationUpdateData as g, type SimulationSubscribeOptions as h, type RundotGameSimulationEffect as i, type RundotGameSimulationRecipe as j, type RundotGameSimulationConfig as k, type RecipeRequirementQuery as l, type RundotGameExecuteRecipeOptions as m, type RundotGameExecuteScopedRecipeOptions as n, type RundotGameAvailableRecipe as o, type RundotGameCollectRecipeResult as p, type RundotGameExecuteRecipeResult as q, RundotGameRoom 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 NotificationsApi as z };
|
|
@@ -161,6 +161,10 @@ var RundotGameMessageId = /* @__PURE__ */ ((RundotGameMessageId2) => {
|
|
|
161
161
|
RundotGameMessageId2["H5_CDN_RESOLVE_ASSET_URLS"] = "H5_CDN_RESOLVE_ASSET_URLS";
|
|
162
162
|
RundotGameMessageId2["H5_CDN_REFRESH_ENTITLEMENTS"] = "H5_CDN_REFRESH_ENTITLEMENTS";
|
|
163
163
|
RundotGameMessageId2["H5_REQUEST_JOIN_TICKET"] = "H5_REQUEST_JOIN_TICKET";
|
|
164
|
+
RundotGameMessageId2["H5_VIDEO_REQUEST_PIP"] = "H5_VIDEO_REQUEST_PIP";
|
|
165
|
+
RundotGameMessageId2["H5_VIDEO_WEB_READY"] = "H5_VIDEO_WEB_READY";
|
|
166
|
+
RundotGameMessageId2["H5_VIDEO_RESUME_ACK"] = "H5_VIDEO_RESUME_ACK";
|
|
167
|
+
RundotGameMessageId2["H5_VIDEO_RESUME_FROM_NATIVE_PLAYBACK"] = "H5_VIDEO_RESUME_FROM_NATIVE_PLAYBACK";
|
|
164
168
|
return RundotGameMessageId2;
|
|
165
169
|
})(RundotGameMessageId || {});
|
|
166
170
|
|
|
@@ -4219,6 +4223,65 @@ function initializeAccessGate(rundotGameApi, host) {
|
|
|
4219
4223
|
rundotGameApi.accessGate = host.accessGate;
|
|
4220
4224
|
}
|
|
4221
4225
|
|
|
4226
|
+
// src/video/RpcVideoApi.ts
|
|
4227
|
+
var RpcVideoApi = class {
|
|
4228
|
+
constructor(rpcClient) {
|
|
4229
|
+
this.rpcClient = rpcClient;
|
|
4230
|
+
}
|
|
4231
|
+
async requestPiPAsync(input) {
|
|
4232
|
+
const result = await this.rpcClient.call(
|
|
4233
|
+
"H5_VIDEO_REQUEST_PIP" /* H5_VIDEO_REQUEST_PIP */,
|
|
4234
|
+
input
|
|
4235
|
+
);
|
|
4236
|
+
return result;
|
|
4237
|
+
}
|
|
4238
|
+
async readyForPlaybackResumeAsync(input) {
|
|
4239
|
+
await this.rpcClient.call(
|
|
4240
|
+
"H5_VIDEO_WEB_READY" /* H5_VIDEO_WEB_READY */,
|
|
4241
|
+
input
|
|
4242
|
+
);
|
|
4243
|
+
}
|
|
4244
|
+
async resumeAckAsync(input) {
|
|
4245
|
+
await this.rpcClient.call(
|
|
4246
|
+
"H5_VIDEO_RESUME_ACK" /* H5_VIDEO_RESUME_ACK */,
|
|
4247
|
+
input
|
|
4248
|
+
);
|
|
4249
|
+
}
|
|
4250
|
+
onResumeFromNativePlayback(callback) {
|
|
4251
|
+
return this.rpcClient.onNotification(
|
|
4252
|
+
"H5_VIDEO_RESUME_FROM_NATIVE_PLAYBACK" /* H5_VIDEO_RESUME_FROM_NATIVE_PLAYBACK */,
|
|
4253
|
+
callback
|
|
4254
|
+
);
|
|
4255
|
+
}
|
|
4256
|
+
};
|
|
4257
|
+
|
|
4258
|
+
// src/video/MockVideoApi.ts
|
|
4259
|
+
var MockVideoApi = class {
|
|
4260
|
+
async requestPiPAsync(input) {
|
|
4261
|
+
console.log("[MockVideoApi] requestPiPAsync:", input);
|
|
4262
|
+
return { sessionId: "mock-session-id" };
|
|
4263
|
+
}
|
|
4264
|
+
async readyForPlaybackResumeAsync(input) {
|
|
4265
|
+
console.log("[MockVideoApi] readyForPlaybackResumeAsync:", input);
|
|
4266
|
+
}
|
|
4267
|
+
async resumeAckAsync(input) {
|
|
4268
|
+
console.log("[MockVideoApi] resumeAckAsync:", input);
|
|
4269
|
+
}
|
|
4270
|
+
onResumeFromNativePlayback(callback) {
|
|
4271
|
+
console.log("[MockVideoApi] onResumeFromNativePlayback registered");
|
|
4272
|
+
return {
|
|
4273
|
+
unsubscribe: () => {
|
|
4274
|
+
console.log("[MockVideoApi] onResumeFromNativePlayback unsubscribed");
|
|
4275
|
+
}
|
|
4276
|
+
};
|
|
4277
|
+
}
|
|
4278
|
+
};
|
|
4279
|
+
|
|
4280
|
+
// src/video/index.ts
|
|
4281
|
+
function initializeVideo(rundotGameApi, host) {
|
|
4282
|
+
rundotGameApi.video = host.video;
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4222
4285
|
// src/mp/client/RundotServerRoom.ts
|
|
4223
4286
|
var RundotServerRoom = class _RundotServerRoom {
|
|
4224
4287
|
/** The shareable room code (e.g. "HX9KWR") */
|
|
@@ -4809,6 +4872,6 @@ var MockMultiplayerApi = class {
|
|
|
4809
4872
|
}
|
|
4810
4873
|
};
|
|
4811
4874
|
|
|
4812
|
-
export { AccessDeniedError, BaseCdnApi, DEFAULT_SHARED_LIB_CDN_BASE, EMBEDDED_LIBRARIES, EMBEDDED_LIBRARY_BY_KEY, FILE_EXTENSION_PATTERN, HapticFeedbackStyle, HostCdnApi, HostDeviceApi, HostEnvironmentApi, HostProfileApi, HostSystemApi, HostTimeApi, MIN_CDN_PATH_SEGMENTS, MODULE_TO_LIBRARY_SPECIFIERS, MockAccessGateApi, MockAdsApi, MockAnalyticsApi, MockAvatarApi, MockCdnApi, MockDeviceApi, MockEntitlementApi, MockEnvironmentApi, MockFeaturesApi, MockHapticsApi, MockIapApi, MockLifecycleApi, MockLoggingApi, MockMultiplayerApi, MockNavigationApi, MockNotificationsApi, MockPopupsApi, MockPreloaderApi, MockProfileApi, MockSharedAssetsApi, MockShopApi, MockStorageApi, MockSystemApi, MockTimeApi, ROOM_GAME_PHASES, RpcAccessGateApi, RpcAdsApi, RpcAnalyticsApi, RpcAvatarApi, RpcEntitlementApi, RpcFeaturesApi, RpcHapticsApi, RpcIapApi, RpcLifecycleApi, RpcLoggingApi, RpcNavigationApi, RpcNotificationsApi, RpcPopupsApi, RpcPreloaderApi, RpcRoomsApi, RpcSharedAssetsApi, RpcShopApi, RpcStorageApi, RundotGameMessageId, RundotGameRoom, SandboxProfileApi, WsMultiplayerApi, applyAccessGates, base64ToArrayBuffer, base64ToUtf8, createAccessGatedApi, createMockStorageApi, generateId, getLibraryDefinition, hasHostedUrlStructure, initializeAccessGate, initializeAds, initializeAnalytics, initializeAvatar3d, initializeCdn, initializeEntitlements, initializeFeaturesApi, initializeHaptics, initializeIap, initializeLifecycleApi, initializeLocalNotifications, initializeLoggingApi, initializePopups, initializePreloader, initializeProfile, initializeRoomsApi, initializeShop, initializeStackNavigation, initializeStorage, initializeSystem, initializeTime, isPacificDaylightTime, parseCdnPathSegments, resolveCollectionItemPrice, setupRoomNotifications };
|
|
4813
|
-
//# sourceMappingURL=chunk-
|
|
4814
|
-
//# sourceMappingURL=chunk-
|
|
4875
|
+
export { AccessDeniedError, BaseCdnApi, DEFAULT_SHARED_LIB_CDN_BASE, EMBEDDED_LIBRARIES, EMBEDDED_LIBRARY_BY_KEY, FILE_EXTENSION_PATTERN, HapticFeedbackStyle, HostCdnApi, HostDeviceApi, HostEnvironmentApi, HostProfileApi, HostSystemApi, HostTimeApi, MIN_CDN_PATH_SEGMENTS, MODULE_TO_LIBRARY_SPECIFIERS, MockAccessGateApi, MockAdsApi, MockAnalyticsApi, MockAvatarApi, MockCdnApi, MockDeviceApi, MockEntitlementApi, MockEnvironmentApi, MockFeaturesApi, MockHapticsApi, MockIapApi, MockLifecycleApi, MockLoggingApi, MockMultiplayerApi, MockNavigationApi, MockNotificationsApi, MockPopupsApi, MockPreloaderApi, MockProfileApi, MockSharedAssetsApi, MockShopApi, MockStorageApi, MockSystemApi, MockTimeApi, MockVideoApi, ROOM_GAME_PHASES, RpcAccessGateApi, RpcAdsApi, RpcAnalyticsApi, RpcAvatarApi, RpcEntitlementApi, RpcFeaturesApi, RpcHapticsApi, RpcIapApi, RpcLifecycleApi, RpcLoggingApi, RpcNavigationApi, RpcNotificationsApi, RpcPopupsApi, RpcPreloaderApi, RpcRoomsApi, RpcSharedAssetsApi, RpcShopApi, RpcStorageApi, RpcVideoApi, RundotGameMessageId, RundotGameRoom, SandboxProfileApi, WsMultiplayerApi, applyAccessGates, base64ToArrayBuffer, base64ToUtf8, createAccessGatedApi, createMockStorageApi, generateId, getLibraryDefinition, hasHostedUrlStructure, initializeAccessGate, initializeAds, initializeAnalytics, initializeAvatar3d, initializeCdn, initializeEntitlements, initializeFeaturesApi, initializeHaptics, initializeIap, initializeLifecycleApi, initializeLocalNotifications, initializeLoggingApi, initializePopups, initializePreloader, initializeProfile, initializeRoomsApi, initializeShop, initializeStackNavigation, initializeStorage, initializeSystem, initializeTime, initializeVideo, isPacificDaylightTime, parseCdnPathSegments, resolveCollectionItemPrice, setupRoomNotifications };
|
|
4876
|
+
//# sourceMappingURL=chunk-5JZJLAZT.js.map
|
|
4877
|
+
//# sourceMappingURL=chunk-5JZJLAZT.js.map
|