groove-dev 0.22.20 → 0.22.22

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 (23) hide show
  1. package/node_modules/@groove-dev/cli/bin/groove.js +1 -1
  2. package/{packages/gui/dist/assets/index-DnL4LhyZ.js → node_modules/@groove-dev/gui/dist/assets/index-COKbbm6r.js} +16 -16
  3. package/{packages/gui/dist/assets/index-DOlP78Dt.css → node_modules/@groove-dev/gui/dist/assets/index-Cu3h6_1j.css} +1 -1
  4. package/node_modules/@groove-dev/gui/dist/index.html +2 -2
  5. package/node_modules/@groove-dev/gui/package.json +1 -1
  6. package/node_modules/@groove-dev/gui/src/components/agents/agent-feed.jsx +5 -5
  7. package/package.json +1 -1
  8. package/packages/cli/bin/groove.js +1 -1
  9. package/{node_modules/@groove-dev/gui/dist/assets/index-DnL4LhyZ.js → packages/gui/dist/assets/index-COKbbm6r.js} +16 -16
  10. package/{node_modules/@groove-dev/gui/dist/assets/index-DOlP78Dt.css → packages/gui/dist/assets/index-Cu3h6_1j.css} +1 -1
  11. package/packages/gui/dist/index.html +2 -2
  12. package/packages/gui/package.json +1 -1
  13. package/packages/gui/src/components/agents/agent-feed.jsx +5 -5
  14. package/node_modules/@discordjs/collection/CHANGELOG.md +0 -190
  15. package/node_modules/@discordjs/rest/node_modules/@sapphire/snowflake/CHANGELOG.md +0 -328
  16. package/node_modules/@sapphire/async-queue/CHANGELOG.md +0 -211
  17. package/node_modules/@sapphire/shapeshift/CHANGELOG.md +0 -464
  18. package/node_modules/@sapphire/snowflake/CHANGELOG.md +0 -312
  19. package/node_modules/@vladfrangu/async_event_emitter/CHANGELOG.md +0 -117
  20. package/node_modules/discord-api-types/CHANGELOG.md +0 -2417
  21. package/node_modules/discord-api-types/scripts/versions.mjs +0 -46
  22. package/node_modules/get-nonce/CHANGELOG.md +0 -1
  23. package/node_modules/ts-mixer/CHANGELOG.md +0 -120
@@ -1,46 +0,0 @@
1
- import { exec } from 'node:child_process';
2
- import { dirname, join } from 'node:path';
3
- import { fileURLToPath } from 'node:url';
4
- import { promisify } from 'node:util';
5
-
6
- const __filename = fileURLToPath(import.meta.url);
7
- const __dirname = dirname(__filename);
8
- const rootDir = join(__dirname, '..');
9
- const execAsync = promisify(exec);
10
-
11
- /**
12
- * @param {string} path
13
- * @param {string} version
14
- */
15
- const fileToESMWrapperCall = async (path, version) =>
16
- execAsync(
17
- `npx gen-esm-wrapper "${join(rootDir, path, `${version}.js`)}" "${join(rootDir, path, `${version}.mjs`)}"`,
18
- );
19
-
20
- await Promise.allSettled(
21
- [
22
- 'v6', //
23
- 'v8',
24
- 'v9',
25
- 'v10',
26
-
27
- // Voice
28
- 'v4',
29
- ].flatMap((version) => [
30
- fileToESMWrapperCall('gateway', version),
31
- fileToESMWrapperCall(`payloads/${version}`, 'index'),
32
- fileToESMWrapperCall(`rest/${version}`, 'index'),
33
-
34
- // Voice
35
- fileToESMWrapperCall('voice', version),
36
-
37
- // RPC
38
- fileToESMWrapperCall('rpc', version),
39
-
40
- // Utils
41
- fileToESMWrapperCall('utils', version),
42
-
43
- // Shortcuts
44
- fileToESMWrapperCall('', version),
45
- ]),
46
- );
@@ -1 +0,0 @@
1
- # 1.0.0 (2020-04-16)
@@ -1,120 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### [6.0.4](https://github.com/tannerntannern/ts-mixer/compare/v6.0.3...v6.0.4) (2024-02-20)
6
-
7
-
8
- ### Bug Fixes
9
-
10
- * weakmap in mixing tracking ([acd28db](https://github.com/tannerntannern/ts-mixer/commit/acd28dbe96f18557b05f7f86312ed109d3098b98))
11
-
12
- ### [6.0.3](https://github.com/tannerntannern/ts-mixer/compare/v6.0.2...v6.0.3) (2023-02-09)
13
-
14
-
15
- ### Bug Fixes
16
-
17
- * allow abstract constructor signature for hasMixin ([f82e27b](https://github.com/tannerntannern/ts-mixer/commit/f82e27b96d142cfdec6446930a1db354167e88d2)), closes [tannerntannern/ts-mixer#56](https://github.com/tannerntannern/ts-mixer/issues/56)
18
- * allow abstract constructor signatures for hasMixin ([8964b59](https://github.com/tannerntannern/ts-mixer/commit/8964b59e062854fde52424497930ca3e8bb98e87)), closes [#57](https://github.com/tannerntannern/ts-mixer/issues/57)
19
- * simplify signature ([8a79197](https://github.com/tannerntannern/ts-mixer/commit/8a79197cc6bca5757d7c06560d7b26e73491b11f))
20
-
21
- ### [6.0.2](https://github.com/tannerntannern/ts-mixer/compare/v6.0.1...v6.0.2) (2022-11-10)
22
-
23
-
24
- ### Bug Fixes
25
-
26
- * **decorators:** support class decorators that don't return anything ([7433cf3](https://github.com/tannerntannern/ts-mixer/commit/7433cf36a43bb18a1dd280aa629ac81ef532c74a))
27
-
28
- ### [6.0.1](https://github.com/tannerntannern/ts-mixer/compare/v6.0.0...v6.0.1) (2022-03-13)
29
-
30
- ### Bug Fixes
31
-
32
- * fix bug in `directDecoratorSearch` ([51c50b8](https://github.com/tannerntannern/ts-mixer/commit/51c50b8c50a63e85b133bdd61eaad4427a22e515)) (thanks, [@AMcBain](https://github.com/AMcBain)!)
33
-
34
- ## [6.0.0](https://github.com/tannerntannern/ts-mixer/compare/v6.0.0-beta.0...v6.0.0) (2021-07-07)
35
-
36
- ## [6.0.0-beta.0](https://github.com/tannerntannern/ts-mixer/compare/v5.4.1...v6.0.0-beta.0) (2021-06-24)
37
-
38
-
39
- ### ⚠ BREAKING CHANGES
40
-
41
- * drop TS < 4.2 support
42
-
43
- ### Features
44
-
45
- * add abstract mixin support ([1c4b306](https://github.com/tannerntannern/ts-mixer/commit/1c4b306bae62fa6319c74d1f3040c8aba0da2c28))
46
-
47
- ### [5.4.1](https://github.com/tannerntannern/ts-mixer/compare/v5.4.0...v5.4.1) (2021-04-30)
48
-
49
-
50
- ### Bug Fixes
51
-
52
- * "publish" workflow ([bd2e4ec](https://github.com/tannerntannern/ts-mixer/commit/bd2e4ec088b19a403bc013926c7f3a2545cc4171))
53
- * circular dependency ([66f7e2d](https://github.com/tannerntannern/ts-mixer/commit/66f7e2dc929c90e8c15d718415114ceaa31402c2))
54
-
55
- ## [5.4.0](https://github.com/tannerntannern/ts-mixer/compare/v5.3.0...v5.4.0) (2020-11-18)
56
-
57
-
58
- ### Features
59
-
60
- * deep decorator inheritance ([6daabc5](https://github.com/tannerntannern/ts-mixer/commit/6daabc5d340d20c8eda4fe96b635a54f6a7e18fb))
61
-
62
- ## [5.3.0](https://github.com/tannerntannern/ts-mixer/compare/v5.3.0-beta.0...v5.3.0) (2020-06-01)
63
-
64
- ## [5.3.0-beta.0](https://github.com/tannerntannern/ts-mixer/compare/v5.2.1...v5.3.0-beta.0) (2020-05-31)
65
-
66
-
67
- ### Features
68
-
69
- * add hasMixin function ([#27](https://github.com/tannerntannern/ts-mixer/issues/27)) ([c8bfc2d](https://github.com/tannerntannern/ts-mixer/commit/c8bfc2d48854808755088332636e8d166007ed9f))
70
-
71
- ### [5.2.1](https://github.com/tannerntannern/ts-mixer/compare/v5.2.0...v5.2.1) (2020-05-08)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * mix decorator not preserving constructor name ([7274fa2](https://github.com/tannerntannern/ts-mixer/commit/7274fa26a68e05cc59cde1108610e6a1ab51b430))
77
-
78
- ## [5.2.0](https://github.com/tannerntannern/ts-mixer/compare/v5.2.0-beta.1...v5.2.0) (2020-04-29)
79
-
80
- ## [5.2.0-beta.1](https://github.com/tannerntannern/ts-mixer/compare/v5.2.0-beta.0...v5.2.0-beta.1) (2020-04-23)
81
-
82
-
83
- ### Bug Fixes
84
-
85
- * wrong this in init functions for Mixin(A, Mixin(B, C)) scenario ([0ba1128](https://github.com/tannerntannern/ts-mixer/commit/0ba11283c63a878271b85c282f75190758101e63))
86
-
87
- ## [5.2.0-beta.0](https://github.com/tannerntannern/ts-mixer/compare/v5.1.0...v5.2.0-beta.0) (2020-04-13)
88
-
89
-
90
- ### Features
91
-
92
- * adds init func feature for impure constructors ([99a946b](https://github.com/tannerntannern/ts-mixer/commit/99a946b8e272773f6bafd7a7e8bf8313517dec16))
93
-
94
- ## [5.1.0](https://github.com/tannerntannern/ts-mixer/compare/v5.1.0-beta.0...v5.1.0) (2020-03-27)
95
-
96
- ## [5.1.0-beta.0](https://github.com/tannerntannern/ts-mixer/compare/v5.0.0...v5.1.0-beta.0) (2020-03-26)
97
-
98
-
99
- ### Features
100
-
101
- * decorator support for class-validators, typeORM, etc ([2c14812](https://github.com/tannerntannern/ts-mixer/commit/2c1481237b325916ca95dbb9e33141b3220f8068))
102
-
103
- ## [5.0.0](https://github.com/tannerntannern/ts-mixer/compare/v5.0.0-beta.0...v5.0.0) (2020-03-01)
104
-
105
- ## [5.0.0-beta.0](https://github.com/tannerntannern/ts-mixer/compare/v4.0.0...v5.0.0-beta.0) (2020-02-02)
106
-
107
-
108
- ### Features
109
-
110
- * adds and tests a nearestCommonAncestor function ([b084579](https://github.com/tannerntannern/ts-mixer/commit/b084579d5ac52e0b456be95ff6b776309b436473))
111
- * initial static inheritance implementation ([8467c40](https://github.com/tannerntannern/ts-mixer/commit/8467c40c9748e769eebf77b45cccad5ce785bac9))
112
- * initial version of proxyMix ([95a91c7](https://github.com/tannerntannern/ts-mixer/commit/95a91c78e5f05af75cfc95d82a65ce5b3413b9f1))
113
- * makes mixin constructor argument inference slightly smarter ([b844b5c](https://github.com/tannerntannern/ts-mixer/commit/b844b5c93f5eab0d6f522559ed567f67291fae76))
114
-
115
-
116
- ### Bug Fixes
117
-
118
- * mixins with shared ancestor when using proxy prototype ([5af189d](https://github.com/tannerntannern/ts-mixer/commit/5af189d9903083f675f65b5039875c4aa97be1a6))
119
- * resolves indefinite tuple issue with `Longest` type ([68342b0](https://github.com/tannerntannern/ts-mixer/commit/68342b0a3fe224a485f220039af872050aa941fc))
120
- * static chain inheritance ([0aca8f0](https://github.com/tannerntannern/ts-mixer/commit/0aca8f056a005ccf27cc564d5a84abe1ef999d7b))