@fixieai/fixie-common
Advanced tools
+15
-15
@@ -1,2 +0,2 @@ | ||
| (node:52836) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | ||
| (node:46300) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | ||
| (Use `node --trace-warnings ...` to show where the warning was created) | ||
@@ -6,11 +6,11 @@ PASS tests/client.test.ts | ||
| ✓ Returns correct userInfo result (3 ms) | ||
| ✓ Sends correct request for updating user (1 ms) | ||
| ✓ Sends correct request for updating user | ||
| FixieClientBase corpus tests | ||
| ✓ getCorpus returns correct result | ||
| ✓ getCorpus returns correct result (1 ms) | ||
| ✓ createCorpus returns correct result | ||
| ✓ updateCorpus returns correct result | ||
| ✓ updateCorpus returns correct result (1 ms) | ||
| ✓ queryCorpus returns correct result | ||
| ✓ deleteCorpus returns correct result (1 ms) | ||
| ✓ deleteCorpus returns correct result | ||
| (node:52835) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | ||
| (node:46299) ExperimentalWarning: VM Modules is an experimental feature and might change at any time | ||
| (Use `node --trace-warnings ...` to show where the warning was created) | ||
@@ -20,10 +20,10 @@ PASS tests/agent.test.ts | ||
| ✓ GetAgent works (3 ms) | ||
| ✓ ListAgents works | ||
| ✓ CreateAgent works (1 ms) | ||
| ✓ agent.delete() works | ||
| ✓ agent.update() works (1 ms) | ||
| ✓ ListAgents works (1 ms) | ||
| ✓ CreateAgent works | ||
| ✓ agent.delete() works (1 ms) | ||
| ✓ agent.update() works | ||
| FixieAgentBase logs tests | ||
| ✓ getLogs works | ||
| ✓ getLogs works (1 ms) | ||
| FixieAgentBase AgentRevision tests | ||
| ✓ getRevision works (1 ms) | ||
| ✓ getRevision works | ||
| ✓ getCurrentRevision works | ||
@@ -34,5 +34,5 @@ ✓ getCurrentRevision returns null for undefined currentRevision (1 ms) | ||
| ✓ setCurrentRevision works | ||
| ✓ deleteRevision works | ||
| ✓ deleteRevision works (1 ms) | ||
| ✓ createRevision works | ||
| ✓ createRevision requires either externalUrl or defaultRuntimeParameters (10 ms) | ||
| ✓ createRevision requires either externalUrl or defaultRuntimeParameters (12 ms) | ||
| ✓ createRevision with runtimeParametersSchema requires externalUrl (1 ms) | ||
@@ -43,3 +43,3 @@ | ||
| Snapshots: 0 total | ||
| Time: 1.332 s | ||
| Time: 1.363 s | ||
| Ran all test suites. |
+6
-0
| # @fixieai/fixie-common | ||
| ## 1.0.9 | ||
| ### Patch Changes | ||
| - Fix deleteRevision. | ||
| ## 1.0.8 | ||
@@ -4,0 +10,0 @@ |
@@ -96,3 +96,3 @@ import { FixieClientBase } from './client.js'; | ||
| setCurrentRevision(revisionId: string): void; | ||
| deleteRevision(revisionId: string): Promise<void>; | ||
| deleteRevision(revisionId: string): void; | ||
| } |
@@ -197,4 +197,4 @@ /** | ||
| deleteRevision(revisionId) { | ||
| return this.client.requestJson(`/api/v1/agents/${this.metadata.agentId}/revisions/${revisionId}`, undefined, 'DELETE'); | ||
| this.client.requestJson(`/api/v1/agents/${this.metadata.agentId}/revisions/${revisionId}`, undefined, 'DELETE'); | ||
| } | ||
| } |
+1
-1
| { | ||
| "name": "@fixieai/fixie-common", | ||
| "description": "Node and browser common code for the Fixie platform SDK.", | ||
| "version": "1.0.8", | ||
| "version": "1.0.9", | ||
| "license": "MIT", | ||
@@ -6,0 +6,0 @@ "repository": { |
+2
-6
@@ -304,9 +304,5 @@ import { FixieClientBase } from './client.js'; | ||
| public deleteRevision(revisionId: string): Promise<void> { | ||
| return this.client.requestJson( | ||
| `/api/v1/agents/${this.metadata.agentId}/revisions/${revisionId}`, | ||
| undefined, | ||
| 'DELETE' | ||
| ); | ||
| public deleteRevision(revisionId: string) { | ||
| this.client.requestJson(`/api/v1/agents/${this.metadata.agentId}/revisions/${revisionId}`, undefined, 'DELETE'); | ||
| } | ||
| } |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
130242
03517
-0.11%