@dnax/core 0.9.7 → 0.9.8

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/lib/schema.ts CHANGED
@@ -18,7 +18,7 @@ function buildSchema(col: Collection) {
18
18
  propertySchema[f.name] = v.array();
19
19
  }
20
20
 
21
- if (f?.type == "uuid" && f?.random?.toNumber) {
21
+ if (f?.type == "uuid") {
22
22
  propertySchema[f.name] = v.string();
23
23
  }
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {
package/types/index.ts CHANGED
@@ -306,6 +306,7 @@ export type loggerFunction = (
306
306
  action?: string;
307
307
  collection?: string;
308
308
  cleanDeep?: boolean;
309
+
309
310
  useCache?: boolean;
310
311
  method: string;
311
312
  url?: string;