uni-types 1.11.0 → 1.12.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/README.md +100 -0
- package/dist/index.d.cts +2135 -123
- package/dist/index.d.mts +2135 -123
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1449,6 +1449,106 @@ type Result = If<true, 'success', 'error'> // 'success'
|
|
|
1449
1449
|
| `IsUnion<T>`, `IsIntersection<T>`, `IsOptional<T, K>`, `IsReadonly<T, K>` | Type utilities |
|
|
1450
1450
|
| `Equals<T, U>`, `Extends<T, U>`, `HasKey<T, K>`, `HasKeys<T, K>` | Type comparisons |
|
|
1451
1451
|
|
|
1452
|
+
### Experimental v2 Features *(v1.12.0)*
|
|
1453
|
+
|
|
1454
|
+
| Type | Description |
|
|
1455
|
+
|------|-------------|
|
|
1456
|
+
| `Experimental<T>`, `Unstable<T>`, `Preview<T>`, `Beta<T>` | Stability markers |
|
|
1457
|
+
| `V2_Preview<T>`, `V2_Experimental<T>`, `V2_Alpha<T>`, `V2_Beta<T>` | v2.0.0 preview features |
|
|
1458
|
+
| `FeatureFlag<T, Flag>`, `FeatureGate<T, Condition>`, `ConditionalFeature<T, Condition>` | Feature flags |
|
|
1459
|
+
| `TryFeature<T, Available>`, `OptInFeature<T, OptedIn>` | Experimental utilities |
|
|
1460
|
+
| `StabilityLevel`, `StableFeature<T>`, `BetaFeature<T>`, `AlphaFeature<T>` | Stability levels |
|
|
1461
|
+
|
|
1462
|
+
### Unified Type System Preview *(v1.12.0)*
|
|
1463
|
+
|
|
1464
|
+
| Type | Description |
|
|
1465
|
+
|------|-------------|
|
|
1466
|
+
| `TypeV2<T>`, `OpsV2<T>`, `ExtV2<T>`, `UtilV2<T>` | Core v2 wrappers |
|
|
1467
|
+
| `PickRequiredV2<T, K>`, `DeepPartialV2<T>`, `DeepReadonlyV2<T>`, `DeepRequiredV2<T>` | V2 implementations |
|
|
1468
|
+
| `UnifiedPick<T, K>`, `UnifiedOmit<T, K>`, `UnifiedPartial<T>`, `UnifiedRequired<T>` | Unified operations |
|
|
1469
|
+
| `UnifiedMerge<T, U>`, `UnifiedDeepMerge<T, U>` | Unified merging |
|
|
1470
|
+
| `IsEqualV2<T, U>`, `IsSubtypeV2<T, U>`, `IsSupertypeV2<T, U>` | V2 type predicates |
|
|
1471
|
+
| `TypeBuilderV2<T>`, `V1Compat<T>`, `V2Migration<T, U>` | Migration helpers |
|
|
1472
|
+
|
|
1473
|
+
### HKT Preview *(v1.12.0)*
|
|
1474
|
+
|
|
1475
|
+
| Type | Description |
|
|
1476
|
+
|------|-------------|
|
|
1477
|
+
| `HKTV2<F, A>`, `KindV2<F, A>`, `ApplyV2<F, A>` | HKT primitives |
|
|
1478
|
+
| `TypeConstructorV2<F>`, `ConstructV2<F, Args>` | Type constructors |
|
|
1479
|
+
| `FunctorV2<F>`, `FunctorMap<F, A, B>` | Functor preview |
|
|
1480
|
+
| `MonadV2<M>`, `MonadPure<M, A>`, `MonadChain<M, A, B>` | Monad preview |
|
|
1481
|
+
| `ApplicativeV2<F>`, `ApplicativeLift2<F, A, B, C>` | Applicative preview |
|
|
1482
|
+
| `HKTIdentity<A>`, `HKTConst<A>`, `HKTCompose<F, G, A>` | HKT utilities |
|
|
1483
|
+
|
|
1484
|
+
### Effect System Preview *(v1.12.0)*
|
|
1485
|
+
|
|
1486
|
+
| Type | Description |
|
|
1487
|
+
|------|-------------|
|
|
1488
|
+
| `EffectV2<T, E>`, `PureV2<T>`, `IOV2<T>` | Core effect types |
|
|
1489
|
+
| `TrackEffect<T, E>`, `EffectList<T>`, `EffectSafe<T>` | Effect tracking |
|
|
1490
|
+
| `HandlerV2<E, T>`, `HandleV2<T, E>`, `HandleAllV2<T>` | Effect handlers |
|
|
1491
|
+
| `EffectMap<T, F>`, `EffectFlatMap<T, F>` | Effect composition |
|
|
1492
|
+
| `EffectType`, `IOEffect`, `AsyncEffect`, `StateEffect<S>`, `ErrorEffect<E>` | Effect type markers |
|
|
1493
|
+
|
|
1494
|
+
### Plugin System Preview *(v1.12.0)*
|
|
1495
|
+
|
|
1496
|
+
| Type | Description |
|
|
1497
|
+
|------|-------------|
|
|
1498
|
+
| `PluginV2<T>`, `PluginAPIV2<T>`, `PluginContextV2<T>` | Plugin core |
|
|
1499
|
+
| `PluginHookV2<T>`, `HookTypeV2`, `HookHandlerV2<T>` | Plugin hooks |
|
|
1500
|
+
| `PluginInitV2<T>`, `PluginLoadV2<T>`, `PluginConfigV2<T>` | Plugin lifecycle |
|
|
1501
|
+
| `PluginRegistryV2<T>`, `RegisteredPlugin<T>` | Plugin registry |
|
|
1502
|
+
| `PluginMetadataV2`, `PluginServicesV2` | Plugin metadata |
|
|
1503
|
+
|
|
1504
|
+
### Interop Enhancements *(v1.12.0)*
|
|
1505
|
+
|
|
1506
|
+
| Type | Description |
|
|
1507
|
+
|------|-------------|
|
|
1508
|
+
| `Interop<T, Library>`, `ConvertTo<T, Target>`, `ConvertFrom<T, Source>` | Library interop |
|
|
1509
|
+
| `ToZodSchema<T>`, `FromZodSchema<T>`, `ToYupSchema<T>`, `FromYupSchema<T>` | Schema interop |
|
|
1510
|
+
| `ToJSONSchema<T>`, `FromJSONSchema<T>` | JSON Schema interop |
|
|
1511
|
+
| `ToReact<T>`, `ToVue<T>`, `ToSvelte<T>`, `ToAngular<T>` | Framework interop |
|
|
1512
|
+
| `ToTypeFest<T>`, `FromTypeFest<T>`, `ToTsToolbelt<T>`, `FromTsToolbelt<T>` | Type library interop |
|
|
1513
|
+
|
|
1514
|
+
### Developer Tools Integration *(v1.12.0)*
|
|
1515
|
+
|
|
1516
|
+
| Type | Description |
|
|
1517
|
+
|------|-------------|
|
|
1518
|
+
| `IDEIntegration<T>`, `LanguageServer<T>`, `ServerCapabilities` | IDE integration |
|
|
1519
|
+
| `CodeAction<T>`, `CodeActionKind`, `CodeLens<T>` | Code actions |
|
|
1520
|
+
| `CompletionItem<T>`, `CompletionProvider<T>`, `SmartCompletion<T>` | Auto-completion |
|
|
1521
|
+
| `RefactorAction<T>`, `RefactorSuggestion<T>`, `RefactorPreview<T>` | Refactoring |
|
|
1522
|
+
| `SnippetTemplate<T>`, `SafeRefactor<T>` | Snippets & safe refactoring |
|
|
1523
|
+
|
|
1524
|
+
### Documentation Generation v2 *(v1.12.0)*
|
|
1525
|
+
|
|
1526
|
+
| Type | Description |
|
|
1527
|
+
|------|-------------|
|
|
1528
|
+
| `V2TypeDocumentation<T>`, `AutoDoc<T>`, `DocTemplate<T>`, `DocExample<T>` | Documentation types |
|
|
1529
|
+
| `GenerateJSDoc<T>`, `JSDocTagV2`, `JSDocTemplate<T>` | JSDoc generation |
|
|
1530
|
+
| `APIDocumentation<T>`, `EndpointDoc<T>`, `ParameterDoc<T>` | API documentation |
|
|
1531
|
+
| `DocRenderOptions`, `DocRenderResult` | Documentation rendering |
|
|
1532
|
+
|
|
1533
|
+
### Community Feedback System *(v1.12.0)*
|
|
1534
|
+
|
|
1535
|
+
| Type | Description |
|
|
1536
|
+
|------|-------------|
|
|
1537
|
+
| `FeatureFeedback<T>`, `BugReport<T>`, `FeatureRequest<T>` | Feedback types |
|
|
1538
|
+
| `BugSeverity`, `FeaturePriority`, `FeatureCategory` | Classification |
|
|
1539
|
+
| `Survey<T>`, `SurveyQuestion<T>`, `SurveyResult<T>` | Survey types |
|
|
1540
|
+
| `FeedbackAnalysis<T>`, `SentimentResult` | Analysis |
|
|
1541
|
+
| `IssueCategory`, `IssueTemplate<T>`, `IssueTrackingConfig` | Issue tracking |
|
|
1542
|
+
|
|
1543
|
+
### RC Quality Gates *(v1.12.0)*
|
|
1544
|
+
|
|
1545
|
+
| Type | Description |
|
|
1546
|
+
|------|-------------|
|
|
1547
|
+
| `QualityGate<T>`, `GateCondition<T>`, `GateResult`, `GateSeverity` | Quality gates |
|
|
1548
|
+
| `ValidateRC<T>`, `RCValidationReport<T>`, `RCReadiness` | RC validation |
|
|
1549
|
+
| `ReleaseCriteria<T>`, `ReleaseCriteriaType`, `ReleaseBlocker` | Release criteria |
|
|
1550
|
+
| `RCConfig`, `NotificationConfig`, `NotificationChannel` | RC configuration |
|
|
1551
|
+
|
|
1452
1552
|
### Migration Utilities *(v1.11.0)*
|
|
1453
1553
|
|
|
1454
1554
|
| Type | Description |
|