@@ -1273,7 +1273,7 @@ function writeOverlayRuntimeSyncSnapshot(container, snapshot) {
12731273 }
12741274}
12751275
1276- export function synchronizeOverlayGameplayRuntimeState ( runtime , context = { } ) {
1276+ function synchronizeOverlayGameplayRuntimeState ( runtime , context = { } ) {
12771277 if ( ! runtime ) {
12781278 return null ;
12791279 }
@@ -1739,7 +1739,7 @@ export function setOverlayGameplayRuntimeExtensions(runtime, runtimeExtensions)
17391739 return true ;
17401740}
17411741
1742- export function isOverlayGameplayRuntimeVisible ( runtime ) {
1742+ function isOverlayGameplayRuntimeVisible ( runtime ) {
17431743 return runtime ?. interactionVisible !== false ;
17441744}
17451745
@@ -1752,7 +1752,7 @@ export function setOverlayGameplayRuntimeVisible(runtime, visible) {
17521752 return true ;
17531753}
17541754
1755- export function setOverlayGameplayRuntimePreferenceStorageKey ( runtime , preferenceStorageKey , { loadExisting = true } = { } ) {
1755+ function setOverlayGameplayRuntimePreferenceStorageKey ( runtime , preferenceStorageKey , { loadExisting = true } = { } ) {
17561756 if ( ! runtime ) {
17571757 return false ;
17581758 }
@@ -1850,7 +1850,7 @@ export function setOverlayGameplayRuntimeKeybindProfile(runtime, { id = '', cycl
18501850 return true ;
18511851}
18521852
1853- export function getOverlayGameplayRuntimePreferencesSnapshot ( runtime ) {
1853+ function getOverlayGameplayRuntimePreferencesSnapshot ( runtime ) {
18541854 if ( ! runtime ) {
18551855 return Object . freeze ( {
18561856 visibility : true ,
@@ -1952,7 +1952,7 @@ export function saveOverlayGameplayRuntimePreferences(runtime, options = {}) {
19521952 return writeOverlayRuntimePreferencePayloadToStorage ( preferenceStorageKey , payload , storage ) ;
19531953}
19541954
1955- export function loadOverlayGameplayRuntimePreferences ( runtime , options = { } ) {
1955+ function loadOverlayGameplayRuntimePreferences ( runtime , options = { } ) {
19561956 if ( ! runtime ) {
19571957 return false ;
19581958 }
@@ -2873,3 +2873,30 @@ export function renderOverlayGameplayRuntime(runtime, context = {}) {
28732873 }
28742874 return invoked ;
28752875}
2876+
2877+ export const OVERLAY_GAMEPLAY_RUNTIME_PUBLIC_API_NAMES = Object . freeze ( [
2878+ 'applyOverlayGameplayRuntimePreset' ,
2879+ 'createOverlayGameplayRuntime' ,
2880+ 'enqueueOverlayGameplayRuntimeSyncEvent' ,
2881+ 'exportOverlayGameplayRuntimeProfile' ,
2882+ 'exportOverlayGameplayRuntimeSharePackage' ,
2883+ 'getOverlayGameplayRuntimeCompositionSnapshot' ,
2884+ 'getOverlayGameplayRuntimeDefaultPresets' ,
2885+ 'getOverlayGameplayRuntimeInteractionSnapshot' ,
2886+ 'getOverlayGameplayRuntimePresetLibrary' ,
2887+ 'importOverlayGameplayRuntimeProfile' ,
2888+ 'importOverlayGameplayRuntimeSharePackage' ,
2889+ 'renderOverlayGameplayRuntime' ,
2890+ 'resolveOverlayGameplayRuntimeInputAction' ,
2891+ 'saveOverlayGameplayRuntimePreferences' ,
2892+ 'setOverlayGameplayRuntimeAdaptiveUiRules' ,
2893+ 'setOverlayGameplayRuntimeContextInputMap' ,
2894+ 'setOverlayGameplayRuntimeExtensions' ,
2895+ 'setOverlayGameplayRuntimeKeybindProfile' ,
2896+ 'setOverlayGameplayRuntimePresetLibrary' ,
2897+ 'setOverlayGameplayRuntimeVisible' ,
2898+ 'stepOverlayGameplayRuntime' ,
2899+ 'stepOverlayGameplayRuntimeControls' ,
2900+ 'stepOverlayGameplayRuntimeGestures' ,
2901+ 'stepOverlayGameplayRuntimePointerInteractions' ,
2902+ ] ) ;
0 commit comments