@opencxh/domain 1.173.1 → 1.174.0
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/entities/activity/types.d.ts +6 -1
- package/dist/index.cjs +6 -6
- package/dist/index.js +326 -320
- package/dist/text/message.d.ts +3 -0
- package/package.json +1 -1
package/dist/text/message.d.ts
CHANGED
|
@@ -5,4 +5,7 @@
|
|
|
5
5
|
* classify/extract/agent (or history views) instead of the sender's new content.
|
|
6
6
|
* Pure, dependency-free (lives in domain so both server apps can share it).
|
|
7
7
|
*/
|
|
8
|
+
/** Does this raw body look like HTML (vs plain text)? Shared by feed projection and the mail UI. */
|
|
9
|
+
export declare const HTML_BODY_RE: RegExp;
|
|
10
|
+
export declare function isHtmlBody(raw: string): boolean;
|
|
8
11
|
export declare function cleanMessageText(raw: unknown): string;
|