@xuda.io/runtime-bundle 1.0.1233 → 1.0.1235
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/js/xuda-runtime-bundle.js +3 -0
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -0
- package/js/xuda-runtime-slim.min.es.js +3 -0
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +3 -0
- package/js/xuda-worker-bundle.js +3 -0
- package/js/xuda-worker-bundle.min.js +1 -1
- package/js/xuda_common-bundle.js +3 -0
- package/js/xuda_common-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -24558,6 +24558,9 @@ func.common.perform_rpi_request = async function (SESSION_ID, serviceP, opt = {}
|
|
|
24558
24558
|
if (_session.engine_mode === 'live_preview') {
|
|
24559
24559
|
throw new Error('live_preview');
|
|
24560
24560
|
}
|
|
24561
|
+
if (_session.engine_mode === 'miniapp') {
|
|
24562
|
+
throw new Error('miniapp');
|
|
24563
|
+
}
|
|
24561
24564
|
|
|
24562
24565
|
if (SESSION_OBJ?.[SESSION_ID]?.rpi_http_methods?.includes(serviceP)) {
|
|
24563
24566
|
const ret = await func.common.get_data_from_websocket(SESSION_ID, serviceP, data);
|