@vizzly/services 0.14.4-dev-e20496d46b8f1db9142fb978a46d77efd06b995f → 0.14.4-dev-4b89f0cd6ea940aa78e1b34ea9bf994ab13a8665

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.
@@ -14,3 +14,15 @@ export declare type Result = {
14
14
  fields: Result.Field[];
15
15
  hasMoreResults?: boolean | null;
16
16
  };
17
+ /**
18
+ * Result, but with extra information baked into the
19
+ * content to determine how it should be displayed.
20
+ */
21
+ export declare type FormattedResult = {
22
+ content: {
23
+ value: any;
24
+ formattedValue: string;
25
+ }[][];
26
+ fields: Result.Field[];
27
+ hasMoreResults?: boolean | null;
28
+ };
package/package.json CHANGED
@@ -26,7 +26,7 @@
26
26
  "fix-type-alias": "tsc-alias -p tsconfig.json",
27
27
  "prepare": "yarn build"
28
28
  },
29
- "version": "0.14.4-dev-e20496d46b8f1db9142fb978a46d77efd06b995f",
29
+ "version": "0.14.4-dev-4b89f0cd6ea940aa78e1b34ea9bf994ab13a8665",
30
30
  "dependencies": {
31
31
  "@vizzly/api-client": "0.0.43",
32
32
  "@vizzly/joi": "^17.11.0",