@opendaw/studio-adapters 0.0.92 → 0.0.94

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.
@@ -9,12 +9,12 @@ export declare namespace MetaData {
9
9
  * @param value The value to store. Must be JSON-serializable.
10
10
  * @param origin The origin of the meta-data. Must be unique to the app.
11
11
  */
12
- const store: (target: Box<Pointers.MetaData>, value: JSONValue, origin: string) => void;
12
+ const store: (target: Box<Pointers.MetaData | Pointers>, value: JSONValue, origin: string) => void;
13
13
  /**
14
14
  * Reads the meta-data from the target box.
15
15
  * Returns a failed Attempt if no meta-data is found or the value is not deserializable.
16
16
  * @param target The box to read the meta-data from.
17
- * @param origin The origin of the meta-data. Must be unique to the app.
17
+ * @param origin The origin of the meta-data. Should be unique to the app.
18
18
  */
19
19
  const read: (target: Box<Pointers.MetaData | Pointers>, origin: string) => Nullable<JSONValue>;
20
20
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"MetaData.d.ts","sourceRoot":"","sources":["../src/MetaData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAe,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EAEH,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,MAAM,EAGN,UAAU,EAGb,MAAM,kBAAkB,CAAA;AAGzB,yBAAiB,QAAQ,CAAC;IACtB;;;;;;OAMG;IACI,MAAM,KAAK,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,SAAS,EAAE,QAAQ,MAAM,KAAG,IAgBxF,CAAA;IAED;;;;;OAKG;IACI,MAAM,IAAI,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EAAE,QAAQ,MAAM,KAAG,QAAQ,CAAC,SAAS,CAYlG,CAAA;IAED;;;;;OAKG;IACI,MAAM,KAAK,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EAAE,QAAQ,MAAM,KAAG,IAOjF,CAAA;IAED;;;;;;;OAOG;IACI,MAAM,mBAAmB,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EACzC,QAAQ,MAAM,EACd,UAAU,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,KAAG,UAgC3E,CAAA;CACJ"}
1
+ {"version":3,"file":"MetaData.d.ts","sourceRoot":"","sources":["../src/MetaData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAe,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,uBAAuB,CAAA;AAC9C,OAAO,EAEH,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,MAAM,EAGN,UAAU,EAGb,MAAM,kBAAkB,CAAA;AAGzB,yBAAiB,QAAQ,CAAC;IACtB;;;;;;OAMG;IACI,MAAM,KAAK,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EAAE,OAAO,SAAS,EAAE,QAAQ,MAAM,KAAG,IAgBnG,CAAA;IAED;;;;;OAKG;IACI,MAAM,IAAI,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EAAE,QAAQ,MAAM,KAAG,QAAQ,CAAC,SAAS,CAYlG,CAAA;IAED;;;;;OAKG;IACI,MAAM,KAAK,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EAAE,QAAQ,MAAM,KAAG,IAOjF,CAAA;IAED;;;;;;;OAOG;IACI,MAAM,mBAAmB,GAAI,QAAQ,GAAG,CAAC,QAAQ,CAAC,QAAQ,GAAG,QAAQ,CAAC,EACzC,QAAQ,MAAM,EACd,UAAU,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,KAAG,UAgC3E,CAAA;CACJ"}
package/dist/MetaData.js CHANGED
@@ -34,7 +34,7 @@ export var MetaData;
34
34
  * Reads the meta-data from the target box.
35
35
  * Returns a failed Attempt if no meta-data is found or the value is not deserializable.
36
36
  * @param target The box to read the meta-data from.
37
- * @param origin The origin of the meta-data. Must be unique to the app.
37
+ * @param origin The origin of the meta-data. Should be unique to the app.
38
38
  */
39
39
  MetaData.read = (target, origin) => {
40
40
  if (origin === "") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendaw/studio-adapters",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -23,12 +23,12 @@
23
23
  "test": "echo \"No tests to run\""
24
24
  },
25
25
  "dependencies": {
26
- "@opendaw/lib-box": "^0.0.75",
26
+ "@opendaw/lib-box": "^0.0.76",
27
27
  "@opendaw/lib-dsp": "^0.0.75",
28
- "@opendaw/lib-fusion": "^0.0.81",
28
+ "@opendaw/lib-fusion": "^0.0.82",
29
29
  "@opendaw/lib-runtime": "^0.0.71",
30
30
  "@opendaw/lib-std": "^0.0.70",
31
- "@opendaw/studio-boxes": "^0.0.79",
31
+ "@opendaw/studio-boxes": "^0.0.80",
32
32
  "@opendaw/studio-enums": "^0.0.66",
33
33
  "soundfont2": "^0.5.0"
34
34
  },
@@ -36,5 +36,5 @@
36
36
  "@opendaw/eslint-config": "^0.0.27",
37
37
  "@opendaw/typescript-config": "^0.0.29"
38
38
  },
39
- "gitHead": "b0438e95f9129841206fd2451c3def5f58fed7ac"
39
+ "gitHead": "886d53edd15f30ed9c30bcb0fa9287abd1016134"
40
40
  }