@ukiahinsure/a2ui-react-adapter 0.1.11 → 0.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.
|
@@ -191,6 +191,11 @@ declare class A2UIClientAdapter {
|
|
|
191
191
|
getFieldValues(surfaceId: string, fields: readonly string[]): Record<string, A2UIFieldValue> | null;
|
|
192
192
|
/** Restore a private draft after a trusted processor replacement. */
|
|
193
193
|
applyFieldValues(surfaceId: string, values: Readonly<Record<string, A2UIFieldValue>>): boolean;
|
|
194
|
+
stageListRowUpdate(surfaceId: string, values: Readonly<Record<string, A2UIFieldValue>>): void;
|
|
195
|
+
beginListRowEdit(surfaceId: string, rowKey: string, values: Readonly<Record<string, A2UIFieldValue>>): void;
|
|
196
|
+
updateListRowEdit(surfaceId: string, rowKey: string, values: Readonly<Record<string, A2UIFieldValue>>): void;
|
|
197
|
+
getListRowEdit(surfaceId: string, rowKey: string): Readonly<Record<string, A2UIFieldValue>> | undefined;
|
|
198
|
+
clearListRowEdit(surfaceId: string, rowKey: string): void;
|
|
194
199
|
/**
|
|
195
200
|
* Apply one validated server envelope. Returns false for duplicates and
|
|
196
201
|
* out-of-order deliveries (the per-session `seq` guard) and for envelopes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukiahinsure/a2ui-react-adapter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Reusable MedAid A2UI client adapter: LiveKit envelope handling and official A2UI v0.9.1 React rendering behind a clean public API.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|