@fedify/fedify 1.6.0-dev.813 → 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
@@ -0,0 +1,689 @@
|
|
1
|
+
import { Temporal } from "@js-temporal/polyfill";
|
2
|
+
import { URLPattern } from "urlpattern-polyfill";
|
3
|
+
import { KvStore } from "./kv.js";
|
4
|
+
import { AuthenticatedDocumentLoaderFactory, DocumentLoader, DocumentLoaderFactory, GetUserAgentOptions } from "../runtime/docloader.js";
|
5
|
+
import { Activity$1 as Activity, Hashtag$1 as Hashtag, Object$1 } from "../vocab/vocab.js";
|
6
|
+
import { Actor, Recipient } from "../vocab/actor.js";
|
7
|
+
import { Context, RequestContext } from "./context.js";
|
8
|
+
import { ActivityTransformer } from "../compat/types.js";
|
9
|
+
import { ActorAliasMapper, ActorDispatcher, ActorHandleMapper, ActorKeyPairsDispatcher, AuthorizePredicate, CollectionCounter, CollectionCursor, CollectionDispatcher, InboxErrorHandler, InboxListener, NodeInfoDispatcher, ObjectAuthorizePredicate, ObjectDispatcher, OutboxErrorHandler, SharedInboxKeyDispatcher } from "./callback.js";
|
10
|
+
import { MessageQueue } from "./mq.js";
|
11
|
+
import { RetryPolicy } from "./retry.js";
|
12
|
+
import { FederationKvPrefixes, FederationOrigin, FederationQueueOptions } from "./middleware.js";
|
13
|
+
import { TracerProvider } from "@opentelemetry/api";
|
14
|
+
|
15
|
+
//#region federation/federation.d.ts
|
16
|
+
/**
|
17
|
+
* Options for {@link Federation.startQueue} method.
|
18
|
+
* @since 1.0.0
|
19
|
+
*/
|
20
|
+
/**
|
21
|
+
* Options for {@link Federation.startQueue} method.
|
22
|
+
* @since 1.0.0
|
23
|
+
*/
|
24
|
+
interface FederationStartQueueOptions {
|
25
|
+
/**
|
26
|
+
* The signal to abort the task queue.
|
27
|
+
*/
|
28
|
+
signal?: AbortSignal;
|
29
|
+
/**
|
30
|
+
* Starts the task worker only for the specified queue. If unspecified,
|
31
|
+
* which is the default, the task worker starts for all three queues:
|
32
|
+
* inbox, outbox, and fanout.
|
33
|
+
* @since 1.3.0
|
34
|
+
*/
|
35
|
+
queue?: "inbox" | "outbox" | "fanout";
|
36
|
+
}
|
37
|
+
/**
|
38
|
+
* A common interface between {@link Federation} and {@link FederationBuilder}.
|
39
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
40
|
+
* @since 1.6.0
|
41
|
+
*/
|
42
|
+
interface Federatable<TContextData> {
|
43
|
+
/**
|
44
|
+
* Registers a NodeInfo dispatcher.
|
45
|
+
* @param path The URI path pattern for the NodeInfo dispatcher. The syntax
|
46
|
+
* is based on URI Template
|
47
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
48
|
+
* must have no variables.
|
49
|
+
* @param dispatcher A NodeInfo dispatcher callback to register.
|
50
|
+
* @throws {RouterError} Thrown if the path pattern is invalid.
|
51
|
+
*/
|
52
|
+
setNodeInfoDispatcher(path: string, dispatcher: NodeInfoDispatcher<TContextData>): void;
|
53
|
+
/**
|
54
|
+
* Registers an actor dispatcher.
|
55
|
+
*
|
56
|
+
* @example
|
57
|
+
* ``` typescript
|
58
|
+
* federation.setActorDispatcher(
|
59
|
+
* "/users/{identifier}",
|
60
|
+
* async (ctx, identifier) => {
|
61
|
+
* return new Person({
|
62
|
+
* id: ctx.getActorUri(identifier),
|
63
|
+
* // ...
|
64
|
+
* });
|
65
|
+
* }
|
66
|
+
* );
|
67
|
+
* ```
|
68
|
+
*
|
69
|
+
* @param path The URI path pattern for the actor dispatcher. The syntax is
|
70
|
+
* based on URI Template
|
71
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
72
|
+
* must have one variable: `{identifier}`.
|
73
|
+
* @param dispatcher An actor dispatcher callback to register.
|
74
|
+
* @returns An object with methods to set other actor dispatcher callbacks.
|
75
|
+
* @throws {RouterError} Thrown if the path pattern is invalid.
|
76
|
+
*/
|
77
|
+
setActorDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: ActorDispatcher<TContextData>): ActorCallbackSetters<TContextData>;
|
78
|
+
/**
|
79
|
+
* Registers an object dispatcher.
|
80
|
+
*
|
81
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
82
|
+
* @typeParam TObject The type of object to dispatch.
|
83
|
+
* @typeParam TParam The parameter names of the requested URL.
|
84
|
+
* @param cls The Activity Vocabulary class of the object to dispatch.
|
85
|
+
* @param path The URI path pattern for the object dispatcher. The syntax is
|
86
|
+
* based on URI Template
|
87
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
88
|
+
* must have one or more variables.
|
89
|
+
* @param dispatcher An object dispatcher callback to register.
|
90
|
+
*/
|
91
|
+
setObjectDispatcher<TObject extends Object$1, TParam extends string>(cls: (new (...args: any[]) => TObject) & {
|
92
|
+
typeId: URL;
|
93
|
+
}, path: `${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}`, dispatcher: ObjectDispatcher<TContextData, TObject, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
94
|
+
/**
|
95
|
+
* Registers an object dispatcher.
|
96
|
+
*
|
97
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
98
|
+
* @typeParam TObject The type of object to dispatch.
|
99
|
+
* @typeParam TParam The parameter names of the requested URL.
|
100
|
+
* @param cls The Activity Vocabulary class of the object to dispatch.
|
101
|
+
* @param path The URI path pattern for the object dispatcher. The syntax is
|
102
|
+
* based on URI Template
|
103
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
104
|
+
* must have one or more variables.
|
105
|
+
* @param dispatcher An object dispatcher callback to register.
|
106
|
+
*/
|
107
|
+
setObjectDispatcher<TObject extends Object$1, TParam extends string>(cls: (new (...args: any[]) => TObject) & {
|
108
|
+
typeId: URL;
|
109
|
+
}, path: `${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}`, dispatcher: ObjectDispatcher<TContextData, TObject, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
110
|
+
/**
|
111
|
+
* Registers an object dispatcher.
|
112
|
+
*
|
113
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
114
|
+
* @typeParam TObject The type of object to dispatch.
|
115
|
+
* @typeParam TParam The parameter names of the requested URL.
|
116
|
+
* @param cls The Activity Vocabulary class of the object to dispatch.
|
117
|
+
* @param path The URI path pattern for the object dispatcher. The syntax is
|
118
|
+
* based on URI Template
|
119
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
120
|
+
* must have one or more variables.
|
121
|
+
* @param dispatcher An object dispatcher callback to register.
|
122
|
+
*/
|
123
|
+
setObjectDispatcher<TObject extends Object$1, TParam extends string>(cls: (new (...args: any[]) => TObject) & {
|
124
|
+
typeId: URL;
|
125
|
+
}, path: `${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}`, dispatcher: ObjectDispatcher<TContextData, TObject, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
126
|
+
/**
|
127
|
+
* Registers an object dispatcher.
|
128
|
+
*
|
129
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
130
|
+
* @typeParam TObject The type of object to dispatch.
|
131
|
+
* @typeParam TParam The parameter names of the requested URL.
|
132
|
+
* @param cls The Activity Vocabulary class of the object to dispatch.
|
133
|
+
* @param path The URI path pattern for the object dispatcher. The syntax is
|
134
|
+
* based on URI Template
|
135
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
136
|
+
* must have one or more variables.
|
137
|
+
* @param dispatcher An object dispatcher callback to register.
|
138
|
+
*/
|
139
|
+
setObjectDispatcher<TObject extends Object$1, TParam extends string>(cls: (new (...args: any[]) => TObject) & {
|
140
|
+
typeId: URL;
|
141
|
+
}, path: `${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}`, dispatcher: ObjectDispatcher<TContextData, TObject, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
142
|
+
/**
|
143
|
+
* Registers an object dispatcher.
|
144
|
+
*
|
145
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
146
|
+
* @typeParam TObject The type of object to dispatch.
|
147
|
+
* @typeParam TParam The parameter names of the requested URL.
|
148
|
+
* @param cls The Activity Vocabulary class of the object to dispatch.
|
149
|
+
* @param path The URI path pattern for the object dispatcher. The syntax is
|
150
|
+
* based on URI Template
|
151
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
152
|
+
* must have one or more variables.
|
153
|
+
* @param dispatcher An object dispatcher callback to register.
|
154
|
+
*/
|
155
|
+
setObjectDispatcher<TObject extends Object$1, TParam extends string>(cls: (new (...args: any[]) => TObject) & {
|
156
|
+
typeId: URL;
|
157
|
+
}, path: `${string}{${TParam}}${string}{${TParam}}${string}`, dispatcher: ObjectDispatcher<TContextData, TObject, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
158
|
+
/**
|
159
|
+
* Registers an object dispatcher.
|
160
|
+
*
|
161
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
162
|
+
* @typeParam TObject The type of object to dispatch.
|
163
|
+
* @typeParam TParam The parameter names of the requested URL.
|
164
|
+
* @param cls The Activity Vocabulary class of the object to dispatch.
|
165
|
+
* @param path The URI path pattern for the object dispatcher. The syntax is
|
166
|
+
* based on URI Template
|
167
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
168
|
+
* must have one or more variables.
|
169
|
+
* @param dispatcher An object dispatcher callback to register.
|
170
|
+
*/
|
171
|
+
setObjectDispatcher<TObject extends Object$1, TParam extends string>(cls: (new (...args: any[]) => TObject) & {
|
172
|
+
typeId: URL;
|
173
|
+
}, path: `${string}{${TParam}}${string}`, dispatcher: ObjectDispatcher<TContextData, TObject, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
174
|
+
/**
|
175
|
+
* Registers an inbox dispatcher.
|
176
|
+
*
|
177
|
+
* @param path The URI path pattern for the inbox dispatcher. The syntax is
|
178
|
+
* based on URI Template
|
179
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
180
|
+
* must have one variable: `{identifier}`, and must match
|
181
|
+
* the inbox listener path.
|
182
|
+
* @param dispatcher An inbox dispatcher callback to register.
|
183
|
+
* @throws {@link RouterError} Thrown if the path pattern is invalid.
|
184
|
+
*/
|
185
|
+
setInboxDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Activity, RequestContext<TContextData>, TContextData, void>): CollectionCallbackSetters<RequestContext<TContextData>, TContextData, void>;
|
186
|
+
/**
|
187
|
+
* Registers an outbox dispatcher.
|
188
|
+
*
|
189
|
+
* @example
|
190
|
+
* ``` typescript
|
191
|
+
* federation.setOutboxDispatcher(
|
192
|
+
* "/users/{identifier}/outbox",
|
193
|
+
* async (ctx, identifier, options) => {
|
194
|
+
* let items: Activity[];
|
195
|
+
* let nextCursor: string;
|
196
|
+
* // ...
|
197
|
+
* return { items, nextCursor };
|
198
|
+
* }
|
199
|
+
* );
|
200
|
+
* ```
|
201
|
+
*
|
202
|
+
* @param path The URI path pattern for the outbox dispatcher. The syntax is
|
203
|
+
* based on URI Template
|
204
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
205
|
+
* must have one variable: `{identifier}`.
|
206
|
+
* @param dispatcher An outbox dispatcher callback to register.
|
207
|
+
* @throws {@link RouterError} Thrown if the path pattern is invalid.
|
208
|
+
*/
|
209
|
+
setOutboxDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Activity, RequestContext<TContextData>, TContextData, void>): CollectionCallbackSetters<RequestContext<TContextData>, TContextData, void>;
|
210
|
+
/**
|
211
|
+
* Registers a following collection dispatcher.
|
212
|
+
* @param path The URI path pattern for the following collection. The syntax
|
213
|
+
* is based on URI Template
|
214
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
215
|
+
* must have one variable: `{identifier}`.
|
216
|
+
* @param dispatcher A following collection callback to register.
|
217
|
+
* @returns An object with methods to set other following collection
|
218
|
+
* callbacks.
|
219
|
+
* @throws {RouterError} Thrown if the path pattern is invalid.
|
220
|
+
*/
|
221
|
+
setFollowingDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Actor | URL, RequestContext<TContextData>, TContextData, void>): CollectionCallbackSetters<RequestContext<TContextData>, TContextData, void>;
|
222
|
+
/**
|
223
|
+
* Registers a followers collection dispatcher.
|
224
|
+
* @param path The URI path pattern for the followers collection. The syntax
|
225
|
+
* is based on URI Template
|
226
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
227
|
+
* must have one variable: `{identifier}`.
|
228
|
+
* @param dispatcher A followers collection callback to register.
|
229
|
+
* @returns An object with methods to set other followers collection
|
230
|
+
* callbacks.
|
231
|
+
* @throws {@link RouterError} Thrown if the path pattern is invalid.
|
232
|
+
*/
|
233
|
+
setFollowersDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Recipient, Context<TContextData>, TContextData, URL>): CollectionCallbackSetters<Context<TContextData>, TContextData, URL>;
|
234
|
+
/**
|
235
|
+
* Registers a liked collection dispatcher.
|
236
|
+
* @param path The URI path pattern for the liked collection. The syntax
|
237
|
+
* is based on URI Template
|
238
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
239
|
+
* must have one variable: `{identifier}`.
|
240
|
+
* @param dispatcher A liked collection callback to register.
|
241
|
+
* @returns An object with methods to set other liked collection
|
242
|
+
* callbacks.
|
243
|
+
* @throws {@link RouterError} Thrown if the path pattern is invalid.
|
244
|
+
*/
|
245
|
+
setLikedDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Object$1 | URL, RequestContext<TContextData>, TContextData, void>): CollectionCallbackSetters<RequestContext<TContextData>, TContextData, void>;
|
246
|
+
/**
|
247
|
+
* Registers a featured collection dispatcher.
|
248
|
+
* @param path The URI path pattern for the featured collection. The syntax
|
249
|
+
* is based on URI Template
|
250
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
251
|
+
* must have one variable: `{identifier}`.
|
252
|
+
* @param dispatcher A featured collection callback to register.
|
253
|
+
* @returns An object with methods to set other featured collection
|
254
|
+
* callbacks.
|
255
|
+
* @throws {@link RouterError} Thrown if the path pattern is invalid.
|
256
|
+
*/
|
257
|
+
setFeaturedDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Object$1, RequestContext<TContextData>, TContextData, void>): CollectionCallbackSetters<RequestContext<TContextData>, TContextData, void>;
|
258
|
+
/**
|
259
|
+
* Registers a featured tags collection dispatcher.
|
260
|
+
* @param path The URI path pattern for the featured tags collection.
|
261
|
+
* The syntax is based on URI Template
|
262
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)). The path
|
263
|
+
* must have one variable: `{identifier}`.
|
264
|
+
* @param dispatcher A featured tags collection callback to register.
|
265
|
+
* @returns An object with methods to set other featured tags collection
|
266
|
+
* callbacks.
|
267
|
+
* @throws {@link RouterError} Thrown if the path pattern is invalid.
|
268
|
+
*/
|
269
|
+
setFeaturedTagsDispatcher(path: `${string}{identifier}${string}` | `${string}{handle}${string}`, dispatcher: CollectionDispatcher<Hashtag, RequestContext<TContextData>, TContextData, void>): CollectionCallbackSetters<RequestContext<TContextData>, TContextData, void>;
|
270
|
+
/**
|
271
|
+
* Assigns the URL path for the inbox and starts setting inbox listeners.
|
272
|
+
*
|
273
|
+
* @example
|
274
|
+
* ``` typescript
|
275
|
+
* federation
|
276
|
+
* .setInboxListeners("/users/{identifier}/inbox", "/inbox")
|
277
|
+
* .on(Follow, async (ctx, follow) => {
|
278
|
+
* const from = await follow.getActor(ctx);
|
279
|
+
* if (!isActor(from)) return;
|
280
|
+
* // ...
|
281
|
+
* })
|
282
|
+
* .on(Undo, async (ctx, undo) => {
|
283
|
+
* // ...
|
284
|
+
* });
|
285
|
+
* ```
|
286
|
+
*
|
287
|
+
* @param inboxPath The URI path pattern for the inbox. The syntax is based
|
288
|
+
* on URI Template
|
289
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)).
|
290
|
+
* The path must have one variable: `{identifier}`, and must
|
291
|
+
* match the inbox dispatcher path.
|
292
|
+
* @param sharedInboxPath An optional URI path pattern for the shared inbox.
|
293
|
+
* The syntax is based on URI Template
|
294
|
+
* ([RFC 6570](https://tools.ietf.org/html/rfc6570)).
|
295
|
+
* The path must have no variables.
|
296
|
+
* @returns An object to register inbox listeners.
|
297
|
+
* @throws {RouteError} Thrown if the path pattern is invalid.
|
298
|
+
*/
|
299
|
+
setInboxListeners(inboxPath: `${string}{identifier}${string}` | `${string}{handle}${string}`, sharedInboxPath?: string): InboxListenerSetters<TContextData>;
|
300
|
+
}
|
301
|
+
/**
|
302
|
+
* An object that registers federation-related business logic and dispatches
|
303
|
+
* requests to the appropriate handlers.
|
304
|
+
*
|
305
|
+
* It also provides a middleware interface for handling requests before your
|
306
|
+
* web framework's router; see {@link Federation.fetch}.
|
307
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
308
|
+
* @since 0.13.0
|
309
|
+
*/
|
310
|
+
interface Federation<TContextData> extends Federatable<TContextData> {
|
311
|
+
/**
|
312
|
+
* Manually start the task queue.
|
313
|
+
*
|
314
|
+
* This method is useful when you set the `manuallyStartQueue` option to
|
315
|
+
* `true` in the {@link createFederation} function.
|
316
|
+
* @param contextData The context data to pass to the context.
|
317
|
+
* @param options Additional options for starting the queue.
|
318
|
+
*/
|
319
|
+
startQueue(contextData: TContextData, options?: FederationStartQueueOptions): Promise<void>;
|
320
|
+
/**
|
321
|
+
* Create a new context.
|
322
|
+
* @param baseUrl The base URL of the server. The `pathname` remains root,
|
323
|
+
* and the `search` and `hash` are stripped.
|
324
|
+
* @param contextData The context data to pass to the context.
|
325
|
+
* @returns The new context.
|
326
|
+
*/
|
327
|
+
createContext(baseUrl: URL, contextData: TContextData): Context<TContextData>;
|
328
|
+
/**
|
329
|
+
* Create a new context for a request.
|
330
|
+
* @param request The request object.
|
331
|
+
* @param contextData The context data to pass to the context.
|
332
|
+
* @returns The new request context.
|
333
|
+
*/
|
334
|
+
createContext(request: Request, contextData: TContextData): RequestContext<TContextData>;
|
335
|
+
/**
|
336
|
+
* Handles a request related to federation. If a request is not related to
|
337
|
+
* federation, the `onNotFound` or `onNotAcceptable` callback is called.
|
338
|
+
*
|
339
|
+
* Usually, this method is called from a server's request handler or
|
340
|
+
* a web framework's middleware.
|
341
|
+
*
|
342
|
+
* @param request The request object.
|
343
|
+
* @param parameters The parameters for handling the request.
|
344
|
+
* @returns The response to the request.
|
345
|
+
*/
|
346
|
+
fetch(request: Request, options: FederationFetchOptions<TContextData>): Promise<Response>;
|
347
|
+
}
|
348
|
+
/**
|
349
|
+
* A builder for creating a {@link Federation} object. It defers the actual
|
350
|
+
* instantiation of the {@link Federation} object until the {@link build}
|
351
|
+
* method is called so that dispatchers and listeners can be registered
|
352
|
+
* before the {@link Federation} object is instantiated.
|
353
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
354
|
+
* @since 1.6.0
|
355
|
+
*/
|
356
|
+
interface FederationBuilder<TContextData> extends Federatable<TContextData> {
|
357
|
+
/**
|
358
|
+
* Builds the federation object.
|
359
|
+
* @returns The federation object.
|
360
|
+
*/
|
361
|
+
build(options: FederationOptions<TContextData>): Promise<Federation<TContextData>>;
|
362
|
+
}
|
363
|
+
/**
|
364
|
+
* Options for creating a {@link Federation} object.
|
365
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
366
|
+
* @since 1.6.0
|
367
|
+
*/
|
368
|
+
interface FederationOptions<TContextData> {
|
369
|
+
/**
|
370
|
+
* The key-value store used for caching, outbox queues, and inbox idempotence.
|
371
|
+
*/
|
372
|
+
kv: KvStore;
|
373
|
+
/**
|
374
|
+
* Prefixes for namespacing keys in the Deno KV store. By default, all keys
|
375
|
+
* are prefixed with `["_fedify"]`.
|
376
|
+
*/
|
377
|
+
kvPrefixes?: Partial<FederationKvPrefixes>;
|
378
|
+
/**
|
379
|
+
* The message queue for sending and receiving activities. If not provided,
|
380
|
+
* activities will not be queued and will be processed immediately.
|
381
|
+
*
|
382
|
+
* If a `MessageQueue` is provided, both the `inbox` and `outbox` queues
|
383
|
+
* will be set to the same queue.
|
384
|
+
*
|
385
|
+
* If a `FederationQueueOptions` object is provided, you can set the queues
|
386
|
+
* separately (since Fedify 1.3.0).
|
387
|
+
*/
|
388
|
+
queue?: FederationQueueOptions | MessageQueue;
|
389
|
+
/**
|
390
|
+
* Whether to start the task queue manually or automatically.
|
391
|
+
*
|
392
|
+
* If `true`, the task queue will not start automatically and you need to
|
393
|
+
* manually start it by calling the {@link Federation.startQueue} method.
|
394
|
+
*
|
395
|
+
* If `false`, the task queue will start automatically as soon as
|
396
|
+
* the first task is enqueued.
|
397
|
+
*
|
398
|
+
* By default, the queue starts automatically.
|
399
|
+
*
|
400
|
+
* @since 0.12.0
|
401
|
+
*/
|
402
|
+
manuallyStartQueue?: boolean;
|
403
|
+
/**
|
404
|
+
* The canonical base URL of the server. This is used for constructing
|
405
|
+
* absolute URLs and fediverse handles.
|
406
|
+
* @since 1.5.0
|
407
|
+
*/
|
408
|
+
origin?: string | FederationOrigin;
|
409
|
+
/**
|
410
|
+
* A custom JSON-LD document loader factory. By default, this uses
|
411
|
+
* the built-in cache-backed loader that fetches remote documents over
|
412
|
+
* HTTP(S).
|
413
|
+
* @since 1.4.0
|
414
|
+
*/
|
415
|
+
documentLoaderFactory?: DocumentLoaderFactory;
|
416
|
+
/**
|
417
|
+
* A custom JSON-LD context loader factory. By default, this uses the same
|
418
|
+
* loader as the document loader.
|
419
|
+
* @since 1.4.0
|
420
|
+
*/
|
421
|
+
contextLoaderFactory?: DocumentLoaderFactory;
|
422
|
+
/**
|
423
|
+
* A custom JSON-LD document loader. By default, this uses the built-in
|
424
|
+
* cache-backed loader that fetches remote documents over HTTP(S).
|
425
|
+
* @deprecated Use {@link documentLoaderFactory} instead.
|
426
|
+
*/
|
427
|
+
documentLoader?: DocumentLoader;
|
428
|
+
/**
|
429
|
+
* A custom JSON-LD context loader. By default, this uses the same loader
|
430
|
+
* as the document loader.
|
431
|
+
* @deprecated Use {@link contextLoaderFactory} instead.
|
432
|
+
*/
|
433
|
+
contextLoader?: DocumentLoader;
|
434
|
+
/**
|
435
|
+
* A factory function that creates an authenticated document loader for a
|
436
|
+
* given identity. This is used for fetching documents that require
|
437
|
+
* authentication.
|
438
|
+
*/
|
439
|
+
authenticatedDocumentLoaderFactory?: AuthenticatedDocumentLoaderFactory;
|
440
|
+
/**
|
441
|
+
* Whether to allow fetching private network addresses in the document loader.
|
442
|
+
*
|
443
|
+
* If turned on, {@link CreateFederationOptions.documentLoader},
|
444
|
+
* {@link CreateFederationOptions.contextLoader}, and
|
445
|
+
* {@link CreateFederationOptions.authenticatedDocumentLoaderFactory}
|
446
|
+
* cannot be configured.
|
447
|
+
*
|
448
|
+
* Mostly useful for testing purposes. *Do not use in production.*
|
449
|
+
*
|
450
|
+
* Turned off by default.
|
451
|
+
* @since 0.15.0
|
452
|
+
*/
|
453
|
+
allowPrivateAddress?: boolean;
|
454
|
+
/**
|
455
|
+
* Options for making `User-Agent` strings for HTTP requests.
|
456
|
+
* If a string is provided, it is used as the `User-Agent` header.
|
457
|
+
* If an object is provided, it is passed to the {@link getUserAgent}
|
458
|
+
* function.
|
459
|
+
* @since 1.3.0
|
460
|
+
*/
|
461
|
+
userAgent?: GetUserAgentOptions | string;
|
462
|
+
/**
|
463
|
+
* A callback that handles errors during outbox processing. Note that this
|
464
|
+
* callback can be called multiple times for the same activity, because
|
465
|
+
* the delivery is retried according to the backoff schedule until it
|
466
|
+
* succeeds or reaches the maximum retry count.
|
467
|
+
*
|
468
|
+
* If any errors are thrown in this callback, they are ignored.
|
469
|
+
*/
|
470
|
+
onOutboxError?: OutboxErrorHandler;
|
471
|
+
/**
|
472
|
+
* The time window for verifying HTTP Signatures of incoming requests. If the
|
473
|
+
* request is older or newer than this window, it is rejected. Or if it is
|
474
|
+
* `false`, the request's timestamp is not checked at all.
|
475
|
+
*
|
476
|
+
* By default, the window is an hour.
|
477
|
+
*/
|
478
|
+
signatureTimeWindow?: Temporal.Duration | Temporal.DurationLike | false;
|
479
|
+
/**
|
480
|
+
* Whether to skip HTTP Signatures verification for incoming activities.
|
481
|
+
* This is useful for testing purposes, but should not be used in production.
|
482
|
+
*
|
483
|
+
* By default, this is `false` (i.e., signatures are verified).
|
484
|
+
* @since 0.13.0
|
485
|
+
*/
|
486
|
+
skipSignatureVerification?: boolean;
|
487
|
+
/**
|
488
|
+
* The retry policy for sending activities to recipients' inboxes.
|
489
|
+
* By default, this uses an exponential backoff strategy with a maximum of
|
490
|
+
* 10 attempts and a maximum delay of 12 hours.
|
491
|
+
* @since 0.12.0
|
492
|
+
*/
|
493
|
+
outboxRetryPolicy?: RetryPolicy;
|
494
|
+
/**
|
495
|
+
* The retry policy for processing incoming activities. By default, this
|
496
|
+
* uses an exponential backoff strategy with a maximum of 10 attempts and a
|
497
|
+
* maximum delay of 12 hours.
|
498
|
+
* @since 0.12.0
|
499
|
+
*/
|
500
|
+
inboxRetryPolicy?: RetryPolicy;
|
501
|
+
/**
|
502
|
+
* Activity transformers that are applied to outgoing activities. It is
|
503
|
+
* useful for adjusting outgoing activities to satisfy some ActivityPub
|
504
|
+
* implementations.
|
505
|
+
*
|
506
|
+
* By default, {@link defaultActivityTransformers} are applied.
|
507
|
+
* @since 1.4.0
|
508
|
+
*/
|
509
|
+
activityTransformers?: readonly ActivityTransformer<TContextData>[];
|
510
|
+
/**
|
511
|
+
* Whether the router should be insensitive to trailing slashes in the URL
|
512
|
+
* paths. For example, if this option is `true`, `/foo` and `/foo/` are
|
513
|
+
* treated as the same path. Turned off by default.
|
514
|
+
* @since 0.12.0
|
515
|
+
*/
|
516
|
+
trailingSlashInsensitive?: boolean;
|
517
|
+
/**
|
518
|
+
* The OpenTelemetry tracer provider for tracing operations. If not provided,
|
519
|
+
* the default global tracer provider is used.
|
520
|
+
* @since 1.3.0
|
521
|
+
*/
|
522
|
+
tracerProvider?: TracerProvider;
|
523
|
+
}
|
524
|
+
/**
|
525
|
+
* Additional settings for the actor dispatcher.
|
526
|
+
*
|
527
|
+
* ``` typescript
|
528
|
+
* const federation = createFederation<void>({ ... });
|
529
|
+
* federation
|
530
|
+
* .setActorDispatcher("/users/{identifier}", async (ctx, identifier) => {
|
531
|
+
* // ...
|
532
|
+
* })
|
533
|
+
* .setKeyPairsDispatcher(async (ctxData, identifier) => {
|
534
|
+
* // ...
|
535
|
+
* });
|
536
|
+
* ```
|
537
|
+
*/
|
538
|
+
interface ActorCallbackSetters<TContextData> {
|
539
|
+
/**
|
540
|
+
* Sets the key pairs dispatcher for actors.
|
541
|
+
* @param dispatcher A callback that returns the key pairs for an actor.
|
542
|
+
* @returns The setters object so that settings can be chained.
|
543
|
+
* @since 0.10.0
|
544
|
+
*/
|
545
|
+
setKeyPairsDispatcher(dispatcher: ActorKeyPairsDispatcher<TContextData>): ActorCallbackSetters<TContextData>;
|
546
|
+
/**
|
547
|
+
* Sets the callback function that maps a WebFinger username to
|
548
|
+
* the corresponding actor's identifier. If it's omitted, the identifier
|
549
|
+
* is assumed to be the same as the WebFinger username, which makes your
|
550
|
+
* actors have the immutable handles. If you want to let your actors change
|
551
|
+
* their fediverse handles, you should set this dispatcher.
|
552
|
+
* @param mapper A callback that maps a WebFinger username to
|
553
|
+
* the corresponding actor's identifier.
|
554
|
+
* @returns The setters object so that settings can be chained.
|
555
|
+
* @since 0.15.0
|
556
|
+
*/
|
557
|
+
mapHandle(mapper: ActorHandleMapper<TContextData>): ActorCallbackSetters<TContextData>;
|
558
|
+
/**
|
559
|
+
* Sets the callback function that maps a WebFinger query to the corresponding
|
560
|
+
* actor's identifier or username. If it's omitted, the WebFinger handler
|
561
|
+
* only supports the actor URIs and `acct:` URIs. If you want to support
|
562
|
+
* other queries, you should set this dispatcher.
|
563
|
+
* @param mapper A callback that maps a WebFinger query to the corresponding
|
564
|
+
* actor's identifier or username.
|
565
|
+
* @returns The setters object so that settings can be chained.
|
566
|
+
* @since 1.4.0
|
567
|
+
*/
|
568
|
+
mapAlias(mapper: ActorAliasMapper<TContextData>): ActorCallbackSetters<TContextData>;
|
569
|
+
/**
|
570
|
+
* Specifies the conditions under which requests are authorized.
|
571
|
+
* @param predicate A callback that returns whether a request is authorized.
|
572
|
+
* @returns The setters object so that settings can be chained.
|
573
|
+
* @since 0.7.0
|
574
|
+
*/
|
575
|
+
authorize(predicate: AuthorizePredicate<TContextData>): ActorCallbackSetters<TContextData>;
|
576
|
+
}
|
577
|
+
/**
|
578
|
+
* Additional settings for an object dispatcher.
|
579
|
+
*/
|
580
|
+
interface ObjectCallbackSetters<TContextData, TObject extends Object$1, TParam extends string> {
|
581
|
+
/**
|
582
|
+
* Specifies the conditions under which requests are authorized.
|
583
|
+
* @param predicate A callback that returns whether a request is authorized.
|
584
|
+
* @returns The setters object so that settings can be chained.
|
585
|
+
* @since 0.7.0
|
586
|
+
*/
|
587
|
+
authorize(predicate: ObjectAuthorizePredicate<TContextData, TParam>): ObjectCallbackSetters<TContextData, TObject, TParam>;
|
588
|
+
}
|
589
|
+
/**
|
590
|
+
* Additional settings for a collection dispatcher.
|
591
|
+
*
|
592
|
+
* @typeParam TContext The type of the context. {@link Context} or
|
593
|
+
* {@link RequestContext}.
|
594
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
595
|
+
* @typeParam TFilter The type of filter for the collection.
|
596
|
+
*/
|
597
|
+
interface CollectionCallbackSetters<TContext extends Context<TContextData>, TContextData, TFilter> {
|
598
|
+
/**
|
599
|
+
* Sets the counter for the collection.
|
600
|
+
* @param counter A callback that returns the number of items in the collection.
|
601
|
+
* @returns The setters object so that settings can be chained.
|
602
|
+
*/
|
603
|
+
setCounter(counter: CollectionCounter<TContextData, TFilter>): CollectionCallbackSetters<TContext, TContextData, TFilter>;
|
604
|
+
/**
|
605
|
+
* Sets the first cursor for the collection.
|
606
|
+
* @param cursor The cursor for the first item in the collection.
|
607
|
+
* @returns The setters object so that settings can be chained.
|
608
|
+
*/
|
609
|
+
setFirstCursor(cursor: CollectionCursor<TContext, TContextData, TFilter>): CollectionCallbackSetters<TContext, TContextData, TFilter>;
|
610
|
+
/**
|
611
|
+
* Sets the last cursor for the collection.
|
612
|
+
* @param cursor The cursor for the last item in the collection.
|
613
|
+
* @returns The setters object so that settings can be chained.
|
614
|
+
*/
|
615
|
+
setLastCursor(cursor: CollectionCursor<TContext, TContextData, TFilter>): CollectionCallbackSetters<TContext, TContextData, TFilter>;
|
616
|
+
/**
|
617
|
+
* Specifies the conditions under which requests are authorized.
|
618
|
+
* @param predicate A callback that returns whether a request is authorized.
|
619
|
+
* @returns The setters object so that settings can be chained.
|
620
|
+
* @since 0.7.0
|
621
|
+
*/
|
622
|
+
authorize(predicate: AuthorizePredicate<TContextData>): CollectionCallbackSetters<TContext, TContextData, TFilter>;
|
623
|
+
}
|
624
|
+
/**
|
625
|
+
* Registry for inbox listeners for different activity types.
|
626
|
+
*/
|
627
|
+
interface InboxListenerSetters<TContextData> {
|
628
|
+
/**
|
629
|
+
* Registers a listener for a specific incoming activity type.
|
630
|
+
*
|
631
|
+
* @param type A subclass of {@link Activity} to listen to.
|
632
|
+
* @param listener A callback to handle an incoming activity.
|
633
|
+
* @returns The setters object so that settings can be chained.
|
634
|
+
*/
|
635
|
+
on<TActivity extends Activity>(type: new (...args: any[]) => TActivity, listener: InboxListener<TContextData, TActivity>): InboxListenerSetters<TContextData>;
|
636
|
+
/**
|
637
|
+
* Registers an error handler for inbox listeners. Any exceptions thrown
|
638
|
+
* from the listeners are caught and passed to this handler.
|
639
|
+
*
|
640
|
+
* @param handler A callback to handle an error.
|
641
|
+
* @returns The setters object so that settings can be chained.
|
642
|
+
*/
|
643
|
+
onError(handler: InboxErrorHandler<TContextData>): InboxListenerSetters<TContextData>;
|
644
|
+
/**
|
645
|
+
* Configures a callback to dispatch the key pair for the authenticated
|
646
|
+
* document loader of the {@link Context} passed to the shared inbox listener.
|
647
|
+
*
|
648
|
+
* @param dispatcher A callback to dispatch the key pair for the authenticated
|
649
|
+
* document loader.
|
650
|
+
* @returns The setters object so that settings can be chained.
|
651
|
+
* @since 0.11.0
|
652
|
+
*/
|
653
|
+
setSharedKeyDispatcher(dispatcher: SharedInboxKeyDispatcher<TContextData>): InboxListenerSetters<TContextData>;
|
654
|
+
}
|
655
|
+
/**
|
656
|
+
* Parameters of {@link Federation.fetch} method.
|
657
|
+
*
|
658
|
+
* @typeParam TContextData The context data to pass to the {@link Context}.
|
659
|
+
* @since 0.6.0
|
660
|
+
*/
|
661
|
+
interface FederationFetchOptions<TContextData> {
|
662
|
+
/**
|
663
|
+
* The context data to pass to the {@link Context}.
|
664
|
+
*/
|
665
|
+
contextData: TContextData;
|
666
|
+
/**
|
667
|
+
* A callback to handle a request when the route is not found.
|
668
|
+
* If not provided, a 404 response is returned.
|
669
|
+
* @param request The request object.
|
670
|
+
* @returns The response to the request.
|
671
|
+
*/
|
672
|
+
onNotFound?: (request: Request) => Response | Promise<Response>;
|
673
|
+
/**
|
674
|
+
* A callback to handle a request when the request's `Accept` header is not
|
675
|
+
* acceptable. If not provided, a 406 response is returned.
|
676
|
+
* @param request The request object.
|
677
|
+
* @returns The response to the request.
|
678
|
+
*/
|
679
|
+
onNotAcceptable?: (request: Request) => Response | Promise<Response>;
|
680
|
+
/**
|
681
|
+
* A callback to handle a request when the request is unauthorized.
|
682
|
+
* If not provided, a 401 response is returned.
|
683
|
+
* @param request The request object.
|
684
|
+
* @returns The response to the request.
|
685
|
+
* @since 0.7.0
|
686
|
+
*/
|
687
|
+
onUnauthorized?: (request: Request) => Response | Promise<Response>;
|
688
|
+
} //#endregion
|
689
|
+
export { ActorCallbackSetters, CollectionCallbackSetters, Federatable, Federation, FederationBuilder, FederationFetchOptions, FederationOptions, FederationStartQueueOptions, InboxListenerSetters, ObjectCallbackSetters };
|