intercom-client
Version:
Official Node bindings to the Intercom API
13 lines (12 loc) • 630 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../index";
/**
* The response object returned when configuring an app. This will either:
* - A canvas object which will replace the previous canvas that was visible until the teammate interacted with your app
* - A results object which will end the configuration and trigger the initialize request to be sent. There will be a card_creation_options object in the payload showing your key-value pairs from the results object.
*/
export type ConfigureResponse = Intercom.ResultsResponse | {
canvas: Intercom.CanvasObject;
};