@inditextech/weave-store-websockets 0.3.0 → 0.3.1
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/dist/client.d.cts +5 -5
- package/dist/client.d.ts +5 -5
- package/package.json +3 -3
package/dist/client.d.cts
CHANGED
|
@@ -335,8 +335,8 @@ declare class WeaveRegisterManager {
|
|
|
335
335
|
getPlugins(): Record<string, WeavePlugin>;
|
|
336
336
|
getNodesHandlers(): Record<string, WeaveNode>;
|
|
337
337
|
getActionsHandlers(): Record<string, WeaveAction>;
|
|
338
|
-
getPlugin<T
|
|
339
|
-
getActionHandler<T
|
|
338
|
+
getPlugin<T>(pluginName: string): T;
|
|
339
|
+
getActionHandler<T>(actionName: string): T;
|
|
340
340
|
getNodeHandler(nodeType: string): WeaveNode;
|
|
341
341
|
registerPlugins(): void;
|
|
342
342
|
registerPlugin(plugin: WeavePlugin): void;
|
|
@@ -408,11 +408,11 @@ declare class Weave extends Emittery {
|
|
|
408
408
|
getInstanceRecursive(instance: Konva.Node, filterInstanceType?: string[]): Konva.Node;
|
|
409
409
|
getRegisterManager(): WeaveRegisterManager;
|
|
410
410
|
getPlugins(): Record<string, WeavePlugin>;
|
|
411
|
-
getPlugin<T
|
|
411
|
+
getPlugin<T>(pluginName: string): T;
|
|
412
412
|
getNodesHandlers(): Record<string, WeaveNode>;
|
|
413
|
-
getNodeHandler<T
|
|
413
|
+
getNodeHandler<T>(nodeType: string): T;
|
|
414
414
|
getActionsHandlers(): Record<string, WeaveAction>;
|
|
415
|
-
getActionHandler<T
|
|
415
|
+
getActionHandler<T>(actionName: string): T;
|
|
416
416
|
getStore<T extends WeaveStore>(): T;
|
|
417
417
|
registerPlugin(plugin: WeavePlugin): void;
|
|
418
418
|
registerNodeHandler(node: WeaveNode): void;
|
package/dist/client.d.ts
CHANGED
|
@@ -335,8 +335,8 @@ declare class WeaveRegisterManager {
|
|
|
335
335
|
getPlugins(): Record<string, WeavePlugin>;
|
|
336
336
|
getNodesHandlers(): Record<string, WeaveNode>;
|
|
337
337
|
getActionsHandlers(): Record<string, WeaveAction>;
|
|
338
|
-
getPlugin<T
|
|
339
|
-
getActionHandler<T
|
|
338
|
+
getPlugin<T>(pluginName: string): T;
|
|
339
|
+
getActionHandler<T>(actionName: string): T;
|
|
340
340
|
getNodeHandler(nodeType: string): WeaveNode;
|
|
341
341
|
registerPlugins(): void;
|
|
342
342
|
registerPlugin(plugin: WeavePlugin): void;
|
|
@@ -408,11 +408,11 @@ declare class Weave extends Emittery {
|
|
|
408
408
|
getInstanceRecursive(instance: Konva.Node, filterInstanceType?: string[]): Konva.Node;
|
|
409
409
|
getRegisterManager(): WeaveRegisterManager;
|
|
410
410
|
getPlugins(): Record<string, WeavePlugin>;
|
|
411
|
-
getPlugin<T
|
|
411
|
+
getPlugin<T>(pluginName: string): T;
|
|
412
412
|
getNodesHandlers(): Record<string, WeaveNode>;
|
|
413
|
-
getNodeHandler<T
|
|
413
|
+
getNodeHandler<T>(nodeType: string): T;
|
|
414
414
|
getActionsHandlers(): Record<string, WeaveAction>;
|
|
415
|
-
getActionHandler<T
|
|
415
|
+
getActionHandler<T>(actionName: string): T;
|
|
416
416
|
getStore<T extends WeaveStore>(): T;
|
|
417
417
|
registerPlugin(plugin: WeavePlugin): void;
|
|
418
418
|
registerNodeHandler(node: WeaveNode): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inditextech/weave-store-websockets",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Jesus Manuel Piñeiro Cid <jesusmpc@inditex.com>",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"version:release": "npm version $RELEASE_VERSION -m \"[npm-scripts] prepare release $RELEASE_VERSION\" --tag-version-prefix \"\""
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@inditextech/weave-sdk": "0.3.
|
|
53
|
-
"@inditextech/weave-types": "0.3.
|
|
52
|
+
"@inditextech/weave-sdk": "0.3.1",
|
|
53
|
+
"@inditextech/weave-types": "0.3.1",
|
|
54
54
|
"@syncedstore/core": "0.6.0",
|
|
55
55
|
"konva": "9.3.20",
|
|
56
56
|
"ws": "8.18.1",
|