@sonolus/core 7.13.0 → 7.13.2

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.
@@ -27,4 +27,9 @@ export type ReplayData = {
27
27
  x: number[];
28
28
  y: number[];
29
29
  };
30
+ streams?: {
31
+ id: number;
32
+ keys: number[];
33
+ values: number[];
34
+ }[];
30
35
  };
@@ -169,6 +169,11 @@ export declare const RuntimeFunction: {
169
169
  readonly StackSetPointer: "StackSetPointer";
170
170
  readonly StopLooped: "StopLooped";
171
171
  readonly StopLoopedScheduled: "StopLoopedScheduled";
172
+ readonly StreamGetNextKey: "StreamGetNextKey";
173
+ readonly StreamGetPreviousKey: "StreamGetPreviousKey";
174
+ readonly StreamGetValue: "StreamGetValue";
175
+ readonly StreamHas: "StreamHas";
176
+ readonly StreamSet: "StreamSet";
172
177
  readonly Subtract: "Subtract";
173
178
  readonly Switch: "Switch";
174
179
  readonly SwitchInteger: "SwitchInteger";
@@ -172,6 +172,11 @@ exports.RuntimeFunction = {
172
172
  StackSetPointer: 'StackSetPointer',
173
173
  StopLooped: 'StopLooped',
174
174
  StopLoopedScheduled: 'StopLoopedScheduled',
175
+ StreamGetNextKey: 'StreamGetNextKey',
176
+ StreamGetPreviousKey: 'StreamGetPreviousKey',
177
+ StreamGetValue: 'StreamGetValue',
178
+ StreamHas: 'StreamHas',
179
+ StreamSet: 'StreamSet',
175
180
  Subtract: 'Subtract',
176
181
  Switch: 'Switch',
177
182
  SwitchInteger: 'SwitchInteger',
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  exports.version = {
5
- package: '7.13.0',
6
- sonolus: '0.8.12',
5
+ package: '7.13.2',
6
+ sonolus: '0.9.0',
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sonolus/core",
3
- "version": "7.13.0",
3
+ "version": "7.13.2",
4
4
  "description": "Core library for Sonolus",
5
5
  "author": "NonSpicyBurrito",
6
6
  "repository": "github:Sonolus/sonolus-core",
@@ -20,13 +20,13 @@
20
20
  "build": "tsc -p ."
21
21
  },
22
22
  "devDependencies": {
23
- "@eslint/js": "^9.23.0",
24
- "@types/node": "^20.17.28",
25
- "eslint": "^9.23.0",
26
- "eslint-config-prettier": "^10.1.1",
23
+ "@eslint/js": "^9.27.0",
24
+ "@types/node": "^20.17.52",
25
+ "eslint": "^9.27.0",
26
+ "eslint-config-prettier": "^10.1.5",
27
27
  "prettier": "^3.5.3",
28
28
  "prettier-plugin-organize-imports": "^4.1.0",
29
- "typescript": "~5.8.2",
30
- "typescript-eslint": "^8.28.0"
29
+ "typescript": "~5.8.3",
30
+ "typescript-eslint": "^8.33.0"
31
31
  }
32
32
  }