prismatic-io / embedded

Prismatic's library for embedding Prismatic.io into your application.
MIT License
24 stars 2 forks source link

Add ability to configure disabling logs and step results #48

Closed bkegley closed 1 year ago

bkegley commented 1 year ago

Adds the following properties to ScreenConfiguration["configurationWizard"] for disabling logs and step results for integration deployed through embedded.

  /**
   * Disable logs on integrations deployed via marketplace
   * @default "never"
   */
  logsDisabled?: "always" | "never" | "optional";
  /**
   * Disable step results on integrations deployed via marketplace
   * @default "never"
   */
  stepResultsDisabled?: "always" | "never" | "optional";