raysurfer 0.4.2 → 0.4.3

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/client.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * RaySurfer SDK client
3
3
  */
4
- export declare const VERSION = "0.4.2";
4
+ export declare const VERSION = "0.4.3";
5
5
  import type { AgentReview, AgentVerdict, AutoReviewParams, AutoReviewResponse, ExecutionState, FewShotExample, FileWritten, GetCodeFilesResponse, GetExecutionsParams, RetrieveBestResponse, RetrieveCodeBlockResponse, RetrieveExecutionsResponse, SnipsDesired, StoreCodeBlockResponse, StoreExecutionResponse, SubmitExecutionResultResponse, TaskPattern } from "./types";
6
6
  export interface RaySurferOptions {
7
7
  /** RaySurfer API key */
package/dist/index.js CHANGED
@@ -69,7 +69,7 @@ class ValidationError extends RaySurferError {
69
69
  }
70
70
 
71
71
  // src/client.ts
72
- var VERSION = "0.4.2";
72
+ var VERSION = "0.4.3";
73
73
  var DEFAULT_BASE_URL = "https://api.raysurfer.com";
74
74
  var MAX_RETRIES = 3;
75
75
  var RETRY_BASE_DELAY = 500;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raysurfer",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "Drop-in replacement for Claude Agent SDK with automatic code caching - just swap your import",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",