phonic 0.26.0 → 0.26.1

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/README.md CHANGED
@@ -174,8 +174,7 @@ const upsertAgentResult = await phonic.agents.upsert({
174
174
  ### Delete agent
175
175
 
176
176
  ```ts
177
- const deleteAgentResult = await phonic.agents.delete({
178
- name: "chris",
177
+ const deleteAgentResult = await phonic.agents.delete("chris", {
179
178
  // Optional fields
180
179
  project: "main",
181
180
  });
package/dist/index.js CHANGED
@@ -35,7 +35,7 @@ __export(index_exports, {
35
35
  module.exports = __toCommonJS(index_exports);
36
36
 
37
37
  // package.json
38
- var version = "0.26.0";
38
+ var version = "0.26.1";
39
39
 
40
40
  // src/agents/index.ts
41
41
  var Agents = class {
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  // package.json
2
- var version = "0.26.0";
2
+ var version = "0.26.1";
3
3
 
4
4
  // src/agents/index.ts
5
5
  var Agents = class {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phonic",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "Phonic Node.js SDK",
5
5
  "scripts": {
6
6
  "build": "tsup",