@naturali/sdk 0.64.0 → 0.65.0

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.cts CHANGED
@@ -366,11 +366,6 @@ type Actor = {
366
366
  *
367
367
  */
368
368
  instructions: string | null;
369
- /**
370
- * Whether a memory container is linked, carrying what the agent remembers about this actor across sessions. The container's own id is not exposed — naturali fronts no memory resource that could resolve it.
371
- *
372
- */
373
- has_memory: boolean;
374
369
  created_at: Date | null;
375
370
  updated_at: Date | null;
376
371
  };
@@ -389,11 +384,6 @@ type ActorCreate = {
389
384
  *
390
385
  */
391
386
  instructions?: string;
392
- /**
393
- * Give the actor its own memory container, so an agent remembers it across sessions. Applied on creation only — a call that returns an existing actor leaves its memory as it was.
394
- *
395
- */
396
- memory?: boolean;
397
387
  };
398
388
  /**
399
389
  * Only the fields present are changed.
package/dist/index.d.mts CHANGED
@@ -366,11 +366,6 @@ type Actor = {
366
366
  *
367
367
  */
368
368
  instructions: string | null;
369
- /**
370
- * Whether a memory container is linked, carrying what the agent remembers about this actor across sessions. The container's own id is not exposed — naturali fronts no memory resource that could resolve it.
371
- *
372
- */
373
- has_memory: boolean;
374
369
  created_at: Date | null;
375
370
  updated_at: Date | null;
376
371
  };
@@ -389,11 +384,6 @@ type ActorCreate = {
389
384
  *
390
385
  */
391
386
  instructions?: string;
392
- /**
393
- * Give the actor its own memory container, so an agent remembers it across sessions. Applied on creation only — a call that returns an existing actor leaves its memory as it was.
394
- *
395
- */
396
- memory?: boolean;
397
387
  };
398
388
  /**
399
389
  * Only the fields present are changed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturali/sdk",
3
- "version": "0.64.0",
3
+ "version": "0.65.0",
4
4
  "description": "TypeScript SDK for the naturali.ai API, generated from its OpenAPI specs",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -37,7 +37,7 @@
37
37
  "tsx": "^4.23.1",
38
38
  "typescript": "~6.0.3",
39
39
  "vitest": "^4.1.10",
40
- "@naturali/api": "0.64.0"
40
+ "@naturali/api": "0.65.0"
41
41
  },
42
42
  "scripts": {
43
43
  "generate": "tsx scripts/generate.ts",