| 5 | * Security restrictions for elements. |
| 6 | */ |
| 7 | export interface ContentKitSecurity { |
| 8 | /** |
| 9 | * Domains allowed for webframe communication. |
| 10 | * These domains will be allowed to send messages to ContentKit, |
| 11 | * and receive messages from ContentKit. |
| 12 | */ |
| 13 | firstPartyDomains: string[]; |
| 14 | } |
| 15 | |
| 16 | export type ContentKitRenderUpdate = Partial< |
| 17 | Pick<RequestRenderIntegrationUI, 'action' | 'props' | 'state'> |
nothing calls this directly
no outgoing calls
no test coverage detected