@aguacerowx/react-native 0.0.52 → 0.0.54
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/LICENSE +21 -0
- package/android/src/main/cpp/satellite_ktx_jni.cpp +6 -1
- package/android/src/main/java/com/aguacerowx/reactnative/NexradRadarLayerView.java +14 -2
- package/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayer.java +121 -1
- package/android/src/main/java/com/aguacerowx/reactnative/SatelliteLayerView.java +556 -392
- package/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +77 -0
- package/index.js +1 -1
- package/ios/SatelliteLayerView.swift +517 -517
- package/ios/WeatherFrameProcessorModule.m +19 -15
- package/ios/WeatherFrameProcessorModule.swift +65 -0
- package/lib/commonjs/AguaceroContext.js +0 -4
- package/lib/commonjs/AguaceroContext.js.map +1 -1
- package/lib/commonjs/GridRenderLayer.js +62 -76
- package/lib/commonjs/GridRenderLayer.js.map +1 -1
- package/lib/commonjs/MapManager.js +110 -224
- package/lib/commonjs/MapManager.js.map +1 -1
- package/lib/commonjs/MapRegistry.js +21 -33
- package/lib/commonjs/MapRegistry.js.map +1 -1
- package/lib/commonjs/NexradRadarLayer.android.js +28 -100
- package/lib/commonjs/NexradRadarLayer.android.js.map +1 -1
- package/lib/commonjs/NexradRadarLayer.ios.js +26 -97
- package/lib/commonjs/NexradRadarLayer.ios.js.map +1 -1
- package/lib/commonjs/NexradSitesMapLayer.js +41 -61
- package/lib/commonjs/NexradSitesMapLayer.js.map +1 -1
- package/lib/commonjs/SatelliteLayer.android.js +26 -38
- package/lib/commonjs/SatelliteLayer.android.js.map +1 -1
- package/lib/commonjs/SatelliteLayer.ios.js +30 -42
- package/lib/commonjs/SatelliteLayer.ios.js.map +1 -1
- package/lib/commonjs/StyleApplicator.js +129 -175
- package/lib/commonjs/StyleApplicator.js.map +1 -1
- package/lib/commonjs/WeatherLayerManager.js +996 -1627
- package/lib/commonjs/WeatherLayerManager.js.map +1 -1
- package/lib/commonjs/aguaceroCoreDebugHooks.js +58 -130
- package/lib/commonjs/aguaceroCoreDebugHooks.js.map +1 -1
- package/lib/commonjs/aguaceroRnDebug.js +147 -287
- package/lib/commonjs/aguaceroRnDebug.js.map +1 -1
- package/lib/commonjs/cdnAuthenticatedFetch.js +104 -0
- package/lib/commonjs/cdnAuthenticatedFetch.js.map +1 -0
- package/lib/commonjs/dispatchViewManagerCommandCompat.js +51 -88
- package/lib/commonjs/dispatchViewManagerCommandCompat.js.map +1 -1
- package/lib/commonjs/gridCdnAuth.js +41 -50
- package/lib/commonjs/gridCdnAuth.js.map +1 -1
- package/lib/commonjs/index.js +51 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/nexrad/nexradAndroidController.js +851 -863
- package/lib/commonjs/nexrad/nexradAndroidController.js.map +1 -1
- package/lib/commonjs/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +62 -85
- package/lib/commonjs/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js.map +1 -1
- package/lib/commonjs/nexrad/nexradDiag.js +32 -148
- package/lib/commonjs/nexrad/nexradDiag.js.map +1 -1
- package/lib/commonjs/nexrad/nexradLevel2Keys.js +261 -0
- package/lib/commonjs/nexrad/nexradLevel2Keys.js.map +1 -0
- package/lib/commonjs/nexrad/nexradLutBuild.js +64 -111
- package/lib/commonjs/nexrad/nexradLutBuild.js.map +1 -1
- package/lib/commonjs/nexrad/nexradMapboxFrameOpts.bundled.js +136 -164
- package/lib/commonjs/nexrad/nexradMapboxFrameOpts.bundled.js.map +1 -1
- package/lib/commonjs/nexrad/nexradSdkImports.js +51 -0
- package/lib/commonjs/nexrad/nexradSdkImports.js.map +1 -0
- package/lib/commonjs/nexrad/radarArchiveCore.bundled.js +2848 -4455
- package/lib/commonjs/nexrad/radarArchiveCore.bundled.js.map +1 -1
- package/lib/commonjs/nexrad/radarDecode.worker.bundled.js +445 -648
- package/lib/commonjs/nexrad/radarDecode.worker.bundled.js.map +1 -1
- package/lib/commonjs/nexrad/radarFrameGpuMatch.bundled.js +52 -68
- package/lib/commonjs/nexrad/radarFrameGpuMatch.bundled.js.map +1 -1
- package/lib/commonjs/nexradNativeCommandIds.js +24 -0
- package/lib/commonjs/nexradNativeCommandIds.js.map +1 -0
- package/lib/commonjs/nws/NwsAlertsOverlay.android.js.map +1 -1
- package/lib/commonjs/nws/NwsAlertsOverlay.ios.js.map +1 -1
- package/lib/commonjs/nws/NwsAlertsOverlay.js +3 -3
- package/lib/commonjs/nws/NwsAlertsOverlay.js.map +1 -1
- package/lib/commonjs/nws/NwsAlertsOverlay.native.js +235 -361
- package/lib/commonjs/nws/NwsAlertsOverlay.native.js.map +1 -1
- package/lib/commonjs/nws/eventSourceRnPolyfill.js +92 -146
- package/lib/commonjs/nws/eventSourceRnPolyfill.js.map +1 -1
- package/lib/commonjs/nws/nwsAndroidConstants.js +2 -8
- package/lib/commonjs/nws/nwsAndroidConstants.js.map +1 -1
- package/lib/commonjs/satellite/satelliteAndroidController.js +122 -199
- package/lib/commonjs/satellite/satelliteAndroidController.js.map +1 -1
- package/lib/commonjs/satelliteBridgeDiag.js +3 -13
- package/lib/commonjs/satelliteBridgeDiag.js.map +1 -1
- package/lib/commonjs/satelliteRnDebug.js +160 -0
- package/lib/commonjs/satelliteRnDebug.js.map +1 -0
- package/lib/module/AguaceroContext.js +2 -7
- package/lib/module/AguaceroContext.js.map +1 -1
- package/lib/module/GridRenderLayer.js +66 -80
- package/lib/module/GridRenderLayer.js.map +1 -1
- package/lib/module/MapManager.js +125 -239
- package/lib/module/MapManager.js.map +1 -1
- package/lib/module/MapRegistry.js +21 -33
- package/lib/module/MapRegistry.js.map +1 -1
- package/lib/module/NexradRadarLayer.android.js +32 -104
- package/lib/module/NexradRadarLayer.android.js.map +1 -1
- package/lib/module/NexradRadarLayer.ios.js +30 -101
- package/lib/module/NexradRadarLayer.ios.js.map +1 -1
- package/lib/module/NexradSitesMapLayer.js +44 -63
- package/lib/module/NexradSitesMapLayer.js.map +1 -1
- package/lib/module/SatelliteLayer.android.js +32 -44
- package/lib/module/SatelliteLayer.android.js.map +1 -1
- package/lib/module/SatelliteLayer.ios.js +36 -48
- package/lib/module/SatelliteLayer.ios.js.map +1 -1
- package/lib/module/StyleApplicator.js +144 -191
- package/lib/module/StyleApplicator.js.map +1 -1
- package/lib/module/WeatherLayerManager.js +1024 -1655
- package/lib/module/WeatherLayerManager.js.map +1 -1
- package/lib/module/aguaceroCoreDebugHooks.js +59 -130
- package/lib/module/aguaceroCoreDebugHooks.js.map +1 -1
- package/lib/module/aguaceroRnDebug.js +151 -291
- package/lib/module/aguaceroRnDebug.js.map +1 -1
- package/lib/module/cdnAuthenticatedFetch.js +97 -0
- package/lib/module/cdnAuthenticatedFetch.js.map +1 -0
- package/lib/module/dispatchViewManagerCommandCompat.js +52 -90
- package/lib/module/dispatchViewManagerCommandCompat.js.map +1 -1
- package/lib/module/gridCdnAuth.js +38 -50
- package/lib/module/gridCdnAuth.js.map +1 -1
- package/lib/module/index.js +9 -6
- package/lib/module/index.js.map +1 -1
- package/lib/module/nexrad/nexradAndroidController.js +865 -876
- package/lib/module/nexrad/nexradAndroidController.js.map +1 -1
- package/lib/module/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +62 -85
- package/lib/module/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js.map +1 -1
- package/lib/module/nexrad/nexradDiag.js +31 -145
- package/lib/module/nexrad/nexradDiag.js.map +1 -1
- package/lib/module/nexrad/nexradLevel2Keys.js +245 -0
- package/lib/module/nexrad/nexradLevel2Keys.js.map +1 -0
- package/lib/module/nexrad/nexradLutBuild.js +64 -110
- package/lib/module/nexrad/nexradLutBuild.js.map +1 -1
- package/lib/module/nexrad/nexradMapboxFrameOpts.bundled.js +136 -163
- package/lib/module/nexrad/nexradMapboxFrameOpts.bundled.js.map +1 -1
- package/lib/module/nexrad/nexradSdkImports.js +4 -0
- package/lib/module/nexrad/nexradSdkImports.js.map +1 -0
- package/lib/module/nexrad/radarArchiveCore.bundled.js +2839 -4448
- package/lib/module/nexrad/radarArchiveCore.bundled.js.map +1 -1
- package/lib/module/nexrad/radarDecode.worker.bundled.js +445 -648
- package/lib/module/nexrad/radarDecode.worker.bundled.js.map +1 -1
- package/lib/module/nexrad/radarFrameGpuMatch.bundled.js +50 -66
- package/lib/module/nexrad/radarFrameGpuMatch.bundled.js.map +1 -1
- package/lib/module/nexradNativeCommandIds.js +18 -0
- package/lib/module/nexradNativeCommandIds.js.map +1 -0
- package/lib/module/nws/NwsAlertsOverlay.android.js +1 -1
- package/lib/module/nws/NwsAlertsOverlay.android.js.map +1 -1
- package/lib/module/nws/NwsAlertsOverlay.ios.js +1 -1
- package/lib/module/nws/NwsAlertsOverlay.ios.js.map +1 -1
- package/lib/module/nws/NwsAlertsOverlay.js +5 -5
- package/lib/module/nws/NwsAlertsOverlay.js.map +1 -1
- package/lib/module/nws/NwsAlertsOverlay.native.js +248 -373
- package/lib/module/nws/NwsAlertsOverlay.native.js.map +1 -1
- package/lib/module/nws/eventSourceRnPolyfill.js +92 -146
- package/lib/module/nws/eventSourceRnPolyfill.js.map +1 -1
- package/lib/module/nws/nwsAndroidConstants.js +2 -8
- package/lib/module/nws/nwsAndroidConstants.js.map +1 -1
- package/lib/module/satellite/satelliteAndroidController.js +125 -202
- package/lib/module/satellite/satelliteAndroidController.js.map +1 -1
- package/lib/module/satelliteBridgeDiag.js +3 -13
- package/lib/module/satelliteBridgeDiag.js.map +1 -1
- package/lib/module/satelliteRnDebug.js +148 -0
- package/lib/module/satelliteRnDebug.js.map +1 -0
- package/lib/typescript/AguaceroContext.d.ts +0 -4
- package/lib/typescript/AguaceroContext.d.ts.map +1 -1
- package/lib/typescript/GridRenderLayer.d.ts.map +1 -1
- package/lib/typescript/MapManager.d.ts +0 -12
- package/lib/typescript/MapManager.d.ts.map +1 -1
- package/lib/typescript/MapRegistry.d.ts +10 -12
- package/lib/typescript/MapRegistry.d.ts.map +1 -1
- package/lib/typescript/NexradRadarLayer.android.d.ts.map +1 -1
- package/lib/typescript/NexradRadarLayer.ios.d.ts.map +1 -1
- package/lib/typescript/NexradSitesMapLayer.d.ts +4 -10
- package/lib/typescript/NexradSitesMapLayer.d.ts.map +1 -1
- package/lib/typescript/SatelliteLayer.android.d.ts.map +1 -1
- package/lib/typescript/SatelliteLayer.ios.d.ts.map +1 -1
- package/lib/typescript/StyleApplicator.d.ts +1 -1
- package/lib/typescript/StyleApplicator.d.ts.map +1 -1
- package/lib/typescript/WeatherLayerManager.d.ts.map +1 -1
- package/lib/typescript/aguaceroCoreDebugHooks.d.ts +2 -9
- package/lib/typescript/aguaceroCoreDebugHooks.d.ts.map +1 -1
- package/lib/typescript/aguaceroRnDebug.d.ts +47 -66
- package/lib/typescript/aguaceroRnDebug.d.ts.map +1 -1
- package/lib/typescript/cdnAuthenticatedFetch.d.ts +10 -0
- package/lib/typescript/cdnAuthenticatedFetch.d.ts.map +1 -0
- package/lib/typescript/dispatchViewManagerCommandCompat.d.ts +1 -17
- package/lib/typescript/dispatchViewManagerCommandCompat.d.ts.map +1 -1
- package/lib/typescript/gridCdnAuth.d.ts +16 -21
- package/lib/typescript/gridCdnAuth.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +2 -0
- package/lib/typescript/nexrad/nexradAndroidController.d.ts +39 -89
- package/lib/typescript/nexrad/nexradAndroidController.d.ts.map +1 -1
- package/lib/typescript/nexrad/nexradCrossSectionSampleAtLatLon.bundled.d.ts +2 -1
- package/lib/typescript/nexrad/nexradCrossSectionSampleAtLatLon.bundled.d.ts.map +1 -1
- package/lib/typescript/nexrad/nexradDiag.d.ts +13 -101
- package/lib/typescript/nexrad/nexradDiag.d.ts.map +1 -1
- package/lib/typescript/nexrad/nexradLevel2Keys.d.ts +36 -0
- package/lib/typescript/nexrad/nexradLevel2Keys.d.ts.map +1 -0
- package/lib/typescript/nexrad/nexradLutBuild.d.ts +3 -10
- package/lib/typescript/nexrad/nexradLutBuild.d.ts.map +1 -1
- package/lib/typescript/nexrad/nexradMapboxFrameOpts.bundled.d.ts +4 -3
- package/lib/typescript/nexrad/nexradMapboxFrameOpts.bundled.d.ts.map +1 -1
- package/lib/typescript/nexrad/nexradSdkImports.d.ts +2 -0
- package/lib/typescript/nexrad/nexradSdkImports.d.ts.map +1 -0
- package/lib/typescript/nexrad/radarArchiveCore.bundled.d.ts +12 -7
- package/lib/typescript/nexrad/radarArchiveCore.bundled.d.ts.map +1 -1
- package/lib/typescript/nexrad/radarDecode.worker.bundled.d.ts +20 -20
- package/lib/typescript/nexrad/radarDecode.worker.bundled.d.ts.map +1 -1
- package/lib/typescript/nexrad/radarFrameGpuMatch.bundled.d.ts +4 -3
- package/lib/typescript/nexrad/radarFrameGpuMatch.bundled.d.ts.map +1 -1
- package/lib/typescript/nexradNativeCommandIds.d.ts +2 -0
- package/lib/typescript/nexradNativeCommandIds.d.ts.map +1 -0
- package/lib/typescript/nws/NwsAlertsOverlay.native.d.ts +6 -17
- package/lib/typescript/nws/NwsAlertsOverlay.native.d.ts.map +1 -1
- package/lib/typescript/nws/eventSourceRnPolyfill.d.ts +0 -3
- package/lib/typescript/nws/eventSourceRnPolyfill.d.ts.map +1 -1
- package/lib/typescript/nws/nwsAndroidConstants.d.ts +0 -5
- package/lib/typescript/nws/nwsAndroidConstants.d.ts.map +1 -1
- package/lib/typescript/satellite/satelliteAndroidController.d.ts +9 -47
- package/lib/typescript/satellite/satelliteAndroidController.d.ts.map +1 -1
- package/lib/typescript/satelliteBridgeDiag.d.ts +1 -5
- package/lib/typescript/satelliteBridgeDiag.d.ts.map +1 -1
- package/lib/typescript/satelliteRnDebug.d.ts +75 -0
- package/lib/typescript/satelliteRnDebug.d.ts.map +1 -0
- package/package.json +75 -74
- package/src/AguaceroContext.js +1 -7
- package/src/GridRenderLayer.js +1 -128
- package/src/MapManager.js +1 -277
- package/src/MapRegistry.js +1 -56
- package/src/NexradRadarLayer.android.js +1 -121
- package/src/NexradRadarLayer.ios.js +1 -115
- package/src/NexradSitesMapLayer.js +1 -75
- package/src/SatelliteLayer.android.js +1 -63
- package/src/SatelliteLayer.ios.js +1 -70
- package/src/StyleApplicator.js +1 -241
- package/src/WeatherLayerManager.js +1 -2025
- package/src/aguaceroCoreDebugHooks.js +1 -142
- package/src/aguaceroRnDebug.js +1 -335
- package/src/cdnAuthenticatedFetch.js +1 -0
- package/src/dispatchViewManagerCommandCompat.js +1 -100
- package/src/gridCdnAuth.js +1 -56
- package/src/index.js +1 -19
- package/src/nexrad/nexradAndroidController.js +1 -1078
- package/src/nexrad/nexradCrossSectionSampleAtLatLon.bundled.js +1 -91
- package/src/nexrad/nexradDiag.js +1 -150
- package/src/nexrad/nexradLevel2Keys.js +1 -0
- package/src/nexrad/nexradLutBuild.js +1 -126
- package/src/nexrad/nexradMapboxFrameOpts.bundled.js +1 -245
- package/src/nexrad/nexradSdkImports.js +1 -0
- package/src/nexrad/radarArchiveCore.bundled.js +1 -7085
- package/src/nexrad/radarDecode.worker.bundled.js +1 -813
- package/src/nexrad/radarFrameGpuMatch.bundled.js +1 -79
- package/src/nexradNativeCommandIds.js +1 -0
- package/src/nws/NwsAlertsOverlay.android.js +1 -1
- package/src/nws/NwsAlertsOverlay.ios.js +1 -1
- package/src/nws/NwsAlertsOverlay.js +1 -7
- package/src/nws/NwsAlertsOverlay.native.js +1 -463
- package/src/nws/eventSourceRnPolyfill.js +7 -193
- package/src/nws/nwsAndroidConstants.js +1 -8
- package/src/satellite/satelliteAndroidController.js +1 -245
- package/src/satelliteBridgeDiag.js +1 -15
- package/src/satelliteRnDebug.js +1 -0
- package/lib/commonjs/nexrad/nexradNativeCommandIds.js +0 -51
- package/lib/commonjs/nexrad/nexradNativeCommandIds.js.map +0 -1
- package/lib/module/nexrad/nexradNativeCommandIds.js +0 -44
- package/lib/module/nexrad/nexradNativeCommandIds.js.map +0 -1
- package/lib/typescript/nexrad/nexradNativeCommandIds.d.ts +0 -9
- package/lib/typescript/nexrad/nexradNativeCommandIds.d.ts.map +0 -1
- package/src/nexrad/nexradNativeCommandIds.js +0 -44
- /package/lib/commonjs/{nexrad/nexradSitesUs.json → nexradSitesUs.json} +0 -0
- /package/lib/module/{nexrad/nexradSitesUs.json → nexradSitesUs.json} +0 -0
- /package/src/{nexrad/nexradSitesUs.json → nexradSitesUs.json} +0 -0
|
@@ -1,103 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
* (filter {@code [Aguacero][NEXRAD]} and {@code [Aguacero][NEXRAD][PERF]}).
|
|
6
|
-
*
|
|
7
|
-
* Legacy pipe line-by-line bridge logs: only if {@code global.__AGUACERO_NEXRAD_PIPE_TRACE = true}.
|
|
8
|
-
*/
|
|
9
|
-
export function nexradDiagEnabled(): boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Opt-in only — line-by-line bridge logs.
|
|
12
|
-
* @param {string} tag
|
|
13
|
-
* @param {Record<string, unknown>} [detail]
|
|
14
|
-
*/
|
|
15
|
-
export function nexradPipeTrace(tag: string, detail?: Record<string, unknown>): void;
|
|
16
|
-
export function nexradDiag(phase: any, detail: any): void;
|
|
17
|
-
/**
|
|
18
|
-
* @param {string} label
|
|
19
|
-
* @returns {{ elapsedMs: () => number, end: (detail?: Record<string, unknown>) => number }}
|
|
20
|
-
*/
|
|
21
|
-
export function nexradPerfSpan(label: string): {
|
|
22
|
-
elapsedMs: () => number;
|
|
23
|
-
end: (detail?: Record<string, unknown>) => number;
|
|
24
|
-
};
|
|
25
|
-
/**
|
|
26
|
-
* @param {Record<string, unknown>} [extra]
|
|
27
|
-
*/
|
|
28
|
-
export function nexradDiagBootSnapshot(extra?: Record<string, unknown>): void;
|
|
29
|
-
/**
|
|
30
|
-
* @param {Uint8Array} gateData
|
|
31
|
-
* @param {number} nGates
|
|
32
|
-
* @param {number} nRays
|
|
33
|
-
* @param {number} valueScale
|
|
34
|
-
* @param {number} valueOffset
|
|
35
|
-
* @param {number} lutMin
|
|
36
|
-
* @param {number} lutMax
|
|
37
|
-
*/
|
|
38
|
-
export function nexradDiagGateTextureSummary(gateData: Uint8Array, nGates: number, nRays: number, valueScale: number, valueOffset: number, lutMin: number, lutMax: number): {
|
|
39
|
-
skipped: boolean;
|
|
40
|
-
error?: undefined;
|
|
41
|
-
len?: undefined;
|
|
42
|
-
expected?: undefined;
|
|
43
|
-
samples?: undefined;
|
|
44
|
-
nodataSamples?: undefined;
|
|
45
|
-
inLutSamples?: undefined;
|
|
46
|
-
minRaw?: undefined;
|
|
47
|
-
maxRaw?: undefined;
|
|
48
|
-
minPhys?: undefined;
|
|
49
|
-
maxPhys?: undefined;
|
|
50
|
-
lutMin?: undefined;
|
|
51
|
-
lutMax?: undefined;
|
|
52
|
-
valueScale?: undefined;
|
|
53
|
-
valueOffset?: undefined;
|
|
54
|
-
} | {
|
|
55
|
-
error: string;
|
|
56
|
-
skipped?: undefined;
|
|
57
|
-
len?: undefined;
|
|
58
|
-
expected?: undefined;
|
|
59
|
-
samples?: undefined;
|
|
60
|
-
nodataSamples?: undefined;
|
|
61
|
-
inLutSamples?: undefined;
|
|
62
|
-
minRaw?: undefined;
|
|
63
|
-
maxRaw?: undefined;
|
|
64
|
-
minPhys?: undefined;
|
|
65
|
-
maxPhys?: undefined;
|
|
66
|
-
lutMin?: undefined;
|
|
67
|
-
lutMax?: undefined;
|
|
68
|
-
valueScale?: undefined;
|
|
69
|
-
valueOffset?: undefined;
|
|
70
|
-
} | {
|
|
71
|
-
error: string;
|
|
72
|
-
len: number;
|
|
73
|
-
expected: number;
|
|
74
|
-
skipped?: undefined;
|
|
75
|
-
samples?: undefined;
|
|
76
|
-
nodataSamples?: undefined;
|
|
77
|
-
inLutSamples?: undefined;
|
|
78
|
-
minRaw?: undefined;
|
|
79
|
-
maxRaw?: undefined;
|
|
80
|
-
minPhys?: undefined;
|
|
81
|
-
maxPhys?: undefined;
|
|
82
|
-
lutMin?: undefined;
|
|
83
|
-
lutMax?: undefined;
|
|
84
|
-
valueScale?: undefined;
|
|
85
|
-
valueOffset?: undefined;
|
|
86
|
-
} | {
|
|
87
|
-
samples: number;
|
|
88
|
-
nodataSamples: number;
|
|
89
|
-
inLutSamples: number;
|
|
90
|
-
minRaw: number | null;
|
|
91
|
-
maxRaw: number | null;
|
|
92
|
-
minPhys: number | null;
|
|
93
|
-
maxPhys: number | null;
|
|
94
|
-
lutMin: number;
|
|
95
|
-
lutMax: number;
|
|
96
|
-
valueScale: number;
|
|
97
|
-
valueOffset: number;
|
|
98
|
-
skipped?: undefined;
|
|
99
|
-
error?: undefined;
|
|
100
|
-
len?: undefined;
|
|
101
|
-
expected?: undefined;
|
|
1
|
+
export function nexradDiagBootSnapshot(e: any): void;
|
|
2
|
+
export function nexradPipelineLog(e: any, n: any): void;
|
|
3
|
+
export function nexradPerfSpan(e: any): {
|
|
4
|
+
end(o: any): void;
|
|
102
5
|
};
|
|
6
|
+
export function nexradDiagGateTextureSummary(e: any, n: any, o: any, t: any, i: any, s: any, l: any): {
|
|
7
|
+
nGates: any;
|
|
8
|
+
nRays: any;
|
|
9
|
+
gateBytes: any;
|
|
10
|
+
valueScale: any;
|
|
11
|
+
valueOffset: any;
|
|
12
|
+
lutMin: any;
|
|
13
|
+
lutMax: any;
|
|
14
|
+
} | null;
|
|
103
15
|
//# sourceMappingURL=nexradDiag.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nexradDiag.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradDiag.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nexradDiag.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradDiag.js"],"names":[],"mappings":"AAA6M,qDAA2E;AAAA,wDAA+G;AAAA;;EAAiM;AAAA;;;;;;;;SAAuO"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export function isValidLevel2SweepObjectKey(e: any): boolean;
|
|
2
|
+
export function buildLevel2SweepObjectKey(e: any, t: any, n: any, r: any, o: any): string;
|
|
3
|
+
export function lookupClenForUnix(e: any, t: any): number | null;
|
|
4
|
+
export function listingContextParams(e: any): {
|
|
5
|
+
site: any;
|
|
6
|
+
elevNorm: any;
|
|
7
|
+
group: any;
|
|
8
|
+
radarVarU: any;
|
|
9
|
+
};
|
|
10
|
+
export function rebuildLevel2TimeToKeyMap({ stationId: e, elevNorm: t, group: n, timeToKeyMap: r, level2Clens: o, unixTimes: i }: {
|
|
11
|
+
stationId: any;
|
|
12
|
+
elevNorm: any;
|
|
13
|
+
group: any;
|
|
14
|
+
timeToKeyMap?: {} | undefined;
|
|
15
|
+
level2Clens: any;
|
|
16
|
+
unixTimes: any;
|
|
17
|
+
}): {};
|
|
18
|
+
export function mergeLevel2NexradListingEntry(e: any, t: any, n: any, r?: {}): {
|
|
19
|
+
unixTimes: any[];
|
|
20
|
+
timeToKeyMap: {};
|
|
21
|
+
level2Clens: any;
|
|
22
|
+
listWindowHours: any;
|
|
23
|
+
level2ListingEmpty: boolean;
|
|
24
|
+
};
|
|
25
|
+
export function fetchAndApplyLevel2ListingToCore(e: any, t: any, n?: {}): Promise<boolean>;
|
|
26
|
+
export function level2ListingCacheNeedsRefresh(e: any): boolean;
|
|
27
|
+
export function resolveLevel2SweepObjectKeyForFetch(e: any, t: any): string | null;
|
|
28
|
+
export function resolveLevel2ObjectKeyForFetch({ state: e, listingEntry: t, unix: n, radarVar: r, rawKey: o }: {
|
|
29
|
+
state: any;
|
|
30
|
+
listingEntry: any;
|
|
31
|
+
unix: any;
|
|
32
|
+
radarVar: any;
|
|
33
|
+
rawKey: any;
|
|
34
|
+
}): string | null;
|
|
35
|
+
export function level2ListingEmptyHint(e: any): "TDWR site: Level-II sweep lambda returned no volumes. Try a WSR-88D site (K*) such as KSHV or KTLX." | "Level-II sweep lambda returned no volumes for this site/tilt/window.";
|
|
36
|
+
//# sourceMappingURL=nexradLevel2Keys.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nexradLevel2Keys.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradLevel2Keys.js"],"names":[],"mappings":"AAAsU,6DAA0F;AAAkC,0FAAwG;AAAA,iEAA6V;AAAA;;;;;EAA8N;AAAA;;;;;;;OAA0jB;AAA+X;;;;;;EAAy/B;AAAgF,2FAA4yC;AAAA,gEAA4W;AAAA,mFAA6W;AAAA;;;;;;kBAA8c;AAAA,+NAAmO"}
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
* @param {number} lutValueMax
|
|
5
|
-
* @param {boolean} interpolateColormap
|
|
6
|
-
* @returns {{ bytes: Uint8Array, discreteIntegerLut: number }}
|
|
7
|
-
*/
|
|
8
|
-
export function buildNexradLutRgba(colormapFlat: number[] | null | undefined, lutValueMin: number, lutValueMax: number, interpolateColormap: boolean): {
|
|
9
|
-
bytes: Uint8Array;
|
|
10
|
-
discreteIntegerLut: number;
|
|
1
|
+
export function buildNexradLutRgba(t: any, o: any, u: any, n: any): {
|
|
2
|
+
bytes: Uint8Array<ArrayBuffer>;
|
|
3
|
+
discreteIntegerLut: boolean;
|
|
11
4
|
};
|
|
12
5
|
//# sourceMappingURL=nexradLutBuild.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nexradLutBuild.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradLutBuild.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nexradLutBuild.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradLutBuild.js"],"names":[],"mappings":"AAA60C;;;EAA0e"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
declare function E(e: any): {
|
|
2
2
|
geometryLayoutKey: string;
|
|
3
3
|
};
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
declare function s(e: any, r: any, t: any): string;
|
|
5
|
+
declare function c(e: any): boolean;
|
|
6
|
+
export { E as mapboxFrameUploadOptionsForNexradState, s as nexradLevel3S3ProductForSiteTilt, c as nexradLevel3UsesTiltIndexedS3Products };
|
|
6
7
|
//# sourceMappingURL=nexradMapboxFrameOpts.bundled.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nexradMapboxFrameOpts.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradMapboxFrameOpts.bundled.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nexradMapboxFrameOpts.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradMapboxFrameOpts.bundled.js"],"names":[],"mappings":"AAAk1F;;EAAggB;AAAvtB,mDAAuN;AAA7W,oCAAwD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nexradSdkImports.d.ts","sourceRoot":"","sources":["../../../src/nexrad/nexradSdkImports.js"],"names":[],"mappings":""}
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
declare function Zn(t: any, n: any, i: any, l: any, s: any, d: any): Promise<any>;
|
|
2
|
+
declare function Bt(t: any): any;
|
|
3
|
+
declare function Be(): "native" | "js-fetch";
|
|
4
|
+
declare function Nt(t: any, n?: string): any;
|
|
5
|
+
declare function rn(t: any): void;
|
|
6
|
+
declare function nn(t: any): void;
|
|
7
|
+
declare function an(t: any): void;
|
|
8
|
+
declare function on(t: any): void;
|
|
9
|
+
declare function ln(t: any): void;
|
|
10
|
+
declare function Lr(t: any, n: any): void;
|
|
11
|
+
declare function Br(t: any): void;
|
|
12
|
+
export { Zn as fetchAndParseArchive, Bt as getNexradArchiveAuthSnapshot, Be as getNexradLevel2FetchTransport, Nt as objectKeyToUrl, rn as setNexradArchiveApiKey, nn as setNexradArchiveBundleId, an as setNexradArchiveSiteOrigin, on as setNexradArchiveUserId, ln as setNexradLevel2CloudFrontFetch, Lr as setNexradSitesFetchAuth, Br as setNexradSitesJsonUrl };
|
|
8
13
|
//# sourceMappingURL=radarArchiveCore.bundled.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radarArchiveCore.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/radarArchiveCore.bundled.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"radarArchiveCore.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/radarArchiveCore.bundled.js"],"names":[],"mappings":"AAAqj3F,kFAA+gI;AAA1nwB,iCAA+iB;AAA3lB,6CAA4C;AAA21I,6CAAkL;AAA/xJ,kCAAwB;AAAA,kCAAwB;AAAA,kCAAiF;AAAA,kCAA+D;AAAY,kCAA0B;AAA/qW,0CAAiD;AAAzF,kCAAwB"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
declare function decompress(
|
|
2
|
-
declare function isZstd(
|
|
3
|
-
declare function parseObjectKey(
|
|
1
|
+
declare function decompress(t: any, e: any): any;
|
|
2
|
+
declare function isZstd(t: any): boolean;
|
|
3
|
+
declare function parseObjectKey(t: any): {
|
|
4
4
|
stationId: any;
|
|
5
5
|
} | null;
|
|
6
|
-
declare function buildRayBoundariesDeg(
|
|
7
|
-
declare function decodeRadarSlotMessage(
|
|
6
|
+
declare function buildRayBoundariesDeg(t: any): Float32Array<any>;
|
|
7
|
+
declare function decodeRadarSlotMessage(t: any): {
|
|
8
8
|
type: string;
|
|
9
9
|
requestId: any;
|
|
10
10
|
gateData: null;
|
|
@@ -38,14 +38,14 @@ declare var u8: Uint8ArrayConstructor;
|
|
|
38
38
|
declare var u16: Uint16ArrayConstructor;
|
|
39
39
|
declare var i16: Int16ArrayConstructor;
|
|
40
40
|
declare var i32: Int32ArrayConstructor;
|
|
41
|
-
declare function slc(
|
|
42
|
-
declare function fill(
|
|
43
|
-
declare function cpw(
|
|
41
|
+
declare function slc(t: any, e: any, a: any): Uint8Array<ArrayBuffer>;
|
|
42
|
+
declare function fill(t: any, e: any, a: any, n: any): any;
|
|
43
|
+
declare function cpw(t: any, e: any, a: any, n: any): Uint8Array<ArrayBufferLike> | undefined;
|
|
44
44
|
declare var ec: string[];
|
|
45
|
-
declare function err(
|
|
46
|
-
declare function rb(
|
|
47
|
-
declare function b4(
|
|
48
|
-
declare function rzfh(
|
|
45
|
+
declare function err(t: any, e: any, a: any): Error;
|
|
46
|
+
declare function rb(t: any, e: any, a: any): number;
|
|
47
|
+
declare function b4(t: any, e: any): number;
|
|
48
|
+
declare function rzfh(t: any, e: any): number | {
|
|
49
49
|
b: number;
|
|
50
50
|
y: number;
|
|
51
51
|
l: number;
|
|
@@ -57,14 +57,14 @@ declare function rzfh(dat: any, w: any): number | {
|
|
|
57
57
|
c: number;
|
|
58
58
|
m: number;
|
|
59
59
|
} | undefined;
|
|
60
|
-
declare function msb(
|
|
61
|
-
declare function rfse(
|
|
60
|
+
declare function msb(t: any): number;
|
|
61
|
+
declare function rfse(t: any, e: any, a: any): (number | {
|
|
62
62
|
b: number;
|
|
63
63
|
s: Uint8Array<ArrayBuffer>;
|
|
64
64
|
n: Uint8Array<ArrayBuffer>;
|
|
65
65
|
t: Uint16Array<ArrayBuffer>;
|
|
66
66
|
})[];
|
|
67
|
-
declare function rhu(
|
|
67
|
+
declare function rhu(t: any, e: any): any[];
|
|
68
68
|
declare var dllt: number | {
|
|
69
69
|
b: number;
|
|
70
70
|
s: Uint8Array<ArrayBuffer>;
|
|
@@ -83,14 +83,14 @@ declare var doct: number | {
|
|
|
83
83
|
n: Uint8Array<ArrayBuffer>;
|
|
84
84
|
t: Uint16Array<ArrayBuffer>;
|
|
85
85
|
};
|
|
86
|
-
declare function b2bl(
|
|
86
|
+
declare function b2bl(t: any, e: any): Int32Array<any>;
|
|
87
87
|
declare var llb: Uint8Array<ArrayBuffer>;
|
|
88
88
|
declare var llbl: Int32Array<any>;
|
|
89
89
|
declare var mlb: Uint8Array<ArrayBuffer>;
|
|
90
90
|
declare var mlbl: Int32Array<any>;
|
|
91
|
-
declare function dhu(
|
|
92
|
-
declare function dhu4(
|
|
93
|
-
declare function rzb(
|
|
94
|
-
declare function cct(
|
|
91
|
+
declare function dhu(t: any, e: any, a: any): void;
|
|
92
|
+
declare function dhu4(t: any, e: any, a: any): void;
|
|
93
|
+
declare function rzb(t: any, e: any, a: any): any;
|
|
94
|
+
declare function cct(t: any, e: any): any;
|
|
95
95
|
declare var SLOT_HDR_BYTES: number;
|
|
96
96
|
//# sourceMappingURL=radarDecode.worker.bundled.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radarDecode.worker.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/radarDecode.worker.bundled.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"radarDecode.worker.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/radarDecode.worker.bundled.js"],"names":[],"mappings":"AAAssN,iDAA8V;AAAsB,yCAAoF;AAAA;;SAAwF;AAAA,kEAAkZ;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA6yD;AAAj6S,uCAAc;AAAC,sCAAa;AAAC,wCAAe;AAAC,uCAAc;AAAC,uCAAc;AAA9E,sEAAqsN;AAArsN,2DAAqsN;AAArsN,8FAAqsN;AAA/lM,yBAAsJ;AAA5vB,oDAAqsN;AAArsN,oDAAqsN;AAArsN,4CAAqsN;AAArsN;;;;;;;;;;;cAAqsN;AAArsN,qCAAqsN;AAArsN;;;;;KAAqsN;AAArsN,4CAAqsN;AAArhH;;;;;EAA0F;AAAC;;;;;EAA6G;AAAC;;;;;EAAmE;AAA57G,uDAAqsN;AAA7qG,yCAA0F;AAAC,kCAAgB;AAAC,yCAAqG;AAAC,kCAAgB;AAA1vH,mDAAqsN;AAArsN,oDAAqsN;AAArsN,kDAAqsN;AAArsN,0CAAqsN;AAA+V,mCAAsB"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare function f(a: any): any;
|
|
2
|
+
declare function m(a: any, r: any): any;
|
|
3
|
+
declare function B(a: any): any;
|
|
4
|
+
export { f as canonicalBinsRadarFrame, m as prepareRadarFrameForGpuReadout, B as sortRadarFrameByAzimuth };
|
|
4
5
|
//# sourceMappingURL=radarFrameGpuMatch.bundled.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radarFrameGpuMatch.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/radarFrameGpuMatch.bundled.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"radarFrameGpuMatch.bundled.d.ts","sourceRoot":"","sources":["../../../src/nexrad/radarFrameGpuMatch.bundled.js"],"names":[],"mappings":"AAAkE,gCAAkoB;AAA6Z,wCAAsF;AAAnf,gCAA6Z"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nexradNativeCommandIds.d.ts","sourceRoot":"","sources":["../../src/nexradNativeCommandIds.js"],"names":[],"mappings":"AAA2L,oDAAqM"}
|
|
@@ -1,22 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
* @param {object} state - {@link AguaceroCore} state
|
|
3
|
-
* @param {object} wopt - watches/warnings options (same shape as mapsgl {@link WeatherLayerManager#configureWatchesWarnings})
|
|
4
|
-
* @returns {{ weatherLayerId: string | null, fillBelowId: string | null, lineBelowId: string }}
|
|
5
|
-
*/
|
|
6
|
-
export function resolveNwsAndroidLayerAnchors(state: object, wopt: object): {
|
|
1
|
+
export function resolveNwsAndroidLayerAnchors(l: any, t: any): {
|
|
7
2
|
weatherLayerId: string | null;
|
|
8
|
-
fillBelowId:
|
|
9
|
-
lineBelowId:
|
|
3
|
+
fillBelowId: any;
|
|
4
|
+
lineBelowId: any;
|
|
10
5
|
};
|
|
11
|
-
|
|
12
|
-
* @param {object} props
|
|
13
|
-
* @param {import('@aguacerowx/javascript-sdk').AguaceroCore} props.core
|
|
14
|
-
* @param {object} props.watchesWarnings - merged options ({ enabled, alertsBaseUrl, nwsAlertSettings, ... })
|
|
15
|
-
* @param {(payload: object) => void} [props.onNwsAlertClick]
|
|
16
|
-
*/
|
|
17
|
-
export default function NwsAlertsOverlay({ core, watchesWarnings, onNwsAlertClick }: {
|
|
6
|
+
export default function le({ core: l, watchesWarnings: t, onNwsAlertClick: a }: {
|
|
18
7
|
core: any;
|
|
19
|
-
watchesWarnings:
|
|
20
|
-
onNwsAlertClick
|
|
8
|
+
watchesWarnings: any;
|
|
9
|
+
onNwsAlertClick: any;
|
|
21
10
|
}): any;
|
|
22
11
|
//# sourceMappingURL=NwsAlertsOverlay.native.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NwsAlertsOverlay.native.d.ts","sourceRoot":"","sources":["../../../src/nws/NwsAlertsOverlay.native.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NwsAlertsOverlay.native.d.ts","sourceRoot":"","sources":["../../../src/nws/NwsAlertsOverlay.native.js"],"names":[],"mappings":"AAA2tF;;;;EAA8X;AAAA;;;;QAAq/H"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventSourceRnPolyfill.d.ts","sourceRoot":"","sources":["../../../src/nws/eventSourceRnPolyfill.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eventSourceRnPolyfill.d.ts","sourceRoot":"","sources":["../../../src/nws/eventSourceRnPolyfill.js"],"names":[],"mappings":"AAM6zB,qDAAqG"}
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Stable Mapbox custom layer id for Android {@link NexradRadarLayerView} — must match Java
|
|
3
|
-
* {@code NexradRadarLayerView.NEXRAD_LAYER_ID} so NWS alert fill can anchor under radar like mapsgl.
|
|
4
|
-
*/
|
|
5
1
|
export const AGUACERO_NEXRAD_MAP_LAYER_ID: "aguacero-nexrad-custom-layer";
|
|
6
|
-
/** Must match {@link AguaceroStyleLayerIds#SATELLITE_CUSTOM_LAYER} and mapsgl default satellite layer id. */
|
|
7
2
|
export const AGUACERO_SATELLITE_MAP_LAYER_ID: "aguacero-satellite-layer";
|
|
8
3
|
//# sourceMappingURL=nwsAndroidConstants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nwsAndroidConstants.d.ts","sourceRoot":"","sources":["../../../src/nws/nwsAndroidConstants.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"nwsAndroidConstants.d.ts","sourceRoot":"","sources":["../../../src/nws/nwsAndroidConstants.js"],"names":[],"mappings":"AAAa,2CAA6B,8BAA8B,CAAA;AAAC,8CAAgC,0BAA0B,CAAA"}
|
|
@@ -1,58 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
* @param {{ unix: number; url: string; shaderFileName: string }[]} frames
|
|
4
|
-
* @param {number | null} targetUnix
|
|
5
|
-
*/
|
|
6
|
-
export function sortFramesByTargetProximity(frames: {
|
|
7
|
-
unix: number;
|
|
8
|
-
url: string;
|
|
9
|
-
shaderFileName: string;
|
|
10
|
-
}[], targetUnix: number | null): {
|
|
11
|
-
unix: number;
|
|
12
|
-
url: string;
|
|
13
|
-
shaderFileName: string;
|
|
14
|
-
}[];
|
|
15
|
-
/**
|
|
16
|
-
* @param {import('@aguacerowx/javascript-sdk').AguaceroCoreState} state
|
|
17
|
-
* @param {number} satelliteTimestamp
|
|
18
|
-
*/
|
|
19
|
-
export function buildSatelliteFetchParts(state: any, satelliteTimestamp: number): {
|
|
1
|
+
export function sortFramesByTargetProximity(r: any, e: any): any;
|
|
2
|
+
export function buildSatelliteFetchParts(r: any, e: any): {
|
|
20
3
|
url: string;
|
|
21
4
|
shaderFileName: any;
|
|
22
5
|
frameKey: number;
|
|
23
6
|
apiKey: any;
|
|
24
7
|
} | null;
|
|
25
8
|
export class SatelliteAndroidController {
|
|
26
|
-
|
|
27
|
-
* @param {import('@aguacerowx/javascript-sdk').AguaceroCore} core
|
|
28
|
-
* @param {React.RefObject<{ syncSatellite?: (json: string) => void; clearSatellite?: () => void; activateSatelliteCachedUnix?: (unix: number) => void; updateSatelliteStyle?: (json: string) => void }>} satelliteLayerRef
|
|
29
|
-
*/
|
|
30
|
-
constructor(core: any, satelliteLayerRef: React.RefObject<{
|
|
31
|
-
syncSatellite?: (json: string) => void;
|
|
32
|
-
clearSatellite?: () => void;
|
|
33
|
-
activateSatelliteCachedUnix?: (unix: number) => void;
|
|
34
|
-
updateSatelliteStyle?: (json: string) => void;
|
|
35
|
-
}>);
|
|
9
|
+
constructor(e: any, n: any);
|
|
36
10
|
core: any;
|
|
37
|
-
satelliteLayerRef:
|
|
38
|
-
syncSatellite?: (json: string) => void;
|
|
39
|
-
clearSatellite?: () => void;
|
|
40
|
-
activateSatelliteCachedUnix?: (unix: number) => void;
|
|
41
|
-
updateSatelliteStyle?: (json: string) => void;
|
|
42
|
-
}>;
|
|
11
|
+
satelliteLayerRef: any;
|
|
43
12
|
_destroyed: boolean;
|
|
44
|
-
/** @type {string | undefined} */
|
|
45
|
-
_cachedRunKey: string | undefined;
|
|
46
|
-
/** @type {string | undefined} */
|
|
47
|
-
_cachedTimelineSig: string | undefined;
|
|
48
|
-
/** @type {number | null | undefined} */
|
|
49
|
-
_lastTargetUnix: number | null | undefined;
|
|
50
|
-
/** @type {string | undefined} */
|
|
51
|
-
_lastStyleJson: string | undefined;
|
|
52
13
|
destroy(): void;
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
14
|
+
sync(e: any): void;
|
|
15
|
+
_cachedRunKey: any;
|
|
16
|
+
_cachedTimelineSig: any;
|
|
17
|
+
_lastTargetUnix: any;
|
|
18
|
+
_lastStyleJson: any;
|
|
57
19
|
}
|
|
58
20
|
//# sourceMappingURL=satelliteAndroidController.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"satelliteAndroidController.d.ts","sourceRoot":"","sources":["../../../src/satellite/satelliteAndroidController.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"satelliteAndroidController.d.ts","sourceRoot":"","sources":["../../../src/satellite/satelliteAndroidController.js"],"names":[],"mappings":"AAA0P,iEAAwO;AAAA;;;;;SAA4iB;AAAA;IAAwC,4BAAyL;IAAxK,UAAW;IAAC,uBAAwB;IAAC,oBAAkB;IAAiH,gBAAiM;IAAA,mBAAw3G;IAA/hB,mBAAoB;IAAC,wBAAyB;IAAC,qBAAuD;IAAC,oBAAqB;CAAoa"}
|
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
* Always-on warnings for satellite bridge debugging (Metro + many device log sinks).
|
|
3
|
-
* Filter Xcode / Metro: `sat-bridge` or `AguaceroWX`.
|
|
4
|
-
*/
|
|
5
|
-
export function satBridgeWarn(tag: any, detail: any): void;
|
|
1
|
+
export function satBridgeWarn(a: any, o: any): void;
|
|
6
2
|
//# sourceMappingURL=satelliteBridgeDiag.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"satelliteBridgeDiag.d.ts","sourceRoot":"","sources":["../../src/satelliteBridgeDiag.js"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"satelliteBridgeDiag.d.ts","sourceRoot":"","sources":["../../src/satelliteBridgeDiag.js"],"names":[],"mappings":"AAAA,oDAAwJ"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export function basisFormatLabel(t: any): any;
|
|
2
|
+
export function interpretSatelliteBlackScreenHints(t: any): string[];
|
|
3
|
+
export function auditSatelliteIntegration(t?: {}): {
|
|
4
|
+
platform: "ios" | "android" | "windows" | "macos" | "web";
|
|
5
|
+
satelliteNativeCommands: any[];
|
|
6
|
+
satelliteNativeMissing: boolean;
|
|
7
|
+
satelliteManagerError: string | null;
|
|
8
|
+
gridNativeCommands: any[];
|
|
9
|
+
satelliteRefAttached: boolean;
|
|
10
|
+
satelliteRefMethods: string[];
|
|
11
|
+
reactNativeDeviceInfo: {
|
|
12
|
+
installed: boolean;
|
|
13
|
+
bundleId: string | null;
|
|
14
|
+
hint?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
installed: boolean;
|
|
17
|
+
hint: string;
|
|
18
|
+
bundleId?: undefined;
|
|
19
|
+
};
|
|
20
|
+
mapboxNote: string;
|
|
21
|
+
nativeLibraries: string[];
|
|
22
|
+
auth: {
|
|
23
|
+
platform: "ios" | "android" | "windows" | "macos" | "web";
|
|
24
|
+
isReactNative: boolean;
|
|
25
|
+
baseGridUrl: any;
|
|
26
|
+
apiKey: {
|
|
27
|
+
present: boolean;
|
|
28
|
+
length: number;
|
|
29
|
+
trimmedLength?: undefined;
|
|
30
|
+
hasLeadingWhitespace?: undefined;
|
|
31
|
+
hasTrailingWhitespace?: undefined;
|
|
32
|
+
hasInternalWhitespace?: undefined;
|
|
33
|
+
fingerprint?: undefined;
|
|
34
|
+
looksLikePlaceholder?: undefined;
|
|
35
|
+
} | {
|
|
36
|
+
present: boolean;
|
|
37
|
+
length: number;
|
|
38
|
+
trimmedLength: number;
|
|
39
|
+
hasLeadingWhitespace: boolean;
|
|
40
|
+
hasTrailingWhitespace: boolean;
|
|
41
|
+
hasInternalWhitespace: boolean;
|
|
42
|
+
fingerprint: string;
|
|
43
|
+
looksLikePlaceholder: boolean;
|
|
44
|
+
};
|
|
45
|
+
bundleId: {
|
|
46
|
+
present: boolean;
|
|
47
|
+
value: string;
|
|
48
|
+
length: number;
|
|
49
|
+
hint?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
present: boolean;
|
|
52
|
+
hint: string;
|
|
53
|
+
value?: undefined;
|
|
54
|
+
length?: undefined;
|
|
55
|
+
};
|
|
56
|
+
gridRequestSiteOrigin: {
|
|
57
|
+
present: boolean;
|
|
58
|
+
value: string;
|
|
59
|
+
length: number;
|
|
60
|
+
hint?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
present: boolean;
|
|
63
|
+
hint: string;
|
|
64
|
+
value?: undefined;
|
|
65
|
+
length?: undefined;
|
|
66
|
+
};
|
|
67
|
+
willSendAppIdentifier: boolean;
|
|
68
|
+
willSendOriginHeaders: boolean;
|
|
69
|
+
} | undefined;
|
|
70
|
+
} | undefined;
|
|
71
|
+
export function logSatelliteSyncReport(t: any): void;
|
|
72
|
+
export function installSatelliteDiagnosticListener(): () => void;
|
|
73
|
+
export function logSatelliteNativeDiagnostic(t: any): void;
|
|
74
|
+
export const SATELLITE_DIAGNOSTIC_EVENT: "AguaceroSatelliteDiagnostic";
|
|
75
|
+
//# sourceMappingURL=satelliteRnDebug.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"satelliteRnDebug.d.ts","sourceRoot":"","sources":["../../src/satelliteRnDebug.js"],"names":[],"mappings":"AAAgf,8CAAmH;AAAA,qEAA8rD;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAi3C;AAAA,qDAA42B;AAAA,iEAAo6B;AAAA,2DAA+G;AAA3xK,yCAAwC,6BAA6B,CAAC"}
|