···103103 * DID of the service hosting this component
104104 */
105105 did: l.DidString;
106106+107107+ /**
108108+ * When true, host sends a signed JWT identifying the viewer with each call.
109109+ */
110110+ personalized?: boolean;
106111};
107112108113export type { BodyExternal };
···111116const bodyExternal = l.typedObject<BodyExternal>(
112117 $nsid,
113118 "bodyExternal",
114114- l.object({ did: l.string({ format: "did" }) })
119119+ l.object({
120120+ did: l.string({ format: "did" }),
121121+ personalized: l.optional(l.boolean()),
122122+ })
115123);
116124117125export { bodyExternal };
+4
lexicons/at/inlay/component.json
···6464 "type": "string",
6565 "format": "did",
6666 "description": "DID of the service hosting this component"
6767+ },
6868+ "personalized": {
6969+ "type": "boolean",
7070+ "description": "When true, host sends a signed JWT identifying the viewer with each call."
6771 }
6872 }
6973 },