@athenaintel/react 0.10.26 → 0.10.28
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.cjs +675 -72
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +675 -72
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export declare interface AssetPanelState {
|
|
|
65
65
|
openAsset: (assetId: string, meta?: {
|
|
66
66
|
name?: string;
|
|
67
67
|
type?: AssetType;
|
|
68
|
+
slideNumber?: number;
|
|
68
69
|
}) => void;
|
|
69
70
|
closeTab: (assetId: string) => void;
|
|
70
71
|
setActiveTab: (assetId: string) => void;
|
|
@@ -86,6 +87,7 @@ export declare interface AssetTab {
|
|
|
86
87
|
id: string;
|
|
87
88
|
name: string | null;
|
|
88
89
|
type: AssetType;
|
|
90
|
+
slideNumber?: number;
|
|
89
91
|
}
|
|
90
92
|
|
|
91
93
|
export declare type AssetType = 'presentation' | 'spreadsheet' | 'document' | 'notebook' | 'unknown';
|
|
@@ -1281,6 +1283,7 @@ export declare function useAppendToComposer(): (text: string, opts?: {
|
|
|
1281
1283
|
*/
|
|
1282
1284
|
export declare function useAssetEmbed(assetId: string | null, options?: UseAssetEmbedOptions & {
|
|
1283
1285
|
backendUrl: string;
|
|
1286
|
+
appUrl?: string;
|
|
1284
1287
|
apiKey?: string;
|
|
1285
1288
|
token?: string | null;
|
|
1286
1289
|
}): UseAssetEmbedResult;
|