driftdetect-core 0.4.5 → 0.5.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/LICENSE +21 -0
- package/dist/boundaries/boundary-scanner.d.ts.map +1 -1
- package/dist/boundaries/boundary-scanner.js +184 -18
- package/dist/boundaries/boundary-scanner.js.map +1 -1
- package/dist/boundaries/types.d.ts +34 -2
- package/dist/boundaries/types.d.ts.map +1 -1
- package/dist/call-graph/analysis/graph-builder.d.ts +3 -0
- package/dist/call-graph/analysis/graph-builder.d.ts.map +1 -1
- package/dist/call-graph/analysis/graph-builder.js +81 -18
- package/dist/call-graph/analysis/graph-builder.js.map +1 -1
- package/dist/call-graph/extractors/csharp-data-access-extractor.d.ts +8 -0
- package/dist/call-graph/extractors/csharp-data-access-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/csharp-data-access-extractor.js +18 -5
- package/dist/call-graph/extractors/csharp-data-access-extractor.js.map +1 -1
- package/dist/call-graph/extractors/csharp-extractor.d.ts +35 -0
- package/dist/call-graph/extractors/csharp-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/csharp-extractor.js +362 -4
- package/dist/call-graph/extractors/csharp-extractor.js.map +1 -1
- package/dist/call-graph/extractors/csharp-hybrid-extractor.d.ts +37 -0
- package/dist/call-graph/extractors/csharp-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/csharp-hybrid-extractor.js +408 -0
- package/dist/call-graph/extractors/csharp-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/extractors/data-access-extractor.d.ts +16 -2
- package/dist/call-graph/extractors/data-access-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/data-access-extractor.js +114 -5
- package/dist/call-graph/extractors/data-access-extractor.js.map +1 -1
- package/dist/call-graph/extractors/hybrid-extractor-base.d.ts +102 -0
- package/dist/call-graph/extractors/hybrid-extractor-base.d.ts.map +1 -0
- package/dist/call-graph/extractors/hybrid-extractor-base.js +289 -0
- package/dist/call-graph/extractors/hybrid-extractor-base.js.map +1 -0
- package/dist/call-graph/extractors/index.d.ts +17 -13
- package/dist/call-graph/extractors/index.d.ts.map +1 -1
- package/dist/call-graph/extractors/index.js +24 -23
- package/dist/call-graph/extractors/index.js.map +1 -1
- package/dist/call-graph/extractors/java-data-access-extractor.d.ts +8 -0
- package/dist/call-graph/extractors/java-data-access-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/java-data-access-extractor.js +20 -6
- package/dist/call-graph/extractors/java-data-access-extractor.js.map +1 -1
- package/dist/call-graph/extractors/java-extractor.d.ts +15 -0
- package/dist/call-graph/extractors/java-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/java-extractor.js +120 -4
- package/dist/call-graph/extractors/java-extractor.js.map +1 -1
- package/dist/call-graph/extractors/java-hybrid-extractor.d.ts +36 -0
- package/dist/call-graph/extractors/java-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/java-hybrid-extractor.js +426 -0
- package/dist/call-graph/extractors/java-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/extractors/php-data-access-extractor.d.ts +8 -0
- package/dist/call-graph/extractors/php-data-access-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/php-data-access-extractor.js +20 -6
- package/dist/call-graph/extractors/php-data-access-extractor.js.map +1 -1
- package/dist/call-graph/extractors/php-extractor.d.ts +48 -1
- package/dist/call-graph/extractors/php-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/php-extractor.js +460 -6
- package/dist/call-graph/extractors/php-extractor.js.map +1 -1
- package/dist/call-graph/extractors/php-hybrid-extractor.d.ts +35 -0
- package/dist/call-graph/extractors/php-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/php-hybrid-extractor.js +393 -0
- package/dist/call-graph/extractors/php-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/extractors/python-data-access-extractor.d.ts +8 -0
- package/dist/call-graph/extractors/python-data-access-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/python-data-access-extractor.js +20 -6
- package/dist/call-graph/extractors/python-data-access-extractor.js.map +1 -1
- package/dist/call-graph/extractors/python-hybrid-extractor.d.ts +85 -0
- package/dist/call-graph/extractors/python-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/python-hybrid-extractor.js +462 -0
- package/dist/call-graph/extractors/python-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/extractors/regex/base-regex-extractor.d.ts +154 -0
- package/dist/call-graph/extractors/regex/base-regex-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/base-regex-extractor.js +346 -0
- package/dist/call-graph/extractors/regex/base-regex-extractor.js.map +1 -0
- package/dist/call-graph/extractors/regex/csharp-regex.d.ts +34 -0
- package/dist/call-graph/extractors/regex/csharp-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/csharp-regex.js +393 -0
- package/dist/call-graph/extractors/regex/csharp-regex.js.map +1 -0
- package/dist/call-graph/extractors/regex/index.d.ts +25 -0
- package/dist/call-graph/extractors/regex/index.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/index.js +66 -0
- package/dist/call-graph/extractors/regex/index.js.map +1 -0
- package/dist/call-graph/extractors/regex/java-regex.d.ts +34 -0
- package/dist/call-graph/extractors/regex/java-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/java-regex.js +327 -0
- package/dist/call-graph/extractors/regex/java-regex.js.map +1 -0
- package/dist/call-graph/extractors/regex/php-regex.d.ts +30 -0
- package/dist/call-graph/extractors/regex/php-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/php-regex.js +333 -0
- package/dist/call-graph/extractors/regex/php-regex.js.map +1 -0
- package/dist/call-graph/extractors/regex/python-regex.d.ts +46 -0
- package/dist/call-graph/extractors/regex/python-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/python-regex.js +380 -0
- package/dist/call-graph/extractors/regex/python-regex.js.map +1 -0
- package/dist/call-graph/extractors/regex/typescript-regex.d.ts +27 -0
- package/dist/call-graph/extractors/regex/typescript-regex.d.ts.map +1 -0
- package/dist/call-graph/extractors/regex/typescript-regex.js +349 -0
- package/dist/call-graph/extractors/regex/typescript-regex.js.map +1 -0
- package/dist/call-graph/extractors/semantic-data-access-scanner.d.ts +11 -0
- package/dist/call-graph/extractors/semantic-data-access-scanner.d.ts.map +1 -1
- package/dist/call-graph/extractors/semantic-data-access-scanner.js +53 -2
- package/dist/call-graph/extractors/semantic-data-access-scanner.js.map +1 -1
- package/dist/call-graph/extractors/types.d.ts +111 -0
- package/dist/call-graph/extractors/types.d.ts.map +1 -0
- package/dist/call-graph/extractors/types.js +68 -0
- package/dist/call-graph/extractors/types.js.map +1 -0
- package/dist/call-graph/extractors/typescript-data-access-extractor.d.ts +8 -0
- package/dist/call-graph/extractors/typescript-data-access-extractor.d.ts.map +1 -1
- package/dist/call-graph/extractors/typescript-data-access-extractor.js +31 -10
- package/dist/call-graph/extractors/typescript-data-access-extractor.js.map +1 -1
- package/dist/call-graph/extractors/typescript-hybrid-extractor.d.ts +116 -0
- package/dist/call-graph/extractors/typescript-hybrid-extractor.d.ts.map +1 -0
- package/dist/call-graph/extractors/typescript-hybrid-extractor.js +635 -0
- package/dist/call-graph/extractors/typescript-hybrid-extractor.js.map +1 -0
- package/dist/call-graph/index.d.ts +2 -4
- package/dist/call-graph/index.d.ts.map +1 -1
- package/dist/call-graph/index.js +5 -6
- package/dist/call-graph/index.js.map +1 -1
- package/dist/error-handling/error-handling-analyzer.d.ts +73 -0
- package/dist/error-handling/error-handling-analyzer.d.ts.map +1 -0
- package/dist/error-handling/error-handling-analyzer.js +706 -0
- package/dist/error-handling/error-handling-analyzer.js.map +1 -0
- package/dist/error-handling/index.d.ts +8 -0
- package/dist/error-handling/index.d.ts.map +1 -0
- package/dist/error-handling/index.js +8 -0
- package/dist/error-handling/index.js.map +1 -0
- package/dist/error-handling/types.d.ts +307 -0
- package/dist/error-handling/types.d.ts.map +1 -0
- package/dist/error-handling/types.js +7 -0
- package/dist/error-handling/types.js.map +1 -0
- package/dist/index.d.ts +18 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +44 -5
- package/dist/index.js.map +1 -1
- package/dist/lake/pattern-shard-store.d.ts +6 -0
- package/dist/lake/pattern-shard-store.d.ts.map +1 -1
- package/dist/lake/pattern-shard-store.js +6 -0
- package/dist/lake/pattern-shard-store.js.map +1 -1
- package/dist/language-intelligence/base-normalizer.d.ts +68 -0
- package/dist/language-intelligence/base-normalizer.d.ts.map +1 -0
- package/dist/language-intelligence/base-normalizer.js +210 -0
- package/dist/language-intelligence/base-normalizer.js.map +1 -0
- package/dist/language-intelligence/framework-registry.d.ts +89 -0
- package/dist/language-intelligence/framework-registry.d.ts.map +1 -0
- package/dist/language-intelligence/framework-registry.js +165 -0
- package/dist/language-intelligence/framework-registry.js.map +1 -0
- package/dist/language-intelligence/frameworks/aspnet.d.ts +11 -0
- package/dist/language-intelligence/frameworks/aspnet.d.ts.map +1 -0
- package/dist/language-intelligence/frameworks/aspnet.js +325 -0
- package/dist/language-intelligence/frameworks/aspnet.js.map +1 -0
- package/dist/language-intelligence/frameworks/fastapi.d.ts +11 -0
- package/dist/language-intelligence/frameworks/fastapi.d.ts.map +1 -0
- package/dist/language-intelligence/frameworks/fastapi.js +188 -0
- package/dist/language-intelligence/frameworks/fastapi.js.map +1 -0
- package/dist/language-intelligence/frameworks/index.d.ts +32 -0
- package/dist/language-intelligence/frameworks/index.d.ts.map +1 -0
- package/dist/language-intelligence/frameworks/index.js +51 -0
- package/dist/language-intelligence/frameworks/index.js.map +1 -0
- package/dist/language-intelligence/frameworks/laravel.d.ts +12 -0
- package/dist/language-intelligence/frameworks/laravel.d.ts.map +1 -0
- package/dist/language-intelligence/frameworks/laravel.js +194 -0
- package/dist/language-intelligence/frameworks/laravel.js.map +1 -0
- package/dist/language-intelligence/frameworks/nestjs.d.ts +11 -0
- package/dist/language-intelligence/frameworks/nestjs.d.ts.map +1 -0
- package/dist/language-intelligence/frameworks/nestjs.js +307 -0
- package/dist/language-intelligence/frameworks/nestjs.js.map +1 -0
- package/dist/language-intelligence/frameworks/spring.d.ts +11 -0
- package/dist/language-intelligence/frameworks/spring.d.ts.map +1 -0
- package/dist/language-intelligence/frameworks/spring.js +369 -0
- package/dist/language-intelligence/frameworks/spring.js.map +1 -0
- package/dist/language-intelligence/index.d.ts +33 -0
- package/dist/language-intelligence/index.d.ts.map +1 -0
- package/dist/language-intelligence/index.js +37 -0
- package/dist/language-intelligence/index.js.map +1 -0
- package/dist/language-intelligence/language-intelligence.d.ts +99 -0
- package/dist/language-intelligence/language-intelligence.d.ts.map +1 -0
- package/dist/language-intelligence/language-intelligence.js +239 -0
- package/dist/language-intelligence/language-intelligence.js.map +1 -0
- package/dist/language-intelligence/normalizers/csharp-normalizer.d.ts +39 -0
- package/dist/language-intelligence/normalizers/csharp-normalizer.d.ts.map +1 -0
- package/dist/language-intelligence/normalizers/csharp-normalizer.js +86 -0
- package/dist/language-intelligence/normalizers/csharp-normalizer.js.map +1 -0
- package/dist/language-intelligence/normalizers/index.d.ts +25 -0
- package/dist/language-intelligence/normalizers/index.d.ts.map +1 -0
- package/dist/language-intelligence/normalizers/index.js +60 -0
- package/dist/language-intelligence/normalizers/index.js.map +1 -0
- package/dist/language-intelligence/normalizers/java-normalizer.d.ts +39 -0
- package/dist/language-intelligence/normalizers/java-normalizer.d.ts.map +1 -0
- package/dist/language-intelligence/normalizers/java-normalizer.js +96 -0
- package/dist/language-intelligence/normalizers/java-normalizer.js.map +1 -0
- package/dist/language-intelligence/normalizers/php-normalizer.d.ts +39 -0
- package/dist/language-intelligence/normalizers/php-normalizer.d.ts.map +1 -0
- package/dist/language-intelligence/normalizers/php-normalizer.js +86 -0
- package/dist/language-intelligence/normalizers/php-normalizer.js.map +1 -0
- package/dist/language-intelligence/normalizers/python-normalizer.d.ts +39 -0
- package/dist/language-intelligence/normalizers/python-normalizer.d.ts.map +1 -0
- package/dist/language-intelligence/normalizers/python-normalizer.js +95 -0
- package/dist/language-intelligence/normalizers/python-normalizer.js.map +1 -0
- package/dist/language-intelligence/normalizers/typescript-normalizer.d.ts +39 -0
- package/dist/language-intelligence/normalizers/typescript-normalizer.d.ts.map +1 -0
- package/dist/language-intelligence/normalizers/typescript-normalizer.js +84 -0
- package/dist/language-intelligence/normalizers/typescript-normalizer.js.map +1 -0
- package/dist/language-intelligence/types.d.ts +270 -0
- package/dist/language-intelligence/types.d.ts.map +1 -0
- package/dist/language-intelligence/types.js +9 -0
- package/dist/language-intelligence/types.js.map +1 -0
- package/dist/module-coupling/coupling-analyzer.d.ts +73 -0
- package/dist/module-coupling/coupling-analyzer.d.ts.map +1 -0
- package/dist/module-coupling/coupling-analyzer.js +668 -0
- package/dist/module-coupling/coupling-analyzer.js.map +1 -0
- package/dist/module-coupling/index.d.ts +9 -0
- package/dist/module-coupling/index.d.ts.map +1 -0
- package/dist/module-coupling/index.js +9 -0
- package/dist/module-coupling/index.js.map +1 -0
- package/dist/module-coupling/types.d.ts +273 -0
- package/dist/module-coupling/types.d.ts.map +1 -0
- package/dist/module-coupling/types.js +8 -0
- package/dist/module-coupling/types.js.map +1 -0
- package/dist/patterns/adapters/index.d.ts +11 -0
- package/dist/patterns/adapters/index.d.ts.map +1 -0
- package/dist/patterns/adapters/index.js +11 -0
- package/dist/patterns/adapters/index.js.map +1 -0
- package/dist/patterns/adapters/pattern-store-adapter.d.ts +59 -0
- package/dist/patterns/adapters/pattern-store-adapter.d.ts.map +1 -0
- package/dist/patterns/adapters/pattern-store-adapter.js +468 -0
- package/dist/patterns/adapters/pattern-store-adapter.js.map +1 -0
- package/dist/patterns/adapters/service-factory.d.ts +40 -0
- package/dist/patterns/adapters/service-factory.d.ts.map +1 -0
- package/dist/patterns/adapters/service-factory.js +144 -0
- package/dist/patterns/adapters/service-factory.js.map +1 -0
- package/dist/patterns/errors.d.ts +32 -0
- package/dist/patterns/errors.d.ts.map +1 -0
- package/dist/patterns/errors.js +45 -0
- package/dist/patterns/errors.js.map +1 -0
- package/dist/patterns/impl/cached-repository.d.ts +79 -0
- package/dist/patterns/impl/cached-repository.d.ts.map +1 -0
- package/dist/patterns/impl/cached-repository.js +296 -0
- package/dist/patterns/impl/cached-repository.js.map +1 -0
- package/dist/patterns/impl/file-repository.d.ts +75 -0
- package/dist/patterns/impl/file-repository.d.ts.map +1 -0
- package/dist/patterns/impl/file-repository.js +507 -0
- package/dist/patterns/impl/file-repository.js.map +1 -0
- package/dist/patterns/impl/index.d.ts +16 -0
- package/dist/patterns/impl/index.d.ts.map +1 -0
- package/dist/patterns/impl/index.js +21 -0
- package/dist/patterns/impl/index.js.map +1 -0
- package/dist/patterns/impl/memory-repository.d.ts +56 -0
- package/dist/patterns/impl/memory-repository.d.ts.map +1 -0
- package/dist/patterns/impl/memory-repository.js +323 -0
- package/dist/patterns/impl/memory-repository.js.map +1 -0
- package/dist/patterns/impl/pattern-service.d.ts +52 -0
- package/dist/patterns/impl/pattern-service.d.ts.map +1 -0
- package/dist/patterns/impl/pattern-service.js +382 -0
- package/dist/patterns/impl/pattern-service.js.map +1 -0
- package/dist/patterns/impl/repository-factory.d.ts +44 -0
- package/dist/patterns/impl/repository-factory.d.ts.map +1 -0
- package/dist/patterns/impl/repository-factory.js +140 -0
- package/dist/patterns/impl/repository-factory.js.map +1 -0
- package/dist/patterns/impl/unified-file-repository.d.ts +111 -0
- package/dist/patterns/impl/unified-file-repository.d.ts.map +1 -0
- package/dist/patterns/impl/unified-file-repository.js +677 -0
- package/dist/patterns/impl/unified-file-repository.js.map +1 -0
- package/dist/patterns/index.d.ts +23 -0
- package/dist/patterns/index.d.ts.map +1 -0
- package/dist/patterns/index.js +41 -0
- package/dist/patterns/index.js.map +1 -0
- package/dist/patterns/repository.d.ts +241 -0
- package/dist/patterns/repository.d.ts.map +1 -0
- package/dist/patterns/repository.js +23 -0
- package/dist/patterns/repository.js.map +1 -0
- package/dist/patterns/service.d.ts +245 -0
- package/dist/patterns/service.d.ts.map +1 -0
- package/dist/patterns/service.js +25 -0
- package/dist/patterns/service.js.map +1 -0
- package/dist/patterns/types.d.ts +227 -0
- package/dist/patterns/types.d.ts.map +1 -0
- package/dist/patterns/types.js +117 -0
- package/dist/patterns/types.js.map +1 -0
- package/dist/scanner/file-processor-worker.d.ts +66 -0
- package/dist/scanner/file-processor-worker.d.ts.map +1 -0
- package/dist/scanner/file-processor-worker.js +189 -0
- package/dist/scanner/file-processor-worker.js.map +1 -0
- package/dist/scanner/index.d.ts +2 -0
- package/dist/scanner/index.d.ts.map +1 -1
- package/dist/scanner/index.js +2 -0
- package/dist/scanner/index.js.map +1 -1
- package/dist/scanner/threaded-worker-pool.d.ts +182 -0
- package/dist/scanner/threaded-worker-pool.d.ts.map +1 -0
- package/dist/scanner/threaded-worker-pool.js +243 -0
- package/dist/scanner/threaded-worker-pool.js.map +1 -0
- package/dist/store/pattern-store.d.ts +6 -0
- package/dist/store/pattern-store.d.ts.map +1 -1
- package/dist/store/pattern-store.js +6 -0
- package/dist/store/pattern-store.js.map +1 -1
- package/dist/store/types.d.ts +6 -3
- package/dist/store/types.d.ts.map +1 -1
- package/dist/store/types.js.map +1 -1
- package/dist/test-topology/extractors/base-test-extractor.d.ts +89 -0
- package/dist/test-topology/extractors/base-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/base-test-extractor.js +187 -0
- package/dist/test-topology/extractors/base-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/csharp-test-extractor.d.ts +23 -0
- package/dist/test-topology/extractors/csharp-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/csharp-test-extractor.js +367 -0
- package/dist/test-topology/extractors/csharp-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/index.d.ts +12 -0
- package/dist/test-topology/extractors/index.d.ts.map +1 -0
- package/dist/test-topology/extractors/index.js +12 -0
- package/dist/test-topology/extractors/index.js.map +1 -0
- package/dist/test-topology/extractors/java-test-extractor.d.ts +20 -0
- package/dist/test-topology/extractors/java-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/java-test-extractor.js +275 -0
- package/dist/test-topology/extractors/java-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/php-test-extractor.d.ts +24 -0
- package/dist/test-topology/extractors/php-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/php-test-extractor.js +409 -0
- package/dist/test-topology/extractors/php-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/python-test-extractor.d.ts +23 -0
- package/dist/test-topology/extractors/python-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/python-test-extractor.js +342 -0
- package/dist/test-topology/extractors/python-test-extractor.js.map +1 -0
- package/dist/test-topology/extractors/regex/csharp-test-regex.d.ts +51 -0
- package/dist/test-topology/extractors/regex/csharp-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/csharp-test-regex.js +383 -0
- package/dist/test-topology/extractors/regex/csharp-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/regex/index.d.ts +18 -0
- package/dist/test-topology/extractors/regex/index.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/index.js +43 -0
- package/dist/test-topology/extractors/regex/index.js.map +1 -0
- package/dist/test-topology/extractors/regex/java-test-regex.d.ts +50 -0
- package/dist/test-topology/extractors/regex/java-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/java-test-regex.js +370 -0
- package/dist/test-topology/extractors/regex/java-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/regex/php-test-regex.d.ts +56 -0
- package/dist/test-topology/extractors/regex/php-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/php-test-regex.js +503 -0
- package/dist/test-topology/extractors/regex/php-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/regex/python-test-regex.d.ts +57 -0
- package/dist/test-topology/extractors/regex/python-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/python-test-regex.js +381 -0
- package/dist/test-topology/extractors/regex/python-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/regex/typescript-test-regex.d.ts +60 -0
- package/dist/test-topology/extractors/regex/typescript-test-regex.d.ts.map +1 -0
- package/dist/test-topology/extractors/regex/typescript-test-regex.js +368 -0
- package/dist/test-topology/extractors/regex/typescript-test-regex.js.map +1 -0
- package/dist/test-topology/extractors/typescript-test-extractor.d.ts +24 -0
- package/dist/test-topology/extractors/typescript-test-extractor.d.ts.map +1 -0
- package/dist/test-topology/extractors/typescript-test-extractor.js +266 -0
- package/dist/test-topology/extractors/typescript-test-extractor.js.map +1 -0
- package/dist/test-topology/hybrid-test-topology-analyzer.d.ts +98 -0
- package/dist/test-topology/hybrid-test-topology-analyzer.d.ts.map +1 -0
- package/dist/test-topology/hybrid-test-topology-analyzer.js +555 -0
- package/dist/test-topology/hybrid-test-topology-analyzer.js.map +1 -0
- package/dist/test-topology/index.d.ts +16 -0
- package/dist/test-topology/index.d.ts.map +1 -0
- package/dist/test-topology/index.js +19 -0
- package/dist/test-topology/index.js.map +1 -0
- package/dist/test-topology/test-topology-analyzer.d.ts +85 -0
- package/dist/test-topology/test-topology-analyzer.d.ts.map +1 -0
- package/dist/test-topology/test-topology-analyzer.js +538 -0
- package/dist/test-topology/test-topology-analyzer.js.map +1 -0
- package/dist/test-topology/types.d.ts +300 -0
- package/dist/test-topology/types.d.ts.map +1 -0
- package/dist/test-topology/types.js +7 -0
- package/dist/test-topology/types.js.map +1 -0
- package/dist/unified-provider/compat/index.d.ts +11 -0
- package/dist/unified-provider/compat/index.d.ts.map +1 -0
- package/dist/unified-provider/compat/index.js +13 -0
- package/dist/unified-provider/compat/index.js.map +1 -0
- package/dist/unified-provider/compat/legacy-extractors.d.ts +63 -0
- package/dist/unified-provider/compat/legacy-extractors.d.ts.map +1 -0
- package/dist/unified-provider/compat/legacy-extractors.js +80 -0
- package/dist/unified-provider/compat/legacy-extractors.js.map +1 -0
- package/dist/unified-provider/compat/legacy-scanner.d.ts +28 -0
- package/dist/unified-provider/compat/legacy-scanner.d.ts.map +1 -0
- package/dist/unified-provider/compat/legacy-scanner.js +31 -0
- package/dist/unified-provider/compat/legacy-scanner.js.map +1 -0
- package/dist/unified-provider/index.d.ts +28 -0
- package/dist/unified-provider/index.d.ts.map +1 -0
- package/dist/unified-provider/index.js +47 -0
- package/dist/unified-provider/index.js.map +1 -0
- package/dist/unified-provider/integration/index.d.ts +9 -0
- package/dist/unified-provider/integration/index.d.ts.map +1 -0
- package/dist/unified-provider/integration/index.js +11 -0
- package/dist/unified-provider/integration/index.js.map +1 -0
- package/dist/unified-provider/integration/unified-data-access-adapter.d.ts +75 -0
- package/dist/unified-provider/integration/unified-data-access-adapter.d.ts.map +1 -0
- package/dist/unified-provider/integration/unified-data-access-adapter.js +210 -0
- package/dist/unified-provider/integration/unified-data-access-adapter.js.map +1 -0
- package/dist/unified-provider/integration/unified-scanner.d.ts +90 -0
- package/dist/unified-provider/integration/unified-scanner.d.ts.map +1 -0
- package/dist/unified-provider/integration/unified-scanner.js +369 -0
- package/dist/unified-provider/integration/unified-scanner.js.map +1 -0
- package/dist/unified-provider/matching/base-matcher.d.ts +80 -0
- package/dist/unified-provider/matching/base-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/base-matcher.js +196 -0
- package/dist/unified-provider/matching/base-matcher.js.map +1 -0
- package/dist/unified-provider/matching/django-matcher.d.ts +32 -0
- package/dist/unified-provider/matching/django-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/django-matcher.js +107 -0
- package/dist/unified-provider/matching/django-matcher.js.map +1 -0
- package/dist/unified-provider/matching/drizzle-matcher.d.ts +25 -0
- package/dist/unified-provider/matching/drizzle-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/drizzle-matcher.js +123 -0
- package/dist/unified-provider/matching/drizzle-matcher.js.map +1 -0
- package/dist/unified-provider/matching/efcore-matcher.d.ts +27 -0
- package/dist/unified-provider/matching/efcore-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/efcore-matcher.js +88 -0
- package/dist/unified-provider/matching/efcore-matcher.js.map +1 -0
- package/dist/unified-provider/matching/eloquent-matcher.d.ts +32 -0
- package/dist/unified-provider/matching/eloquent-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/eloquent-matcher.js +162 -0
- package/dist/unified-provider/matching/eloquent-matcher.js.map +1 -0
- package/dist/unified-provider/matching/index.d.ts +19 -0
- package/dist/unified-provider/matching/index.d.ts.map +1 -0
- package/dist/unified-provider/matching/index.js +24 -0
- package/dist/unified-provider/matching/index.js.map +1 -0
- package/dist/unified-provider/matching/knex-matcher.d.ts +26 -0
- package/dist/unified-provider/matching/knex-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/knex-matcher.js +109 -0
- package/dist/unified-provider/matching/knex-matcher.js.map +1 -0
- package/dist/unified-provider/matching/matcher-registry.d.ts +55 -0
- package/dist/unified-provider/matching/matcher-registry.d.ts.map +1 -0
- package/dist/unified-provider/matching/matcher-registry.js +130 -0
- package/dist/unified-provider/matching/matcher-registry.js.map +1 -0
- package/dist/unified-provider/matching/mongoose-matcher.d.ts +30 -0
- package/dist/unified-provider/matching/mongoose-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/mongoose-matcher.js +132 -0
- package/dist/unified-provider/matching/mongoose-matcher.js.map +1 -0
- package/dist/unified-provider/matching/prisma-matcher.d.ts +31 -0
- package/dist/unified-provider/matching/prisma-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/prisma-matcher.js +123 -0
- package/dist/unified-provider/matching/prisma-matcher.js.map +1 -0
- package/dist/unified-provider/matching/raw-sql-matcher.d.ts +31 -0
- package/dist/unified-provider/matching/raw-sql-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/raw-sql-matcher.js +173 -0
- package/dist/unified-provider/matching/raw-sql-matcher.js.map +1 -0
- package/dist/unified-provider/matching/sequelize-matcher.d.ts +28 -0
- package/dist/unified-provider/matching/sequelize-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/sequelize-matcher.js +132 -0
- package/dist/unified-provider/matching/sequelize-matcher.js.map +1 -0
- package/dist/unified-provider/matching/spring-data-matcher.d.ts +32 -0
- package/dist/unified-provider/matching/spring-data-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/spring-data-matcher.js +112 -0
- package/dist/unified-provider/matching/spring-data-matcher.js.map +1 -0
- package/dist/unified-provider/matching/sqlalchemy-matcher.d.ts +32 -0
- package/dist/unified-provider/matching/sqlalchemy-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/sqlalchemy-matcher.js +201 -0
- package/dist/unified-provider/matching/sqlalchemy-matcher.js.map +1 -0
- package/dist/unified-provider/matching/supabase-matcher.d.ts +27 -0
- package/dist/unified-provider/matching/supabase-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/supabase-matcher.js +122 -0
- package/dist/unified-provider/matching/supabase-matcher.js.map +1 -0
- package/dist/unified-provider/matching/typeorm-matcher.d.ts +32 -0
- package/dist/unified-provider/matching/typeorm-matcher.d.ts.map +1 -0
- package/dist/unified-provider/matching/typeorm-matcher.js +169 -0
- package/dist/unified-provider/matching/typeorm-matcher.js.map +1 -0
- package/dist/unified-provider/migration/deprecated-extractors.d.ts +104 -0
- package/dist/unified-provider/migration/deprecated-extractors.d.ts.map +1 -0
- package/dist/unified-provider/migration/deprecated-extractors.js +129 -0
- package/dist/unified-provider/migration/deprecated-extractors.js.map +1 -0
- package/dist/unified-provider/migration/deprecated-scanner.d.ts +40 -0
- package/dist/unified-provider/migration/deprecated-scanner.d.ts.map +1 -0
- package/dist/unified-provider/migration/deprecated-scanner.js +49 -0
- package/dist/unified-provider/migration/deprecated-scanner.js.map +1 -0
- package/dist/unified-provider/migration/index.d.ts +41 -0
- package/dist/unified-provider/migration/index.d.ts.map +1 -0
- package/dist/unified-provider/migration/index.js +43 -0
- package/dist/unified-provider/migration/index.js.map +1 -0
- package/dist/unified-provider/normalization/base-normalizer.d.ts +188 -0
- package/dist/unified-provider/normalization/base-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/base-normalizer.js +339 -0
- package/dist/unified-provider/normalization/base-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/csharp-normalizer.d.ts +58 -0
- package/dist/unified-provider/normalization/csharp-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/csharp-normalizer.js +467 -0
- package/dist/unified-provider/normalization/csharp-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/index.d.ts +23 -0
- package/dist/unified-provider/normalization/index.d.ts.map +1 -0
- package/dist/unified-provider/normalization/index.js +62 -0
- package/dist/unified-provider/normalization/index.js.map +1 -0
- package/dist/unified-provider/normalization/java-normalizer.d.ts +54 -0
- package/dist/unified-provider/normalization/java-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/java-normalizer.js +453 -0
- package/dist/unified-provider/normalization/java-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/php-normalizer.d.ts +54 -0
- package/dist/unified-provider/normalization/php-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/php-normalizer.js +489 -0
- package/dist/unified-provider/normalization/php-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/python-normalizer.d.ts +61 -0
- package/dist/unified-provider/normalization/python-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/python-normalizer.js +548 -0
- package/dist/unified-provider/normalization/python-normalizer.js.map +1 -0
- package/dist/unified-provider/normalization/typescript-normalizer.d.ts +60 -0
- package/dist/unified-provider/normalization/typescript-normalizer.d.ts.map +1 -0
- package/dist/unified-provider/normalization/typescript-normalizer.js +608 -0
- package/dist/unified-provider/normalization/typescript-normalizer.js.map +1 -0
- package/dist/unified-provider/parsing/index.d.ts +5 -0
- package/dist/unified-provider/parsing/index.d.ts.map +1 -0
- package/dist/unified-provider/parsing/index.js +5 -0
- package/dist/unified-provider/parsing/index.js.map +1 -0
- package/dist/unified-provider/parsing/parser-registry.d.ts +70 -0
- package/dist/unified-provider/parsing/parser-registry.d.ts.map +1 -0
- package/dist/unified-provider/parsing/parser-registry.js +260 -0
- package/dist/unified-provider/parsing/parser-registry.js.map +1 -0
- package/dist/unified-provider/provider/index.d.ts +5 -0
- package/dist/unified-provider/provider/index.d.ts.map +1 -0
- package/dist/unified-provider/provider/index.js +5 -0
- package/dist/unified-provider/provider/index.js.map +1 -0
- package/dist/unified-provider/provider/unified-language-provider.d.ts +56 -0
- package/dist/unified-provider/provider/unified-language-provider.d.ts.map +1 -0
- package/dist/unified-provider/provider/unified-language-provider.js +212 -0
- package/dist/unified-provider/provider/unified-language-provider.js.map +1 -0
- package/dist/unified-provider/types.d.ts +389 -0
- package/dist/unified-provider/types.d.ts.map +1 -0
- package/dist/unified-provider/types.js +9 -0
- package/dist/unified-provider/types.js.map +1 -0
- package/dist/wrappers/clustering/clusterer.d.ts +43 -0
- package/dist/wrappers/clustering/clusterer.d.ts.map +1 -0
- package/dist/wrappers/clustering/clusterer.js +374 -0
- package/dist/wrappers/clustering/clusterer.js.map +1 -0
- package/dist/wrappers/clustering/exclusions.d.ts +47 -0
- package/dist/wrappers/clustering/exclusions.d.ts.map +1 -0
- package/dist/wrappers/clustering/exclusions.js +318 -0
- package/dist/wrappers/clustering/exclusions.js.map +1 -0
- package/dist/wrappers/clustering/index.d.ts +6 -0
- package/dist/wrappers/clustering/index.d.ts.map +1 -0
- package/dist/wrappers/clustering/index.js +6 -0
- package/dist/wrappers/clustering/index.js.map +1 -0
- package/dist/wrappers/detection/detector.d.ts +69 -0
- package/dist/wrappers/detection/detector.d.ts.map +1 -0
- package/dist/wrappers/detection/detector.js +279 -0
- package/dist/wrappers/detection/detector.js.map +1 -0
- package/dist/wrappers/detection/index.d.ts +5 -0
- package/dist/wrappers/detection/index.d.ts.map +1 -0
- package/dist/wrappers/detection/index.js +5 -0
- package/dist/wrappers/detection/index.js.map +1 -0
- package/dist/wrappers/export/index.d.ts +5 -0
- package/dist/wrappers/export/index.d.ts.map +1 -0
- package/dist/wrappers/export/index.js +5 -0
- package/dist/wrappers/export/index.js.map +1 -0
- package/dist/wrappers/export/json.d.ts +127 -0
- package/dist/wrappers/export/json.d.ts.map +1 -0
- package/dist/wrappers/export/json.js +160 -0
- package/dist/wrappers/export/json.js.map +1 -0
- package/dist/wrappers/index.d.ts +56 -0
- package/dist/wrappers/index.d.ts.map +1 -0
- package/dist/wrappers/index.js +159 -0
- package/dist/wrappers/index.js.map +1 -0
- package/dist/wrappers/integration/adapter.d.ts +52 -0
- package/dist/wrappers/integration/adapter.d.ts.map +1 -0
- package/dist/wrappers/integration/adapter.js +209 -0
- package/dist/wrappers/integration/adapter.js.map +1 -0
- package/dist/wrappers/integration/index.d.ts +9 -0
- package/dist/wrappers/integration/index.d.ts.map +1 -0
- package/dist/wrappers/integration/index.js +12 -0
- package/dist/wrappers/integration/index.js.map +1 -0
- package/dist/wrappers/integration/pattern-adapter.d.ts +52 -0
- package/dist/wrappers/integration/pattern-adapter.d.ts.map +1 -0
- package/dist/wrappers/integration/pattern-adapter.js +192 -0
- package/dist/wrappers/integration/pattern-adapter.js.map +1 -0
- package/dist/wrappers/integration/scanner.d.ts +85 -0
- package/dist/wrappers/integration/scanner.d.ts.map +1 -0
- package/dist/wrappers/integration/scanner.js +367 -0
- package/dist/wrappers/integration/scanner.js.map +1 -0
- package/dist/wrappers/primitives/discovery.d.ts +57 -0
- package/dist/wrappers/primitives/discovery.d.ts.map +1 -0
- package/dist/wrappers/primitives/discovery.js +389 -0
- package/dist/wrappers/primitives/discovery.js.map +1 -0
- package/dist/wrappers/primitives/index.d.ts +6 -0
- package/dist/wrappers/primitives/index.d.ts.map +1 -0
- package/dist/wrappers/primitives/index.js +6 -0
- package/dist/wrappers/primitives/index.js.map +1 -0
- package/dist/wrappers/primitives/registry.d.ts +63 -0
- package/dist/wrappers/primitives/registry.d.ts.map +1 -0
- package/dist/wrappers/primitives/registry.js +447 -0
- package/dist/wrappers/primitives/registry.js.map +1 -0
- package/dist/wrappers/types.d.ts +137 -0
- package/dist/wrappers/types.d.ts.map +1 -0
- package/dist/wrappers/types.js +7 -0
- package/dist/wrappers/types.js.map +1 -0
- package/package.json +23 -18
|
@@ -0,0 +1,447 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Framework Primitive Registry
|
|
3
|
+
*
|
|
4
|
+
* Bootstrap definitions of framework primitives across all supported languages.
|
|
5
|
+
* These are the "building blocks" that developers commonly wrap.
|
|
6
|
+
*/
|
|
7
|
+
// =============================================================================
|
|
8
|
+
// TypeScript/JavaScript Primitives
|
|
9
|
+
// =============================================================================
|
|
10
|
+
export const REACT_PRIMITIVES = {
|
|
11
|
+
react: {
|
|
12
|
+
state: ['useState', 'useReducer'],
|
|
13
|
+
effect: ['useEffect', 'useLayoutEffect', 'useInsertionEffect'],
|
|
14
|
+
context: ['useContext', 'createContext'],
|
|
15
|
+
ref: ['useRef', 'useImperativeHandle', 'forwardRef'],
|
|
16
|
+
memo: ['useMemo', 'useCallback', 'memo'],
|
|
17
|
+
concurrent: ['useTransition', 'useDeferredValue', 'useId'],
|
|
18
|
+
external: ['useSyncExternalStore'],
|
|
19
|
+
actions: ['useActionState', 'useFormStatus', 'useOptimistic', 'use'],
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
export const REACT_ECOSYSTEM_PRIMITIVES = {
|
|
23
|
+
'tanstack-query': {
|
|
24
|
+
query: ['useQuery', 'useMutation', 'useInfiniteQuery', 'useQueryClient', 'useSuspenseQuery'],
|
|
25
|
+
},
|
|
26
|
+
swr: {
|
|
27
|
+
query: ['useSWR', 'useSWRMutation', 'useSWRInfinite', 'useSWRConfig'],
|
|
28
|
+
},
|
|
29
|
+
apollo: {
|
|
30
|
+
query: ['useQuery', 'useMutation', 'useLazyQuery', 'useSubscription', 'useApolloClient'],
|
|
31
|
+
},
|
|
32
|
+
urql: {
|
|
33
|
+
query: ['useQuery', 'useMutation', 'useSubscription', 'useClient'],
|
|
34
|
+
},
|
|
35
|
+
'rtk-query': {
|
|
36
|
+
query: ['useGetQuery', 'useLazyGetQuery', 'useMutation'],
|
|
37
|
+
},
|
|
38
|
+
redux: {
|
|
39
|
+
state: ['useSelector', 'useDispatch', 'useStore'],
|
|
40
|
+
},
|
|
41
|
+
zustand: {
|
|
42
|
+
state: ['useStore', 'create', 'createStore'],
|
|
43
|
+
},
|
|
44
|
+
jotai: {
|
|
45
|
+
state: ['useAtom', 'useAtomValue', 'useSetAtom', 'atom'],
|
|
46
|
+
},
|
|
47
|
+
recoil: {
|
|
48
|
+
state: ['useRecoilState', 'useRecoilValue', 'useSetRecoilState', 'useRecoilCallback'],
|
|
49
|
+
},
|
|
50
|
+
valtio: {
|
|
51
|
+
state: ['useSnapshot', 'useProxy'],
|
|
52
|
+
},
|
|
53
|
+
'mobx-react': {
|
|
54
|
+
state: ['useObserver', 'useLocalObservable'],
|
|
55
|
+
},
|
|
56
|
+
'react-hook-form': {
|
|
57
|
+
form: ['useForm', 'useWatch', 'useFieldArray', 'useFormContext', 'useController'],
|
|
58
|
+
},
|
|
59
|
+
formik: {
|
|
60
|
+
form: ['useFormik', 'useField', 'useFormikContext'],
|
|
61
|
+
},
|
|
62
|
+
'react-router': {
|
|
63
|
+
routing: ['useNavigate', 'useParams', 'useLocation', 'useSearchParams', 'useMatch', 'useOutlet'],
|
|
64
|
+
},
|
|
65
|
+
next: {
|
|
66
|
+
routing: ['useRouter', 'usePathname', 'useSearchParams', 'useParams', 'useSelectedLayoutSegment'],
|
|
67
|
+
},
|
|
68
|
+
'framer-motion': {
|
|
69
|
+
animation: ['useAnimation', 'useMotionValue', 'useTransform', 'useSpring', 'useScroll'],
|
|
70
|
+
},
|
|
71
|
+
'react-spring': {
|
|
72
|
+
animation: ['useSpring', 'useSprings', 'useTrail', 'useTransition', 'useChain'],
|
|
73
|
+
},
|
|
74
|
+
};
|
|
75
|
+
export const VUE_PRIMITIVES = {
|
|
76
|
+
vue: {
|
|
77
|
+
reactivity: ['ref', 'reactive', 'computed', 'watch', 'watchEffect', 'watchPostEffect', 'watchSyncEffect'],
|
|
78
|
+
lifecycle: ['onMounted', 'onUpdated', 'onUnmounted', 'onBeforeMount', 'onBeforeUpdate', 'onBeforeUnmount'],
|
|
79
|
+
di: ['provide', 'inject'],
|
|
80
|
+
composition: ['defineComponent', 'defineProps', 'defineEmits', 'defineExpose', 'defineSlots'],
|
|
81
|
+
},
|
|
82
|
+
'vue-router': {
|
|
83
|
+
routing: ['useRouter', 'useRoute', 'useLink'],
|
|
84
|
+
},
|
|
85
|
+
pinia: {
|
|
86
|
+
state: ['defineStore', 'storeToRefs', 'useStore'],
|
|
87
|
+
},
|
|
88
|
+
};
|
|
89
|
+
export const SVELTE_PRIMITIVES = {
|
|
90
|
+
svelte: {
|
|
91
|
+
stores: ['writable', 'readable', 'derived', 'get'],
|
|
92
|
+
lifecycle: ['onMount', 'onDestroy', 'beforeUpdate', 'afterUpdate', 'tick'],
|
|
93
|
+
context: ['setContext', 'getContext', 'hasContext', 'getAllContexts'],
|
|
94
|
+
motion: ['tweened', 'spring'],
|
|
95
|
+
},
|
|
96
|
+
};
|
|
97
|
+
export const ANGULAR_PRIMITIVES = {
|
|
98
|
+
angular: {
|
|
99
|
+
di: ['inject', 'Injectable', 'Inject', 'Optional', 'Self', 'SkipSelf', 'Host'],
|
|
100
|
+
signals: ['signal', 'computed', 'effect'],
|
|
101
|
+
lifecycle: ['OnInit', 'OnDestroy', 'OnChanges', 'AfterViewInit', 'AfterContentInit'],
|
|
102
|
+
http: ['HttpClient', 'HttpInterceptor'],
|
|
103
|
+
router: ['Router', 'ActivatedRoute', 'RouterLink'],
|
|
104
|
+
forms: ['FormBuilder', 'FormGroup', 'FormControl', 'Validators'],
|
|
105
|
+
},
|
|
106
|
+
};
|
|
107
|
+
export const EXPRESS_PRIMITIVES = {
|
|
108
|
+
express: {
|
|
109
|
+
middleware: ['use', 'Router', 'json', 'urlencoded', 'static'],
|
|
110
|
+
request: ['req.body', 'req.params', 'req.query', 'req.headers', 'req.cookies'],
|
|
111
|
+
response: ['res.json', 'res.send', 'res.status', 'res.redirect', 'res.render'],
|
|
112
|
+
},
|
|
113
|
+
};
|
|
114
|
+
export const JS_TESTING_PRIMITIVES = {
|
|
115
|
+
jest: {
|
|
116
|
+
test: ['describe', 'it', 'test', 'expect', 'beforeEach', 'afterEach', 'beforeAll', 'afterAll'],
|
|
117
|
+
mock: ['jest.fn', 'jest.mock', 'jest.spyOn'],
|
|
118
|
+
},
|
|
119
|
+
vitest: {
|
|
120
|
+
test: ['describe', 'it', 'test', 'expect', 'beforeEach', 'afterEach'],
|
|
121
|
+
mock: ['vi.fn', 'vi.mock', 'vi.spyOn'],
|
|
122
|
+
},
|
|
123
|
+
'@testing-library/react': {
|
|
124
|
+
test: ['render', 'screen', 'fireEvent', 'waitFor', 'within', 'act'],
|
|
125
|
+
},
|
|
126
|
+
cypress: {
|
|
127
|
+
test: ['cy.visit', 'cy.get', 'cy.contains', 'cy.click', 'cy.type', 'cy.intercept'],
|
|
128
|
+
},
|
|
129
|
+
playwright: {
|
|
130
|
+
test: ['page.goto', 'page.click', 'page.fill', 'page.locator', 'expect'],
|
|
131
|
+
},
|
|
132
|
+
};
|
|
133
|
+
// =============================================================================
|
|
134
|
+
// Python Primitives
|
|
135
|
+
// =============================================================================
|
|
136
|
+
export const FASTAPI_PRIMITIVES = {
|
|
137
|
+
fastapi: {
|
|
138
|
+
di: ['Depends', 'Security'],
|
|
139
|
+
params: ['Query', 'Path', 'Body', 'Header', 'Cookie', 'Form', 'File', 'UploadFile'],
|
|
140
|
+
auth: ['HTTPBearer', 'HTTPBasic', 'OAuth2PasswordBearer', 'OAuth2PasswordRequestForm', 'APIKeyHeader', 'APIKeyCookie'],
|
|
141
|
+
background: ['BackgroundTasks'],
|
|
142
|
+
response: ['Response', 'JSONResponse', 'HTMLResponse', 'StreamingResponse', 'FileResponse', 'RedirectResponse'],
|
|
143
|
+
websocket: ['WebSocket', 'WebSocketDisconnect'],
|
|
144
|
+
},
|
|
145
|
+
};
|
|
146
|
+
export const DJANGO_PRIMITIVES = {
|
|
147
|
+
django: {
|
|
148
|
+
views: ['View', 'TemplateView', 'ListView', 'DetailView', 'CreateView', 'UpdateView', 'DeleteView'],
|
|
149
|
+
shortcuts: ['get_object_or_404', 'get_list_or_404', 'redirect', 'render', 'reverse'],
|
|
150
|
+
decorators: ['login_required', 'permission_required', 'user_passes_test', 'require_http_methods', 'csrf_exempt'],
|
|
151
|
+
db: ['transaction.atomic', 'connection.cursor', 'F', 'Q', 'Prefetch', 'Count', 'Sum', 'Avg'],
|
|
152
|
+
cache: ['cache.get', 'cache.set', 'cache.delete', 'cache_page', 'cache_control'],
|
|
153
|
+
signals: ['Signal', 'receiver', 'post_save', 'pre_save', 'post_delete', 'pre_delete'],
|
|
154
|
+
forms: ['Form', 'ModelForm', 'formset_factory', 'modelformset_factory'],
|
|
155
|
+
},
|
|
156
|
+
'django-rest-framework': {
|
|
157
|
+
views: ['APIView', 'ViewSet', 'ModelViewSet'],
|
|
158
|
+
serializers: ['Serializer', 'ModelSerializer'],
|
|
159
|
+
permissions: ['IsAuthenticated', 'IsAdminUser', 'AllowAny'],
|
|
160
|
+
},
|
|
161
|
+
};
|
|
162
|
+
export const FLASK_PRIMITIVES = {
|
|
163
|
+
flask: {
|
|
164
|
+
core: ['Flask', 'Blueprint', 'request', 'g', 'session', 'current_app'],
|
|
165
|
+
decorators: ['route', 'before_request', 'after_request', 'errorhandler', 'context_processor'],
|
|
166
|
+
response: ['jsonify', 'make_response', 'redirect', 'url_for', 'render_template', 'send_file'],
|
|
167
|
+
},
|
|
168
|
+
'flask-login': {
|
|
169
|
+
auth: ['login_required', 'current_user', 'login_user', 'logout_user'],
|
|
170
|
+
},
|
|
171
|
+
'flask-wtf': {
|
|
172
|
+
forms: ['FlaskForm', 'CSRFProtect'],
|
|
173
|
+
},
|
|
174
|
+
'flask-sqlalchemy': {
|
|
175
|
+
db: ['SQLAlchemy', 'db.session', 'db.Model'],
|
|
176
|
+
},
|
|
177
|
+
};
|
|
178
|
+
export const SQLALCHEMY_PRIMITIVES = {
|
|
179
|
+
sqlalchemy: {
|
|
180
|
+
session: ['Session', 'sessionmaker', 'scoped_session'],
|
|
181
|
+
query: ['select', 'insert', 'update', 'delete', 'join', 'outerjoin'],
|
|
182
|
+
orm: ['relationship', 'backref', 'column_property', 'hybrid_property', 'validates'],
|
|
183
|
+
types: ['Column', 'Integer', 'String', 'Boolean', 'DateTime', 'ForeignKey', 'Table'],
|
|
184
|
+
},
|
|
185
|
+
};
|
|
186
|
+
export const CELERY_PRIMITIVES = {
|
|
187
|
+
celery: {
|
|
188
|
+
tasks: ['task', 'shared_task', 'Task'],
|
|
189
|
+
execution: ['delay', 'apply_async', 'signature', 'chain', 'group', 'chord'],
|
|
190
|
+
scheduling: ['periodic_task', 'crontab', 'schedule'],
|
|
191
|
+
},
|
|
192
|
+
};
|
|
193
|
+
export const PYDANTIC_PRIMITIVES = {
|
|
194
|
+
pydantic: {
|
|
195
|
+
models: ['BaseModel', 'Field', 'validator', 'root_validator', 'model_validator'],
|
|
196
|
+
settings: ['BaseSettings', 'SettingsConfigDict'],
|
|
197
|
+
types: ['constr', 'conint', 'confloat', 'EmailStr', 'HttpUrl', 'SecretStr'],
|
|
198
|
+
},
|
|
199
|
+
};
|
|
200
|
+
export const PYTHON_TESTING_PRIMITIVES = {
|
|
201
|
+
pytest: {
|
|
202
|
+
fixtures: ['fixture', 'mark.parametrize', 'mark.skip', 'mark.asyncio', 'raises', 'approx', 'monkeypatch'],
|
|
203
|
+
},
|
|
204
|
+
unittest: {
|
|
205
|
+
test: ['TestCase', 'setUp', 'tearDown'],
|
|
206
|
+
mock: ['mock.patch', 'mock.MagicMock', 'mock.Mock'],
|
|
207
|
+
},
|
|
208
|
+
hypothesis: {
|
|
209
|
+
test: ['given', 'strategies', 'settings', 'example'],
|
|
210
|
+
},
|
|
211
|
+
};
|
|
212
|
+
// =============================================================================
|
|
213
|
+
// Java Primitives
|
|
214
|
+
// =============================================================================
|
|
215
|
+
export const SPRING_PRIMITIVES = {
|
|
216
|
+
spring: {
|
|
217
|
+
di: ['@Autowired', '@Inject', '@Resource', '@Qualifier', '@Value', 'getBean', 'getBeanProvider'],
|
|
218
|
+
stereotypes: ['@Component', '@Service', '@Repository', '@Controller', '@RestController', '@Configuration'],
|
|
219
|
+
web: ['@RequestMapping', '@GetMapping', '@PostMapping', '@PutMapping', '@DeleteMapping', '@PatchMapping'],
|
|
220
|
+
params: ['@RequestBody', '@PathVariable', '@RequestParam', '@RequestHeader', '@CookieValue', '@ModelAttribute'],
|
|
221
|
+
response: ['ResponseEntity', '@ResponseBody', '@ResponseStatus'],
|
|
222
|
+
data: ['@Transactional', '@Query', '@Modifying', '@EntityGraph', '@Lock'],
|
|
223
|
+
jpa: ['JpaRepository', 'CrudRepository', 'PagingAndSortingRepository', 'save', 'findById', 'findAll', 'delete', 'deleteById'],
|
|
224
|
+
aop: ['@Aspect', '@Before', '@After', '@Around', '@AfterReturning', '@AfterThrowing', 'ProceedingJoinPoint'],
|
|
225
|
+
security: ['@PreAuthorize', '@PostAuthorize', '@Secured', '@RolesAllowed', 'SecurityContextHolder', 'Authentication'],
|
|
226
|
+
async: ['@Async', '@EnableAsync', 'CompletableFuture', '@Scheduled', '@EnableScheduling'],
|
|
227
|
+
validation: ['@Valid', '@Validated', '@NotNull', '@NotBlank', '@Size', '@Min', '@Max', '@Pattern'],
|
|
228
|
+
caching: ['@Cacheable', '@CacheEvict', '@CachePut', '@Caching', '@EnableCaching'],
|
|
229
|
+
},
|
|
230
|
+
'spring-boot': {
|
|
231
|
+
config: ['@SpringBootApplication', '@EnableAutoConfiguration', '@ConfigurationProperties', '@ConditionalOnProperty'],
|
|
232
|
+
actuator: ['@Endpoint', '@ReadOperation', '@WriteOperation', 'HealthIndicator'],
|
|
233
|
+
testing: ['@SpringBootTest', '@WebMvcTest', '@DataJpaTest', '@MockBean', '@SpyBean', 'TestRestTemplate'],
|
|
234
|
+
},
|
|
235
|
+
};
|
|
236
|
+
export const JAVA_TESTING_PRIMITIVES = {
|
|
237
|
+
junit5: {
|
|
238
|
+
test: ['@Test', '@BeforeEach', '@AfterEach', '@BeforeAll', '@AfterAll', '@DisplayName', '@Nested', '@ParameterizedTest', '@ValueSource'],
|
|
239
|
+
},
|
|
240
|
+
mockito: {
|
|
241
|
+
mock: ['@Mock', '@InjectMocks', '@Spy', '@Captor', 'when', 'verify', 'doReturn', 'doThrow', 'ArgumentCaptor'],
|
|
242
|
+
},
|
|
243
|
+
assertj: {
|
|
244
|
+
assert: ['assertThat', 'assertThatThrownBy', 'assertThatCode'],
|
|
245
|
+
},
|
|
246
|
+
};
|
|
247
|
+
// =============================================================================
|
|
248
|
+
// C# / .NET Primitives
|
|
249
|
+
// =============================================================================
|
|
250
|
+
export const ASPNET_PRIMITIVES = {
|
|
251
|
+
aspnet: {
|
|
252
|
+
di: ['GetService', 'GetRequiredService', 'AddScoped', 'AddSingleton', 'AddTransient', 'AddHostedService'],
|
|
253
|
+
attributes: ['[FromServices]', '[FromBody]', '[FromQuery]', '[FromRoute]', '[FromHeader]', '[FromForm]'],
|
|
254
|
+
middleware: ['IMiddleware', 'RequestDelegate', 'Use', 'UseMiddleware', 'Map', 'MapWhen', 'UseWhen'],
|
|
255
|
+
mvc: ['[HttpGet]', '[HttpPost]', '[HttpPut]', '[HttpDelete]', '[HttpPatch]', '[Route]', '[ApiController]', 'ControllerBase'],
|
|
256
|
+
results: ['Ok', 'BadRequest', 'NotFound', 'Created', 'NoContent', 'Unauthorized', 'Forbid'],
|
|
257
|
+
auth: ['[Authorize]', '[AllowAnonymous]', 'IAuthorizationService', 'ClaimsPrincipal', '[RequiresClaim]'],
|
|
258
|
+
validation: ['[Required]', '[StringLength]', '[Range]', '[RegularExpression]', '[Compare]', 'ModelState'],
|
|
259
|
+
config: ['IConfiguration', 'IOptions', 'IOptionsSnapshot', 'IOptionsMonitor', 'Configure'],
|
|
260
|
+
logging: ['ILogger', 'ILoggerFactory', 'LogInformation', 'LogWarning', 'LogError', 'LogDebug'],
|
|
261
|
+
},
|
|
262
|
+
};
|
|
263
|
+
export const EFCORE_PRIMITIVES = {
|
|
264
|
+
efcore: {
|
|
265
|
+
context: ['DbContext', 'DbSet', 'SaveChanges', 'SaveChangesAsync'],
|
|
266
|
+
query: ['Include', 'ThenInclude', 'Where', 'Select', 'OrderBy', 'GroupBy', 'Join', 'AsNoTracking'],
|
|
267
|
+
raw: ['FromSqlRaw', 'FromSqlInterpolated', 'ExecuteSqlRaw', 'ExecuteSqlInterpolated'],
|
|
268
|
+
transactions: ['BeginTransaction', 'CommitTransaction', 'RollbackTransaction', 'Database.BeginTransactionAsync'],
|
|
269
|
+
},
|
|
270
|
+
};
|
|
271
|
+
export const CSHARP_TESTING_PRIMITIVES = {
|
|
272
|
+
xunit: {
|
|
273
|
+
test: ['[Fact]', '[Theory]', '[InlineData]', '[ClassData]', '[MemberData]', 'Assert'],
|
|
274
|
+
},
|
|
275
|
+
nunit: {
|
|
276
|
+
test: ['[Test]', '[TestCase]', '[SetUp]', '[TearDown]', '[TestFixture]', 'Assert'],
|
|
277
|
+
},
|
|
278
|
+
moq: {
|
|
279
|
+
mock: ['Mock', 'Setup', 'Returns', 'Verify', 'It.IsAny', 'It.Is', 'Callback'],
|
|
280
|
+
},
|
|
281
|
+
fluentassertions: {
|
|
282
|
+
assert: ['Should', 'BeEquivalentTo', 'Contain', 'HaveCount', 'Throw'],
|
|
283
|
+
},
|
|
284
|
+
};
|
|
285
|
+
// =============================================================================
|
|
286
|
+
// PHP Primitives
|
|
287
|
+
// =============================================================================
|
|
288
|
+
export const LARAVEL_PRIMITIVES = {
|
|
289
|
+
laravel: {
|
|
290
|
+
facades: ['Auth::', 'Cache::', 'DB::', 'Log::', 'Queue::', 'Storage::', 'Event::', 'Mail::', 'Notification::', 'Gate::'],
|
|
291
|
+
di: ['app()', 'resolve()', 'make()', 'bind', 'singleton', 'instance'],
|
|
292
|
+
eloquent: ['query', 'where', 'with', 'find', 'first', 'get', 'save', 'create', 'update', 'delete'],
|
|
293
|
+
relations: ['hasMany', 'belongsTo', 'hasOne', 'belongsToMany', 'morphTo', 'morphMany', 'morphToMany', 'hasManyThrough'],
|
|
294
|
+
request: ['input', 'validated', 'user', 'file', 'has', 'only'],
|
|
295
|
+
response: ['response', 'redirect', 'view', 'back', 'abort'],
|
|
296
|
+
middleware: ['handle', 'terminate'],
|
|
297
|
+
validation: ['Validator::make', 'validate', 'Rule::unique', 'Rule::exists', 'Rule::in'],
|
|
298
|
+
events: ['event', 'Event::dispatch', 'Listener', 'ShouldQueue'],
|
|
299
|
+
jobs: ['dispatch', 'dispatchSync', 'Bus::dispatch', 'Bus::chain'],
|
|
300
|
+
auth: ['Auth::user', 'Auth::check', 'Auth::attempt', 'Gate::allows', 'Gate::denies', 'authorize'],
|
|
301
|
+
},
|
|
302
|
+
};
|
|
303
|
+
export const SYMFONY_PRIMITIVES = {
|
|
304
|
+
symfony: {
|
|
305
|
+
di: ['#[Autowire]', '#[Required]', 'ContainerInterface', 'ServiceSubscriberInterface'],
|
|
306
|
+
routing: ['#[Route]', '#[Get]', '#[Post]', '#[Put]', '#[Delete]'],
|
|
307
|
+
forms: ['FormBuilderInterface', 'createForm', 'handleRequest', 'isSubmitted', 'isValid'],
|
|
308
|
+
doctrine: ['EntityManagerInterface', 'persist', 'flush', 'remove', 'getRepository'],
|
|
309
|
+
security: ['#[IsGranted]', 'Security', 'UserInterface', 'PasswordHasherInterface'],
|
|
310
|
+
events: ['EventDispatcherInterface', 'EventSubscriberInterface', '#[AsEventListener]'],
|
|
311
|
+
},
|
|
312
|
+
};
|
|
313
|
+
export const PHP_TESTING_PRIMITIVES = {
|
|
314
|
+
phpunit: {
|
|
315
|
+
test: ['TestCase', 'setUp', 'tearDown', 'assertEquals', 'assertTrue', 'assertFalse', 'expectException', 'createMock'],
|
|
316
|
+
},
|
|
317
|
+
pest: {
|
|
318
|
+
test: ['test', 'it', 'expect', 'beforeEach', 'afterEach', 'uses'],
|
|
319
|
+
},
|
|
320
|
+
'laravel-testing': {
|
|
321
|
+
test: ['RefreshDatabase', 'WithFaker', 'actingAs', 'assertDatabaseHas', 'assertDatabaseMissing', 'mock'],
|
|
322
|
+
},
|
|
323
|
+
};
|
|
324
|
+
// =============================================================================
|
|
325
|
+
// Combined Registry by Language
|
|
326
|
+
// =============================================================================
|
|
327
|
+
export const TYPESCRIPT_PRIMITIVES = {
|
|
328
|
+
...REACT_PRIMITIVES,
|
|
329
|
+
...REACT_ECOSYSTEM_PRIMITIVES,
|
|
330
|
+
...VUE_PRIMITIVES,
|
|
331
|
+
...SVELTE_PRIMITIVES,
|
|
332
|
+
...ANGULAR_PRIMITIVES,
|
|
333
|
+
...EXPRESS_PRIMITIVES,
|
|
334
|
+
...JS_TESTING_PRIMITIVES,
|
|
335
|
+
};
|
|
336
|
+
export const PYTHON_PRIMITIVES = {
|
|
337
|
+
...FASTAPI_PRIMITIVES,
|
|
338
|
+
...DJANGO_PRIMITIVES,
|
|
339
|
+
...FLASK_PRIMITIVES,
|
|
340
|
+
...SQLALCHEMY_PRIMITIVES,
|
|
341
|
+
...CELERY_PRIMITIVES,
|
|
342
|
+
...PYDANTIC_PRIMITIVES,
|
|
343
|
+
...PYTHON_TESTING_PRIMITIVES,
|
|
344
|
+
};
|
|
345
|
+
export const JAVA_PRIMITIVES = {
|
|
346
|
+
...SPRING_PRIMITIVES,
|
|
347
|
+
...JAVA_TESTING_PRIMITIVES,
|
|
348
|
+
};
|
|
349
|
+
export const CSHARP_PRIMITIVES = {
|
|
350
|
+
...ASPNET_PRIMITIVES,
|
|
351
|
+
...EFCORE_PRIMITIVES,
|
|
352
|
+
...CSHARP_TESTING_PRIMITIVES,
|
|
353
|
+
};
|
|
354
|
+
export const PHP_PRIMITIVES = {
|
|
355
|
+
...LARAVEL_PRIMITIVES,
|
|
356
|
+
...SYMFONY_PRIMITIVES,
|
|
357
|
+
...PHP_TESTING_PRIMITIVES,
|
|
358
|
+
};
|
|
359
|
+
export const ALL_PRIMITIVES = {
|
|
360
|
+
typescript: TYPESCRIPT_PRIMITIVES,
|
|
361
|
+
python: PYTHON_PRIMITIVES,
|
|
362
|
+
java: JAVA_PRIMITIVES,
|
|
363
|
+
csharp: CSHARP_PRIMITIVES,
|
|
364
|
+
php: PHP_PRIMITIVES,
|
|
365
|
+
};
|
|
366
|
+
// =============================================================================
|
|
367
|
+
// Utility Functions
|
|
368
|
+
// =============================================================================
|
|
369
|
+
/**
|
|
370
|
+
* Get all primitive names for a language
|
|
371
|
+
*/
|
|
372
|
+
export function getPrimitiveNames(language) {
|
|
373
|
+
const registry = ALL_PRIMITIVES[language];
|
|
374
|
+
const names = new Set();
|
|
375
|
+
for (const framework of Object.values(registry)) {
|
|
376
|
+
for (const category of Object.values(framework)) {
|
|
377
|
+
for (const name of category) {
|
|
378
|
+
names.add(name);
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
return names;
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* Get all framework names for a language
|
|
386
|
+
*/
|
|
387
|
+
export function getFrameworkNames(language) {
|
|
388
|
+
return Object.keys(ALL_PRIMITIVES[language]);
|
|
389
|
+
}
|
|
390
|
+
/**
|
|
391
|
+
* Find which framework a primitive belongs to
|
|
392
|
+
*/
|
|
393
|
+
export function findPrimitiveFramework(primitiveName, language) {
|
|
394
|
+
const registry = ALL_PRIMITIVES[language];
|
|
395
|
+
for (const [framework, categories] of Object.entries(registry)) {
|
|
396
|
+
for (const [category, names] of Object.entries(categories)) {
|
|
397
|
+
if (names.includes(primitiveName)) {
|
|
398
|
+
return { framework, category };
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
return null;
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* Check if a name looks like a primitive based on naming conventions
|
|
406
|
+
*/
|
|
407
|
+
export function looksLikePrimitive(name, language) {
|
|
408
|
+
// React hooks
|
|
409
|
+
if (language === 'typescript' && name.startsWith('use') && name.length > 3) {
|
|
410
|
+
return true;
|
|
411
|
+
}
|
|
412
|
+
// Common primitive patterns
|
|
413
|
+
const prefixes = ['create', 'make', 'build', 'get', 'set', 'with', 'define'];
|
|
414
|
+
if (prefixes.some((p) => name.toLowerCase().startsWith(p.toLowerCase()))) {
|
|
415
|
+
return true;
|
|
416
|
+
}
|
|
417
|
+
// Decorators/annotations
|
|
418
|
+
if (name.startsWith('@') || name.startsWith('#[') || name.startsWith('[')) {
|
|
419
|
+
return true;
|
|
420
|
+
}
|
|
421
|
+
// Python decorators
|
|
422
|
+
if (language === 'python' && /^[a-z_]+$/.test(name) && name.length < 20) {
|
|
423
|
+
return true;
|
|
424
|
+
}
|
|
425
|
+
return false;
|
|
426
|
+
}
|
|
427
|
+
/**
|
|
428
|
+
* Get the total count of primitives for a language
|
|
429
|
+
*/
|
|
430
|
+
export function getPrimitiveCount(language) {
|
|
431
|
+
return getPrimitiveNames(language).size;
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* Get primitives by category across all frameworks for a language
|
|
435
|
+
*/
|
|
436
|
+
export function getPrimitivesByCategory(language) {
|
|
437
|
+
const registry = ALL_PRIMITIVES[language];
|
|
438
|
+
const byCategory = new Map();
|
|
439
|
+
for (const categories of Object.values(registry)) {
|
|
440
|
+
for (const [category, names] of Object.entries(categories)) {
|
|
441
|
+
const existing = byCategory.get(category) || [];
|
|
442
|
+
byCategory.set(category, [...existing, ...names]);
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
return byCategory;
|
|
446
|
+
}
|
|
447
|
+
//# sourceMappingURL=registry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../../src/wrappers/primitives/registry.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,gFAAgF;AAChF,mCAAmC;AACnC,gFAAgF;AAEhF,MAAM,CAAC,MAAM,gBAAgB,GAAsB;IACjD,KAAK,EAAE;QACL,KAAK,EAAE,CAAC,UAAU,EAAE,YAAY,CAAC;QACjC,MAAM,EAAE,CAAC,WAAW,EAAE,iBAAiB,EAAE,oBAAoB,CAAC;QAC9D,OAAO,EAAE,CAAC,YAAY,EAAE,eAAe,CAAC;QACxC,GAAG,EAAE,CAAC,QAAQ,EAAE,qBAAqB,EAAE,YAAY,CAAC;QACpD,IAAI,EAAE,CAAC,SAAS,EAAE,aAAa,EAAE,MAAM,CAAC;QACxC,UAAU,EAAE,CAAC,eAAe,EAAE,kBAAkB,EAAE,OAAO,CAAC;QAC1D,QAAQ,EAAE,CAAC,sBAAsB,CAAC;QAClC,OAAO,EAAE,CAAC,gBAAgB,EAAE,eAAe,EAAE,eAAe,EAAE,KAAK,CAAC;KACrE;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAsB;IAC3D,gBAAgB,EAAE;QAChB,KAAK,EAAE,CAAC,UAAU,EAAE,aAAa,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,kBAAkB,CAAC;KAC7F;IACD,GAAG,EAAE;QACH,KAAK,EAAE,CAAC,QAAQ,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,cAAc,CAAC;KACtE;IACD,MAAM,EAAE;QACN,KAAK,EAAE,CAAC,UAAU,EAAE,aAAa,EAAE,cAAc,EAAE,iBAAiB,EAAE,iBAAiB,CAAC;KACzF;IACD,IAAI,EAAE;QACJ,KAAK,EAAE,CAAC,UAAU,EAAE,aAAa,EAAE,iBAAiB,EAAE,WAAW,CAAC;KACnE;IACD,WAAW,EAAE;QACX,KAAK,EAAE,CAAC,aAAa,EAAE,iBAAiB,EAAE,aAAa,CAAC;KACzD;IACD,KAAK,EAAE;QACL,KAAK,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,UAAU,CAAC;KAClD;IACD,OAAO,EAAE;QACP,KAAK,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,aAAa,CAAC;KAC7C;IACD,KAAK,EAAE;QACL,KAAK,EAAE,CAAC,SAAS,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,CAAC;KACzD;IACD,MAAM,EAAE;QACN,KAAK,EAAE,CAAC,gBAAgB,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,mBAAmB,CAAC;KACtF;IACD,MAAM,EAAE;QACN,KAAK,EAAE,CAAC,aAAa,EAAE,UAAU,CAAC;KACnC;IACD,YAAY,EAAE;QACZ,KAAK,EAAE,CAAC,aAAa,EAAE,oBAAoB,CAAC;KAC7C;IACD,iBAAiB,EAAE;QACjB,IAAI,EAAE,CAAC,SAAS,EAAE,UAAU,EAAE,eAAe,EAAE,gBAAgB,EAAE,eAAe,CAAC;KAClF;IACD,MAAM,EAAE;QACN,IAAI,EAAE,CAAC,WAAW,EAAE,UAAU,EAAE,kBAAkB,CAAC;KACpD;IACD,cAAc,EAAE;QACd,OAAO,EAAE,CAAC,aAAa,EAAE,WAAW,EAAE,aAAa,EAAE,iBAAiB,EAAE,UAAU,EAAE,WAAW,CAAC;KACjG;IACD,IAAI,EAAE;QACJ,OAAO,EAAE,CAAC,WAAW,EAAE,aAAa,EAAE,iBAAiB,EAAE,WAAW,EAAE,0BAA0B,CAAC;KAClG;IACD,eAAe,EAAE;QACf,SAAS,EAAE,CAAC,cAAc,EAAE,gBAAgB,EAAE,cAAc,EAAE,WAAW,EAAE,WAAW,CAAC;KACxF;IACD,cAAc,EAAE;QACd,SAAS,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,UAAU,EAAE,eAAe,EAAE,UAAU,CAAC;KAChF;CACF,CAAC;AAGF,MAAM,CAAC,MAAM,cAAc,GAAsB;IAC/C,GAAG,EAAE;QACH,UAAU,EAAE,CAAC,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,iBAAiB,CAAC;QACzG,SAAS,EAAE,CAAC,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,eAAe,EAAE,gBAAgB,EAAE,iBAAiB,CAAC;QAC1G,EAAE,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAC;QACzB,WAAW,EAAE,CAAC,iBAAiB,EAAE,aAAa,EAAE,aAAa,EAAE,cAAc,EAAE,aAAa,CAAC;KAC9F;IACD,YAAY,EAAE;QACZ,OAAO,EAAE,CAAC,WAAW,EAAE,UAAU,EAAE,SAAS,CAAC;KAC9C;IACD,KAAK,EAAE;QACL,KAAK,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,UAAU,CAAC;KAClD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,MAAM,EAAE;QACN,MAAM,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,KAAK,CAAC;QAClD,SAAS,EAAE,CAAC,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,CAAC;QAC1E,OAAO,EAAE,CAAC,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,gBAAgB,CAAC;QACrE,MAAM,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAC;KAC9B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAsB;IACnD,OAAO,EAAE;QACP,EAAE,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,CAAC;QAC9E,OAAO,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,QAAQ,CAAC;QACzC,SAAS,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,eAAe,EAAE,kBAAkB,CAAC;QACpF,IAAI,EAAE,CAAC,YAAY,EAAE,iBAAiB,CAAC;QACvC,MAAM,EAAE,CAAC,QAAQ,EAAE,gBAAgB,EAAE,YAAY,CAAC;QAClD,KAAK,EAAE,CAAC,aAAa,EAAE,WAAW,EAAE,aAAa,EAAE,YAAY,CAAC;KACjE;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAsB;IACnD,OAAO,EAAE;QACP,UAAU,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,YAAY,EAAE,QAAQ,CAAC;QAC7D,OAAO,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,CAAC;QAC9E,QAAQ,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,CAAC;KAC/E;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACtD,IAAI,EAAE;QACJ,IAAI,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,UAAU,CAAC;QAC9F,IAAI,EAAE,CAAC,SAAS,EAAE,WAAW,EAAE,YAAY,CAAC;KAC7C;IACD,MAAM,EAAE;QACN,IAAI,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,CAAC;QACrE,IAAI,EAAE,CAAC,OAAO,EAAE,SAAS,EAAE,UAAU,CAAC;KACvC;IACD,wBAAwB,EAAE;QACxB,IAAI,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,KAAK,CAAC;KACpE;IACD,OAAO,EAAE;QACP,IAAI,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,aAAa,EAAE,UAAU,EAAE,SAAS,EAAE,cAAc,CAAC;KACnF;IACD,UAAU,EAAE;QACV,IAAI,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,cAAc,EAAE,QAAQ,CAAC;KACzE;CACF,CAAC;AAEF,gFAAgF;AAChF,oBAAoB;AACpB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,kBAAkB,GAAsB;IACnD,OAAO,EAAE;QACP,EAAE,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;QAC3B,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC;QACnF,IAAI,EAAE,CAAC,YAAY,EAAE,WAAW,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,cAAc,EAAE,cAAc,CAAC;QACtH,UAAU,EAAE,CAAC,iBAAiB,CAAC;QAC/B,QAAQ,EAAE,CAAC,UAAU,EAAE,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,cAAc,EAAE,kBAAkB,CAAC;QAC/G,SAAS,EAAE,CAAC,WAAW,EAAE,qBAAqB,CAAC;KAChD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,MAAM,EAAE;QACN,KAAK,EAAE,CAAC,MAAM,EAAE,cAAc,EAAE,UAAU,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,CAAC;QACnG,SAAS,EAAE,CAAC,mBAAmB,EAAE,iBAAiB,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC;QACpF,UAAU,EAAE,CAAC,gBAAgB,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,aAAa,CAAC;QAChH,EAAE,EAAE,CAAC,oBAAoB,EAAE,mBAAmB,EAAE,GAAG,EAAE,GAAG,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,CAAC;QAC5F,KAAK,EAAE,CAAC,WAAW,EAAE,WAAW,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,CAAC;QAChF,OAAO,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,EAAE,YAAY,CAAC;QACrF,KAAK,EAAE,CAAC,MAAM,EAAE,WAAW,EAAE,iBAAiB,EAAE,sBAAsB,CAAC;KACxE;IACD,uBAAuB,EAAE;QACvB,KAAK,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,cAAc,CAAC;QAC7C,WAAW,EAAE,CAAC,YAAY,EAAE,iBAAiB,CAAC;QAC9C,WAAW,EAAE,CAAC,iBAAiB,EAAE,aAAa,EAAE,UAAU,CAAC;KAC5D;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAsB;IACjD,KAAK,EAAE;QACL,IAAI,EAAE,CAAC,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,EAAE,aAAa,CAAC;QACtE,UAAU,EAAE,CAAC,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,CAAC;QAC7F,QAAQ,EAAE,CAAC,SAAS,EAAE,eAAe,EAAE,UAAU,EAAE,SAAS,EAAE,iBAAiB,EAAE,WAAW,CAAC;KAC9F;IACD,aAAa,EAAE;QACb,IAAI,EAAE,CAAC,gBAAgB,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,CAAC;KACtE;IACD,WAAW,EAAE;QACX,KAAK,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC;KACpC;IACD,kBAAkB,EAAE;QAClB,EAAE,EAAE,CAAC,YAAY,EAAE,YAAY,EAAE,UAAU,CAAC;KAC7C;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACtD,UAAU,EAAE;QACV,OAAO,EAAE,CAAC,SAAS,EAAE,cAAc,EAAE,gBAAgB,CAAC;QACtD,KAAK,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC;QACpE,GAAG,EAAE,CAAC,cAAc,EAAE,SAAS,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,WAAW,CAAC;QACnF,KAAK,EAAE,CAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,YAAY,EAAE,OAAO,CAAC;KACrF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,MAAM,EAAE;QACN,KAAK,EAAE,CAAC,MAAM,EAAE,aAAa,EAAE,MAAM,CAAC;QACtC,SAAS,EAAE,CAAC,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC;QAC3E,UAAU,EAAE,CAAC,eAAe,EAAE,SAAS,EAAE,UAAU,CAAC;KACrD;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAsB;IACpD,QAAQ,EAAE;QACR,MAAM,EAAE,CAAC,WAAW,EAAE,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,iBAAiB,CAAC;QAChF,QAAQ,EAAE,CAAC,cAAc,EAAE,oBAAoB,CAAC;QAChD,KAAK,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,WAAW,CAAC;KAC5E;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAsB;IAC1D,MAAM,EAAE;QACN,QAAQ,EAAE,CAAC,SAAS,EAAE,kBAAkB,EAAE,WAAW,EAAE,cAAc,EAAE,QAAQ,EAAE,QAAQ,EAAE,aAAa,CAAC;KAC1G;IACD,QAAQ,EAAE;QACR,IAAI,EAAE,CAAC,UAAU,EAAE,OAAO,EAAE,UAAU,CAAC;QACvC,IAAI,EAAE,CAAC,YAAY,EAAE,gBAAgB,EAAE,WAAW,CAAC;KACpD;IACD,UAAU,EAAE;QACV,IAAI,EAAE,CAAC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,SAAS,CAAC;KACrD;CACF,CAAC;AAGF,gFAAgF;AAChF,kBAAkB;AAClB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,MAAM,EAAE;QACN,EAAE,EAAE,CAAC,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,QAAQ,EAAE,SAAS,EAAE,iBAAiB,CAAC;QAChG,WAAW,EAAE,CAAC,YAAY,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,gBAAgB,CAAC;QAC1G,GAAG,EAAE,CAAC,iBAAiB,EAAE,aAAa,EAAE,cAAc,EAAE,aAAa,EAAE,gBAAgB,EAAE,eAAe,CAAC;QACzG,MAAM,EAAE,CAAC,cAAc,EAAE,eAAe,EAAE,eAAe,EAAE,gBAAgB,EAAE,cAAc,EAAE,iBAAiB,CAAC;QAC/G,QAAQ,EAAE,CAAC,gBAAgB,EAAE,eAAe,EAAE,iBAAiB,CAAC;QAChE,IAAI,EAAE,CAAC,gBAAgB,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAE,OAAO,CAAC;QACzE,GAAG,EAAE,CAAC,eAAe,EAAE,gBAAgB,EAAE,4BAA4B,EAAE,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,QAAQ,EAAE,YAAY,CAAC;QAC7H,GAAG,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,qBAAqB,CAAC;QAC5G,QAAQ,EAAE,CAAC,eAAe,EAAE,gBAAgB,EAAE,UAAU,EAAE,eAAe,EAAE,uBAAuB,EAAE,gBAAgB,CAAC;QACrH,KAAK,EAAE,CAAC,QAAQ,EAAE,cAAc,EAAE,mBAAmB,EAAE,YAAY,EAAE,mBAAmB,CAAC;QACzF,UAAU,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC;QAClG,OAAO,EAAE,CAAC,YAAY,EAAE,aAAa,EAAE,WAAW,EAAE,UAAU,EAAE,gBAAgB,CAAC;KAClF;IACD,aAAa,EAAE;QACb,MAAM,EAAE,CAAC,wBAAwB,EAAE,0BAA0B,EAAE,0BAA0B,EAAE,wBAAwB,CAAC;QACpH,QAAQ,EAAE,CAAC,WAAW,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,iBAAiB,CAAC;QAC/E,OAAO,EAAE,CAAC,iBAAiB,EAAE,aAAa,EAAE,cAAc,EAAE,WAAW,EAAE,UAAU,EAAE,kBAAkB,CAAC;KACzG;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,uBAAuB,GAAsB;IACxD,MAAM,EAAE;QACN,IAAI,EAAE,CAAC,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,cAAc,EAAE,SAAS,EAAE,oBAAoB,EAAE,cAAc,CAAC;KACzI;IACD,OAAO,EAAE;QACP,IAAI,EAAE,CAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,SAAS,EAAE,gBAAgB,CAAC;KAC9G;IACD,OAAO,EAAE;QACP,MAAM,EAAE,CAAC,YAAY,EAAE,oBAAoB,EAAE,gBAAgB,CAAC;KAC/D;CACF,CAAC;AAEF,gFAAgF;AAChF,uBAAuB;AACvB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,MAAM,EAAE;QACN,EAAE,EAAE,CAAC,YAAY,EAAE,oBAAoB,EAAE,WAAW,EAAE,cAAc,EAAE,cAAc,EAAE,kBAAkB,CAAC;QACzG,UAAU,EAAE,CAAC,gBAAgB,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,cAAc,EAAE,YAAY,CAAC;QACxG,UAAU,EAAE,CAAC,aAAa,EAAE,iBAAiB,EAAE,KAAK,EAAE,eAAe,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,CAAC;QACnG,GAAG,EAAE,CAAC,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,cAAc,EAAE,aAAa,EAAE,SAAS,EAAE,iBAAiB,EAAE,gBAAgB,CAAC;QAC5H,OAAO,EAAE,CAAC,IAAI,EAAE,YAAY,EAAE,UAAU,EAAE,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE,QAAQ,CAAC;QAC3F,IAAI,EAAE,CAAC,aAAa,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,iBAAiB,CAAC;QACxG,UAAU,EAAE,CAAC,YAAY,EAAE,gBAAgB,EAAE,SAAS,EAAE,qBAAqB,EAAE,WAAW,EAAE,YAAY,CAAC;QACzG,MAAM,EAAE,CAAC,gBAAgB,EAAE,UAAU,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,WAAW,CAAC;QAC1F,OAAO,EAAE,CAAC,SAAS,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,CAAC;KAC/F;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,MAAM,EAAE;QACN,OAAO,EAAE,CAAC,WAAW,EAAE,OAAO,EAAE,aAAa,EAAE,kBAAkB,CAAC;QAClE,KAAK,EAAE,CAAC,SAAS,EAAE,aAAa,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,cAAc,CAAC;QAClG,GAAG,EAAE,CAAC,YAAY,EAAE,qBAAqB,EAAE,eAAe,EAAE,wBAAwB,CAAC;QACrF,YAAY,EAAE,CAAC,kBAAkB,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,gCAAgC,CAAC;KACjH;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAsB;IAC1D,KAAK,EAAE;QACL,IAAI,EAAE,CAAC,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,aAAa,EAAE,cAAc,EAAE,QAAQ,CAAC;KACtF;IACD,KAAK,EAAE;QACL,IAAI,EAAE,CAAC,QAAQ,EAAE,YAAY,EAAE,SAAS,EAAE,YAAY,EAAE,eAAe,EAAE,QAAQ,CAAC;KACnF;IACD,GAAG,EAAE;QACH,IAAI,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,OAAO,EAAE,UAAU,CAAC;KAC9E;IACD,gBAAgB,EAAE;QAChB,MAAM,EAAE,CAAC,QAAQ,EAAE,gBAAgB,EAAE,SAAS,EAAE,WAAW,EAAE,OAAO,CAAC;KACtE;CACF,CAAC;AAEF,gFAAgF;AAChF,iBAAiB;AACjB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,kBAAkB,GAAsB;IACnD,OAAO,EAAE;QACP,OAAO,EAAE,CAAC,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,CAAC;QACxH,EAAE,EAAE,CAAC,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,UAAU,CAAC;QACrE,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC;QAClG,SAAS,EAAE,CAAC,SAAS,EAAE,WAAW,EAAE,QAAQ,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,gBAAgB,CAAC;QACvH,OAAO,EAAE,CAAC,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC;QAC9D,QAAQ,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC;QAC3D,UAAU,EAAE,CAAC,QAAQ,EAAE,WAAW,CAAC;QACnC,UAAU,EAAE,CAAC,iBAAiB,EAAE,UAAU,EAAE,cAAc,EAAE,cAAc,EAAE,UAAU,CAAC;QACvF,MAAM,EAAE,CAAC,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,aAAa,CAAC;QAC/D,IAAI,EAAE,CAAC,UAAU,EAAE,cAAc,EAAE,eAAe,EAAE,YAAY,CAAC;QACjE,IAAI,EAAE,CAAC,YAAY,EAAE,aAAa,EAAE,eAAe,EAAE,cAAc,EAAE,cAAc,EAAE,WAAW,CAAC;KAClG;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAsB;IACnD,OAAO,EAAE;QACP,EAAE,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,oBAAoB,EAAE,4BAA4B,CAAC;QACtF,OAAO,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,CAAC;QACjE,KAAK,EAAE,CAAC,sBAAsB,EAAE,YAAY,EAAE,eAAe,EAAE,aAAa,EAAE,SAAS,CAAC;QACxF,QAAQ,EAAE,CAAC,wBAAwB,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,eAAe,CAAC;QACnF,QAAQ,EAAE,CAAC,cAAc,EAAE,UAAU,EAAE,eAAe,EAAE,yBAAyB,CAAC;QAClF,MAAM,EAAE,CAAC,0BAA0B,EAAE,0BAA0B,EAAE,oBAAoB,CAAC;KACvF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAsB;IACvD,OAAO,EAAE;QACP,IAAI,EAAE,CAAC,UAAU,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,iBAAiB,EAAE,YAAY,CAAC;KACtH;IACD,IAAI,EAAE;QACJ,IAAI,EAAE,CAAC,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,CAAC;KAClE;IACD,iBAAiB,EAAE;QACjB,IAAI,EAAE,CAAC,iBAAiB,EAAE,WAAW,EAAE,UAAU,EAAE,mBAAmB,EAAE,uBAAuB,EAAE,MAAM,CAAC;KACzG;CACF,CAAC;AAGF,gFAAgF;AAChF,gCAAgC;AAChC,gFAAgF;AAEhF,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACtD,GAAG,gBAAgB;IACnB,GAAG,0BAA0B;IAC7B,GAAG,cAAc;IACjB,GAAG,iBAAiB;IACpB,GAAG,kBAAkB;IACrB,GAAG,kBAAkB;IACrB,GAAG,qBAAqB;CACzB,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,GAAG,kBAAkB;IACrB,GAAG,iBAAiB;IACpB,GAAG,gBAAgB;IACnB,GAAG,qBAAqB;IACxB,GAAG,iBAAiB;IACpB,GAAG,mBAAmB;IACtB,GAAG,yBAAyB;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAsB;IAChD,GAAG,iBAAiB;IACpB,GAAG,uBAAuB;CAC3B,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAsB;IAClD,GAAG,iBAAiB;IACpB,GAAG,iBAAiB;IACpB,GAAG,yBAAyB;CAC7B,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAsB;IAC/C,GAAG,kBAAkB;IACrB,GAAG,kBAAkB;IACrB,GAAG,sBAAsB;CAC1B,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAiD;IAC1E,UAAU,EAAE,qBAAqB;IACjC,MAAM,EAAE,iBAAiB;IACzB,IAAI,EAAE,eAAe;IACrB,MAAM,EAAE,iBAAiB;IACzB,GAAG,EAAE,cAAc;CACpB,CAAC;AAEF,gFAAgF;AAChF,oBAAoB;AACpB,gFAAgF;AAEhF;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,QAA2B;IAC3D,MAAM,QAAQ,GAAG,cAAc,CAAC,QAAQ,CAAC,CAAC;IAC1C,MAAM,KAAK,GAAG,IAAI,GAAG,EAAU,CAAC;IAEhC,KAAK,MAAM,SAAS,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC;QAChD,KAAK,MAAM,QAAQ,IAAI,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC;YAChD,KAAK,MAAM,IAAI,IAAI,QAAQ,EAAE,CAAC;gBAC5B,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC;QACH,CAAC;IACH,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,QAA2B;IAC3D,OAAO,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC;AAC/C,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,sBAAsB,CACpC,aAAqB,EACrB,QAA2B;IAE3B,MAAM,QAAQ,GAAG,cAAc,CAAC,QAAQ,CAAC,CAAC;IAE1C,KAAK,MAAM,CAAC,SAAS,EAAE,UAAU,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC/D,KAAK,MAAM,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC;YAC3D,IAAI,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC;gBAClC,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC;YACjC,CAAC;QACH,CAAC;IACH,CAAC;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,kBAAkB,CAAC,IAAY,EAAE,QAA2B;IAC1E,cAAc;IACd,IAAI,QAAQ,KAAK,YAAY,IAAI,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAC3E,OAAO,IAAI,CAAC;IACd,CAAC;IAED,4BAA4B;IAC5B,MAAM,QAAQ,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;IAC7E,IAAI,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,CAAC,EAAE,CAAC;QACzE,OAAO,IAAI,CAAC;IACd,CAAC;IAED,yBAAyB;IACzB,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;QAC1E,OAAO,IAAI,CAAC;IACd,CAAC;IAED,oBAAoB;IACpB,IAAI,QAAQ,KAAK,QAAQ,IAAI,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,EAAE,EAAE,CAAC;QACxE,OAAO,IAAI,CAAC;IACd,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAAC,QAA2B;IAC3D,OAAO,iBAAiB,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC;AAC1C,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,uBAAuB,CACrC,QAA2B;IAE3B,MAAM,QAAQ,GAAG,cAAc,CAAC,QAAQ,CAAC,CAAC;IAC1C,MAAM,UAAU,GAAG,IAAI,GAAG,EAAoB,CAAC;IAE/C,KAAK,MAAM,UAAU,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC;QACjD,KAAK,MAAM,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC;YAC3D,MAAM,QAAQ,GAAG,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;YAChD,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC,GAAG,QAAQ,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC;QACpD,CAAC;IACH,CAAC;IAED,OAAO,UAAU,CAAC;AACpB,CAAC"}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Framework Wrapper Detection Types
|
|
3
|
+
*
|
|
4
|
+
* Types for detecting custom abstractions built on top of framework primitives.
|
|
5
|
+
*/
|
|
6
|
+
export type PrimitiveSourceType = 'bootstrap' | 'import' | 'frequency' | 'decorator';
|
|
7
|
+
export interface PrimitiveSource {
|
|
8
|
+
type: PrimitiveSourceType;
|
|
9
|
+
confidence: number;
|
|
10
|
+
}
|
|
11
|
+
export interface DetectedPrimitive {
|
|
12
|
+
name: string;
|
|
13
|
+
framework: string;
|
|
14
|
+
category: string;
|
|
15
|
+
source: PrimitiveSource;
|
|
16
|
+
importPath?: string;
|
|
17
|
+
usageCount: number;
|
|
18
|
+
language: SupportedLanguage;
|
|
19
|
+
}
|
|
20
|
+
export type SupportedLanguage = 'typescript' | 'python' | 'java' | 'csharp' | 'php';
|
|
21
|
+
export interface WrapperFunction {
|
|
22
|
+
name: string;
|
|
23
|
+
qualifiedName: string;
|
|
24
|
+
file: string;
|
|
25
|
+
line: number;
|
|
26
|
+
language: SupportedLanguage;
|
|
27
|
+
/** Primitives directly called by this function */
|
|
28
|
+
directPrimitives: string[];
|
|
29
|
+
/** Primitives called through other wrappers */
|
|
30
|
+
transitivePrimitives: string[];
|
|
31
|
+
/** Sorted, deduplicated list of all primitives */
|
|
32
|
+
primitiveSignature: string[];
|
|
33
|
+
/** 1 = direct wrapper, 2+ = transitive */
|
|
34
|
+
depth: number;
|
|
35
|
+
/** Other wrappers this function calls */
|
|
36
|
+
callsWrappers: string[];
|
|
37
|
+
/** Functions that call this wrapper */
|
|
38
|
+
calledBy: string[];
|
|
39
|
+
/** Returns a function */
|
|
40
|
+
isFactory: boolean;
|
|
41
|
+
/** Takes function as parameter */
|
|
42
|
+
isHigherOrder: boolean;
|
|
43
|
+
/** Python/TS decorator pattern */
|
|
44
|
+
isDecorator: boolean;
|
|
45
|
+
/** Async function */
|
|
46
|
+
isAsync: boolean;
|
|
47
|
+
/** Inferred return type */
|
|
48
|
+
returnType?: string | undefined;
|
|
49
|
+
/** Parameter types/names */
|
|
50
|
+
parameterSignature?: string[] | undefined;
|
|
51
|
+
}
|
|
52
|
+
export type WrapperCategory = 'state-management' | 'data-fetching' | 'side-effects' | 'authentication' | 'authorization' | 'validation' | 'dependency-injection' | 'middleware' | 'testing' | 'logging' | 'caching' | 'error-handling' | 'async-utilities' | 'form-handling' | 'routing' | 'factory' | 'decorator' | 'utility' | 'other';
|
|
53
|
+
export interface WrapperCluster {
|
|
54
|
+
id: string;
|
|
55
|
+
name: string;
|
|
56
|
+
description: string;
|
|
57
|
+
/** Primitives that define this cluster */
|
|
58
|
+
primitiveSignature: string[];
|
|
59
|
+
/** Members of this cluster */
|
|
60
|
+
wrappers: WrapperFunction[];
|
|
61
|
+
/** Confidence score 0-1 */
|
|
62
|
+
confidence: number;
|
|
63
|
+
/** Inferred category */
|
|
64
|
+
category: WrapperCategory;
|
|
65
|
+
/** Average wrapper depth */
|
|
66
|
+
avgDepth: number;
|
|
67
|
+
/** Maximum wrapper depth */
|
|
68
|
+
maxDepth: number;
|
|
69
|
+
/** Total times wrappers are called */
|
|
70
|
+
totalUsages: number;
|
|
71
|
+
/** Number of files containing wrappers */
|
|
72
|
+
fileSpread: number;
|
|
73
|
+
/** Suggested pattern names */
|
|
74
|
+
suggestedNames: string[];
|
|
75
|
+
}
|
|
76
|
+
export type FactoryType = 'hook-factory' | 'decorator-factory' | 'bean-factory' | 'service-factory';
|
|
77
|
+
export interface FactoryFunction {
|
|
78
|
+
name: string;
|
|
79
|
+
qualifiedName: string;
|
|
80
|
+
factoryType: FactoryType;
|
|
81
|
+
producedType: string;
|
|
82
|
+
primitiveSignature: string[];
|
|
83
|
+
usages: string[];
|
|
84
|
+
}
|
|
85
|
+
export interface DecoratorWrapper {
|
|
86
|
+
name: string;
|
|
87
|
+
wrappedDecorators: string[];
|
|
88
|
+
appliedTo: string[];
|
|
89
|
+
isParameterized: boolean;
|
|
90
|
+
}
|
|
91
|
+
export type AsyncType = 'promise' | 'async-await' | 'observable' | 'task' | 'future';
|
|
92
|
+
export type ErrorHandlingPattern = 'retry' | 'timeout' | 'fallback' | 'circuit-breaker' | 'none';
|
|
93
|
+
export interface AsyncWrapper {
|
|
94
|
+
name: string;
|
|
95
|
+
asyncType: AsyncType;
|
|
96
|
+
wrappedPrimitives: string[];
|
|
97
|
+
errorHandling: ErrorHandlingPattern;
|
|
98
|
+
usages: string[];
|
|
99
|
+
}
|
|
100
|
+
export interface WrapperAnalysisResult {
|
|
101
|
+
frameworks: FrameworkInfo[];
|
|
102
|
+
primitives: DetectedPrimitive[];
|
|
103
|
+
wrappers: WrapperFunction[];
|
|
104
|
+
clusters: WrapperCluster[];
|
|
105
|
+
factories: FactoryFunction[];
|
|
106
|
+
decoratorWrappers: DecoratorWrapper[];
|
|
107
|
+
asyncWrappers: AsyncWrapper[];
|
|
108
|
+
summary: WrapperSummary;
|
|
109
|
+
}
|
|
110
|
+
export interface FrameworkInfo {
|
|
111
|
+
name: string;
|
|
112
|
+
version?: string | undefined;
|
|
113
|
+
primitiveCount: number;
|
|
114
|
+
language: SupportedLanguage;
|
|
115
|
+
}
|
|
116
|
+
export interface WrapperSummary {
|
|
117
|
+
totalWrappers: number;
|
|
118
|
+
totalClusters: number;
|
|
119
|
+
avgDepth: number;
|
|
120
|
+
maxDepth: number;
|
|
121
|
+
mostWrappedPrimitive: string;
|
|
122
|
+
mostUsedWrapper: string;
|
|
123
|
+
wrappersByLanguage: Record<SupportedLanguage, number>;
|
|
124
|
+
wrappersByCategory: Record<WrapperCategory, number>;
|
|
125
|
+
}
|
|
126
|
+
export interface PrimitiveRegistry {
|
|
127
|
+
[framework: string]: {
|
|
128
|
+
[category: string]: string[];
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
export interface FrameworkDetectionResult {
|
|
132
|
+
framework: string;
|
|
133
|
+
version?: string;
|
|
134
|
+
confidence: number;
|
|
135
|
+
detectedVia: 'package.json' | 'import' | 'decorator' | 'inference';
|
|
136
|
+
}
|
|
137
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/wrappers/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/wrappers/types.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
|