@vuu-ui/vuu-data-types 3.3.11 → 4.0.0-alpha.2
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 +2 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -458,6 +458,7 @@ export interface DataSourceConstructorProps
|
|
|
458
458
|
*/
|
|
459
459
|
autosubscribeColumns?: string[];
|
|
460
460
|
bufferSize?: number;
|
|
461
|
+
connectionId?: string;
|
|
461
462
|
/**
|
|
462
463
|
* For datasources that support edit sessions, some services support an additional
|
|
463
464
|
* column on session tables that will be used to return status information for a row
|
|
@@ -837,7 +838,7 @@ export interface ServerProxySubscribeMessage extends WithFullConfig {
|
|
|
837
838
|
// };
|
|
838
839
|
|
|
839
840
|
export declare type VuuUIMessageInConnected = {
|
|
840
|
-
sessionId: string;
|
|
841
|
+
loginResponse: VuuLoginSuccessResponse & { sessionId: string };
|
|
841
842
|
type: "connected";
|
|
842
843
|
};
|
|
843
844
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-alpha.2",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "4.0.0-alpha.2",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "4.0.0-alpha.2"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|