@vuu-ui/vuu-data-types 0.8.54 → 0.8.56
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/index.d.ts +5 -2
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -339,6 +339,7 @@ export type DataSourceEvents = {
|
|
|
339
339
|
optimize: (optimize: OptimizeStrategy) => void;
|
|
340
340
|
range: (range: VuuRange) => void;
|
|
341
341
|
resize: (size: number) => void;
|
|
342
|
+
"subscription-open": (subscription: DataSourceSubscribedMessage) => void;
|
|
342
343
|
};
|
|
343
344
|
|
|
344
345
|
/**
|
|
@@ -485,8 +486,10 @@ export interface DataSource
|
|
|
485
486
|
visualLink?: LinkDescriptorWithLabel;
|
|
486
487
|
}
|
|
487
488
|
|
|
488
|
-
export interface MenuRpcResponse
|
|
489
|
-
|
|
489
|
+
export interface MenuRpcResponse<
|
|
490
|
+
TAction extends MenuRpcAction = MenuRpcAction
|
|
491
|
+
> {
|
|
492
|
+
action: TAction;
|
|
490
493
|
error?: string;
|
|
491
494
|
requestId: string;
|
|
492
495
|
rpcName?: string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.56",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "0.8.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "0.8.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "0.8.56",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "0.8.56"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|