@vuu-ui/vuu-data-types 2.1.11 → 2.1.13
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 +13 -0
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -303,6 +303,12 @@ export interface DataSourceSortMessage extends MessageWithClientViewportId {
|
|
|
303
303
|
sort: VuuSort;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
+
export interface DataSourceSubscribeFailedMessage
|
|
307
|
+
extends MessageWithClientViewportId {
|
|
308
|
+
type: "subscribe-failed";
|
|
309
|
+
msg: string;
|
|
310
|
+
}
|
|
311
|
+
|
|
306
312
|
export interface DataSourceSubscribedMessage
|
|
307
313
|
extends MessageWithClientViewportId {
|
|
308
314
|
aggregations: VuuAggregation[];
|
|
@@ -361,6 +367,7 @@ export declare type DataSourceCallbackMessage =
|
|
|
361
367
|
| DataSourceUnfrozenMessage
|
|
362
368
|
| DataSourceMenusMessage
|
|
363
369
|
| DataSourceSubscribedMessage
|
|
370
|
+
| DataSourceSubscribeFailedMessage
|
|
364
371
|
| DataSourceVisualLinkCreatedMessage
|
|
365
372
|
| DataSourceVisualLinkRemovedMessage
|
|
366
373
|
| DataSourceVisualLinksMessage
|
|
@@ -437,6 +444,12 @@ export interface DataSourceConstructorProps
|
|
|
437
444
|
*/
|
|
438
445
|
autosubscribeColumns?: string[];
|
|
439
446
|
bufferSize?: number;
|
|
447
|
+
/**
|
|
448
|
+
* For datasources that support edit sessions, some services support an additional
|
|
449
|
+
* column on session tables that will be used to return status information for a row
|
|
450
|
+
* after an edit session is saved. Default is no additional column.
|
|
451
|
+
*/
|
|
452
|
+
sessionTableMessageColumn?: string;
|
|
440
453
|
suspenseProps?: DataSourceSuspenseProps;
|
|
441
454
|
table: VuuTable;
|
|
442
455
|
title?: string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuu-ui/vuu-data-types",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.13",
|
|
4
4
|
"author": "heswell",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@vuu-ui/vuu-filter-types": "2.1.
|
|
8
|
-
"@vuu-ui/vuu-protocol-types": "2.1.
|
|
7
|
+
"@vuu-ui/vuu-filter-types": "2.1.13",
|
|
8
|
+
"@vuu-ui/vuu-protocol-types": "2.1.13"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"peerDependencies": {},
|