@voyantjs/core 0.4.4 → 0.4.5

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/dist/links.d.ts CHANGED
@@ -114,7 +114,7 @@ export declare function generateLinkTableSql(def: LinkDefinition): LinkTableSql;
114
114
  * @example
115
115
  * ```ts
116
116
  * {
117
- * crm: { person_id: "prsn_abc" },
117
+ * crm: { person_id: "pers_abc" },
118
118
  * products: { product_id: "prod_xyz" },
119
119
  * }
120
120
  * ```
package/dist/query.d.ts CHANGED
@@ -84,7 +84,7 @@ export declare function createQueryContext(fetchers: Record<string, EntityFetche
84
84
  * pagination: { take: 50 },
85
85
  * })
86
86
  * // data[0].product === [{ id: "prod_...", ... }, ...]
87
- * // data[0].organization === { id: "orgn_...", name: "..." } | null
87
+ * // data[0].organization === { id: "org_...", name: "..." } | null
88
88
  * ```
89
89
  */
90
90
  export declare function queryGraph(ctx: QueryGraphContext, config: QueryGraphConfig): Promise<QueryGraphResult>;
package/dist/query.js CHANGED
@@ -58,7 +58,7 @@ function unique(xs) {
58
58
  * pagination: { take: 50 },
59
59
  * })
60
60
  * // data[0].product === [{ id: "prod_...", ... }, ...]
61
- * // data[0].organization === { id: "orgn_...", name: "..." } | null
61
+ * // data[0].organization === { id: "org_...", name: "..." } | null
62
62
  * ```
63
63
  */
64
64
  export async function queryGraph(ctx, config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/core",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "license": "FSL-1.1-Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {