@ensembleapp/client-sdk 0.0.4 → 0.0.5

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.js CHANGED
@@ -9767,12 +9767,12 @@ var createWidget = ({
9767
9767
  import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
9768
9768
  var defaultChatWidgets = [
9769
9769
  createWidget({
9770
- widgetType: "person_card",
9770
+ widgetType: "person-card",
9771
9771
  schema: zod_default.object({
9772
9772
  name: zod_default.string(),
9773
9773
  profileUri: zod_default.string().optional(),
9774
9774
  details: zod_default.record(zod_default.any()).optional()
9775
- }),
9775
+ }).describe("showing a person card with name, photo and additional details"),
9776
9776
  render: (widget) => /* @__PURE__ */ jsx5(
9777
9777
  "div",
9778
9778
  {
@@ -9821,7 +9821,7 @@ var defaultChatWidgets = [
9821
9821
  schema: zod_default.object({
9822
9822
  uri: zod_default.string().url(),
9823
9823
  text: zod_default.string().optional()
9824
- }),
9824
+ }).describe("rendering a clickable link"),
9825
9825
  render: (widget) => /* @__PURE__ */ jsx5(
9826
9826
  "a",
9827
9827
  {