@openclaw/clickclack 0.0.0 → 2026.6.11-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -2
- package/dist/api.js +2 -0
- package/dist/channel-B8wm8lOk.js +876 -0
- package/dist/channel-plugin-api.js +2 -0
- package/dist/index.js +21 -0
- package/dist/runtime-api.js +3 -0
- package/node_modules/ws/LICENSE +20 -0
- package/node_modules/ws/README.md +548 -0
- package/node_modules/ws/browser.js +8 -0
- package/node_modules/ws/index.js +22 -0
- package/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/ws/lib/receiver.js +760 -0
- package/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/ws/lib/websocket-server.js +562 -0
- package/node_modules/ws/lib/websocket.js +1407 -0
- package/node_modules/ws/package.json +70 -0
- package/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +191 -0
- package/node_modules/zod/index.cjs +33 -0
- package/node_modules/zod/index.d.cts +4 -0
- package/node_modules/zod/index.d.ts +4 -0
- package/node_modules/zod/index.js +4 -0
- package/node_modules/zod/locales/index.cjs +17 -0
- package/node_modules/zod/locales/index.d.cts +1 -0
- package/node_modules/zod/locales/index.d.ts +1 -0
- package/node_modules/zod/locales/index.js +1 -0
- package/node_modules/zod/locales/package.json +7 -0
- package/node_modules/zod/mini/index.cjs +32 -0
- package/node_modules/zod/mini/index.d.cts +3 -0
- package/node_modules/zod/mini/index.d.ts +3 -0
- package/node_modules/zod/mini/index.js +3 -0
- package/node_modules/zod/mini/package.json +7 -0
- package/node_modules/zod/package.json +135 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/locales/index.ts +1 -0
- package/node_modules/zod/src/mini/index.ts +3 -0
- package/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
- package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +261 -0
- package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
- package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/zod/src/v3/types.ts +5138 -0
- package/node_modules/zod/src/v4/classic/checks.ts +32 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +70 -0
- package/node_modules/zod/src/v4/classic/errors.ts +82 -0
- package/node_modules/zod/src/v4/classic/external.ts +52 -0
- package/node_modules/zod/src/v4/classic/from-json-schema.ts +659 -0
- package/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/zod/src/v4/classic/parse.ts +82 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2672 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +216 -0
- package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +326 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
- package/node_modules/zod/src/v4/classic/tests/codec.test.ts +703 -0
- package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
- package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +409 -0
- package/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/detached-methods.test.ts +197 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +694 -0
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +807 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +895 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/global-config.test.ts +39 -0
- package/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
- package/node_modules/zod/src/v4/classic/tests/jitless-allows-eval.test.ts +46 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
- package/node_modules/zod/src/v4/classic/tests/locales_ka.test.ts +29 -0
- package/node_modules/zod/src/v4/classic/tests/locales_ro.test.ts +24 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
- package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
- package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +325 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +717 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +333 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +450 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess-types.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +351 -0
- package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +717 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +631 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +633 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +1224 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +3125 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +378 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +496 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +273 -0
- package/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/zod/src/v4/core/api.ts +1823 -0
- package/node_modules/zod/src/v4/core/checks.ts +1293 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +153 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +455 -0
- package/node_modules/zod/src/v4/core/index.ts +16 -0
- package/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
- package/node_modules/zod/src/v4/core/json-schema-processors.ts +666 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +147 -0
- package/node_modules/zod/src/v4/core/parse.ts +195 -0
- package/node_modules/zod/src/v4/core/regexes.ts +190 -0
- package/node_modules/zod/src/v4/core/registries.ts +105 -0
- package/node_modules/zod/src/v4/core/schemas.ts +4730 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
- package/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
- package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/zod/src/v4/core/tests/locales/el.test.ts +215 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
- package/node_modules/zod/src/v4/core/tests/locales/fr.test.ts +72 -0
- package/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
- package/node_modules/zod/src/v4/core/tests/locales/hr.test.ts +163 -0
- package/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +105 -0
- package/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +125 -0
- package/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +622 -0
- package/node_modules/zod/src/v4/core/util.ts +983 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/zod/src/v4/locales/ar.ts +115 -0
- package/node_modules/zod/src/v4/locales/az.ts +111 -0
- package/node_modules/zod/src/v4/locales/be.ts +176 -0
- package/node_modules/zod/src/v4/locales/bg.ts +128 -0
- package/node_modules/zod/src/v4/locales/ca.ts +116 -0
- package/node_modules/zod/src/v4/locales/cs.ts +118 -0
- package/node_modules/zod/src/v4/locales/da.ts +123 -0
- package/node_modules/zod/src/v4/locales/de.ts +116 -0
- package/node_modules/zod/src/v4/locales/el.ts +121 -0
- package/node_modules/zod/src/v4/locales/en.ts +123 -0
- package/node_modules/zod/src/v4/locales/eo.ts +118 -0
- package/node_modules/zod/src/v4/locales/es.ts +141 -0
- package/node_modules/zod/src/v4/locales/fa.ts +126 -0
- package/node_modules/zod/src/v4/locales/fi.ts +121 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
- package/node_modules/zod/src/v4/locales/fr.ts +132 -0
- package/node_modules/zod/src/v4/locales/he.ts +246 -0
- package/node_modules/zod/src/v4/locales/hr.ts +131 -0
- package/node_modules/zod/src/v4/locales/hu.ts +117 -0
- package/node_modules/zod/src/v4/locales/hy.ts +164 -0
- package/node_modules/zod/src/v4/locales/id.ts +115 -0
- package/node_modules/zod/src/v4/locales/index.ts +52 -0
- package/node_modules/zod/src/v4/locales/is.ts +119 -0
- package/node_modules/zod/src/v4/locales/it.ts +116 -0
- package/node_modules/zod/src/v4/locales/ja.ts +114 -0
- package/node_modules/zod/src/v4/locales/ka.ts +123 -0
- package/node_modules/zod/src/v4/locales/kh.ts +7 -0
- package/node_modules/zod/src/v4/locales/km.ts +119 -0
- package/node_modules/zod/src/v4/locales/ko.ts +121 -0
- package/node_modules/zod/src/v4/locales/lt.ts +239 -0
- package/node_modules/zod/src/v4/locales/mk.ts +118 -0
- package/node_modules/zod/src/v4/locales/ms.ts +115 -0
- package/node_modules/zod/src/v4/locales/nl.ts +121 -0
- package/node_modules/zod/src/v4/locales/no.ts +116 -0
- package/node_modules/zod/src/v4/locales/ota.ts +117 -0
- package/node_modules/zod/src/v4/locales/pl.ts +118 -0
- package/node_modules/zod/src/v4/locales/ps.ts +126 -0
- package/node_modules/zod/src/v4/locales/pt.ts +116 -0
- package/node_modules/zod/src/v4/locales/ro.ts +129 -0
- package/node_modules/zod/src/v4/locales/ru.ts +176 -0
- package/node_modules/zod/src/v4/locales/sl.ts +118 -0
- package/node_modules/zod/src/v4/locales/sv.ts +119 -0
- package/node_modules/zod/src/v4/locales/ta.ts +118 -0
- package/node_modules/zod/src/v4/locales/th.ts +119 -0
- package/node_modules/zod/src/v4/locales/tr.ts +111 -0
- package/node_modules/zod/src/v4/locales/ua.ts +7 -0
- package/node_modules/zod/src/v4/locales/uk.ts +117 -0
- package/node_modules/zod/src/v4/locales/ur.ts +119 -0
- package/node_modules/zod/src/v4/locales/uz.ts +117 -0
- package/node_modules/zod/src/v4/locales/vi.ts +117 -0
- package/node_modules/zod/src/v4/locales/yo.ts +124 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +27 -0
- package/node_modules/zod/src/v4/mini/external.ts +41 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +66 -0
- package/node_modules/zod/src/v4/mini/parse.ts +14 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1947 -0
- package/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/codec.test.ts +548 -0
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +993 -0
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
- package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +325 -0
- package/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +352 -0
- package/node_modules/zod/src/v4-mini/index.ts +3 -0
- package/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/zod/v3/external.js +6 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/zod/v3/index.js +4 -0
- package/node_modules/zod/v3/locales/en.cjs +112 -0
- package/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/zod/v3/package.json +7 -0
- package/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/zod/v3/types.cjs +3777 -0
- package/node_modules/zod/v3/types.d.cts +1034 -0
- package/node_modules/zod/v3/types.d.ts +1034 -0
- package/node_modules/zod/v3/types.js +3695 -0
- package/node_modules/zod/v4/classic/checks.cjs +33 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/zod/v4/classic/compat.cjs +61 -0
- package/node_modules/zod/v4/classic/compat.d.cts +50 -0
- package/node_modules/zod/v4/classic/compat.d.ts +50 -0
- package/node_modules/zod/v4/classic/compat.js +31 -0
- package/node_modules/zod/v4/classic/errors.cjs +74 -0
- package/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/zod/v4/classic/errors.js +48 -0
- package/node_modules/zod/v4/classic/external.cjs +73 -0
- package/node_modules/zod/v4/classic/external.d.cts +16 -0
- package/node_modules/zod/v4/classic/external.d.ts +16 -0
- package/node_modules/zod/v4/classic/external.js +20 -0
- package/node_modules/zod/v4/classic/from-json-schema.cjs +625 -0
- package/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
- package/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
- package/node_modules/zod/v4/classic/from-json-schema.js +599 -0
- package/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/zod/v4/classic/package.json +7 -0
- package/node_modules/zod/v4/classic/parse.cjs +41 -0
- package/node_modules/zod/v4/classic/parse.d.cts +31 -0
- package/node_modules/zod/v4/classic/parse.d.ts +31 -0
- package/node_modules/zod/v4/classic/parse.js +15 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1511 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +767 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +767 -0
- package/node_modules/zod/v4/classic/schemas.js +1395 -0
- package/node_modules/zod/v4/core/api.cjs +1227 -0
- package/node_modules/zod/v4/core/api.d.cts +325 -0
- package/node_modules/zod/v4/core/api.d.ts +325 -0
- package/node_modules/zod/v4/core/api.js +1087 -0
- package/node_modules/zod/v4/core/checks.cjs +601 -0
- package/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/zod/v4/core/checks.js +575 -0
- package/node_modules/zod/v4/core/core.cjs +85 -0
- package/node_modules/zod/v4/core/core.d.cts +70 -0
- package/node_modules/zod/v4/core/core.d.ts +70 -0
- package/node_modules/zod/v4/core/core.js +78 -0
- package/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/zod/v4/core/errors.cjs +216 -0
- package/node_modules/zod/v4/core/errors.d.cts +221 -0
- package/node_modules/zod/v4/core/errors.d.ts +221 -0
- package/node_modules/zod/v4/core/errors.js +185 -0
- package/node_modules/zod/v4/core/index.cjs +47 -0
- package/node_modules/zod/v4/core/index.d.cts +16 -0
- package/node_modules/zod/v4/core/index.d.ts +16 -0
- package/node_modules/zod/v4/core/index.js +16 -0
- package/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
- package/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
- package/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
- package/node_modules/zod/v4/core/json-schema-generator.js +95 -0
- package/node_modules/zod/v4/core/json-schema-processors.cjs +644 -0
- package/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
- package/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
- package/node_modules/zod/v4/core/json-schema-processors.js +601 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/package.json +7 -0
- package/node_modules/zod/v4/core/parse.cjs +131 -0
- package/node_modules/zod/v4/core/parse.d.cts +49 -0
- package/node_modules/zod/v4/core/parse.d.ts +49 -0
- package/node_modules/zod/v4/core/parse.js +93 -0
- package/node_modules/zod/v4/core/regexes.cjs +172 -0
- package/node_modules/zod/v4/core/regexes.d.cts +85 -0
- package/node_modules/zod/v4/core/regexes.d.ts +85 -0
- package/node_modules/zod/v4/core/regexes.js +139 -0
- package/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/zod/v4/core/schemas.cjs +2270 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1184 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1184 -0
- package/node_modules/zod/v4/core/schemas.js +2239 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +457 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
- package/node_modules/zod/v4/core/to-json-schema.js +448 -0
- package/node_modules/zod/v4/core/util.cjs +734 -0
- package/node_modules/zod/v4/core/util.d.cts +200 -0
- package/node_modules/zod/v4/core/util.d.ts +200 -0
- package/node_modules/zod/v4/core/util.js +674 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/zod/v4/index.js +3 -0
- package/node_modules/zod/v4/locales/ar.cjs +133 -0
- package/node_modules/zod/v4/locales/ar.d.cts +5 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +106 -0
- package/node_modules/zod/v4/locales/az.cjs +132 -0
- package/node_modules/zod/v4/locales/az.d.cts +5 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +105 -0
- package/node_modules/zod/v4/locales/be.cjs +183 -0
- package/node_modules/zod/v4/locales/be.d.cts +5 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +156 -0
- package/node_modules/zod/v4/locales/bg.cjs +147 -0
- package/node_modules/zod/v4/locales/bg.d.cts +5 -0
- package/node_modules/zod/v4/locales/bg.d.ts +4 -0
- package/node_modules/zod/v4/locales/bg.js +120 -0
- package/node_modules/zod/v4/locales/ca.cjs +134 -0
- package/node_modules/zod/v4/locales/ca.d.cts +5 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +107 -0
- package/node_modules/zod/v4/locales/cs.cjs +138 -0
- package/node_modules/zod/v4/locales/cs.d.cts +5 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +111 -0
- package/node_modules/zod/v4/locales/da.cjs +142 -0
- package/node_modules/zod/v4/locales/da.d.cts +5 -0
- package/node_modules/zod/v4/locales/da.d.ts +4 -0
- package/node_modules/zod/v4/locales/da.js +115 -0
- package/node_modules/zod/v4/locales/de.cjs +135 -0
- package/node_modules/zod/v4/locales/de.d.cts +5 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +108 -0
- package/node_modules/zod/v4/locales/el.cjs +136 -0
- package/node_modules/zod/v4/locales/el.d.cts +5 -0
- package/node_modules/zod/v4/locales/el.d.ts +4 -0
- package/node_modules/zod/v4/locales/el.js +109 -0
- package/node_modules/zod/v4/locales/en.cjs +140 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +4 -0
- package/node_modules/zod/v4/locales/en.js +113 -0
- package/node_modules/zod/v4/locales/eo.cjs +136 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +4 -0
- package/node_modules/zod/v4/locales/eo.js +109 -0
- package/node_modules/zod/v4/locales/es.cjs +159 -0
- package/node_modules/zod/v4/locales/es.d.cts +5 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +132 -0
- package/node_modules/zod/v4/locales/fa.cjs +141 -0
- package/node_modules/zod/v4/locales/fa.d.cts +5 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +114 -0
- package/node_modules/zod/v4/locales/fi.cjs +139 -0
- package/node_modules/zod/v4/locales/fi.d.cts +5 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +112 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +107 -0
- package/node_modules/zod/v4/locales/fr.cjs +152 -0
- package/node_modules/zod/v4/locales/fr.d.cts +5 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +125 -0
- package/node_modules/zod/v4/locales/he.cjs +241 -0
- package/node_modules/zod/v4/locales/he.d.cts +5 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +214 -0
- package/node_modules/zod/v4/locales/hr.cjs +149 -0
- package/node_modules/zod/v4/locales/hr.d.cts +5 -0
- package/node_modules/zod/v4/locales/hr.d.ts +4 -0
- package/node_modules/zod/v4/locales/hr.js +122 -0
- package/node_modules/zod/v4/locales/hu.cjs +135 -0
- package/node_modules/zod/v4/locales/hu.d.cts +5 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +108 -0
- package/node_modules/zod/v4/locales/hy.cjs +174 -0
- package/node_modules/zod/v4/locales/hy.d.cts +5 -0
- package/node_modules/zod/v4/locales/hy.d.ts +4 -0
- package/node_modules/zod/v4/locales/hy.js +147 -0
- package/node_modules/zod/v4/locales/id.cjs +133 -0
- package/node_modules/zod/v4/locales/id.d.cts +5 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +106 -0
- package/node_modules/zod/v4/locales/index.cjs +111 -0
- package/node_modules/zod/v4/locales/index.d.cts +52 -0
- package/node_modules/zod/v4/locales/index.d.ts +52 -0
- package/node_modules/zod/v4/locales/index.js +52 -0
- package/node_modules/zod/v4/locales/is.cjs +136 -0
- package/node_modules/zod/v4/locales/is.d.cts +5 -0
- package/node_modules/zod/v4/locales/is.d.ts +4 -0
- package/node_modules/zod/v4/locales/is.js +109 -0
- package/node_modules/zod/v4/locales/it.cjs +135 -0
- package/node_modules/zod/v4/locales/it.d.cts +5 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +108 -0
- package/node_modules/zod/v4/locales/ja.cjs +134 -0
- package/node_modules/zod/v4/locales/ja.d.cts +5 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +107 -0
- package/node_modules/zod/v4/locales/ka.cjs +139 -0
- package/node_modules/zod/v4/locales/ka.d.cts +5 -0
- package/node_modules/zod/v4/locales/ka.d.ts +4 -0
- package/node_modules/zod/v4/locales/ka.js +112 -0
- package/node_modules/zod/v4/locales/kh.cjs +12 -0
- package/node_modules/zod/v4/locales/kh.d.cts +5 -0
- package/node_modules/zod/v4/locales/kh.d.ts +5 -0
- package/node_modules/zod/v4/locales/kh.js +5 -0
- package/node_modules/zod/v4/locales/km.cjs +137 -0
- package/node_modules/zod/v4/locales/km.d.cts +5 -0
- package/node_modules/zod/v4/locales/km.d.ts +4 -0
- package/node_modules/zod/v4/locales/km.js +110 -0
- package/node_modules/zod/v4/locales/ko.cjs +138 -0
- package/node_modules/zod/v4/locales/ko.d.cts +5 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +111 -0
- package/node_modules/zod/v4/locales/lt.cjs +230 -0
- package/node_modules/zod/v4/locales/lt.d.cts +5 -0
- package/node_modules/zod/v4/locales/lt.d.ts +4 -0
- package/node_modules/zod/v4/locales/lt.js +203 -0
- package/node_modules/zod/v4/locales/mk.cjs +136 -0
- package/node_modules/zod/v4/locales/mk.d.cts +5 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +109 -0
- package/node_modules/zod/v4/locales/ms.cjs +134 -0
- package/node_modules/zod/v4/locales/ms.d.cts +5 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +107 -0
- package/node_modules/zod/v4/locales/nl.cjs +137 -0
- package/node_modules/zod/v4/locales/nl.d.cts +5 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +110 -0
- package/node_modules/zod/v4/locales/no.cjs +135 -0
- package/node_modules/zod/v4/locales/no.d.cts +5 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +108 -0
- package/node_modules/zod/v4/locales/ota.cjs +136 -0
- package/node_modules/zod/v4/locales/ota.d.cts +5 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +109 -0
- package/node_modules/zod/v4/locales/package.json +7 -0
- package/node_modules/zod/v4/locales/pl.cjs +136 -0
- package/node_modules/zod/v4/locales/pl.d.cts +5 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +109 -0
- package/node_modules/zod/v4/locales/ps.cjs +141 -0
- package/node_modules/zod/v4/locales/ps.d.cts +5 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +114 -0
- package/node_modules/zod/v4/locales/pt.cjs +135 -0
- package/node_modules/zod/v4/locales/pt.d.cts +5 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +108 -0
- package/node_modules/zod/v4/locales/ro.cjs +146 -0
- package/node_modules/zod/v4/locales/ro.d.cts +5 -0
- package/node_modules/zod/v4/locales/ro.d.ts +4 -0
- package/node_modules/zod/v4/locales/ro.js +119 -0
- package/node_modules/zod/v4/locales/ru.cjs +183 -0
- package/node_modules/zod/v4/locales/ru.d.cts +5 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +156 -0
- package/node_modules/zod/v4/locales/sl.cjs +136 -0
- package/node_modules/zod/v4/locales/sl.d.cts +5 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +109 -0
- package/node_modules/zod/v4/locales/sv.cjs +137 -0
- package/node_modules/zod/v4/locales/sv.d.cts +5 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +110 -0
- package/node_modules/zod/v4/locales/ta.cjs +137 -0
- package/node_modules/zod/v4/locales/ta.d.cts +5 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +110 -0
- package/node_modules/zod/v4/locales/th.cjs +137 -0
- package/node_modules/zod/v4/locales/th.d.cts +5 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +110 -0
- package/node_modules/zod/v4/locales/tr.cjs +132 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +4 -0
- package/node_modules/zod/v4/locales/tr.js +105 -0
- package/node_modules/zod/v4/locales/ua.cjs +12 -0
- package/node_modules/zod/v4/locales/ua.d.cts +5 -0
- package/node_modules/zod/v4/locales/ua.d.ts +5 -0
- package/node_modules/zod/v4/locales/ua.js +5 -0
- package/node_modules/zod/v4/locales/uk.cjs +135 -0
- package/node_modules/zod/v4/locales/uk.d.cts +5 -0
- package/node_modules/zod/v4/locales/uk.d.ts +4 -0
- package/node_modules/zod/v4/locales/uk.js +108 -0
- package/node_modules/zod/v4/locales/ur.cjs +137 -0
- package/node_modules/zod/v4/locales/ur.d.cts +5 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +110 -0
- package/node_modules/zod/v4/locales/uz.cjs +137 -0
- package/node_modules/zod/v4/locales/uz.d.cts +5 -0
- package/node_modules/zod/v4/locales/uz.d.ts +4 -0
- package/node_modules/zod/v4/locales/uz.js +110 -0
- package/node_modules/zod/v4/locales/vi.cjs +135 -0
- package/node_modules/zod/v4/locales/vi.d.cts +5 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +108 -0
- package/node_modules/zod/v4/locales/yo.cjs +134 -0
- package/node_modules/zod/v4/locales/yo.d.cts +5 -0
- package/node_modules/zod/v4/locales/yo.d.ts +4 -0
- package/node_modules/zod/v4/locales/yo.js +107 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +109 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +107 -0
- package/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/zod/v4/mini/coerce.cjs +52 -0
- package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/zod/v4/mini/coerce.js +22 -0
- package/node_modules/zod/v4/mini/external.cjs +63 -0
- package/node_modules/zod/v4/mini/external.d.cts +13 -0
- package/node_modules/zod/v4/mini/external.d.ts +13 -0
- package/node_modules/zod/v4/mini/external.js +14 -0
- package/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/zod/v4/mini/iso.cjs +64 -0
- package/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/zod/v4/mini/iso.js +34 -0
- package/node_modules/zod/v4/mini/package.json +7 -0
- package/node_modules/zod/v4/mini/parse.cjs +16 -0
- package/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/zod/v4/mini/schemas.cjs +1083 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +445 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +445 -0
- package/node_modules/zod/v4/mini/schemas.js +961 -0
- package/node_modules/zod/v4/package.json +7 -0
- package/node_modules/zod/v4-mini/index.cjs +32 -0
- package/node_modules/zod/v4-mini/index.d.cts +3 -0
- package/node_modules/zod/v4-mini/index.d.ts +3 -0
- package/node_modules/zod/v4-mini/index.js +3 -0
- package/node_modules/zod/v4-mini/package.json +7 -0
- package/npm-shrinkwrap.json +54 -0
- package/openclaw.plugin.json +317 -0
- package/package.json +74 -7
|
@@ -0,0 +1,876 @@
|
|
|
1
|
+
import { createAccountListHelpers, hasConfiguredAccountValue } from "openclaw/plugin-sdk/account-helpers";
|
|
2
|
+
import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "openclaw/plugin-sdk/account-id";
|
|
3
|
+
import { resolveMergedAccountConfig } from "openclaw/plugin-sdk/account-resolution";
|
|
4
|
+
import { resolveIntegerOption } from "openclaw/plugin-sdk/number-runtime";
|
|
5
|
+
import { resolveDefaultSecretProviderAlias } from "openclaw/plugin-sdk/provider-auth";
|
|
6
|
+
import { buildSecretInputSchema, normalizeResolvedSecretInputString, normalizeSecretInputString, resolveSecretInputString } from "openclaw/plugin-sdk/secret-input";
|
|
7
|
+
import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
8
|
+
import { buildChannelOutboundSessionRoute, buildThreadAwareOutboundSessionRoute, createChatChannelPlugin } from "openclaw/plugin-sdk/channel-core";
|
|
9
|
+
import { createMessageReceiptFromOutboundResults, defineChannelMessageAdapter } from "openclaw/plugin-sdk/channel-outbound";
|
|
10
|
+
import { getChatChannelMeta } from "openclaw/plugin-sdk/channel-plugin-common";
|
|
11
|
+
import { createComputedAccountStatusAdapter, createDefaultChannelRuntimeState } from "openclaw/plugin-sdk/status-helpers";
|
|
12
|
+
import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema";
|
|
13
|
+
import { z } from "zod";
|
|
14
|
+
import { resolveStableChannelMessageIngress } from "openclaw/plugin-sdk/channel-ingress-runtime";
|
|
15
|
+
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
|
|
16
|
+
import { readResponseTextLimited } from "openclaw/plugin-sdk/provider-http";
|
|
17
|
+
import { WebSocket } from "ws";
|
|
18
|
+
//#region extensions/clickclack/src/accounts.ts
|
|
19
|
+
/**
|
|
20
|
+
* Resolves ClickClack account configuration from root channel config, named
|
|
21
|
+
* account overrides, and secret-provider references.
|
|
22
|
+
*/
|
|
23
|
+
const DEFAULT_RECONNECT_MS = 1500;
|
|
24
|
+
const MIN_RECONNECT_MS = 100;
|
|
25
|
+
const MAX_RECONNECT_MS = 6e4;
|
|
26
|
+
const { listAccountIds: listClickClackAccountIds, resolveDefaultAccountId: resolveDefaultClickClackAccountId } = createAccountListHelpers("clickclack", {
|
|
27
|
+
normalizeAccountId,
|
|
28
|
+
hasImplicitDefaultAccount: (cfg) => {
|
|
29
|
+
const channel = cfg.channels?.clickclack;
|
|
30
|
+
return Boolean(channel?.baseUrl?.trim() && hasConfiguredAccountValue(channel.token) && channel.workspace?.trim());
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
function resolveMergedClickClackAccountConfig(cfg, accountId) {
|
|
34
|
+
return resolveMergedAccountConfig({
|
|
35
|
+
channelConfig: cfg.channels?.clickclack,
|
|
36
|
+
accounts: cfg.channels?.clickclack?.accounts,
|
|
37
|
+
accountId,
|
|
38
|
+
omitKeys: ["defaultAccount"],
|
|
39
|
+
normalizeAccountId
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
function resolveClickClackToken(params) {
|
|
43
|
+
const resolved = resolveSecretInputString({
|
|
44
|
+
value: params.value,
|
|
45
|
+
path: params.accountId === DEFAULT_ACCOUNT_ID ? "channels.clickclack.token" : `channels.clickclack.accounts.${params.accountId}.token`,
|
|
46
|
+
defaults: params.cfg.secrets?.defaults,
|
|
47
|
+
mode: "inspect"
|
|
48
|
+
});
|
|
49
|
+
if (resolved.status !== "available") {
|
|
50
|
+
if (resolved.status === "configured_unavailable" && resolved.ref.source === "env") {
|
|
51
|
+
const providerConfig = params.cfg.secrets?.providers?.[resolved.ref.provider];
|
|
52
|
+
if (providerConfig) {
|
|
53
|
+
if (providerConfig.source !== "env") throw new Error(`Secret provider "${resolved.ref.provider}" has source "${providerConfig.source}" but ref requests "env".`);
|
|
54
|
+
if (providerConfig.allowlist && !providerConfig.allowlist.includes(resolved.ref.id)) throw new Error(`Environment variable "${resolved.ref.id}" is not allowlisted in secrets.providers.${resolved.ref.provider}.allowlist.`);
|
|
55
|
+
} else if (resolved.ref.provider !== resolveDefaultSecretProviderAlias({ secrets: params.cfg.secrets }, "env")) throw new Error(`Secret provider "${resolved.ref.provider}" is not configured (ref: env:${resolved.ref.provider}:${resolved.ref.id}).`);
|
|
56
|
+
return normalizeSecretInputString((params.env ?? process.env)[resolved.ref.id]) ?? "";
|
|
57
|
+
}
|
|
58
|
+
return "";
|
|
59
|
+
}
|
|
60
|
+
return normalizeResolvedSecretInputString({
|
|
61
|
+
value: resolved.value,
|
|
62
|
+
path: "channels.clickclack.token"
|
|
63
|
+
}) ?? "";
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Builds the normalized account snapshot used by gateway, outbound delivery,
|
|
67
|
+
* status reporting, and channel routing.
|
|
68
|
+
*/
|
|
69
|
+
function resolveClickClackAccount(params) {
|
|
70
|
+
const accountId = normalizeAccountId(params.accountId);
|
|
71
|
+
const merged = resolveMergedClickClackAccountConfig(params.cfg, accountId);
|
|
72
|
+
const enabled = params.cfg.channels?.clickclack?.enabled !== false && merged.enabled !== false;
|
|
73
|
+
const baseUrl = merged.baseUrl?.trim().replace(/\/$/, "") ?? "";
|
|
74
|
+
const token = resolveClickClackToken({
|
|
75
|
+
cfg: params.cfg,
|
|
76
|
+
value: merged.token,
|
|
77
|
+
accountId,
|
|
78
|
+
env: params.env
|
|
79
|
+
});
|
|
80
|
+
const workspace = merged.workspace?.trim() ?? "";
|
|
81
|
+
return {
|
|
82
|
+
accountId,
|
|
83
|
+
enabled,
|
|
84
|
+
configured: Boolean(baseUrl && token && workspace),
|
|
85
|
+
name: normalizeOptionalString(merged.name),
|
|
86
|
+
baseUrl,
|
|
87
|
+
token,
|
|
88
|
+
workspace,
|
|
89
|
+
botUserId: normalizeOptionalString(merged.botUserId),
|
|
90
|
+
agentId: normalizeOptionalString(merged.agentId),
|
|
91
|
+
replyMode: merged.replyMode === "model" ? "model" : "agent",
|
|
92
|
+
model: normalizeOptionalString(merged.model),
|
|
93
|
+
systemPrompt: normalizeOptionalString(merged.systemPrompt),
|
|
94
|
+
timeoutSeconds: merged.timeoutSeconds,
|
|
95
|
+
toolsAllow: merged.toolsAllow,
|
|
96
|
+
defaultTo: merged.defaultTo?.trim() || "channel:general",
|
|
97
|
+
allowFrom: merged.allowFrom ?? ["*"],
|
|
98
|
+
reconnectMs: resolveIntegerOption(merged.reconnectMs, DEFAULT_RECONNECT_MS, {
|
|
99
|
+
min: MIN_RECONNECT_MS,
|
|
100
|
+
max: MAX_RECONNECT_MS
|
|
101
|
+
}),
|
|
102
|
+
config: {
|
|
103
|
+
...merged,
|
|
104
|
+
allowFrom: merged.allowFrom ?? ["*"]
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Returns all enabled accounts, including the implicit default account when
|
|
110
|
+
* legacy top-level ClickClack config is present.
|
|
111
|
+
*/
|
|
112
|
+
function listEnabledClickClackAccounts(cfg) {
|
|
113
|
+
return listClickClackAccountIds(cfg).map((accountId) => resolveClickClackAccount({
|
|
114
|
+
cfg,
|
|
115
|
+
accountId
|
|
116
|
+
})).filter((account) => account.enabled);
|
|
117
|
+
}
|
|
118
|
+
//#endregion
|
|
119
|
+
//#region extensions/clickclack/src/config-schema.ts
|
|
120
|
+
/**
|
|
121
|
+
* Zod-backed config schema for ClickClack channel accounts.
|
|
122
|
+
*/
|
|
123
|
+
const ClickClackAccountConfigSchema = z.object({
|
|
124
|
+
name: z.string().optional(),
|
|
125
|
+
enabled: z.boolean().optional(),
|
|
126
|
+
baseUrl: z.string().url().optional(),
|
|
127
|
+
token: buildSecretInputSchema().optional(),
|
|
128
|
+
workspace: z.string().optional(),
|
|
129
|
+
botUserId: z.string().optional(),
|
|
130
|
+
agentId: z.string().optional(),
|
|
131
|
+
replyMode: z.enum(["agent", "model"]).optional(),
|
|
132
|
+
model: z.string().optional(),
|
|
133
|
+
systemPrompt: z.string().optional(),
|
|
134
|
+
timeoutSeconds: z.number().int().min(1).max(3600).optional(),
|
|
135
|
+
toolsAllow: z.array(z.string()).optional(),
|
|
136
|
+
defaultTo: z.string().optional(),
|
|
137
|
+
allowFrom: z.array(z.string()).optional(),
|
|
138
|
+
reconnectMs: z.number().int().min(100).max(6e4).optional()
|
|
139
|
+
}).strict();
|
|
140
|
+
/**
|
|
141
|
+
* Config schema exported to core so `openclaw doctor` and config validation
|
|
142
|
+
* understand both default and named ClickClack accounts.
|
|
143
|
+
*/
|
|
144
|
+
const clickClackConfigSchema = buildChannelConfigSchema(ClickClackAccountConfigSchema.extend({
|
|
145
|
+
accounts: z.record(z.string(), ClickClackAccountConfigSchema.partial()).optional(),
|
|
146
|
+
defaultAccount: z.string().optional()
|
|
147
|
+
}).strict());
|
|
148
|
+
//#endregion
|
|
149
|
+
//#region extensions/clickclack/src/runtime.ts
|
|
150
|
+
/**
|
|
151
|
+
* Runtime store for host-provided OpenClaw services used by the ClickClack
|
|
152
|
+
* bundled plugin.
|
|
153
|
+
*/
|
|
154
|
+
const { setRuntime: setClickClackRuntime, getRuntime: getClickClackRuntime } = createPluginRuntimeStore({
|
|
155
|
+
pluginId: "clickclack",
|
|
156
|
+
errorMessage: "ClickClack runtime not initialized"
|
|
157
|
+
});
|
|
158
|
+
//#endregion
|
|
159
|
+
//#region extensions/clickclack/src/access.ts
|
|
160
|
+
/**
|
|
161
|
+
* Maps ClickClack senders and conversations onto the shared channel ingress
|
|
162
|
+
* allowlist/command authorization contract.
|
|
163
|
+
*/
|
|
164
|
+
const CHANNEL_ID$2 = "clickclack";
|
|
165
|
+
function normalizeClickClackUserId(value) {
|
|
166
|
+
const trimmed = value.trim();
|
|
167
|
+
if (!trimmed) return null;
|
|
168
|
+
const withoutProvider = trimmed.replace(/^(clickclack|cc):/i, "").trim();
|
|
169
|
+
return withoutProvider.match(/^dm:(.+)$/i)?.[1]?.trim() || withoutProvider || null;
|
|
170
|
+
}
|
|
171
|
+
const clickClackIngressIdentity = {
|
|
172
|
+
key: "user-id",
|
|
173
|
+
normalizeEntry: normalizeClickClackUserId,
|
|
174
|
+
normalizeSubject: normalizeClickClackUserId,
|
|
175
|
+
isWildcardEntry: (entry) => normalizeClickClackUserId(entry) === "*",
|
|
176
|
+
entryIdPrefix: "clickclack-user"
|
|
177
|
+
};
|
|
178
|
+
/**
|
|
179
|
+
* Resolves whether a ClickClack message should enter the agent pipeline and
|
|
180
|
+
* whether its command-style body may run tools.
|
|
181
|
+
*/
|
|
182
|
+
async function resolveClickClackInboundAccess(params) {
|
|
183
|
+
const runtime = getClickClackRuntime();
|
|
184
|
+
const isDirect = Boolean(params.message.direct_conversation_id);
|
|
185
|
+
const cfg = params.config;
|
|
186
|
+
const shouldCheckCommand = runtime.channel.commands.shouldComputeCommandAuthorized(params.message.body, cfg);
|
|
187
|
+
const resolved = await resolveStableChannelMessageIngress({
|
|
188
|
+
channelId: CHANNEL_ID$2,
|
|
189
|
+
accountId: params.account.accountId,
|
|
190
|
+
identity: clickClackIngressIdentity,
|
|
191
|
+
cfg,
|
|
192
|
+
subject: { stableId: params.message.author_id },
|
|
193
|
+
conversation: {
|
|
194
|
+
kind: isDirect ? "direct" : "group",
|
|
195
|
+
id: isDirect ? params.message.direct_conversation_id ?? params.message.author_id : params.message.channel_id ?? params.message.thread_root_id
|
|
196
|
+
},
|
|
197
|
+
allowFrom: params.account.allowFrom,
|
|
198
|
+
dmPolicy: "allowlist",
|
|
199
|
+
groupPolicy: "allowlist",
|
|
200
|
+
command: shouldCheckCommand ? {
|
|
201
|
+
cfg,
|
|
202
|
+
modeWhenAccessGroupsOff: "configured"
|
|
203
|
+
} : false
|
|
204
|
+
});
|
|
205
|
+
return {
|
|
206
|
+
shouldDispatch: resolved.ingress.admission === "dispatch",
|
|
207
|
+
commandAuthorized: resolved.commandAccess.requested ? resolved.commandAccess.authorized : resolved.senderAccess.allowed
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
//#endregion
|
|
211
|
+
//#region extensions/clickclack/src/http-client.ts
|
|
212
|
+
/**
|
|
213
|
+
* Thin ClickClack REST/websocket client used by gateway, resolver, and outbound
|
|
214
|
+
* delivery code.
|
|
215
|
+
*/
|
|
216
|
+
const CLICKCLACK_ERROR_BODY_LIMIT_BYTES = 8 * 1024;
|
|
217
|
+
/**
|
|
218
|
+
* Creates a typed client for the ClickClack API using bearer-token auth.
|
|
219
|
+
*/
|
|
220
|
+
function createClickClackClient(options) {
|
|
221
|
+
const baseUrl = options.baseUrl.replace(/\/$/, "");
|
|
222
|
+
const fetcher = options.fetch ?? fetch;
|
|
223
|
+
const headers = {
|
|
224
|
+
Authorization: `Bearer ${options.token}`,
|
|
225
|
+
Accept: "application/json"
|
|
226
|
+
};
|
|
227
|
+
async function request(path, init = {}) {
|
|
228
|
+
const requestHeaders = new Headers(init.headers);
|
|
229
|
+
for (const [key, value] of Object.entries(headers)) requestHeaders.set(key, value);
|
|
230
|
+
if (init.body && !(init.body instanceof FormData)) requestHeaders.set("Content-Type", "application/json");
|
|
231
|
+
const response = await fetcher(`${baseUrl}${path}`, {
|
|
232
|
+
...init,
|
|
233
|
+
headers: requestHeaders
|
|
234
|
+
});
|
|
235
|
+
if (!response.ok) {
|
|
236
|
+
const detail = await readResponseTextLimited(response, CLICKCLACK_ERROR_BODY_LIMIT_BYTES);
|
|
237
|
+
throw new Error(`ClickClack ${response.status}: ${detail}`);
|
|
238
|
+
}
|
|
239
|
+
return await response.json();
|
|
240
|
+
}
|
|
241
|
+
return {
|
|
242
|
+
me: async () => {
|
|
243
|
+
return (await request("/api/me")).user;
|
|
244
|
+
},
|
|
245
|
+
workspaces: async () => {
|
|
246
|
+
return (await request("/api/workspaces")).workspaces;
|
|
247
|
+
},
|
|
248
|
+
channels: async (workspaceId) => {
|
|
249
|
+
return (await request(`/api/workspaces/${encodeURIComponent(workspaceId)}/channels`)).channels;
|
|
250
|
+
},
|
|
251
|
+
channelMessages: async (channelId, afterSeq, limit = 20) => {
|
|
252
|
+
return (await request(`/api/channels/${encodeURIComponent(channelId)}/messages?after_seq=${afterSeq}&limit=${limit}`)).messages;
|
|
253
|
+
},
|
|
254
|
+
directMessages: async (conversationId, afterSeq, limit = 20) => {
|
|
255
|
+
return (await request(`/api/dms/${encodeURIComponent(conversationId)}/messages?after_seq=${afterSeq}&limit=${limit}`)).messages;
|
|
256
|
+
},
|
|
257
|
+
thread: async (messageId) => await request(`/api/messages/${encodeURIComponent(messageId)}/thread`),
|
|
258
|
+
createChannelMessage: async (channelId, body) => {
|
|
259
|
+
return (await request(`/api/channels/${encodeURIComponent(channelId)}/messages`, {
|
|
260
|
+
method: "POST",
|
|
261
|
+
body: JSON.stringify({ body })
|
|
262
|
+
})).message;
|
|
263
|
+
},
|
|
264
|
+
createThreadReply: async (messageId, body) => {
|
|
265
|
+
return (await request(`/api/messages/${encodeURIComponent(messageId)}/thread/replies`, {
|
|
266
|
+
method: "POST",
|
|
267
|
+
body: JSON.stringify({ body })
|
|
268
|
+
})).message;
|
|
269
|
+
},
|
|
270
|
+
createDirectConversation: async (workspaceId, memberIds) => {
|
|
271
|
+
return (await request("/api/dms", {
|
|
272
|
+
method: "POST",
|
|
273
|
+
body: JSON.stringify({
|
|
274
|
+
workspace_id: workspaceId,
|
|
275
|
+
member_ids: memberIds
|
|
276
|
+
})
|
|
277
|
+
})).conversation;
|
|
278
|
+
},
|
|
279
|
+
createDirectMessage: async (conversationId, body) => {
|
|
280
|
+
return (await request(`/api/dms/${encodeURIComponent(conversationId)}/messages`, {
|
|
281
|
+
method: "POST",
|
|
282
|
+
body: JSON.stringify({ body })
|
|
283
|
+
})).message;
|
|
284
|
+
},
|
|
285
|
+
events: async (workspaceId, afterCursor) => {
|
|
286
|
+
const query = new URLSearchParams({ workspace_id: workspaceId });
|
|
287
|
+
if (afterCursor) query.set("after_cursor", afterCursor);
|
|
288
|
+
return (await request(`/api/realtime/events?${query.toString()}`)).events;
|
|
289
|
+
},
|
|
290
|
+
websocket: (workspaceId, afterCursor) => {
|
|
291
|
+
const url = new URL(`${baseUrl}/api/realtime/ws`);
|
|
292
|
+
url.protocol = url.protocol === "https:" ? "wss:" : "ws:";
|
|
293
|
+
url.searchParams.set("workspace_id", workspaceId);
|
|
294
|
+
if (afterCursor) url.searchParams.set("after_cursor", afterCursor);
|
|
295
|
+
return new WebSocket(url, { headers: { Authorization: `Bearer ${options.token}` } });
|
|
296
|
+
}
|
|
297
|
+
};
|
|
298
|
+
}
|
|
299
|
+
//#endregion
|
|
300
|
+
//#region extensions/clickclack/src/resolve.ts
|
|
301
|
+
/**
|
|
302
|
+
* Resolves a workspace slug/name/id from config to a ClickClack workspace id.
|
|
303
|
+
*/
|
|
304
|
+
async function resolveWorkspaceId(client, workspace) {
|
|
305
|
+
if (workspace.startsWith("wsp_")) return workspace;
|
|
306
|
+
const found = (await client.workspaces()).find((candidate) => candidate.id === workspace || candidate.slug === workspace || candidate.name === workspace);
|
|
307
|
+
if (!found) throw new Error(`ClickClack workspace not found: ${workspace}`);
|
|
308
|
+
return found.id;
|
|
309
|
+
}
|
|
310
|
+
/**
|
|
311
|
+
* Resolves a channel name/id from config or target input to a ClickClack
|
|
312
|
+
* channel id.
|
|
313
|
+
*/
|
|
314
|
+
async function resolveChannelId(client, workspaceId, channel) {
|
|
315
|
+
if (channel.startsWith("chn_")) return channel;
|
|
316
|
+
const found = (await client.channels(workspaceId)).find((candidate) => candidate.id === channel || candidate.name === channel);
|
|
317
|
+
if (!found) throw new Error(`ClickClack channel not found: ${channel}`);
|
|
318
|
+
return found.id;
|
|
319
|
+
}
|
|
320
|
+
//#endregion
|
|
321
|
+
//#region extensions/clickclack/src/target.ts
|
|
322
|
+
/**
|
|
323
|
+
* Parses `channel:name`, `thread:msg_id`, `dm:usr_id`, or a bare channel name.
|
|
324
|
+
*/
|
|
325
|
+
function parseClickClackTarget(raw) {
|
|
326
|
+
const value = raw.trim();
|
|
327
|
+
if (!value) throw new Error("ClickClack target is required");
|
|
328
|
+
const [prefix, ...rest] = value.split(":");
|
|
329
|
+
const body = rest.join(":").trim();
|
|
330
|
+
if (prefix === "channel" && body) return {
|
|
331
|
+
chatType: "group",
|
|
332
|
+
kind: "channel",
|
|
333
|
+
id: body
|
|
334
|
+
};
|
|
335
|
+
if (prefix === "thread" && body) return {
|
|
336
|
+
chatType: "group",
|
|
337
|
+
kind: "thread",
|
|
338
|
+
id: body
|
|
339
|
+
};
|
|
340
|
+
if (prefix === "dm" && body) return {
|
|
341
|
+
chatType: "direct",
|
|
342
|
+
kind: "dm",
|
|
343
|
+
id: body
|
|
344
|
+
};
|
|
345
|
+
if (!body) return {
|
|
346
|
+
chatType: "group",
|
|
347
|
+
kind: "channel",
|
|
348
|
+
id: value
|
|
349
|
+
};
|
|
350
|
+
throw new Error(`Unsupported ClickClack target: ${raw}`);
|
|
351
|
+
}
|
|
352
|
+
/** Formats a parsed ClickClack target back into canonical target syntax. */
|
|
353
|
+
function buildClickClackTarget(target) {
|
|
354
|
+
return `${target.kind}:${target.id}`;
|
|
355
|
+
}
|
|
356
|
+
/** Normalizes user-entered ClickClack target text for channel routing. */
|
|
357
|
+
function normalizeClickClackTarget(raw) {
|
|
358
|
+
return buildClickClackTarget(parseClickClackTarget(raw));
|
|
359
|
+
}
|
|
360
|
+
/** Reports whether a target string can be offered to the ClickClack parser. */
|
|
361
|
+
function looksLikeClickClackTarget(raw) {
|
|
362
|
+
return /^(channel|thread|dm):/i.test(raw.trim()) || raw.trim().length > 0;
|
|
363
|
+
}
|
|
364
|
+
//#endregion
|
|
365
|
+
//#region extensions/clickclack/src/outbound.ts
|
|
366
|
+
/**
|
|
367
|
+
* Outbound ClickClack delivery helpers for channel messages, thread replies,
|
|
368
|
+
* and direct messages.
|
|
369
|
+
*/
|
|
370
|
+
/**
|
|
371
|
+
* Sends text to a normalized ClickClack target and returns the created message
|
|
372
|
+
* id for receipt/session tracking.
|
|
373
|
+
*/
|
|
374
|
+
async function sendClickClackText(params) {
|
|
375
|
+
const account = resolveClickClackAccount({
|
|
376
|
+
cfg: params.cfg,
|
|
377
|
+
accountId: params.accountId
|
|
378
|
+
});
|
|
379
|
+
const client = createClickClackClient({
|
|
380
|
+
baseUrl: account.baseUrl,
|
|
381
|
+
token: account.token
|
|
382
|
+
});
|
|
383
|
+
const workspaceId = await resolveWorkspaceId(client, account.workspace);
|
|
384
|
+
const parsed = parseClickClackTarget(params.to);
|
|
385
|
+
const explicitThreadId = params.threadId == null ? "" : String(params.threadId);
|
|
386
|
+
const replyToId = params.replyToId == null ? "" : String(params.replyToId);
|
|
387
|
+
if (explicitThreadId || replyToId || parsed.kind === "thread") {
|
|
388
|
+
const rootId = explicitThreadId || replyToId || parsed.id;
|
|
389
|
+
const message = await client.createThreadReply(rootId, params.text);
|
|
390
|
+
return {
|
|
391
|
+
to: params.to,
|
|
392
|
+
messageId: message.id
|
|
393
|
+
};
|
|
394
|
+
}
|
|
395
|
+
if (parsed.kind === "dm") {
|
|
396
|
+
const dm = await client.createDirectConversation(workspaceId, [parsed.id]);
|
|
397
|
+
const message = await client.createDirectMessage(dm.id, params.text);
|
|
398
|
+
return {
|
|
399
|
+
to: params.to,
|
|
400
|
+
messageId: message.id
|
|
401
|
+
};
|
|
402
|
+
}
|
|
403
|
+
const channelId = await resolveChannelId(client, workspaceId, parsed.id);
|
|
404
|
+
const message = await client.createChannelMessage(channelId, params.text);
|
|
405
|
+
return {
|
|
406
|
+
to: params.to,
|
|
407
|
+
messageId: message.id
|
|
408
|
+
};
|
|
409
|
+
}
|
|
410
|
+
//#endregion
|
|
411
|
+
//#region extensions/clickclack/src/inbound.ts
|
|
412
|
+
const CHANNEL_ID$1 = "clickclack";
|
|
413
|
+
function resolveAccountAgentRoute(params) {
|
|
414
|
+
const runtime = getClickClackRuntime();
|
|
415
|
+
const route = runtime.channel.routing.resolveAgentRoute({
|
|
416
|
+
cfg: params.cfg,
|
|
417
|
+
channel: CHANNEL_ID$1,
|
|
418
|
+
accountId: params.account.accountId,
|
|
419
|
+
peer: {
|
|
420
|
+
kind: params.isDirect ? "direct" : "channel",
|
|
421
|
+
id: params.target
|
|
422
|
+
}
|
|
423
|
+
});
|
|
424
|
+
const agentId = params.account.agentId ?? route.agentId;
|
|
425
|
+
if (agentId === route.agentId) return route;
|
|
426
|
+
return {
|
|
427
|
+
...route,
|
|
428
|
+
agentId,
|
|
429
|
+
sessionKey: runtime.channel.routing.buildAgentSessionKey({
|
|
430
|
+
agentId,
|
|
431
|
+
channel: CHANNEL_ID$1,
|
|
432
|
+
accountId: params.account.accountId,
|
|
433
|
+
peer: {
|
|
434
|
+
kind: params.isDirect ? "direct" : "channel",
|
|
435
|
+
id: params.target
|
|
436
|
+
}
|
|
437
|
+
})
|
|
438
|
+
};
|
|
439
|
+
}
|
|
440
|
+
async function dispatchModelReply(params) {
|
|
441
|
+
const text = (await getClickClackRuntime().llm.complete({
|
|
442
|
+
agentId: params.route.agentId,
|
|
443
|
+
model: params.account.model,
|
|
444
|
+
maxTokens: 96,
|
|
445
|
+
purpose: "clickclack bot reply",
|
|
446
|
+
systemPrompt: params.account.systemPrompt,
|
|
447
|
+
messages: [{
|
|
448
|
+
role: "user",
|
|
449
|
+
content: params.message.body
|
|
450
|
+
}]
|
|
451
|
+
})).text.trim();
|
|
452
|
+
if (!text) return;
|
|
453
|
+
await sendClickClackText({
|
|
454
|
+
cfg: params.cfg,
|
|
455
|
+
accountId: params.account.accountId,
|
|
456
|
+
to: params.target,
|
|
457
|
+
text,
|
|
458
|
+
threadId: params.message.parent_message_id ? params.message.thread_root_id : void 0,
|
|
459
|
+
replyToId: params.message.id
|
|
460
|
+
});
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* Dispatches one already-fetched ClickClack message through the configured
|
|
464
|
+
* reply mode for its account.
|
|
465
|
+
*/
|
|
466
|
+
async function handleClickClackInbound(params) {
|
|
467
|
+
const runtime = getClickClackRuntime();
|
|
468
|
+
const message = params.message;
|
|
469
|
+
const access = params.access ?? await resolveClickClackInboundAccess({
|
|
470
|
+
account: params.account,
|
|
471
|
+
config: params.config,
|
|
472
|
+
message
|
|
473
|
+
});
|
|
474
|
+
if (!access.shouldDispatch) return;
|
|
475
|
+
const isDirect = Boolean(message.direct_conversation_id);
|
|
476
|
+
const target = buildClickClackTarget(isDirect ? {
|
|
477
|
+
chatType: "direct",
|
|
478
|
+
kind: "dm",
|
|
479
|
+
id: message.author_id
|
|
480
|
+
} : {
|
|
481
|
+
chatType: "group",
|
|
482
|
+
kind: "channel",
|
|
483
|
+
id: message.channel_id ?? ""
|
|
484
|
+
});
|
|
485
|
+
const route = resolveAccountAgentRoute({
|
|
486
|
+
cfg: params.config,
|
|
487
|
+
account: params.account,
|
|
488
|
+
target,
|
|
489
|
+
isDirect
|
|
490
|
+
});
|
|
491
|
+
if (params.account.replyMode === "model") {
|
|
492
|
+
await dispatchModelReply({
|
|
493
|
+
account: params.account,
|
|
494
|
+
cfg: params.config,
|
|
495
|
+
message,
|
|
496
|
+
route,
|
|
497
|
+
target
|
|
498
|
+
});
|
|
499
|
+
return;
|
|
500
|
+
}
|
|
501
|
+
const senderName = message.author?.display_name || message.author_id;
|
|
502
|
+
const previousTimestamp = runtime.channel.session.readSessionUpdatedAt({
|
|
503
|
+
storePath: runtime.channel.session.resolveStorePath(params.config.session?.store, { agentId: route.agentId }),
|
|
504
|
+
sessionKey: route.sessionKey
|
|
505
|
+
});
|
|
506
|
+
const body = runtime.channel.reply.formatAgentEnvelope({
|
|
507
|
+
channel: "ClickClack",
|
|
508
|
+
from: senderName,
|
|
509
|
+
timestamp: new Date(message.created_at),
|
|
510
|
+
previousTimestamp,
|
|
511
|
+
envelope: runtime.channel.reply.resolveEnvelopeFormatOptions(params.config),
|
|
512
|
+
body: message.body
|
|
513
|
+
});
|
|
514
|
+
const storePath = runtime.channel.session.resolveStorePath(params.config.session?.store, { agentId: route.agentId });
|
|
515
|
+
const ctxPayload = runtime.channel.reply.finalizeInboundContext({
|
|
516
|
+
Body: body,
|
|
517
|
+
BodyForAgent: message.body,
|
|
518
|
+
RawBody: message.body,
|
|
519
|
+
CommandBody: message.body,
|
|
520
|
+
From: target,
|
|
521
|
+
To: target,
|
|
522
|
+
SessionKey: route.sessionKey,
|
|
523
|
+
AccountId: route.accountId ?? params.account.accountId,
|
|
524
|
+
ChatType: isDirect ? "direct" : "group",
|
|
525
|
+
WasMentioned: isDirect ? void 0 : true,
|
|
526
|
+
ConversationLabel: isDirect ? senderName : message.channel_id,
|
|
527
|
+
GroupChannel: message.channel_id,
|
|
528
|
+
NativeChannelId: message.channel_id || message.direct_conversation_id,
|
|
529
|
+
MessageThreadId: message.parent_message_id ? message.thread_root_id : void 0,
|
|
530
|
+
ThreadParentId: message.parent_message_id ? message.thread_root_id : void 0,
|
|
531
|
+
SenderName: senderName,
|
|
532
|
+
SenderId: message.author_id,
|
|
533
|
+
Provider: CHANNEL_ID$1,
|
|
534
|
+
Surface: CHANNEL_ID$1,
|
|
535
|
+
MessageSid: message.id,
|
|
536
|
+
MessageSidFull: message.id,
|
|
537
|
+
ReplyToId: message.id,
|
|
538
|
+
Timestamp: message.created_at,
|
|
539
|
+
OriginatingChannel: CHANNEL_ID$1,
|
|
540
|
+
OriginatingTo: target,
|
|
541
|
+
CommandAuthorized: access.commandAuthorized
|
|
542
|
+
});
|
|
543
|
+
await runtime.channel.inbound.dispatchReply({
|
|
544
|
+
cfg: params.config,
|
|
545
|
+
channel: CHANNEL_ID$1,
|
|
546
|
+
accountId: params.account.accountId,
|
|
547
|
+
agentId: route.agentId,
|
|
548
|
+
routeSessionKey: route.sessionKey,
|
|
549
|
+
storePath,
|
|
550
|
+
ctxPayload,
|
|
551
|
+
recordInboundSession: runtime.channel.session.recordInboundSession,
|
|
552
|
+
dispatchReplyWithBufferedBlockDispatcher: runtime.channel.reply.dispatchReplyWithBufferedBlockDispatcher,
|
|
553
|
+
toolsAllow: params.account.toolsAllow,
|
|
554
|
+
delivery: {
|
|
555
|
+
deliver: async (payload) => {
|
|
556
|
+
const text = payload && typeof payload === "object" && "text" in payload ? payload.text ?? "" : "";
|
|
557
|
+
if (!text.trim()) return;
|
|
558
|
+
await sendClickClackText({
|
|
559
|
+
cfg: params.config,
|
|
560
|
+
accountId: params.account.accountId,
|
|
561
|
+
to: target,
|
|
562
|
+
text,
|
|
563
|
+
threadId: message.parent_message_id ? message.thread_root_id : void 0,
|
|
564
|
+
replyToId: message.id
|
|
565
|
+
});
|
|
566
|
+
},
|
|
567
|
+
onError: (error) => {
|
|
568
|
+
throw error instanceof Error ? error : /* @__PURE__ */ new Error(`clickclack dispatch failed: ${String(error)}`);
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
replyPipeline: {},
|
|
572
|
+
record: { onRecordError: (error) => {
|
|
573
|
+
throw error instanceof Error ? error : /* @__PURE__ */ new Error(`clickclack session record failed: ${String(error)}`);
|
|
574
|
+
} }
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
//#endregion
|
|
578
|
+
//#region extensions/clickclack/src/gateway.ts
|
|
579
|
+
function payloadString(event, key) {
|
|
580
|
+
const value = event.payload?.[key];
|
|
581
|
+
return typeof value === "string" ? value : "";
|
|
582
|
+
}
|
|
583
|
+
async function resolveEventMessage(params) {
|
|
584
|
+
const messageId = payloadString(params.event, "message_id");
|
|
585
|
+
if (!messageId) return null;
|
|
586
|
+
const directConversationId = payloadString(params.event, "direct_conversation_id");
|
|
587
|
+
if (directConversationId && typeof params.event.seq === "number") return (await params.client.directMessages(directConversationId, params.event.seq - 1, 10)).find((message) => message.id === messageId) ?? null;
|
|
588
|
+
if (params.event.type === "thread.reply_created") {
|
|
589
|
+
const rootId = payloadString(params.event, "root_message_id");
|
|
590
|
+
if (!rootId) return null;
|
|
591
|
+
return (await params.client.thread(rootId)).replies.find((message) => message.id === messageId) ?? null;
|
|
592
|
+
}
|
|
593
|
+
if (params.event.channel_id && typeof params.event.seq === "number") return (await params.client.channelMessages(params.event.channel_id, params.event.seq - 1, 10)).find((message) => message.id === messageId) ?? null;
|
|
594
|
+
return null;
|
|
595
|
+
}
|
|
596
|
+
function decodeSocketMessage(data) {
|
|
597
|
+
if (typeof data === "string") return data;
|
|
598
|
+
if (Buffer.isBuffer(data)) return data.toString("utf8");
|
|
599
|
+
if (data instanceof ArrayBuffer) return Buffer.from(data).toString("utf8");
|
|
600
|
+
return Buffer.concat(data).toString("utf8");
|
|
601
|
+
}
|
|
602
|
+
function parseSocketEvent(data) {
|
|
603
|
+
try {
|
|
604
|
+
return JSON.parse(decodeSocketMessage(data));
|
|
605
|
+
} catch {
|
|
606
|
+
return null;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
async function processEvent(params) {
|
|
610
|
+
if (params.event.type !== "message.created" && params.event.type !== "thread.reply_created") return;
|
|
611
|
+
if (payloadString(params.event, "author_id") === params.botUserId) return;
|
|
612
|
+
const message = await resolveEventMessage({
|
|
613
|
+
client: params.client,
|
|
614
|
+
event: params.event
|
|
615
|
+
});
|
|
616
|
+
if (!message || message.author_id === params.botUserId) return;
|
|
617
|
+
if (message.author?.kind === "bot") return;
|
|
618
|
+
const access = await resolveClickClackInboundAccess({
|
|
619
|
+
account: params.account,
|
|
620
|
+
config: params.config,
|
|
621
|
+
message
|
|
622
|
+
});
|
|
623
|
+
if (!access.shouldDispatch) return;
|
|
624
|
+
await handleClickClackInbound({
|
|
625
|
+
account: params.account,
|
|
626
|
+
config: params.config,
|
|
627
|
+
message,
|
|
628
|
+
access
|
|
629
|
+
});
|
|
630
|
+
}
|
|
631
|
+
async function startClickClackGatewayAccount(ctx) {
|
|
632
|
+
const configuredAccount = resolveClickClackAccount({
|
|
633
|
+
cfg: ctx.cfg,
|
|
634
|
+
accountId: ctx.account.accountId
|
|
635
|
+
});
|
|
636
|
+
if (!configuredAccount.configured) throw new Error(`ClickClack is not configured for account "${configuredAccount.accountId}"`);
|
|
637
|
+
const client = createClickClackClient({
|
|
638
|
+
baseUrl: configuredAccount.baseUrl,
|
|
639
|
+
token: configuredAccount.token
|
|
640
|
+
});
|
|
641
|
+
const workspaceId = await resolveWorkspaceId(client, configuredAccount.workspace);
|
|
642
|
+
const me = await client.me();
|
|
643
|
+
const account = {
|
|
644
|
+
...configuredAccount,
|
|
645
|
+
workspace: workspaceId,
|
|
646
|
+
botUserId: configuredAccount.botUserId ?? me.id
|
|
647
|
+
};
|
|
648
|
+
ctx.setStatus({
|
|
649
|
+
accountId: account.accountId,
|
|
650
|
+
running: true,
|
|
651
|
+
configured: true,
|
|
652
|
+
enabled: account.enabled,
|
|
653
|
+
baseUrl: account.baseUrl
|
|
654
|
+
});
|
|
655
|
+
let afterCursor = "";
|
|
656
|
+
let initialized = false;
|
|
657
|
+
try {
|
|
658
|
+
while (!ctx.abortSignal.aborted) {
|
|
659
|
+
const backlog = await client.events(workspaceId, afterCursor);
|
|
660
|
+
if (!initialized) {
|
|
661
|
+
for (const event of backlog) afterCursor = event.cursor || afterCursor;
|
|
662
|
+
initialized = true;
|
|
663
|
+
} else for (const event of backlog) {
|
|
664
|
+
afterCursor = event.cursor || afterCursor;
|
|
665
|
+
await processEvent({
|
|
666
|
+
account,
|
|
667
|
+
config: ctx.cfg,
|
|
668
|
+
client,
|
|
669
|
+
event,
|
|
670
|
+
botUserId: account.botUserId
|
|
671
|
+
});
|
|
672
|
+
}
|
|
673
|
+
const socket = client.websocket(workspaceId, afterCursor);
|
|
674
|
+
await new Promise((resolve, reject) => {
|
|
675
|
+
let settled = false;
|
|
676
|
+
let removeAbortListener;
|
|
677
|
+
const finishSocketCycle = () => {
|
|
678
|
+
if (settled) return;
|
|
679
|
+
settled = true;
|
|
680
|
+
removeAbortListener?.();
|
|
681
|
+
removeAbortListener = void 0;
|
|
682
|
+
resolve();
|
|
683
|
+
};
|
|
684
|
+
const abort = () => {
|
|
685
|
+
socket.close();
|
|
686
|
+
finishSocketCycle();
|
|
687
|
+
};
|
|
688
|
+
ctx.abortSignal.addEventListener("abort", abort, { once: true });
|
|
689
|
+
removeAbortListener = () => ctx.abortSignal.removeEventListener("abort", abort);
|
|
690
|
+
socket.on("message", (data) => {
|
|
691
|
+
(async () => {
|
|
692
|
+
const event = parseSocketEvent(data);
|
|
693
|
+
if (!event) {
|
|
694
|
+
ctx.log?.warn?.(`[${account.accountId}] skipped malformed ClickClack websocket event`);
|
|
695
|
+
return;
|
|
696
|
+
}
|
|
697
|
+
afterCursor = event.cursor || afterCursor;
|
|
698
|
+
await processEvent({
|
|
699
|
+
account,
|
|
700
|
+
config: ctx.cfg,
|
|
701
|
+
client,
|
|
702
|
+
event,
|
|
703
|
+
botUserId: account.botUserId ?? ""
|
|
704
|
+
});
|
|
705
|
+
})().catch(reject);
|
|
706
|
+
});
|
|
707
|
+
socket.on("close", finishSocketCycle);
|
|
708
|
+
socket.on("error", (error) => {
|
|
709
|
+
if (settled || ctx.abortSignal.aborted) {
|
|
710
|
+
finishSocketCycle();
|
|
711
|
+
return;
|
|
712
|
+
}
|
|
713
|
+
ctx.log?.warn?.(`[${account.accountId}] ClickClack websocket error; reconnecting: ${error instanceof Error ? error.message : String(error)}`);
|
|
714
|
+
finishSocketCycle();
|
|
715
|
+
socket.close();
|
|
716
|
+
});
|
|
717
|
+
});
|
|
718
|
+
if (!ctx.abortSignal.aborted) await new Promise((resolve) => {
|
|
719
|
+
setTimeout(resolve, account.reconnectMs);
|
|
720
|
+
});
|
|
721
|
+
}
|
|
722
|
+
} finally {
|
|
723
|
+
ctx.setStatus({
|
|
724
|
+
accountId: account.accountId,
|
|
725
|
+
running: false
|
|
726
|
+
});
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
//#endregion
|
|
730
|
+
//#region extensions/clickclack/src/channel.ts
|
|
731
|
+
/**
|
|
732
|
+
* ClickClack channel plugin definition: target parsing, account config, status,
|
|
733
|
+
* gateway startup, and outbound delivery wiring.
|
|
734
|
+
*/
|
|
735
|
+
const CHANNEL_ID = "clickclack";
|
|
736
|
+
const meta = { ...getChatChannelMeta(CHANNEL_ID) };
|
|
737
|
+
const clickClackMessageAdapter = defineChannelMessageAdapter({
|
|
738
|
+
id: CHANNEL_ID,
|
|
739
|
+
durableFinal: { capabilities: {
|
|
740
|
+
text: true,
|
|
741
|
+
replyTo: true,
|
|
742
|
+
thread: true,
|
|
743
|
+
messageSendingHooks: true
|
|
744
|
+
} },
|
|
745
|
+
send: { text: async (ctx) => {
|
|
746
|
+
const result = await sendClickClackText({
|
|
747
|
+
cfg: ctx.cfg,
|
|
748
|
+
accountId: ctx.accountId,
|
|
749
|
+
to: ctx.to,
|
|
750
|
+
text: ctx.text,
|
|
751
|
+
threadId: ctx.threadId,
|
|
752
|
+
replyToId: ctx.replyToId
|
|
753
|
+
});
|
|
754
|
+
const threadId = ctx.threadId == null ? void 0 : String(ctx.threadId);
|
|
755
|
+
const replyToId = ctx.replyToId ?? void 0;
|
|
756
|
+
return {
|
|
757
|
+
messageId: result.messageId,
|
|
758
|
+
receipt: createMessageReceiptFromOutboundResults({
|
|
759
|
+
results: [{
|
|
760
|
+
channel: CHANNEL_ID,
|
|
761
|
+
messageId: result.messageId
|
|
762
|
+
}],
|
|
763
|
+
threadId,
|
|
764
|
+
replyToId,
|
|
765
|
+
kind: "text"
|
|
766
|
+
})
|
|
767
|
+
};
|
|
768
|
+
} }
|
|
769
|
+
});
|
|
770
|
+
/**
|
|
771
|
+
* Channel plugin instance registered by the bundled ClickClack entry.
|
|
772
|
+
*/
|
|
773
|
+
const clickClackPlugin = createChatChannelPlugin({
|
|
774
|
+
base: {
|
|
775
|
+
id: CHANNEL_ID,
|
|
776
|
+
meta,
|
|
777
|
+
capabilities: {
|
|
778
|
+
chatTypes: ["direct", "group"],
|
|
779
|
+
threads: true,
|
|
780
|
+
blockStreaming: true
|
|
781
|
+
},
|
|
782
|
+
reload: { configPrefixes: ["channels.clickclack"] },
|
|
783
|
+
configSchema: clickClackConfigSchema,
|
|
784
|
+
config: {
|
|
785
|
+
listAccountIds: (cfg) => listClickClackAccountIds(cfg),
|
|
786
|
+
resolveAccount: (cfg, accountId) => resolveClickClackAccount({
|
|
787
|
+
cfg,
|
|
788
|
+
accountId
|
|
789
|
+
}),
|
|
790
|
+
defaultAccountId: (cfg) => resolveDefaultClickClackAccountId(cfg),
|
|
791
|
+
isConfigured: (account) => account.configured,
|
|
792
|
+
resolveAllowFrom: ({ cfg, accountId }) => resolveClickClackAccount({
|
|
793
|
+
cfg,
|
|
794
|
+
accountId
|
|
795
|
+
}).allowFrom,
|
|
796
|
+
resolveDefaultTo: ({ cfg, accountId }) => resolveClickClackAccount({
|
|
797
|
+
cfg,
|
|
798
|
+
accountId
|
|
799
|
+
}).defaultTo
|
|
800
|
+
},
|
|
801
|
+
messaging: {
|
|
802
|
+
targetPrefixes: ["clickclack", "cc"],
|
|
803
|
+
normalizeTarget: normalizeClickClackTarget,
|
|
804
|
+
inferTargetChatType: ({ to }) => parseClickClackTarget(to).chatType,
|
|
805
|
+
targetResolver: {
|
|
806
|
+
looksLikeId: looksLikeClickClackTarget,
|
|
807
|
+
hint: "<channel:name|dm:usr_id|thread:msg_id>"
|
|
808
|
+
},
|
|
809
|
+
resolveOutboundSessionRoute: ({ cfg, agentId, accountId, target, replyToId, threadId, currentSessionKey }) => {
|
|
810
|
+
const parsed = parseClickClackTarget(target);
|
|
811
|
+
return buildThreadAwareOutboundSessionRoute({
|
|
812
|
+
route: buildChannelOutboundSessionRoute({
|
|
813
|
+
cfg,
|
|
814
|
+
agentId,
|
|
815
|
+
channel: CHANNEL_ID,
|
|
816
|
+
accountId,
|
|
817
|
+
peer: {
|
|
818
|
+
kind: parsed.chatType === "direct" ? "direct" : "channel",
|
|
819
|
+
id: buildClickClackTarget(parsed)
|
|
820
|
+
},
|
|
821
|
+
chatType: parsed.chatType,
|
|
822
|
+
from: `clickclack:${accountId ?? DEFAULT_ACCOUNT_ID}`,
|
|
823
|
+
to: buildClickClackTarget(parsed)
|
|
824
|
+
}),
|
|
825
|
+
replyToId,
|
|
826
|
+
threadId: threadId ?? (parsed.kind === "thread" ? parsed.id : void 0),
|
|
827
|
+
currentSessionKey,
|
|
828
|
+
canRecoverCurrentThread: () => true
|
|
829
|
+
});
|
|
830
|
+
},
|
|
831
|
+
resolveSessionConversation: ({ rawId }) => {
|
|
832
|
+
const parsed = parseClickClackTarget(rawId);
|
|
833
|
+
if (parsed.kind === "dm") return null;
|
|
834
|
+
return {
|
|
835
|
+
id: parsed.id,
|
|
836
|
+
threadId: parsed.kind === "thread" ? parsed.id : void 0,
|
|
837
|
+
baseConversationId: parsed.id,
|
|
838
|
+
parentConversationCandidates: [parsed.id]
|
|
839
|
+
};
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
status: createComputedAccountStatusAdapter({
|
|
843
|
+
defaultRuntime: createDefaultChannelRuntimeState(DEFAULT_ACCOUNT_ID),
|
|
844
|
+
buildChannelSummary: ({ snapshot }) => ({
|
|
845
|
+
ok: snapshot.configured,
|
|
846
|
+
label: snapshot.configured ? "configured" : "missing config",
|
|
847
|
+
detail: snapshot.baseUrl ?? ""
|
|
848
|
+
}),
|
|
849
|
+
resolveAccountSnapshot: ({ account }) => ({
|
|
850
|
+
accountId: account.accountId,
|
|
851
|
+
name: account.name,
|
|
852
|
+
enabled: account.enabled,
|
|
853
|
+
configured: account.configured,
|
|
854
|
+
baseUrl: account.baseUrl
|
|
855
|
+
})
|
|
856
|
+
}),
|
|
857
|
+
gateway: { startAccount: startClickClackGatewayAccount },
|
|
858
|
+
message: clickClackMessageAdapter
|
|
859
|
+
},
|
|
860
|
+
outbound: {
|
|
861
|
+
base: { deliveryMode: "direct" },
|
|
862
|
+
attachedResults: {
|
|
863
|
+
channel: CHANNEL_ID,
|
|
864
|
+
sendText: async ({ cfg, to, text, accountId, threadId, replyToId }) => await sendClickClackText({
|
|
865
|
+
cfg,
|
|
866
|
+
accountId,
|
|
867
|
+
to,
|
|
868
|
+
text,
|
|
869
|
+
threadId,
|
|
870
|
+
replyToId
|
|
871
|
+
})
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
});
|
|
875
|
+
//#endregion
|
|
876
|
+
export { getClickClackRuntime as a, DEFAULT_ACCOUNT_ID as c, resolveClickClackAccount as d, resolveDefaultClickClackAccountId as f, createClickClackClient as i, listClickClackAccountIds as l, buildClickClackTarget as n, setClickClackRuntime as o, parseClickClackTarget as r, clickClackConfigSchema as s, clickClackPlugin as t, listEnabledClickClackAccounts as u };
|