@nexart/codemode-sdk 1.10.0 → 1.10.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/README.md +2 -2
- package/dist/cjs/browser.cjs +1 -1
- package/dist/cjs/browser.js +1 -1
- package/dist/cjs/core.cjs +1 -1
- package/dist/cjs/core.js +1 -1
- package/dist/cjs/node.cjs +1 -1
- package/dist/cjs/node.js +1 -1
- package/dist/esm/browser.cjs +1 -1
- package/dist/esm/browser.js +1 -1
- package/dist/esm/core.cjs +1 -1
- package/dist/esm/core.js +1 -1
- package/dist/esm/node.cjs +1 -1
- package/dist/esm/node.js +1 -1
- package/dist/types/sdk/codemode/core-index.d.ts +1 -1
- package/dist/types/sdk/codemode/entry/browser.d.ts +1 -1
- package/dist/types/sdk/codemode/runtime.d.ts +1 -1
- package/dist/types/sdk/codemode/version.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @nexart/codemode-sdk
|
|
2
2
|
|
|
3
|
-
**Version: 1.
|
|
3
|
+
**Version: 1.10.1 (Protocol v1.2.0)**
|
|
4
4
|
|
|
5
5
|
A deterministic execution runtime for reproducible, verifiable computation.
|
|
6
6
|
|
|
@@ -471,7 +471,7 @@ The following are rejected with `[Code Mode Protocol Error]`:
|
|
|
471
471
|
|
|
472
472
|
---
|
|
473
473
|
|
|
474
|
-
## Attestation & Verification (v1.
|
|
474
|
+
## Attestation & Verification (v1.10.1)
|
|
475
475
|
|
|
476
476
|
### Verification Reason Codes
|
|
477
477
|
|
package/dist/cjs/browser.cjs
CHANGED
package/dist/cjs/browser.js
CHANGED
package/dist/cjs/core.cjs
CHANGED
|
@@ -5,7 +5,7 @@ var sha2_js = require('@noble/hashes/sha2.js');
|
|
|
5
5
|
|
|
6
6
|
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
|
7
7
|
// version.ts
|
|
8
|
-
var SDK_VERSION = "1.10.
|
|
8
|
+
var SDK_VERSION = "1.10.1";
|
|
9
9
|
var PROTOCOL_VERSION = "1.2.0";
|
|
10
10
|
var PROTOCOL_PHASE = 3;
|
|
11
11
|
|
package/dist/cjs/core.js
CHANGED
package/dist/cjs/node.cjs
CHANGED
package/dist/cjs/node.js
CHANGED
package/dist/esm/browser.cjs
CHANGED
package/dist/esm/browser.js
CHANGED
package/dist/esm/core.cjs
CHANGED
|
@@ -5,7 +5,7 @@ var sha2_js = require('@noble/hashes/sha2.js');
|
|
|
5
5
|
|
|
6
6
|
var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
|
|
7
7
|
// version.ts
|
|
8
|
-
var SDK_VERSION = "1.10.
|
|
8
|
+
var SDK_VERSION = "1.10.1";
|
|
9
9
|
var PROTOCOL_VERSION = "1.2.0";
|
|
10
10
|
var PROTOCOL_PHASE = 3;
|
|
11
11
|
|
package/dist/esm/core.js
CHANGED
package/dist/esm/node.cjs
CHANGED
package/dist/esm/node.js
CHANGED
|
@@ -21,7 +21,7 @@ export { toCanonicalJson } from './canonicalJson.js';
|
|
|
21
21
|
/**
|
|
22
22
|
* SDK Identity — imported from version.ts (single source of truth)
|
|
23
23
|
*/
|
|
24
|
-
export declare const SDK_VERSION = "1.10.
|
|
24
|
+
export declare const SDK_VERSION = "1.10.1";
|
|
25
25
|
export declare const SDK_NAME = "@nexart/codemode-sdk";
|
|
26
26
|
export { PROTOCOL_VERSION, PROTOCOL_PHASE };
|
|
27
27
|
export { ReasonCode } from './cerProtocol';
|
|
@@ -28,7 +28,7 @@ export { createRuntime, NexArtRuntime, RUNTIME_VERSION, } from '../runtime';
|
|
|
28
28
|
export type { RuntimeOptions, RuntimeState, NexArtRuntime as NexArtRuntimeType, } from '../runtime';
|
|
29
29
|
export { renderSoundArtViaCodeMode, canRenderViaCodeMode, getCodeModeAvailableStyles, } from '../soundart-engine';
|
|
30
30
|
export type { TweakParams, SoundArtEngineConfig, SoundArtRenderOptions, SoundArtRenderResult, SoundArtMetadata, SoundSnapshot, SoundFeatures, SoundArtSketchName, } from '../soundart-engine';
|
|
31
|
-
export declare const SDK_VERSION = "1.10.
|
|
31
|
+
export declare const SDK_VERSION = "1.10.1";
|
|
32
32
|
export declare const SDK_NAME = "@nexart/codemode-sdk";
|
|
33
33
|
export declare const SDK_ENTRY = "browser";
|
|
34
34
|
/**
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* ║ BROWSER-SAFE: No Node.js dependencies. Works in Vite/Next/React. ║
|
|
19
19
|
* ╚══════════════════════════════════════════════════════════════════════════╝
|
|
20
20
|
*/
|
|
21
|
-
export declare const RUNTIME_VERSION = "1.10.
|
|
21
|
+
export declare const RUNTIME_VERSION = "1.10.1";
|
|
22
22
|
export interface RuntimeOptions {
|
|
23
23
|
seed: string | number;
|
|
24
24
|
vars?: number[];
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
* See package.json for the canonical npm version.
|
|
9
9
|
*/
|
|
10
10
|
/** SDK version - must match package.json version */
|
|
11
|
-
export declare const SDK_VERSION = "1.10.
|
|
11
|
+
export declare const SDK_VERSION = "1.10.1";
|
|
12
12
|
/** Protocol version - defines runtime semantics and determinism guarantees */
|
|
13
13
|
export declare const PROTOCOL_VERSION = "1.2.0";
|
|
14
14
|
/** Protocol phase - phase 3 = stable, production-ready */
|
|
15
15
|
export declare const PROTOCOL_PHASE = 3;
|
|
16
16
|
/** Combined version string for display */
|
|
17
|
-
export declare const VERSION_STRING = "v1.10.
|
|
17
|
+
export declare const VERSION_STRING = "v1.10.1 (Protocol v1.2.0)";
|
|
18
18
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexart/codemode-sdk",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"description": "NexArt Code Mode SDK - Deterministic, reproducible, verifiable generative art runtime. Agent-first design for AI coding assistants.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/browser.cjs",
|