@augment-vir/core 31.14.0 → 31.15.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/dist/augments/enum/enum-values.d.ts +1 -1
- package/dist/augments/error/ensure-error.d.ts +1 -1
- package/dist/augments/http/http-status.d.ts +2 -2
- package/dist/augments/json/json-compatible.d.ts +1 -1
- package/dist/augments/object/object-value-types.d.ts +1 -1
- package/dist/augments/object/required-keys.d.ts +1 -1
- package/dist/augments/partial-type.d.ts +1 -1
- package/dist/augments/promise/wait.d.ts +1 -1
- package/dist/augments/string/punctuation.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type
|
|
1
|
+
import { type ArrayElement } from '../array/array.js';
|
|
2
|
+
import { type ExtractKeysWithMatchingValues } from '../object/object-keys.js';
|
|
3
3
|
/**
|
|
4
4
|
* All standardized HTTP status codes.
|
|
5
5
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Jsonify, Primitive } from 'type-fest';
|
|
1
|
+
import { type Jsonify, type Primitive } from 'type-fest';
|
|
2
2
|
/**
|
|
3
3
|
* These are similar in purpose, name, and structure to type-fest's JsonValue types but these are
|
|
4
4
|
* more permissive. The goal here is to allow any types that do not get serialized into just empty
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@augment-vir/core",
|
|
3
|
-
"version": "31.
|
|
3
|
+
"version": "31.15.0",
|
|
4
4
|
"description": "Core augment-vir augments. Use @augment-vir/common instead.",
|
|
5
5
|
"homepage": "https://github.com/electrovir/augment-vir",
|
|
6
6
|
"bugs": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"type-fest": "^4.40.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "^22.
|
|
37
|
+
"@types/node": "^22.15.0",
|
|
38
38
|
"c8": "^10.1.3",
|
|
39
39
|
"istanbul-smart-text-reporter": "^1.1.5",
|
|
40
40
|
"typescript": "^5.8.3"
|