@scout9/app 1.0.0-alpha.0.8.6 → 1.0.0-alpha.0.8.7
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/src/public.d.ts +1 -1
- package/types/index.d.ts +1 -1
package/package.json
CHANGED
package/src/public.d.ts
CHANGED
|
@@ -770,7 +770,7 @@ export type WorkflowResponseSlotBase = {
|
|
|
770
770
|
forwardNote?: string | undefined;
|
|
771
771
|
|
|
772
772
|
/** Instructions to send to the PMT on how to steer the conversation */
|
|
773
|
-
instructions?: Instruction[] | undefined;
|
|
773
|
+
instructions?: Instruction | Instruction[] | undefined;
|
|
774
774
|
|
|
775
775
|
/** If provided, sends a direct message to the user */
|
|
776
776
|
message?: string | DirectMessage | undefined;
|
package/types/index.d.ts
CHANGED
|
@@ -713,7 +713,7 @@ declare module '@scout9/app' {
|
|
|
713
713
|
forwardNote?: string | undefined;
|
|
714
714
|
|
|
715
715
|
/** Instructions to send to the PMT on how to steer the conversation */
|
|
716
|
-
instructions?: Instruction[] | undefined;
|
|
716
|
+
instructions?: Instruction | Instruction[] | undefined;
|
|
717
717
|
|
|
718
718
|
/** If provided, sends a direct message to the user */
|
|
719
719
|
message?: string | DirectMessage | undefined;
|