@rtsdk/topia 0.17.3 → 0.17.4
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.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1877,6 +1877,9 @@ interface DroppedAssetInterface extends AssetInterface {
|
|
|
1877
1877
|
isInteractive?: boolean;
|
|
1878
1878
|
interactivePublicKey: string;
|
|
1879
1879
|
}): Promise<void | ResponseType$1>;
|
|
1880
|
+
setClickableLinkMulti({ clickableLinks }: SetClickableLinkMultiInterface): Promise<void | ResponseType$1>;
|
|
1881
|
+
updateClickableLinkMulti({ clickableLink, clickableLinkTitle, isForceLinkInIframe, isOpenLinkInDrawer, existingLinkId, linkSamlQueryParams, }: UpdateClickableLinkMultiInterface): Promise<void | ResponseType$1>;
|
|
1882
|
+
removeClickableLink({ linkId }: RemoveClickableLinkInterface): Promise<void | ResponseType$1>;
|
|
1880
1883
|
id?: string;
|
|
1881
1884
|
assetId?: string;
|
|
1882
1885
|
assetScale?: number | null;
|
package/package.json
CHANGED