@coveo/relay-event-types 10.1.2 → 10.1.3
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/package.json +1 -1
- package/relay-event-types.d.ts +6 -5
package/package.json
CHANGED
package/relay-event-types.d.ts
CHANGED
|
@@ -143,11 +143,6 @@ interface Ticket {
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
export namespace CaseAssist {
|
|
146
|
-
/**
|
|
147
|
-
* The caseAssist.start event is emitted when a user initiates a Case Assist flow.
|
|
148
|
-
*/
|
|
149
|
-
export type Start = Base;
|
|
150
|
-
|
|
151
146
|
/**
|
|
152
147
|
* The caseAssist.cancel event is emitted when a user cancels the Case Assist flow.
|
|
153
148
|
*/
|
|
@@ -203,6 +198,12 @@ export namespace CaseAssist {
|
|
|
203
198
|
autoselected: boolean;
|
|
204
199
|
}
|
|
205
200
|
|
|
201
|
+
/**
|
|
202
|
+
* The caseAssist.start event is emitted when a user initiates a Case Assist flow.
|
|
203
|
+
*/
|
|
204
|
+
export interface Start extends Base {
|
|
205
|
+
}
|
|
206
|
+
|
|
206
207
|
/**
|
|
207
208
|
* The caseAssist.updateField event is emitted when a user edits a Case Assist form field.
|
|
208
209
|
*/
|