@soat/sdk 0.4.12 → 0.4.15

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
@@ -322,10 +322,6 @@ type ActorRecord = {
322
322
  */
323
323
  project_id?: string;
324
324
  name?: string;
325
- /**
326
- * Actor type (e.g. 'customer', 'agent')
327
- */
328
- type?: string | null;
329
325
  /**
330
326
  * External identifier (e.g. WhatsApp phone number)
331
327
  */
@@ -1381,10 +1377,6 @@ type CreateActorData = {
1381
1377
  */
1382
1378
  project_id?: string;
1383
1379
  name: string;
1384
- /**
1385
- * Optional actor type (e.g. 'customer', 'agent')
1386
- */
1387
- type?: string;
1388
1380
  /**
1389
1381
  * Optional external identifier (e.g. WhatsApp phone number). If provided and an actor with this externalId already exists in the project, the existing actor is returned (idempotent — 200 OK).
1390
1382
  */
@@ -1489,10 +1481,6 @@ type GetActorResponse = GetActorResponses[keyof GetActorResponses];
1489
1481
  type UpdateActorData = {
1490
1482
  body: {
1491
1483
  name?: string;
1492
- /**
1493
- * Optional actor type (e.g. 'customer', 'agent')
1494
- */
1495
- type?: string;
1496
1484
  /**
1497
1485
  * Persona-specific instructions
1498
1486
  */
package/dist/index.d.ts CHANGED
@@ -322,10 +322,6 @@ type ActorRecord = {
322
322
  */
323
323
  project_id?: string;
324
324
  name?: string;
325
- /**
326
- * Actor type (e.g. 'customer', 'agent')
327
- */
328
- type?: string | null;
329
325
  /**
330
326
  * External identifier (e.g. WhatsApp phone number)
331
327
  */
@@ -1381,10 +1377,6 @@ type CreateActorData = {
1381
1377
  */
1382
1378
  project_id?: string;
1383
1379
  name: string;
1384
- /**
1385
- * Optional actor type (e.g. 'customer', 'agent')
1386
- */
1387
- type?: string;
1388
1380
  /**
1389
1381
  * Optional external identifier (e.g. WhatsApp phone number). If provided and an actor with this externalId already exists in the project, the existing actor is returned (idempotent — 200 OK).
1390
1382
  */
@@ -1489,10 +1481,6 @@ type GetActorResponse = GetActorResponses[keyof GetActorResponses];
1489
1481
  type UpdateActorData = {
1490
1482
  body: {
1491
1483
  name?: string;
1492
- /**
1493
- * Optional actor type (e.g. 'customer', 'agent')
1494
- */
1495
- type?: string;
1496
1484
  /**
1497
1485
  * Persona-specific instructions
1498
1486
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/sdk",
3
- "version": "0.4.12",
3
+ "version": "0.4.15",
4
4
  "description": "TypeScript SDK for the SOAT API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,6 +33,7 @@
33
33
  "@hey-api/openapi-ts": "^0.96.1",
34
34
  "@ttoss/config": "^1.37.10",
35
35
  "@types/js-yaml": "^4.0.9",
36
+ "@types/node": "^24",
36
37
  "js-yaml": "^4.1.1",
37
38
  "tsup": "^8.5.1",
38
39
  "tsx": "^4.21.0"