@willwade/aac-processors 0.0.18 → 0.0.19
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.ts +1 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './core/baseProcessor';
|
|
|
10
10
|
export * from './core/stringCasing';
|
|
11
11
|
export * from './processors';
|
|
12
12
|
export * as Analytics from './utilities/analytics';
|
|
13
|
+
export * from './utilities/analytics';
|
|
13
14
|
export * as Validation from './validation';
|
|
14
15
|
export * as Gridset from './gridset';
|
|
15
16
|
export * as Snap from './snap';
|
package/dist/index.js
CHANGED
|
@@ -52,6 +52,8 @@ __exportStar(require("./processors"), exports);
|
|
|
52
52
|
// ===================================================================
|
|
53
53
|
// Analytics namespace
|
|
54
54
|
exports.Analytics = __importStar(require("./utilities/analytics"));
|
|
55
|
+
// Also export analytics classes directly for convenience
|
|
56
|
+
__exportStar(require("./utilities/analytics"), exports);
|
|
55
57
|
// Validation namespace
|
|
56
58
|
exports.Validation = __importStar(require("./validation"));
|
|
57
59
|
// Processor namespaces (platform-specific utilities)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@willwade/aac-processors",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"description": "A comprehensive TypeScript library for processing AAC (Augmentative and Alternative Communication) file formats with translation support",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|