@schemastore/ty 1.0.2 → 1.0.3

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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,5 +10,5 @@ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/m
10
10
 
11
11
  ## Additional Details
12
12
 
13
- * Last updated: Sun, Mar 15, 2026, 21:50:37 GMT
13
+ * Last updated: Mon, Mar 23, 2026, 05:32:51 GMT
14
14
  * Dependencies: none
package/index.d.ts CHANGED
@@ -1111,9 +1111,9 @@ export type DetectsIgnoreCommentsThatUseInvalidSyntax = Level;
1111
1111
  * alice = Person(name="Alice", age=30)
1112
1112
  * alice["height"] # KeyError: 'height'
1113
1113
  *
1114
- * bob: Person = { "name": "Bob", "age": 30 } # typo!
1114
+ * bob: Person = { "namee": "Bob", "age": 30 } # typo!
1115
1115
  *
1116
- * carol = Person(name="Carol", age=25) # typo!
1116
+ * carol = Person(name="Carol", aeg=25) # typo!
1117
1117
  * ```
1118
1118
  */
1119
1119
  export type DetectsInvalidSubscriptAccessesOrTypedDictLiteralKeys = Level;
package/package.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "private": false,
7
7
  "repository": "https://github.com/ffflorian/schemastore-updater",
8
8
  "types": "index.d.ts",
9
- "version": "1.0.2"
9
+ "version": "1.0.3"
10
10
  }