@chauvet/connect-base-profiles 2.1.0 → 2.2.1
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/Notes.md +46 -0
- package/README.md +4 -5
- package/dist/baseProfiles.d.ts +3 -0
- package/dist/baseProfiles.js +4025 -390
- package/keys.txt +1 -0
- package/package.json +1 -1
- package/profileIds.txt +1 -0
- package/src/baseProfiles.ts +4053 -406
- package/tokens/Publish_Token.md +0 -4
package/Notes.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Profiles included:
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
50-WELL Fit,
|
|
7
|
+
auto-yes
|
|
8
|
+
|
|
9
|
+
60-WELL Fit,
|
|
10
|
+
auto-yes
|
|
11
|
+
|
|
12
|
+
150-WELL POD 2
|
|
13
|
+
auto-yes
|
|
14
|
+
|
|
15
|
+
160-WELL POD 3
|
|
16
|
+
|
|
17
|
+
250-WELL PANEL
|
|
18
|
+
|
|
19
|
+
260-WELL PANEL X
|
|
20
|
+
|
|
21
|
+
350-WELL STX180
|
|
22
|
+
|
|
23
|
+
360-WELL STX360
|
|
24
|
+
|
|
25
|
+
450-WELL BATTEN 14
|
|
26
|
+
|
|
27
|
+
800-ONAIR PANEL 1 IP
|
|
28
|
+
|
|
29
|
+
810-ONAIR PANEL 2 IP
|
|
30
|
+
|
|
31
|
+
820-ONAIR PANEL 3 IP
|
|
32
|
+
|
|
33
|
+
830-ONAIR PANEL MIN IP
|
|
34
|
+
|
|
35
|
+
1010-GENERIC RGB
|
|
36
|
+
|
|
37
|
+
1015-GENERIC RGBA
|
|
38
|
+
|
|
39
|
+
1020-GENERIC RGBW
|
|
40
|
+
|
|
41
|
+
1030-GENERIC DRGB
|
|
42
|
+
|
|
43
|
+
1050-GENERIC DRGBA
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
package/README.md
CHANGED
|
@@ -28,13 +28,13 @@ Use the appropriate command to bump the version:
|
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
# For a patch release (e.g., 1.0.0 → 1.0.1):
|
|
31
|
-
npm
|
|
31
|
+
npm run bump:patch
|
|
32
32
|
|
|
33
33
|
# For a minor release (e.g., 1.0.1 → 1.1.0):
|
|
34
|
-
npm
|
|
34
|
+
npm run bump:minor
|
|
35
35
|
|
|
36
36
|
# For a major release (e.g., 1.1.0 → 2.0.0):
|
|
37
|
-
npm
|
|
37
|
+
npm run bump:major
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
This will automatically update your package.json, create a Git commit, and tag it with the new version.
|
|
@@ -45,7 +45,6 @@ If the version command didn’t automatically push your commit and tag, do so no
|
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
47
|
git push
|
|
48
|
-
git push --tags
|
|
49
48
|
```
|
|
50
49
|
|
|
51
50
|
---
|
|
@@ -53,7 +52,7 @@ git push --tags
|
|
|
53
52
|
Finally, publish your changes. If your package is scoped and intended to be publicly available, use:
|
|
54
53
|
|
|
55
54
|
```bash
|
|
56
|
-
npm
|
|
55
|
+
npm run package
|
|
57
56
|
```
|
|
58
57
|
|
|
59
58
|
---
|
package/dist/baseProfiles.d.ts
CHANGED
|
@@ -12,9 +12,12 @@ export interface BaseProfile {
|
|
|
12
12
|
uvLocation: number;
|
|
13
13
|
dimmerLocation: number;
|
|
14
14
|
fineDimmerLocation: number;
|
|
15
|
+
dimmerSpeedMode?: any;
|
|
15
16
|
strobeLocation: number;
|
|
16
17
|
whiteMacros: Record<string, number> | null;
|
|
17
18
|
autoPrograms: any;
|
|
19
|
+
effectMacro?: any;
|
|
20
|
+
dimmerSpeedMacro?: any;
|
|
18
21
|
name: string;
|
|
19
22
|
}
|
|
20
23
|
declare const baseProfiles: Record<number, BaseProfile>;
|