@m4l/gclick-realtime 1.10.0 → 1.11.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/consumer/RealTimeConsumerContext.d.ts +10 -0
- package/consumer/RealTimeConsumerContext.d.ts.map +1 -0
- package/consumer/RealTimeConsumerContext.js +128 -0
- package/consumer/index.d.ts +4 -0
- package/consumer/index.d.ts.map +1 -0
- package/consumer/index.js +7 -0
- package/consumer/types.d.ts +47 -0
- package/consumer/types.d.ts.map +1 -0
- package/consumer/useRealTimeConsumer.d.ts.map +1 -0
- package/{web/consumer → consumer}/useRealTimeConsumer.js +2 -2
- package/contracts/deviceData.d.ts +19 -22
- package/contracts/deviceData.d.ts.map +1 -1
- package/contracts/deviceDetail.d.ts +0 -2
- package/contracts/deviceDetail.d.ts.map +1 -1
- package/contracts/index.d.ts +1 -1
- package/contracts/index.d.ts.map +1 -1
- package/dummy/catalogs/baseDeviceTemplate.d.ts.map +1 -1
- package/dummy/catalogs/baseDeviceTemplate.js +4 -35
- package/dummy/catalogs/blueprints.d.ts +9 -54
- package/dummy/catalogs/blueprints.d.ts.map +1 -1
- package/dummy/catalogs/blueprints.js +25 -42
- package/dummy/catalogs/departments.d.ts +10 -0
- package/dummy/catalogs/departments.d.ts.map +1 -0
- package/dummy/catalogs/departments.js +43 -0
- package/dummy/index.d.ts +3 -3
- package/dummy/index.d.ts.map +1 -1
- package/dummy/index.js +28 -28
- package/dummy/shared/types.d.ts +2 -4
- package/dummy/shared/types.d.ts.map +1 -1
- package/dummy/{runtime → simulation}/simulation.d.ts +1 -1
- package/dummy/simulation/simulation.d.ts.map +1 -0
- package/dummy/{runtime → simulation}/simulation.js +333 -423
- package/dummy/{runtime/dummy.d.ts → source-data/SourceDataDummy.d.ts} +8 -3
- package/dummy/source-data/SourceDataDummy.d.ts.map +1 -0
- package/dummy/{runtime/dummy.js → source-data/SourceDataDummy.js} +117 -128
- package/mobile/index.d.ts +4 -0
- package/mobile/index.d.ts.map +1 -0
- package/mobile/index.js +23 -0
- package/mobile/resourceTypes.d.ts +48 -0
- package/mobile/resourceTypes.d.ts.map +1 -0
- package/mobile/resourceTypes.js +54 -0
- package/mobile/runtime/atmosphere.d.ts +10 -0
- package/mobile/runtime/atmosphere.d.ts.map +1 -0
- package/mobile/runtime/atmosphere.js +16 -0
- package/mobile/runtime/dummy.d.ts +11 -0
- package/mobile/runtime/dummy.d.ts.map +1 -0
- package/mobile/runtime/dummy.js +16 -0
- package/mobile/runtime/index.d.ts +11 -0
- package/mobile/runtime/index.d.ts.map +1 -0
- package/mobile/runtime/runtimeRegistry.d.ts +17 -0
- package/mobile/runtime/runtimeRegistry.d.ts.map +1 -0
- package/mobile/runtime/runtimeRegistry.js +24 -0
- package/mobile/runtime/sourceDataFactory.d.ts +6 -0
- package/mobile/runtime/sourceDataFactory.d.ts.map +1 -0
- package/mobile/runtime/sourceDataFactory.js +29 -0
- package/mobile/runtime/types.d.ts +8 -0
- package/mobile/runtime/types.d.ts.map +1 -0
- package/package.json +37 -1
- package/payload/mergeDevicePayloadWithUpdatedAtGuard.d.ts +1 -1
- package/payload/mergeDevicePayloadWithUpdatedAtGuard.d.ts.map +1 -1
- package/rt_alarms/constants.d.ts +6 -0
- package/rt_alarms/constants.d.ts.map +1 -0
- package/rt_alarms/constants.js +7 -0
- package/rt_alarms/index.d.ts +15 -0
- package/rt_alarms/index.d.ts.map +1 -0
- package/rt_alarms/index.js +18 -0
- package/rt_devices/constants.d.ts +4 -0
- package/rt_devices/constants.d.ts.map +1 -0
- package/rt_devices/constants.js +5 -0
- package/rt_devices/index.d.ts +22 -0
- package/rt_devices/index.d.ts.map +1 -0
- package/rt_devices/index.js +150 -0
- package/rt_devices/resourceTypeMergeStrategies.d.ts +12 -0
- package/rt_devices/resourceTypeMergeStrategies.d.ts.map +1 -0
- package/rt_devices/resourceTypeMergeStrategies.js +19 -0
- package/shared/atmosphereHost.d.ts +5 -0
- package/shared/atmosphereHost.d.ts.map +1 -0
- package/shared/atmosphereHost.js +7 -0
- package/shared/index.d.ts +5 -0
- package/shared/index.d.ts.map +1 -0
- package/shared/index.js +11 -0
- package/shared/performanceMetrics.d.ts +64 -0
- package/shared/performanceMetrics.d.ts.map +1 -0
- package/shared/performanceMetrics.js +73 -0
- package/shared/runtimeRegistry.d.ts +17 -0
- package/shared/runtimeRegistry.d.ts.map +1 -0
- package/shared/runtimeRegistry.js +27 -0
- package/shared/runtimeResourceTypesKey.d.ts +14 -0
- package/shared/runtimeResourceTypesKey.d.ts.map +1 -0
- package/shared/runtimeResourceTypesKey.js +18 -0
- package/shared/startupSnapshots.d.ts +28 -0
- package/shared/startupSnapshots.d.ts.map +1 -0
- package/shared/startupSnapshots.js +29 -0
- package/web/diagnostics/performanceMetrics.d.ts +34 -0
- package/web/diagnostics/performanceMetrics.d.ts.map +1 -0
- package/web/diagnostics/performanceMetrics.js +61 -0
- package/web/host/devicesResourceType.d.ts +3 -11
- package/web/host/devicesResourceType.d.ts.map +1 -1
- package/web/host/devicesResourceType.js +58 -171
- package/web/host/hostRuntime.d.ts +6 -8
- package/web/host/hostRuntime.d.ts.map +1 -1
- package/web/host/hostRuntime.js +29 -38
- package/web/host/index.d.ts +2 -2
- package/web/host/index.d.ts.map +1 -1
- package/web/host/launchContract.d.ts +19 -13
- package/web/host/launchContract.d.ts.map +1 -1
- package/web/host/launchContract.js +82 -76
- package/web/index.d.ts +2 -7
- package/web/index.d.ts.map +1 -1
- package/web/index.js +34 -62
- package/web/runtime/atmosphere.d.ts +12 -0
- package/web/runtime/atmosphere.d.ts.map +1 -0
- package/web/runtime/atmosphere.js +22 -0
- package/web/runtime/dummy.d.ts +11 -0
- package/web/runtime/dummy.d.ts.map +1 -0
- package/web/runtime/dummy.js +22 -0
- package/web/runtime/index.d.ts +8 -9
- package/web/runtime/index.d.ts.map +1 -1
- package/web/runtime/performanceMetricReporter.d.ts +8 -0
- package/web/runtime/performanceMetricReporter.d.ts.map +1 -0
- package/web/runtime/performanceMetricReporter.js +10 -0
- package/web/runtime/runtimeRegistry.d.ts +21 -5
- package/web/runtime/runtimeRegistry.d.ts.map +1 -1
- package/web/runtime/runtimeRegistry.js +22 -7
- package/web/runtime/sourceDataFactory.d.ts +7 -0
- package/web/runtime/sourceDataFactory.d.ts.map +1 -0
- package/web/runtime/sourceDataFactory.js +26 -0
- package/web/{producer → runtime}/types.d.ts +2 -7
- package/web/runtime/types.d.ts.map +1 -0
- package/dummy/catalogs/group.d.ts +0 -10
- package/dummy/catalogs/group.d.ts.map +0 -1
- package/dummy/catalogs/group.js +0 -46
- package/dummy/runtime/dummy.d.ts.map +0 -1
- package/dummy/runtime/simulation.d.ts.map +0 -1
- package/libs/observability/mf/src/browserRuntimeHandles.js +0 -350
- package/libs/observability/mf/src/diagnosticPolicies/catalog.js +0 -12
- package/libs/observability/mf/src/diagnosticPolicies/contracts.js +0 -8
- package/libs/observability/mf/src/diagnosticPolicies/host.js +0 -127
- package/libs/observability/mf/src/diagnosticPolicies/operativeMyGpsDevices.js +0 -79
- package/web/consumer/RealTimeConsumerContext.d.ts +0 -10
- package/web/consumer/RealTimeConsumerContext.d.ts.map +0 -1
- package/web/consumer/RealTimeConsumerContext.js +0 -156
- package/web/consumer/index.d.ts +0 -6
- package/web/consumer/index.d.ts.map +0 -1
- package/web/consumer/store.d.ts +0 -10
- package/web/consumer/store.d.ts.map +0 -1
- package/web/consumer/store.helpers.d.ts +0 -62
- package/web/consumer/store.helpers.d.ts.map +0 -1
- package/web/consumer/store.helpers.js +0 -141
- package/web/consumer/store.js +0 -227
- package/web/consumer/types.d.ts +0 -161
- package/web/consumer/types.d.ts.map +0 -1
- package/web/consumer/useRealTimeConsumer.d.ts.map +0 -1
- package/web/host/startupSnapshots.d.ts +0 -45
- package/web/host/startupSnapshots.d.ts.map +0 -1
- package/web/host/startupSnapshots.js +0 -103
- package/web/producer/RealTimeProducerContext.d.ts +0 -9
- package/web/producer/RealTimeProducerContext.d.ts.map +0 -1
- package/web/producer/RealTimeProducerContext.js +0 -16
- package/web/producer/index.d.ts +0 -7
- package/web/producer/index.d.ts.map +0 -1
- package/web/producer/sourceDataFactory.d.ts +0 -13
- package/web/producer/sourceDataFactory.d.ts.map +0 -1
- package/web/producer/sourceDataFactory.js +0 -32
- package/web/producer/store.d.ts +0 -7
- package/web/producer/store.d.ts.map +0 -1
- package/web/producer/store.js +0 -5
- package/web/producer/types.d.ts.map +0 -1
- package/web/producer/useRealTimeProducer.d.ts +0 -7
- package/web/producer/useRealTimeProducer.d.ts.map +0 -1
- package/web/producer/useRealTimeProducer.js +0 -15
- package/web/runtime/resourceTypeMergeStrategies.d.ts +0 -10
- package/web/runtime/resourceTypeMergeStrategies.d.ts.map +0 -1
- package/web/runtime/resourceTypeMergeStrategies.js +0 -19
- package/web/runtime/runtime.d.ts +0 -16
- package/web/runtime/runtime.d.ts.map +0 -1
- package/web/runtime/runtime.js +0 -28
- package/web/runtime/runtimeAtmosphereOnly.d.ts +0 -11
- package/web/runtime/runtimeAtmosphereOnly.d.ts.map +0 -1
- package/web/runtime/runtimeAtmosphereOnly.js +0 -28
- package/web/runtime/runtimeRegistry.shared.d.ts +0 -23
- package/web/runtime/runtimeRegistry.shared.d.ts.map +0 -1
- package/web/runtime/runtimeRegistry.shared.js +0 -47
- package/web/runtime/runtimeRegistryAtmosphereOnly.d.ts +0 -9
- package/web/runtime/runtimeRegistryAtmosphereOnly.d.ts.map +0 -1
- package/web/runtime/runtimeRegistryAtmosphereOnly.js +0 -13
- package/web/shared/constants.d.ts +0 -11
- package/web/shared/constants.d.ts.map +0 -1
- package/web/shared/constants.js +0 -11
- package/web/shared/index.d.ts +0 -3
- package/web/shared/index.d.ts.map +0 -1
- package/web/shared/performanceMetrics.d.ts +0 -48
- package/web/shared/performanceMetrics.d.ts.map +0 -1
- package/web/shared/performanceMetrics.js +0 -70
- package/web/shared/runtimeTypes.d.ts +0 -4
- package/web/shared/runtimeTypes.d.ts.map +0 -1
- /package/{web/consumer → consumer}/useRealTimeConsumer.d.ts +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { createRealtimeRuntimeBundle as t } from "@m4l/realtime-runtime/web";
|
|
2
|
+
import { withGClickResourceTypeMergeStrategies as i } from "../../rt_devices/resourceTypeMergeStrategies.js";
|
|
3
|
+
import { createGClickRealtimeWebSourceDataFactory as o } from "./sourceDataFactory.js";
|
|
4
|
+
import { createGClickRealtimePerformanceMetricReporter as c } from "./performanceMetricReporter.js";
|
|
5
|
+
function u(e) {
|
|
6
|
+
const r = i(
|
|
7
|
+
e.resourceTypesConfig
|
|
8
|
+
);
|
|
9
|
+
return t(
|
|
10
|
+
{
|
|
11
|
+
...e,
|
|
12
|
+
resourceTypesConfig: r,
|
|
13
|
+
onPerformanceMetric: c(
|
|
14
|
+
e.onPerformanceMetric
|
|
15
|
+
)
|
|
16
|
+
},
|
|
17
|
+
o()
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
export {
|
|
21
|
+
u as createGClickDummyRealtimeRuntime
|
|
22
|
+
};
|
package/web/runtime/index.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export
|
|
3
|
-
export {
|
|
4
|
-
export type {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export { getOrCreateGClickAtmosphereRealtimeRuntime, } from './
|
|
8
|
-
export type { GetOrCreateGClickAtmosphereRealtimeRuntimeProps, } from './
|
|
9
|
-
export type { GetOrCreateGClickRealtimeRuntimeProps, } from './runtimeRegistry.shared';
|
|
1
|
+
export { createGClickAtmosphereRealtimeRuntime, } from './atmosphere';
|
|
2
|
+
export { createGClickDummyRealtimeRuntime, } from './dummy';
|
|
3
|
+
export { createGClickRealtimeWebSourceDataFactory, } from './sourceDataFactory';
|
|
4
|
+
export type { InitialRealTimeProducerStoreProps, RealTimeProducerStoreState, RealTimeProducerStoreStateWithActions, RealTimeResourceSourceMechanismConfig, RealTimeResourceSourceMechanismConfigDummy, RealTimeResourceType, ResourceTypeSourceDataMechanism, } from './types';
|
|
5
|
+
export type { CreateGClickAtmosphereRealtimeRuntimeProps, GClickRealtimeRuntime, } from './atmosphere';
|
|
6
|
+
export type { CreateGClickDummyRealtimeRuntimeProps, } from './dummy';
|
|
7
|
+
export { getOrCreateGClickAtmosphereRealtimeRuntime, getOrCreateGClickDummyRealtimeRuntime, disposeGClickRealtimeRuntime, } from './runtimeRegistry';
|
|
8
|
+
export type { GetOrCreateGClickAtmosphereRealtimeRuntimeProps, GetOrCreateGClickDummyRealtimeRuntimeProps, } from './runtimeRegistry';
|
|
10
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qCAAqC,GACtC,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,gCAAgC,GACjC,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,wCAAwC,GACzC,MAAM,qBAAqB,CAAC;AAC7B,YAAY,EACV,iCAAiC,EACjC,0BAA0B,EAC1B,qCAAqC,EACrC,qCAAqC,EACrC,0CAA0C,EAC1C,oBAAoB,EACpB,+BAA+B,GAChC,MAAM,SAAS,CAAC;AACjB,YAAY,EACV,0CAA0C,EAC1C,qBAAqB,GACtB,MAAM,cAAc,CAAC;AACtB,YAAY,EACV,qCAAqC,GACtC,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,0CAA0C,EAC1C,qCAAqC,EACrC,4BAA4B,GAC7B,MAAM,mBAAmB,CAAC;AAC3B,YAAY,EACV,+CAA+C,EAC/C,0CAA0C,GAC3C,MAAM,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CreateRealtimeRuntimeProps } from '@m4l/realtime-runtime/web';
|
|
2
|
+
type GClickRealtimePerformanceMetricCallback = NonNullable<CreateRealtimeRuntimeProps['onPerformanceMetric']>;
|
|
3
|
+
/**
|
|
4
|
+
* Build the metric reporter that keeps GClick debug counters aligned with generic engine metrics.
|
|
5
|
+
*/
|
|
6
|
+
export declare function createGClickRealtimePerformanceMetricReporter(onPerformanceMetric?: CreateRealtimeRuntimeProps['onPerformanceMetric']): ((metricName: Parameters<GClickRealtimePerformanceMetricCallback>[0], value?: Parameters<GClickRealtimePerformanceMetricCallback>[1]) => void) | undefined;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=performanceMetricReporter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"performanceMetricReporter.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/performanceMetricReporter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,0BAA0B,EAC3B,MAAM,2BAA2B,CAAC;AAMnC,KAAK,uCAAuC,GAAG,WAAW,CACxD,0BAA0B,CAAC,qBAAqB,CAAC,CAClD,CAAC;AAEF;;GAEG;AACH,wBAAgB,6CAA6C,CAC3D,mBAAmB,CAAC,EAAE,0BAA0B,CAAC,qBAAqB,CAAC,iBAOzD,UAAU,CAAC,uCAAuC,CAAC,CAAC,CAAC,CAAC,UAC1D,UAAU,CAAC,uCAAuC,CAAC,CAAC,CAAC,CAAC,uBAKjE"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { isRealtimePerformanceMetricsEnabled as i, recordWebRealtimePerformanceMetric as o } from "../diagnostics/performanceMetrics.js";
|
|
2
|
+
function n(e) {
|
|
3
|
+
if (!(!e && !i()))
|
|
4
|
+
return (r, t) => {
|
|
5
|
+
o(r, t), e?.(r, t);
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
n as createGClickRealtimePerformanceMetricReporter
|
|
10
|
+
};
|
|
@@ -1,8 +1,24 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GClickRealtimeRuntimeKeyProps } from '../../shared/runtimeRegistry';
|
|
2
|
+
import { CreateGClickDummyRealtimeRuntimeProps } from './dummy';
|
|
3
|
+
import { CreateGClickAtmosphereRealtimeRuntimeProps } from './atmosphere';
|
|
4
|
+
export type { GClickRealtimeRuntimeKeyProps };
|
|
5
|
+
type GetOrCreateGClickRealtimeRuntimePropsFor<TCreateProps extends {
|
|
6
|
+
storeId?: string;
|
|
7
|
+
}> = Omit<TCreateProps, 'storeId'> & GClickRealtimeRuntimeKeyProps & {
|
|
8
|
+
storeId?: string;
|
|
9
|
+
};
|
|
10
|
+
export type GetOrCreateGClickAtmosphereRealtimeRuntimeProps = GetOrCreateGClickRealtimeRuntimePropsFor<CreateGClickAtmosphereRealtimeRuntimeProps>;
|
|
11
|
+
export type GetOrCreateGClickDummyRealtimeRuntimeProps = GetOrCreateGClickRealtimeRuntimePropsFor<CreateGClickDummyRealtimeRuntimeProps>;
|
|
2
12
|
/**
|
|
3
|
-
* Lazily create or reuse
|
|
13
|
+
* Lazily create or reuse the Atmosphere-backed GClick runtime.
|
|
4
14
|
*/
|
|
5
|
-
export declare const
|
|
6
|
-
|
|
7
|
-
|
|
15
|
+
export declare const getOrCreateGClickAtmosphereRealtimeRuntime: (publicProps: GetOrCreateGClickAtmosphereRealtimeRuntimeProps) => import('@m4l/realtime-runtime/web').RealtimeRuntimeBundle;
|
|
16
|
+
/**
|
|
17
|
+
* Lazily create or reuse the auxiliary dummy GClick runtime used by tests and previews.
|
|
18
|
+
*/
|
|
19
|
+
export declare const getOrCreateGClickDummyRealtimeRuntime: (publicProps: GetOrCreateGClickDummyRealtimeRuntimeProps) => import('@m4l/realtime-runtime/web').RealtimeRuntimeBundle;
|
|
20
|
+
/**
|
|
21
|
+
* Dispose one cached GClick runtime associated with the provided public runtime key.
|
|
22
|
+
*/
|
|
23
|
+
export declare function disposeGClickRealtimeRuntime(runtimeKey: string): void;
|
|
8
24
|
//# sourceMappingURL=runtimeRegistry.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtimeRegistry.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/runtimeRegistry.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"runtimeRegistry.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/runtimeRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,6BAA6B,EACnC,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAEL,KAAK,qCAAqC,EAC3C,MAAM,SAAS,CAAC;AACjB,OAAO,EAEL,KAAK,0CAA0C,EAChD,MAAM,cAAc,CAAC;AAEtB,YAAY,EAAE,6BAA6B,EAAE,CAAC;AAE9C,KAAK,wCAAwC,CAC3C,YAAY,SAAS;IAAE,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,IACvC,IAAI,CAAC,YAAY,EAAE,SAAS,CAAC,GAAG,6BAA6B,GAAG;IAClE,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,+CAA+C,GACzD,wCAAwC,CACtC,0CAA0C,CAC3C,CAAC;AAEJ,MAAM,MAAM,0CAA0C,GACpD,wCAAwC,CACtC,qCAAqC,CACtC,CAAC;AAoBJ;;GAEG;AACH,eAAO,MAAM,0CAA0C,6HAQnD,CAAC;AAEL;;GAEG;AACH,eAAO,MAAM,qCAAqC,wHAQ9C,CAAC;AAEL;;GAEG;AACH,wBAAgB,4BAA4B,CAAC,UAAU,EAAE,MAAM,QAE9D"}
|
|
@@ -1,10 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { createGClickRealtimeRuntimeRegistryGetter as i, disposeGClickRealtimeRuntimeByKey as o } from "../../shared/runtimeRegistry.js";
|
|
2
|
+
import { createGClickDummyRealtimeRuntime as n } from "./dummy.js";
|
|
3
|
+
import { createGClickAtmosphereRealtimeRuntime as l } from "./atmosphere.js";
|
|
4
|
+
function r(e, m) {
|
|
5
|
+
const { runtimeKey: s, ...t } = e;
|
|
6
|
+
return {
|
|
7
|
+
...t,
|
|
8
|
+
storeId: t.storeId ?? m
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
const u = i({
|
|
12
|
+
createRuntime: l,
|
|
13
|
+
resolveCreateProps: r
|
|
14
|
+
}), C = i({
|
|
15
|
+
createRuntime: n,
|
|
16
|
+
resolveCreateProps: r
|
|
6
17
|
});
|
|
18
|
+
function p(e) {
|
|
19
|
+
o(e);
|
|
20
|
+
}
|
|
7
21
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
22
|
+
p as disposeGClickRealtimeRuntime,
|
|
23
|
+
u as getOrCreateGClickAtmosphereRealtimeRuntime,
|
|
24
|
+
C as getOrCreateGClickDummyRealtimeRuntime
|
|
10
25
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { OnMessagesStoreCallback, OnRealTimeProducerMetricCallback, OnRealTimeTransportReconnectCallback, SourceDataBase } from '@m4l/realtime-runtime';
|
|
2
|
+
import { RealTimeResourceSourceMechanismConfigBase } from '@m4l/realtime-runtime/shared';
|
|
3
|
+
/**
|
|
4
|
+
* Create the web source-data factory used by one GClick realtime runtime.
|
|
5
|
+
*/
|
|
6
|
+
export declare function createGClickRealtimeWebSourceDataFactory(): (config: RealTimeResourceSourceMechanismConfigBase, onMessages: OnMessagesStoreCallback, onPerformanceMetric?: OnRealTimeProducerMetricCallback, onTransportReconnect?: OnRealTimeTransportReconnectCallback) => SourceDataBase;
|
|
7
|
+
//# sourceMappingURL=sourceDataFactory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sourceDataFactory.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/sourceDataFactory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,uBAAuB,EACvB,gCAAgC,EAChC,oCAAoC,EACpC,cAAc,EACf,MAAM,uBAAuB,CAAC;AAM/B,OAAO,KAAK,EAEV,yCAAyC,EAC1C,MAAM,8BAA8B,CAAC;AAEtC;;GAEG;AACH,wBAAgB,wCAAwC,KAKpD,QAAQ,yCAAyC,EACjD,YAAY,uBAAuB,EACnC,sBAAsB,gCAAgC,EACtD,uBAAuB,oCAAoC,KAC1D,cAAc,CAkBlB"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { createAtmosphereSourceDataFactoryWeb as o } from "@m4l/realtime-runtime";
|
|
2
|
+
import { SourceDataDummy as m } from "../../dummy/source-data/SourceDataDummy.js";
|
|
3
|
+
function s() {
|
|
4
|
+
const t = o();
|
|
5
|
+
return function(e, r, a, c) {
|
|
6
|
+
switch (e.sourceDataMechanism) {
|
|
7
|
+
case "dummy":
|
|
8
|
+
return new m(
|
|
9
|
+
e,
|
|
10
|
+
r
|
|
11
|
+
);
|
|
12
|
+
case "atmosphere":
|
|
13
|
+
return t(
|
|
14
|
+
e,
|
|
15
|
+
r,
|
|
16
|
+
a,
|
|
17
|
+
c
|
|
18
|
+
);
|
|
19
|
+
default:
|
|
20
|
+
throw new Error("Unsupported GClick realtime web source mechanism.");
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export {
|
|
25
|
+
s as createGClickRealtimeWebSourceDataFactory
|
|
26
|
+
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { InitialRealTimeProducerStoreProps as BaseInitialRealTimeProducerStoreProps, RealTimeProducerStoreState as BaseRealTimeProducerStoreState, RealTimeProducerStoreStateWithActions as BaseRealTimeProducerStoreStateWithActions } from '../../../../../dist/packages/@m4l/realtime-runtime/web';
|
|
1
|
+
import { InitialRealTimeProducerStoreProps as BaseInitialRealTimeProducerStoreProps, RealTimeProducerStoreState as BaseRealTimeProducerStoreState, RealTimeProducerStoreStateWithActions as BaseRealTimeProducerStoreStateWithActions } from '@m4l/realtime-runtime/web';
|
|
3
2
|
import { RealTimeResourceType as BaseRealTimeResourceType } from '@m4l/realtime-runtime';
|
|
4
|
-
import { RealTimeResourceSourceMechanismConfigAtmosphere, RealTimeResourceSourceMechanismConfigBase, RealTimeResourceTypeId } from '
|
|
3
|
+
import { RealTimeResourceSourceMechanismConfigAtmosphere, RealTimeResourceSourceMechanismConfigBase, RealTimeResourceTypeId } from '@m4l/realtime-runtime/shared';
|
|
5
4
|
import { RealTimeDummySimulationConfig } from '../../dummy/index';
|
|
6
5
|
/**
|
|
7
6
|
* Realtime source-mechanism identifier supported by the current GClick web bridge.
|
|
@@ -45,8 +44,4 @@ export type RealTimeProducerStoreStateWithActions = Omit<BaseRealTimeProducerSto
|
|
|
45
44
|
export type InitialRealTimeProducerStoreProps = Omit<BaseInitialRealTimeProducerStoreProps, 'resourceTypesConfig'> & {
|
|
46
45
|
resourceTypesConfig: RealTimeResourceSourceMechanismConfig[];
|
|
47
46
|
};
|
|
48
|
-
export interface RealTimeProducerProviderProps extends InitialRealTimeProducerStoreProps {
|
|
49
|
-
storeDevtoolsEnabled?: boolean;
|
|
50
|
-
children: ReactNode;
|
|
51
|
-
}
|
|
52
47
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/web/runtime/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iCAAiC,IAAI,qCAAqC,EAC1E,0BAA0B,IAAI,8BAA8B,EAC5D,qCAAqC,IAAI,yCAAyC,EACnF,MAAM,2BAA2B,CAAC;AACnC,OAAO,KAAK,EAAE,oBAAoB,IAAI,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAC9F,OAAO,KAAK,EACV,+CAA+C,EAC/C,yCAAyC,EACzC,sBAAsB,EACvB,MAAM,8BAA8B,CAAC;AACtC,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mBAAmB,CAAC;AAEvE;;GAEG;AACH,MAAM,MAAM,+BAA+B,GAAG,OAAO,GAAG,YAAY,CAAC;AAErE;;GAEG;AACH,MAAM,WAAW,0CACf,SAAQ,yCAAyC;IACjD,mBAAmB,EAAE,OAAO,CAAC;IAC7B;;OAEG;IACH,UAAU,CAAC,EAAE,6BAA6B,CAAC;IAC3C;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,MAAM,qCAAqC,GAC7C,+CAA+C,GAC/C,0CAA0C,CAAC;AAE/C;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG,IAAI,CAAC,wBAAwB,EAAE,QAAQ,CAAC,GAAG;IAC5E,MAAM,EAAE,qCAAqC,CAAC;CAC/C,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG,IAAI,CAC3C,8BAA8B,EAC9B,qBAAqB,GAAG,mBAAmB,CAC5C,GAAG;IACF,mBAAmB,EAAE,qCAAqC,EAAE,CAAC;IAC7D,iBAAiB,EAAE,MAAM,CAAC,sBAAsB,EAAE,oBAAoB,CAAC,CAAC;CACzE,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qCAAqC,GAAG,IAAI,CACtD,yCAAyC,EACzC,MAAM,8BAA8B,CACrC,GACC,0BAA0B,CAAC;AAE7B;;GAEG;AACH,MAAM,MAAM,iCAAiC,GAAG,IAAI,CAClD,qCAAqC,EACrC,qBAAqB,CACtB,GAAG;IACF,mBAAmB,EAAE,qCAAqC,EAAE,CAAC;CAC9D,CAAC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { SettingsGroup } from '../../contracts/index';
|
|
2
|
-
export declare const groupForest: SettingsGroup;
|
|
3
|
-
export declare const group1: SettingsGroup;
|
|
4
|
-
export declare const group2: SettingsGroup;
|
|
5
|
-
export declare const group3: SettingsGroup;
|
|
6
|
-
export declare const group4: SettingsGroup;
|
|
7
|
-
export declare const group5: SettingsGroup;
|
|
8
|
-
export declare const group6: SettingsGroup;
|
|
9
|
-
export declare const group7: SettingsGroup;
|
|
10
|
-
//# sourceMappingURL=group.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"group.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/catalogs/group.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAE3D,eAAO,MAAM,WAAW,EAAE,aAIzB,CAAC;AACF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC;AACF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC;AACF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC;AACF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC;AACF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC;AACF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,aAIpB,CAAC"}
|
package/dummy/catalogs/group.js
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
const o = {
|
|
2
|
-
id: 1,
|
|
3
|
-
name: "North Ridge Logistics",
|
|
4
|
-
bgColor: "#2F855A"
|
|
5
|
-
}, r = {
|
|
6
|
-
id: 8,
|
|
7
|
-
name: "Industrial Dispatch",
|
|
8
|
-
bgColor: "#B45BAB"
|
|
9
|
-
}, e = {
|
|
10
|
-
id: 2,
|
|
11
|
-
name: "Delivery East",
|
|
12
|
-
bgColor: "#24A188"
|
|
13
|
-
}, t = {
|
|
14
|
-
id: 3,
|
|
15
|
-
name: "Central Commute",
|
|
16
|
-
bgColor: "#334155"
|
|
17
|
-
}, n = {
|
|
18
|
-
id: 4,
|
|
19
|
-
name: "Warehouse South",
|
|
20
|
-
bgColor: "#C7872F"
|
|
21
|
-
}, g = {
|
|
22
|
-
id: 5,
|
|
23
|
-
name: "Field Service",
|
|
24
|
-
bgColor: "#D9A404"
|
|
25
|
-
// Yellow
|
|
26
|
-
}, i = {
|
|
27
|
-
id: 6,
|
|
28
|
-
name: "Yard Operations",
|
|
29
|
-
bgColor: "#E24A3B"
|
|
30
|
-
// Red
|
|
31
|
-
}, s = {
|
|
32
|
-
id: 7,
|
|
33
|
-
name: "City Shuttle",
|
|
34
|
-
bgColor: "#2563EB"
|
|
35
|
-
// Blue
|
|
36
|
-
};
|
|
37
|
-
export {
|
|
38
|
-
r as group1,
|
|
39
|
-
e as group2,
|
|
40
|
-
t as group3,
|
|
41
|
-
n as group4,
|
|
42
|
-
g as group5,
|
|
43
|
-
i as group6,
|
|
44
|
-
s as group7,
|
|
45
|
-
o as groupForest
|
|
46
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dummy.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/runtime/dummy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uCAAuC,EAAE,MAAM,uBAAuB,CAAC;AAEhF,OAAO,KAAK,EAEV,wBAAwB,EACzB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AA4CvD,KAAK,wBAAwB,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;AASjE,KAAK,0BAA0B,GAAG;IAChC,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,CAAC;AAEF,KAAK,yBAAyB,GAAG;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,wBAAwB,CAAC;CAC5C,CAAC;AASF,KAAK,uBAAuB,GAAG;IAC7B,eAAe,EAAE,CACf,gBAAgB,EAAE,wBAAwB,KACvC,yBAAyB,GAAG,IAAI,CAAC;IACtC,QAAQ,EAAE,MAAM,wBAAwB,CAAC;IACzC,KAAK,EAAE,MAAM,wBAAwB,CAAC;IACtC,MAAM,EAAE,CAAC,OAAO,CAAC,EAAE,0BAA0B,KAAK,wBAAwB,CAAC;CAC5E,CAAC;AAEF,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,UAAU;QAClB,CAAC,uCAAuC,CAAC,QAAQ,CAAC,CAAC,EACjD,uBAAuB,CAAC;KAC3B;CACF;AA+dD;;GAEG;AACH,qBAAa,eAAgB,SAAQ,cAAc;IACjD,OAAO,CAAC,kBAAkB,CAAuD;IAEjF,OAAO,CAAC,gBAAgB,CAAS;IAEjC,OAAO,CAAC,eAAe,CAAqC;IAE5D;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAQ7B;;OAEG;IACH,OAAO,CAAC,sBAAsB;IAU9B;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAwB/B;;OAEG;IACH,OAAO,CAAC,yBAAyB;IA+BjC;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAkC7B;;OAEG;IACH,OAAO,CAAC,aAAa;IASrB;;OAEG;IACH,OAAO,CAAC,cAAc;IAsBtB;;OAEG;IACH,KAAK,IAAI,IAAI;IAoDb;;OAEG;IACH,IAAI,IAAI,IAAI;CASb;AAED,eAAe,eAAe,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"simulation.d.ts","sourceRoot":"","sources":["../../../../../../packages/gclick-realtime/src/dummy/runtime/simulation.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,eAAe,EACf,wBAAwB,EACxB,sBAAsB,EACvB,MAAM,uBAAuB,CAAC;AAE/B,OAAO,KAAK,EAAiB,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAM3E,OAAO,KAAK,EAUV,6BAA6B,EAC7B,+BAA+B,EAC/B,0CAA0C,EAC3C,MAAM,iBAAiB,CAAC;AA2CzB,UAAU,gCAAgC;IACxC,cAAc,CAAC,EAAE,sBAAsB,CAAC;IACxC,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAoGD,UAAU,4CAA4C;IACpD,cAAc,EAAE,sBAAsB,CAAC;IACvC,UAAU,CAAC,EAAE,6BAA6B,CAAC;CAC5C;AAED,UAAU,sDAAsD;IAC9D,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,sBAAsB,CAAC;IACvC,mBAAmB,CAAC,EAAE,6BAA6B,CAAC;CACrD;AAED,MAAM,WAAW,0BAA0B;IACzC,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,cAAc,CAAC;IAChC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,gBAAgB,EAAE,wBAAwB,CAAC;CAC5C;AAED,MAAM,WAAW,yBAAyB;IACxC,OAAO,EAAE,0BAA0B,EAAE,CAAC;IACtC,QAAQ,EAAE,QAAQ,CAAC,+BAA+B,CAAC,CAAC;CACrD;AA83DD;;GAEG;AACH,wBAAgB,8BAA8B,CAC5C,UAAU,CAAC,EAAE,6BAA6B,EAC1C,OAAO,CAAC,EAAE,gCAAgC,GACzC,yBAAyB,CAqC3B;AAED;;GAEG;AACH,wBAAgB,mCAAmC,CACjD,UAAU,CAAC,EAAE,6BAA6B,EAC1C,OAAO,CAAC,EAAE,gCAAgC,kCAgB3C;AAED;;GAEG;AACH,wBAAgB,qCAAqC,CAAC,EACpD,cAAc,EACd,UAAU,GACX,EAAE,4CAA4C,GAAG,0CAA0C,CAY3F;AAED;;GAEG;AACH,wBAAgB,+CAA+C,CAAC,EAC9D,QAAQ,EACR,cAAc,EACd,mBAAmB,GACpB,EAAE,sDAAsD,GAAG,0CAA0C,CAQrG"}
|
|
@@ -1,350 +0,0 @@
|
|
|
1
|
-
function n(e) {
|
|
2
|
-
return Object.freeze({
|
|
3
|
-
...e,
|
|
4
|
-
carrier: "symbol",
|
|
5
|
-
key: `Symbol.for('${e.symbolId}')`,
|
|
6
|
-
symbol: Symbol.for(e.symbolId)
|
|
7
|
-
});
|
|
8
|
-
}
|
|
9
|
-
function t(e) {
|
|
10
|
-
return Object.freeze({
|
|
11
|
-
...e,
|
|
12
|
-
carrier: "globalThis",
|
|
13
|
-
key: `globalThis.${e.property}`
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
function r(e) {
|
|
17
|
-
return Object.freeze({
|
|
18
|
-
...e,
|
|
19
|
-
carrier: "window",
|
|
20
|
-
key: `window.${e.property}`
|
|
21
|
-
});
|
|
22
|
-
}
|
|
23
|
-
const c = n({
|
|
24
|
-
active: !0,
|
|
25
|
-
cleanup: "none",
|
|
26
|
-
codeRefs: [
|
|
27
|
-
"packages/layouts/src/utils/mfRuntimeErrors.ts"
|
|
28
|
-
],
|
|
29
|
-
docsPath: "docs/frontend/observability/FRONTEND_OBSERVABILITY_ARCHITECTURE.md",
|
|
30
|
-
id: "layouts.mf-runtime-errors",
|
|
31
|
-
introducedOn: "2026-05-06",
|
|
32
|
-
kind: "symbol-bridge",
|
|
33
|
-
lifecycle: "production",
|
|
34
|
-
namingStatus: "canonical",
|
|
35
|
-
objective: "Preserve MF runtime-boundary crash forwarding even when the host shell and the MF ship different bundled copies of @m4l/layouts.",
|
|
36
|
-
ownerProject: "@m4l/layouts",
|
|
37
|
-
purpose: "Share one host-owned MF runtime error bridge across separately built bundles.",
|
|
38
|
-
stability: "internal",
|
|
39
|
-
symbolId: "m4l.layouts.mfRuntimeErrors"
|
|
40
|
-
}), l = t({
|
|
41
|
-
active: !0,
|
|
42
|
-
cleanup: "none",
|
|
43
|
-
codeRefs: [
|
|
44
|
-
"packages/realtime-runtime/src/engine/runtimeRegistry.ts"
|
|
45
|
-
],
|
|
46
|
-
docsPath: "packages/realtime-runtime/README.md",
|
|
47
|
-
id: "realtime.runtime-registry",
|
|
48
|
-
introducedOn: "2026-04-27",
|
|
49
|
-
kind: "global-registry",
|
|
50
|
-
lifecycle: "production",
|
|
51
|
-
namingStatus: "canonical",
|
|
52
|
-
objective: "Reuse one host-owned realtime runtime instance per runtime key instead of re-creating overlapping transports and stores.",
|
|
53
|
-
ownerProject: "@m4l/realtime-runtime",
|
|
54
|
-
property: "__M4L_REALTIME_RUNTIMES__",
|
|
55
|
-
purpose: "Store the shared realtime runtime registry for the current browser session.",
|
|
56
|
-
stability: "internal"
|
|
57
|
-
}), p = t({
|
|
58
|
-
active: !0,
|
|
59
|
-
cleanup: "none",
|
|
60
|
-
codeRefs: [
|
|
61
|
-
"packages/gclick-realtime/src/web/shared/performanceMetrics.ts",
|
|
62
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/App/features/map-shell/observability/realtimePerformanceDebug.ts"
|
|
63
|
-
],
|
|
64
|
-
docsPath: "packages/gclick/README.md",
|
|
65
|
-
id: "realtime.performance-debug",
|
|
66
|
-
introducedOn: "2026-05-06",
|
|
67
|
-
kind: "global-registry",
|
|
68
|
-
lifecycle: "preview-dev",
|
|
69
|
-
namingStatus: "canonical",
|
|
70
|
-
objective: "Expose one browser-readable performance bag so realtime rendering, queue pressure, and interpolation diagnostics can be inspected without instrumenting every consumer separately.",
|
|
71
|
-
ownerProject: "@m4l/gclick-realtime",
|
|
72
|
-
property: "__M4L_REALTIME_PERFORMANCE__",
|
|
73
|
-
purpose: "Publish shared realtime performance counters and motion metrics for browser inspection.",
|
|
74
|
-
stability: "internal"
|
|
75
|
-
}), d = r({
|
|
76
|
-
active: !0,
|
|
77
|
-
cleanup: "none",
|
|
78
|
-
codeRefs: [
|
|
79
|
-
"apps/gclick/gclick_host/src/observability/dev/smoke.ts",
|
|
80
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/app_entries/ByIsolation/observability/smoke.ts"
|
|
81
|
-
],
|
|
82
|
-
docsPath: "apps/gclick/gclick_host/README.md",
|
|
83
|
-
id: "observability.smoke-tools",
|
|
84
|
-
introducedOn: "2026-05-06",
|
|
85
|
-
kind: "window-tool",
|
|
86
|
-
lifecycle: "preview-dev",
|
|
87
|
-
namingStatus: "canonical",
|
|
88
|
-
objective: "Give browser operators one predictable console namespace that can emit synthetic telemetry and, when needed in preview or local diagnostics, request one intentional host-loaded MF boundary crash.",
|
|
89
|
-
ownerProject: "@m4l/gclick_host",
|
|
90
|
-
property: "__m4lObservabilitySmoke",
|
|
91
|
-
purpose: "Expose browser-console observability smoke helpers for host, preview, and isolation validation.",
|
|
92
|
-
stability: "operator-facing"
|
|
93
|
-
}), m = r({
|
|
94
|
-
active: !0,
|
|
95
|
-
cleanup: "on-unmount",
|
|
96
|
-
codeRefs: [
|
|
97
|
-
"apps/gclick/gclick_host/src/layouts/PlatformLayout/dev/installPlatformAlarmSmokeTools.ts"
|
|
98
|
-
],
|
|
99
|
-
docsPath: "apps/gclick/gclick_host/README.md",
|
|
100
|
-
id: "host.alarm-smoke-tools",
|
|
101
|
-
introducedOn: "2026-06-17",
|
|
102
|
-
kind: "window-tool",
|
|
103
|
-
lifecycle: "preview-dev",
|
|
104
|
-
namingStatus: "canonical",
|
|
105
|
-
objective: "Provide one operator-facing bridge for emitting synthetic rt_alarms traffic while keeping the cleanup contract tied to the host shell lifecycle.",
|
|
106
|
-
ownerProject: "@m4l/gclick_host",
|
|
107
|
-
property: "__m4lHostAlarmSmoke",
|
|
108
|
-
purpose: "Publish host alarm smoke helpers for manual badge and websocket validation.",
|
|
109
|
-
stability: "operator-facing"
|
|
110
|
-
}), u = t({
|
|
111
|
-
active: !0,
|
|
112
|
-
cleanup: "none",
|
|
113
|
-
codeRefs: [
|
|
114
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/App/features/map-surface/clusterPolicy/DeviceClusterPolicyController/helpers.ts"
|
|
115
|
-
],
|
|
116
|
-
id: "gps-devices.cluster-policy-debug",
|
|
117
|
-
introducedOn: "2026-05-04",
|
|
118
|
-
kind: "global-registry",
|
|
119
|
-
lifecycle: "preview-dev",
|
|
120
|
-
namingStatus: "canonical",
|
|
121
|
-
objective: "Explain the effective clustering mode from the live browser session without reverse-engineering the viewport heuristics after the fact.",
|
|
122
|
-
ownerProject: "@m4l/operative_my_gps_devices",
|
|
123
|
-
property: "__M4L_GPS_DEVICES_CLUSTER_POLICY__",
|
|
124
|
-
purpose: "Publish the latest device-cluster policy snapshot for browser debugging and probes.",
|
|
125
|
-
stability: "internal"
|
|
126
|
-
}), b = t({
|
|
127
|
-
active: !0,
|
|
128
|
-
cleanup: "manual",
|
|
129
|
-
codeRefs: [
|
|
130
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/App/features/map-surface/MapContent/helpers/viewportTrace.ts"
|
|
131
|
-
],
|
|
132
|
-
docsPath: "apps/gclick/mfs/operative/operative_my_gps_devices/docs/07-observability-and-debugging.md",
|
|
133
|
-
id: "gps-devices.viewport-trace",
|
|
134
|
-
introducedOn: "2026-05-20",
|
|
135
|
-
kind: "global-registry",
|
|
136
|
-
lifecycle: "preview-dev",
|
|
137
|
-
namingStatus: "canonical",
|
|
138
|
-
objective: "Keep one bounded browser-readable trace buffer so viewport follow decisions can be inspected after the interaction that produced them.",
|
|
139
|
-
ownerProject: "@m4l/operative_my_gps_devices",
|
|
140
|
-
property: "__M4L_GPS_DEVICES_VIEWPORT_TRACE__",
|
|
141
|
-
purpose: "Store the current viewport trace buffer for manual debugging and browser probes.",
|
|
142
|
-
stability: "internal"
|
|
143
|
-
}), g = t({
|
|
144
|
-
active: !0,
|
|
145
|
-
cleanup: "manual",
|
|
146
|
-
codeRefs: [
|
|
147
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/App/features/map-surface/MapContent/helpers/viewportTrace.ts"
|
|
148
|
-
],
|
|
149
|
-
docsPath: "apps/gclick/mfs/operative/operative_my_gps_devices/docs/07-observability-and-debugging.md",
|
|
150
|
-
id: "gps-devices.viewport-trace-enabled",
|
|
151
|
-
introducedOn: "2026-05-20",
|
|
152
|
-
kind: "global-registry",
|
|
153
|
-
lifecycle: "preview-dev",
|
|
154
|
-
namingStatus: "canonical",
|
|
155
|
-
objective: "Allow narrow browser sessions to opt into viewport-trace publication without paying the cost or noise in every runtime by default.",
|
|
156
|
-
ownerProject: "@m4l/operative_my_gps_devices",
|
|
157
|
-
property: "__M4L_GPS_DEVICES_VIEWPORT_TRACE_ENABLED__",
|
|
158
|
-
purpose: "Toggle viewport trace publication for the current browser session.",
|
|
159
|
-
stability: "internal"
|
|
160
|
-
}), v = t({
|
|
161
|
-
active: !0,
|
|
162
|
-
cleanup: "manual",
|
|
163
|
-
codeRefs: [
|
|
164
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/App/features/device-panel/hydration/testDriver.ts"
|
|
165
|
-
],
|
|
166
|
-
id: "gps-devices.device-panel-hydration-driver",
|
|
167
|
-
introducedOn: "2026-05-28",
|
|
168
|
-
kind: "test-driver",
|
|
169
|
-
lifecycle: "test-only",
|
|
170
|
-
namingStatus: "canonical",
|
|
171
|
-
objective: "Let deterministic browser contracts force hydration edge cases without mutating the production store or backend contracts.",
|
|
172
|
-
ownerProject: "@m4l/operative_my_gps_devices",
|
|
173
|
-
property: "__M4L_TEST_DEVICE_PANEL_HYDRATION_DRIVER__",
|
|
174
|
-
purpose: "Expose the device-panel hydration test driver for deterministic browser tests.",
|
|
175
|
-
stability: "test-only"
|
|
176
|
-
}), y = t({
|
|
177
|
-
active: !0,
|
|
178
|
-
cleanup: "manual",
|
|
179
|
-
codeRefs: [
|
|
180
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices/src/components/App/features/markers/DeviceMarker/helpers/browserVisibilityLifecycle.helpers.ts"
|
|
181
|
-
],
|
|
182
|
-
id: "gps-devices.document-visibility-driver",
|
|
183
|
-
introducedOn: "2026-04-29",
|
|
184
|
-
kind: "test-driver",
|
|
185
|
-
lifecycle: "test-only",
|
|
186
|
-
namingStatus: "canonical",
|
|
187
|
-
objective: "Drive hidden-tab resume behavior deterministically in browser probes where headless Chromium cannot guarantee the real background-tab lifecycle.",
|
|
188
|
-
ownerProject: "@m4l/operative_my_gps_devices",
|
|
189
|
-
property: "__M4L_TEST_DOCUMENT_VISIBILITY_DRIVER__",
|
|
190
|
-
purpose: "Expose the document-visibility test driver for deterministic lifecycle tests.",
|
|
191
|
-
stability: "test-only"
|
|
192
|
-
}), _ = t({
|
|
193
|
-
active: !0,
|
|
194
|
-
cleanup: "manual",
|
|
195
|
-
codeRefs: [
|
|
196
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices-e2e/src/realtimeProbe/hiddenTabResume/collectHiddenTabResumeProbeReport.ts"
|
|
197
|
-
],
|
|
198
|
-
docsPath: "apps/gclick/mfs/operative/operative_my_gps_devices-e2e/README.md",
|
|
199
|
-
id: "gps-devices.hidden-tab-visibility-shim",
|
|
200
|
-
introducedOn: "2026-05-01",
|
|
201
|
-
kind: "test-driver",
|
|
202
|
-
lifecycle: "test-only",
|
|
203
|
-
namingStatus: "canonical",
|
|
204
|
-
objective: "Wrap the product-owned document visibility driver behind one stable probe-local shim so hidden-tab resume probes can drive lifecycle transitions without duplicating browser-specific logic in every step.",
|
|
205
|
-
ownerProject: "@m4l/operative_my_gps_devices-e2e",
|
|
206
|
-
property: "__M4L_TEST_VISIBILITY_SHIM__",
|
|
207
|
-
purpose: "Expose the hidden-tab resume visibility shim for deterministic Playwright probes.",
|
|
208
|
-
stability: "test-only"
|
|
209
|
-
}), h = t({
|
|
210
|
-
active: !0,
|
|
211
|
-
cleanup: "manual",
|
|
212
|
-
codeRefs: [
|
|
213
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices-e2e/src/realtimeProbe/hiddenTabResume/collectHiddenTabResumeProbeReport.ts"
|
|
214
|
-
],
|
|
215
|
-
docsPath: "apps/gclick/mfs/operative/operative_my_gps_devices-e2e/README.md",
|
|
216
|
-
id: "gps-devices.hidden-tab-dummy-playback-shim",
|
|
217
|
-
introducedOn: "2026-05-01",
|
|
218
|
-
kind: "test-driver",
|
|
219
|
-
lifecycle: "test-only",
|
|
220
|
-
namingStatus: "canonical",
|
|
221
|
-
objective: "Wrap the shared dummy playback driver behind one probe-local seam so hidden-tab resume contracts can pause and resume emissions without coupling every probe step to the underlying runtime implementation.",
|
|
222
|
-
ownerProject: "@m4l/operative_my_gps_devices-e2e",
|
|
223
|
-
property: "__M4L_TEST_DUMMY_PLAYBACK_SHIM__",
|
|
224
|
-
purpose: "Expose the hidden-tab resume dummy playback shim for deterministic Playwright probes.",
|
|
225
|
-
stability: "test-only"
|
|
226
|
-
}), f = t({
|
|
227
|
-
active: !0,
|
|
228
|
-
cleanup: "manual",
|
|
229
|
-
codeRefs: [
|
|
230
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices-e2e/src/realtimeProbe/nonSelectedViewportGate/runNonSelectedViewportGateProbe.ts"
|
|
231
|
-
],
|
|
232
|
-
docsPath: "apps/gclick/mfs/operative/operative_my_gps_devices-e2e/README.md",
|
|
233
|
-
id: "gps-devices.non-selected-viewport-gate-zoom-settle",
|
|
234
|
-
introducedOn: "2026-05-01",
|
|
235
|
-
kind: "global-registry",
|
|
236
|
-
lifecycle: "test-only",
|
|
237
|
-
namingStatus: "canonical",
|
|
238
|
-
objective: "Persist the short-lived zoom-settlement clock across repeated browser polling calls so the deep viewport-gate probe can prove a stable ring transition after standalone bootstrap normalization.",
|
|
239
|
-
ownerProject: "@m4l/operative_my_gps_devices-e2e",
|
|
240
|
-
property: "__M4L_NON_SELECTED_VIEWPORT_GATE_ZOOM_SETTLE__",
|
|
241
|
-
purpose: "Store the non-selected viewport-gate probe zoom settlement state for the current browser session.",
|
|
242
|
-
stability: "test-only"
|
|
243
|
-
}), w = t({
|
|
244
|
-
active: !0,
|
|
245
|
-
cleanup: "manual",
|
|
246
|
-
codeRefs: [
|
|
247
|
-
"apps/gclick/mfs/operative/operative_my_gps_devices-e2e/src/realtimeProbe/sparseRotation/collectSparseRotationProbeReport.ts"
|
|
248
|
-
],
|
|
249
|
-
docsPath: "apps/gclick/mfs/operative/operative_my_gps_devices-e2e/README.md",
|
|
250
|
-
id: "gps-devices.sparse-rotation-stationary-wait",
|
|
251
|
-
introducedOn: "2026-05-16",
|
|
252
|
-
kind: "global-registry",
|
|
253
|
-
lifecycle: "test-only",
|
|
254
|
-
namingStatus: "canonical",
|
|
255
|
-
objective: "Persist the stationary-window sampling state across browser polling cycles so the sparse-rotation probe can detect the deterministic pause window without leaking that bookkeeping into product runtime code.",
|
|
256
|
-
ownerProject: "@m4l/operative_my_gps_devices-e2e",
|
|
257
|
-
property: "__M4L_SPARSE_ROTATION_STATIONARY_WAIT__",
|
|
258
|
-
purpose: "Store the sparse-rotation stationary wait state for the current browser session.",
|
|
259
|
-
stability: "test-only"
|
|
260
|
-
}), k = t({
|
|
261
|
-
active: !0,
|
|
262
|
-
cleanup: "manual",
|
|
263
|
-
codeRefs: [
|
|
264
|
-
"packages/gclick-realtime/src/dummy/runtime/dummy.ts"
|
|
265
|
-
],
|
|
266
|
-
id: "gclick-realtime.dummy-playback-driver",
|
|
267
|
-
introducedOn: "2026-02-19",
|
|
268
|
-
kind: "test-driver",
|
|
269
|
-
lifecycle: "test-only",
|
|
270
|
-
namingStatus: "canonical",
|
|
271
|
-
objective: "Provide a deterministic browser-global seam for pausing and resuming dummy playback while leaving the runtime implementation itself bundle-local.",
|
|
272
|
-
ownerProject: "@m4l/gclick-realtime",
|
|
273
|
-
property: "__M4L_TEST_DUMMY_PLAYBACK_DRIVER__",
|
|
274
|
-
purpose: "Expose the dummy realtime playback driver for deterministic browser probes and tests.",
|
|
275
|
-
stability: "test-only"
|
|
276
|
-
}), E = r({
|
|
277
|
-
active: !0,
|
|
278
|
-
cleanup: "none",
|
|
279
|
-
codeRefs: [
|
|
280
|
-
"packages/gclick/src/components/maps/components/GpsMap/subcomponents/TileLayers/subcomponents/TileLayerGoogle/googleMapsLoader.ts"
|
|
281
|
-
],
|
|
282
|
-
id: "gclick.google-maps-loader-state",
|
|
283
|
-
introducedOn: "2026-05-15",
|
|
284
|
-
kind: "global-registry",
|
|
285
|
-
lifecycle: "production",
|
|
286
|
-
namingException: "Legacy Google Maps loader state predates the canonical global-registry naming shape and still uses one lower-camel window key for backwards compatibility.",
|
|
287
|
-
namingStatus: "legacy-exception",
|
|
288
|
-
objective: "Coordinate one in-page Google Maps JavaScript loader promise across bundles so repeated map mounts do not race or reload the SDK.",
|
|
289
|
-
ownerProject: "@m4l/gclick",
|
|
290
|
-
property: "__m4lGoogleMapsLoaderState__",
|
|
291
|
-
purpose: "Store the shared Google Maps loader state for the current browser window.",
|
|
292
|
-
stability: "internal"
|
|
293
|
-
}), o = [
|
|
294
|
-
c,
|
|
295
|
-
l,
|
|
296
|
-
p,
|
|
297
|
-
d,
|
|
298
|
-
m,
|
|
299
|
-
u,
|
|
300
|
-
b,
|
|
301
|
-
g,
|
|
302
|
-
v,
|
|
303
|
-
y,
|
|
304
|
-
_,
|
|
305
|
-
h,
|
|
306
|
-
f,
|
|
307
|
-
w,
|
|
308
|
-
k,
|
|
309
|
-
E
|
|
310
|
-
];
|
|
311
|
-
function R(e) {
|
|
312
|
-
const s = /* @__PURE__ */ new Set(), a = /* @__PURE__ */ new Set();
|
|
313
|
-
for (const i of e) {
|
|
314
|
-
if (s.has(i.id))
|
|
315
|
-
throw new Error(`Duplicate browser runtime handle id "${i.id}".`);
|
|
316
|
-
if (s.add(i.id), a.has(i.key))
|
|
317
|
-
throw new Error(`Duplicate browser runtime handle key "${i.key}".`);
|
|
318
|
-
a.add(i.key);
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
R(o);
|
|
322
|
-
Object.freeze(
|
|
323
|
-
Object.fromEntries(
|
|
324
|
-
o.map((e) => [e.id, e])
|
|
325
|
-
)
|
|
326
|
-
);
|
|
327
|
-
Object.freeze(
|
|
328
|
-
Object.fromEntries(
|
|
329
|
-
o.map((e) => [e.key, e])
|
|
330
|
-
)
|
|
331
|
-
);
|
|
332
|
-
export {
|
|
333
|
-
o as browserRuntimeHandleCatalogEntries,
|
|
334
|
-
E as gclickGoogleMapsLoaderStateHandle,
|
|
335
|
-
k as gclickRealtimeDummyPlaybackDriverHandle,
|
|
336
|
-
u as gpsDevicesClusterPolicyDebugHandle,
|
|
337
|
-
v as gpsDevicesDevicePanelHydrationDriverHandle,
|
|
338
|
-
y as gpsDevicesDocumentVisibilityDriverHandle,
|
|
339
|
-
h as gpsDevicesHiddenTabDummyPlaybackShimHandle,
|
|
340
|
-
_ as gpsDevicesHiddenTabVisibilityShimHandle,
|
|
341
|
-
f as gpsDevicesNonSelectedViewportGateZoomSettleHandle,
|
|
342
|
-
w as gpsDevicesSparseRotationStationaryWaitHandle,
|
|
343
|
-
g as gpsDevicesViewportTraceEnabledHandle,
|
|
344
|
-
b as gpsDevicesViewportTraceHandle,
|
|
345
|
-
m as hostAlarmSmokeToolsHandle,
|
|
346
|
-
c as layoutsMfRuntimeErrorsHandle,
|
|
347
|
-
d as observabilitySmokeToolsHandle,
|
|
348
|
-
p as realtimePerformanceDebugHandle,
|
|
349
|
-
l as realtimeRuntimeRegistryHandle
|
|
350
|
-
};
|