ableton-js 3.2.4 → 3.2.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/CHANGELOG.md CHANGED
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v3.2.5](https://github.com/leolabs/ableton.js/compare/v3.2.4...v3.2.5)
8
+
9
+ - :label: Add missing types for color_index props [`23e0edb`](https://github.com/leolabs/ableton.js/commit/23e0edb13e2972264b8748afa2bcb31a94d47348)
10
+
7
11
  #### [v3.2.4](https://github.com/leolabs/ableton.js/compare/v3.2.3...v3.2.4)
8
12
 
13
+ > 27 June 2023
14
+
9
15
  - :sparkles: Add `color_index` to the raw props of clips and tracks [`fc6f38d`](https://github.com/leolabs/ableton.js/commit/fc6f38dbcf0a2293f1cd774656a42cdd2ca6f4fc)
10
16
 
11
17
  #### [v3.2.3](https://github.com/leolabs/ableton.js/compare/v3.2.2...v3.2.3)
@@ -1 +1 @@
1
- version = "3.2.4"
1
+ version = "3.2.5"
package/ns/clip.d.ts CHANGED
@@ -138,6 +138,7 @@ export interface RawClip {
138
138
  id: string;
139
139
  name: string;
140
140
  color: number;
141
+ color_index: number;
141
142
  is_audio_clip: boolean;
142
143
  is_midi_clip: boolean;
143
144
  start_time: number;
package/ns/track.d.ts CHANGED
@@ -143,6 +143,7 @@ export interface RawTrack {
143
143
  id: string;
144
144
  name: string;
145
145
  color: number;
146
+ color_index: number;
146
147
  is_foldable: boolean;
147
148
  is_grouped: boolean;
148
149
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ableton-js",
3
- "version": "3.2.4",
3
+ "version": "3.2.5",
4
4
  "description": "Control Ableton Live from Node",
5
5
  "main": "index.js",
6
6
  "author": "Leo Bernard <admin@leolabs.org>",