@enjoys/context-engine 1.1.0 → 1.1.1

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.
Files changed (85) hide show
  1. package/data/codeActions/dart.json +31 -0
  2. package/data/codeActions/docker-compose.json +112 -0
  3. package/data/codeActions/kotlin.json +18 -0
  4. package/data/codeActions/scala.json +26 -0
  5. package/data/codeActions/swift.json +26 -0
  6. package/data/codeLens/dart.json +15 -0
  7. package/data/codeLens/docker-compose.json +4 -0
  8. package/data/codeLens/kotlin.json +10 -0
  9. package/data/codeLens/scala.json +18 -0
  10. package/data/codeLens/swift.json +15 -0
  11. package/data/color/dart.json +37 -0
  12. package/data/color/docker-compose.json +6 -0
  13. package/data/color/kotlin.json +12 -0
  14. package/data/color/scala.json +13 -0
  15. package/data/color/swift.json +37 -0
  16. package/data/commands/kotlin.json +45 -0
  17. package/data/commands/scala.json +171 -0
  18. package/data/commands/swift.json +67 -0
  19. package/data/completion/dart.json +1436 -0
  20. package/data/completion/docker-compose.json +959 -0
  21. package/data/completion/kotlin.json +1580 -0
  22. package/data/completion/scala.json +1076 -0
  23. package/data/completion/swift.json +1742 -0
  24. package/data/declaration/dart.json +25 -0
  25. package/data/declaration/docker-compose.json +42 -0
  26. package/data/declaration/kotlin.json +14 -0
  27. package/data/declaration/scala.json +23 -0
  28. package/data/declaration/swift.json +18 -0
  29. package/data/defination/dart.json +369 -0
  30. package/data/defination/docker-compose.json +347 -0
  31. package/data/defination/kotlin.json +789 -0
  32. package/data/defination/scala.json +285 -0
  33. package/data/defination/swift.json +551 -0
  34. package/data/documentHighlight/dart.json +84 -0
  35. package/data/documentHighlight/docker-compose.json +233 -0
  36. package/data/documentHighlight/kotlin.json +37 -0
  37. package/data/documentHighlight/scala.json +79 -0
  38. package/data/documentHighlight/swift.json +89 -0
  39. package/data/documentSymbol/dart.json +20 -0
  40. package/data/documentSymbol/docker-compose.json +75 -0
  41. package/data/documentSymbol/kotlin.json +15 -0
  42. package/data/documentSymbol/scala.json +21 -0
  43. package/data/documentSymbol/swift.json +17 -0
  44. package/data/formatting/dart.json +16 -0
  45. package/data/formatting/docker-compose.json +24 -0
  46. package/data/formatting/kotlin.json +14 -0
  47. package/data/formatting/scala.json +17 -0
  48. package/data/formatting/swift.json +19 -0
  49. package/data/hover/dart.json +161 -0
  50. package/data/hover/docker-compose.json +404 -0
  51. package/data/hover/kotlin.json +341 -0
  52. package/data/hover/scala.json +209 -0
  53. package/data/hover/swift.json +239 -0
  54. package/data/implementation/dart.json +14 -0
  55. package/data/implementation/docker-compose.json +7 -0
  56. package/data/implementation/kotlin.json +13 -0
  57. package/data/implementation/scala.json +16 -0
  58. package/data/implementation/swift.json +14 -0
  59. package/data/inlayHints/dart.json +29 -0
  60. package/data/inlayHints/docker-compose.json +43 -0
  61. package/data/inlayHints/kotlin.json +23 -0
  62. package/data/inlayHints/scala.json +42 -0
  63. package/data/inlayHints/swift.json +37 -0
  64. package/data/inlineCompletions/dart.json +27 -0
  65. package/data/inlineCompletions/docker-compose.json +89 -0
  66. package/data/inlineCompletions/kotlin.json +19 -0
  67. package/data/inlineCompletions/scala.json +26 -0
  68. package/data/inlineCompletions/swift.json +23 -0
  69. package/data/links/dart.json +16 -0
  70. package/data/links/docker-compose.json +47 -0
  71. package/data/links/kotlin.json +10 -0
  72. package/data/links/scala.json +17 -0
  73. package/data/links/swift.json +13 -0
  74. package/data/manifest.json +38 -0
  75. package/data/references/dart.json +15 -0
  76. package/data/references/docker-compose.json +42 -0
  77. package/data/references/kotlin.json +12 -0
  78. package/data/references/scala.json +15 -0
  79. package/data/references/swift.json +14 -0
  80. package/data/typeDefinition/dart.json +35 -0
  81. package/data/typeDefinition/docker-compose.json +4 -0
  82. package/data/typeDefinition/kotlin.json +33 -0
  83. package/data/typeDefinition/scala.json +52 -0
  84. package/data/typeDefinition/swift.json +56 -0
  85. package/package.json +1 -1
@@ -0,0 +1,33 @@
1
+ {
2
+ "language": "kotlin",
3
+ "typeDefinitions": {
4
+ "Int": {"type": "primitive", "signature": "class Int : Number, Comparable<Int>", "description": "32-bit signed integer", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/"},
5
+ "Long": {"type": "primitive", "signature": "class Long : Number, Comparable<Long>", "description": "64-bit signed integer", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/"},
6
+ "Short": {"type": "primitive", "signature": "class Short : Number, Comparable<Short>", "description": "16-bit signed integer", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-short/"},
7
+ "Byte": {"type": "primitive", "signature": "class Byte : Number, Comparable<Byte>", "description": "8-bit signed integer", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte/"},
8
+ "Float": {"type": "primitive", "signature": "class Float : Number, Comparable<Float>", "description": "32-bit floating point", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/"},
9
+ "Double": {"type": "primitive", "signature": "class Double : Number, Comparable<Double>", "description": "64-bit floating point", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/"},
10
+ "Boolean": {"type": "primitive", "signature": "class Boolean : Comparable<Boolean>", "description": "Boolean type with true/false values", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/"},
11
+ "Char": {"type": "primitive", "signature": "class Char : Comparable<Char>", "description": "16-bit Unicode character", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-char/"},
12
+ "String": {"type": "class", "signature": "class String : Comparable<String>, CharSequence", "description": "Immutable sequence of characters", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/"},
13
+ "Unit": {"type": "class", "signature": "object Unit", "description": "Type with only one value (like void)", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/"},
14
+ "Nothing": {"type": "class", "signature": "class Nothing", "description": "Type with no instances, used for functions that never return", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-nothing.html"},
15
+ "Any": {"type": "class", "signature": "open class Any", "description": "Root of the Kotlin class hierarchy", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/"},
16
+ "Array": {"type": "class", "signature": "class Array<T>", "description": "Array of objects", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/"},
17
+ "List": {"type": "interface", "signature": "interface List<out E> : Collection<E>", "description": "Read-only ordered collection", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/"},
18
+ "MutableList": {"type": "interface", "signature": "interface MutableList<E> : List<E>, MutableCollection<E>", "description": "Mutable ordered collection", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/"},
19
+ "Map": {"type": "interface", "signature": "interface Map<K, out V>", "description": "Read-only key-value collection", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/"},
20
+ "MutableMap": {"type": "interface", "signature": "interface MutableMap<K, V> : Map<K, V>", "description": "Mutable key-value collection", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-map/"},
21
+ "Set": {"type": "interface", "signature": "interface Set<out E> : Collection<E>", "description": "Read-only set of unique elements", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/"},
22
+ "MutableSet": {"type": "interface", "signature": "interface MutableSet<E> : Set<E>, MutableCollection<E>", "description": "Mutable set of unique elements", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-set/"},
23
+ "Pair": {"type": "class", "signature": "data class Pair<out A, out B>(val first: A, val second: B)", "description": "Pair of two values", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/"},
24
+ "Triple": {"type": "class", "signature": "data class Triple<out A, out B, out C>(val first: A, val second: B, val third: C)", "description": "Triple of three values", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-triple/"},
25
+ "Sequence": {"type": "interface", "signature": "interface Sequence<out T>", "description": "Lazily evaluated collection", "module": "kotlin.sequences", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/-sequence/"},
26
+ "Comparable": {"type": "interface", "signature": "interface Comparable<in T>", "description": "Interface for types with natural ordering", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-comparable/"},
27
+ "Iterable": {"type": "interface", "signature": "interface Iterable<out T>", "description": "Interface for types that can be iterated", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/"},
28
+ "Collection": {"type": "interface", "signature": "interface Collection<out E> : Iterable<E>", "description": "Read-only collection", "module": "kotlin.collections", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/"},
29
+ "Regex": {"type": "class", "signature": "class Regex", "description": "Regular expression", "module": "kotlin.text", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-regex/"},
30
+ "Result": {"type": "class", "signature": "value class Result<out T>", "description": "Encapsulates a successful or failed result", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-result/"},
31
+ "Lazy": {"type": "interface", "signature": "interface Lazy<out T>", "description": "Lazy value evaluation", "module": "kotlin", "url": "https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-lazy/"}
32
+ }
33
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "language": "scala",
3
+ "typeDefinitions": {
4
+ "Int": {"type": "class", "signature": "abstract final class Int extends AnyVal", "description": "32-bit signed integer", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Int.html"},
5
+ "Long": {"type": "class", "signature": "abstract final class Long extends AnyVal", "description": "64-bit signed integer", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Long.html"},
6
+ "Short": {"type": "class", "signature": "abstract final class Short extends AnyVal", "description": "16-bit signed integer", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Short.html"},
7
+ "Byte": {"type": "class", "signature": "abstract final class Byte extends AnyVal", "description": "8-bit signed integer", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Byte.html"},
8
+ "Float": {"type": "class", "signature": "abstract final class Float extends AnyVal", "description": "32-bit IEEE 754 single-precision float", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Float.html"},
9
+ "Double": {"type": "class", "signature": "abstract final class Double extends AnyVal", "description": "64-bit IEEE 754 double-precision float", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Double.html"},
10
+ "Boolean": {"type": "class", "signature": "abstract final class Boolean extends AnyVal", "description": "Boolean value type (true/false)", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Boolean.html"},
11
+ "Char": {"type": "class", "signature": "abstract final class Char extends AnyVal", "description": "16-bit unsigned Unicode character", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Char.html"},
12
+ "String": {"type": "type", "signature": "type String = java.lang.String", "description": "An immutable sequence of characters", "module": "scala.Predef", "url": "https://www.scala-lang.org/api/current/scala/Predef$.html"},
13
+ "Unit": {"type": "class", "signature": "abstract final class Unit extends AnyVal", "description": "The unit type with single value (). Similar to void", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Unit.html"},
14
+ "Nothing": {"type": "class", "signature": "abstract final class Nothing", "description": "Bottom type. Subtype of every other type. No instances exist", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Nothing.html"},
15
+ "Null": {"type": "class", "signature": "abstract final class Null", "description": "Type of the null reference. Subtype of all reference types", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Null.html"},
16
+ "Any": {"type": "class", "signature": "abstract class Any", "description": "Root of the Scala type hierarchy. Supertype of everything", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Any.html"},
17
+ "AnyRef": {"type": "type", "signature": "type AnyRef = java.lang.Object", "description": "Root of all reference types. Equivalent to java.lang.Object", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/AnyRef.html"},
18
+ "AnyVal": {"type": "class", "signature": "abstract class AnyVal extends Any", "description": "Root of all value types (Int, Double, Boolean, etc.)", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/AnyVal.html"},
19
+ "Option": {"type": "class", "signature": "sealed abstract class Option[+A] extends IterableOnce[A]", "description": "Represents an optional value: Some(x) or None", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Option.html"},
20
+ "Some": {"type": "class", "signature": "case class Some[+A](value: A) extends Option[A]", "description": "Contains a value within an Option", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Some.html"},
21
+ "None": {"type": "object", "signature": "object None extends Option[Nothing]", "description": "Represents the absence of a value in Option", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/None$.html"},
22
+ "Either": {"type": "class", "signature": "sealed abstract class Either[+A, +B]", "description": "Represents a value of one of two possible types", "module": "scala.util", "url": "https://www.scala-lang.org/api/current/scala/util/Either.html"},
23
+ "Left": {"type": "class", "signature": "case class Left[+A, +B](value: A) extends Either[A, B]", "description": "Left side of Either, conventionally for errors", "module": "scala.util", "url": "https://www.scala-lang.org/api/current/scala/util/Left.html"},
24
+ "Right": {"type": "class", "signature": "case class Right[+A, +B](value: B) extends Either[A, B]", "description": "Right side of Either, conventionally for success", "module": "scala.util", "url": "https://www.scala-lang.org/api/current/scala/util/Right.html"},
25
+ "Try": {"type": "class", "signature": "sealed abstract class Try[+T]", "description": "Computation wrapper: Success or Failure", "module": "scala.util", "url": "https://www.scala-lang.org/api/current/scala/util/Try.html"},
26
+ "Success": {"type": "class", "signature": "case class Success[+T](value: T) extends Try[T]", "description": "Successful result of a Try computation", "module": "scala.util", "url": "https://www.scala-lang.org/api/current/scala/util/Success.html"},
27
+ "Failure": {"type": "class", "signature": "case class Failure[+T](exception: Throwable) extends Try[T]", "description": "Failed result of a Try computation", "module": "scala.util", "url": "https://www.scala-lang.org/api/current/scala/util/Failure.html"},
28
+ "Future": {"type": "trait", "signature": "trait Future[+T] extends Awaitable[T]", "description": "Represents an asynchronous computation", "module": "scala.concurrent", "url": "https://www.scala-lang.org/api/current/scala/concurrent/Future.html"},
29
+ "List": {"type": "class", "signature": "sealed abstract class List[+A] extends AbstractSeq[A]", "description": "Immutable linked list", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/List.html"},
30
+ "Map": {"type": "trait", "signature": "trait Map[K, +V] extends Iterable[(K, V)]", "description": "Immutable key-value collection", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/Map.html"},
31
+ "Set": {"type": "trait", "signature": "trait Set[A] extends Iterable[A]", "description": "Immutable collection of unique elements", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/Set.html"},
32
+ "Vector": {"type": "class", "signature": "class Vector[+A] extends AbstractSeq[A] with IndexedSeq[A]", "description": "Immutable indexed sequence with efficient random access", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/Vector.html"},
33
+ "Array": {"type": "class", "signature": "final class Array[T] extends Serializable with Cloneable", "description": "Mutable indexed sequence backed by a Java array", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Array.html"},
34
+ "Seq": {"type": "trait", "signature": "trait Seq[+A] extends Iterable[A]", "description": "General sequence type", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/Seq.html"},
35
+ "Iterator": {"type": "trait", "signature": "trait Iterator[+A] extends IterableOnce[A]", "description": "One-time traversable collection", "module": "scala.collection", "url": "https://www.scala-lang.org/api/current/scala/collection/Iterator.html"},
36
+ "Range": {"type": "class", "signature": "class Range(start: Int, end: Int, step: Int) extends AbstractSeq[Int]", "description": "Ordered sequence of evenly-spaced integers", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/Range.html"},
37
+ "Tuple": {"type": "class", "signature": "(T1, T2, ..., TN)", "description": "Fixed-size heterogeneous container", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Tuple.html"},
38
+ "Function0": {"type": "trait", "signature": "trait Function0[+R] extends AnyRef", "description": "Function with no arguments: () => R", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Function0.html"},
39
+ "Function1": {"type": "trait", "signature": "trait Function1[-T1, +R] extends AnyRef", "description": "Function with one argument: T1 => R", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Function1.html"},
40
+ "Function2": {"type": "trait", "signature": "trait Function2[-T1, -T2, +R] extends AnyRef", "description": "Function with two arguments: (T1, T2) => R", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/Function2.html"},
41
+ "PartialFunction": {"type": "trait", "signature": "trait PartialFunction[-A, +B] extends (A => B)", "description": "Partial function defined for a subset of inputs", "module": "scala", "url": "https://www.scala-lang.org/api/current/scala/PartialFunction.html"},
42
+ "LazyList": {"type": "class", "signature": "class LazyList[+A] extends AbstractSeq[A]", "description": "Lazily evaluated linked list", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/LazyList.html"},
43
+ "IndexedSeq": {"type": "trait", "signature": "trait IndexedSeq[+A] extends Seq[A]", "description": "Sequence with efficient indexed access", "module": "scala.collection.immutable", "url": "https://www.scala-lang.org/api/current/scala/collection/immutable/IndexedSeq.html"},
44
+ "Iterable": {"type": "trait", "signature": "trait Iterable[+A] extends IterableOnce[A]", "description": "Base trait for all iterable collections", "module": "scala.collection", "url": "https://www.scala-lang.org/api/current/scala/collection/Iterable.html"},
45
+ "BigInt": {"type": "class", "signature": "class BigInt(val bigInteger: BigInteger) extends ScalaNumber", "description": "Arbitrary-precision integer", "module": "scala.math", "url": "https://www.scala-lang.org/api/current/scala/math/BigInt.html"},
46
+ "BigDecimal": {"type": "class", "signature": "class BigDecimal(val bigDecimal: java.math.BigDecimal) extends ScalaNumber", "description": "Arbitrary-precision decimal number", "module": "scala.math", "url": "https://www.scala-lang.org/api/current/scala/math/BigDecimal.html"},
47
+ "Promise": {"type": "trait", "signature": "trait Promise[T]", "description": "Writable, single-assignment container for completing a Future", "module": "scala.concurrent", "url": "https://www.scala-lang.org/api/current/scala/concurrent/Promise.html"},
48
+ "Duration": {"type": "class", "signature": "abstract class Duration extends Serializable with Ordered[Duration]", "description": "Represents a duration of time", "module": "scala.concurrent.duration", "url": "https://www.scala-lang.org/api/current/scala/concurrent/duration/Duration.html"},
49
+ "Ordering": {"type": "trait", "signature": "trait Ordering[T] extends Comparator[T] with PartialOrdering[T]", "description": "Type class for types with a total ordering", "module": "scala.math", "url": "https://www.scala-lang.org/api/current/scala/math/Ordering.html"},
50
+ "Numeric": {"type": "trait", "signature": "trait Numeric[T] extends Ordering[T]", "description": "Type class for numeric operations", "module": "scala.math", "url": "https://www.scala-lang.org/api/current/scala/math/Numeric.html"}
51
+ }
52
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "language": "swift",
3
+ "typeDefinitions": {
4
+ "Int": {"type": "struct", "signature": "struct Int: FixedWidthInteger, SignedInteger", "description": "A signed integer value type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/int"},
5
+ "Double": {"type": "struct", "signature": "struct Double: FloatingPoint", "description": "A double-precision, floating-point value type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/double"},
6
+ "Float": {"type": "struct", "signature": "struct Float: FloatingPoint", "description": "A single-precision, floating-point value type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/float"},
7
+ "String": {"type": "struct", "signature": "struct String: StringProtocol, Hashable, Codable", "description": "A Unicode string value", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/string"},
8
+ "Bool": {"type": "struct", "signature": "struct Bool: Sendable, Hashable, Codable", "description": "A value type whose instances are either true or false", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/bool"},
9
+ "Array": {"type": "struct", "signature": "struct Array<Element>: RandomAccessCollection, MutableCollection", "description": "An ordered, random-access collection", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/array"},
10
+ "Dictionary": {"type": "struct", "signature": "struct Dictionary<Key: Hashable, Value>: Collection", "description": "A collection whose elements are key-value pairs", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/dictionary"},
11
+ "Set": {"type": "struct", "signature": "struct Set<Element: Hashable>: Collection", "description": "An unordered collection of unique elements", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/set"},
12
+ "Optional": {"type": "enum", "signature": "enum Optional<Wrapped>: ExpressibleByNilLiteral", "description": "A type that represents either a wrapped value or the absence of a value", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/optional"},
13
+ "Result": {"type": "enum", "signature": "enum Result<Success, Failure: Error>", "description": "A value that represents either a success or a failure", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/result"},
14
+ "Character": {"type": "struct", "signature": "struct Character: Hashable, Sendable", "description": "A single extended grapheme cluster", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/character"},
15
+ "UInt": {"type": "struct", "signature": "struct UInt: FixedWidthInteger, UnsignedInteger", "description": "An unsigned integer value type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/uint"},
16
+ "Int8": {"type": "struct", "signature": "struct Int8: FixedWidthInteger, SignedInteger", "description": "An 8-bit signed integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/int8"},
17
+ "Int16": {"type": "struct", "signature": "struct Int16: FixedWidthInteger, SignedInteger", "description": "A 16-bit signed integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/int16"},
18
+ "Int32": {"type": "struct", "signature": "struct Int32: FixedWidthInteger, SignedInteger", "description": "A 32-bit signed integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/int32"},
19
+ "Int64": {"type": "struct", "signature": "struct Int64: FixedWidthInteger, SignedInteger", "description": "A 64-bit signed integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/int64"},
20
+ "UInt8": {"type": "struct", "signature": "struct UInt8: FixedWidthInteger, UnsignedInteger", "description": "An 8-bit unsigned integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/uint8"},
21
+ "UInt16": {"type": "struct", "signature": "struct UInt16: FixedWidthInteger, UnsignedInteger", "description": "A 16-bit unsigned integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/uint16"},
22
+ "UInt32": {"type": "struct", "signature": "struct UInt32: FixedWidthInteger, UnsignedInteger", "description": "A 32-bit unsigned integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/uint32"},
23
+ "UInt64": {"type": "struct", "signature": "struct UInt64: FixedWidthInteger, UnsignedInteger", "description": "A 64-bit unsigned integer type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/uint64"},
24
+ "Data": {"type": "struct", "signature": "struct Data: Collection, ContiguousBytes, Hashable", "description": "A byte buffer in memory", "module": "Foundation", "url": "https://developer.apple.com/documentation/foundation/data"},
25
+ "URL": {"type": "struct", "signature": "struct URL: Hashable, Equatable, Sendable", "description": "A value that identifies the location of a resource", "module": "Foundation", "url": "https://developer.apple.com/documentation/foundation/url"},
26
+ "Date": {"type": "struct", "signature": "struct Date: Comparable, Hashable, Codable, Sendable", "description": "A specific point in time, independent of any calendar or time zone", "module": "Foundation", "url": "https://developer.apple.com/documentation/foundation/date"},
27
+ "Error": {"type": "protocol", "signature": "protocol Error", "description": "A type representing an error value that can be thrown", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/error"},
28
+ "Any": {"type": "protocol", "signature": "protocol Any", "description": "The protocol to which all types implicitly conform", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/any"},
29
+ "AnyObject": {"type": "protocol", "signature": "protocol AnyObject", "description": "The protocol to which all classes implicitly conform", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/anyobject"},
30
+ "AnyHashable": {"type": "struct", "signature": "struct AnyHashable: Hashable", "description": "A type-erased hashable value", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/anyhashable"},
31
+ "Range": {"type": "struct", "signature": "struct Range<Bound: Comparable>", "description": "A half-open interval from a lower bound up to, but not including, an upper bound", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/range"},
32
+ "ClosedRange": {"type": "struct", "signature": "struct ClosedRange<Bound: Comparable>", "description": "An interval from a lower bound up to, and including, an upper bound", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/closedrange"},
33
+ "Void": {"type": "typealias", "signature": "typealias Void = ()", "description": "The return type of functions that don't explicitly specify a return type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/void"},
34
+ "Never": {"type": "enum", "signature": "enum Never", "description": "The return type of functions that do not return normally; a type with no values", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/never"},
35
+ "Codable": {"type": "typealias", "signature": "typealias Codable = Decodable & Encodable", "description": "A type that can convert itself into and out of an external representation", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/codable"},
36
+ "Hashable": {"type": "protocol", "signature": "protocol Hashable: Equatable", "description": "A type that can be hashed into a Hasher to produce an integer hash value", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/hashable"},
37
+ "Equatable": {"type": "protocol", "signature": "protocol Equatable", "description": "A type that can be compared for value equality", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/equatable"},
38
+ "Comparable": {"type": "protocol", "signature": "protocol Comparable: Equatable", "description": "A type that can be compared using the relational operators", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/comparable"},
39
+ "Identifiable": {"type": "protocol", "signature": "protocol Identifiable { associatedtype ID: Hashable; var id: ID { get } }", "description": "A class of types whose instances hold the value of an entity with stable identity", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/identifiable"},
40
+ "Sendable": {"type": "protocol", "signature": "protocol Sendable", "description": "A type whose values can safely be passed across concurrency domains by copying", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/sendable"},
41
+ "AsyncSequence": {"type": "protocol", "signature": "protocol AsyncSequence", "description": "A type that provides asynchronous, sequential, iterated access to its elements", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/asyncsequence"},
42
+ "Task": {"type": "struct", "signature": "struct Task<Success: Sendable, Failure: Error>", "description": "A unit of asynchronous work", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/task"},
43
+ "Sequence": {"type": "protocol", "signature": "protocol Sequence", "description": "A type that provides sequential, iterated access to its elements", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/sequence"},
44
+ "Collection": {"type": "protocol", "signature": "protocol Collection: Sequence", "description": "A sequence whose elements can be traversed multiple times and accessed by indexed subscript", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/collection"},
45
+ "Decodable": {"type": "protocol", "signature": "protocol Decodable", "description": "A type that can decode itself from an external representation", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/decodable"},
46
+ "Encodable": {"type": "protocol", "signature": "protocol Encodable", "description": "A type that can encode itself to an external representation", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/encodable"},
47
+ "CustomStringConvertible": {"type": "protocol", "signature": "protocol CustomStringConvertible", "description": "A type with a customized textual representation", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/customstringconvertible"},
48
+ "Substring": {"type": "struct", "signature": "struct Substring: StringProtocol", "description": "A slice of a string", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/substring"},
49
+ "Slice": {"type": "struct", "signature": "struct Slice<Base: Collection>: Collection", "description": "A view into a subsequence of elements of another collection", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/slice"},
50
+ "AsyncStream": {"type": "struct", "signature": "struct AsyncStream<Element>: AsyncSequence", "description": "An asynchronous sequence generated from a closure that calls a continuation to produce new elements", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/asyncstream"},
51
+ "AsyncThrowingStream": {"type": "struct", "signature": "struct AsyncThrowingStream<Element, Failure: Error>: AsyncSequence", "description": "An asynchronous sequence generated from an error-throwing closure", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/asyncthrowingstream"},
52
+ "Hasher": {"type": "struct", "signature": "struct Hasher", "description": "The universal hash function used by Set and Dictionary", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/hasher"},
53
+ "KeyPath": {"type": "class", "signature": "class KeyPath<Root, Value>: PartialKeyPath<Root>", "description": "A key path from a specific root type to a specific resulting value type", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/keypath"},
54
+ "StaticString": {"type": "struct", "signature": "struct StaticString", "description": "A string type designed to represent text that is known at compile time", "module": "Swift", "url": "https://developer.apple.com/documentation/swift/staticstring"}
55
+ }
56
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enjoys/context-engine",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Comprehensive CLI command context engine with 135 tools — subcommands, options, examples, and runtime context detectors for intelligent terminal autocomplete",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",