interai-risk-oracle 0.1.2-beta → 0.1.3-beta

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ export class InterAIRiskOracleClient {
9
9
  constructor(options) {
10
10
  this.baseUrl = options.baseUrl.replace(/\/$/, "");
11
11
  this.apiKey = options.apiKey;
12
- this.clientName = options.clientName || "typescript-sdk/0.1.2-beta";
12
+ this.clientName = options.clientName || "typescript-sdk/0.1.3-beta";
13
13
  }
14
14
  async jsonRequest(path, init) {
15
15
  const response = await fetch(`${this.baseUrl}${path}`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "interai-risk-oracle",
3
- "version": "0.1.2-beta",
3
+ "version": "0.1.3-beta",
4
4
  "description": "TypeScript client and policy-gate helpers for the hosted InterAI Risk Oracle API.",
5
5
  "homepage": "https://ai-risk-oracle.fly.dev/",
6
6
  "repository": {