@utilix-tech/sdk 0.1.2 → 0.2.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/index.d.cts CHANGED
@@ -8,10 +8,11 @@ export { t as time } from './time-DbT8fjaF.cjs';
8
8
  export { u as units } from './units-6lwDYBvX.cjs';
9
9
  export { n as network } from './network-CNtmrDeN.cjs';
10
10
  export { a as api } from './api-8aZtWhSj.cjs';
11
- export { c as code } from './code-QNrdLIR3.cjs';
11
+ export { c as code } from './code-BUqyaofO.cjs';
12
12
  export { c as color } from './color-tPwZCr9H.cjs';
13
13
  export { c as css } from './css-Cf7AMGM-.cjs';
14
- export { m as misc } from './misc-DcVBManm.cjs';
14
+ export { m as misc } from './misc-CA3N198T.cjs';
15
+ export { a as ai_agent } from './ai_agent-CcpkV2DR.cjs';
15
16
 
16
17
  declare const version = "0.1.0";
17
18
 
package/dist/index.d.ts CHANGED
@@ -8,10 +8,11 @@ export { t as time } from './time-DbT8fjaF.js';
8
8
  export { u as units } from './units-6lwDYBvX.js';
9
9
  export { n as network } from './network-CNtmrDeN.js';
10
10
  export { a as api } from './api-8aZtWhSj.js';
11
- export { c as code } from './code-QNrdLIR3.js';
11
+ export { c as code } from './code-BUqyaofO.js';
12
12
  export { c as color } from './color-tPwZCr9H.js';
13
13
  export { c as css } from './css-Cf7AMGM-.js';
14
- export { m as misc } from './misc-DcVBManm.js';
14
+ export { m as misc } from './misc-CA3N198T.js';
15
+ export { a as ai_agent } from './ai_agent-CcpkV2DR.js';
15
16
 
16
17
  declare const version = "0.1.0";
17
18
 
package/dist/index.js CHANGED
@@ -1,10 +1,11 @@
1
1
  export { units_exports as units } from './chunk-XST6X3HT.js';
2
2
  export { network_exports as network } from './chunk-3BAHSW4C.js';
3
3
  export { api_exports as api } from './chunk-W4UBLYFU.js';
4
- export { code_exports as code } from './chunk-ZKL2VX2G.js';
4
+ export { code_exports as code } from './chunk-NSOARQCM.js';
5
5
  export { color_exports as color } from './chunk-BPVAB4P2.js';
6
6
  export { css_exports as css } from './chunk-6YPV2AB5.js';
7
- export { misc_exports as misc } from './chunk-L6KCTHUW.js';
7
+ export { misc_exports as misc } from './chunk-OKSWDVOM.js';
8
+ export { ai_agent_exports as ai_agent } from './chunk-M35VJETW.js';
8
9
  export { json_exports as json } from './chunk-TSAGO3XP.js';
9
10
  export { encoding_exports as encoding } from './chunk-ROTPLW7T.js';
10
11
  export { hashing_exports as hashing } from './chunk-FL53T24A.js';
@@ -12,6 +12,8 @@
12
12
  * FORMAT_EXTENSIONS, FORMAT_LABELS
13
13
  * - number-words : numberToWords, numberToOrdinal, ordinalWords, numberToRoman, romanToNumber
14
14
  * - random-data : generateSingle, generateData, DATA_TYPES
15
+ * - qr-code : generateQrSvg, generateQrDataUrl (SVG works in Node; dataUrl needs canvas)
16
+ * - og-meta : parseMetaTags, validateOgTags, generateMetaHtml
15
17
  *
16
18
  * NOTE: Canvas-based image compression/conversion is not supported in Node. The relevant
17
19
  * functions (compressImage, convertImage) are intentionally omitted; use the REST API or
@@ -147,6 +149,58 @@ declare const DATA_TYPES: {
147
149
  }[];
148
150
  declare function generateSingle(type: DataType, options?: RandomConfig['options']): string;
149
151
  declare function generateData(config: RandomConfig): string[];
152
+ type QrErrorLevel = 'L' | 'M' | 'Q' | 'H';
153
+ interface QrOptions {
154
+ errorLevel?: QrErrorLevel;
155
+ size?: number;
156
+ margin?: number;
157
+ darkColor?: string;
158
+ lightColor?: string;
159
+ }
160
+ declare const DEFAULT_QR_OPTIONS: QrOptions;
161
+ /** Returns an SVG string — works in Node without canvas. */
162
+ declare function generateQrSvg(text: string, options?: QrOptions): Promise<string>;
163
+ /** Returns a data URL (PNG). Requires a canvas implementation in Node — use generateQrSvg for a canvas-free alternative. */
164
+ declare function generateQrDataUrl(text: string, options?: QrOptions): Promise<string>;
165
+ interface OgTags {
166
+ title?: string;
167
+ description?: string;
168
+ image?: string;
169
+ imageAlt?: string;
170
+ imageWidth?: string;
171
+ imageHeight?: string;
172
+ url?: string;
173
+ type?: string;
174
+ siteName?: string;
175
+ locale?: string;
176
+ }
177
+ interface TwitterTags {
178
+ card?: string;
179
+ site?: string;
180
+ creator?: string;
181
+ title?: string;
182
+ description?: string;
183
+ image?: string;
184
+ }
185
+ interface MetaTags {
186
+ og: OgTags;
187
+ twitter: TwitterTags;
188
+ standard: {
189
+ title?: string;
190
+ description?: string;
191
+ keywords?: string;
192
+ canonical?: string;
193
+ robots?: string;
194
+ viewport?: string;
195
+ charset?: string;
196
+ };
197
+ }
198
+ declare function parseMetaTags(html: string): MetaTags;
199
+ declare function validateOgTags(tags: OgTags): {
200
+ warnings: string[];
201
+ missing: string[];
202
+ };
203
+ declare function generateMetaHtml(tags: Partial<OgTags & TwitterTags>): string;
150
204
 
151
205
  declare const misc_COLOR_PRESETS: typeof COLOR_PRESETS;
152
206
  type misc_CodePoint = CodePoint;
@@ -156,14 +210,20 @@ type misc_ConversionOptions = ConversionOptions;
156
210
  type misc_ConvertImageFormat = ConvertImageFormat;
157
211
  declare const misc_DATA_TYPES: typeof DATA_TYPES;
158
212
  declare const misc_DEFAULT_CONFIG: typeof DEFAULT_CONFIG;
213
+ declare const misc_DEFAULT_QR_OPTIONS: typeof DEFAULT_QR_OPTIONS;
159
214
  type misc_DataType = DataType;
160
215
  declare const misc_FORMAT_EXTENSIONS: typeof FORMAT_EXTENSIONS;
161
216
  declare const misc_FORMAT_LABELS: typeof FORMAT_LABELS;
162
217
  type misc_FaviconConfig = FaviconConfig;
163
218
  type misc_ImageFormat = ImageFormat;
219
+ type misc_MetaTags = MetaTags;
220
+ type misc_OgTags = OgTags;
221
+ type misc_QrErrorLevel = QrErrorLevel;
222
+ type misc_QrOptions = QrOptions;
164
223
  type misc_RandomConfig = RandomConfig;
165
224
  type misc_Shape = Shape;
166
225
  type misc_SvgInfo = SvgInfo;
226
+ type misc_TwitterTags = TwitterTags;
167
227
  declare const misc_analyzeString: typeof analyzeString;
168
228
  declare const misc_analyzeSvg: typeof analyzeSvg;
169
229
  declare const misc_calcResizeDimensions: typeof calcResizeDimensions;
@@ -177,6 +237,9 @@ declare const misc_formatLabel: typeof formatLabel;
177
237
  declare const misc_formatSvg: typeof formatSvg;
178
238
  declare const misc_fromUnicodeEscape: typeof fromUnicodeEscape;
179
239
  declare const misc_generateData: typeof generateData;
240
+ declare const misc_generateMetaHtml: typeof generateMetaHtml;
241
+ declare const misc_generateQrDataUrl: typeof generateQrDataUrl;
242
+ declare const misc_generateQrSvg: typeof generateQrSvg;
180
243
  declare const misc_generateSingle: typeof generateSingle;
181
244
  declare const misc_generateSvgFavicon: typeof generateSvgFavicon;
182
245
  declare const misc_getConversionWarnings: typeof getConversionWarnings;
@@ -190,12 +253,14 @@ declare const misc_numberToRoman: typeof numberToRoman;
190
253
  declare const misc_numberToWords: typeof numberToWords;
191
254
  declare const misc_optimizeSvg: typeof optimizeSvg;
192
255
  declare const misc_ordinalWords: typeof ordinalWords;
256
+ declare const misc_parseMetaTags: typeof parseMetaTags;
193
257
  declare const misc_romanToNumber: typeof romanToNumber;
194
258
  declare const misc_sanitizeSvg: typeof sanitizeSvg;
195
259
  declare const misc_svgToDataUrl: typeof svgToDataUrl;
196
260
  declare const misc_toUnicodeEscape: typeof toUnicodeEscape;
261
+ declare const misc_validateOgTags: typeof validateOgTags;
197
262
  declare namespace misc {
198
- export { misc_COLOR_PRESETS as COLOR_PRESETS, type misc_CodePoint as CodePoint, type misc_CompressionOptions as CompressionOptions, type misc_CompressionResult as CompressionResult, type misc_ConversionOptions as ConversionOptions, type misc_ConvertImageFormat as ConvertImageFormat, misc_DATA_TYPES as DATA_TYPES, misc_DEFAULT_CONFIG as DEFAULT_CONFIG, type misc_DataType as DataType, misc_FORMAT_EXTENSIONS as FORMAT_EXTENSIONS, misc_FORMAT_LABELS as FORMAT_LABELS, type misc_FaviconConfig as FaviconConfig, type misc_ImageFormat as ImageFormat, type misc_RandomConfig as RandomConfig, type misc_Shape as Shape, type misc_SvgInfo as SvgInfo, misc_analyzeString as analyzeString, misc_analyzeSvg as analyzeSvg, misc_calcResizeDimensions as calcResizeDimensions, misc_calcSavings as calcSavings, misc_charToCodePoint as charToCodePoint, misc_codePointToChar as codePointToChar, misc_detectFormatFromDataUrl as detectFormatFromDataUrl, misc_detectFormatFromFilename as detectFormatFromFilename, misc_formatBytes as formatBytes, misc_formatLabel as formatLabel, misc_formatSvg as formatSvg, misc_fromUnicodeEscape as fromUnicodeEscape, misc_generateData as generateData, misc_generateSingle as generateSingle, misc_generateSvgFavicon as generateSvgFavicon, misc_getConversionWarnings as getConversionWarnings, misc_getDefaultQuality as getDefaultQuality, misc_getDownloadFilename as getDownloadFilename, misc_getSupportedFormats as getSupportedFormats, misc_getSupportedOutputFormats as getSupportedOutputFormats, misc_minifySvg as minifySvg, misc_numberToOrdinal as numberToOrdinal, misc_numberToRoman as numberToRoman, misc_numberToWords as numberToWords, misc_optimizeSvg as optimizeSvg, misc_ordinalWords as ordinalWords, misc_romanToNumber as romanToNumber, misc_sanitizeSvg as sanitizeSvg, misc_svgToDataUrl as svgToDataUrl, misc_toUnicodeEscape as toUnicodeEscape };
263
+ export { misc_COLOR_PRESETS as COLOR_PRESETS, type misc_CodePoint as CodePoint, type misc_CompressionOptions as CompressionOptions, type misc_CompressionResult as CompressionResult, type misc_ConversionOptions as ConversionOptions, type misc_ConvertImageFormat as ConvertImageFormat, misc_DATA_TYPES as DATA_TYPES, misc_DEFAULT_CONFIG as DEFAULT_CONFIG, misc_DEFAULT_QR_OPTIONS as DEFAULT_QR_OPTIONS, type misc_DataType as DataType, misc_FORMAT_EXTENSIONS as FORMAT_EXTENSIONS, misc_FORMAT_LABELS as FORMAT_LABELS, type misc_FaviconConfig as FaviconConfig, type misc_ImageFormat as ImageFormat, type misc_MetaTags as MetaTags, type misc_OgTags as OgTags, type misc_QrErrorLevel as QrErrorLevel, type misc_QrOptions as QrOptions, type misc_RandomConfig as RandomConfig, type misc_Shape as Shape, type misc_SvgInfo as SvgInfo, type misc_TwitterTags as TwitterTags, misc_analyzeString as analyzeString, misc_analyzeSvg as analyzeSvg, misc_calcResizeDimensions as calcResizeDimensions, misc_calcSavings as calcSavings, misc_charToCodePoint as charToCodePoint, misc_codePointToChar as codePointToChar, misc_detectFormatFromDataUrl as detectFormatFromDataUrl, misc_detectFormatFromFilename as detectFormatFromFilename, misc_formatBytes as formatBytes, misc_formatLabel as formatLabel, misc_formatSvg as formatSvg, misc_fromUnicodeEscape as fromUnicodeEscape, misc_generateData as generateData, misc_generateMetaHtml as generateMetaHtml, misc_generateQrDataUrl as generateQrDataUrl, misc_generateQrSvg as generateQrSvg, misc_generateSingle as generateSingle, misc_generateSvgFavicon as generateSvgFavicon, misc_getConversionWarnings as getConversionWarnings, misc_getDefaultQuality as getDefaultQuality, misc_getDownloadFilename as getDownloadFilename, misc_getSupportedFormats as getSupportedFormats, misc_getSupportedOutputFormats as getSupportedOutputFormats, misc_minifySvg as minifySvg, misc_numberToOrdinal as numberToOrdinal, misc_numberToRoman as numberToRoman, misc_numberToWords as numberToWords, misc_optimizeSvg as optimizeSvg, misc_ordinalWords as ordinalWords, misc_parseMetaTags as parseMetaTags, misc_romanToNumber as romanToNumber, misc_sanitizeSvg as sanitizeSvg, misc_svgToDataUrl as svgToDataUrl, misc_toUnicodeEscape as toUnicodeEscape, misc_validateOgTags as validateOgTags };
199
264
  }
200
265
 
201
- export { getConversionWarnings as A, getDefaultQuality as B, COLOR_PRESETS as C, DATA_TYPES as D, getDownloadFilename as E, FORMAT_EXTENSIONS as F, getSupportedFormats as G, getSupportedOutputFormats as H, type ImageFormat as I, minifySvg as J, numberToOrdinal as K, numberToRoman as L, numberToWords as M, optimizeSvg as N, ordinalWords as O, romanToNumber as P, sanitizeSvg as Q, type RandomConfig as R, type Shape as S, svgToDataUrl as T, toUnicodeEscape as U, type CodePoint as a, type CompressionOptions as b, type CompressionResult as c, type ConversionOptions as d, type ConvertImageFormat as e, DEFAULT_CONFIG as f, type DataType as g, FORMAT_LABELS as h, type FaviconConfig as i, type SvgInfo as j, analyzeString as k, analyzeSvg as l, misc as m, calcResizeDimensions as n, calcSavings as o, charToCodePoint as p, codePointToChar as q, detectFormatFromDataUrl as r, detectFormatFromFilename as s, formatBytes as t, formatLabel as u, formatSvg as v, fromUnicodeEscape as w, generateData as x, generateSingle as y, generateSvgFavicon as z };
266
+ export { romanToNumber as $, generateMetaHtml as A, generateQrDataUrl as B, COLOR_PRESETS as C, DATA_TYPES as D, generateQrSvg as E, FORMAT_EXTENSIONS as F, generateSingle as G, generateSvgFavicon as H, type ImageFormat as I, getConversionWarnings as J, getDefaultQuality as K, getDownloadFilename as L, type MetaTags as M, getSupportedFormats as N, type OgTags as O, getSupportedOutputFormats as P, type QrErrorLevel as Q, type RandomConfig as R, type Shape as S, type TwitterTags as T, minifySvg as U, numberToOrdinal as V, numberToRoman as W, numberToWords as X, optimizeSvg as Y, ordinalWords as Z, parseMetaTags as _, type CodePoint as a, sanitizeSvg as a0, svgToDataUrl as a1, toUnicodeEscape as a2, validateOgTags as a3, type CompressionOptions as b, type CompressionResult as c, type ConversionOptions as d, type ConvertImageFormat as e, DEFAULT_CONFIG as f, DEFAULT_QR_OPTIONS as g, type DataType as h, FORMAT_LABELS as i, type FaviconConfig as j, type QrOptions as k, type SvgInfo as l, misc as m, analyzeString as n, analyzeSvg as o, calcResizeDimensions as p, calcSavings as q, charToCodePoint as r, codePointToChar as s, detectFormatFromDataUrl as t, detectFormatFromFilename as u, formatBytes as v, formatLabel as w, formatSvg as x, fromUnicodeEscape as y, generateData as z };
@@ -12,6 +12,8 @@
12
12
  * FORMAT_EXTENSIONS, FORMAT_LABELS
13
13
  * - number-words : numberToWords, numberToOrdinal, ordinalWords, numberToRoman, romanToNumber
14
14
  * - random-data : generateSingle, generateData, DATA_TYPES
15
+ * - qr-code : generateQrSvg, generateQrDataUrl (SVG works in Node; dataUrl needs canvas)
16
+ * - og-meta : parseMetaTags, validateOgTags, generateMetaHtml
15
17
  *
16
18
  * NOTE: Canvas-based image compression/conversion is not supported in Node. The relevant
17
19
  * functions (compressImage, convertImage) are intentionally omitted; use the REST API or
@@ -147,6 +149,58 @@ declare const DATA_TYPES: {
147
149
  }[];
148
150
  declare function generateSingle(type: DataType, options?: RandomConfig['options']): string;
149
151
  declare function generateData(config: RandomConfig): string[];
152
+ type QrErrorLevel = 'L' | 'M' | 'Q' | 'H';
153
+ interface QrOptions {
154
+ errorLevel?: QrErrorLevel;
155
+ size?: number;
156
+ margin?: number;
157
+ darkColor?: string;
158
+ lightColor?: string;
159
+ }
160
+ declare const DEFAULT_QR_OPTIONS: QrOptions;
161
+ /** Returns an SVG string — works in Node without canvas. */
162
+ declare function generateQrSvg(text: string, options?: QrOptions): Promise<string>;
163
+ /** Returns a data URL (PNG). Requires a canvas implementation in Node — use generateQrSvg for a canvas-free alternative. */
164
+ declare function generateQrDataUrl(text: string, options?: QrOptions): Promise<string>;
165
+ interface OgTags {
166
+ title?: string;
167
+ description?: string;
168
+ image?: string;
169
+ imageAlt?: string;
170
+ imageWidth?: string;
171
+ imageHeight?: string;
172
+ url?: string;
173
+ type?: string;
174
+ siteName?: string;
175
+ locale?: string;
176
+ }
177
+ interface TwitterTags {
178
+ card?: string;
179
+ site?: string;
180
+ creator?: string;
181
+ title?: string;
182
+ description?: string;
183
+ image?: string;
184
+ }
185
+ interface MetaTags {
186
+ og: OgTags;
187
+ twitter: TwitterTags;
188
+ standard: {
189
+ title?: string;
190
+ description?: string;
191
+ keywords?: string;
192
+ canonical?: string;
193
+ robots?: string;
194
+ viewport?: string;
195
+ charset?: string;
196
+ };
197
+ }
198
+ declare function parseMetaTags(html: string): MetaTags;
199
+ declare function validateOgTags(tags: OgTags): {
200
+ warnings: string[];
201
+ missing: string[];
202
+ };
203
+ declare function generateMetaHtml(tags: Partial<OgTags & TwitterTags>): string;
150
204
 
151
205
  declare const misc_COLOR_PRESETS: typeof COLOR_PRESETS;
152
206
  type misc_CodePoint = CodePoint;
@@ -156,14 +210,20 @@ type misc_ConversionOptions = ConversionOptions;
156
210
  type misc_ConvertImageFormat = ConvertImageFormat;
157
211
  declare const misc_DATA_TYPES: typeof DATA_TYPES;
158
212
  declare const misc_DEFAULT_CONFIG: typeof DEFAULT_CONFIG;
213
+ declare const misc_DEFAULT_QR_OPTIONS: typeof DEFAULT_QR_OPTIONS;
159
214
  type misc_DataType = DataType;
160
215
  declare const misc_FORMAT_EXTENSIONS: typeof FORMAT_EXTENSIONS;
161
216
  declare const misc_FORMAT_LABELS: typeof FORMAT_LABELS;
162
217
  type misc_FaviconConfig = FaviconConfig;
163
218
  type misc_ImageFormat = ImageFormat;
219
+ type misc_MetaTags = MetaTags;
220
+ type misc_OgTags = OgTags;
221
+ type misc_QrErrorLevel = QrErrorLevel;
222
+ type misc_QrOptions = QrOptions;
164
223
  type misc_RandomConfig = RandomConfig;
165
224
  type misc_Shape = Shape;
166
225
  type misc_SvgInfo = SvgInfo;
226
+ type misc_TwitterTags = TwitterTags;
167
227
  declare const misc_analyzeString: typeof analyzeString;
168
228
  declare const misc_analyzeSvg: typeof analyzeSvg;
169
229
  declare const misc_calcResizeDimensions: typeof calcResizeDimensions;
@@ -177,6 +237,9 @@ declare const misc_formatLabel: typeof formatLabel;
177
237
  declare const misc_formatSvg: typeof formatSvg;
178
238
  declare const misc_fromUnicodeEscape: typeof fromUnicodeEscape;
179
239
  declare const misc_generateData: typeof generateData;
240
+ declare const misc_generateMetaHtml: typeof generateMetaHtml;
241
+ declare const misc_generateQrDataUrl: typeof generateQrDataUrl;
242
+ declare const misc_generateQrSvg: typeof generateQrSvg;
180
243
  declare const misc_generateSingle: typeof generateSingle;
181
244
  declare const misc_generateSvgFavicon: typeof generateSvgFavicon;
182
245
  declare const misc_getConversionWarnings: typeof getConversionWarnings;
@@ -190,12 +253,14 @@ declare const misc_numberToRoman: typeof numberToRoman;
190
253
  declare const misc_numberToWords: typeof numberToWords;
191
254
  declare const misc_optimizeSvg: typeof optimizeSvg;
192
255
  declare const misc_ordinalWords: typeof ordinalWords;
256
+ declare const misc_parseMetaTags: typeof parseMetaTags;
193
257
  declare const misc_romanToNumber: typeof romanToNumber;
194
258
  declare const misc_sanitizeSvg: typeof sanitizeSvg;
195
259
  declare const misc_svgToDataUrl: typeof svgToDataUrl;
196
260
  declare const misc_toUnicodeEscape: typeof toUnicodeEscape;
261
+ declare const misc_validateOgTags: typeof validateOgTags;
197
262
  declare namespace misc {
198
- export { misc_COLOR_PRESETS as COLOR_PRESETS, type misc_CodePoint as CodePoint, type misc_CompressionOptions as CompressionOptions, type misc_CompressionResult as CompressionResult, type misc_ConversionOptions as ConversionOptions, type misc_ConvertImageFormat as ConvertImageFormat, misc_DATA_TYPES as DATA_TYPES, misc_DEFAULT_CONFIG as DEFAULT_CONFIG, type misc_DataType as DataType, misc_FORMAT_EXTENSIONS as FORMAT_EXTENSIONS, misc_FORMAT_LABELS as FORMAT_LABELS, type misc_FaviconConfig as FaviconConfig, type misc_ImageFormat as ImageFormat, type misc_RandomConfig as RandomConfig, type misc_Shape as Shape, type misc_SvgInfo as SvgInfo, misc_analyzeString as analyzeString, misc_analyzeSvg as analyzeSvg, misc_calcResizeDimensions as calcResizeDimensions, misc_calcSavings as calcSavings, misc_charToCodePoint as charToCodePoint, misc_codePointToChar as codePointToChar, misc_detectFormatFromDataUrl as detectFormatFromDataUrl, misc_detectFormatFromFilename as detectFormatFromFilename, misc_formatBytes as formatBytes, misc_formatLabel as formatLabel, misc_formatSvg as formatSvg, misc_fromUnicodeEscape as fromUnicodeEscape, misc_generateData as generateData, misc_generateSingle as generateSingle, misc_generateSvgFavicon as generateSvgFavicon, misc_getConversionWarnings as getConversionWarnings, misc_getDefaultQuality as getDefaultQuality, misc_getDownloadFilename as getDownloadFilename, misc_getSupportedFormats as getSupportedFormats, misc_getSupportedOutputFormats as getSupportedOutputFormats, misc_minifySvg as minifySvg, misc_numberToOrdinal as numberToOrdinal, misc_numberToRoman as numberToRoman, misc_numberToWords as numberToWords, misc_optimizeSvg as optimizeSvg, misc_ordinalWords as ordinalWords, misc_romanToNumber as romanToNumber, misc_sanitizeSvg as sanitizeSvg, misc_svgToDataUrl as svgToDataUrl, misc_toUnicodeEscape as toUnicodeEscape };
263
+ export { misc_COLOR_PRESETS as COLOR_PRESETS, type misc_CodePoint as CodePoint, type misc_CompressionOptions as CompressionOptions, type misc_CompressionResult as CompressionResult, type misc_ConversionOptions as ConversionOptions, type misc_ConvertImageFormat as ConvertImageFormat, misc_DATA_TYPES as DATA_TYPES, misc_DEFAULT_CONFIG as DEFAULT_CONFIG, misc_DEFAULT_QR_OPTIONS as DEFAULT_QR_OPTIONS, type misc_DataType as DataType, misc_FORMAT_EXTENSIONS as FORMAT_EXTENSIONS, misc_FORMAT_LABELS as FORMAT_LABELS, type misc_FaviconConfig as FaviconConfig, type misc_ImageFormat as ImageFormat, type misc_MetaTags as MetaTags, type misc_OgTags as OgTags, type misc_QrErrorLevel as QrErrorLevel, type misc_QrOptions as QrOptions, type misc_RandomConfig as RandomConfig, type misc_Shape as Shape, type misc_SvgInfo as SvgInfo, type misc_TwitterTags as TwitterTags, misc_analyzeString as analyzeString, misc_analyzeSvg as analyzeSvg, misc_calcResizeDimensions as calcResizeDimensions, misc_calcSavings as calcSavings, misc_charToCodePoint as charToCodePoint, misc_codePointToChar as codePointToChar, misc_detectFormatFromDataUrl as detectFormatFromDataUrl, misc_detectFormatFromFilename as detectFormatFromFilename, misc_formatBytes as formatBytes, misc_formatLabel as formatLabel, misc_formatSvg as formatSvg, misc_fromUnicodeEscape as fromUnicodeEscape, misc_generateData as generateData, misc_generateMetaHtml as generateMetaHtml, misc_generateQrDataUrl as generateQrDataUrl, misc_generateQrSvg as generateQrSvg, misc_generateSingle as generateSingle, misc_generateSvgFavicon as generateSvgFavicon, misc_getConversionWarnings as getConversionWarnings, misc_getDefaultQuality as getDefaultQuality, misc_getDownloadFilename as getDownloadFilename, misc_getSupportedFormats as getSupportedFormats, misc_getSupportedOutputFormats as getSupportedOutputFormats, misc_minifySvg as minifySvg, misc_numberToOrdinal as numberToOrdinal, misc_numberToRoman as numberToRoman, misc_numberToWords as numberToWords, misc_optimizeSvg as optimizeSvg, misc_ordinalWords as ordinalWords, misc_parseMetaTags as parseMetaTags, misc_romanToNumber as romanToNumber, misc_sanitizeSvg as sanitizeSvg, misc_svgToDataUrl as svgToDataUrl, misc_toUnicodeEscape as toUnicodeEscape, misc_validateOgTags as validateOgTags };
199
264
  }
200
265
 
201
- export { getConversionWarnings as A, getDefaultQuality as B, COLOR_PRESETS as C, DATA_TYPES as D, getDownloadFilename as E, FORMAT_EXTENSIONS as F, getSupportedFormats as G, getSupportedOutputFormats as H, type ImageFormat as I, minifySvg as J, numberToOrdinal as K, numberToRoman as L, numberToWords as M, optimizeSvg as N, ordinalWords as O, romanToNumber as P, sanitizeSvg as Q, type RandomConfig as R, type Shape as S, svgToDataUrl as T, toUnicodeEscape as U, type CodePoint as a, type CompressionOptions as b, type CompressionResult as c, type ConversionOptions as d, type ConvertImageFormat as e, DEFAULT_CONFIG as f, type DataType as g, FORMAT_LABELS as h, type FaviconConfig as i, type SvgInfo as j, analyzeString as k, analyzeSvg as l, misc as m, calcResizeDimensions as n, calcSavings as o, charToCodePoint as p, codePointToChar as q, detectFormatFromDataUrl as r, detectFormatFromFilename as s, formatBytes as t, formatLabel as u, formatSvg as v, fromUnicodeEscape as w, generateData as x, generateSingle as y, generateSvgFavicon as z };
266
+ export { romanToNumber as $, generateMetaHtml as A, generateQrDataUrl as B, COLOR_PRESETS as C, DATA_TYPES as D, generateQrSvg as E, FORMAT_EXTENSIONS as F, generateSingle as G, generateSvgFavicon as H, type ImageFormat as I, getConversionWarnings as J, getDefaultQuality as K, getDownloadFilename as L, type MetaTags as M, getSupportedFormats as N, type OgTags as O, getSupportedOutputFormats as P, type QrErrorLevel as Q, type RandomConfig as R, type Shape as S, type TwitterTags as T, minifySvg as U, numberToOrdinal as V, numberToRoman as W, numberToWords as X, optimizeSvg as Y, ordinalWords as Z, parseMetaTags as _, type CodePoint as a, sanitizeSvg as a0, svgToDataUrl as a1, toUnicodeEscape as a2, validateOgTags as a3, type CompressionOptions as b, type CompressionResult as c, type ConversionOptions as d, type ConvertImageFormat as e, DEFAULT_CONFIG as f, DEFAULT_QR_OPTIONS as g, type DataType as h, FORMAT_LABELS as i, type FaviconConfig as j, type QrOptions as k, type SvgInfo as l, misc as m, analyzeString as n, analyzeSvg as o, calcResizeDimensions as p, calcSavings as q, charToCodePoint as r, codePointToChar as s, detectFormatFromDataUrl as t, detectFormatFromFilename as u, formatBytes as v, formatLabel as w, formatSvg as x, fromUnicodeEscape as y, generateData as z };