Skip to content

Commit

Permalink
Add missing properties to Persona interface (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
BellaT authored Feb 18, 2025
1 parent 40920d1 commit 9fa0bec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/flow-client-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@speechmatics/flow-client-react",
"version": "0.2.0",
"version": "0.2.1",
"description": "React hooks for interacting with the Speechmatics Flow API",
"main": "dist/index.cjs",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@speechmatics/flow-client",
"version": "0.2.1",
"version": "0.2.2",
"description": "Javascript client for the Speechmatics Flow API",
"main": "dist/index.js",
"files": ["dist/", "README.md"],
Expand Down
2 changes: 2 additions & 0 deletions packages/flow-client/src/personas.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
interface Personas {
[personaId: string]: {
name: string;
character: string;
description: string;
start_text: string[];
avatar?: string;
};
}
Expand Down

0 comments on commit 9fa0bec

Please sign in to comment.