@sudobility/music_types 0.11.21 → 0.11.23
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/CLAUDE.md +10 -1
- package/README.md +1 -1
- package/dist/index.d.ts +1352 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +23 -2
- package/dist/index.js.map +1 -1
- package/dist/platform/index.d.ts +1 -0
- package/dist/platform/index.d.ts.map +1 -1
- package/dist/platform/index.js +1 -0
- package/dist/platform/index.js.map +1 -1
- package/dist/platform/midi-input.d.ts +54 -0
- package/dist/platform/midi-input.d.ts.map +1 -0
- package/dist/platform/midi-input.js +14 -0
- package/dist/platform/midi-input.js.map +1 -0
- package/package.json +3 -3
package/CLAUDE.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# @sudobility/music_types
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **Git policy — never auto-commit or auto-push.** Leave your work in the working tree.
|
|
4
|
+
> Run `git commit`, `git push`, `gh pr create`, or `scripts/push_all.sh` **only when the user
|
|
5
|
+
> explicitly asks in that turn**. Approval for an earlier change does not carry forward, and
|
|
6
|
+
> finishing a task is not permission to commit it.
|
|
7
|
+
|
|
8
|
+
TypeScript types and Zod schemas for the Moosiac music family (music_api, music_client, music_lib, music_app).
|
|
4
9
|
|
|
5
10
|
## Tech Stack
|
|
6
11
|
|
|
@@ -45,3 +50,7 @@ Everything exports from a single sectioned `src/index.ts`:
|
|
|
45
50
|
- `music_client` — typed network client + React Query hooks
|
|
46
51
|
- `music_lib` — domain logic, adapters, store
|
|
47
52
|
- `music_app` — web app (UI/routing only)
|
|
53
|
+
|
|
54
|
+
## Git Workflow
|
|
55
|
+
|
|
56
|
+
- Do not use feature branches for code changes. Always stay on the current branch.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @sudobility/music_types
|
|
2
2
|
|
|
3
|
-
Shared TypeScript types and Zod schemas for the
|
|
3
|
+
Shared TypeScript types and Zod schemas for the Moosiac music platform: the score data model, AI generation contracts, project API payloads, and the standard API response envelope.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|