@fedify/fedify 1.6.0-dev.814 → 1.6.0-experiment.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/_virtual/rolldown_runtime.js +15 -0
- package/dist/codegen/fs.js +23 -0
- package/dist/codegen/schema.js +87 -0
- package/dist/codegen/type.js +394 -0
- package/dist/compat/mod.d.ts +5 -0
- package/dist/compat/mod.js +7 -0
- package/dist/compat/transformers.d.ts +101 -0
- package/dist/compat/transformers.js +98 -0
- package/dist/compat/transformers.test.d.ts +2 -0
- package/dist/compat/transformers.test.js +69 -0
- package/dist/compat/types.d.ts +18 -0
- package/dist/deno.js +109 -0
- package/dist/federation/builder.d.ts +19 -0
- package/dist/federation/builder.js +491 -0
- package/dist/federation/builder.test.d.ts +2 -0
- package/dist/federation/builder.test.js +123 -0
- package/dist/federation/callback.d.ts +211 -0
- package/dist/federation/collection.d.ts +36 -0
- package/dist/federation/collection.js +48 -0
- package/dist/federation/collection.test.d.ts +2 -0
- package/dist/federation/collection.test.js +25 -0
- package/dist/federation/context.d.ts +724 -0
- package/dist/federation/federation.d.ts +689 -0
- package/dist/federation/handler.d.ts +44 -0
- package/dist/federation/handler.js +543 -0
- package/dist/federation/handler.test.d.ts +2 -0
- package/dist/federation/handler.test.js +1186 -0
- package/dist/federation/inbox.js +165 -0
- package/dist/federation/inbox.test.d.ts +2 -0
- package/dist/federation/inbox.test.js +88 -0
- package/dist/federation/keycache.js +47 -0
- package/dist/federation/keycache.test.d.ts +2 -0
- package/dist/federation/keycache.test.js +55 -0
- package/dist/federation/kv.d.ts +74 -0
- package/dist/federation/kv.js +51 -0
- package/dist/federation/kv.test.d.ts +2 -0
- package/dist/federation/kv.test.js +25 -0
- package/dist/federation/middleware.d.ts +101 -0
- package/dist/federation/middleware.js +1775 -0
- package/dist/federation/middleware.test.d.ts +2 -0
- package/dist/federation/middleware.test.js +1491 -0
- package/dist/federation/mod.d.ts +15 -0
- package/dist/federation/mod.js +14 -0
- package/dist/federation/mq.d.ts +127 -0
- package/dist/federation/mq.js +147 -0
- package/dist/federation/mq.test.d.ts +2 -0
- package/dist/federation/mq.test.js +124 -0
- package/dist/federation/negotiation.js +63 -0
- package/dist/federation/retry.d.ts +71 -0
- package/dist/federation/retry.js +36 -0
- package/dist/federation/retry.test.d.ts +2 -0
- package/dist/federation/retry.test.js +44 -0
- package/dist/federation/router.d.ts +91 -0
- package/dist/federation/router.js +99 -0
- package/dist/federation/router.test.d.ts +2 -0
- package/dist/federation/router.test.js +78 -0
- package/dist/federation/send.d.ts +29 -0
- package/dist/federation/send.js +127 -0
- package/dist/federation/send.test.d.ts +2 -0
- package/dist/federation/send.test.js +214 -0
- package/dist/mod.d.ts +36 -0
- package/dist/mod.js +33 -0
- package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/mod.js +101 -0
- package/dist/node_modules/.pnpm/@jsr_hongminhee__deno-mock-fetch@0.3.2/node_modules/@jsr/hongminhee__deno-mock-fetch/router.js +93 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert.js +26 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_equals.js +49 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_exists.js +32 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_false.js +26 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater.js +34 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_greater_or_equal.js +34 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_instance_of.js +40 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_is_error.js +48 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_not_equals.js +36 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_object_match.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_rejects.js +42 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_strict_equals.js +53 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_string_includes.js +32 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assert_throws.js +38 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/assertion_error.js +33 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/equal.js +79 -0
- package/dist/node_modules/.pnpm/@jsr_std__assert@0.226.0/node_modules/@jsr/std__assert/mod.js +19 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/assertion_state.js +177 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/build_message.js +101 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff.js +274 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/diff_str.js +148 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/format.js +37 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/mod.js +10 -0
- package/dist/node_modules/.pnpm/@jsr_std__internal@1.0.7/node_modules/@jsr/std__internal/styles.js +172 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/assert_path.js +11 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/constants.js +16 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/dirname.js +14 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/from_file_url.js +13 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize.js +14 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/normalize_string.js +60 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_common/strip_trailing_separators.js +15 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/_os.js +9 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/basename.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/common.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/constants.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/dirname.js +35 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/extname.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/format.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/from_file_url.js +34 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/glob_to_regexp.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/is_absolute.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join.js +35 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/join_globs.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/mod.js +7 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/normalize_glob.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/parse.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/_util.js +13 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/dirname.js +54 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/from_file_url.js +27 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/join.js +47 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/posix/normalize.js +59 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/relative.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/resolve.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_file_url.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/to_namespaced_path.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/_util.js +19 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/dirname.js +75 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/from_file_url.js +31 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/join.js +54 -0
- package/dist/node_modules/.pnpm/@jsr_std__path@1.0.9/node_modules/@jsr/std__path/windows/normalize.js +87 -0
- package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/_strip.js +17 -0
- package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/dirname.js +38 -0
- package/dist/node_modules/.pnpm/@jsr_std__url@1.0.0-rc.3/node_modules/@jsr/std__url/join.js +36 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_chars.js +47 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_dumper_state.js +4 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_loader_state.js +884 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_schema.js +120 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/binary.js +92 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/bool.js +41 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/float.js +58 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/int.js +118 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/map.js +18 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/merge.js +14 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/nil.js +23 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/omap.js +31 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/pairs.js +22 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/regexp.js +29 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/seq.js +14 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/set.js +17 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/str.js +14 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/timestamp.js +57 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_type/undefined.js +24 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/_utils.js +17 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/mod.js +5 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/parse.js +54 -0
- package/dist/node_modules/.pnpm/@jsr_std__yaml@1.0.6/node_modules/@jsr/std__yaml/stringify.js +4 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/AlwaysShrinkableArbitrary.js +30 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayArbitrary.js +203 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ArrayInt64Arbitrary.js +122 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/BigIntArbitrary.js +63 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/ConstantArbitrary.js +58 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/FrequencyArbitrary.js +136 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/IntegerArbitrary.js +64 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/LazyArbitrary.js +29 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/StringUnitArbitrary.js +45 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/TupleArbitrary.js +74 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/WithShrinkFromOtherArbitrary.js +40 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/AnyArbitraryBuilder.js +97 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/BoxedArbitraryBuilder.js +13 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/CharacterArbitraryBuilder.js +17 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/RestrictedIntegerArbitraryBuilder.js +23 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/builders/TypedIntArrayArbitraryBuilder.js +32 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/data/GraphemeRanges.js +990 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ArrayInt64.js +98 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BiasNumericRange.js +53 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/BuildSlicedGenerator.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/CustomEqualSet.js +27 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DepthContext.js +24 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleHelpers.js +96 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/DoubleOnlyHelpers.js +25 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatHelpers.js +57 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatOnlyHelpers.js +26 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/FloatingOnlyHelpers.js +26 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/GraphemeRangesHelpers.js +58 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/MaxLengthFromMinLength.js +72 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/NoUndefinedAsContext.js +16 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/QualifiedObjectConstraints.js +58 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueSet.js +41 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SameValueZeroSet.js +33 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkBigInt.js +37 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/ShrinkInteger.js +41 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/SlicesForStringBuilder.js +74 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/StrictlyEqualSet.js +38 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/helpers/TokenizeString.js +47 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/NoopSlicedGenerator.js +21 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/implementations/SlicedBasedGenerator.js +53 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToMap.js +16 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/ArrayToSet.js +16 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/CodePointsToString.js +17 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToCharString.js +20 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToMappedConstant.js +69 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/IndexToPrintableIndex.js +18 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/KeyValuePairsToObject.js +42 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/PatternsToString.js +32 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/TimeToDate.js +30 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/_internals/mappers/UnboxedToBoxed.js +22 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/anything.js +14 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/array.js +22 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/bigInt.js +38 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/boolean.js +24 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constant.js +13 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/constantFrom.js +14 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/date.js +30 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/dictionary.js +27 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/double.js +54 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float.js +60 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float32Array.js +22 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/float64Array.js +22 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicode.js +24 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/fullUnicodeString.js +20 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int16Array.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int32Array.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/int8Array.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/integer.js +26 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/letrec.js +28 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/mapToConstant.js +26 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/maxSafeInteger.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/nat.js +17 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/noBias.js +11 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/oneof.js +31 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/sparseArray.js +68 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/string.js +32 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/tuple.js +13 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint16Array.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint32Array.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8Array.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uint8ClampedArray.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/arbitrary/uniqueArray.js +47 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Arbitrary.js +184 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/arbitrary/definition/Value.js +31 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/precondition/PreconditionFailure.js +19 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IRawProperty.js +12 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/IgnoreEqualValuesProperty.js +52 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.generic.js +77 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/Property.js +22 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/SkipAfterProperty.js +61 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/TimeoutProperty.js +52 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/property/UnbiasedProperty.js +29 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/DecorateProperty.js +26 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Runner.js +61 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/RunnerIterator.js +47 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/SourceValuesIterator.js +35 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/Tosser.js +33 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/GlobalParameters.js +12 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/QualifiedParameters.js +121 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/configuration/VerbosityLevel.js +14 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/ExecutionStatus.js +14 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/reporter/RunExecution.js +116 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/PathWalker.js +24 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/runner/utils/RunDetailsFormatter.js +135 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/check/symbols.js +15 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/random/generator/Random.js +48 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/LazyIterableIterator.js +24 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/Stream.js +84 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/stream/StreamHelpers.js +50 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/apply.js +28 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/globals.js +309 -0
- package/dist/node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/esm/utils/stringify.js +217 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformArrayIntDistribution.js +20 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformBigIntDistribution.js +20 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UniformIntDistribution.js +20 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformArrayIntDistribution.js +20 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformBigIntDistribution.js +32 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/UnsafeUniformIntDistribution.js +43 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/ArrayInt.js +139 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformArrayIntDistributionInternal.js +26 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/distribution/internals/UnsafeUniformIntDistributionInternal.js +14 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/LinearCongruential.js +53 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/MersenneTwister.js +114 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/RandomGenerator.js +26 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XorShift.js +83 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/generator/XoroShiro.js +83 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand-default.js +44 -0
- package/dist/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/esm/pure-rand.js +22 -0
- package/dist/nodeinfo/client.d.ts +96 -0
- package/dist/nodeinfo/client.js +272 -0
- package/dist/nodeinfo/client.test.d.ts +2 -0
- package/dist/nodeinfo/client.test.js +968 -0
- package/dist/nodeinfo/handler.js +46 -0
- package/dist/nodeinfo/handler.test.d.ts +2 -0
- package/dist/nodeinfo/handler.test.js +94 -0
- package/dist/nodeinfo/mod.d.ts +6 -0
- package/dist/nodeinfo/mod.js +9 -0
- package/dist/nodeinfo/semver.d.ts +78 -0
- package/dist/nodeinfo/semver.js +148 -0
- package/dist/nodeinfo/semver.test.d.ts +2 -0
- package/dist/nodeinfo/semver.test.js +134 -0
- package/dist/nodeinfo/types.d.ts +140 -0
- package/dist/nodeinfo/types.js +50 -0
- package/dist/nodeinfo/types.test.d.ts +2 -0
- package/dist/nodeinfo/types.test.js +197 -0
- package/dist/runtime/authdocloader.d.ts +56 -0
- package/dist/runtime/authdocloader.js +52 -0
- package/dist/runtime/authdocloader.test.d.ts +2 -0
- package/dist/runtime/authdocloader.test.js +54 -0
- package/dist/runtime/contexts.js +4116 -0
- package/dist/runtime/docloader.d.ts +211 -0
- package/dist/runtime/docloader.js +291 -0
- package/dist/runtime/docloader.test.d.ts +2 -0
- package/dist/runtime/docloader.test.js +428 -0
- package/dist/runtime/key.d.ts +66 -0
- package/dist/runtime/key.js +156 -0
- package/dist/runtime/key.test.d.ts +2 -0
- package/dist/runtime/key.test.js +93 -0
- package/dist/runtime/langstr.d.ts +24 -0
- package/dist/runtime/langstr.js +32 -0
- package/dist/runtime/langstr.test.d.ts +2 -0
- package/dist/runtime/langstr.test.js +31 -0
- package/dist/runtime/mod.d.ts +7 -0
- package/dist/runtime/mod.js +10 -0
- package/dist/runtime/multibase/base.js +32 -0
- package/dist/runtime/multibase/constants.js +172 -0
- package/dist/runtime/multibase/index.js +57 -0
- package/dist/runtime/multibase/multibase.test.d.ts +2 -0
- package/dist/runtime/multibase/multibase.test.js +351 -0
- package/dist/runtime/multibase/rfc4648.js +61 -0
- package/dist/runtime/multibase/util.js +21 -0
- package/dist/runtime/url.js +67 -0
- package/dist/runtime/url.test.d.ts +2 -0
- package/dist/runtime/url.test.js +43 -0
- package/dist/sig/http.d.ts +143 -0
- package/dist/sig/http.js +720 -0
- package/dist/sig/http.test.d.ts +2 -0
- package/dist/sig/http.test.js +1094 -0
- package/dist/sig/key.d.ts +125 -0
- package/dist/sig/key.js +257 -0
- package/dist/sig/key.test.d.ts +2 -0
- package/dist/sig/key.test.js +242 -0
- package/dist/sig/ld.d.ts +150 -0
- package/dist/sig/ld.js +270 -0
- package/dist/sig/ld.test.d.ts +2 -0
- package/dist/sig/ld.test.js +224 -0
- package/dist/sig/mod.d.ts +8 -0
- package/dist/sig/mod.js +11 -0
- package/dist/sig/owner.d.ts +74 -0
- package/dist/sig/owner.js +89 -0
- package/dist/sig/owner.test.d.ts +2 -0
- package/dist/sig/owner.test.js +45 -0
- package/dist/sig/proof.d.ts +134 -0
- package/dist/sig/proof.js +262 -0
- package/dist/sig/proof.test.d.ts +2 -0
- package/dist/sig/proof.test.js +263 -0
- package/dist/testing/context.js +94 -0
- package/dist/testing/docloader.js +48 -0
- package/dist/testing/docloader.test.d.ts +2 -0
- package/dist/testing/docloader.test.js +15 -0
- package/dist/testing/keys.js +123 -0
- package/dist/testing/mod.js +87 -0
- package/dist/vocab/actor.d.ts +133 -0
- package/dist/vocab/actor.js +148 -0
- package/dist/vocab/actor.test.d.ts +2 -0
- package/dist/vocab/actor.test.js +114 -0
- package/dist/vocab/constants.d.ts +24 -0
- package/dist/vocab/constants.js +17 -0
- package/dist/vocab/lookup.d.ts +123 -0
- package/dist/vocab/lookup.js +162 -0
- package/dist/vocab/lookup.test.d.ts +2 -0
- package/dist/vocab/lookup.test.js +113 -0
- package/dist/vocab/mod.d.ts +8 -0
- package/dist/vocab/mod.js +11 -0
- package/dist/vocab/type.d.ts +107 -0
- package/dist/vocab/type.js +13 -0
- package/dist/vocab/type.test.d.ts +2 -0
- package/dist/vocab/type.test.js +24 -0
- package/dist/vocab/vocab.d.ts +14448 -0
- package/dist/vocab/vocab.js +35617 -0
- package/dist/vocab/vocab.test.d.ts +2 -0
- package/dist/vocab/vocab.test.js +849 -0
- package/dist/webfinger/handler.js +140 -0
- package/dist/webfinger/handler.test.d.ts +2 -0
- package/dist/webfinger/handler.test.js +483 -0
- package/dist/webfinger/jrd.d.ts +60 -0
- package/dist/webfinger/lookup.d.ts +47 -0
- package/dist/webfinger/lookup.js +131 -0
- package/dist/webfinger/lookup.test.d.ts +2 -0
- package/dist/webfinger/lookup.test.js +119 -0
- package/dist/webfinger/mod.d.ts +5 -0
- package/dist/webfinger/mod.js +7 -0
- package/dist/x/denokv.js +41 -0
- package/dist/x/hono.d.ts +40 -0
- package/dist/x/hono.js +48 -0
- package/dist/x/sveltekit.d.ts +36 -0
- package/dist/x/sveltekit.js +56 -0
- package/package.json +57 -60
- package/CHANGES.md +0 -3883
- package/CONTRIBUTING.md +0 -272
- package/FEDERATION.md +0 -85
- package/LICENSE +0 -20
- package/SECURITY.md +0 -22
- package/SPONSORS.md +0 -47
- package/esm/_dnt.polyfills.js +0 -15
- package/esm/_dnt.shims.js +0 -70
- package/esm/compat/mod.js +0 -3
- package/esm/compat/transformers.js +0 -95
- package/esm/compat/types.js +0 -1
- package/esm/deno.js +0 -110
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.js +0 -9
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.js +0 -28
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.js +0 -36
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.js +0 -21
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.js +0 -36
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.js +0 -38
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.js +0 -35
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.js +0 -37
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.js +0 -17
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.js +0 -33
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.js +0 -15
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.js +0 -28
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.js +0 -44
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.js +0 -18
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.js +0 -60
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.js +0 -37
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.js +0 -41
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.js +0 -34
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.js +0 -36
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.js +0 -37
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.js +0 -37
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.js +0 -52
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.js +0 -36
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.js +0 -33
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.js +0 -35
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.js +0 -18
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.js +0 -35
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.js +0 -36
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.js +0 -29
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.js +0 -29
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.js +0 -22
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.js +0 -21
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.js +0 -18
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.js +0 -37
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.js +0 -31
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.js +0 -44
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.js +0 -39
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.js +0 -37
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.js +0 -32
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.js +0 -3
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.js +0 -13
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.js +0 -51
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.js +0 -17
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.js +0 -10
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.js +0 -10
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.js +0 -2
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.js +0 -40
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.js +0 -10
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.js +0 -40
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.js +0 -42
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.js +0 -44
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.js +0 -97
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.js +0 -21
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.js +0 -22
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.js +0 -21
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.js +0 -86
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.js +0 -10
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.js +0 -28
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.js +0 -45
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.js +0 -47
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.js +0 -40
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.js +0 -41
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.js +0 -21
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.js +0 -46
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.js +0 -18
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.js +0 -65
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.js +0 -13
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.js +0 -17
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.js +0 -35
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.js +0 -18
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.js +0 -32
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.js +0 -32
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.js +0 -22
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.js +0 -70
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.js +0 -50
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.js +0 -201
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.js +0 -22
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.js +0 -49
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.js +0 -17
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.js +0 -28
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.js +0 -28
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.js +0 -69
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.js +0 -71
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.js +0 -31
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.js +0 -27
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.js +0 -31
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.js +0 -66
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.js +0 -47
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.js +0 -66
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.js +0 -30
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.js +0 -25
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.js +0 -17
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.js +0 -218
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.js +0 -40
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.js +0 -94
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.js +0 -24
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.js +0 -22
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.js +0 -17
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.js +0 -56
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.js +0 -31
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.js +0 -29
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.js +0 -52
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.js +0 -5
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.js +0 -69
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.js +0 -99
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.js +0 -29
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.js +0 -14
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.js +0 -64
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.js +0 -14
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.js +0 -21
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.js +0 -14
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.js +0 -16
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.js +0 -19
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.js +0 -20
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.js +0 -39
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.js +0 -36
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.js +0 -23
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.js +0 -26
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.js +0 -14
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.js +0 -38
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.js +0 -47
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.js +0 -41
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.js +0 -4
- package/esm/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.js +0 -33
- package/esm/federation/builder.js +0 -652
- package/esm/federation/callback.js +0 -1
- package/esm/federation/collection.js +0 -43
- package/esm/federation/context.js +0 -1
- package/esm/federation/federation.js +0 -1
- package/esm/federation/handler.js +0 -574
- package/esm/federation/inbox.js +0 -146
- package/esm/federation/keycache.js +0 -42
- package/esm/federation/kv.js +0 -52
- package/esm/federation/middleware.js +0 -2071
- package/esm/federation/mod.js +0 -17
- package/esm/federation/mq.js +0 -161
- package/esm/federation/negotiation.js +0 -92
- package/esm/federation/queue.js +0 -1
- package/esm/federation/retry.js +0 -34
- package/esm/federation/router.js +0 -97
- package/esm/federation/send.js +0 -129
- package/esm/mod.js +0 -52
- package/esm/nodeinfo/client.js +0 -372
- package/esm/nodeinfo/handler.js +0 -49
- package/esm/nodeinfo/mod.js +0 -11
- package/esm/nodeinfo/semver.js +0 -150
- package/esm/nodeinfo/types.js +0 -60
- package/esm/package.json +0 -3
- package/esm/runtime/contexts.js +0 -4191
- package/esm/runtime/docloader.js +0 -351
- package/esm/runtime/key.js +0 -153
- package/esm/runtime/langstr.js +0 -25
- package/esm/runtime/mod.js +0 -10
- package/esm/runtime/multibase/base.js +0 -30
- package/esm/runtime/multibase/constants.js +0 -78
- package/esm/runtime/multibase/index.js +0 -59
- package/esm/runtime/multibase/rfc4648.js +0 -79
- package/esm/runtime/multibase/util.js +0 -13
- package/esm/runtime/url.js +0 -96
- package/esm/sig/http.js +0 -845
- package/esm/sig/key.js +0 -253
- package/esm/sig/ld.js +0 -288
- package/esm/sig/mod.js +0 -11
- package/esm/sig/owner.js +0 -103
- package/esm/sig/proof.js +0 -269
- package/esm/vocab/actor.js +0 -168
- package/esm/vocab/constants.js +0 -9
- package/esm/vocab/lookup.js +0 -174
- package/esm/vocab/mod.js +0 -57
- package/esm/vocab/type.js +0 -6
- package/esm/vocab/vocab.js +0 -51266
- package/esm/webfinger/handler.js +0 -173
- package/esm/webfinger/jrd.js +0 -1
- package/esm/webfinger/lookup.js +0 -136
- package/esm/webfinger/mod.js +0 -8
- package/esm/x/hono.js +0 -65
- package/esm/x/sveltekit.js +0 -65
- package/logo.svg +0 -185
- package/types/_dnt.polyfills.d.ts +0 -18
- package/types/_dnt.polyfills.d.ts.map +0 -1
- package/types/_dnt.shims.d.ts +0 -14
- package/types/_dnt.shims.d.ts.map +0 -1
- package/types/compat/mod.d.ts +0 -4
- package/types/compat/mod.d.ts.map +0 -1
- package/types/compat/transformers.d.ts +0 -77
- package/types/compat/transformers.d.ts.map +0 -1
- package/types/compat/types.d.ts +0 -8
- package/types/compat/types.d.ts.map +0 -1
- package/types/deno.d.ts +0 -84
- package/types/deno.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts +0 -2
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/_internal/compareValues.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts +0 -17
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/at.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts +0 -25
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/chunk.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/compact.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts +0 -29
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/countBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/difference.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts +0 -34
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts +0 -30
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/differenceWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/drop.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropRightWhile.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/dropWhile.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts +0 -85
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/fill.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMap.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatMapDeep.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flatten.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/flattenDeep.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts +0 -47
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/forEachRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts +0 -34
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/groupBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts +0 -33
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/head.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts +0 -61
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts +0 -53
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/initial.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersection.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts +0 -35
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts +0 -36
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/intersectionWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts +0 -25
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubset.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts +0 -32
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/isSubsetWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts +0 -29
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/keyBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts +0 -47
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/last.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts +0 -44
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/maxBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts +0 -44
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/minBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts +0 -36
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/orderBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/partition.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pull.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/pullAt.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/remove.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sample.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sampleSize.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/shuffle.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts +0 -34
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/sortBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts +0 -66
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/tail.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/take.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts +0 -23
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeRightWhile.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/takeWhile.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts +0 -91
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/toFilled.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/union.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unionWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts +0 -17
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniq.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts +0 -28
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts +0 -17
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/uniqWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzip.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/unzipWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts +0 -49
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/windowed.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/without.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xor.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts +0 -21
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/xorWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts +0 -105
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zip.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts +0 -32
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipObject.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts +0 -71
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/array/zipWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts +0 -2
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getSymbols.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts +0 -9
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/getTag.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts +0 -27
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/_internal/tags.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isArray.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts +0 -26
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isObjectLike.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isPlainObject.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/predicate/isSymbol.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/eq.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toFinite.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toInteger.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/compat/util/toNumber.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts +0 -8
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/AbortError.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts +0 -8
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/TimeoutError.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts +0 -3
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/error/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts +0 -30
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/after.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/ary.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts +0 -11
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/asyncNoop.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts +0 -30
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/before.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts +0 -125
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curry.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts +0 -139
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/curryRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts +0 -74
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/debounce.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts +0 -131
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flow.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts +0 -143
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/flowRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts +0 -21
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/identity.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts +0 -123
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/memoize.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/negate.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts +0 -11
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/noop.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts +0 -34
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/once.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts +0 -552
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partial.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts +0 -629
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/partialRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts +0 -32
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/rest.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts +0 -77
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/retry.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/spread.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts +0 -48
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/throttle.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/function/unary.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts +0 -66
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts +0 -31
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/clamp.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts +0 -26
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/inRange.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts +0 -14
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/mean.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts +0 -17
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/meanBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/median.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/medianBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts +0 -29
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/random.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts +0 -25
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/randomInt.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts +0 -37
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/range.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts +0 -37
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/rangeRight.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/round.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sum.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts +0 -17
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/math/sumBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts +0 -30
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/clone.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts +0 -48
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeep.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts +0 -44
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/cloneDeepWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/findKey.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts +0 -36
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/flattenObject.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/invert.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapKeys.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mapValues.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts +0 -42
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/merge.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts +0 -50
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/mergeWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omit.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts +0 -21
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/omitBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pick.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts +0 -21
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/pickBy.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts +0 -53
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toCamelCaseKeys.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts +0 -44
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toMerged.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts +0 -53
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/object/toSnakeCaseKeys.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts +0 -31
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isArrayBuffer.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBlob.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts +0 -24
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBoolean.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBrowser.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isBuffer.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isDate.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqual.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts +0 -37
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isEqualWith.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isError.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts +0 -20
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFile.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isFunction.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts +0 -30
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSON.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts +0 -55
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isJSONValue.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts +0 -23
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isLength.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isMap.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts +0 -21
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNil.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNode.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNotNil.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isNull.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts +0 -44
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPlainObject.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts +0 -30
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPrimitive.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isPromise.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isRegExp.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSet.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts +0 -19
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isString.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts +0 -25
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isSymbol.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts +0 -28
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isTypedArray.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isUndefined.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakMap.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/predicate/isWeakSet.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts +0 -38
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/delay.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts +0 -6
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts +0 -63
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/mutex.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts +0 -80
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/semaphore.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/timeout.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts +0 -27
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/promise/withTimeout.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/camelCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/capitalize.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/constantCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts +0 -21
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/deburr.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escape.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts +0 -13
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/escapeRegExp.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts +0 -22
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/kebabCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts +0 -13
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/lowerFirst.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pad.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/pascalCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/reverseString.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/snakeCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/startCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts +0 -14
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trim.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimEnd.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts +0 -18
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/trimStart.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts +0 -15
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/unescape.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts +0 -16
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperCase.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts +0 -13
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/upperFirst.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts +0 -37
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/string/words.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts +0 -41
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attempt.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts +0 -34
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/attemptAsync.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts +0 -5
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/index.d.ts.map +0 -1
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts +0 -39
- package/types/deps/jsr.io/@es-toolkit/es-toolkit/1.38.0/src/util/invariant.d.ts.map +0 -1
- package/types/federation/builder.d.ts +0 -79
- package/types/federation/builder.d.ts.map +0 -1
- package/types/federation/callback.d.ts +0 -202
- package/types/federation/callback.d.ts.map +0 -1
- package/types/federation/collection.d.ts +0 -27
- package/types/federation/collection.d.ts.map +0 -1
- package/types/federation/context.d.ts +0 -727
- package/types/federation/context.d.ts.map +0 -1
- package/types/federation/federation.d.ts +0 -682
- package/types/federation/federation.d.ts.map +0 -1
- package/types/federation/handler.d.ts +0 -120
- package/types/federation/handler.d.ts.map +0 -1
- package/types/federation/inbox.d.ts +0 -35
- package/types/federation/inbox.d.ts.map +0 -1
- package/types/federation/keycache.d.ts +0 -18
- package/types/federation/keycache.d.ts.map +0 -1
- package/types/federation/kv.d.ts +0 -66
- package/types/federation/kv.d.ts.map +0 -1
- package/types/federation/middleware.d.ts +0 -262
- package/types/federation/middleware.d.ts.map +0 -1
- package/types/federation/mod.d.ts +0 -19
- package/types/federation/mod.d.ts.map +0 -1
- package/types/federation/mq.d.ts +0 -119
- package/types/federation/mq.d.ts.map +0 -1
- package/types/federation/negotiation.d.ts +0 -37
- package/types/federation/negotiation.d.ts.map +0 -1
- package/types/federation/queue.d.ts +0 -47
- package/types/federation/queue.d.ts.map +0 -1
- package/types/federation/retry.d.ts +0 -64
- package/types/federation/retry.d.ts.map +0 -1
- package/types/federation/router.d.ts +0 -83
- package/types/federation/router.d.ts.map +0 -1
- package/types/federation/send.d.ts +0 -108
- package/types/federation/send.d.ts.map +0 -1
- package/types/mod.d.ts +0 -53
- package/types/mod.d.ts.map +0 -1
- package/types/nodeinfo/client.d.ts +0 -94
- package/types/nodeinfo/client.d.ts.map +0 -1
- package/types/nodeinfo/handler.d.ts +0 -32
- package/types/nodeinfo/handler.d.ts.map +0 -1
- package/types/nodeinfo/mod.d.ts +0 -12
- package/types/nodeinfo/mod.d.ts.map +0 -1
- package/types/nodeinfo/semver.d.ts +0 -71
- package/types/nodeinfo/semver.d.ts.map +0 -1
- package/types/nodeinfo/types.d.ts +0 -133
- package/types/nodeinfo/types.d.ts.map +0 -1
- package/types/runtime/contexts.d.ts +0 -3
- package/types/runtime/contexts.d.ts.map +0 -1
- package/types/runtime/docloader.d.ts +0 -225
- package/types/runtime/docloader.d.ts.map +0 -1
- package/types/runtime/key.d.ts +0 -54
- package/types/runtime/key.d.ts.map +0 -1
- package/types/runtime/langstr.d.ts +0 -15
- package/types/runtime/langstr.d.ts.map +0 -1
- package/types/runtime/mod.d.ts +0 -11
- package/types/runtime/mod.d.ts.map +0 -1
- package/types/runtime/multibase/base.d.ts +0 -15
- package/types/runtime/multibase/base.d.ts.map +0 -1
- package/types/runtime/multibase/constants.d.ts +0 -5
- package/types/runtime/multibase/constants.d.ts.map +0 -1
- package/types/runtime/multibase/index.d.ts +0 -24
- package/types/runtime/multibase/index.d.ts.map +0 -1
- package/types/runtime/multibase/rfc4648.d.ts +0 -6
- package/types/runtime/multibase/rfc4648.d.ts.map +0 -1
- package/types/runtime/multibase/util.d.ts +0 -4
- package/types/runtime/multibase/util.d.ts.map +0 -1
- package/types/runtime/url.d.ts +0 -11
- package/types/runtime/url.d.ts.map +0 -1
- package/types/shim/event.d.ts.map +0 -1
- package/types/sig/http.d.ts +0 -221
- package/types/sig/http.d.ts.map +0 -1
- package/types/sig/key.d.ts +0 -123
- package/types/sig/key.d.ts.map +0 -1
- package/types/sig/ld.d.ts +0 -152
- package/types/sig/ld.d.ts.map +0 -1
- package/types/sig/mod.d.ts +0 -12
- package/types/sig/mod.d.ts.map +0 -1
- package/types/sig/owner.d.ts +0 -65
- package/types/sig/owner.d.ts.map +0 -1
- package/types/sig/proof.d.ts +0 -122
- package/types/sig/proof.d.ts.map +0 -1
- package/types/vocab/actor.d.ts +0 -125
- package/types/vocab/actor.d.ts.map +0 -1
- package/types/vocab/constants.d.ts +0 -10
- package/types/vocab/constants.d.ts.map +0 -1
- package/types/vocab/lookup.d.ts +0 -115
- package/types/vocab/lookup.d.ts.map +0 -1
- package/types/vocab/mod.d.ts +0 -58
- package/types/vocab/mod.d.ts.map +0 -1
- package/types/vocab/type.d.ts +0 -82
- package/types/vocab/type.d.ts.map +0 -1
- package/types/vocab/vocab.d.ts +0 -14437
- package/types/vocab/vocab.d.ts.map +0 -1
- package/types/webfinger/handler.d.ts +0 -56
- package/types/webfinger/handler.d.ts.map +0 -1
- package/types/webfinger/jrd.d.ts +0 -52
- package/types/webfinger/jrd.d.ts.map +0 -1
- package/types/webfinger/lookup.d.ts +0 -39
- package/types/webfinger/lookup.d.ts.map +0 -1
- package/types/webfinger/mod.d.ts +0 -9
- package/types/webfinger/mod.d.ts.map +0 -1
- package/types/x/hono.d.ts +0 -46
- package/types/x/hono.d.ts.map +0 -1
- package/types/x/sveltekit.d.ts +0 -42
- package/types/x/sveltekit.d.ts.map +0 -1
- /package/{esm → dist}/codegen/schema.yaml +0 -0
- /package/{esm → dist}/testing/fixtures/activitypub.academy/users/brauca_darradiul +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/announce +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/collection +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/create +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/cross-origin-actor +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/hong-gildong +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/invite +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/key +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/key2 +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/object +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/orderedcollectionpage +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/paged/a +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/paged/b +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/paged-collection +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/person +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/person2 +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/test +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/users/handle +0 -0
- /package/{esm → dist}/testing/fixtures/example.com/wrong-type +0 -0
- /package/{esm → dist}/testing/fixtures/remote.domain/users/bob +0 -0
- /package/{esm → dist}/testing/fixtures/server.example/users/alice +0 -0
- /package/{esm → dist}/testing/fixtures/w3id.org/identity/v1 +0 -0
- /package/{esm → dist}/testing/fixtures/w3id.org/security/data-integrity/v1 +0 -0
- /package/{esm → dist}/testing/fixtures/w3id.org/security/multikey/v1 +0 -0
- /package/{esm → dist}/testing/fixtures/w3id.org/security/v1 +0 -0
- /package/{esm → dist}/testing/fixtures/wizard.casa/users/hongminhee +0 -0
- /package/{esm → dist}/testing/fixtures/www.w3.org/ns/activitystreams +0 -0
- /package/{esm → dist}/testing/fixtures/www.w3.org/ns/did/v1 +0 -0
- /package/{esm → dist}/vocab/accept.yaml +0 -0
- /package/{esm → dist}/vocab/activity.yaml +0 -0
- /package/{esm → dist}/vocab/add.yaml +0 -0
- /package/{esm → dist}/vocab/announce.yaml +0 -0
- /package/{esm → dist}/vocab/application.yaml +0 -0
- /package/{esm → dist}/vocab/arrive.yaml +0 -0
- /package/{esm → dist}/vocab/article.yaml +0 -0
- /package/{esm → dist}/vocab/audio.yaml +0 -0
- /package/{esm → dist}/vocab/block.yaml +0 -0
- /package/{esm → dist}/vocab/chatmessage.yaml +0 -0
- /package/{esm → dist}/vocab/collection.yaml +0 -0
- /package/{esm → dist}/vocab/collectionpage.yaml +0 -0
- /package/{esm → dist}/vocab/create.yaml +0 -0
- /package/{esm → dist}/vocab/dataintegrityproof.yaml +0 -0
- /package/{esm → dist}/vocab/delete.yaml +0 -0
- /package/{esm → dist}/vocab/didservice.yaml +0 -0
- /package/{esm → dist}/vocab/dislike.yaml +0 -0
- /package/{esm → dist}/vocab/document.yaml +0 -0
- /package/{esm → dist}/vocab/emoji.yaml +0 -0
- /package/{esm → dist}/vocab/emojireact.yaml +0 -0
- /package/{esm → dist}/vocab/endpoints.yaml +0 -0
- /package/{esm → dist}/vocab/event.yaml +0 -0
- /package/{esm → dist}/vocab/export.yaml +0 -0
- /package/{esm → dist}/vocab/flag.yaml +0 -0
- /package/{esm → dist}/vocab/follow.yaml +0 -0
- /package/{esm → dist}/vocab/group.yaml +0 -0
- /package/{esm → dist}/vocab/hashtag.yaml +0 -0
- /package/{esm → dist}/vocab/ignore.yaml +0 -0
- /package/{esm → dist}/vocab/image.yaml +0 -0
- /package/{esm → dist}/vocab/intransitiveactivity.yaml +0 -0
- /package/{esm → dist}/vocab/invite.yaml +0 -0
- /package/{esm → dist}/vocab/join.yaml +0 -0
- /package/{esm → dist}/vocab/key.yaml +0 -0
- /package/{esm → dist}/vocab/leave.yaml +0 -0
- /package/{esm → dist}/vocab/like.yaml +0 -0
- /package/{esm → dist}/vocab/link.yaml +0 -0
- /package/{esm → dist}/vocab/listen.yaml +0 -0
- /package/{esm → dist}/vocab/mention.yaml +0 -0
- /package/{esm → dist}/vocab/move.yaml +0 -0
- /package/{esm → dist}/vocab/multikey.yaml +0 -0
- /package/{esm → dist}/vocab/note.yaml +0 -0
- /package/{esm → dist}/vocab/object.yaml +0 -0
- /package/{esm → dist}/vocab/offer.yaml +0 -0
- /package/{esm → dist}/vocab/orderedcollection.yaml +0 -0
- /package/{esm → dist}/vocab/orderedcollectionpage.yaml +0 -0
- /package/{esm → dist}/vocab/organization.yaml +0 -0
- /package/{esm → dist}/vocab/page.yaml +0 -0
- /package/{esm → dist}/vocab/person.yaml +0 -0
- /package/{esm → dist}/vocab/place.yaml +0 -0
- /package/{esm → dist}/vocab/profile.yaml +0 -0
- /package/{esm → dist}/vocab/propertyvalue.yaml +0 -0
- /package/{esm → dist}/vocab/question.yaml +0 -0
- /package/{esm → dist}/vocab/read.yaml +0 -0
- /package/{esm → dist}/vocab/reject.yaml +0 -0
- /package/{esm → dist}/vocab/relationship.yaml +0 -0
- /package/{esm → dist}/vocab/remove.yaml +0 -0
- /package/{esm → dist}/vocab/service.yaml +0 -0
- /package/{esm → dist}/vocab/source.yaml +0 -0
- /package/{esm → dist}/vocab/tentativeaccept.yaml +0 -0
- /package/{esm → dist}/vocab/tentativereject.yaml +0 -0
- /package/{esm → dist}/vocab/tombstone.yaml +0 -0
- /package/{esm → dist}/vocab/travel.yaml +0 -0
- /package/{esm → dist}/vocab/undo.yaml +0 -0
- /package/{esm → dist}/vocab/update.yaml +0 -0
- /package/{esm → dist}/vocab/video.yaml +0 -0
- /package/{esm → dist}/vocab/view.yaml +0 -0
@@ -1,727 +0,0 @@
|
|
1
|
-
import * as dntShim from "../_dnt.shims.js";
|
2
|
-
import type { TracerProvider } from "@opentelemetry/api";
|
3
|
-
import type { GetNodeInfoOptions } from "../nodeinfo/client.js";
|
4
|
-
import type { JsonValue, NodeInfo } from "../nodeinfo/types.js";
|
5
|
-
import type { DocumentLoader } from "../runtime/docloader.js";
|
6
|
-
import type { GetKeyOwnerOptions } from "../sig/owner.js";
|
7
|
-
import type { Actor, Recipient } from "../vocab/actor.js";
|
8
|
-
import type { LookupObjectOptions, TraverseCollectionOptions } from "../vocab/lookup.js";
|
9
|
-
import type { Activity, Collection, CryptographicKey, Link, Multikey, Object } from "../vocab/vocab.js";
|
10
|
-
import type { ResourceDescriptor } from "../webfinger/jrd.js";
|
11
|
-
import type { LookupWebFingerOptions } from "../webfinger/lookup.js";
|
12
|
-
import type { SenderKeyPair } from "./send.js";
|
13
|
-
/**
|
14
|
-
* A context.
|
15
|
-
*/
|
16
|
-
export interface Context<TContextData> {
|
17
|
-
/**
|
18
|
-
* The origin of the federated server, including the scheme (`http://` or
|
19
|
-
* `https://`) and the host (e.g., `example.com:8080`).
|
20
|
-
* @since 0.12.0
|
21
|
-
*/
|
22
|
-
readonly origin: string;
|
23
|
-
/**
|
24
|
-
* The canonical origin of the federated server, including the scheme
|
25
|
-
* (`http://` or `https://`) and the host (e.g., `example.com:8080`).
|
26
|
-
*
|
27
|
-
* When the associated {@link Federation} object does not have any explicit
|
28
|
-
* canonical origin, it is the same as the {@link Context.origin}.
|
29
|
-
* @since 1.5.0
|
30
|
-
*/
|
31
|
-
readonly canonicalOrigin: string;
|
32
|
-
/**
|
33
|
-
* The host of the federated server, including the hostname
|
34
|
-
* (e.g., `example.com`) and the port following a colon (e.g., `:8080`)
|
35
|
-
* if it is not the default port for the scheme.
|
36
|
-
* @since 0.12.0
|
37
|
-
*/
|
38
|
-
readonly host: string;
|
39
|
-
/**
|
40
|
-
* The hostname of the federated server (e.g., `example.com`). This is
|
41
|
-
* the same as the host without the port.
|
42
|
-
* @since 0.12.0
|
43
|
-
*/
|
44
|
-
readonly hostname: string;
|
45
|
-
/**
|
46
|
-
* The user-defined data associated with the context.
|
47
|
-
*/
|
48
|
-
readonly data: TContextData;
|
49
|
-
/**
|
50
|
-
* The OpenTelemetry tracer provider.
|
51
|
-
* @since 1.3.0
|
52
|
-
*/
|
53
|
-
readonly tracerProvider: TracerProvider;
|
54
|
-
/**
|
55
|
-
* The document loader for loading remote JSON-LD documents.
|
56
|
-
*/
|
57
|
-
readonly documentLoader: DocumentLoader;
|
58
|
-
/**
|
59
|
-
* The context loader for loading remote JSON-LD contexts.
|
60
|
-
*/
|
61
|
-
readonly contextLoader: DocumentLoader;
|
62
|
-
/**
|
63
|
-
* Builds the URI of the NodeInfo document.
|
64
|
-
* @returns The NodeInfo URI.
|
65
|
-
* @throws {RouterError} If no NodeInfo dispatcher is available.
|
66
|
-
* @since 0.2.0
|
67
|
-
*/
|
68
|
-
getNodeInfoUri(): URL;
|
69
|
-
/**
|
70
|
-
* Builds the URI of an actor with the given identifier.
|
71
|
-
* @param identifier The actor's identifier.
|
72
|
-
* @returns The actor's URI.
|
73
|
-
* @throws {RouterError} If no actor dispatcher is available.
|
74
|
-
*/
|
75
|
-
getActorUri(identifier: string): URL;
|
76
|
-
/**
|
77
|
-
* Builds the URI of an object with the given class and values.
|
78
|
-
* @param cls The class of the object.
|
79
|
-
* @param values The values to pass to the object dispatcher.
|
80
|
-
* @returns The object's URI.
|
81
|
-
* @throws {RouteError} If no object dispatcher is available for the class.
|
82
|
-
* @throws {TypeError} If values are invalid.
|
83
|
-
* @since 0.7.0
|
84
|
-
*/
|
85
|
-
getObjectUri<TObject extends Object>(cls: (new (...args: any[]) => TObject) & {
|
86
|
-
typeId: URL;
|
87
|
-
}, values: Record<string, string>): URL;
|
88
|
-
/**
|
89
|
-
* Builds the URI of an actor's outbox with the given identifier.
|
90
|
-
* @param identifier The actor's identifier.
|
91
|
-
* @returns The actor's outbox URI.
|
92
|
-
* @throws {RouterError} If no outbox dispatcher is available.
|
93
|
-
*/
|
94
|
-
getOutboxUri(identifier: string): URL;
|
95
|
-
/**
|
96
|
-
* Builds the URI of the shared inbox.
|
97
|
-
* @returns The shared inbox URI.
|
98
|
-
* @throws {RouterError} If no inbox listener is available.
|
99
|
-
*/
|
100
|
-
getInboxUri(): URL;
|
101
|
-
/**
|
102
|
-
* Builds the URI of an actor's inbox with the given identifier.
|
103
|
-
* @param identifier The actor's identifier.
|
104
|
-
* @returns The actor's inbox URI.
|
105
|
-
* @throws {RouterError} If no inbox listener is available.
|
106
|
-
*/
|
107
|
-
getInboxUri(identifier: string): URL;
|
108
|
-
/**
|
109
|
-
* Builds the URI of an actor's following collection with the given
|
110
|
-
* identifier.
|
111
|
-
* @param identifier The actor's identifier.
|
112
|
-
* @returns The actor's following collection URI.
|
113
|
-
* @throws {RouterError} If no following collection is available.
|
114
|
-
*/
|
115
|
-
getFollowingUri(identifier: string): URL;
|
116
|
-
/**
|
117
|
-
* Builds the URI of an actor's followers collection with the given
|
118
|
-
* identifier.
|
119
|
-
* @param identifier The actor's identifier.
|
120
|
-
* @returns The actor's followers collection URI.
|
121
|
-
* @throws {RouterError} If no followers collection is available.
|
122
|
-
*/
|
123
|
-
getFollowersUri(identifier: string): URL;
|
124
|
-
/**
|
125
|
-
* Builds the URI of an actor's liked collection with the given identifier.
|
126
|
-
* @param identifier The actor's identifier.
|
127
|
-
* @returns The actor's liked collection URI.
|
128
|
-
* @throws {RouterError} If no liked collection is available.
|
129
|
-
* @since 0.11.0
|
130
|
-
*/
|
131
|
-
getLikedUri(identifier: string): URL;
|
132
|
-
/**
|
133
|
-
* Builds the URI of an actor's featured collection with the given identifier.
|
134
|
-
* @param identifier The actor's identifier.
|
135
|
-
* @returns The actor's featured collection URI.
|
136
|
-
* @throws {RouterError} If no featured collection is available.
|
137
|
-
* @since 0.11.0
|
138
|
-
*/
|
139
|
-
getFeaturedUri(identifier: string): URL;
|
140
|
-
/**
|
141
|
-
* Builds the URI of an actor's featured tags collection with the given
|
142
|
-
* identifier.
|
143
|
-
* @param identifier The actor's identifier.
|
144
|
-
* @returns The actor's featured tags collection URI.
|
145
|
-
* @throws {RouterError} If no featured tags collection is available.
|
146
|
-
* @since 0.11.0
|
147
|
-
*/
|
148
|
-
getFeaturedTagsUri(identifier: string): URL;
|
149
|
-
/**
|
150
|
-
* Determines the type of the URI and extracts the associated data.
|
151
|
-
* @param uri The URI to parse.
|
152
|
-
* @returns The result of parsing the URI. If `null` is given or
|
153
|
-
* the URI is not recognized, `null` is returned.
|
154
|
-
* @since 0.9.0
|
155
|
-
*/
|
156
|
-
parseUri(uri: URL | null): ParseUriResult | null;
|
157
|
-
/**
|
158
|
-
* Gets the key pairs for an actor.
|
159
|
-
* @param identifier The actor's identifier.
|
160
|
-
* @returns An async iterable of the actor's key pairs. It can be empty.
|
161
|
-
* @since 0.10.0
|
162
|
-
*/
|
163
|
-
getActorKeyPairs(identifier: string): Promise<ActorKeyPair[]>;
|
164
|
-
/**
|
165
|
-
* Gets an authenticated {@link DocumentLoader} for the given identity.
|
166
|
-
* Note that an authenticated document loader intentionally does not cache
|
167
|
-
* the fetched documents.
|
168
|
-
* @param identity The identity to get the document loader for.
|
169
|
-
* The actor's identifier or username.
|
170
|
-
* @returns The authenticated document loader.
|
171
|
-
* @throws {Error} If the identity is not valid.
|
172
|
-
* @throws {TypeError} If the key is invalid or unsupported.
|
173
|
-
* @since 0.4.0
|
174
|
-
*/
|
175
|
-
getDocumentLoader(identity: {
|
176
|
-
identifier: string;
|
177
|
-
} | {
|
178
|
-
username: string;
|
179
|
-
} | {
|
180
|
-
handle: string;
|
181
|
-
}): Promise<DocumentLoader>;
|
182
|
-
/**
|
183
|
-
* Gets an authenticated {@link DocumentLoader} for the given identity.
|
184
|
-
* Note that an authenticated document loader intentionally does not cache
|
185
|
-
* the fetched documents.
|
186
|
-
* @param identity The identity to get the document loader for.
|
187
|
-
* The actor's key pair.
|
188
|
-
* @returns The authenticated document loader.
|
189
|
-
* @throws {TypeError} If the key is invalid or unsupported.
|
190
|
-
* @since 0.4.0
|
191
|
-
*/
|
192
|
-
getDocumentLoader(identity: {
|
193
|
-
keyId: URL;
|
194
|
-
privateKey: dntShim.CryptoKey;
|
195
|
-
}): DocumentLoader;
|
196
|
-
/**
|
197
|
-
* Looks up an ActivityStreams object by its URI (including `acct:` URIs)
|
198
|
-
* or a fediverse handle (e.g., `@user@server` or `user@server`).
|
199
|
-
*
|
200
|
-
* @example
|
201
|
-
* ``` typescript
|
202
|
-
* // Look up an actor by its fediverse handle:
|
203
|
-
* await ctx.lookupObject("@hongminhee@fosstodon.org");
|
204
|
-
* // returning a `Person` object.
|
205
|
-
*
|
206
|
-
* // A fediverse handle can omit the leading '@':
|
207
|
-
* await ctx.lookupObject("hongminhee@fosstodon.org");
|
208
|
-
* // returning a `Person` object.
|
209
|
-
*
|
210
|
-
* // A `acct:` URI can be used as well:
|
211
|
-
* await ctx.lookupObject("acct:hongminhee@fosstodon.org");
|
212
|
-
* // returning a `Person` object.
|
213
|
-
*
|
214
|
-
* // Look up an object by its URI:
|
215
|
-
* await ctx.lookupObject("https://todon.eu/@hongminhee/112060633798771581");
|
216
|
-
* // returning a `Note` object.
|
217
|
-
*
|
218
|
-
* // It can be a `URL` object as well:
|
219
|
-
* await ctx.lookupObject(
|
220
|
-
* new URL("https://todon.eu/@hongminhee/112060633798771581")
|
221
|
-
* );
|
222
|
-
* // returning a `Note` object.
|
223
|
-
* ```
|
224
|
-
*
|
225
|
-
* It's almost the same as the {@link lookupObject} function, but it uses
|
226
|
-
* the context's document loader and context loader by default.
|
227
|
-
*
|
228
|
-
* @param identifier The URI or fediverse handle to look up.
|
229
|
-
* @param options Lookup options.
|
230
|
-
* @returns The object, or `null` if not found.
|
231
|
-
* @since 0.15.0
|
232
|
-
*/
|
233
|
-
lookupObject(identifier: string | URL, options?: LookupObjectOptions): Promise<Object | null>;
|
234
|
-
/**
|
235
|
-
* Traverses a collection, yielding each item in the collection.
|
236
|
-
* If the collection is paginated, it will fetch the next page
|
237
|
-
* automatically.
|
238
|
-
*
|
239
|
-
* @example
|
240
|
-
* ``` typescript
|
241
|
-
* const collection = await ctx.lookupObject(collectionUrl);
|
242
|
-
* if (collection instanceof Collection) {
|
243
|
-
* for await (const item of ctx.traverseCollection(collection)) {
|
244
|
-
* console.log(item.id?.href);
|
245
|
-
* }
|
246
|
-
* }
|
247
|
-
* ```
|
248
|
-
*
|
249
|
-
* It's almost the same as the {@link traverseCollection} function, but it
|
250
|
-
* uses the context's document loader and context loader by default.
|
251
|
-
* @param collection The collection to traverse.
|
252
|
-
* @param options Options for traversing the collection.
|
253
|
-
* @returns An async iterable of each item in the collection.
|
254
|
-
* @since 1.1.0
|
255
|
-
*/
|
256
|
-
traverseCollection(collection: Collection, options?: TraverseCollectionOptions): AsyncIterable<Object | Link>;
|
257
|
-
/**
|
258
|
-
* Fetches the NodeInfo document from the given URL.
|
259
|
-
* @param url The base URL of the server. If `options.direct` is turned off
|
260
|
-
* (default), the NodeInfo document will be fetched from
|
261
|
-
* the `.well-known` location of this URL (hence the only origin
|
262
|
-
* of the URL is used). If `options.direct` is turned on,
|
263
|
-
* the NodeInfo document will be fetched from the given URL.
|
264
|
-
* @param options Options for fetching the NodeInfo document.
|
265
|
-
* @returns The NodeInfo document if it could be fetched successfully.
|
266
|
-
* Otherwise, `undefined` is returned.
|
267
|
-
* @since 1.4.0
|
268
|
-
*/
|
269
|
-
lookupNodeInfo(url: URL | string, options?: GetNodeInfoOptions & {
|
270
|
-
parse?: "strict" | "best-effort";
|
271
|
-
}): Promise<NodeInfo | undefined>;
|
272
|
-
/**
|
273
|
-
* Fetches the NodeInfo document from the given URL.
|
274
|
-
* @param url The base URL of the server. If `options.direct` is turned off
|
275
|
-
* (default), the NodeInfo document will be fetched from
|
276
|
-
* the `.well-known` location of this URL (hence the only origin
|
277
|
-
* of the URL is used). If `options.direct` is turned on,
|
278
|
-
* the NodeInfo document will be fetched from the given URL.
|
279
|
-
* @param options Options for fetching the NodeInfo document.
|
280
|
-
* @returns The NodeInfo document if it could be fetched successfully.
|
281
|
-
* Otherwise, `undefined` is returned.
|
282
|
-
* @since 1.4.0
|
283
|
-
*/
|
284
|
-
lookupNodeInfo(url: URL | string, options?: GetNodeInfoOptions & {
|
285
|
-
parse: "none";
|
286
|
-
}): Promise<JsonValue | undefined>;
|
287
|
-
/**
|
288
|
-
* Looks up a WebFinger resource.
|
289
|
-
*
|
290
|
-
* It's almost the same as the {@link lookupWebFinger} function, but it uses
|
291
|
-
* the context's configuration by default.
|
292
|
-
*
|
293
|
-
* @param resource The resource URL to look up.
|
294
|
-
* @param options Extra options for looking up the resource.
|
295
|
-
* @returns The resource descriptor, or `null` if not found.
|
296
|
-
* @since 1.6.0
|
297
|
-
*/
|
298
|
-
lookupWebFinger(resource: URL | string, options?: LookupWebFingerOptions): Promise<ResourceDescriptor | null>;
|
299
|
-
/**
|
300
|
-
* Sends an activity to recipients' inboxes.
|
301
|
-
* @param sender The sender's identifier or the sender's username or
|
302
|
-
* the sender's key pair(s).
|
303
|
-
* @param recipients The recipients of the activity.
|
304
|
-
* @param activity The activity to send.
|
305
|
-
* @param options Options for sending the activity.
|
306
|
-
*/
|
307
|
-
sendActivity(sender: SenderKeyPair | SenderKeyPair[] | {
|
308
|
-
identifier: string;
|
309
|
-
} | {
|
310
|
-
username: string;
|
311
|
-
} | {
|
312
|
-
handle: string;
|
313
|
-
}, recipients: Recipient | Recipient[], activity: Activity, options?: SendActivityOptions): Promise<void>;
|
314
|
-
/**
|
315
|
-
* Sends an activity to the outboxes of the sender's followers.
|
316
|
-
* @param sender The sender's identifier or the sender's username.
|
317
|
-
* @param recipients In this case, it must be `"followers"`.
|
318
|
-
* @param activity The activity to send.
|
319
|
-
* @param options Options for sending the activity.
|
320
|
-
* @throws {Error} If no followers collection is registered.
|
321
|
-
* @since 0.14.0
|
322
|
-
*/
|
323
|
-
sendActivity(sender: {
|
324
|
-
identifier: string;
|
325
|
-
} | {
|
326
|
-
username: string;
|
327
|
-
} | {
|
328
|
-
handle: string;
|
329
|
-
}, recipients: "followers", activity: Activity, options?: SendActivityOptionsForCollection): Promise<void>;
|
330
|
-
/**
|
331
|
-
* Manually routes an activity to the appropriate inbox listener.
|
332
|
-
*
|
333
|
-
* It is useful for routing an activity that is not received from the network,
|
334
|
-
* or for routing an activity that is enclosed in another activity.
|
335
|
-
*
|
336
|
-
* Note that the activity will be verified if it has Object Integrity Proofs
|
337
|
-
* or is equivalent to the actual remote object. If the activity is not
|
338
|
-
* verified, it will be rejected.
|
339
|
-
* @param recipient The recipient of the activity. If it is `null`,
|
340
|
-
* the activity will be routed to the shared inbox.
|
341
|
-
* Otherwise, the activity will be routed to the personal
|
342
|
-
* inbox of the recipient with the given identifier.
|
343
|
-
* @param activity The activity to route. It must have a proof or
|
344
|
-
* a dereferenceable `id` to verify the activity.
|
345
|
-
* @param options Options for routing the activity.
|
346
|
-
* @returns `true` if the activity is successfully verified and routed.
|
347
|
-
* Otherwise, `false`.
|
348
|
-
* @since 1.3.0
|
349
|
-
*/
|
350
|
-
routeActivity(recipient: string | null, activity: Activity, options?: RouteActivityOptions): Promise<boolean>;
|
351
|
-
}
|
352
|
-
/**
|
353
|
-
* A context for a request.
|
354
|
-
*/
|
355
|
-
export interface RequestContext<TContextData> extends Context<TContextData> {
|
356
|
-
/**
|
357
|
-
* The request object.
|
358
|
-
*/
|
359
|
-
readonly request: Request;
|
360
|
-
/**
|
361
|
-
* The URL of the request.
|
362
|
-
*/
|
363
|
-
readonly url: URL;
|
364
|
-
/**
|
365
|
-
* Gets an {@link Actor} object for the given identifier.
|
366
|
-
* @param identifier The actor's identifier.
|
367
|
-
* @returns The actor object, or `null` if the actor is not found.
|
368
|
-
* @throws {Error} If no actor dispatcher is available.
|
369
|
-
* @since 0.7.0
|
370
|
-
*/
|
371
|
-
getActor(identifier: string): Promise<Actor | null>;
|
372
|
-
/**
|
373
|
-
* Gets an object of the given class with the given values.
|
374
|
-
* @param cls The class to instantiate.
|
375
|
-
* @param values The values to pass to the object dispatcher.
|
376
|
-
* @returns The object of the given class with the given values, or `null`
|
377
|
-
* if the object is not found.
|
378
|
-
* @throws {Error} If no object dispatcher is available for the class.
|
379
|
-
* @throws {TypeError} If values are invalid.
|
380
|
-
* @since 0.7.0
|
381
|
-
*/
|
382
|
-
getObject<TObject extends Object>(cls: (new (...args: any[]) => TObject) & {
|
383
|
-
typeId: URL;
|
384
|
-
}, values: Record<string, string>): Promise<TObject | null>;
|
385
|
-
/**
|
386
|
-
* Gets the public key of the sender, if any exists and it is verified.
|
387
|
-
* Otherwise, `null` is returned.
|
388
|
-
*
|
389
|
-
* This can be used for implementing [authorized fetch] (also known as
|
390
|
-
* secure mode) in ActivityPub.
|
391
|
-
*
|
392
|
-
* [authorized fetch]: https://swicg.github.io/activitypub-http-signature/#authorized-fetch
|
393
|
-
*
|
394
|
-
* @returns The public key of the sender, or `null` if the sender is not verified.
|
395
|
-
* @since 0.7.0
|
396
|
-
*/
|
397
|
-
getSignedKey(): Promise<CryptographicKey | null>;
|
398
|
-
/**
|
399
|
-
* Gets the public key of the sender, if any exists and it is verified.
|
400
|
-
* Otherwise, `null` is returned.
|
401
|
-
*
|
402
|
-
* This can be used for implementing [authorized fetch] (also known as
|
403
|
-
* secure mode) in ActivityPub.
|
404
|
-
*
|
405
|
-
* [authorized fetch]: https://swicg.github.io/activitypub-http-signature/#authorized-fetch
|
406
|
-
*
|
407
|
-
* @param options Options for getting the signed key. You usually may want to
|
408
|
-
* specify the custom `documentLoader` so that making
|
409
|
-
* an HTTP request to the sender's server is signed with
|
410
|
-
* your [instance actor].
|
411
|
-
* @returns The public key of the sender, or `null` if the sender is not verified.
|
412
|
-
* @since 1.5.0
|
413
|
-
*
|
414
|
-
* [instance actor]: https://swicg.github.io/activitypub-http-signature/#instance-actor
|
415
|
-
*/
|
416
|
-
getSignedKey(options: GetSignedKeyOptions): Promise<CryptographicKey | null>;
|
417
|
-
/**
|
418
|
-
* Gets the owner of the signed key, if any exists and it is verified.
|
419
|
-
* Otherwise, `null` is returned.
|
420
|
-
*
|
421
|
-
* This can be used for implementing [authorized fetch] (also known as
|
422
|
-
* secure mode) in ActivityPub.
|
423
|
-
*
|
424
|
-
* [authorized fetch]: https://swicg.github.io/activitypub-http-signature/#authorized-fetch
|
425
|
-
*
|
426
|
-
* @returns The owner of the signed key, or `null` if the key is not verified
|
427
|
-
* or the owner is not found.
|
428
|
-
* @since 0.7.0
|
429
|
-
*/
|
430
|
-
getSignedKeyOwner(): Promise<Actor | null>;
|
431
|
-
/**
|
432
|
-
* Gets the owner of the signed key, if any exists and it is verified.
|
433
|
-
* Otherwise, `null` is returned.
|
434
|
-
*
|
435
|
-
* This can be used for implementing [authorized fetch] (also known as
|
436
|
-
* secure mode) in ActivityPub.
|
437
|
-
*
|
438
|
-
* [authorized fetch]: https://swicg.github.io/activitypub-http-signature/#authorized-fetch
|
439
|
-
*
|
440
|
-
* @param options Options for getting the key owner. You usually may want to
|
441
|
-
* specify the custom `documentLoader` so that making
|
442
|
-
* an HTTP request to the key owner's server is signed with
|
443
|
-
* your [instance actor].
|
444
|
-
* @returns The owner of the signed key, or `null` if the key is not verified
|
445
|
-
* or the owner is not found.
|
446
|
-
* @since 1.5.0
|
447
|
-
*
|
448
|
-
* [instance actor]: https://swicg.github.io/activitypub-http-signature/#instance-actor
|
449
|
-
*/
|
450
|
-
getSignedKeyOwner(options: GetKeyOwnerOptions): Promise<Actor | null>;
|
451
|
-
}
|
452
|
-
/**
|
453
|
-
* A context for inbox listeners.
|
454
|
-
* @since 1.0.0
|
455
|
-
*/
|
456
|
-
export interface InboxContext<TContextData> extends Context<TContextData> {
|
457
|
-
/**
|
458
|
-
* The identifier of the recipient of the inbox. If the inbox is a shared
|
459
|
-
* inbox, it is `null`.
|
460
|
-
* @since 1.2.0
|
461
|
-
*/
|
462
|
-
recipient: string | null;
|
463
|
-
/**
|
464
|
-
* Forwards a received activity to the recipients' inboxes. The forwarded
|
465
|
-
* activity will be signed in HTTP Signatures by the forwarder, but its
|
466
|
-
* payload will not be modified, i.e., Linked Data Signatures and Object
|
467
|
-
* Integrity Proofs will not be added. Therefore, if the activity is not
|
468
|
-
* signed (i.e., it has neither Linked Data Signatures nor Object Integrity
|
469
|
-
* Proofs), the recipient probably will not trust the activity.
|
470
|
-
* @param forwarder The forwarder's identifier or the forwarder's username
|
471
|
-
* or the forwarder's key pair(s).
|
472
|
-
* @param recipients The recipients of the activity.
|
473
|
-
* @param options Options for forwarding the activity.
|
474
|
-
* @since 1.0.0
|
475
|
-
*/
|
476
|
-
forwardActivity(forwarder: SenderKeyPair | SenderKeyPair[] | {
|
477
|
-
identifier: string;
|
478
|
-
} | {
|
479
|
-
username: string;
|
480
|
-
} | {
|
481
|
-
handle: string;
|
482
|
-
}, recipients: Recipient | Recipient[], options?: ForwardActivityOptions): Promise<void>;
|
483
|
-
/**
|
484
|
-
* Forwards a received activity to the recipients' inboxes. The forwarded
|
485
|
-
* activity will be signed in HTTP Signatures by the forwarder, but its
|
486
|
-
* payload will not be modified, i.e., Linked Data Signatures and Object
|
487
|
-
* Integrity Proofs will not be added. Therefore, if the activity is not
|
488
|
-
* signed (i.e., it has neither Linked Data Signatures nor Object Integrity
|
489
|
-
* Proofs), the recipient probably will not trust the activity.
|
490
|
-
* @param forwarder The forwarder's identifier or the forwarder's username.
|
491
|
-
* @param recipients In this case, it must be `"followers"`.
|
492
|
-
* @param options Options for forwarding the activity.
|
493
|
-
* @since 1.0.0
|
494
|
-
*/
|
495
|
-
forwardActivity(forwarder: {
|
496
|
-
identifier: string;
|
497
|
-
} | {
|
498
|
-
username: string;
|
499
|
-
} | {
|
500
|
-
handle: string;
|
501
|
-
}, recipients: "followers", options?: ForwardActivityOptions): Promise<void>;
|
502
|
-
}
|
503
|
-
/**
|
504
|
-
* A result of parsing an URI.
|
505
|
-
*/
|
506
|
-
export type ParseUriResult =
|
507
|
-
/**
|
508
|
-
* The case of an actor URI.
|
509
|
-
*/
|
510
|
-
{
|
511
|
-
readonly type: "actor";
|
512
|
-
readonly identifier: string;
|
513
|
-
readonly handle: string;
|
514
|
-
}
|
515
|
-
/**
|
516
|
-
* The case of an object URI.
|
517
|
-
*/
|
518
|
-
| {
|
519
|
-
readonly type: "object";
|
520
|
-
readonly class: (new (...args: any[]) => Object) & {
|
521
|
-
typeId: URL;
|
522
|
-
};
|
523
|
-
readonly typeId: URL;
|
524
|
-
readonly values: Record<string, string>;
|
525
|
-
}
|
526
|
-
/**
|
527
|
-
* The case of an shared inbox URI.
|
528
|
-
*/
|
529
|
-
| {
|
530
|
-
readonly type: "inbox";
|
531
|
-
readonly identifier: undefined;
|
532
|
-
readonly handle: undefined;
|
533
|
-
}
|
534
|
-
/**
|
535
|
-
* The case of an personal inbox URI.
|
536
|
-
*/
|
537
|
-
| {
|
538
|
-
readonly type: "inbox";
|
539
|
-
readonly identifier: string;
|
540
|
-
readonly handle: string;
|
541
|
-
}
|
542
|
-
/**
|
543
|
-
* The case of an outbox collection URI.
|
544
|
-
*/
|
545
|
-
| {
|
546
|
-
readonly type: "outbox";
|
547
|
-
readonly identifier: string;
|
548
|
-
readonly handle: string;
|
549
|
-
}
|
550
|
-
/**
|
551
|
-
* The case of a following collection URI.
|
552
|
-
*/
|
553
|
-
| {
|
554
|
-
readonly type: "following";
|
555
|
-
readonly identifier: string;
|
556
|
-
readonly handle: string;
|
557
|
-
}
|
558
|
-
/**
|
559
|
-
* The case of a followers collection URI.
|
560
|
-
*/
|
561
|
-
| {
|
562
|
-
readonly type: "followers";
|
563
|
-
readonly identifier: string;
|
564
|
-
readonly handle: string;
|
565
|
-
}
|
566
|
-
/**
|
567
|
-
* The case of a liked collection URI.
|
568
|
-
* @since 0.11.0
|
569
|
-
*/
|
570
|
-
| {
|
571
|
-
readonly type: "liked";
|
572
|
-
readonly identifier: string;
|
573
|
-
readonly handle: string;
|
574
|
-
}
|
575
|
-
/**
|
576
|
-
* The case of a featured collection URI.
|
577
|
-
* @since 0.11.0
|
578
|
-
*/
|
579
|
-
| {
|
580
|
-
readonly type: "featured";
|
581
|
-
readonly identifier: string;
|
582
|
-
readonly handle: string;
|
583
|
-
}
|
584
|
-
/**
|
585
|
-
* The case of a featured tags collection URI.
|
586
|
-
* @since 0.11.0
|
587
|
-
*/
|
588
|
-
| {
|
589
|
-
readonly type: "featuredTags";
|
590
|
-
readonly identifier: string;
|
591
|
-
readonly handle: string;
|
592
|
-
};
|
593
|
-
/**
|
594
|
-
* Options for {@link Context.sendActivity} method.
|
595
|
-
*/
|
596
|
-
export interface SendActivityOptions {
|
597
|
-
/**
|
598
|
-
* Whether to prefer the shared inbox for the recipients.
|
599
|
-
*/
|
600
|
-
preferSharedInbox?: boolean;
|
601
|
-
/**
|
602
|
-
* Whether to send the activity immediately, without enqueuing it.
|
603
|
-
* If `true`, the activity will be sent immediately and the retrial
|
604
|
-
* policy will not be applied.
|
605
|
-
*
|
606
|
-
* @since 0.3.0
|
607
|
-
*/
|
608
|
-
immediate?: boolean;
|
609
|
-
/**
|
610
|
-
* Determines how activities are queued when sent to multiple recipients.
|
611
|
-
*
|
612
|
-
* - "auto" (default): Automatically chooses optimal strategy based on
|
613
|
-
* recipient count.
|
614
|
-
* - "skip": Always enqueues individual messages per recipient,
|
615
|
-
* bypassing the fanout queue. Use when payload needs to vary per recipient.
|
616
|
-
* - "force": Always uses fanout queue regardless of recipient count.
|
617
|
-
* Useful for testing or special cases.
|
618
|
-
*
|
619
|
-
* This option is ignored when `immediate: true` is specified, as immediate
|
620
|
-
* delivery bypasses all queuing mechanisms.
|
621
|
-
*
|
622
|
-
* @default `"auto"`
|
623
|
-
* @since 1.5.0
|
624
|
-
*/
|
625
|
-
fanout?: "auto" | "skip" | "force";
|
626
|
-
/**
|
627
|
-
* The base URIs to exclude from the recipients' inboxes. It is useful
|
628
|
-
* for excluding the recipients having the same shared inbox with the sender.
|
629
|
-
*
|
630
|
-
* Note that the only `origin` parts of the `URL`s are compared.
|
631
|
-
*
|
632
|
-
* @since 0.9.0
|
633
|
-
*/
|
634
|
-
excludeBaseUris?: URL[];
|
635
|
-
}
|
636
|
-
/**
|
637
|
-
* Options for {@link Context.sendActivity} method when sending to a collection.
|
638
|
-
* @since 1.5.0
|
639
|
-
*/
|
640
|
-
export interface SendActivityOptionsForCollection extends SendActivityOptions {
|
641
|
-
/**
|
642
|
-
* Whether to synchronize the collection using `Collection-Synchronization`
|
643
|
-
* header ([FEP-8fcf]).
|
644
|
-
*
|
645
|
-
* [FEP-8fcf]: https://w3id.org/fep/8fcf
|
646
|
-
*/
|
647
|
-
syncCollection?: boolean;
|
648
|
-
}
|
649
|
-
/**
|
650
|
-
* Options for {@link InboxContext.forwardActivity} method.
|
651
|
-
* @since 1.0.0
|
652
|
-
*/
|
653
|
-
export type ForwardActivityOptions = Omit<SendActivityOptions, "fanout"> & {
|
654
|
-
/**
|
655
|
-
* Whether to skip forwarding the activity if it is not signed, i.e., it has
|
656
|
-
* neither Linked Data Signatures nor Object Integrity Proofs.
|
657
|
-
*
|
658
|
-
* If the activity is not signed, the recipient probably will not trust the
|
659
|
-
* activity. Therefore, it is recommended to skip forwarding the activity
|
660
|
-
* if it is not signed.
|
661
|
-
*/
|
662
|
-
skipIfUnsigned: boolean;
|
663
|
-
};
|
664
|
-
/**
|
665
|
-
* Options for {@link Context.routeActivity} method.
|
666
|
-
* @since 1.3.0
|
667
|
-
*/
|
668
|
-
export interface RouteActivityOptions {
|
669
|
-
/**
|
670
|
-
* Whether to skip enqueuing the activity and invoke the listener immediately.
|
671
|
-
* If no inbox queue is available, this option is ignored and the activity
|
672
|
-
* will be always invoked immediately.
|
673
|
-
* @default false
|
674
|
-
*/
|
675
|
-
immediate?: boolean;
|
676
|
-
/**
|
677
|
-
* The document loader for loading remote JSON-LD documents.
|
678
|
-
*/
|
679
|
-
documentLoader?: DocumentLoader;
|
680
|
-
/**
|
681
|
-
* The context loader for loading remote JSON-LD contexts.
|
682
|
-
*/
|
683
|
-
contextLoader?: DocumentLoader;
|
684
|
-
/**
|
685
|
-
* The OpenTelemetry tracer provider. If omitted, the global tracer provider
|
686
|
-
* is used.
|
687
|
-
*/
|
688
|
-
tracerProvider?: TracerProvider;
|
689
|
-
}
|
690
|
-
/**
|
691
|
-
* Options for {@link Context.getSignedKey} method.
|
692
|
-
* @since 1.5.0
|
693
|
-
*/
|
694
|
-
export interface GetSignedKeyOptions {
|
695
|
-
/**
|
696
|
-
* The document loader for loading remote JSON-LD documents.
|
697
|
-
*/
|
698
|
-
documentLoader?: DocumentLoader;
|
699
|
-
/**
|
700
|
-
* The context loader for loading remote JSON-LD contexts.
|
701
|
-
*/
|
702
|
-
contextLoader?: DocumentLoader;
|
703
|
-
/**
|
704
|
-
* The OpenTelemetry tracer provider. If omitted, the global tracer provider
|
705
|
-
* is used.
|
706
|
-
*/
|
707
|
-
tracerProvider?: TracerProvider;
|
708
|
-
}
|
709
|
-
/**
|
710
|
-
* A pair of a public key and a private key in various formats.
|
711
|
-
* @since 0.10.0
|
712
|
-
*/
|
713
|
-
export interface ActorKeyPair extends dntShim.CryptoKeyPair {
|
714
|
-
/**
|
715
|
-
* The URI of the public key, which is used for verifying HTTP Signatures.
|
716
|
-
*/
|
717
|
-
keyId: URL;
|
718
|
-
/**
|
719
|
-
* A {@link CryptographicKey} instance of the public key.
|
720
|
-
*/
|
721
|
-
cryptographicKey: CryptographicKey;
|
722
|
-
/**
|
723
|
-
* A {@link Multikey} instance of the public key.
|
724
|
-
*/
|
725
|
-
multikey: Multikey;
|
726
|
-
}
|
727
|
-
//# sourceMappingURL=context.d.ts.map
|