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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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 =
|
|
182
|
+
type ListAgentsSuccessResponse = {
|
|
183
183
|
agents: Array<Agent>;
|
|
184
|
-
}
|
|
184
|
+
};
|
|
185
185
|
type GetAgentParams = {
|
|
186
186
|
project?: string;
|
|
187
187
|
};
|
|
188
|
-
type GetAgentSuccessResponse =
|
|
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 =
|
|
182
|
+
type ListAgentsSuccessResponse = {
|
|
183
183
|
agents: Array<Agent>;
|
|
184
|
-
}
|
|
184
|
+
};
|
|
185
185
|
type GetAgentParams = {
|
|
186
186
|
project?: string;
|
|
187
187
|
};
|
|
188
|
-
type GetAgentSuccessResponse =
|
|
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
package/dist/index.mjs
CHANGED