@olympeio/runtime-node 9.0.4 → 9.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olympeio/runtime-node",
3
- "version": "9.0.4",
3
+ "version": "9.0.5",
4
4
  "description": "Olympe Node Runtime Environment",
5
5
  "types": "types/index.d.ts",
6
6
  "dependencies": {
package/types/cloud.d.ts CHANGED
@@ -809,9 +809,10 @@ export class Query<T extends CloudObject, R extends any[]> {
809
809
  * Create a query starting from the `CloudObject` specified tag
810
810
  *
811
811
  * @param tag tag of the `CloudObject` the query is starting from
812
+ * @param source optional source of the data to answer the query
812
813
  * @return an empty Query whose starting point is defined by a single `CloudObject`
813
814
  */
814
- static from<T extends CloudObject>(tag: Tag): Query<T, Empty>;
815
+ static from<T extends CloudObject>(tag: Tag, source?: string): Query<T, Empty>;
815
816
 
816
817
  /**
817
818
  * Create a query starting from the instances of the specified model