@fileverse-dev/ddoc 2.3.0-update-image-arch-v4 → 2.3.0-update-image-arch-v5
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/{ccip-J279tH9-.mjs → ccip-B_2h44Zo.mjs} +1 -1
- package/dist/{index-Dx7bJgy4.mjs → index-Cb3rmDYs.mjs} +31287 -34602
- package/dist/index.es.js +1 -1
- package/dist/package/components/secure-image-v2.d.ts +1 -0
- package/dist/package/extensions/resizable-media/resizable-media-node-view.d.ts +1 -1
- package/dist/package/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -4,4 +4,4 @@ import { IpfsImageFetchPayload } from '../../types.ts';
|
|
4
4
|
export declare const getResizableMediaNodeView: (ipfsImageFetchFn: (_data: IpfsImageFetchPayload) => Promise<{
|
5
5
|
url: string;
|
6
6
|
file: File;
|
7
|
-
}>) => ({ node, updateAttributes, deleteNode
|
7
|
+
}>) => ({ node, updateAttributes, deleteNode }: NodeViewProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/package/types.d.ts
CHANGED
@@ -133,6 +133,7 @@ export interface IpfsImageUploadResponse {
|
|
133
133
|
nonce: string;
|
134
134
|
ipfsUrl: string;
|
135
135
|
ipfsHash: string;
|
136
|
+
authTag: string;
|
136
137
|
}
|
137
138
|
export interface IpfsImageFetchPayload {
|
138
139
|
encryptionKey: string;
|
@@ -140,4 +141,5 @@ export interface IpfsImageFetchPayload {
|
|
140
141
|
ipfsUrl: string;
|
141
142
|
ipfsHash: string;
|
142
143
|
mimeType: string;
|
144
|
+
authTag: string;
|
143
145
|
}
|
package/package.json
CHANGED