groove-dev 0.22.15 → 0.22.18

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 (25) hide show
  1. package/node_modules/@discordjs/collection/CHANGELOG.md +190 -0
  2. package/node_modules/@discordjs/rest/node_modules/@sapphire/snowflake/CHANGELOG.md +328 -0
  3. package/node_modules/@groove-dev/cli/src/setup.js +166 -49
  4. package/node_modules/@groove-dev/gui/dist/assets/index-B9zTu934.css +1 -0
  5. package/node_modules/@groove-dev/gui/dist/assets/{index-Bh_3vWAx.js → index-DmCo7U7J.js} +50 -50
  6. package/node_modules/@groove-dev/gui/dist/index.html +2 -2
  7. package/node_modules/@groove-dev/gui/package.json +1 -1
  8. package/node_modules/@groove-dev/gui/src/components/agents/agent-feed.jsx +104 -31
  9. package/node_modules/@sapphire/async-queue/CHANGELOG.md +211 -0
  10. package/node_modules/@sapphire/shapeshift/CHANGELOG.md +464 -0
  11. package/node_modules/@sapphire/snowflake/CHANGELOG.md +312 -0
  12. package/node_modules/@vladfrangu/async_event_emitter/CHANGELOG.md +117 -0
  13. package/node_modules/discord-api-types/CHANGELOG.md +2417 -0
  14. package/node_modules/discord-api-types/scripts/versions.mjs +46 -0
  15. package/node_modules/get-nonce/CHANGELOG.md +1 -0
  16. package/node_modules/ts-mixer/CHANGELOG.md +120 -0
  17. package/package.json +1 -1
  18. package/packages/cli/src/setup.js +166 -49
  19. package/packages/gui/dist/assets/index-B9zTu934.css +1 -0
  20. package/packages/gui/dist/assets/{index-Bh_3vWAx.js → index-DmCo7U7J.js} +50 -50
  21. package/packages/gui/dist/index.html +2 -2
  22. package/packages/gui/package.json +1 -1
  23. package/packages/gui/src/components/agents/agent-feed.jsx +104 -31
  24. package/node_modules/@groove-dev/gui/dist/assets/index-Ba83qhKp.css +0 -1
  25. package/packages/gui/dist/assets/index-Ba83qhKp.css +0 -1
@@ -0,0 +1,464 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ # [4.0.0](https://github.com/sapphiredev/shapeshift/compare/v3.9.7...v4.0.0) - (2024-05-20)
6
+
7
+ ## 🚀 Features
8
+
9
+ - ***:** Add custom message options to all shapes, validators and constraints (#231) ([44a5cea](https://github.com/sapphiredev/shapeshift/commit/44a5cea211ebe409316d3d9e83afb01051a14498))
10
+ - 💥 **BREAKING CHANGE:** Most shapes and validators that were previously getters are now functions to allow for custom options. The following list should show all of the changes, but if we have forgot any and you get an error saying something should be a function where you have provided a constant it is safe to assume you simply need to add `()` to your code for it to work again.
11
+ - 💥 **BREAKING CHANGE:** `PickDefined` utility type has been removed.
12
+ - 💥 **BREAKING CHANGE:** `PickUndefinedMakeOptional` utility type has been removed.
13
+ - 💥 **BREAKING CHANGE:** `NonNullObject` utility type has been removed.
14
+ - 💥 **BREAKING CHANGE:** `s.any` is now `s.any()` to allow for custom options as argument.
15
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthEqual` is now `s.array(T).lengthEqual()` to allow for custom options as argument.
16
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthGreaterThan` is now `s.array(T).lengthGreaterThan()` to allow for custom options as argument.
17
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthGreaterThanOrEqual` is now `s.array(T).lengthGreaterThanOrEqual()` to allow for custom options as argument.
18
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthLessThan` is now `s.array(T).lengthLessThan()` to allow for custom options as argument.
19
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthLessThanOrEqual` is now `s.array(T).lengthLessThanOrEqual()` to allow for custom options as argument.
20
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthNotEqual` is now `s.array(T).lengthNotEqual()` to allow for custom options as argument.
21
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthRange` is now `s.array(T).lengthRange()` to allow for custom options as argument.
22
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthRangeExclusive` is now `s.array(T).lengthRangeExclusive()` to allow for custom options as argument.
23
+ - 💥 **BREAKING CHANGE:** `s.array(T).lengthRangeInclusive` is now `s.array(T).lengthRangeInclusive()` to allow for custom options as argument.
24
+ - 💥 **BREAKING CHANGE:** `s.array(T).unique` is now `s.array(T).unique()` to allow for custom options as argument.
25
+ - 💥 **BREAKING CHANGE:** `s.array` is now `s.array()` to allow for custom options as argument.
26
+ - 💥 **BREAKING CHANGE:** `s.bigint.divisibleBy` is now `s.bigint().divisibleBy()` to allow for custom options as argument.
27
+ - 💥 **BREAKING CHANGE:** `s.bigint.equal` is now `s.bigint().equal()` to allow for custom options as argument.
28
+ - 💥 **BREAKING CHANGE:** `s.bigint.greaterThan` is now `s.bigint().greaterThan()` to allow for custom options as argument.
29
+ - 💥 **BREAKING CHANGE:** `s.bigint.greaterThanOrEqual` is now `s.bigint().greaterThanOrEqual()` to allow for custom options as argument.
30
+ - 💥 **BREAKING CHANGE:** `s.bigint.lessThan` is now `s.bigint().lessThan()` to allow for custom options as argument.
31
+ - 💥 **BREAKING CHANGE:** `s.bigint.lessThanOrEqual` is now `s.bigint().lessThanOrEqual()` to allow for custom options as argument.
32
+ - 💥 **BREAKING CHANGE:** `s.bigint.notEqual` is now `s.bigint().notEqual()` to allow for custom options as argument.
33
+ - 💥 **BREAKING CHANGE:** `s.bigint().abs` is now `s.bigint().abs()` to allow for custom options as second argument.
34
+ - 💥 **BREAKING CHANGE:** `s.bigint().negative` is now `s.bigint().negative()` to allow for custom options as second argument.
35
+ - 💥 **BREAKING CHANGE:** `s.bigint().positive` is now `s.bigint().positive()` to allow for custom options as second argument.
36
+ - 💥 **BREAKING CHANGE:** `s.bigint` is now `s.bigint()` to allow for custom options as argument.
37
+ - 💥 **BREAKING CHANGE:** `s.bigInt64Array` is now `s.bigInt64Array()` to allow for custom options as argument.
38
+ - 💥 **BREAKING CHANGE:** `s.bigUint64Array` is now `s.bigUint64Array()` to allow for custom options as argument.
39
+ - 💥 **BREAKING CHANGE:** `s.boolean.false` is now `s.boolean().false()` to allow for custom options as second argument.
40
+ - 💥 **BREAKING CHANGE:** `s.boolean.true` is now `s.boolean().true()` to allow for custom options as second argument.
41
+ - 💥 **BREAKING CHANGE:** `s.boolean` is now `s.boolean()` to allow for custom options as argument.
42
+ - 💥 **BREAKING CHANGE:** `s.default(...)` now gets a second parameter to allow for custom options as argument.
43
+ - 💥 **BREAKING CHANGE:** `s.default(...).default(...)` now gets a second parameter to allow for custom options as argument.
44
+ - 💥 **BREAKING CHANGE:** `s.date.equal` is now `s.date().equal()` to allow for custom options as argument.
45
+ - 💥 **BREAKING CHANGE:** `s.date.greaterThan` is now `s.date().greaterThan()` to allow for custom options as argument.
46
+ - 💥 **BREAKING CHANGE:** `s.date.greaterThanOrEqual` is now `s.date().greaterThanOrEqual()` to allow for custom options as argument.
47
+ - 💥 **BREAKING CHANGE:** `s.date.invalid` is now `s.date().invalid()` to allow for custom options as argument.
48
+ - 💥 **BREAKING CHANGE:** `s.date.lessThan` is now `s.date().lessThan()` to allow for custom options as argument.
49
+ - 💥 **BREAKING CHANGE:** `s.date.lessThanOrEqual` is now `s.date().lessThanOrEqual()` to allow for custom options as argument.
50
+ - 💥 **BREAKING CHANGE:** `s.date.notEqual` is now `s.date().notEqual()` to allow for custom options as argument.
51
+ - 💥 **BREAKING CHANGE:** `s.date.valid` is now `s.date().valid()` to allow for custom options as argument.
52
+ - 💥 **BREAKING CHANGE:** `s.date` is now `s.date()` to allow for custom options as argument.
53
+ - 💥 **BREAKING CHANGE:** `s.enum(1, 2, 3)` is now `s.enum([1, 2, 3])` to allow for custom options as second argument.
54
+ - 💥 **BREAKING CHANGE:** `s.float32Array` is now `s.float32Array()` to allow for custom options as argument.
55
+ - 💥 **BREAKING CHANGE:** `s.float64Array` is now `s.float64Array()` to allow for custom options as argument.
56
+ - 💥 **BREAKING CHANGE:** `s.int16Array` is now `s.int16Array()` to allow for custom options as argument.
57
+ - 💥 **BREAKING CHANGE:** `s.int32Array` is now `s.int32Array()` to allow for custom options as argument.
58
+ - 💥 **BREAKING CHANGE:** `s.int8Array` is now `s.int8Array()` to allow for custom options as argument.
59
+ - 💥 **BREAKING CHANGE:** `s.never` is now `s.never()` to allow for custom options as argument.
60
+ - 💥 **BREAKING CHANGE:** `s.null` is now `s.null()` to allow for custom options as argument.
61
+ - 💥 **BREAKING CHANGE:** `s.nullable` is now `s.nullable()` to allow for custom options as argument.
62
+ - 💥 **BREAKING CHANGE:** `s.nullish` is now `s.nullish()` to allow for custom options as argument.
63
+ - 💥 **BREAKING CHANGE:** `s.nullish` is now `s.nullish()` to allow for custom options as argument.
64
+ - 💥 **BREAKING CHANGE:** `s.number.abs` is now `s.number().abs()` to allow for custom options as argument.
65
+ - 💥 **BREAKING CHANGE:** `s.number.ceil` is now `s.number().ceil()` to allow for custom options as argument.
66
+ - 💥 **BREAKING CHANGE:** `s.number.divisibleBy` is now `s.number().divisibleBy()` to allow for custom options as argument.
67
+ - 💥 **BREAKING CHANGE:** `s.number.equal` is now `s.number().equal()` to allow for custom options as argument.
68
+ - 💥 **BREAKING CHANGE:** `s.number.finite` is now `s.number().finite()` to allow for custom options as argument.
69
+ - 💥 **BREAKING CHANGE:** `s.number.floor` is now `s.number().floor()` to allow for custom options as argument.
70
+ - 💥 **BREAKING CHANGE:** `s.number.fround` is now `s.number().fround()` to allow for custom options as argument.
71
+ - 💥 **BREAKING CHANGE:** `s.number.greaterThan` is now `s.number().greaterThan()` to allow for custom options as argument.
72
+ - 💥 **BREAKING CHANGE:** `s.number.greaterThanOrEqual` is now `s.number().greaterThanOrEqual()` to allow for custom options as argument.
73
+ - 💥 **BREAKING CHANGE:** `s.number.int` is now `s.number().int()` to allow for custom options as argument.
74
+ - 💥 **BREAKING CHANGE:** `s.number.lessThan` is now `s.number().lessThan()` to allow for custom options as argument.
75
+ - 💥 **BREAKING CHANGE:** `s.number.lessThanOrEqual` is now `s.number().lessThanOrEqual()` to allow for custom options as argument.
76
+ - 💥 **BREAKING CHANGE:** `s.number.negative` is now `s.number().negative()` to allow for custom options as argument.
77
+ - 💥 **BREAKING CHANGE:** `s.number.notEqual` is now `s.number().notEqual()` to allow for custom options as argument.
78
+ - 💥 **BREAKING CHANGE:** `s.number.positive` is now `s.number().positive()` to allow for custom options as argument.
79
+ - 💥 **BREAKING CHANGE:** `s.number.round` is now `s.number().round()` to allow for custom options as argument.
80
+ - 💥 **BREAKING CHANGE:** `s.number.safeInt` is now `s.number().safeInt()` to allow for custom options as argument.
81
+ - 💥 **BREAKING CHANGE:** `s.number.sign` is now `s.number().sign()` to allow for custom options as argument.
82
+ - 💥 **BREAKING CHANGE:** `s.number.trunc` is now `s.number().trunc()` to allow for custom options as argument.
83
+ - 💥 **BREAKING CHANGE:** `s.number` is now `s.number()` to allow for custom options as argument.
84
+ - 💥 **BREAKING CHANGE:** `s.object.ignore` is now `s.object().ignore()` to allow for custom options as argument.
85
+ - 💥 **BREAKING CHANGE:** `s.object.partial` is now `s.object().partial()` to allow for custom options as argument.
86
+ - 💥 **BREAKING CHANGE:** `s.object.passthrough` is now `s.object().passthrough()` to allow for custom options as argument.
87
+ - 💥 **BREAKING CHANGE:** `s.object.required` is now `s.object().required()` to allow for custom options as argument.
88
+ - 💥 **BREAKING CHANGE:** `s.object.strict` is now `s.object().strict()` to allow for custom options as argument.
89
+ - 💥 **BREAKING CHANGE:** `s.optional` is now `s.optional()` to allow for custom options as argument.
90
+ - 💥 **BREAKING CHANGE:** `s.required(...)` now gets a second parameter to allow for custom options as argument.
91
+ - 💥 **BREAKING CHANGE:** `s.set` is now `s.set()` to allow for custom options as argument.
92
+ - 💥 **BREAKING CHANGE:** `s.string.date` is now `s.string().date()` to allow for custom options as argument.
93
+ - 💥 **BREAKING CHANGE:** `s.string.email` is now `s.string().email()` to allow for custom options as argument.
94
+ - 💥 **BREAKING CHANGE:** `s.string.ipv4` is now `s.string().ipv4()` to allow for custom options as argument.
95
+ - 💥 **BREAKING CHANGE:** `s.string.ipv6` is now `s.string().ipv6()` to allow for custom options as argument.
96
+ - 💥 **BREAKING CHANGE:** `s.string().ip` is now `s.string().ip()` to allow for custom options as argument.
97
+ - 💥 **BREAKING CHANGE:** `s.string().lengthEqual` is now `s.string().lengthEqual()` to allow for custom options as argument.
98
+ - 💥 **BREAKING CHANGE:** `s.string().lengthGreaterThan` is now `s.string().lengthGreaterThan()` to allow for custom options as argument.
99
+ - 💥 **BREAKING CHANGE:** `s.string().lengthGreaterThanOrEqual` is now `s.string().lengthGreaterThanOrEqual()` to allow for custom options as argument.
100
+ - 💥 **BREAKING CHANGE:** `s.string().lengthLessThan` is now `s.string().lengthLessThan()` to allow for custom options as argument.
101
+ - 💥 **BREAKING CHANGE:** `s.string().lengthLessThanOrEqual` is now `s.string().lengthLessThanOrEqual()` to allow for custom options as argument.
102
+ - 💥 **BREAKING CHANGE:** `s.string().lengthNotEqual` is now `s.string().lengthNotEqual()` to allow for custom options as argument.
103
+ - 💥 **BREAKING CHANGE:** `s.string().phone` is now `s.string().phone()` to allow for custom options as argument.
104
+ - 💥 **BREAKING CHANGE:** `s.string().regex` is now `s.string().regex()` to allow for custom options as argument.
105
+ - 💥 **BREAKING CHANGE:** `s.string().url` is now `s.string().url()` to allow for custom options as argument.
106
+ - 💥 **BREAKING CHANGE:** `s.string` is now `s.string()` to allow for custom options as argument.
107
+ - 💥 **BREAKING CHANGE:** `s.tuple(1, 2, 3)` is now `s.tuple([1, 2, 3])` to allow for custom options as second argument.
108
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthEqual` is now `s.typedArray(T).byteLengthEqual()` to allow for custom options as argument.
109
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthGreaterThan` is now `s.typedArray(T).byteLengthGreaterThan()` to allow for custom options as argument.
110
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthGreaterThanOrEqual` is now `s.typedArray(T).byteLengthGreaterThanOrEqual()` to allow for custom options as argument.
111
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthLessThan` is now `s.typedArray(T).byteLengthLessThan()` to allow for custom options as argument.
112
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthLessThanOrEqual` is now `s.typedArray(T).byteLengthLessThanOrEqual()` to allow for custom options as argument.
113
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthNotEqual` is now `s.typedArray(T).byteLengthNotEqual()` to allow for custom options as argument.
114
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthRange` is now `s.typedArray(T).byteLengthRange()` to allow for custom options as argument.
115
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthRangeExclusive` is now `s.typedArray(T).byteLengthRangeExclusive()` to allow for custom options as argument.
116
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).byteLengthRangeInclusive` is now `s.typedArray(T).byteLengthRangeInclusive()` to allow for custom options as argument.
117
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthEqual` is now `s.typedArray(T).lengthEqual()` to allow for custom options as argument.
118
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthGreaterThan` is now `s.typedArray(T).lengthGreaterThan()` to allow for custom options as argument.
119
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthGreaterThanOrEqual` is now `s.typedArray(T).lengthGreaterThanOrEqual()` to allow for custom options as argument.
120
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthLessThan` is now `s.typedArray(T).lengthLessThan()` to allow for custom options as argument.
121
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthLessThanOrEqual` is now `s.typedArray(T).lengthLessThanOrEqual()` to allow for custom options as argument.
122
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthNotEqual` is now `s.typedArray(T).lengthNotEqual()` to allow for custom options as argument.
123
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthRange` is now `s.typedArray(T).lengthRange()` to allow for custom options as argument.
124
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthRangeExclusive` is now `s.typedArray(T).lengthRangeExclusive()` to allow for custom options as argument.
125
+ - 💥 **BREAKING CHANGE:** `s.typedArray(T).lengthRangeInclusive` is now `s.typedArray(T).lengthRangeInclusive()` to allow for custom options as argument.
126
+ - 💥 **BREAKING CHANGE:** `s.uint16Array` is now `s.uint16Array()` to allow for custom options as argument.
127
+ - 💥 **BREAKING CHANGE:** `s.uint32Array` is now `s.uint32Array()` to allow for custom options as argument.
128
+ - 💥 **BREAKING CHANGE:** `s.uint8Array` is now `s.uint8Array()` to allow for custom options as argument.
129
+ - 💥 **BREAKING CHANGE:** `s.uint8ClampedArray` is now `s.uint8ClampedArray()` to allow for custom options as argument.
130
+ - 💥 **BREAKING CHANGE:** `s.undefined` is now `s.undefined()` to allow for custom options as argument.
131
+ - 💥 **BREAKING CHANGE:** `s.union(1, 2, 3).required` is now `s.union(1, 2, 3).required()` to allow for custom options as argument.
132
+ - 💥 **BREAKING CHANGE:** `s.union(1, 2, 3)` is now `s.union([1, 2, 3])` to allow for custom options as second argument.
133
+ - 💥 **BREAKING CHANGE:** `s.unknown` is now `s.unknown()` to allow for custom options as argument.
134
+ - 💥 **BREAKING CHANGE:** `uniqueArray` is now a function (instead of a constant) to allow for custom options as argument.
135
+ - 💥 **BREAKING CHANGE:** `dateInvalid` is now a function (instead of a constant) to allow for custom options as argument.
136
+ - 💥 **BREAKING CHANGE:** `dateValid` is now a function (instead of a constant) to allow for custom options as argument.
137
+ - 💥 **BREAKING CHANGE:** `numberFinite` is now a function (instead of a constant) to allow for custom options as argument.
138
+ - 💥 **BREAKING CHANGE:** `numberInt` is now a function (instead of a constant) to allow for custom options as argument.
139
+ - 💥 **BREAKING CHANGE:** `numberNaN` is now a function (instead of a constant) to allow for custom options as argument.
140
+ - 💥 **BREAKING CHANGE:** `numberNotNaN` is now a function (instead of a constant) to allow for custom options as argument.
141
+ - 💥 **BREAKING CHANGE:** `numberSafeInt` is now a function (instead of a constant) to allow for custom options as argument.
142
+
143
+ # [3.9.7](https://github.com/sapphiredev/shapeshift/compare/v3.9.6...v3.9.7) - (2024-03-31)
144
+
145
+ ## 🐛 Bug Fixes
146
+
147
+ - Allow engines.node >= 16 ([a4d8c8d](https://github.com/sapphiredev/shapeshift/commit/a4d8c8d70e414192b61d565f89e51b19a117c8c1))
148
+
149
+ # [3.9.6](https://github.com/sapphiredev/shapeshift/compare/v3.9.6...v3.9.6) - (2024-01-19)
150
+
151
+ ## 🐛 Bug Fixes
152
+
153
+ - Fixed commonjs typings export mapping (#341) ([a5518aa](https://github.com/sapphiredev/shapeshift/commit/a5518aa88350925ad03f612e49f695a296a0d3b3))
154
+
155
+ # [3.9.5](https://github.com/sapphiredev/shapeshift/compare/v3.9.5...v3.9.5) - (2023-12-15)
156
+
157
+ ## 🐛 Bug Fixes
158
+
159
+ - Properly publish all dist files ([8e925fa](https://github.com/sapphiredev/shapeshift/commit/8e925faff5a67ccca84c41473bf77c9e0a01ebc0))
160
+
161
+ # [3.9.4](https://github.com/sapphiredev/shapeshift/compare/v3.9.4...v3.9.4) - (2023-12-04)
162
+
163
+ ## 🐛 Bug Fixes
164
+
165
+ - Properly split CJS and ESM ([9bb1ff9](https://github.com/sapphiredev/shapeshift/commit/9bb1ff95f2852e765a27c7a839ff5145ee6e3a01))
166
+
167
+ ## 🧪 Testing
168
+
169
+ - Update path to global file ([d03b19f](https://github.com/sapphiredev/shapeshift/commit/d03b19f20507690869fe6b8f59a2400d95bd02be))
170
+
171
+ # [3.9.3](https://github.com/sapphiredev/shapeshift/compare/v3.9.3...v3.9.3) - (2023-10-13)
172
+
173
+ ## 🏠 Refactor
174
+
175
+ - Change email regex (#306) ([c5d49cf](https://github.com/sapphiredev/shapeshift/commit/c5d49cf32931aff24ab74ba87ee8d6d35f7231af))
176
+
177
+ # [3.9.2](https://github.com/sapphiredev/shapeshift/compare/v3.9.1...v3.9.2) - (2023-06-04)
178
+
179
+ ## 🐛 Bug Fixes
180
+
181
+ - **arrayvalidator:** Fixed runaway type instantiation with TypeScript >=5.1 (#275) ([f59d901](https://github.com/sapphiredev/shapeshift/commit/f59d90112181e6625230c28e6a4f0f065ced6344))
182
+
183
+ # [3.9.1](https://github.com/sapphiredev/shapeshift/compare/v3.9.0...v3.9.1) - (2023-06-02)
184
+
185
+ ## 🐛 Bug Fixes
186
+
187
+ - **types:** Move the `types` condition to the front (#273) ([5a3e202](https://github.com/sapphiredev/shapeshift/commit/5a3e202e9ceafb3d330a568e93c060dd5aac1dde))
188
+
189
+ # [3.9.0](https://github.com/sapphiredev/shapeshift/compare/v3.8.2...v3.9.0) - (2023-05-09)
190
+
191
+ ## 🐛 Bug Fixes
192
+
193
+ - Resolve minor grammar mistake (#260) ([62df609](https://github.com/sapphiredev/shapeshift/commit/62df6094845ffa118aa93ea3c5f47f81f1c5d99f))
194
+
195
+ ## 🚀 Features
196
+
197
+ - Add BaseValidator.describe (#267) ([d9e1a2d](https://github.com/sapphiredev/shapeshift/commit/d9e1a2d2f3c5e6378f0025becf8497138ee6d97c))
198
+
199
+ # [3.8.2](https://github.com/sapphiredev/shapeshift/compare/v3.8.1...v3.8.2) - (2023-04-02)
200
+
201
+ ## 🐛 Bug Fixes
202
+
203
+ - ***:** TypeScript 5.x compatibility (#253) ([eba2a88](https://github.com/sapphiredev/shapeshift/commit/eba2a88b91fb6631f431313753299ec7a70cf6ce))
204
+ - Remove `node:` prefix (#249) ([af766b5](https://github.com/sapphiredev/shapeshift/commit/af766b504c1013f3cd24f7bf803ac9ff7442a8d7))
205
+
206
+ # [3.8.1](https://github.com/sapphiredev/shapeshift/compare/v3.8.0...v3.8.1) - (2022-12-15)
207
+
208
+ ## 🐛 Bug Fixes
209
+
210
+ - Fixed lodash esm import (#230) ([63def7b](https://github.com/sapphiredev/shapeshift/commit/63def7bcec6319b3792093945ba7ba9f871ced6f))
211
+
212
+ # [3.8.0](https://github.com/sapphiredev/shapeshift/compare/v3.7.1...v3.8.0) - (2022-12-11)
213
+
214
+ ## 🏠 Refactor
215
+
216
+ - Remove `NonNullObject` (#227) ([04d3934](https://github.com/sapphiredev/shapeshift/commit/04d39343f55a4e1571f54870a84d8b95447bd682))
217
+
218
+ ## 🚀 Features
219
+
220
+ - Add `when` constraint (#223) ([8eade90](https://github.com/sapphiredev/shapeshift/commit/8eade90cd4c02b80746ecdcdc612829d7f765178))
221
+
222
+ # [3.7.1](https://github.com/sapphiredev/shapeshift/compare/v3.7.0...v3.7.1) - (2022-11-27)
223
+
224
+ ## 🐛 Bug Fixes
225
+
226
+ - Fixed "jump to definition" for `undefinedToOptional` going to wrong symbol (#226) ([6aab6d0](https://github.com/sapphiredev/shapeshift/commit/6aab6d01450fd7abbeaa95e91fb58568240e02ff))
227
+
228
+ ## 📝 Documentation
229
+
230
+ - Add @legendhimslef as a contributor ([499522a](https://github.com/sapphiredev/shapeshift/commit/499522a782c3ecd4df80978d0811df1a75d08212))
231
+
232
+ # [3.7.0](https://github.com/sapphiredev/shapeshift/compare/v3.6.0...v3.7.0) - (2022-10-02)
233
+
234
+ ## 📝 Documentation
235
+
236
+ - Add phone in readme (#203) ([4ec9b7a](https://github.com/sapphiredev/shapeshift/commit/4ec9b7ab85124d84b3404cb548b17b9221a716c5))
237
+ - Add RealShadowNova as a contributor for tool (#185) ([6dfc442](https://github.com/sapphiredev/shapeshift/commit/6dfc442af6ef26d6bbca39078eca5727257b6dab))
238
+
239
+ ## 🚀 Features
240
+
241
+ - Add `s.string.phone` (#202) ([7d122d5](https://github.com/sapphiredev/shapeshift/commit/7d122d5dc0eaa63c639b9cde1514e63566a681bd))
242
+
243
+ # [3.6.0](https://github.com/sapphiredev/shapeshift/compare/v3.5.1...v3.6.0) - (2022-08-29)
244
+
245
+ ## 🐛 Bug Fixes
246
+
247
+ - Typescript 4.8 compatibility (#179) ([2281535](https://github.com/sapphiredev/shapeshift/commit/2281535f7589a987510828e46bf66accc8393c34))
248
+
249
+ ## 🚀 Features
250
+
251
+ - Add `Validator#is` (#183) ([5114f95](https://github.com/sapphiredev/shapeshift/commit/5114f9516e5406cd1ca4a7ceb5ea5761158af1c6))
252
+
253
+ # [3.5.1](https://github.com/sapphiredev/shapeshift/compare/v3.5.0...v3.5.1) - (2022-07-17)
254
+
255
+ ## 🐛 Bug Fixes
256
+
257
+ - Fast deep equal import (#155) ([5ce8ff6](https://github.com/sapphiredev/shapeshift/commit/5ce8ff6803b70624af07c3e406bc1cdc9e3cdafe))
258
+
259
+ # [3.5.0](https://github.com/sapphiredev/shapeshift/compare/v3.4.1...v3.5.0) - (2022-07-10)
260
+
261
+ ## 🏠 Refactor
262
+
263
+ - Port net module (#149) ([5f26e32](https://github.com/sapphiredev/shapeshift/commit/5f26e32b0f87d2b100ca13471d5835c0067ddee8))
264
+
265
+ ## 🐛 Bug Fixes
266
+
267
+ - Ensure browser compatibility (#150) ([92d05d8](https://github.com/sapphiredev/shapeshift/commit/92d05d83c1fbab53f98f61219fb01d49fc031bae))
268
+ - Fixed `s.array` type inference (#153) ([a5948dc](https://github.com/sapphiredev/shapeshift/commit/a5948dc67ce6a0ea73986d32084898a4ce0b9c3a))
269
+ - Fixed `shape#array` types (#146) ([43016a0](https://github.com/sapphiredev/shapeshift/commit/43016a025b04a676d906758ed065d26a17231888))
270
+
271
+ ## 🚀 Features
272
+
273
+ - Lazy validator (#147) ([807666e](https://github.com/sapphiredev/shapeshift/commit/807666ef537c84d2e0f8bd9f4ce1a8060bfb3fb5))
274
+ - Reshape finally (#148) ([d3751f6](https://github.com/sapphiredev/shapeshift/commit/d3751f6d3d99f415d797369f98158f932371e02c))
275
+ - **arrays:** Add unique (#141) ([ad7af34](https://github.com/sapphiredev/shapeshift/commit/ad7af34eb811541253150b7ff0b58a6bd7200796))
276
+
277
+ # [3.4.1](https://github.com/sapphiredev/shapeshift/compare/v3.4.0...v3.4.1) - (2022-07-03)
278
+
279
+ ## 🏠 Refactor
280
+
281
+ - Move all type utilities to one file (#139) ([61cab3d](https://github.com/sapphiredev/shapeshift/commit/61cab3d0e486d9dc74c8f6160ff8c75c91b595b2))
282
+
283
+ ## 🐛 Bug Fixes
284
+
285
+ - Return array-validator from length* methods (#140) ([75b1f9a](https://github.com/sapphiredev/shapeshift/commit/75b1f9a6efffb6c27dcfd48eb4ec6269a3614633))
286
+
287
+ ## 🧪 Testing
288
+
289
+ - Typechecking for tests (#145) ([273cdc8](https://github.com/sapphiredev/shapeshift/commit/273cdc82c1cf65ba4111ca6e70b050e02cbdf485))
290
+
291
+ # [3.4.0](https://github.com/sapphiredev/shapeshift/compare/v3.3.2...v3.4.0) - (2022-06-29)
292
+
293
+ ## 🚀 Features
294
+
295
+ - Add `required` in object validation (#137) ([928f7be](https://github.com/sapphiredev/shapeshift/commit/928f7beb5e727b47868e9e46f2191f2def228080))
296
+
297
+ # [3.3.2](https://github.com/sapphiredev/shapeshift/compare/v3.3.1...v3.3.2) - (2022-06-26)
298
+
299
+ ## 🐛 Bug Fixes
300
+
301
+ - Make keys optional in object parsing (#134) ([57a3719](https://github.com/sapphiredev/shapeshift/commit/57a37193d64399aae1431b041012d582e8defecf))
302
+
303
+ # [3.3.1](https://github.com/sapphiredev/shapeshift/compare/v3.3.0...v3.3.1) - (2022-06-22)
304
+
305
+ ## 🐛 Bug Fixes
306
+
307
+ - Add generic type to parse (#133) ([90c91aa](https://github.com/sapphiredev/shapeshift/commit/90c91aad572d51a2bfbd1ed32a51e1d4201c5d4a))
308
+
309
+ # [3.3.0](https://github.com/sapphiredev/shapeshift/compare/v3.2.0...v3.3.0) - (2022-06-19)
310
+
311
+ ## 🐛 Bug Fixes
312
+
313
+ - Compile for es2020 instead of es2021 (#128) ([051344d](https://github.com/sapphiredev/shapeshift/commit/051344debe1cf423713d7fc64b8908353348f301))
314
+
315
+ ## 🚀 Features
316
+
317
+ - Allow passing functions in `setValidationEnabled` (#131) ([e1991cf](https://github.com/sapphiredev/shapeshift/commit/e1991cfef1ffe92f9167d11d7f2ded65379df8d2))
318
+
319
+ ## 🧪 Testing
320
+
321
+ - Migrate to vitest (#126) ([4d80969](https://github.com/sapphiredev/shapeshift/commit/4d80969b714c39768499569456405a73c1444da8))
322
+
323
+ # [3.2.0](https://github.com/sapphiredev/shapeshift/compare/v3.1.0...v3.2.0) - (2022-06-11)
324
+
325
+ ## 🚀 Features
326
+
327
+ - Add disabling of validators (#125) ([e17af95](https://github.com/sapphiredev/shapeshift/commit/e17af95d697be62796c57d03385b0c74b9d2d580))
328
+
329
+ # [3.1.0](https://github.com/sapphiredev/shapeshift/compare/v3.0.0...v3.1.0) - (2022-06-04)
330
+
331
+ ## 🐛 Bug Fixes
332
+
333
+ - **ObjectValidator:** Fix #121 (#122) ([ecfad7e](https://github.com/sapphiredev/shapeshift/commit/ecfad7ec2cdd9e0cee0b3e227e55a91b28c29c30))
334
+
335
+ ## 📝 Documentation
336
+
337
+ - **readme:** Clarify the difference between validations and schemas and add table of contents (#108) ([dc492a3](https://github.com/sapphiredev/shapeshift/commit/dc492a395349cc5bc680f313146127ea510b4ada))
338
+
339
+ ## 🚀 Features
340
+
341
+ - **StringValidator:** Add date string checks (#106) ([1b72907](https://github.com/sapphiredev/shapeshift/commit/1b729078be32a88aeddf574c9cff3098990d4f94))
342
+
343
+ # [3.0.0](https://github.com/sapphiredev/shapeshift/compare/v2.2.0...v3.0.0) - (2022-05-06)
344
+
345
+ ## 🏃 Performance
346
+
347
+ - Speed up object validation a LOT (#101) ([817278e](https://github.com/sapphiredev/shapeshift/commit/817278e6a3ac128ca342e5ae1737f40b98788c37))
348
+
349
+ ## 🐛 Bug Fixes
350
+
351
+ - Expand method names (#100) ([741490f](https://github.com/sapphiredev/shapeshift/commit/741490fb6907f618fa25fe53808f7dcb5a59a96c))}
352
+
353
+ ### 💥 Breaking Changes:
354
+ - `date.eq` has been renamed to `date.equal`
355
+ - `string.lengthLt` has been renamed to `string.lengthLessThan`
356
+ - `string.lengthLe` has been renamed to `string.lengthLessThanOrEqual`
357
+ - `string.lengthGt` has been renamed to `string.lengthGreaterThan`
358
+ - `string.lengthGe` has been renamed to `string.lengthGreaterThanOrEqual`
359
+ - `string.lengthEq` has been renamed to `string.lengthEqual`
360
+ - `string.lengthNe` has been renamed to `string.lengthNotEqual`
361
+ - `number.gt` has been renamed to `number.greaterThan`
362
+ - `number.ge` has been renamed to `number.greaterThanOrEqual`
363
+ - `number.lt` has been renamed to `number.lessThan`
364
+ - `number.le` has been renamed to `number.lessThanOrEqual`
365
+ - `number.eq` has been renamed to `number.equal`
366
+ - `number.ne` has been renamed to `number.notEqual`
367
+ - `bigint.gt` has been renamed to `bigint.greaterThan`
368
+ - `bigint.ge` has been renamed to `bigint.greaterThanOrEqual`
369
+ - `bigint.lt` has been renamed to `bigint.lessThan`
370
+ - `bigint.le` has been renamed to `bigint.lessThanOrEqual`
371
+ - `bigint.eq` has been renamed to `bigint.equal`
372
+ - `bigint.ne` has been renamed to `bigint.notEqual`
373
+ - `boolean.eq` has been renamed to `boolean.equal`
374
+ - `boolean.ne` has been renamed to `boolean.notEqual`
375
+ - `array.lengthLt` has been renamed to `array.lengthLessThan`
376
+ - `array.lengthLe` has been renamed to `array.lengthLessThanOrEqual`
377
+ - `array.lengthGt` has been renamed to `array.lengthGreaterThan`
378
+ - `array.lengthGe` has been renamed to `array.lengthGreaterThanOrEqual`
379
+ - `array.lengthEq` has been renamed to `array.lengthEqual`
380
+ - `array.lengthNe` has been renamed to `array.lengthNotEqual`
381
+ - `typedArray.lengthLt` has been renamed to `typedArray.lengthLessThan`
382
+ - `typedArray.lengthLe` has been renamed to `typedArray.lengthLessThanOrEqual`
383
+ - `typedArray.lengthGt` has been renamed to `typedArray.lengthGreaterThan`
384
+ - `typedArray.lengthGe` has been renamed to `typedArray.lengthGreaterThanOrEqual`
385
+ - `typedArray.lengthEq` has been renamed to `typedArray.lengthEqual`
386
+ - `typedArray.lengthNe` has been renamed to `typedArray.lengthNotEqual`
387
+ - `typedArray.byteLengthLt` has been renamed to `typedArray.byteLengthLessThan`
388
+ - `typedArray.byteLengthLe` has been renamed to `typedArray.byteLengthLessThanOrEqual`
389
+ - `typedArray.byteLengthGt` has been renamed to `typedArray.byteLengthGreaterThan`
390
+ - `typedArray.byteLengthGe` has been renamed to `typedArray.byteLengthGreaterThanOrEqual`
391
+ - `typedArray.byteLengthEq` has been renamed to `typedArray.byteLengthEqual`
392
+ - `typedArray.byteLengthNe` has been renamed to `typedArray.byteLengthNotEqual`
393
+
394
+ - **ObjectValidator:** Don't run validation on arrays (#99) ([c83b3d0](https://github.com/sapphiredev/shapeshift/commit/c83b3d03a201d38cc230d9c831ca1d9b66ca533b))
395
+
396
+ ## 🚀 Features
397
+
398
+ - Add 2 utility types inspired by yup and co (#102) ([2fef902](https://github.com/sapphiredev/shapeshift/commit/2fef9026c30f2f1825aa55511d0ab088a3dd13ab))
399
+
400
+ # [2.2.0](https://github.com/sapphiredev/shapeshift/compare/v2.0.0...v2.2.0) - (2022-04-29)
401
+
402
+ ## Bug Fixes
403
+
404
+ - Ensure `BaseError` is exported as value (#95) ([335d799](https://github.com/sapphiredev/shapeshift/commit/335d799ef7a8c1a19a12e3eeec07e6d210db113d))
405
+
406
+ ## Documentation
407
+
408
+ - **readme:** Add todo notice for `reshape` and `function` validations (#75) ([d5f16f6](https://github.com/sapphiredev/shapeshift/commit/d5f16f615de83503187dc834c6245fafbf138f5e))
409
+
410
+ ## Features
411
+
412
+ - Add Typed Array (#78) ([ca5ea5f](https://github.com/sapphiredev/shapeshift/commit/ca5ea5f568084bd5d3aa004911d4ea64329e1a89))
413
+
414
+ ## Performance
415
+
416
+ - Optimize `NativeEnum` (#79) ([e9ae280](https://github.com/sapphiredev/shapeshift/commit/e9ae280f73e9ea08239bd8bd22165fe0b2178f82))
417
+
418
+ # [@sapphire/shapeshift@2.1.0](https://github.com/sapphiredev/shapeshift/compare/v2.0.0...@sapphire/shapeshift@2.1.0) - (2022-04-24)
419
+
420
+ ## Documentation
421
+
422
+ - **readme:** Add todo notice for `reshape` and `function` validations (#75) ([d5f16f6](https://github.com/sapphiredev/shapeshift/commit/d5f16f615de83503187dc834c6245fafbf138f5e))
423
+
424
+ ## Performance
425
+
426
+ - Optimize `NativeEnum` (#79) ([e9ae280](https://github.com/sapphiredev/shapeshift/commit/e9ae280f73e9ea08239bd8bd22165fe0b2178f82))
427
+
428
+ ## [2.0.0](https://github.com/sapphiredev/shapeshift/compare/v1.0.0...v2.0.0) (2022-03-13)
429
+
430
+ ### Features
431
+
432
+ - add `default` ([#25](https://github.com/sapphiredev/shapeshift/issues/25)) ([378c51f](https://github.com/sapphiredev/shapeshift/commit/378c51fb4ba2c501fd782387169db888d6bfe662))
433
+ - add bigint methods ([#32](https://github.com/sapphiredev/shapeshift/issues/32)) ([4c444c1](https://github.com/sapphiredev/shapeshift/commit/4c444c15657c4610b99481b6dec9812bd136d72b))
434
+ - add MapValidator ([#21](https://github.com/sapphiredev/shapeshift/issues/21)) ([c4d1258](https://github.com/sapphiredev/shapeshift/commit/c4d12586762d446b858454077b66635d9d11e2d6))
435
+ - add NativeEnum validator ([#54](https://github.com/sapphiredev/shapeshift/issues/54)) ([7359042](https://github.com/sapphiredev/shapeshift/commit/7359042843d1119f396ac2c038aaff89dbd90c8e))
436
+ - add RecordValidator ([#20](https://github.com/sapphiredev/shapeshift/issues/20)) ([8727427](https://github.com/sapphiredev/shapeshift/commit/8727427be4656792eebcdc5bddf6bcd61bc7e846))
437
+ - add remaining string validations ([#38](https://github.com/sapphiredev/shapeshift/issues/38)) ([1c2fd7b](https://github.com/sapphiredev/shapeshift/commit/1c2fd7bbb20463f09ac461b697c312bec6ae9195))
438
+ - add tuple ([#39](https://github.com/sapphiredev/shapeshift/issues/39)) ([b7704bf](https://github.com/sapphiredev/shapeshift/commit/b7704bf87cf5225021408cf4a6b9ceff8cba25b3))
439
+ - added number transformers ([#17](https://github.com/sapphiredev/shapeshift/issues/17)) ([89a8ddd](https://github.com/sapphiredev/shapeshift/commit/89a8ddd8583774e68c43260c28ee1589ef44516c))
440
+ - allow the use of module: NodeNext ([#55](https://github.com/sapphiredev/shapeshift/issues/55)) ([e6827c5](https://github.com/sapphiredev/shapeshift/commit/e6827c5a12b6a2803a137b71fe4c21bd1c35034b))
441
+ - **array:** add array length Comparators ([#40](https://github.com/sapphiredev/shapeshift/issues/40)) ([1e564c2](https://github.com/sapphiredev/shapeshift/commit/1e564c204b6c9b0a798b3121d31dd4cc99165f60))
442
+ - **Array:** generate tuple types with given length ([#52](https://github.com/sapphiredev/shapeshift/issues/52)) ([793648b](https://github.com/sapphiredev/shapeshift/commit/793648b4cde1f72c5b735ceebb0c48272179be06))
443
+ - **ArrayValidator:** add length ranges ([#53](https://github.com/sapphiredev/shapeshift/issues/53)) ([e431d62](https://github.com/sapphiredev/shapeshift/commit/e431d6218b86fc1480fce14c4466cb36567cad2f))
444
+ - display the property that errored ([#35](https://github.com/sapphiredev/shapeshift/issues/35)) ([fe188b0](https://github.com/sapphiredev/shapeshift/commit/fe188b0d17eeaa5f73b08085562903e23e91717c))
445
+ - improve how errors are returned ([#29](https://github.com/sapphiredev/shapeshift/issues/29)) ([8bc7669](https://github.com/sapphiredev/shapeshift/commit/8bc7669a1a66a10449b321cc4447e411383977d9))
446
+ - **s.object:** add passthrough ([#66](https://github.com/sapphiredev/shapeshift/issues/66)) ([ee9f6f3](https://github.com/sapphiredev/shapeshift/commit/ee9f6f367e513c0120a04cfafe05057c7907c327))
447
+
448
+ ### Bug Fixes
449
+
450
+ - copy/paste error and `ge` ([#22](https://github.com/sapphiredev/shapeshift/issues/22)) ([fe6505f](https://github.com/sapphiredev/shapeshift/commit/fe6505f8e698bcaf9f8024b2d8f012559827cbb0))
451
+ - fix union type and add test ([#41](https://github.com/sapphiredev/shapeshift/issues/41)) ([fbcf8a9](https://github.com/sapphiredev/shapeshift/commit/fbcf8a9c617c16b33fdddb0a44aa0fe506164fd3))
452
+ - **s.union:** fix union overrides ([#62](https://github.com/sapphiredev/shapeshift/issues/62)) ([56e9b19](https://github.com/sapphiredev/shapeshift/commit/56e9b1947d9b2b129dbed374671114b2242e6d35))
453
+
454
+ ## 1.0.0 (2022-01-16)
455
+
456
+ ### Features
457
+
458
+ - added more primitives ([#2](https://github.com/sapphiredev/shapeshift/issues/2)) ([16af17b](https://github.com/sapphiredev/shapeshift/commit/16af17b5d9ee40dce284ee120e0b099f7b2cc0b8))
459
+ - added more things ([7c73d82](https://github.com/sapphiredev/shapeshift/commit/7c73d82cf3740d5b2d4eebcac7767da9d3562437))
460
+ - added ObjectValidator ([#3](https://github.com/sapphiredev/shapeshift/issues/3)) ([abe7ead](https://github.com/sapphiredev/shapeshift/commit/abe7eaddee981ef485713ff5e7b7f32ff97c645b))
461
+
462
+ ### Bug Fixes
463
+
464
+ - resolved install error ([a5abe13](https://github.com/sapphiredev/shapeshift/commit/a5abe1362bb6d9ce6d6471bffa47fe8983b0d1a4))