@olympeio/runtime-node 9.5.4 → 9.6.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olympeio/runtime-node",
3
- "version": "9.5.4",
3
+ "version": "9.6.0",
4
4
  "description": "Olympe Node Runtime Environment",
5
5
  "types": "types/index.d.ts",
6
6
  "dependencies": {
@@ -8,7 +8,7 @@
8
8
  "bufferutil": "~4.0.7",
9
9
  "utf-8-validate": "~5.0.10",
10
10
  "rxjs": "7.8.1",
11
- "fastify": "~3.29.4"
11
+ "fastify": "~4.24.3"
12
12
  },
13
13
  "codeAsData": "import",
14
14
  "author": "Olympe S.A. <dev@olympe.ch>",
package/types/cloud.d.ts CHANGED
@@ -391,7 +391,7 @@ export class Transaction {
391
391
  /**
392
392
  * Create a new transaction object.
393
393
  *
394
- * @param persist if set to `true`, will persist to the data source the objects {@apilink Transaction.create} created in that transaction. (Default = `false`)
394
+ * @param persist if set to `true`, will persist to the data source the objects {@apilink Transaction.create} created in that transaction. (Default = `true`)
395
395
  */
396
396
  constructor(persist?: boolean);
397
397
 
@@ -1009,9 +1009,9 @@ export class Query<T extends CloudObject, R> {
1009
1009
  * The relation that is followed is automatically recursively followed.
1010
1010
  * All nodes that are recursively followed are part of the same step in the path defined by this graph query.
1011
1011
  *
1012
- * @param relation relation to follow recursively, specifies type and direction
1013
- * @param includeSelf if a starting node includes itself when the relation loops on itself
1014
- * @param optional whether or not the relation creates a mandatory path in the graph to be part of the result.
1012
+ * @param relation relation to follow recursively, specifies type and direction.
1013
+ * @param includeSelf if a starting node includes itself when the relation loops on itself. (default: false)
1014
+ * @param optional whether or not the relation creates a mandatory path in the graph to be part of the result. (default: false)
1015
1015
  * @return a new query object
1016
1016
  */
1017
1017
  followRecursively<D extends CloudObject>(relation: Relation<T, D>, includeSelf?: boolean, optional?: boolean): Query<D, R>;