@reverbia/sdk 1.0.0-next.20260110224403 → 1.0.0-next.20260111110909
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/expo/index.cjs +167 -12
- package/dist/expo/index.mjs +167 -12
- package/dist/react/index.cjs +513 -46
- package/dist/react/index.d.mts +2 -2
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.mjs +513 -46
- package/package.json +1 -1
package/dist/react/index.d.mts
CHANGED
|
@@ -1787,13 +1787,13 @@ declare class Conversation extends Model {
|
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
1789
|
/**
|
|
1790
|
-
* Replace a URL in content with an
|
|
1790
|
+
* Replace a URL in content with an internal file placeholder.
|
|
1791
1791
|
* This is used to swap external URLs with locally-stored file references.
|
|
1792
1792
|
*
|
|
1793
1793
|
* @param content - The message content containing the URL
|
|
1794
1794
|
* @param url - The URL to replace
|
|
1795
1795
|
* @param fileId - The OPFS file ID to reference
|
|
1796
|
-
* @returns The content with the URL replaced by
|
|
1796
|
+
* @returns The content with the URL replaced by __SDKFILE__fileId__
|
|
1797
1797
|
*
|
|
1798
1798
|
* @example
|
|
1799
1799
|
* ```ts
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1787,13 +1787,13 @@ declare class Conversation extends Model {
|
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
1789
|
/**
|
|
1790
|
-
* Replace a URL in content with an
|
|
1790
|
+
* Replace a URL in content with an internal file placeholder.
|
|
1791
1791
|
* This is used to swap external URLs with locally-stored file references.
|
|
1792
1792
|
*
|
|
1793
1793
|
* @param content - The message content containing the URL
|
|
1794
1794
|
* @param url - The URL to replace
|
|
1795
1795
|
* @param fileId - The OPFS file ID to reference
|
|
1796
|
-
* @returns The content with the URL replaced by
|
|
1796
|
+
* @returns The content with the URL replaced by __SDKFILE__fileId__
|
|
1797
1797
|
*
|
|
1798
1798
|
* @example
|
|
1799
1799
|
* ```ts
|