ableton-js 2.1.6 → 2.1.7
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 +6 -0
- package/midi-script/Internal.py +1 -1
- package/ns/song.d.ts +29 -29
- package/package.json +1 -1
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
|
+
#### [v2.1.7](https://github.com/leolabs/ableton.js/compare/v2.1.6...v2.1.7)
|
|
8
|
+
|
|
9
|
+
- :label: Improve types for Ableton's song namespace [`05d24fa`](https://github.com/leolabs/ableton.js/commit/05d24fa28512d206e3eee8d83ecdbfd2f77e4dd0)
|
|
10
|
+
|
|
7
11
|
#### [v2.1.6](https://github.com/leolabs/ableton.js/compare/v2.1.5...v2.1.6)
|
|
8
12
|
|
|
13
|
+
> 30 January 2022
|
|
14
|
+
|
|
9
15
|
- :sparkles: Return the is_grouped state of tracks as well [`15d8bca`](https://github.com/leolabs/ableton.js/commit/15d8bcad49ab0c4ea5f59aa5288e9c2954f29357)
|
|
10
16
|
|
|
11
17
|
#### [v2.1.5](https://github.com/leolabs/ableton.js/compare/v2.1.4...v2.1.5)
|
package/midi-script/Internal.py
CHANGED
package/ns/song.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ import { CuePoint, RawCuePoint } from "./cue-point";
|
|
|
5
5
|
import { SongView } from "./song-view";
|
|
6
6
|
import { Scene, RawScene } from "./scene";
|
|
7
7
|
export interface GettableProperties {
|
|
8
|
-
arrangement_overdub:
|
|
8
|
+
arrangement_overdub: boolean;
|
|
9
9
|
back_to_arranger: number;
|
|
10
|
-
can_capture_midi:
|
|
11
|
-
can_jump_to_next_cue:
|
|
12
|
-
can_jump_to_prev_cue:
|
|
13
|
-
can_redo:
|
|
14
|
-
can_undo:
|
|
10
|
+
can_capture_midi: boolean;
|
|
11
|
+
can_jump_to_next_cue: boolean;
|
|
12
|
+
can_jump_to_prev_cue: boolean;
|
|
13
|
+
can_redo: boolean;
|
|
14
|
+
can_undo: boolean;
|
|
15
15
|
clip_trigger_quantization: Quantization;
|
|
16
16
|
count_in_duration: number;
|
|
17
17
|
cue_points: RawCuePoint[];
|
|
@@ -22,17 +22,17 @@ export interface GettableProperties {
|
|
|
22
22
|
is_counting_in: boolean;
|
|
23
23
|
is_playing: boolean;
|
|
24
24
|
last_event_time: number;
|
|
25
|
-
loop:
|
|
25
|
+
loop: boolean;
|
|
26
26
|
loop_length: number;
|
|
27
27
|
loop_start: number;
|
|
28
28
|
master_track: RawTrack;
|
|
29
29
|
metronome: number;
|
|
30
30
|
midi_recording_quantization: RecordingQuantization;
|
|
31
|
-
nudge_down:
|
|
32
|
-
nudge_up:
|
|
33
|
-
overdub:
|
|
34
|
-
punch_in:
|
|
35
|
-
punch_out:
|
|
31
|
+
nudge_down: boolean;
|
|
32
|
+
nudge_up: boolean;
|
|
33
|
+
overdub: boolean;
|
|
34
|
+
punch_in: boolean;
|
|
35
|
+
punch_out: boolean;
|
|
36
36
|
re_enable_automation_enabled: number;
|
|
37
37
|
record_mode: number;
|
|
38
38
|
return_tracks: RawTrack[];
|
|
@@ -60,7 +60,7 @@ export interface TransformedProperties {
|
|
|
60
60
|
scenes: Scene[];
|
|
61
61
|
}
|
|
62
62
|
export interface SettableProperties {
|
|
63
|
-
arrangement_overdub:
|
|
63
|
+
arrangement_overdub: boolean;
|
|
64
64
|
back_to_arranger: number;
|
|
65
65
|
clip_trigger_quantization: Quantization;
|
|
66
66
|
count_in_duration: number;
|
|
@@ -71,17 +71,17 @@ export interface SettableProperties {
|
|
|
71
71
|
is_counting_in: boolean;
|
|
72
72
|
is_playing: boolean;
|
|
73
73
|
last_event_time: number;
|
|
74
|
-
loop:
|
|
74
|
+
loop: boolean;
|
|
75
75
|
loop_length: number;
|
|
76
76
|
loop_start: number;
|
|
77
77
|
master_track: number;
|
|
78
78
|
metronome: number;
|
|
79
79
|
midi_recording_quantization: RecordingQuantization;
|
|
80
|
-
nudge_down:
|
|
81
|
-
nudge_up:
|
|
82
|
-
overdub:
|
|
83
|
-
punch_in:
|
|
84
|
-
punch_out:
|
|
80
|
+
nudge_down: boolean;
|
|
81
|
+
nudge_up: boolean;
|
|
82
|
+
overdub: boolean;
|
|
83
|
+
punch_in: boolean;
|
|
84
|
+
punch_out: boolean;
|
|
85
85
|
re_enable_automation_enabled: number;
|
|
86
86
|
record_mode: number;
|
|
87
87
|
return_tracks: number;
|
|
@@ -99,11 +99,11 @@ export interface SettableProperties {
|
|
|
99
99
|
visible_tracks: number;
|
|
100
100
|
}
|
|
101
101
|
export interface ObservableProperties {
|
|
102
|
-
arrangement_overdub:
|
|
102
|
+
arrangement_overdub: boolean;
|
|
103
103
|
back_to_arranger: number;
|
|
104
|
-
can_capture_midi:
|
|
105
|
-
can_jump_to_next_cue:
|
|
106
|
-
can_jump_to_prev_cue:
|
|
104
|
+
can_capture_midi: boolean;
|
|
105
|
+
can_jump_to_next_cue: boolean;
|
|
106
|
+
can_jump_to_prev_cue: boolean;
|
|
107
107
|
count_in_duration: number;
|
|
108
108
|
cue_points: number;
|
|
109
109
|
current_song_time: number;
|
|
@@ -113,14 +113,14 @@ export interface ObservableProperties {
|
|
|
113
113
|
is_counting_in: boolean;
|
|
114
114
|
is_playing: boolean;
|
|
115
115
|
loop_length: number;
|
|
116
|
-
loop:
|
|
116
|
+
loop: boolean;
|
|
117
117
|
loop_start: number;
|
|
118
118
|
metronome: number;
|
|
119
|
-
nudge_down:
|
|
120
|
-
nudge_up:
|
|
121
|
-
overdub:
|
|
122
|
-
punch_in:
|
|
123
|
-
punch_out:
|
|
119
|
+
nudge_down: boolean;
|
|
120
|
+
nudge_up: boolean;
|
|
121
|
+
overdub: boolean;
|
|
122
|
+
punch_in: boolean;
|
|
123
|
+
punch_out: boolean;
|
|
124
124
|
re_enable_automation_enabled: number;
|
|
125
125
|
record_mode: number;
|
|
126
126
|
return_tracks: RawTrack[];
|