@nice-code/action 0.16.0 → 0.17.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/README.md +2 -2
- package/build/{ActionDevtoolsCore-B3JwSaRH.d.cts → ActionDevtoolsCore-C5XrQI1K.d.mts} +2 -2
- package/build/{ActionDevtoolsCore-C4TDUY7-.d.mts → ActionDevtoolsCore-Dd1qJAwK.d.cts} +2 -2
- package/build/{ActionPayload.types-CO_hXlBc.d.cts → ActionPayload.types-BchJrBIX.d.mts} +468 -152
- package/build/{ActionPayload.types-fieMKAgt.d.mts → ActionPayload.types-snDlSIF-.d.cts} +468 -152
- package/build/devtools/browser/index.d.cts +1 -1
- package/build/devtools/browser/index.d.mts +1 -1
- package/build/devtools/server/index.d.cts +1 -1
- package/build/devtools/server/index.d.mts +1 -1
- package/build/index.cjs +224 -79
- package/build/index.cjs.map +1 -1
- package/build/index.d.cts +2 -2
- package/build/index.d.mts +2 -2
- package/build/index.mjs +219 -78
- package/build/index.mjs.map +1 -1
- package/build/platform/cloudflare/index.cjs +56 -0
- package/build/platform/cloudflare/index.cjs.map +1 -0
- package/build/platform/cloudflare/index.d.cts +67 -0
- package/build/platform/cloudflare/index.d.mts +67 -0
- package/build/platform/cloudflare/index.mjs +54 -0
- package/build/platform/cloudflare/index.mjs.map +1 -0
- package/build/react-query/index.d.cts +1 -1
- package/build/react-query/index.d.mts +1 -1
- package/build/wsAcceptorCarrier-CXGlQU_f.mjs +80 -0
- package/build/wsAcceptorCarrier-CXGlQU_f.mjs.map +1 -0
- package/build/wsAcceptorCarrier-DHRbsY1X.cjs +103 -0
- package/build/wsAcceptorCarrier-DHRbsY1X.cjs.map +1 -0
- package/package.json +15 -4
package/README.md
CHANGED
|
@@ -386,7 +386,7 @@ import { createHibernatableWsServerAdapter } from "@nice-code/action";
|
|
|
386
386
|
|
|
387
387
|
const wsServer = createHibernatableWsServerAdapter({
|
|
388
388
|
handler: serverHandler,
|
|
389
|
-
|
|
389
|
+
getConnections: () => ctx.getWebSockets(),
|
|
390
390
|
getAttachment: (ws) => ws.deserializeAttachment(),
|
|
391
391
|
setAttachment: (ws, binding) => ws.serializeAttachment(binding),
|
|
392
392
|
});
|
|
@@ -538,7 +538,7 @@ const serverHandler = createSecureActionServerHandler<WebSocket>({
|
|
|
538
538
|
|
|
539
539
|
const wsServer = createHibernatableWsServerAdapter({
|
|
540
540
|
handler: serverHandler,
|
|
541
|
-
|
|
541
|
+
getConnections: () => ctx.getWebSockets(),
|
|
542
542
|
getAttachment: (ws) => ws.deserializeAttachment(),
|
|
543
543
|
setAttachment: (ws, binding) => ws.serializeAttachment(binding),
|
|
544
544
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as TActionProgress,
|
|
1
|
+
import { _ as TActionProgress, jr as IRuntimeCoordinate } from "./ActionPayload.types-BchJrBIX.mjs";
|
|
2
2
|
//#region ../nice-devtools-shared/src/components/PanelChrome.d.ts
|
|
3
3
|
/** Where a devtools panel is docked. */
|
|
4
4
|
type TDevtoolsPosition = "dock-bottom" | "dock-top" | "dock-left" | "dock-right";
|
|
@@ -76,4 +76,4 @@ declare class ActionDevtoolsCore {
|
|
|
76
76
|
}
|
|
77
77
|
//#endregion
|
|
78
78
|
export { TDevtoolsActionStatus as a, IDevtoolsObservableDomain as i, IActionDevtoolsCoreOptions as n, TDevtoolsListener as o, IDevtoolsActionEntry as r, TDevtoolsPosition as s, ActionDevtoolsCore as t };
|
|
79
|
-
//# sourceMappingURL=ActionDevtoolsCore-
|
|
79
|
+
//# sourceMappingURL=ActionDevtoolsCore-C5XrQI1K.d.mts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as TActionProgress,
|
|
1
|
+
import { _ as TActionProgress, jr as IRuntimeCoordinate } from "./ActionPayload.types-snDlSIF-.cjs";
|
|
2
2
|
//#region ../nice-devtools-shared/src/components/PanelChrome.d.ts
|
|
3
3
|
/** Where a devtools panel is docked. */
|
|
4
4
|
type TDevtoolsPosition = "dock-bottom" | "dock-top" | "dock-left" | "dock-right";
|
|
@@ -76,4 +76,4 @@ declare class ActionDevtoolsCore {
|
|
|
76
76
|
}
|
|
77
77
|
//#endregion
|
|
78
78
|
export { TDevtoolsActionStatus as a, IDevtoolsObservableDomain as i, IActionDevtoolsCoreOptions as n, TDevtoolsListener as o, IDevtoolsActionEntry as r, TDevtoolsPosition as s, ActionDevtoolsCore as t };
|
|
79
|
-
//# sourceMappingURL=ActionDevtoolsCore-
|
|
79
|
+
//# sourceMappingURL=ActionDevtoolsCore-Dd1qJAwK.d.cts.map
|