@h3ravel/support 2.2.2 → 2.2.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 (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -692,7 +692,7 @@ declare class Arr {
692
692
  * Arr.divide(['a','b']) -> [[0,1], ['a','b']]
693
693
  * Arr.divide({x:1,y:2}) -> [['x','y'], [1,2]]
694
694
  */
695
- static divide<A>(input: A[] | Record<string, A>): (number[] | A[])[] | (string[] | A[])[];
695
+ static divide<A>(input: A[] | Record<string, A>): (number[] | A[])[] | (A[] | string[])[];
696
696
  /**
697
697
  * Flatten a nested array/object structure into a single-level object
698
698
  * with dot-notated keys.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/support",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
4
4
  "description": "Shared helpers, facades and utilities for H3ravel.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -37,9 +37,9 @@
37
37
  "typescript": "^6.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@h3ravel/shared": "^2.2.2",
40
+ "@h3ravel/shared": "^2.2.3",
41
41
  "@h3ravel/collect.js": "^5.4.0",
42
- "@h3ravel/contracts": "^2.2.2",
42
+ "@h3ravel/contracts": "^2.2.3",
43
43
  "dayjs": "^1.11.18",
44
44
  "luxon": "^3.7.2"
45
45
  },