@kivox/client 0.1.0-beta.27 → 0.1.0-beta.29
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.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -101,8 +101,6 @@ interface CompileDiagnostics {
|
|
|
101
101
|
readonly $schema?: string;
|
|
102
102
|
/** @nullable */
|
|
103
103
|
errors: string[] | null;
|
|
104
|
-
/** @nullable */
|
|
105
|
-
warnings: string[] | null;
|
|
106
104
|
}
|
|
107
105
|
interface Conversation {
|
|
108
106
|
/** A URL to the JSON Schema for this object. */
|
|
@@ -735,6 +733,7 @@ type GetUserResult = AxiosResponse<User>;
|
|
|
735
733
|
type ClientHandshake = {
|
|
736
734
|
type: "handshake"
|
|
737
735
|
agent_id: string
|
|
736
|
+
channel?: string
|
|
738
737
|
};
|
|
739
738
|
/**
|
|
740
739
|
* Carries a single user text message.
|