@misofm/musicos 0.1.0 → 0.2.0

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/README.md CHANGED
@@ -1,9 +1,10 @@
1
1
  # @misofm/musicos
2
2
 
3
- `@misofm/musicos` is the object model. Everything Miso offers on top of it —
4
- work extensions, royalty primitives, Party, and every product-specific
5
- workflow — is platform, and lives in
6
- [`@misofm/platform`](../platform/README.md). This package holds ONLY the
3
+ `@misofm/musicos` is the object model of works. Everything Miso offers on top
4
+ of it — work extensions, royalty primitives, Party extensions, and every
5
+ product-specific workflow — is platform, and lives in
6
+ [`@misofm/platform`](../platform/README.md); the Party object model itself is
7
+ [`@misofm/partyos`](../partyos/README.md). This package holds ONLY the
7
8
  typed bindings, queries, event decoders, and PTB builders for the `musicos`
8
9
  Move package: Composition, Recording, Release, and Track.
9
10
 
@@ -56,8 +57,9 @@ freshly-published deployment.
56
57
 
57
58
  Work extensions (composition/recording/release credits, advisory ratings,
58
59
  genres, DSP links, cover art, ...), royalty primitives (royalty pools,
59
- stakes, routed stakes), Party (`partyos` and its extensions), and every
60
- other first-party Move package live in `@misofm/platform`. See
60
+ stakes, routed stakes), the Party extensions, and every other first-party
61
+ Move package live in `@misofm/platform`; the `partyos` object model has its
62
+ own package, `@misofm/partyos`. See
61
63
  [`sui-codegen.config.ts`](../../sui-codegen.config.ts) at the repo root for
62
64
  the authoritative list of Move packages and which generated tree each one
63
65
  lands in.
@@ -31,7 +31,7 @@ export declare function normalizeMisoProtocolDeployment(deployment: unknown): Mi
31
31
  /** Verified immutable deployments bundled with this SDK release. */
32
32
  export declare const MISO_DEPLOYMENTS: Readonly<{
33
33
  readonly testnet: Readonly<{
34
- readonly musicos: "0x95bb43d650fe582caba27d4ead2c3f9939c38125943f8716c5baf5af528bc671";
34
+ readonly musicos: "0x2a4f8d83bffa73a13c9cfefdc4376256d4cef4330d5f60233c082cfab9a34e68";
35
35
  }>;
36
36
  }>;
37
37
  /**
@@ -40,7 +40,7 @@ export declare const MISO_DEPLOYMENTS: Readonly<{
40
40
  */
41
41
  export declare const MISO_PROTOCOL_DEPLOYMENTS: Readonly<{
42
42
  readonly testnet: Readonly<{
43
- readonly musicos: "0x95bb43d650fe582caba27d4ead2c3f9939c38125943f8716c5baf5af528bc671";
43
+ readonly musicos: "0x2a4f8d83bffa73a13c9cfefdc4376256d4cef4330d5f60233c082cfab9a34e68";
44
44
  }>;
45
45
  }>;
46
46
  /** Resolve a verified full manifest, failing closed for unbundled networks. */
@@ -38,7 +38,7 @@ export function normalizeMisoProtocolDeployment(deployment) {
38
38
  /** Verified immutable deployments bundled with this SDK release. */
39
39
  export const MISO_DEPLOYMENTS = Object.freeze({
40
40
  testnet: Object.freeze({
41
- musicos: "0x95bb43d650fe582caba27d4ead2c3f9939c38125943f8716c5baf5af528bc671",
41
+ musicos: "0x2a4f8d83bffa73a13c9cfefdc4376256d4cef4330d5f60233c082cfab9a34e68",
42
42
  }),
43
43
  });
44
44
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misofm/musicos",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "packageManager": "bun@1.4.0",
5
5
  "description": "Typed bindings, queries, event decoders, and PTB builders for the Miso object model (Composition, Recording, Release, Track) on Sui.",
6
6
  "license": "Apache-2.0",
@@ -67,7 +67,7 @@ export function normalizeMisoProtocolDeployment(
67
67
  /** Verified immutable deployments bundled with this SDK release. */
68
68
  export const MISO_DEPLOYMENTS = Object.freeze({
69
69
  testnet: Object.freeze({
70
- musicos: "0x95bb43d650fe582caba27d4ead2c3f9939c38125943f8716c5baf5af528bc671",
70
+ musicos: "0x2a4f8d83bffa73a13c9cfefdc4376256d4cef4330d5f60233c082cfab9a34e68",
71
71
  } as const),
72
72
  } as const) satisfies Partial<
73
73
  Record<MisoNetwork, MisoDeployment>