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