seedcord 0.10.3 → 0.10.5

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/README.md CHANGED
@@ -3,3 +3,11 @@
3
3
  </p>
4
4
 
5
5
  ---
6
+
7
+ _This repository is a work in progress._
8
+
9
+ - There are no stable releases yet but changes are being made actively.
10
+ - Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.
11
+ - Documentation will come soon as well!
12
+
13
+ I'm planning to release the first major version by the end of 2025, or Jan 2026. But till then, if you'd like to try using it, you can check out the code in `packages/mock`
package/dist/index.cjs CHANGED
@@ -1460,7 +1460,9 @@ var decide = /* @__PURE__ */ __name(async (opts, i) => {
1460
1460
  var shouldDefer = /* @__PURE__ */ __name((ix, opts, isSlash, isContext) => {
1461
1461
  if (ix.deferred) return false;
1462
1462
  if (opts.defer === false) return false;
1463
- return isSlash || isContext;
1463
+ if (isSlash || isContext) return true;
1464
+ if (isMessageComponentIx(ix)) return true;
1465
+ return false;
1464
1466
  }, "shouldDefer");
1465
1467
  var maybeDefer = /* @__PURE__ */ __name(async (ix, opts, isSlash, isContext) => {
1466
1468
  if (!shouldDefer(ix, opts, isSlash, isContext)) return;