Lines 194-234typescript
194export declare const sanitize_html_for_cms: (html: string) => string;
196 * Canonical sanitizer for HTML that will be rendered (e.g. via `dangerouslySetInnerHTML`):
197 * form descriptions/answers, CMS/articles, care plans, templates, chat, community posts,
198 * portal HTML blocks, email bodies, etc.
200 * Uses an allowlist parser (sanitize-html) tuned to be broad on formatting/structure so
201 * legitimate customization is preserved — rich text, headings, lists, tables, images, media,
202 * inline styles, and links — while only allowlisted tags, attributes, and URL schemes are kept.
203 * If a specific surface needs embeds (e.g. YouTube), add `iframe` with `allowedIframeHostnames`
204 * for that surface rather than loosening this shared function.
206export declare const sanitize_user_html: (html: string) => string;
207export declare const query_string_for_object: (query: Indexable) => string;
208export declare const PROD_API_URL = "https://api.tellescope.com";
209export declare const STAGING_API_URL = "https://staging-api.tellescope.com";
210export declare const TEST_API_URL = "http://localhost:8080";
211export declare const getEnvironment: () => "staging" | "test" | "prod";
212export declare const getApiURL: () => "https://api.tellescope.com" | "https://staging-api.tellescope.com" | "http://localhost:8080";
213export declare const getGoogleClientId: () => "526353775713-puib79782ac254evqj2fs0sb7acsij65.apps.googleusercontent.com" | "826276796073-6rcrqp4duqatbhn8k71saopenqc2fb0i.apps.googleusercontent.com" | "842986734352-2c73i6iq2aoau3dj1jvqtmufn2j9g0dm.apps.googleusercontent.com";
214export declare const getGoogleClientAPIKey: () => "AIzaSyCYCWiLkYifffepu5L-p1x4yUExf5aWpuA" | "AIzaSyDUCT6r5qQx8yniMuP-Y9Ni08THoLQtG6M" | "AIzaSyBW9D0mg3ISvNQcSB0Z_PwHNuD0OhFdMKg";
215export declare const getBuiltInPublicFileName: ({ name, organizationIds }: {
216 name: 'logo' | 'favicon';
217 organizationIds?: string[] | undefined;
219export declare const getOrgnizationLogoURL: ({ organizationIds, id, businessId, logoVersion, ...args }: {
222 organizationIds?: string[] | undefined;
223 logoVersion?: number | undefined;
224 apiURL?: string | undefined;
226export declare const getOrgnizationFaviconURL: ({ organizationIds, businessId, id, faviconVersion, ...args }: {
229 organizationIds?: string[] | undefined;
230 faviconVersion?: number | undefined;
231 apiURL?: string | undefined;
233export declare const getPublicFileURL: ({ businessId, name, version, apiURL }: {