phonic 0.25.3 → 0.25.4

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.mts CHANGED
@@ -179,15 +179,15 @@ type Agent = {
179
179
  type ListAgentsParams = {
180
180
  project?: string;
181
181
  };
182
- type ListAgentsSuccessResponse = DataOrError<{
182
+ type ListAgentsSuccessResponse = {
183
183
  agents: Array<Agent>;
184
- }>;
184
+ };
185
185
  type GetAgentParams = {
186
186
  project?: string;
187
187
  };
188
- type GetAgentSuccessResponse = DataOrError<{
188
+ type GetAgentSuccessResponse = {
189
189
  agent: Agent;
190
- }>;
190
+ };
191
191
  interface AgentOptionalParams {
192
192
  project?: string;
193
193
  timezone?: string;
package/dist/index.d.ts CHANGED
@@ -179,15 +179,15 @@ type Agent = {
179
179
  type ListAgentsParams = {
180
180
  project?: string;
181
181
  };
182
- type ListAgentsSuccessResponse = DataOrError<{
182
+ type ListAgentsSuccessResponse = {
183
183
  agents: Array<Agent>;
184
- }>;
184
+ };
185
185
  type GetAgentParams = {
186
186
  project?: string;
187
187
  };
188
- type GetAgentSuccessResponse = DataOrError<{
188
+ type GetAgentSuccessResponse = {
189
189
  agent: Agent;
190
- }>;
190
+ };
191
191
  interface AgentOptionalParams {
192
192
  project?: string;
193
193
  timezone?: string;
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.25.3";
38
+ var version = "0.25.4";
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.25.3";
2
+ var version = "0.25.4";
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.25.3",
3
+ "version": "0.25.4",
4
4
  "description": "Phonic Node.js SDK",
5
5
  "scripts": {
6
6
  "build": "tsup",