notaryos 2.1.0 → 2.1.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/dist/index.d.mts CHANGED
@@ -17,7 +17,7 @@
17
17
  *
18
18
  * @packageDocumentation
19
19
  */
20
- declare const SDK_VERSION = "2.1.0";
20
+ declare const SDK_VERSION = "2.1.1";
21
21
  /** Client configuration options. */
22
22
  interface NotaryConfig {
23
23
  /** Your Notary API key (notary_live_xxx or notary_test_xxx). */
package/dist/index.d.ts CHANGED
@@ -17,7 +17,7 @@
17
17
  *
18
18
  * @packageDocumentation
19
19
  */
20
- declare const SDK_VERSION = "2.1.0";
20
+ declare const SDK_VERSION = "2.1.1";
21
21
  /** Client configuration options. */
22
22
  interface NotaryConfig {
23
23
  /** Your Notary API key (notary_live_xxx or notary_test_xxx). */
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ __export(index_exports, {
30
30
  verifyReceipt: () => verifyReceipt
31
31
  });
32
32
  module.exports = __toCommonJS(index_exports);
33
- var SDK_VERSION = "2.1.0";
33
+ var SDK_VERSION = "2.1.1";
34
34
  var NotaryError = class extends Error {
35
35
  constructor(message, code = "", status = 0, details = {}) {
36
36
  super(message);
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/index.ts
2
- var SDK_VERSION = "2.1.0";
2
+ var SDK_VERSION = "2.1.1";
3
3
  var NotaryError = class extends Error {
4
4
  constructor(message, code = "", status = 0, details = {}) {
5
5
  super(message);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notaryos",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "NotaryOS SDK - Cryptographic receipts for AI agent actions. Issue, verify, and audit agent behavior with Ed25519 signatures.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",