@casual-simulation/aux-runtime 4.0.5 → 4.1.0-alpha.21993718399

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": "@casual-simulation/aux-runtime",
3
- "version": "4.0.5",
3
+ "version": "4.1.0-alpha.21993718399",
4
4
  "description": "Runtime for AUX projects",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -25,8 +25,8 @@
25
25
  "access": "public"
26
26
  },
27
27
  "dependencies": {
28
- "@casual-simulation/aux-common": "^4.0.5",
29
- "@casual-simulation/aux-records": "^4.0.5",
28
+ "@casual-simulation/aux-common": "^4.1.0-alpha.21993718399",
29
+ "@casual-simulation/aux-records": "^4.1.0-alpha.21993718399",
30
30
  "@casual-simulation/crypto": "^4.0.5",
31
31
  "@casual-simulation/engine262": "0.0.1-4de2170374e22761996e46eb1362f4496ee57f8f",
32
32
  "@casual-simulation/error-stack-parser": "^2.0.7",
@@ -34,7 +34,6 @@
34
34
  "@casual-simulation/fast-json-stable-stringify": "^4.0.5",
35
35
  "@casual-simulation/js-interpreter": "^4.0.0",
36
36
  "@casual-simulation/stacktrace": "^4.0.0",
37
- "@casual-simulation/three": "^0.140.3",
38
37
  "@sveltejs/acorn-typescript": "1.0.8",
39
38
  "@tweenjs/tween.js": "18.6.0",
40
39
  "@types/estraverse": "5.1.7",
@@ -58,6 +57,7 @@
58
57
  "rxjs": "8.0.0-alpha.14",
59
58
  "seedrandom": "3.0.5",
60
59
  "stackframe": "^1.2.0",
60
+ "three": "^0.182.0",
61
61
  "typesense": "2.0.3",
62
62
  "uuid": "10.0.0",
63
63
  "yjs": "13.6.8"
@@ -6332,7 +6332,7 @@ export function createDefaultLibrary(context) {
6332
6332
  * @docname os.listInsts
6333
6333
  * @docid os.listInsts
6334
6334
  */
6335
- function listInsts(recordName, startingInst = null, endpoint = null) {
6335
+ function listInsts(recordName, startingInst, endpoint) {
6336
6336
  let options = {};
6337
6337
  if (hasValue(endpoint)) {
6338
6338
  options.endpoint = endpoint;
@@ -6363,7 +6363,7 @@ export function createDefaultLibrary(context) {
6363
6363
  * @docname os.listInstsByMarker
6364
6364
  * @docid os.listInstsByMarker
6365
6365
  */
6366
- function listInstsByMarker(recordName, marker, startingInst = null, options = {}) {
6366
+ function listInstsByMarker(recordName, marker, startingInst, options = {}) {
6367
6367
  const task = context.createTask();
6368
6368
  const event = calcListInstsByMarker(recordName, marker, startingInst, options, task.taskId);
6369
6369
  return addAsyncAction(task, event);