@elizaos/agent 0.25.8 → 2.0.0-alpha.144
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/LICENSE +1 -1
- package/apps/app-companion/src/actions/emote.d.ts +10 -0
- package/apps/app-companion/src/actions/emote.d.ts.map +1 -0
- package/apps/app-companion/src/actions/emote.js +79 -0
- package/apps/app-companion/src/emotes/catalog.d.ts +31 -0
- package/apps/app-companion/src/emotes/catalog.d.ts.map +1 -0
- package/apps/app-companion/src/emotes/catalog.js +402 -0
- package/apps/app-companion/src/plugin.d.ts +9 -0
- package/apps/app-companion/src/plugin.d.ts.map +1 -0
- package/apps/app-companion/src/plugin.js +15 -0
- package/apps/app-knowledge/src/routes.d.ts +23 -0
- package/apps/app-knowledge/src/routes.d.ts.map +1 -0
- package/apps/app-knowledge/src/routes.js +956 -0
- package/apps/app-knowledge/src/service-loader.d.ts +51 -0
- package/apps/app-knowledge/src/service-loader.d.ts.map +1 -0
- package/apps/app-knowledge/src/service-loader.js +34 -0
- package/apps/app-lifeops/src/action.d.ts +3 -0
- package/apps/app-lifeops/src/action.d.ts.map +1 -0
- package/apps/app-lifeops/src/action.js +332 -0
- package/apps/app-lifeops/src/actions/calendar.d.ts +19 -0
- package/apps/app-lifeops/src/actions/calendar.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/calendar.js +3143 -0
- package/apps/app-lifeops/src/actions/gmail.d.ts +33 -0
- package/apps/app-lifeops/src/actions/gmail.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/gmail.js +1734 -0
- package/apps/app-lifeops/src/actions/life-goal-extractor.d.ts +69 -0
- package/apps/app-lifeops/src/actions/life-goal-extractor.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/life-goal-extractor.js +354 -0
- package/apps/app-lifeops/src/actions/life-param-extractor.d.ts +78 -0
- package/apps/app-lifeops/src/actions/life-param-extractor.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/life-param-extractor.js +423 -0
- package/apps/app-lifeops/src/actions/life-recent-context.d.ts +9 -0
- package/apps/app-lifeops/src/actions/life-recent-context.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/life-recent-context.js +84 -0
- package/apps/app-lifeops/src/actions/life-update-extractor.d.ts +27 -0
- package/apps/app-lifeops/src/actions/life-update-extractor.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/life-update-extractor.js +195 -0
- package/apps/app-lifeops/src/actions/life.d.ts +9 -0
- package/apps/app-lifeops/src/actions/life.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/life.extractor.d.ts +18 -0
- package/apps/app-lifeops/src/actions/life.extractor.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/life.extractor.js +264 -0
- package/apps/app-lifeops/src/actions/life.js +3379 -0
- package/apps/app-lifeops/src/actions/lifeops-extraction-config.d.ts +16 -0
- package/apps/app-lifeops/src/actions/lifeops-extraction-config.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/lifeops-extraction-config.js +25 -0
- package/apps/app-lifeops/src/actions/lifeops-google-helpers.d.ts +62 -0
- package/apps/app-lifeops/src/actions/lifeops-google-helpers.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/lifeops-google-helpers.js +607 -0
- package/apps/app-lifeops/src/actions/timezone-normalization.d.ts +3 -0
- package/apps/app-lifeops/src/actions/timezone-normalization.d.ts.map +1 -0
- package/apps/app-lifeops/src/actions/timezone-normalization.js +105 -0
- package/apps/app-lifeops/src/lifeops/app-state.d.ts +11 -0
- package/apps/app-lifeops/src/lifeops/app-state.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/app-state.js +32 -0
- package/apps/app-lifeops/src/lifeops/apple-reminders.d.ts +58 -0
- package/apps/app-lifeops/src/lifeops/apple-reminders.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/apple-reminders.js +325 -0
- package/apps/app-lifeops/src/lifeops/defaults.d.ts +24 -0
- package/apps/app-lifeops/src/lifeops/defaults.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/defaults.js +205 -0
- package/apps/app-lifeops/src/lifeops/engine.d.ts +8 -0
- package/apps/app-lifeops/src/lifeops/engine.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/engine.js +389 -0
- package/apps/app-lifeops/src/lifeops/goal-grounding.d.ts +54 -0
- package/apps/app-lifeops/src/lifeops/goal-grounding.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/goal-grounding.js +147 -0
- package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.d.ts +12 -0
- package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.js +154 -0
- package/apps/app-lifeops/src/lifeops/google-api-error.d.ts +7 -0
- package/apps/app-lifeops/src/lifeops/google-api-error.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-api-error.js +35 -0
- package/apps/app-lifeops/src/lifeops/google-calendar.d.ts +53 -0
- package/apps/app-lifeops/src/lifeops/google-calendar.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-calendar.js +268 -0
- package/apps/app-lifeops/src/lifeops/google-connector-gateway.d.ts +19 -0
- package/apps/app-lifeops/src/lifeops/google-connector-gateway.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-connector-gateway.js +65 -0
- package/apps/app-lifeops/src/lifeops/google-fetch.d.ts +11 -0
- package/apps/app-lifeops/src/lifeops/google-fetch.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-fetch.js +85 -0
- package/apps/app-lifeops/src/lifeops/google-gmail.d.ts +54 -0
- package/apps/app-lifeops/src/lifeops/google-gmail.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-gmail.js +471 -0
- package/apps/app-lifeops/src/lifeops/google-managed-client.d.ts +127 -0
- package/apps/app-lifeops/src/lifeops/google-managed-client.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-managed-client.js +294 -0
- package/apps/app-lifeops/src/lifeops/google-oauth.d.ts +61 -0
- package/apps/app-lifeops/src/lifeops/google-oauth.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-oauth.js +491 -0
- package/apps/app-lifeops/src/lifeops/google-scopes.d.ts +13 -0
- package/apps/app-lifeops/src/lifeops/google-scopes.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/google-scopes.js +96 -0
- package/apps/app-lifeops/src/lifeops/owner-profile.d.ts +15 -0
- package/apps/app-lifeops/src/lifeops/owner-profile.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/owner-profile.js +194 -0
- package/apps/app-lifeops/src/lifeops/repository.d.ts +209 -0
- package/apps/app-lifeops/src/lifeops/repository.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/repository.js +3187 -0
- package/apps/app-lifeops/src/lifeops/runtime.d.ts +14 -0
- package/apps/app-lifeops/src/lifeops/runtime.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/runtime.js +120 -0
- package/apps/app-lifeops/src/lifeops/seed-routines.d.ts +20 -0
- package/apps/app-lifeops/src/lifeops/seed-routines.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/seed-routines.js +111 -0
- package/apps/app-lifeops/src/lifeops/service.d.ts +275 -0
- package/apps/app-lifeops/src/lifeops/service.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/service.js +9260 -0
- package/apps/app-lifeops/src/lifeops/sql.d.ts +31 -0
- package/apps/app-lifeops/src/lifeops/sql.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/sql.js +247 -0
- package/apps/app-lifeops/src/lifeops/time.d.ts +17 -0
- package/apps/app-lifeops/src/lifeops/time.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/time.js +132 -0
- package/apps/app-lifeops/src/lifeops/twilio.d.ts +25 -0
- package/apps/app-lifeops/src/lifeops/twilio.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/twilio.js +157 -0
- package/apps/app-lifeops/src/lifeops/x-poster.d.ts +19 -0
- package/apps/app-lifeops/src/lifeops/x-poster.d.ts.map +1 -0
- package/apps/app-lifeops/src/lifeops/x-poster.js +148 -0
- package/apps/app-lifeops/src/plugin.d.ts +19 -0
- package/apps/app-lifeops/src/plugin.d.ts.map +1 -0
- package/apps/app-lifeops/src/plugin.js +79 -0
- package/apps/app-lifeops/src/provider.d.ts +3 -0
- package/apps/app-lifeops/src/provider.d.ts.map +1 -0
- package/apps/app-lifeops/src/provider.js +75 -0
- package/apps/app-lifeops/src/providers/lifeops.d.ts +3 -0
- package/apps/app-lifeops/src/providers/lifeops.d.ts.map +1 -0
- package/apps/app-lifeops/src/providers/lifeops.js +157 -0
- package/apps/app-lifeops/src/routes/lifeops-browser-packaging.d.ts +16 -0
- package/apps/app-lifeops/src/routes/lifeops-browser-packaging.d.ts.map +1 -0
- package/apps/app-lifeops/src/routes/lifeops-browser-packaging.js +305 -0
- package/apps/app-lifeops/src/routes/lifeops-routes.d.ts +20 -0
- package/apps/app-lifeops/src/routes/lifeops-routes.d.ts.map +1 -0
- package/apps/app-lifeops/src/routes/lifeops-routes.js +1173 -0
- package/apps/app-lifeops/src/routes/website-blocker-routes.d.ts +7 -0
- package/apps/app-lifeops/src/routes/website-blocker-routes.d.ts.map +1 -0
- package/apps/app-lifeops/src/routes/website-blocker-routes.js +175 -0
- package/apps/app-lifeops/src/selfcontrol/access.d.ts +8 -0
- package/apps/app-lifeops/src/selfcontrol/access.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/access.js +16 -0
- package/apps/app-lifeops/src/selfcontrol/action.d.ts +10 -0
- package/apps/app-lifeops/src/selfcontrol/action.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/action.js +506 -0
- package/apps/app-lifeops/src/selfcontrol/index.d.ts +13 -0
- package/apps/app-lifeops/src/selfcontrol/index.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/index.js +10 -0
- package/apps/app-lifeops/src/selfcontrol/permissions.d.ts +9 -0
- package/apps/app-lifeops/src/selfcontrol/permissions.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/permissions.js +1 -0
- package/apps/app-lifeops/src/selfcontrol/provider.d.ts +4 -0
- package/apps/app-lifeops/src/selfcontrol/provider.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/provider.js +116 -0
- package/apps/app-lifeops/src/selfcontrol/roles.d.ts +13 -0
- package/apps/app-lifeops/src/selfcontrol/roles.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/roles.js +228 -0
- package/apps/app-lifeops/src/selfcontrol/selfcontrol.d.ts +97 -0
- package/apps/app-lifeops/src/selfcontrol/selfcontrol.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/selfcontrol.js +949 -0
- package/apps/app-lifeops/src/selfcontrol/service.d.ts +21 -0
- package/apps/app-lifeops/src/selfcontrol/service.d.ts.map +1 -0
- package/apps/app-lifeops/src/selfcontrol/service.js +268 -0
- package/apps/app-lifeops/src/service.d.ts +8 -0
- package/apps/app-lifeops/src/service.d.ts.map +1 -0
- package/apps/app-lifeops/src/service.js +11 -0
- package/apps/app-steward/src/api/wallet-capability.d.ts +28 -0
- package/apps/app-steward/src/api/wallet-capability.d.ts.map +1 -0
- package/apps/app-steward/src/api/wallet-capability.js +94 -0
- package/apps/app-steward/src/api/wallet-dex-prices.d.ts +43 -0
- package/apps/app-steward/src/api/wallet-dex-prices.d.ts.map +1 -0
- package/apps/app-steward/src/api/wallet-dex-prices.js +149 -0
- package/apps/app-steward/src/api/wallet-evm-balance.d.ts +66 -0
- package/apps/app-steward/src/api/wallet-evm-balance.d.ts.map +1 -0
- package/apps/app-steward/src/api/wallet-evm-balance.js +666 -0
- package/apps/app-steward/src/api/wallet-routes.d.ts +35 -0
- package/apps/app-steward/src/api/wallet-routes.d.ts.map +1 -0
- package/apps/app-steward/src/api/wallet-routes.js +470 -0
- package/apps/app-steward/src/api/wallet-rpc.d.ts +67 -0
- package/apps/app-steward/src/api/wallet-rpc.d.ts.map +1 -0
- package/apps/app-steward/src/api/wallet-rpc.js +453 -0
- package/apps/app-steward/src/api/wallet.d.ts +60 -0
- package/apps/app-steward/src/api/wallet.d.ts.map +1 -0
- package/apps/app-steward/src/api/wallet.js +639 -0
- package/apps/app-steward/src/routes/server-wallet-trade.d.ts +27 -0
- package/apps/app-steward/src/routes/server-wallet-trade.d.ts.map +1 -0
- package/apps/app-steward/src/routes/server-wallet-trade.js +69 -0
- package/apps/app-steward/src/routes/wallet-core-routes.d.ts +16 -0
- package/apps/app-steward/src/routes/wallet-core-routes.d.ts.map +1 -0
- package/apps/app-steward/src/routes/wallet-core-routes.js +46 -0
- package/apps/app-steward/src/routes/wallet-export-guard.d.ts +51 -0
- package/apps/app-steward/src/routes/wallet-export-guard.d.ts.map +1 -0
- package/apps/app-steward/src/routes/wallet-export-guard.js +248 -0
- package/apps/app-steward/src/services/steward-evm-account.d.ts +58 -0
- package/apps/app-steward/src/services/steward-evm-account.d.ts.map +1 -0
- package/apps/app-steward/src/services/steward-evm-account.js +302 -0
- package/apps/app-steward/src/services/steward-evm-bridge.d.ts +35 -0
- package/apps/app-steward/src/services/steward-evm-bridge.d.ts.map +1 -0
- package/apps/app-steward/src/services/steward-evm-bridge.js +99 -0
- package/apps/app-training/src/core/cli.d.ts +11 -0
- package/apps/app-training/src/core/cli.d.ts.map +1 -0
- package/apps/app-training/src/core/cli.js +302 -0
- package/apps/app-training/src/core/context-audit.d.ts +51 -0
- package/apps/app-training/src/core/context-audit.d.ts.map +1 -0
- package/apps/app-training/src/core/context-audit.js +141 -0
- package/apps/app-training/src/core/context-catalog.d.ts +47 -0
- package/apps/app-training/src/core/context-catalog.d.ts.map +1 -0
- package/apps/app-training/src/core/context-catalog.js +259 -0
- package/apps/app-training/src/core/context-types.d.ts +3 -0
- package/apps/app-training/src/core/context-types.d.ts.map +1 -0
- package/apps/app-training/src/core/context-types.js +11 -0
- package/apps/app-training/src/core/dataset-generator.d.ts +135 -0
- package/apps/app-training/src/core/dataset-generator.d.ts.map +1 -0
- package/apps/app-training/src/core/dataset-generator.js +703 -0
- package/apps/app-training/src/core/replay-validator.d.ts +96 -0
- package/apps/app-training/src/core/replay-validator.d.ts.map +1 -0
- package/apps/app-training/src/core/replay-validator.js +265 -0
- package/apps/app-training/src/core/roleplay-executor.d.ts +123 -0
- package/apps/app-training/src/core/roleplay-executor.d.ts.map +1 -0
- package/apps/app-training/src/core/roleplay-executor.js +645 -0
- package/apps/app-training/src/core/roleplay-trajectories.d.ts +54 -0
- package/apps/app-training/src/core/roleplay-trajectories.d.ts.map +1 -0
- package/apps/app-training/src/core/roleplay-trajectories.js +73 -0
- package/apps/app-training/src/core/scenario-blueprints.d.ts +62 -0
- package/apps/app-training/src/core/scenario-blueprints.d.ts.map +1 -0
- package/apps/app-training/src/core/scenario-blueprints.js +790 -0
- package/apps/app-training/src/core/trajectory-task-datasets.d.ts +38 -0
- package/apps/app-training/src/core/trajectory-task-datasets.d.ts.map +1 -0
- package/apps/app-training/src/core/trajectory-task-datasets.js +281 -0
- package/apps/app-training/src/core/vertex-tuning.d.ts +139 -0
- package/apps/app-training/src/core/vertex-tuning.d.ts.map +1 -0
- package/apps/app-training/src/core/vertex-tuning.js +234 -0
- package/apps/app-training/src/services/index.d.ts +3 -0
- package/apps/app-training/src/services/index.d.ts.map +1 -0
- package/apps/app-training/src/services/index.js +1 -0
- package/apps/app-training/src/services/training-backend-check.d.ts +8 -0
- package/apps/app-training/src/services/training-backend-check.d.ts.map +1 -0
- package/apps/app-training/src/services/training-backend-check.js +28 -0
- package/apps/app-training/src/services/training-service-like.d.ts +38 -0
- package/apps/app-training/src/services/training-service-like.d.ts.map +1 -0
- package/apps/app-training/src/services/training-service-like.js +1 -0
- package/package.json +489 -34
- package/packages/agent/src/actions/app-control.d.ts +17 -0
- package/packages/agent/src/actions/app-control.d.ts.map +1 -0
- package/packages/agent/src/actions/app-control.js +212 -0
- package/packages/agent/src/actions/calendar.d.ts +19 -0
- package/packages/agent/src/actions/calendar.d.ts.map +1 -0
- package/packages/agent/src/actions/calendar.js +3143 -0
- package/packages/agent/src/actions/context-signal-lexicon.d.ts +17 -0
- package/packages/agent/src/actions/context-signal-lexicon.d.ts.map +1 -0
- package/packages/agent/src/actions/context-signal-lexicon.js +201 -0
- package/packages/agent/src/actions/context-signal.d.ts +46 -0
- package/packages/agent/src/actions/context-signal.d.ts.map +1 -0
- package/packages/agent/src/actions/context-signal.js +134 -0
- package/packages/agent/src/actions/entity-actions.d.ts +4 -0
- package/packages/agent/src/actions/entity-actions.d.ts.map +1 -0
- package/packages/agent/src/actions/entity-actions.js +344 -0
- package/packages/agent/src/actions/gmail.d.ts +33 -0
- package/packages/agent/src/actions/gmail.d.ts.map +1 -0
- package/packages/agent/src/actions/gmail.js +1734 -0
- package/packages/agent/src/actions/grounded-action-reply.d.ts +22 -0
- package/packages/agent/src/actions/grounded-action-reply.d.ts.map +1 -0
- package/packages/agent/src/actions/grounded-action-reply.js +309 -0
- package/packages/agent/src/actions/inbox-digest.d.ts +2 -0
- package/packages/agent/src/actions/inbox-digest.d.ts.map +1 -0
- package/packages/agent/src/actions/inbox-digest.js +1 -0
- package/packages/agent/src/actions/inbox-respond.d.ts +2 -0
- package/packages/agent/src/actions/inbox-respond.d.ts.map +1 -0
- package/packages/agent/src/actions/inbox-respond.js +1 -0
- package/packages/agent/src/actions/inbox-triage.d.ts +2 -0
- package/packages/agent/src/actions/inbox-triage.d.ts.map +1 -0
- package/packages/agent/src/actions/inbox-triage.js +1 -0
- package/packages/agent/src/actions/inbox.d.ts +3 -0
- package/packages/agent/src/actions/inbox.d.ts.map +1 -0
- package/packages/agent/src/actions/inbox.js +856 -0
- package/packages/agent/src/actions/index.d.ts +11 -0
- package/packages/agent/src/actions/index.d.ts.map +1 -0
- package/packages/agent/src/actions/index.js +10 -0
- package/packages/agent/src/actions/life-goal-extractor.d.ts +69 -0
- package/packages/agent/src/actions/life-goal-extractor.d.ts.map +1 -0
- package/packages/agent/src/actions/life-goal-extractor.js +354 -0
- package/packages/agent/src/actions/life-param-extractor.d.ts +78 -0
- package/packages/agent/src/actions/life-param-extractor.d.ts.map +1 -0
- package/packages/agent/src/actions/life-param-extractor.js +423 -0
- package/packages/agent/src/actions/life-recent-context.d.ts +9 -0
- package/packages/agent/src/actions/life-recent-context.d.ts.map +1 -0
- package/packages/agent/src/actions/life-recent-context.js +84 -0
- package/packages/agent/src/actions/life-update-extractor.d.ts +27 -0
- package/packages/agent/src/actions/life-update-extractor.d.ts.map +1 -0
- package/packages/agent/src/actions/life-update-extractor.js +195 -0
- package/packages/agent/src/actions/life.d.ts +9 -0
- package/packages/agent/src/actions/life.d.ts.map +1 -0
- package/packages/agent/src/actions/life.extractor.d.ts +18 -0
- package/packages/agent/src/actions/life.extractor.d.ts.map +1 -0
- package/packages/agent/src/actions/life.extractor.js +264 -0
- package/packages/agent/src/actions/life.js +3379 -0
- package/packages/agent/src/actions/lifeops-extraction-config.d.ts +16 -0
- package/packages/agent/src/actions/lifeops-extraction-config.d.ts.map +1 -0
- package/packages/agent/src/actions/lifeops-extraction-config.js +25 -0
- package/packages/agent/src/actions/lifeops-google-helpers.d.ts +62 -0
- package/packages/agent/src/actions/lifeops-google-helpers.d.ts.map +1 -0
- package/packages/agent/src/actions/lifeops-google-helpers.js +607 -0
- package/packages/agent/src/actions/manage-tasks.d.ts +8 -0
- package/packages/agent/src/actions/manage-tasks.d.ts.map +1 -0
- package/packages/agent/src/actions/manage-tasks.js +253 -0
- package/packages/agent/src/actions/read-channel.d.ts +3 -0
- package/packages/agent/src/actions/read-channel.d.ts.map +1 -0
- package/packages/agent/src/actions/read-channel.js +224 -0
- package/packages/agent/src/actions/restart.d.ts +19 -0
- package/packages/agent/src/actions/restart.d.ts.map +1 -0
- package/packages/agent/src/actions/restart.js +109 -0
- package/packages/agent/src/actions/search-conversations.d.ts +3 -0
- package/packages/agent/src/actions/search-conversations.d.ts.map +1 -0
- package/packages/agent/src/actions/search-conversations.js +181 -0
- package/packages/agent/src/actions/send-admin-message.d.ts +3 -0
- package/packages/agent/src/actions/send-admin-message.d.ts.map +1 -0
- package/packages/agent/src/actions/send-admin-message.js +106 -0
- package/packages/agent/src/actions/send-message.d.ts +11 -0
- package/packages/agent/src/actions/send-message.d.ts.map +1 -0
- package/packages/agent/src/actions/send-message.js +243 -0
- package/packages/agent/src/actions/set-user-name.d.ts +13 -0
- package/packages/agent/src/actions/set-user-name.d.ts.map +1 -0
- package/packages/agent/src/actions/set-user-name.js +82 -0
- package/packages/agent/src/actions/skill-command.d.ts +20 -0
- package/packages/agent/src/actions/skill-command.d.ts.map +1 -0
- package/packages/agent/src/actions/skill-command.js +141 -0
- package/packages/agent/src/actions/stream-control.d.ts +11 -0
- package/packages/agent/src/actions/stream-control.d.ts.map +1 -0
- package/packages/agent/src/actions/stream-control.js +112 -0
- package/packages/agent/src/actions/terminal.d.ts +15 -0
- package/packages/agent/src/actions/terminal.d.ts.map +1 -0
- package/packages/agent/src/actions/terminal.js +453 -0
- package/packages/agent/src/actions/timezone-normalization.d.ts +3 -0
- package/packages/agent/src/actions/timezone-normalization.d.ts.map +1 -0
- package/packages/agent/src/actions/timezone-normalization.js +107 -0
- package/packages/agent/src/actions/update-owner-profile.d.ts +3 -0
- package/packages/agent/src/actions/update-owner-profile.d.ts.map +1 -0
- package/packages/agent/src/actions/update-owner-profile.js +131 -0
- package/packages/agent/src/actions/web-search.d.ts +16 -0
- package/packages/agent/src/actions/web-search.d.ts.map +1 -0
- package/packages/agent/src/actions/web-search.js +196 -0
- package/packages/agent/src/activity-profile/analyzer.d.ts +23 -0
- package/packages/agent/src/activity-profile/analyzer.d.ts.map +1 -0
- package/packages/agent/src/activity-profile/analyzer.js +531 -0
- package/packages/agent/src/activity-profile/proactive-planner.d.ts +49 -0
- package/packages/agent/src/activity-profile/proactive-planner.d.ts.map +1 -0
- package/packages/agent/src/activity-profile/proactive-planner.js +455 -0
- package/packages/agent/src/activity-profile/proactive-worker.d.ts +32 -0
- package/packages/agent/src/activity-profile/proactive-worker.d.ts.map +1 -0
- package/packages/agent/src/activity-profile/proactive-worker.js +523 -0
- package/packages/agent/src/activity-profile/profile-metadata.d.ts +10 -0
- package/packages/agent/src/activity-profile/profile-metadata.d.ts.map +1 -0
- package/packages/agent/src/activity-profile/profile-metadata.js +25 -0
- package/packages/agent/src/activity-profile/service.d.ts +11 -0
- package/packages/agent/src/activity-profile/service.d.ts.map +1 -0
- package/packages/agent/src/activity-profile/service.js +226 -0
- package/packages/agent/src/activity-profile/types.d.ts +89 -0
- package/packages/agent/src/activity-profile/types.d.ts.map +1 -0
- package/packages/agent/src/activity-profile/types.js +29 -0
- package/packages/agent/src/api/agent-admin-routes.d.ts +39 -0
- package/packages/agent/src/api/agent-admin-routes.d.ts.map +1 -0
- package/packages/agent/src/api/agent-admin-routes.js +155 -0
- package/packages/agent/src/api/agent-lifecycle-routes.d.ts +16 -0
- package/packages/agent/src/api/agent-lifecycle-routes.d.ts.map +1 -0
- package/packages/agent/src/api/agent-lifecycle-routes.js +94 -0
- package/packages/agent/src/api/agent-model.d.ts +5 -0
- package/packages/agent/src/api/agent-model.d.ts.map +1 -0
- package/packages/agent/src/api/agent-model.js +154 -0
- package/packages/agent/src/api/agent-status-routes.d.ts +96 -0
- package/packages/agent/src/api/agent-status-routes.d.ts.map +1 -0
- package/packages/agent/src/api/agent-status-routes.js +274 -0
- package/packages/agent/src/api/agent-transfer-routes.d.ts +16 -0
- package/packages/agent/src/api/agent-transfer-routes.d.ts.map +1 -0
- package/packages/agent/src/api/agent-transfer-routes.js +124 -0
- package/packages/agent/src/api/app-package-routes.d.ts +7 -0
- package/packages/agent/src/api/app-package-routes.d.ts.map +1 -0
- package/packages/agent/src/api/app-package-routes.js +59 -0
- package/packages/agent/src/api/apps-routes.d.ts +24 -0
- package/packages/agent/src/api/apps-routes.d.ts.map +1 -0
- package/packages/agent/src/api/apps-routes.js +477 -0
- package/packages/agent/src/api/auth-routes.d.ts +11 -0
- package/packages/agent/src/api/auth-routes.d.ts.map +1 -0
- package/packages/agent/src/api/auth-routes.js +74 -0
- package/packages/agent/src/api/avatar-routes.d.ts +11 -0
- package/packages/agent/src/api/avatar-routes.d.ts.map +1 -0
- package/packages/agent/src/api/avatar-routes.js +205 -0
- package/packages/agent/src/api/binance-skill-helpers.d.ts +26 -0
- package/packages/agent/src/api/binance-skill-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/binance-skill-helpers.js +776 -0
- package/packages/agent/src/api/bluebubbles-routes.d.ts +10 -0
- package/packages/agent/src/api/bluebubbles-routes.d.ts.map +1 -0
- package/packages/agent/src/api/bluebubbles-routes.js +129 -0
- package/packages/agent/src/api/browser-workspace-routes.d.ts +5 -0
- package/packages/agent/src/api/browser-workspace-routes.d.ts.map +1 -0
- package/packages/agent/src/api/browser-workspace-routes.js +100 -0
- package/packages/agent/src/api/bsc-trade.d.ts +40 -0
- package/packages/agent/src/api/bsc-trade.d.ts.map +1 -0
- package/packages/agent/src/api/bsc-trade.js +786 -0
- package/packages/agent/src/api/bug-report-routes.d.ts +10 -0
- package/packages/agent/src/api/bug-report-routes.d.ts.map +1 -0
- package/packages/agent/src/api/bug-report-routes.js +264 -0
- package/packages/agent/src/api/character-routes.d.ts +51 -0
- package/packages/agent/src/api/character-routes.d.ts.map +1 -0
- package/packages/agent/src/api/character-routes.js +367 -0
- package/packages/agent/src/api/chat-augmentation.d.ts +89 -0
- package/packages/agent/src/api/chat-augmentation.d.ts.map +1 -0
- package/packages/agent/src/api/chat-augmentation.js +396 -0
- package/packages/agent/src/api/chat-routes.d.ts +106 -0
- package/packages/agent/src/api/chat-routes.d.ts.map +1 -0
- package/packages/agent/src/api/chat-routes.js +1485 -0
- package/packages/agent/src/api/chat-text-helpers.d.ts +11 -0
- package/packages/agent/src/api/chat-text-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/chat-text-helpers.js +183 -0
- package/packages/agent/src/api/cloud-billing-routes.d.ts +9 -0
- package/packages/agent/src/api/cloud-billing-routes.d.ts.map +1 -0
- package/packages/agent/src/api/cloud-billing-routes.js +388 -0
- package/packages/agent/src/api/cloud-compat-routes.d.ts +10 -0
- package/packages/agent/src/api/cloud-compat-routes.d.ts.map +1 -0
- package/packages/agent/src/api/cloud-compat-routes.js +212 -0
- package/packages/agent/src/api/cloud-provisioning.d.ts +14 -0
- package/packages/agent/src/api/cloud-provisioning.d.ts.map +1 -0
- package/packages/agent/src/api/cloud-provisioning.js +30 -0
- package/packages/agent/src/api/cloud-relay-routes.d.ts +22 -0
- package/packages/agent/src/api/cloud-relay-routes.d.ts.map +1 -0
- package/packages/agent/src/api/cloud-relay-routes.js +52 -0
- package/packages/agent/src/api/cloud-routes.d.ts +80 -0
- package/packages/agent/src/api/cloud-routes.d.ts.map +1 -0
- package/packages/agent/src/api/cloud-routes.js +582 -0
- package/packages/agent/src/api/cloud-status-routes.d.ts +15 -0
- package/packages/agent/src/api/cloud-status-routes.d.ts.map +1 -0
- package/packages/agent/src/api/cloud-status-routes.js +143 -0
- package/packages/agent/src/api/coding-agents-auth-sanitize.d.ts +23 -0
- package/packages/agent/src/api/coding-agents-auth-sanitize.d.ts.map +1 -0
- package/packages/agent/src/api/coding-agents-auth-sanitize.js +39 -0
- package/packages/agent/src/api/coding-agents-preflight-normalize.d.ts +29 -0
- package/packages/agent/src/api/coding-agents-preflight-normalize.d.ts.map +1 -0
- package/packages/agent/src/api/coding-agents-preflight-normalize.js +45 -0
- package/packages/agent/src/api/compat-utils.d.ts +49 -0
- package/packages/agent/src/api/compat-utils.d.ts.map +1 -0
- package/packages/agent/src/api/compat-utils.js +126 -0
- package/packages/agent/src/api/config-env.d.ts +43 -0
- package/packages/agent/src/api/config-env.d.ts.map +1 -0
- package/packages/agent/src/api/config-env.js +284 -0
- package/packages/agent/src/api/config-routes.d.ts +33 -0
- package/packages/agent/src/api/config-routes.d.ts.map +1 -0
- package/packages/agent/src/api/config-routes.js +253 -0
- package/packages/agent/src/api/connector-health.d.ts +42 -0
- package/packages/agent/src/api/connector-health.d.ts.map +1 -0
- package/packages/agent/src/api/connector-health.js +132 -0
- package/packages/agent/src/api/connector-routes.d.ts +21 -0
- package/packages/agent/src/api/connector-routes.d.ts.map +1 -0
- package/packages/agent/src/api/connector-routes.js +79 -0
- package/packages/agent/src/api/conversation-routes.d.ts +42 -0
- package/packages/agent/src/api/conversation-routes.d.ts.map +1 -0
- package/packages/agent/src/api/conversation-routes.js +1128 -0
- package/packages/agent/src/api/coordinator-types.d.ts +47 -0
- package/packages/agent/src/api/coordinator-types.d.ts.map +1 -0
- package/packages/agent/src/api/coordinator-types.js +1 -0
- package/packages/agent/src/api/coordinator-wiring.d.ts +46 -0
- package/packages/agent/src/api/coordinator-wiring.d.ts.map +1 -0
- package/packages/agent/src/api/coordinator-wiring.js +108 -0
- package/packages/agent/src/api/credit-detection.d.ts +9 -0
- package/packages/agent/src/api/credit-detection.d.ts.map +1 -0
- package/packages/agent/src/api/credit-detection.js +41 -0
- package/packages/agent/src/api/database.d.ts +33 -0
- package/packages/agent/src/api/database.d.ts.map +1 -0
- package/packages/agent/src/api/database.js +1020 -0
- package/packages/agent/src/api/diagnostics-routes.d.ts +53 -0
- package/packages/agent/src/api/diagnostics-routes.d.ts.map +1 -0
- package/packages/agent/src/api/diagnostics-routes.js +250 -0
- package/packages/agent/src/api/discord-avatar-cache.d.ts +10 -0
- package/packages/agent/src/api/discord-avatar-cache.d.ts.map +1 -0
- package/packages/agent/src/api/discord-avatar-cache.js +149 -0
- package/packages/agent/src/api/discord-local-routes.d.ts +12 -0
- package/packages/agent/src/api/discord-local-routes.d.ts.map +1 -0
- package/packages/agent/src/api/discord-local-routes.js +145 -0
- package/packages/agent/src/api/discord-profiles.d.ts +26 -0
- package/packages/agent/src/api/discord-profiles.d.ts.map +1 -0
- package/packages/agent/src/api/discord-profiles.js +282 -0
- package/packages/agent/src/api/drop-routes.d.ts +22 -0
- package/packages/agent/src/api/drop-routes.d.ts.map +1 -0
- package/packages/agent/src/api/drop-routes.js +155 -0
- package/packages/agent/src/api/drop-service.d.ts +26 -0
- package/packages/agent/src/api/drop-service.d.ts.map +1 -0
- package/packages/agent/src/api/drop-service.js +134 -0
- package/packages/agent/src/api/early-logs.d.ts +29 -0
- package/packages/agent/src/api/early-logs.d.ts.map +1 -0
- package/packages/agent/src/api/early-logs.js +96 -0
- package/packages/agent/src/api/health-routes.d.ts +44 -0
- package/packages/agent/src/api/health-routes.d.ts.map +1 -0
- package/packages/agent/src/api/health-routes.js +449 -0
- package/packages/agent/src/api/http-helpers.d.ts +50 -0
- package/packages/agent/src/api/http-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/http-helpers.js +148 -0
- package/packages/agent/src/api/imessage-routes.d.ts +55 -0
- package/packages/agent/src/api/imessage-routes.d.ts.map +1 -0
- package/packages/agent/src/api/imessage-routes.js +231 -0
- package/packages/agent/src/api/inbox-routes.d.ts +48 -0
- package/packages/agent/src/api/inbox-routes.d.ts.map +1 -0
- package/packages/agent/src/api/inbox-routes.js +1547 -0
- package/packages/agent/src/api/index.d.ts +63 -0
- package/packages/agent/src/api/index.d.ts.map +1 -0
- package/packages/agent/src/api/index.js +62 -0
- package/packages/agent/src/api/knowledge-routes.d.ts +2 -0
- package/packages/agent/src/api/knowledge-routes.d.ts.map +1 -0
- package/packages/agent/src/api/knowledge-routes.js +2 -0
- package/packages/agent/src/api/knowledge-service-loader.d.ts +2 -0
- package/packages/agent/src/api/knowledge-service-loader.d.ts.map +1 -0
- package/packages/agent/src/api/knowledge-service-loader.js +2 -0
- package/packages/agent/src/api/lifeops-browser-packaging.d.ts +16 -0
- package/packages/agent/src/api/lifeops-browser-packaging.d.ts.map +1 -0
- package/packages/agent/src/api/lifeops-browser-packaging.js +305 -0
- package/packages/agent/src/api/lifeops-routes.d.ts +20 -0
- package/packages/agent/src/api/lifeops-routes.d.ts.map +1 -0
- package/packages/agent/src/api/lifeops-routes.js +1173 -0
- package/packages/agent/src/api/mcp-routes.d.ts +33 -0
- package/packages/agent/src/api/mcp-routes.d.ts.map +1 -0
- package/packages/agent/src/api/mcp-routes.js +186 -0
- package/packages/agent/src/api/memory-bounds.d.ts +51 -0
- package/packages/agent/src/api/memory-bounds.d.ts.map +1 -0
- package/packages/agent/src/api/memory-bounds.js +81 -0
- package/packages/agent/src/api/memory-routes.d.ts +9 -0
- package/packages/agent/src/api/memory-routes.d.ts.map +1 -0
- package/packages/agent/src/api/memory-routes.js +420 -0
- package/packages/agent/src/api/merkle-tree.d.ts +90 -0
- package/packages/agent/src/api/merkle-tree.d.ts.map +1 -0
- package/packages/agent/src/api/merkle-tree.js +174 -0
- package/packages/agent/src/api/misc-routes.d.ts +64 -0
- package/packages/agent/src/api/misc-routes.d.ts.map +1 -0
- package/packages/agent/src/api/misc-routes.js +557 -0
- package/packages/agent/src/api/model-provider-helpers.d.ts +84 -0
- package/packages/agent/src/api/model-provider-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/model-provider-helpers.js +588 -0
- package/packages/agent/src/api/models-routes.d.ts +14 -0
- package/packages/agent/src/api/models-routes.d.ts.map +1 -0
- package/packages/agent/src/api/models-routes.js +37 -0
- package/packages/agent/src/api/music-player-route-fallback.d.ts +16 -0
- package/packages/agent/src/api/music-player-route-fallback.d.ts.map +1 -0
- package/packages/agent/src/api/music-player-route-fallback.js +65 -0
- package/packages/agent/src/api/nfa-routes.d.ts +5 -0
- package/packages/agent/src/api/nfa-routes.d.ts.map +1 -0
- package/packages/agent/src/api/nfa-routes.js +133 -0
- package/packages/agent/src/api/nft-verify.d.ts +16 -0
- package/packages/agent/src/api/nft-verify.d.ts.map +1 -0
- package/packages/agent/src/api/nft-verify.js +81 -0
- package/packages/agent/src/api/og-tracker.d.ts +28 -0
- package/packages/agent/src/api/og-tracker.d.ts.map +1 -0
- package/packages/agent/src/api/og-tracker.js +60 -0
- package/packages/agent/src/api/onboarding-routes.d.ts +50 -0
- package/packages/agent/src/api/onboarding-routes.d.ts.map +1 -0
- package/packages/agent/src/api/onboarding-routes.js +561 -0
- package/packages/agent/src/api/owner-contact-helpers.d.ts +39 -0
- package/packages/agent/src/api/owner-contact-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/owner-contact-helpers.js +47 -0
- package/packages/agent/src/api/parse-action-block.d.ts +35 -0
- package/packages/agent/src/api/parse-action-block.d.ts.map +1 -0
- package/packages/agent/src/api/parse-action-block.js +110 -0
- package/packages/agent/src/api/permissions-routes-extra.d.ts +30 -0
- package/packages/agent/src/api/permissions-routes-extra.d.ts.map +1 -0
- package/packages/agent/src/api/permissions-routes-extra.js +78 -0
- package/packages/agent/src/api/permissions-routes.d.ts +28 -0
- package/packages/agent/src/api/permissions-routes.d.ts.map +1 -0
- package/packages/agent/src/api/permissions-routes.js +180 -0
- package/packages/agent/src/api/plugin-discovery-helpers.d.ts +147 -0
- package/packages/agent/src/api/plugin-discovery-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/plugin-discovery-helpers.js +1015 -0
- package/packages/agent/src/api/plugin-routes.d.ts +127 -0
- package/packages/agent/src/api/plugin-routes.d.ts.map +1 -0
- package/packages/agent/src/api/plugin-routes.js +1140 -0
- package/packages/agent/src/api/plugin-runtime-apply.d.ts +31 -0
- package/packages/agent/src/api/plugin-runtime-apply.d.ts.map +1 -0
- package/packages/agent/src/api/plugin-runtime-apply.js +217 -0
- package/packages/agent/src/api/plugin-validation.d.ts +86 -0
- package/packages/agent/src/api/plugin-validation.d.ts.map +1 -0
- package/packages/agent/src/api/plugin-validation.js +259 -0
- package/packages/agent/src/api/provider-switch-config.d.ts +60 -0
- package/packages/agent/src/api/provider-switch-config.d.ts.map +1 -0
- package/packages/agent/src/api/provider-switch-config.js +718 -0
- package/packages/agent/src/api/provider-switch-routes.d.ts +22 -0
- package/packages/agent/src/api/provider-switch-routes.d.ts.map +1 -0
- package/packages/agent/src/api/provider-switch-routes.js +92 -0
- package/packages/agent/src/api/rate-limiter.d.ts +29 -0
- package/packages/agent/src/api/rate-limiter.d.ts.map +1 -0
- package/packages/agent/src/api/rate-limiter.js +54 -0
- package/packages/agent/src/api/registry-routes.d.ts +29 -0
- package/packages/agent/src/api/registry-routes.d.ts.map +1 -0
- package/packages/agent/src/api/registry-routes.js +98 -0
- package/packages/agent/src/api/registry-service.d.ts +77 -0
- package/packages/agent/src/api/registry-service.d.ts.map +1 -0
- package/packages/agent/src/api/registry-service.js +190 -0
- package/packages/agent/src/api/relationships-routes.d.ts +7 -0
- package/packages/agent/src/api/relationships-routes.d.ts.map +1 -0
- package/packages/agent/src/api/relationships-routes.js +181 -0
- package/packages/agent/src/api/route-helpers.d.ts +16 -0
- package/packages/agent/src/api/route-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/route-helpers.js +1 -0
- package/packages/agent/src/api/runtime-plugin-routes.d.ts +21 -0
- package/packages/agent/src/api/runtime-plugin-routes.d.ts.map +1 -0
- package/packages/agent/src/api/runtime-plugin-routes.js +132 -0
- package/packages/agent/src/api/sandbox-routes.d.ts +12 -0
- package/packages/agent/src/api/sandbox-routes.d.ts.map +1 -0
- package/packages/agent/src/api/sandbox-routes.js +1334 -0
- package/packages/agent/src/api/server-auth.d.ts +52 -0
- package/packages/agent/src/api/server-auth.d.ts.map +1 -0
- package/packages/agent/src/api/server-auth.js +332 -0
- package/packages/agent/src/api/server-helpers.d.ts +95 -0
- package/packages/agent/src/api/server-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/server-helpers.js +708 -0
- package/packages/agent/src/api/server-startup.d.ts +16 -0
- package/packages/agent/src/api/server-startup.d.ts.map +1 -0
- package/packages/agent/src/api/server-startup.js +14 -0
- package/packages/agent/src/api/server-types.d.ts +216 -0
- package/packages/agent/src/api/server-types.d.ts.map +1 -0
- package/packages/agent/src/api/server-types.js +6 -0
- package/packages/agent/src/api/server.d.ts +144 -0
- package/packages/agent/src/api/server.d.ts.map +1 -0
- package/packages/agent/src/api/server.js +5304 -0
- package/packages/agent/src/api/signal-routes.d.ts +42 -0
- package/packages/agent/src/api/signal-routes.d.ts.map +1 -0
- package/packages/agent/src/api/signal-routes.js +232 -0
- package/packages/agent/src/api/skill-discovery-helpers.d.ts +80 -0
- package/packages/agent/src/api/skill-discovery-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/skill-discovery-helpers.js +381 -0
- package/packages/agent/src/api/skills-routes.d.ts +32 -0
- package/packages/agent/src/api/skills-routes.d.ts.map +1 -0
- package/packages/agent/src/api/skills-routes.js +947 -0
- package/packages/agent/src/api/static-file-server.d.ts +19 -0
- package/packages/agent/src/api/static-file-server.d.ts.map +1 -0
- package/packages/agent/src/api/static-file-server.js +233 -0
- package/packages/agent/src/api/stream-persistence.d.ts +64 -0
- package/packages/agent/src/api/stream-persistence.d.ts.map +1 -0
- package/packages/agent/src/api/stream-persistence.js +231 -0
- package/packages/agent/src/api/stream-route-state.d.ts +56 -0
- package/packages/agent/src/api/stream-route-state.d.ts.map +1 -0
- package/packages/agent/src/api/stream-route-state.js +1 -0
- package/packages/agent/src/api/stream-routes.d.ts +43 -0
- package/packages/agent/src/api/stream-routes.d.ts.map +1 -0
- package/packages/agent/src/api/stream-routes.js +728 -0
- package/packages/agent/src/api/streaming-text.d.ts +9 -0
- package/packages/agent/src/api/streaming-text.d.ts.map +1 -0
- package/packages/agent/src/api/streaming-text.js +85 -0
- package/packages/agent/src/api/streaming-types.d.ts +30 -0
- package/packages/agent/src/api/streaming-types.d.ts.map +1 -0
- package/packages/agent/src/api/streaming-types.js +1 -0
- package/packages/agent/src/api/subscription-routes.d.ts +20 -0
- package/packages/agent/src/api/subscription-routes.d.ts.map +1 -0
- package/packages/agent/src/api/subscription-routes.js +213 -0
- package/packages/agent/src/api/task-agent-message-routing.d.ts +10 -0
- package/packages/agent/src/api/task-agent-message-routing.d.ts.map +1 -0
- package/packages/agent/src/api/task-agent-message-routing.js +62 -0
- package/packages/agent/src/api/telegram-account-routes.d.ts +26 -0
- package/packages/agent/src/api/telegram-account-routes.d.ts.map +1 -0
- package/packages/agent/src/api/telegram-account-routes.js +229 -0
- package/packages/agent/src/api/telegram-setup-routes.d.ts +27 -0
- package/packages/agent/src/api/telegram-setup-routes.d.ts.map +1 -0
- package/packages/agent/src/api/telegram-setup-routes.js +125 -0
- package/packages/agent/src/api/terminal-run-limits.d.ts +5 -0
- package/packages/agent/src/api/terminal-run-limits.d.ts.map +1 -0
- package/packages/agent/src/api/terminal-run-limits.js +22 -0
- package/packages/agent/src/api/trade-safety.d.ts +39 -0
- package/packages/agent/src/api/trade-safety.d.ts.map +1 -0
- package/packages/agent/src/api/trade-safety.js +66 -0
- package/packages/agent/src/api/training-backend-check.d.ts +2 -0
- package/packages/agent/src/api/training-backend-check.d.ts.map +1 -0
- package/packages/agent/src/api/training-backend-check.js +2 -0
- package/packages/agent/src/api/training-routes.d.ts +2 -0
- package/packages/agent/src/api/training-routes.d.ts.map +1 -0
- package/packages/agent/src/api/training-routes.js +2 -0
- package/packages/agent/src/api/training-service-like.d.ts +2 -0
- package/packages/agent/src/api/training-service-like.d.ts.map +1 -0
- package/packages/agent/src/api/training-service-like.js +1 -0
- package/packages/agent/src/api/trajectory-routes.d.ts +3 -0
- package/packages/agent/src/api/trajectory-routes.d.ts.map +1 -0
- package/packages/agent/src/api/trajectory-routes.js +2 -0
- package/packages/agent/src/api/trigger-routes.d.ts +73 -0
- package/packages/agent/src/api/trigger-routes.d.ts.map +1 -0
- package/packages/agent/src/api/trigger-routes.js +308 -0
- package/packages/agent/src/api/tts-routes.d.ts +24 -0
- package/packages/agent/src/api/tts-routes.d.ts.map +1 -0
- package/packages/agent/src/api/tts-routes.js +200 -0
- package/packages/agent/src/api/twitter-verify.d.ts +25 -0
- package/packages/agent/src/api/twitter-verify.d.ts.map +1 -0
- package/packages/agent/src/api/twitter-verify.js +168 -0
- package/packages/agent/src/api/tx-service.d.ts +51 -0
- package/packages/agent/src/api/tx-service.d.ts.map +1 -0
- package/packages/agent/src/api/tx-service.js +160 -0
- package/packages/agent/src/api/update-routes.d.ts +19 -0
- package/packages/agent/src/api/update-routes.d.ts.map +1 -0
- package/packages/agent/src/api/update-routes.js +54 -0
- package/packages/agent/src/api/wallet-bsc-routes.d.ts +67 -0
- package/packages/agent/src/api/wallet-bsc-routes.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-bsc-routes.js +322 -0
- package/packages/agent/src/api/wallet-capability.d.ts +33 -0
- package/packages/agent/src/api/wallet-capability.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-capability.js +124 -0
- package/packages/agent/src/api/wallet-dex-prices.d.ts +43 -0
- package/packages/agent/src/api/wallet-dex-prices.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-dex-prices.js +153 -0
- package/packages/agent/src/api/wallet-env-sync.d.ts +2 -0
- package/packages/agent/src/api/wallet-env-sync.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-env-sync.js +104 -0
- package/packages/agent/src/api/wallet-evm-balance.d.ts +66 -0
- package/packages/agent/src/api/wallet-evm-balance.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-evm-balance.js +667 -0
- package/packages/agent/src/api/wallet-routes.d.ts +55 -0
- package/packages/agent/src/api/wallet-routes.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-routes.js +833 -0
- package/packages/agent/src/api/wallet-rpc.d.ts +78 -0
- package/packages/agent/src/api/wallet-rpc.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-rpc.js +476 -0
- package/packages/agent/src/api/wallet-trade-routes.d.ts +110 -0
- package/packages/agent/src/api/wallet-trade-routes.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-trade-routes.js +353 -0
- package/packages/agent/src/api/wallet-trading-profile.d.ts +56 -0
- package/packages/agent/src/api/wallet-trading-profile.d.ts.map +1 -0
- package/packages/agent/src/api/wallet-trading-profile.js +565 -0
- package/packages/agent/src/api/wallet.d.ts +64 -0
- package/packages/agent/src/api/wallet.d.ts.map +1 -0
- package/packages/agent/src/api/wallet.js +674 -0
- package/packages/agent/src/api/website-blocker-routes.d.ts +7 -0
- package/packages/agent/src/api/website-blocker-routes.d.ts.map +1 -0
- package/packages/agent/src/api/website-blocker-routes.js +174 -0
- package/packages/agent/src/api/whatsapp-routes.d.ts +39 -0
- package/packages/agent/src/api/whatsapp-routes.d.ts.map +1 -0
- package/packages/agent/src/api/whatsapp-routes.js +226 -0
- package/packages/agent/src/api/workbench-helpers.d.ts +39 -0
- package/packages/agent/src/api/workbench-helpers.d.ts.map +1 -0
- package/packages/agent/src/api/workbench-helpers.js +133 -0
- package/packages/agent/src/api/workbench-routes.d.ts +53 -0
- package/packages/agent/src/api/workbench-routes.d.ts.map +1 -0
- package/packages/agent/src/api/workbench-routes.js +405 -0
- package/packages/agent/src/api/zip-utils.d.ts +8 -0
- package/packages/agent/src/api/zip-utils.d.ts.map +1 -0
- package/packages/agent/src/api/zip-utils.js +115 -0
- package/packages/agent/src/auth/anthropic.d.ts +29 -0
- package/packages/agent/src/auth/anthropic.d.ts.map +1 -0
- package/packages/agent/src/auth/anthropic.js +43 -0
- package/packages/agent/src/auth/claude-code-stealth.d.ts +2 -0
- package/packages/agent/src/auth/claude-code-stealth.d.ts.map +1 -0
- package/packages/agent/src/auth/claude-code-stealth.js +114 -0
- package/packages/agent/src/auth/credentials.d.ts +74 -0
- package/packages/agent/src/auth/credentials.d.ts.map +1 -0
- package/packages/agent/src/auth/credentials.js +379 -0
- package/packages/agent/src/auth/index.d.ts +6 -0
- package/packages/agent/src/auth/index.d.ts.map +1 -0
- package/packages/agent/src/auth/index.js +5 -0
- package/packages/agent/src/auth/openai-codex.d.ts +32 -0
- package/packages/agent/src/auth/openai-codex.d.ts.map +1 -0
- package/packages/agent/src/auth/openai-codex.js +81 -0
- package/packages/agent/src/auth/types.d.ts +18 -0
- package/packages/agent/src/auth/types.d.ts.map +1 -0
- package/packages/agent/src/auth/types.js +8 -0
- package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.d.ts +16 -0
- package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.d.ts.map +1 -0
- package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.js +78 -0
- package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.d.ts +26 -0
- package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.d.ts.map +1 -0
- package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.js +342 -0
- package/packages/agent/src/auth/vendor/pi-oauth/pkce.d.ts +9 -0
- package/packages/agent/src/auth/vendor/pi-oauth/pkce.d.ts.map +1 -0
- package/packages/agent/src/auth/vendor/pi-oauth/pkce.js +21 -0
- package/packages/agent/src/autonomy/index.d.ts +48 -0
- package/packages/agent/src/autonomy/index.d.ts.map +1 -0
- package/packages/agent/src/autonomy/index.js +330 -0
- package/packages/agent/src/awareness/index.d.ts +2 -0
- package/packages/agent/src/awareness/index.d.ts.map +1 -0
- package/packages/agent/src/awareness/index.js +1 -0
- package/packages/agent/src/awareness/registry.d.ts +27 -0
- package/packages/agent/src/awareness/registry.d.ts.map +1 -0
- package/packages/agent/src/awareness/registry.js +161 -0
- package/packages/agent/src/bin.d.ts +3 -0
- package/packages/agent/src/bin.d.ts.map +1 -0
- package/packages/agent/src/bin.js +6 -0
- package/packages/agent/src/cli/benchmark.d.ts +10 -0
- package/packages/agent/src/cli/benchmark.d.ts.map +1 -0
- package/packages/agent/src/cli/benchmark.js +293 -0
- package/packages/agent/src/cli/index.d.ts +2 -0
- package/packages/agent/src/cli/index.d.ts.map +1 -0
- package/packages/agent/src/cli/index.js +70 -0
- package/packages/agent/src/cli/parse-duration.d.ts +5 -0
- package/packages/agent/src/cli/parse-duration.d.ts.map +1 -0
- package/packages/agent/src/cli/parse-duration.js +27 -0
- package/packages/agent/src/cloud/auth.d.ts +19 -0
- package/packages/agent/src/cloud/auth.d.ts.map +1 -0
- package/packages/agent/src/cloud/auth.js +110 -0
- package/packages/agent/src/cloud/backup.d.ts +18 -0
- package/packages/agent/src/cloud/backup.d.ts.map +1 -0
- package/packages/agent/src/cloud/backup.js +42 -0
- package/packages/agent/src/cloud/base-url.d.ts +3 -0
- package/packages/agent/src/cloud/base-url.d.ts.map +1 -0
- package/packages/agent/src/cloud/base-url.js +52 -0
- package/packages/agent/src/cloud/bridge-client.d.ts +126 -0
- package/packages/agent/src/cloud/bridge-client.d.ts.map +1 -0
- package/packages/agent/src/cloud/bridge-client.js +380 -0
- package/packages/agent/src/cloud/cloud-manager.d.ts +32 -0
- package/packages/agent/src/cloud/cloud-manager.d.ts.map +1 -0
- package/packages/agent/src/cloud/cloud-manager.js +121 -0
- package/packages/agent/src/cloud/cloud-proxy.d.ts +20 -0
- package/packages/agent/src/cloud/cloud-proxy.d.ts.map +1 -0
- package/packages/agent/src/cloud/cloud-proxy.js +34 -0
- package/packages/agent/src/cloud/cloud-wallet.d.ts +94 -0
- package/packages/agent/src/cloud/cloud-wallet.d.ts.map +1 -0
- package/packages/agent/src/cloud/cloud-wallet.js +199 -0
- package/packages/agent/src/cloud/index.d.ts +7 -0
- package/packages/agent/src/cloud/index.d.ts.map +1 -0
- package/packages/agent/src/cloud/index.js +6 -0
- package/packages/agent/src/cloud/reconnect.d.ts +26 -0
- package/packages/agent/src/cloud/reconnect.d.ts.map +1 -0
- package/packages/agent/src/cloud/reconnect.js +89 -0
- package/packages/agent/src/cloud/validate-url.d.ts +2 -0
- package/packages/agent/src/cloud/validate-url.d.ts.map +1 -0
- package/packages/agent/src/cloud/validate-url.js +162 -0
- package/packages/agent/src/config/character-schema.d.ts +25 -0
- package/packages/agent/src/config/character-schema.d.ts.map +1 -0
- package/packages/agent/src/config/character-schema.js +39 -0
- package/packages/agent/src/config/config.d.ts +6 -0
- package/packages/agent/src/config/config.d.ts.map +1 -0
- package/packages/agent/src/config/config.js +277 -0
- package/packages/agent/src/config/env-vars.d.ts +9 -0
- package/packages/agent/src/config/env-vars.d.ts.map +1 -0
- package/packages/agent/src/config/env-vars.js +282 -0
- package/packages/agent/src/config/feature-flags.d.ts +17 -0
- package/packages/agent/src/config/feature-flags.d.ts.map +1 -0
- package/packages/agent/src/config/feature-flags.js +37 -0
- package/packages/agent/src/config/includes.d.ts +26 -0
- package/packages/agent/src/config/includes.d.ts.map +1 -0
- package/packages/agent/src/config/includes.js +148 -0
- package/packages/agent/src/config/index.d.ts +19 -0
- package/packages/agent/src/config/index.d.ts.map +1 -0
- package/packages/agent/src/config/index.js +18 -0
- package/packages/agent/src/config/object-utils.d.ts +2 -0
- package/packages/agent/src/config/object-utils.d.ts.map +1 -0
- package/packages/agent/src/config/object-utils.js +6 -0
- package/packages/agent/src/config/owner-contacts.d.ts +42 -0
- package/packages/agent/src/config/owner-contacts.d.ts.map +1 -0
- package/packages/agent/src/config/owner-contacts.js +223 -0
- package/packages/agent/src/config/paths.d.ts +13 -0
- package/packages/agent/src/config/paths.d.ts.map +1 -0
- package/packages/agent/src/config/paths.js +106 -0
- package/packages/agent/src/config/plugin-auto-enable.d.ts +36 -0
- package/packages/agent/src/config/plugin-auto-enable.d.ts.map +1 -0
- package/packages/agent/src/config/plugin-auto-enable.js +519 -0
- package/packages/agent/src/config/plugin-widgets.d.ts +29 -0
- package/packages/agent/src/config/plugin-widgets.d.ts.map +1 -0
- package/packages/agent/src/config/plugin-widgets.js +70 -0
- package/packages/agent/src/config/runtime-env.d.ts +2 -0
- package/packages/agent/src/config/runtime-env.d.ts.map +1 -0
- package/packages/agent/src/config/runtime-env.js +1 -0
- package/packages/agent/src/config/schema.d.ts +87 -0
- package/packages/agent/src/config/schema.d.ts.map +1 -0
- package/packages/agent/src/config/schema.js +922 -0
- package/packages/agent/src/config/telegram-custom-commands.d.ts +25 -0
- package/packages/agent/src/config/telegram-custom-commands.d.ts.map +1 -0
- package/packages/agent/src/config/telegram-custom-commands.js +71 -0
- package/packages/agent/src/config/types.agent-defaults.d.ts +362 -0
- package/packages/agent/src/config/types.agent-defaults.d.ts.map +1 -0
- package/packages/agent/src/config/types.agent-defaults.js +1 -0
- package/packages/agent/src/config/types.agents.d.ts +114 -0
- package/packages/agent/src/config/types.agents.d.ts.map +1 -0
- package/packages/agent/src/config/types.agents.js +1 -0
- package/packages/agent/src/config/types.d.ts +8 -0
- package/packages/agent/src/config/types.d.ts.map +1 -0
- package/packages/agent/src/config/types.eliza.d.ts +670 -0
- package/packages/agent/src/config/types.eliza.d.ts.map +1 -0
- package/packages/agent/src/config/types.eliza.js +1 -0
- package/packages/agent/src/config/types.gateway.d.ts +216 -0
- package/packages/agent/src/config/types.gateway.d.ts.map +1 -0
- package/packages/agent/src/config/types.gateway.js +1 -0
- package/packages/agent/src/config/types.hooks.d.ts +107 -0
- package/packages/agent/src/config/types.hooks.d.ts.map +1 -0
- package/packages/agent/src/config/types.hooks.js +1 -0
- package/packages/agent/src/config/types.js +7 -0
- package/packages/agent/src/config/types.messages.d.ts +176 -0
- package/packages/agent/src/config/types.messages.d.ts.map +1 -0
- package/packages/agent/src/config/types.messages.js +1 -0
- package/packages/agent/src/config/types.tools.d.ts +400 -0
- package/packages/agent/src/config/types.tools.d.ts.map +1 -0
- package/packages/agent/src/config/types.tools.js +1 -0
- package/packages/agent/src/config/zod-schema.agent-runtime.d.ts +1137 -0
- package/packages/agent/src/config/zod-schema.agent-runtime.d.ts.map +1 -0
- package/packages/agent/src/config/zod-schema.agent-runtime.js +782 -0
- package/packages/agent/src/config/zod-schema.core.d.ts +1021 -0
- package/packages/agent/src/config/zod-schema.core.d.ts.map +1 -0
- package/packages/agent/src/config/zod-schema.core.js +694 -0
- package/packages/agent/src/config/zod-schema.d.ts +3185 -0
- package/packages/agent/src/config/zod-schema.d.ts.map +1 -0
- package/packages/agent/src/config/zod-schema.hooks.d.ts +88 -0
- package/packages/agent/src/config/zod-schema.hooks.d.ts.map +1 -0
- package/packages/agent/src/config/zod-schema.hooks.js +133 -0
- package/packages/agent/src/config/zod-schema.js +850 -0
- package/packages/agent/src/config/zod-schema.providers-core.d.ts +2746 -0
- package/packages/agent/src/config/zod-schema.providers-core.d.ts.map +1 -0
- package/packages/agent/src/config/zod-schema.providers-core.js +961 -0
- package/packages/agent/src/config/zod-schema.session.d.ts +183 -0
- package/packages/agent/src/config/zod-schema.session.d.ts.map +1 -0
- package/packages/agent/src/config/zod-schema.session.js +86 -0
- package/packages/agent/src/contracts/apps.d.ts +2 -0
- package/packages/agent/src/contracts/apps.d.ts.map +1 -0
- package/packages/agent/src/contracts/apps.js +1 -0
- package/packages/agent/src/contracts/awareness.d.ts +38 -0
- package/packages/agent/src/contracts/awareness.d.ts.map +1 -0
- package/packages/agent/src/contracts/awareness.js +7 -0
- package/packages/agent/src/contracts/config.d.ts +148 -0
- package/packages/agent/src/contracts/config.d.ts.map +1 -0
- package/packages/agent/src/contracts/config.js +4 -0
- package/packages/agent/src/contracts/drop.d.ts +2 -0
- package/packages/agent/src/contracts/drop.d.ts.map +1 -0
- package/packages/agent/src/contracts/drop.js +1 -0
- package/packages/agent/src/contracts/index.d.ts +11 -0
- package/packages/agent/src/contracts/index.d.ts.map +1 -0
- package/packages/agent/src/contracts/index.js +10 -0
- package/packages/agent/src/contracts/lifeops.d.ts +2 -0
- package/packages/agent/src/contracts/lifeops.d.ts.map +1 -0
- package/packages/agent/src/contracts/lifeops.js +1 -0
- package/packages/agent/src/contracts/onboarding.d.ts +2 -0
- package/packages/agent/src/contracts/onboarding.d.ts.map +1 -0
- package/packages/agent/src/contracts/onboarding.js +1 -0
- package/packages/agent/src/contracts/permissions.d.ts +2 -0
- package/packages/agent/src/contracts/permissions.d.ts.map +1 -0
- package/packages/agent/src/contracts/permissions.js +1 -0
- package/packages/agent/src/contracts/service-routing.d.ts +2 -0
- package/packages/agent/src/contracts/service-routing.d.ts.map +1 -0
- package/packages/agent/src/contracts/service-routing.js +1 -0
- package/packages/agent/src/contracts/verification.d.ts +2 -0
- package/packages/agent/src/contracts/verification.d.ts.map +1 -0
- package/packages/agent/src/contracts/verification.js +1 -0
- package/packages/agent/src/contracts/wallet.d.ts +2 -0
- package/packages/agent/src/contracts/wallet.d.ts.map +1 -0
- package/packages/agent/src/contracts/wallet.js +1 -0
- package/packages/agent/src/diagnostics/index.d.ts +2 -0
- package/packages/agent/src/diagnostics/index.d.ts.map +1 -0
- package/packages/agent/src/diagnostics/index.js +1 -0
- package/packages/agent/src/diagnostics/integration-observability.d.ts +40 -0
- package/packages/agent/src/diagnostics/integration-observability.d.ts.map +1 -0
- package/packages/agent/src/diagnostics/integration-observability.js +75 -0
- package/packages/agent/src/evals/coordinator-eval-client.d.ts +39 -0
- package/packages/agent/src/evals/coordinator-eval-client.d.ts.map +1 -0
- package/packages/agent/src/evals/coordinator-eval-client.js +138 -0
- package/packages/agent/src/evals/coordinator-live-runner.d.ts +57 -0
- package/packages/agent/src/evals/coordinator-live-runner.d.ts.map +1 -0
- package/packages/agent/src/evals/coordinator-live-runner.js +546 -0
- package/packages/agent/src/evals/coordinator-preflight.d.ts +32 -0
- package/packages/agent/src/evals/coordinator-preflight.d.ts.map +1 -0
- package/packages/agent/src/evals/coordinator-preflight.js +296 -0
- package/packages/agent/src/evals/coordinator-scenarios.d.ts +24 -0
- package/packages/agent/src/evals/coordinator-scenarios.d.ts.map +1 -0
- package/packages/agent/src/evals/coordinator-scenarios.js +1141 -0
- package/packages/agent/src/evaluators/late-join-whitelist.d.ts +16 -0
- package/packages/agent/src/evaluators/late-join-whitelist.d.ts.map +1 -0
- package/packages/agent/src/evaluators/late-join-whitelist.js +67 -0
- package/packages/agent/src/hooks/discovery.d.ts +13 -0
- package/packages/agent/src/hooks/discovery.d.ts.map +1 -0
- package/packages/agent/src/hooks/discovery.js +191 -0
- package/packages/agent/src/hooks/eligibility.d.ts +12 -0
- package/packages/agent/src/hooks/eligibility.d.ts.map +1 -0
- package/packages/agent/src/hooks/eligibility.js +105 -0
- package/packages/agent/src/hooks/index.d.ts +3 -0
- package/packages/agent/src/hooks/index.d.ts.map +1 -0
- package/packages/agent/src/hooks/index.js +2 -0
- package/packages/agent/src/hooks/loader.d.ts +34 -0
- package/packages/agent/src/hooks/loader.d.ts.map +1 -0
- package/packages/agent/src/hooks/loader.js +214 -0
- package/packages/agent/src/hooks/registry.d.ts +11 -0
- package/packages/agent/src/hooks/registry.d.ts.map +1 -0
- package/packages/agent/src/hooks/registry.js +58 -0
- package/packages/agent/src/hooks/types.d.ts +104 -0
- package/packages/agent/src/hooks/types.d.ts.map +1 -0
- package/packages/agent/src/hooks/types.js +8 -0
- package/packages/agent/src/inbox/channel-deep-links.d.ts +20 -0
- package/packages/agent/src/inbox/channel-deep-links.d.ts.map +1 -0
- package/packages/agent/src/inbox/channel-deep-links.js +185 -0
- package/packages/agent/src/inbox/config.d.ts +7 -0
- package/packages/agent/src/inbox/config.d.ts.map +1 -0
- package/packages/agent/src/inbox/config.js +59 -0
- package/packages/agent/src/inbox/message-fetcher.d.ts +33 -0
- package/packages/agent/src/inbox/message-fetcher.d.ts.map +1 -0
- package/packages/agent/src/inbox/message-fetcher.js +252 -0
- package/packages/agent/src/inbox/reflection.d.ts +45 -0
- package/packages/agent/src/inbox/reflection.d.ts.map +1 -0
- package/packages/agent/src/inbox/reflection.js +157 -0
- package/packages/agent/src/inbox/repository.d.ts +53 -0
- package/packages/agent/src/inbox/repository.d.ts.map +1 -0
- package/packages/agent/src/inbox/repository.js +362 -0
- package/packages/agent/src/inbox/triage-classifier.d.ts +17 -0
- package/packages/agent/src/inbox/triage-classifier.d.ts.map +1 -0
- package/packages/agent/src/inbox/triage-classifier.js +209 -0
- package/packages/agent/src/inbox/types.d.ts +130 -0
- package/packages/agent/src/inbox/types.d.ts.map +1 -0
- package/packages/agent/src/inbox/types.js +1 -0
- package/packages/agent/src/index.d.ts +22 -0
- package/packages/agent/src/index.d.ts.map +1 -0
- package/packages/agent/src/index.js +20 -0
- package/packages/agent/src/lifeops/app-state.d.ts +11 -0
- package/packages/agent/src/lifeops/app-state.d.ts.map +1 -0
- package/packages/agent/src/lifeops/app-state.js +32 -0
- package/packages/agent/src/lifeops/apple-reminders.d.ts +58 -0
- package/packages/agent/src/lifeops/apple-reminders.d.ts.map +1 -0
- package/packages/agent/src/lifeops/apple-reminders.js +325 -0
- package/packages/agent/src/lifeops/defaults.d.ts +24 -0
- package/packages/agent/src/lifeops/defaults.d.ts.map +1 -0
- package/packages/agent/src/lifeops/defaults.js +205 -0
- package/packages/agent/src/lifeops/engine.d.ts +8 -0
- package/packages/agent/src/lifeops/engine.d.ts.map +1 -0
- package/packages/agent/src/lifeops/engine.js +389 -0
- package/packages/agent/src/lifeops/goal-grounding.d.ts +54 -0
- package/packages/agent/src/lifeops/goal-grounding.d.ts.map +1 -0
- package/packages/agent/src/lifeops/goal-grounding.js +147 -0
- package/packages/agent/src/lifeops/goal-semantic-evaluator.d.ts +12 -0
- package/packages/agent/src/lifeops/goal-semantic-evaluator.d.ts.map +1 -0
- package/packages/agent/src/lifeops/goal-semantic-evaluator.js +154 -0
- package/packages/agent/src/lifeops/google-api-error.d.ts +7 -0
- package/packages/agent/src/lifeops/google-api-error.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-api-error.js +35 -0
- package/packages/agent/src/lifeops/google-calendar.d.ts +53 -0
- package/packages/agent/src/lifeops/google-calendar.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-calendar.js +268 -0
- package/packages/agent/src/lifeops/google-connector-gateway.d.ts +19 -0
- package/packages/agent/src/lifeops/google-connector-gateway.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-connector-gateway.js +65 -0
- package/packages/agent/src/lifeops/google-fetch.d.ts +11 -0
- package/packages/agent/src/lifeops/google-fetch.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-fetch.js +85 -0
- package/packages/agent/src/lifeops/google-gmail.d.ts +54 -0
- package/packages/agent/src/lifeops/google-gmail.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-gmail.js +471 -0
- package/packages/agent/src/lifeops/google-managed-client.d.ts +127 -0
- package/packages/agent/src/lifeops/google-managed-client.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-managed-client.js +294 -0
- package/packages/agent/src/lifeops/google-oauth.d.ts +61 -0
- package/packages/agent/src/lifeops/google-oauth.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-oauth.js +494 -0
- package/packages/agent/src/lifeops/google-scopes.d.ts +13 -0
- package/packages/agent/src/lifeops/google-scopes.d.ts.map +1 -0
- package/packages/agent/src/lifeops/google-scopes.js +96 -0
- package/packages/agent/src/lifeops/index.d.ts +3 -0
- package/packages/agent/src/lifeops/index.d.ts.map +1 -0
- package/packages/agent/src/lifeops/index.js +2 -0
- package/packages/agent/src/lifeops/owner-profile.d.ts +15 -0
- package/packages/agent/src/lifeops/owner-profile.d.ts.map +1 -0
- package/packages/agent/src/lifeops/owner-profile.js +194 -0
- package/packages/agent/src/lifeops/repository.d.ts +209 -0
- package/packages/agent/src/lifeops/repository.d.ts.map +1 -0
- package/packages/agent/src/lifeops/repository.js +3187 -0
- package/packages/agent/src/lifeops/runtime.d.ts +14 -0
- package/packages/agent/src/lifeops/runtime.d.ts.map +1 -0
- package/packages/agent/src/lifeops/runtime.js +120 -0
- package/packages/agent/src/lifeops/screen-context.d.ts +52 -0
- package/packages/agent/src/lifeops/screen-context.d.ts.map +1 -0
- package/packages/agent/src/lifeops/screen-context.js +332 -0
- package/packages/agent/src/lifeops/seed-routines.d.ts +20 -0
- package/packages/agent/src/lifeops/seed-routines.d.ts.map +1 -0
- package/packages/agent/src/lifeops/seed-routines.js +111 -0
- package/packages/agent/src/lifeops/service.d.ts +275 -0
- package/packages/agent/src/lifeops/service.d.ts.map +1 -0
- package/packages/agent/src/lifeops/service.js +9260 -0
- package/packages/agent/src/lifeops/sql.d.ts +31 -0
- package/packages/agent/src/lifeops/sql.d.ts.map +1 -0
- package/packages/agent/src/lifeops/sql.js +247 -0
- package/packages/agent/src/lifeops/time.d.ts +17 -0
- package/packages/agent/src/lifeops/time.d.ts.map +1 -0
- package/packages/agent/src/lifeops/time.js +132 -0
- package/packages/agent/src/lifeops/twilio.d.ts +25 -0
- package/packages/agent/src/lifeops/twilio.d.ts.map +1 -0
- package/packages/agent/src/lifeops/twilio.js +157 -0
- package/packages/agent/src/lifeops/x-poster.d.ts +19 -0
- package/packages/agent/src/lifeops/x-poster.d.ts.map +1 -0
- package/packages/agent/src/lifeops/x-poster.js +148 -0
- package/packages/agent/src/onboarding-presets.d.ts +2 -0
- package/packages/agent/src/onboarding-presets.d.ts.map +1 -0
- package/packages/agent/src/onboarding-presets.js +1 -0
- package/packages/agent/src/plugins/custom-rtmp/index.d.ts +12 -0
- package/packages/agent/src/plugins/custom-rtmp/index.d.ts.map +1 -0
- package/packages/agent/src/plugins/custom-rtmp/index.js +26 -0
- package/packages/agent/src/plugins/discord-voice-capability.d.ts +35 -0
- package/packages/agent/src/plugins/discord-voice-capability.d.ts.map +1 -0
- package/packages/agent/src/plugins/discord-voice-capability.js +97 -0
- package/packages/agent/src/providers/activity-profile.d.ts +3 -0
- package/packages/agent/src/providers/activity-profile.d.ts.map +1 -0
- package/packages/agent/src/providers/activity-profile.js +140 -0
- package/packages/agent/src/providers/admin-panel.d.ts +4 -0
- package/packages/agent/src/providers/admin-panel.d.ts.map +1 -0
- package/packages/agent/src/providers/admin-panel.js +83 -0
- package/packages/agent/src/providers/admin-trust.d.ts +4 -0
- package/packages/agent/src/providers/admin-trust.d.ts.map +1 -0
- package/packages/agent/src/providers/admin-trust.js +34 -0
- package/packages/agent/src/providers/conversation-utils.d.ts +11 -0
- package/packages/agent/src/providers/conversation-utils.d.ts.map +1 -0
- package/packages/agent/src/providers/conversation-utils.js +79 -0
- package/packages/agent/src/providers/escalation-trigger.d.ts +15 -0
- package/packages/agent/src/providers/escalation-trigger.d.ts.map +1 -0
- package/packages/agent/src/providers/escalation-trigger.js +165 -0
- package/packages/agent/src/providers/inbox-triage.d.ts +3 -0
- package/packages/agent/src/providers/inbox-triage.d.ts.map +1 -0
- package/packages/agent/src/providers/inbox-triage.js +89 -0
- package/packages/agent/src/providers/index.d.ts +15 -0
- package/packages/agent/src/providers/index.d.ts.map +1 -0
- package/packages/agent/src/providers/index.js +14 -0
- package/packages/agent/src/providers/lifeops.d.ts +3 -0
- package/packages/agent/src/providers/lifeops.d.ts.map +1 -0
- package/packages/agent/src/providers/lifeops.js +157 -0
- package/packages/agent/src/providers/recent-conversations.d.ts +3 -0
- package/packages/agent/src/providers/recent-conversations.d.ts.map +1 -0
- package/packages/agent/src/providers/recent-conversations.js +87 -0
- package/packages/agent/src/providers/relevant-conversations.d.ts +3 -0
- package/packages/agent/src/providers/relevant-conversations.d.ts.map +1 -0
- package/packages/agent/src/providers/relevant-conversations.js +88 -0
- package/packages/agent/src/providers/role-backfill.d.ts +18 -0
- package/packages/agent/src/providers/role-backfill.d.ts.map +1 -0
- package/packages/agent/src/providers/role-backfill.js +84 -0
- package/packages/agent/src/providers/rolodex.d.ts +3 -0
- package/packages/agent/src/providers/rolodex.d.ts.map +1 -0
- package/packages/agent/src/providers/rolodex.js +77 -0
- package/packages/agent/src/providers/session-bridge.d.ts +24 -0
- package/packages/agent/src/providers/session-bridge.d.ts.map +1 -0
- package/packages/agent/src/providers/session-bridge.js +85 -0
- package/packages/agent/src/providers/session-utils.d.ts +20 -0
- package/packages/agent/src/providers/session-utils.d.ts.map +1 -0
- package/packages/agent/src/providers/session-utils.js +33 -0
- package/packages/agent/src/providers/simple-mode.d.ts +4 -0
- package/packages/agent/src/providers/simple-mode.d.ts.map +1 -0
- package/packages/agent/src/providers/simple-mode.js +85 -0
- package/packages/agent/src/providers/skill-provider.d.ts +16 -0
- package/packages/agent/src/providers/skill-provider.d.ts.map +1 -0
- package/packages/agent/src/providers/skill-provider.js +336 -0
- package/packages/agent/src/providers/tasks.d.ts +9 -0
- package/packages/agent/src/providers/tasks.d.ts.map +1 -0
- package/packages/agent/src/providers/tasks.js +113 -0
- package/packages/agent/src/providers/ui-catalog.d.ts +3 -0
- package/packages/agent/src/providers/ui-catalog.d.ts.map +1 -0
- package/packages/agent/src/providers/ui-catalog.js +95 -0
- package/packages/agent/src/providers/user-name.d.ts +11 -0
- package/packages/agent/src/providers/user-name.d.ts.map +1 -0
- package/packages/agent/src/providers/user-name.js +40 -0
- package/packages/agent/src/providers/workspace-provider.d.ts +22 -0
- package/packages/agent/src/providers/workspace-provider.d.ts.map +1 -0
- package/packages/agent/src/providers/workspace-provider.js +177 -0
- package/packages/agent/src/providers/workspace.d.ts +54 -0
- package/packages/agent/src/providers/workspace.d.ts.map +1 -0
- package/packages/agent/src/providers/workspace.js +481 -0
- package/packages/agent/src/runtime/agent-event-service.d.ts +35 -0
- package/packages/agent/src/runtime/agent-event-service.d.ts.map +1 -0
- package/packages/agent/src/runtime/agent-event-service.js +16 -0
- package/packages/agent/src/runtime/cloud-onboarding.d.ts +35 -0
- package/packages/agent/src/runtime/cloud-onboarding.d.ts.map +1 -0
- package/packages/agent/src/runtime/cloud-onboarding.js +279 -0
- package/packages/agent/src/runtime/core-plugins.d.ts +19 -0
- package/packages/agent/src/runtime/core-plugins.d.ts.map +1 -0
- package/packages/agent/src/runtime/core-plugins.js +62 -0
- package/packages/agent/src/runtime/custom-actions.d.ts +43 -0
- package/packages/agent/src/runtime/custom-actions.d.ts.map +1 -0
- package/packages/agent/src/runtime/custom-actions.js +507 -0
- package/packages/agent/src/runtime/default-knowledge.d.ts +20 -0
- package/packages/agent/src/runtime/default-knowledge.d.ts.map +1 -0
- package/packages/agent/src/runtime/default-knowledge.js +256 -0
- package/packages/agent/src/runtime/discord-local-plugin.d.ts +86 -0
- package/packages/agent/src/runtime/discord-local-plugin.d.ts.map +1 -0
- package/packages/agent/src/runtime/discord-local-plugin.js +884 -0
- package/packages/agent/src/runtime/eliza-plugin.d.ts +16 -0
- package/packages/agent/src/runtime/eliza-plugin.d.ts.map +1 -0
- package/packages/agent/src/runtime/eliza-plugin.js +218 -0
- package/packages/agent/src/runtime/eliza.d.ts +181 -0
- package/packages/agent/src/runtime/eliza.d.ts.map +1 -0
- package/packages/agent/src/runtime/eliza.js +3286 -0
- package/packages/agent/src/runtime/embedding-presets.d.ts +19 -0
- package/packages/agent/src/runtime/embedding-presets.d.ts.map +1 -0
- package/packages/agent/src/runtime/embedding-presets.js +60 -0
- package/packages/agent/src/runtime/first-time-setup.d.ts +25 -0
- package/packages/agent/src/runtime/first-time-setup.d.ts.map +1 -0
- package/packages/agent/src/runtime/first-time-setup.js +697 -0
- package/packages/agent/src/runtime/index.d.ts +13 -0
- package/packages/agent/src/runtime/index.d.ts.map +1 -0
- package/packages/agent/src/runtime/index.js +12 -0
- package/packages/agent/src/runtime/native-runtime-features.d.ts +4 -0
- package/packages/agent/src/runtime/native-runtime-features.d.ts.map +1 -0
- package/packages/agent/src/runtime/native-runtime-features.js +10 -0
- package/packages/agent/src/runtime/onboarding-names.d.ts +11 -0
- package/packages/agent/src/runtime/onboarding-names.d.ts.map +1 -0
- package/packages/agent/src/runtime/onboarding-names.js +74 -0
- package/packages/agent/src/runtime/owner-entity.d.ts +4 -0
- package/packages/agent/src/runtime/owner-entity.d.ts.map +1 -0
- package/packages/agent/src/runtime/owner-entity.js +30 -0
- package/packages/agent/src/runtime/pglite-error-compat.d.ts +28 -0
- package/packages/agent/src/runtime/pglite-error-compat.d.ts.map +1 -0
- package/packages/agent/src/runtime/pglite-error-compat.js +54 -0
- package/packages/agent/src/runtime/plugin-collector.d.ts +38 -0
- package/packages/agent/src/runtime/plugin-collector.d.ts.map +1 -0
- package/packages/agent/src/runtime/plugin-collector.js +397 -0
- package/packages/agent/src/runtime/plugin-lifecycle.d.ts +44 -0
- package/packages/agent/src/runtime/plugin-lifecycle.d.ts.map +1 -0
- package/packages/agent/src/runtime/plugin-lifecycle.js +584 -0
- package/packages/agent/src/runtime/plugin-resolver.d.ts +31 -0
- package/packages/agent/src/runtime/plugin-resolver.d.ts.map +1 -0
- package/packages/agent/src/runtime/plugin-resolver.js +828 -0
- package/packages/agent/src/runtime/plugin-role-gating.d.ts +34 -0
- package/packages/agent/src/runtime/plugin-role-gating.d.ts.map +1 -0
- package/packages/agent/src/runtime/plugin-role-gating.js +232 -0
- package/packages/agent/src/runtime/plugin-types.d.ts +71 -0
- package/packages/agent/src/runtime/plugin-types.d.ts.map +1 -0
- package/packages/agent/src/runtime/plugin-types.js +318 -0
- package/packages/agent/src/runtime/prompt-compaction.d.ts +80 -0
- package/packages/agent/src/runtime/prompt-compaction.d.ts.map +1 -0
- package/packages/agent/src/runtime/prompt-compaction.js +307 -0
- package/packages/agent/src/runtime/prompt-optimization.d.ts +11 -0
- package/packages/agent/src/runtime/prompt-optimization.d.ts.map +1 -0
- package/packages/agent/src/runtime/prompt-optimization.js +421 -0
- package/packages/agent/src/runtime/release-plugin-policy.d.ts +20 -0
- package/packages/agent/src/runtime/release-plugin-policy.d.ts.map +1 -0
- package/packages/agent/src/runtime/release-plugin-policy.js +85 -0
- package/packages/agent/src/runtime/restart.d.ts +45 -0
- package/packages/agent/src/runtime/restart.d.ts.map +1 -0
- package/packages/agent/src/runtime/restart.js +45 -0
- package/packages/agent/src/runtime/roles/src/action.d.ts +11 -0
- package/packages/agent/src/runtime/roles/src/action.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles/src/action.js +676 -0
- package/packages/agent/src/runtime/roles/src/index.d.ts +24 -0
- package/packages/agent/src/runtime/roles/src/index.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles/src/index.js +243 -0
- package/packages/agent/src/runtime/roles/src/intent.d.ts +18 -0
- package/packages/agent/src/runtime/roles/src/intent.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles/src/intent.js +299 -0
- package/packages/agent/src/runtime/roles/src/provider.d.ts +7 -0
- package/packages/agent/src/runtime/roles/src/provider.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles/src/provider.js +133 -0
- package/packages/agent/src/runtime/roles/src/types.d.ts +3 -0
- package/packages/agent/src/runtime/roles/src/types.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles/src/types.js +1 -0
- package/packages/agent/src/runtime/roles/src/utils.d.ts +2 -0
- package/packages/agent/src/runtime/roles/src/utils.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles/src/utils.js +1 -0
- package/packages/agent/src/runtime/roles.d.ts +3 -0
- package/packages/agent/src/runtime/roles.d.ts.map +1 -0
- package/packages/agent/src/runtime/roles.js +5 -0
- package/packages/agent/src/runtime/trajectory-export.d.ts +8 -0
- package/packages/agent/src/runtime/trajectory-export.d.ts.map +1 -0
- package/packages/agent/src/runtime/trajectory-export.js +7 -0
- package/packages/agent/src/runtime/trajectory-internals.d.ts +217 -0
- package/packages/agent/src/runtime/trajectory-internals.d.ts.map +1 -0
- package/packages/agent/src/runtime/trajectory-internals.js +1298 -0
- package/packages/agent/src/runtime/trajectory-persistence.d.ts +15 -0
- package/packages/agent/src/runtime/trajectory-persistence.d.ts.map +1 -0
- package/packages/agent/src/runtime/trajectory-persistence.js +29 -0
- package/packages/agent/src/runtime/trajectory-query.d.ts +8 -0
- package/packages/agent/src/runtime/trajectory-query.d.ts.map +1 -0
- package/packages/agent/src/runtime/trajectory-query.js +27 -0
- package/packages/agent/src/runtime/trajectory-storage.d.ts +65 -0
- package/packages/agent/src/runtime/trajectory-storage.d.ts.map +1 -0
- package/packages/agent/src/runtime/trajectory-storage.js +1026 -0
- package/packages/agent/src/runtime/version.d.ts +2 -0
- package/packages/agent/src/runtime/version.d.ts.map +1 -0
- package/packages/agent/src/runtime/version.js +5 -0
- package/packages/agent/src/runtime/web-search-tools.d.ts +22 -0
- package/packages/agent/src/runtime/web-search-tools.d.ts.map +1 -0
- package/packages/agent/src/runtime/web-search-tools.js +149 -0
- package/packages/agent/src/security/access.d.ts +17 -0
- package/packages/agent/src/security/access.d.ts.map +1 -0
- package/packages/agent/src/security/access.js +149 -0
- package/packages/agent/src/security/audit-log.d.ts +49 -0
- package/packages/agent/src/security/audit-log.d.ts.map +1 -0
- package/packages/agent/src/security/audit-log.js +161 -0
- package/packages/agent/src/security/index.d.ts +3 -0
- package/packages/agent/src/security/index.d.ts.map +1 -0
- package/packages/agent/src/security/index.js +2 -0
- package/packages/agent/src/security/network-policy.d.ts +6 -0
- package/packages/agent/src/security/network-policy.d.ts.map +1 -0
- package/packages/agent/src/security/network-policy.js +85 -0
- package/packages/agent/src/server/index.d.ts +3 -0
- package/packages/agent/src/server/index.d.ts.map +1 -0
- package/packages/agent/src/server/index.js +1 -0
- package/packages/agent/src/services/agent-export.d.ts +100 -0
- package/packages/agent/src/services/agent-export.d.ts.map +1 -0
- package/packages/agent/src/services/agent-export.js +729 -0
- package/packages/agent/src/services/app-manager.d.ts +56 -0
- package/packages/agent/src/services/app-manager.d.ts.map +1 -0
- package/packages/agent/src/services/app-manager.js +2019 -0
- package/packages/agent/src/services/app-package-modules.d.ts +30 -0
- package/packages/agent/src/services/app-package-modules.d.ts.map +1 -0
- package/packages/agent/src/services/app-package-modules.js +348 -0
- package/packages/agent/src/services/app-run-store.d.ts +6 -0
- package/packages/agent/src/services/app-run-store.d.ts.map +1 -0
- package/packages/agent/src/services/app-run-store.js +490 -0
- package/packages/agent/src/services/app-session-gate.d.ts +15 -0
- package/packages/agent/src/services/app-session-gate.d.ts.map +1 -0
- package/packages/agent/src/services/app-session-gate.js +71 -0
- package/packages/agent/src/services/browser-capture.d.ts +41 -0
- package/packages/agent/src/services/browser-capture.d.ts.map +1 -0
- package/packages/agent/src/services/browser-capture.js +173 -0
- package/packages/agent/src/services/browser-workspace.d.ts +179 -0
- package/packages/agent/src/services/browser-workspace.d.ts.map +1 -0
- package/packages/agent/src/services/browser-workspace.js +4589 -0
- package/packages/agent/src/services/built-in-app-routes/2004scape.d.ts +28 -0
- package/packages/agent/src/services/built-in-app-routes/2004scape.d.ts.map +1 -0
- package/packages/agent/src/services/built-in-app-routes/2004scape.js +1343 -0
- package/packages/agent/src/services/built-in-app-routes/hyperscape.d.ts +5 -0
- package/packages/agent/src/services/built-in-app-routes/hyperscape.d.ts.map +1 -0
- package/packages/agent/src/services/built-in-app-routes/hyperscape.js +189 -0
- package/packages/agent/src/services/character-persistence.d.ts +39 -0
- package/packages/agent/src/services/character-persistence.d.ts.map +1 -0
- package/packages/agent/src/services/character-persistence.js +159 -0
- package/packages/agent/src/services/client-chat-sender.d.ts +19 -0
- package/packages/agent/src/services/client-chat-sender.d.ts.map +1 -0
- package/packages/agent/src/services/client-chat-sender.js +88 -0
- package/packages/agent/src/services/coding-agent-context.d.ts +310 -0
- package/packages/agent/src/services/coding-agent-context.d.ts.map +1 -0
- package/packages/agent/src/services/coding-agent-context.js +281 -0
- package/packages/agent/src/services/coding-task-executor.d.ts +20 -0
- package/packages/agent/src/services/coding-task-executor.d.ts.map +1 -0
- package/packages/agent/src/services/coding-task-executor.js +141 -0
- package/packages/agent/src/services/config-plugin-manager.d.ts +6 -0
- package/packages/agent/src/services/config-plugin-manager.d.ts.map +1 -0
- package/packages/agent/src/services/config-plugin-manager.js +53 -0
- package/packages/agent/src/services/connector-setup-service.d.ts +48 -0
- package/packages/agent/src/services/connector-setup-service.d.ts.map +1 -0
- package/packages/agent/src/services/connector-setup-service.js +60 -0
- package/packages/agent/src/services/conversation-proximity.d.ts +27 -0
- package/packages/agent/src/services/conversation-proximity.d.ts.map +1 -0
- package/packages/agent/src/services/conversation-proximity.js +124 -0
- package/packages/agent/src/services/credential-words.d.ts +26 -0
- package/packages/agent/src/services/credential-words.d.ts.map +1 -0
- package/packages/agent/src/services/credential-words.js +116 -0
- package/packages/agent/src/services/escalation.d.ts +46 -0
- package/packages/agent/src/services/escalation.d.ts.map +1 -0
- package/packages/agent/src/services/escalation.js +415 -0
- package/packages/agent/src/services/executor-registry.d.ts +4 -0
- package/packages/agent/src/services/executor-registry.d.ts.map +1 -0
- package/packages/agent/src/services/executor-registry.js +10 -0
- package/packages/agent/src/services/index.d.ts +25 -0
- package/packages/agent/src/services/index.d.ts.map +1 -0
- package/packages/agent/src/services/index.js +24 -0
- package/packages/agent/src/services/mcp-marketplace.d.ts +89 -0
- package/packages/agent/src/services/mcp-marketplace.d.ts.map +1 -0
- package/packages/agent/src/services/mcp-marketplace.js +200 -0
- package/packages/agent/src/services/overlay-app-presence.d.ts +9 -0
- package/packages/agent/src/services/overlay-app-presence.d.ts.map +1 -0
- package/packages/agent/src/services/overlay-app-presence.js +18 -0
- package/packages/agent/src/services/plugin-manager-types.d.ts +113 -0
- package/packages/agent/src/services/plugin-manager-types.d.ts.map +1 -0
- package/packages/agent/src/services/plugin-manager-types.js +18 -0
- package/packages/agent/src/services/privy-wallets.d.ts +23 -0
- package/packages/agent/src/services/privy-wallets.d.ts.map +1 -0
- package/packages/agent/src/services/privy-wallets.js +230 -0
- package/packages/agent/src/services/registry-client-app-meta.d.ts +6 -0
- package/packages/agent/src/services/registry-client-app-meta.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client-app-meta.js +225 -0
- package/packages/agent/src/services/registry-client-endpoints.d.ts +7 -0
- package/packages/agent/src/services/registry-client-endpoints.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client-endpoints.js +190 -0
- package/packages/agent/src/services/registry-client-local.d.ts +4 -0
- package/packages/agent/src/services/registry-client-local.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client-local.js +545 -0
- package/packages/agent/src/services/registry-client-network.d.ts +9 -0
- package/packages/agent/src/services/registry-client-network.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client-network.js +119 -0
- package/packages/agent/src/services/registry-client-queries.d.ts +15 -0
- package/packages/agent/src/services/registry-client-queries.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client-queries.js +172 -0
- package/packages/agent/src/services/registry-client-types.d.ts +125 -0
- package/packages/agent/src/services/registry-client-types.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client-types.js +1 -0
- package/packages/agent/src/services/registry-client.d.ts +39 -0
- package/packages/agent/src/services/registry-client.d.ts.map +1 -0
- package/packages/agent/src/services/registry-client.js +332 -0
- package/packages/agent/src/services/relationships-graph.d.ts +134 -0
- package/packages/agent/src/services/relationships-graph.d.ts.map +1 -0
- package/packages/agent/src/services/relationships-graph.js +1332 -0
- package/packages/agent/src/services/remote-signing-service.d.ts +58 -0
- package/packages/agent/src/services/remote-signing-service.d.ts.map +1 -0
- package/packages/agent/src/services/remote-signing-service.js +185 -0
- package/packages/agent/src/services/research-task-executor.d.ts +14 -0
- package/packages/agent/src/services/research-task-executor.d.ts.map +1 -0
- package/packages/agent/src/services/research-task-executor.js +136 -0
- package/packages/agent/src/services/sandbox-engine.d.ts +96 -0
- package/packages/agent/src/services/sandbox-engine.d.ts.map +1 -0
- package/packages/agent/src/services/sandbox-engine.js +604 -0
- package/packages/agent/src/services/sandbox-manager.d.ts +106 -0
- package/packages/agent/src/services/sandbox-manager.d.ts.map +1 -0
- package/packages/agent/src/services/sandbox-manager.js +380 -0
- package/packages/agent/src/services/self-updater.d.ts +21 -0
- package/packages/agent/src/services/self-updater.d.ts.map +1 -0
- package/packages/agent/src/services/self-updater.js +162 -0
- package/packages/agent/src/services/send-handler-availability.d.ts +5 -0
- package/packages/agent/src/services/send-handler-availability.d.ts.map +1 -0
- package/packages/agent/src/services/send-handler-availability.js +20 -0
- package/packages/agent/src/services/signal-pairing.d.ts +57 -0
- package/packages/agent/src/services/signal-pairing.d.ts.map +1 -0
- package/packages/agent/src/services/signal-pairing.js +393 -0
- package/packages/agent/src/services/signing-policy.d.ts +44 -0
- package/packages/agent/src/services/signing-policy.d.ts.map +1 -0
- package/packages/agent/src/services/signing-policy.js +165 -0
- package/packages/agent/src/services/skill-catalog-client.d.ts +47 -0
- package/packages/agent/src/services/skill-catalog-client.d.ts.map +1 -0
- package/packages/agent/src/services/skill-catalog-client.js +130 -0
- package/packages/agent/src/services/skill-marketplace.d.ts +42 -0
- package/packages/agent/src/services/skill-marketplace.d.ts.map +1 -0
- package/packages/agent/src/services/skill-marketplace.js +689 -0
- package/packages/agent/src/services/steward-evm-account.d.ts +62 -0
- package/packages/agent/src/services/steward-evm-account.d.ts.map +1 -0
- package/packages/agent/src/services/steward-evm-account.js +308 -0
- package/packages/agent/src/services/steward-evm-bridge.d.ts +39 -0
- package/packages/agent/src/services/steward-evm-bridge.d.ts.map +1 -0
- package/packages/agent/src/services/steward-evm-bridge.js +103 -0
- package/packages/agent/src/services/steward-wallet.d.ts +30 -0
- package/packages/agent/src/services/steward-wallet.d.ts.map +1 -0
- package/packages/agent/src/services/steward-wallet.js +334 -0
- package/packages/agent/src/services/stream-manager.d.ts +121 -0
- package/packages/agent/src/services/stream-manager.d.ts.map +1 -0
- package/packages/agent/src/services/stream-manager.js +609 -0
- package/packages/agent/src/services/task-executor.d.ts +47 -0
- package/packages/agent/src/services/task-executor.d.ts.map +1 -0
- package/packages/agent/src/services/task-executor.js +31 -0
- package/packages/agent/src/services/telegram-account-auth.d.ts +99 -0
- package/packages/agent/src/services/telegram-account-auth.d.ts.map +1 -0
- package/packages/agent/src/services/telegram-account-auth.js +611 -0
- package/packages/agent/src/services/tts-stream-bridge.d.ts +83 -0
- package/packages/agent/src/services/tts-stream-bridge.d.ts.map +1 -0
- package/packages/agent/src/services/tts-stream-bridge.js +360 -0
- package/packages/agent/src/services/update-checker.d.ts +29 -0
- package/packages/agent/src/services/update-checker.d.ts.map +1 -0
- package/packages/agent/src/services/update-checker.js +134 -0
- package/packages/agent/src/services/version-compat.d.ts +99 -0
- package/packages/agent/src/services/version-compat.d.ts.map +1 -0
- package/packages/agent/src/services/version-compat.js +203 -0
- package/packages/agent/src/services/whatsapp-pairing.d.ts +41 -0
- package/packages/agent/src/services/whatsapp-pairing.d.ts.map +1 -0
- package/packages/agent/src/services/whatsapp-pairing.js +209 -0
- package/packages/agent/src/shared/index.d.ts +2 -0
- package/packages/agent/src/shared/index.d.ts.map +1 -0
- package/packages/agent/src/shared/index.js +1 -0
- package/packages/agent/src/shared/ui-catalog-prompt.d.ts +52 -0
- package/packages/agent/src/shared/ui-catalog-prompt.d.ts.map +1 -0
- package/packages/agent/src/shared/ui-catalog-prompt.js +1028 -0
- package/packages/agent/src/test-support/index.d.ts +4 -0
- package/packages/agent/src/test-support/index.d.ts.map +1 -0
- package/packages/agent/src/test-support/index.js +3 -0
- package/packages/agent/src/test-support/process-helpers.d.ts +13 -0
- package/packages/agent/src/test-support/process-helpers.d.ts.map +1 -0
- package/packages/agent/src/test-support/process-helpers.js +23 -0
- package/packages/agent/src/test-support/route-test-helpers.d.ts +37 -0
- package/packages/agent/src/test-support/route-test-helpers.d.ts.map +1 -0
- package/packages/agent/src/test-support/route-test-helpers.js +54 -0
- package/packages/agent/src/test-support/test-helpers.d.ts +77 -0
- package/packages/agent/src/test-support/test-helpers.d.ts.map +1 -0
- package/packages/agent/src/test-support/test-helpers.js +217 -0
- package/packages/agent/src/test-utils/sqlite-compat.d.ts +17 -0
- package/packages/agent/src/test-utils/sqlite-compat.d.ts.map +1 -0
- package/packages/agent/src/test-utils/sqlite-compat.js +48 -0
- package/packages/agent/src/testing/index.d.ts +4 -0
- package/packages/agent/src/testing/index.d.ts.map +1 -0
- package/packages/agent/src/testing/index.js +3 -0
- package/packages/agent/src/training/cli.d.ts +2 -0
- package/packages/agent/src/training/cli.d.ts.map +1 -0
- package/packages/agent/src/training/cli.js +2 -0
- package/packages/agent/src/training/context-audit.d.ts +2 -0
- package/packages/agent/src/training/context-audit.d.ts.map +1 -0
- package/packages/agent/src/training/context-audit.js +2 -0
- package/packages/agent/src/training/context-catalog.d.ts +2 -0
- package/packages/agent/src/training/context-catalog.d.ts.map +1 -0
- package/packages/agent/src/training/context-catalog.js +2 -0
- package/packages/agent/src/training/context-types.d.ts +2 -0
- package/packages/agent/src/training/context-types.d.ts.map +1 -0
- package/packages/agent/src/training/context-types.js +2 -0
- package/packages/agent/src/training/dataset-generator.d.ts +2 -0
- package/packages/agent/src/training/dataset-generator.d.ts.map +1 -0
- package/packages/agent/src/training/dataset-generator.js +2 -0
- package/packages/agent/src/training/replay-validator.d.ts +2 -0
- package/packages/agent/src/training/replay-validator.d.ts.map +1 -0
- package/packages/agent/src/training/replay-validator.js +2 -0
- package/packages/agent/src/training/roleplay-executor.d.ts +2 -0
- package/packages/agent/src/training/roleplay-executor.d.ts.map +1 -0
- package/packages/agent/src/training/roleplay-executor.js +2 -0
- package/packages/agent/src/training/roleplay-trajectories.d.ts +2 -0
- package/packages/agent/src/training/roleplay-trajectories.d.ts.map +1 -0
- package/packages/agent/src/training/roleplay-trajectories.js +2 -0
- package/packages/agent/src/training/scenario-blueprints.d.ts +2 -0
- package/packages/agent/src/training/scenario-blueprints.d.ts.map +1 -0
- package/packages/agent/src/training/scenario-blueprints.js +2 -0
- package/packages/agent/src/training/trajectory-task-datasets.d.ts +2 -0
- package/packages/agent/src/training/trajectory-task-datasets.d.ts.map +1 -0
- package/packages/agent/src/training/trajectory-task-datasets.js +2 -0
- package/packages/agent/src/training/vertex-tuning.d.ts +2 -0
- package/packages/agent/src/training/vertex-tuning.d.ts.map +1 -0
- package/packages/agent/src/training/vertex-tuning.js +2 -0
- package/packages/agent/src/triggers/action.d.ts +4 -0
- package/packages/agent/src/triggers/action.d.ts.map +1 -0
- package/packages/agent/src/triggers/action.js +316 -0
- package/packages/agent/src/triggers/index.d.ts +5 -0
- package/packages/agent/src/triggers/index.d.ts.map +1 -0
- package/packages/agent/src/triggers/index.js +4 -0
- package/packages/agent/src/triggers/runtime.d.ts +25 -0
- package/packages/agent/src/triggers/runtime.d.ts.map +1 -0
- package/packages/agent/src/triggers/runtime.js +456 -0
- package/packages/agent/src/triggers/scheduling.d.ts +71 -0
- package/packages/agent/src/triggers/scheduling.d.ts.map +1 -0
- package/packages/agent/src/triggers/scheduling.js +355 -0
- package/packages/agent/src/triggers/types.d.ts +115 -0
- package/packages/agent/src/triggers/types.d.ts.map +1 -0
- package/packages/agent/src/triggers/types.js +1 -0
- package/packages/agent/src/types/agent-skills.d.ts +19 -0
- package/packages/agent/src/types/agent-skills.d.ts.map +1 -0
- package/packages/agent/src/types/agent-skills.js +7 -0
- package/packages/agent/src/types/config-like.d.ts +17 -0
- package/packages/agent/src/types/config-like.d.ts.map +1 -0
- package/packages/agent/src/types/config-like.js +7 -0
- package/packages/agent/src/types/trajectory.d.ts +106 -0
- package/packages/agent/src/types/trajectory.d.ts.map +1 -0
- package/packages/agent/src/types/trajectory.js +7 -0
- package/packages/agent/src/utils/exec-safety.d.ts +2 -0
- package/packages/agent/src/utils/exec-safety.d.ts.map +1 -0
- package/packages/agent/src/utils/exec-safety.js +21 -0
- package/packages/agent/src/utils/index.d.ts +3 -0
- package/packages/agent/src/utils/index.d.ts.map +1 -0
- package/packages/agent/src/utils/index.js +2 -0
- package/packages/agent/src/utils/number-parsing.d.ts +26 -0
- package/packages/agent/src/utils/number-parsing.d.ts.map +1 -0
- package/packages/agent/src/utils/number-parsing.js +52 -0
- package/packages/agent/src/utils/spoken-text.d.ts +2 -0
- package/packages/agent/src/utils/spoken-text.d.ts.map +1 -0
- package/packages/agent/src/utils/spoken-text.js +1 -0
- package/packages/agent/src/version-resolver.d.ts +2 -0
- package/packages/agent/src/version-resolver.d.ts.map +1 -0
- package/packages/agent/src/version-resolver.js +50 -0
- package/packages/app-core/src/api/cloud-secrets.d.ts +23 -0
- package/packages/app-core/src/api/cloud-secrets.d.ts.map +1 -0
- package/packages/app-core/src/api/cloud-secrets.js +50 -0
- package/packages/app-core/src/api/compat-route-shared.d.ts +16 -0
- package/packages/app-core/src/api/compat-route-shared.d.ts.map +1 -0
- package/packages/app-core/src/api/compat-route-shared.js +99 -0
- package/packages/app-core/src/api/response.d.ts +12 -0
- package/packages/app-core/src/api/response.d.ts.map +1 -0
- package/packages/app-core/src/api/response.js +18 -0
- package/packages/app-core/src/api/server-cloud-tts.d.ts +41 -0
- package/packages/app-core/src/api/server-cloud-tts.d.ts.map +1 -0
- package/packages/app-core/src/api/server-cloud-tts.js +469 -0
- package/packages/app-core/src/config/boot-config-store.d.ts +117 -0
- package/packages/app-core/src/config/boot-config-store.d.ts.map +1 -0
- package/packages/app-core/src/config/boot-config-store.js +135 -0
- package/packages/app-core/src/config/boot-config.d.ts +6 -0
- package/packages/app-core/src/config/boot-config.d.ts.map +1 -0
- package/packages/app-core/src/config/boot-config.js +5 -0
- package/packages/app-core/src/config/branding.d.ts +55 -0
- package/packages/app-core/src/config/branding.d.ts.map +1 -0
- package/packages/app-core/src/config/branding.js +23 -0
- package/packages/app-core/src/config/config.d.ts +12 -0
- package/packages/app-core/src/config/config.d.ts.map +1 -0
- package/packages/app-core/src/config/config.js +23 -0
- package/packages/app-core/src/navigation/index.d.ts +52 -0
- package/packages/app-core/src/navigation/index.d.ts.map +1 -0
- package/packages/app-core/src/navigation/index.js +354 -0
- package/packages/app-core/src/state/action-notice.d.ts +7 -0
- package/packages/app-core/src/state/action-notice.d.ts.map +1 -0
- package/packages/app-core/src/state/action-notice.js +1 -0
- package/packages/app-core/src/types/index.d.ts +649 -0
- package/packages/app-core/src/types/index.d.ts.map +1 -0
- package/packages/app-core/src/types/index.js +1 -0
- package/packages/app-core/src/types/lifeops-ui.d.ts +10 -0
- package/packages/app-core/src/types/lifeops-ui.d.ts.map +1 -0
- package/packages/app-core/src/types/lifeops-ui.js +1 -0
- package/packages/app-core/src/utils/env.d.ts +31 -0
- package/packages/app-core/src/utils/env.d.ts.map +1 -0
- package/packages/app-core/src/utils/env.js +51 -0
- package/packages/app-core/src/utils/tts-debug.d.ts +9 -0
- package/packages/app-core/src/utils/tts-debug.d.ts.map +1 -0
- package/packages/app-core/src/utils/tts-debug.js +68 -0
- package/packages/shared/src/connectors.d.ts +13 -0
- package/packages/shared/src/connectors.d.ts.map +1 -0
- package/packages/shared/src/connectors.js +91 -0
- package/packages/shared/src/contracts/apps.d.ts +204 -0
- package/packages/shared/src/contracts/apps.d.ts.map +1 -0
- package/packages/shared/src/contracts/apps.js +188 -0
- package/packages/shared/src/contracts/awareness.d.ts +38 -0
- package/packages/shared/src/contracts/awareness.d.ts.map +1 -0
- package/packages/shared/src/contracts/awareness.js +7 -0
- package/packages/shared/src/contracts/cloud-topology.d.ts +13 -0
- package/packages/shared/src/contracts/cloud-topology.d.ts.map +1 -0
- package/packages/shared/src/contracts/cloud-topology.js +73 -0
- package/packages/shared/src/contracts/config.d.ts +146 -0
- package/packages/shared/src/contracts/config.d.ts.map +1 -0
- package/packages/shared/src/contracts/config.js +4 -0
- package/packages/shared/src/contracts/content-pack.d.ts +131 -0
- package/packages/shared/src/contracts/content-pack.d.ts.map +1 -0
- package/packages/shared/src/contracts/content-pack.js +102 -0
- package/packages/shared/src/contracts/drop.d.ts +20 -0
- package/packages/shared/src/contracts/drop.d.ts.map +1 -0
- package/packages/shared/src/contracts/drop.js +4 -0
- package/packages/shared/src/contracts/index.d.ts +13 -0
- package/packages/shared/src/contracts/index.d.ts.map +1 -0
- package/packages/shared/src/contracts/index.js +12 -0
- package/packages/shared/src/contracts/lifeops.d.ts +1337 -0
- package/packages/shared/src/contracts/lifeops.d.ts.map +1 -0
- package/packages/shared/src/contracts/lifeops.js +278 -0
- package/packages/shared/src/contracts/onboarding.d.ts +443 -0
- package/packages/shared/src/contracts/onboarding.d.ts.map +1 -0
- package/packages/shared/src/contracts/onboarding.js +1020 -0
- package/packages/shared/src/contracts/permissions.d.ts +38 -0
- package/packages/shared/src/contracts/permissions.d.ts.map +1 -0
- package/packages/shared/src/contracts/permissions.js +4 -0
- package/packages/shared/src/contracts/service-routing.d.ts +77 -0
- package/packages/shared/src/contracts/service-routing.d.ts.map +1 -0
- package/packages/shared/src/contracts/service-routing.js +227 -0
- package/packages/shared/src/contracts/theme.d.ts +136 -0
- package/packages/shared/src/contracts/theme.d.ts.map +1 -0
- package/packages/shared/src/contracts/theme.js +133 -0
- package/packages/shared/src/contracts/verification.d.ts +9 -0
- package/packages/shared/src/contracts/verification.d.ts.map +1 -0
- package/packages/shared/src/contracts/verification.js +4 -0
- package/packages/shared/src/contracts/wallet.d.ts +626 -0
- package/packages/shared/src/contracts/wallet.d.ts.map +1 -0
- package/packages/shared/src/contracts/wallet.js +60 -0
- package/packages/shared/src/env-utils.d.ts +5 -0
- package/packages/shared/src/env-utils.d.ts.map +1 -0
- package/packages/shared/src/env-utils.impl.d.ts +2 -0
- package/packages/shared/src/env-utils.impl.d.ts.map +1 -0
- package/packages/shared/src/env-utils.impl.js +16 -0
- package/packages/shared/src/env-utils.js +4 -0
- package/packages/shared/src/i18n/generated/validation-keyword-data.d.ts +1030 -0
- package/packages/shared/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
- package/packages/shared/src/i18n/generated/validation-keyword-data.js +1033 -0
- package/packages/shared/src/i18n/keyword-matching.d.ts +23 -0
- package/packages/shared/src/i18n/keyword-matching.d.ts.map +1 -0
- package/packages/shared/src/i18n/keyword-matching.js +112 -0
- package/packages/shared/src/i18n/validation-keywords.d.ts +13 -0
- package/packages/shared/src/i18n/validation-keywords.d.ts.map +1 -0
- package/packages/shared/src/i18n/validation-keywords.js +12 -0
- package/packages/shared/src/index.d.ts +13 -0
- package/packages/shared/src/index.d.ts.map +1 -0
- package/packages/shared/src/index.js +12 -0
- package/packages/shared/src/onboarding-presets.characters.d.ts +22 -0
- package/packages/shared/src/onboarding-presets.characters.d.ts.map +1 -0
- package/packages/shared/src/onboarding-presets.characters.js +2606 -0
- package/packages/shared/src/onboarding-presets.d.ts +40 -0
- package/packages/shared/src/onboarding-presets.d.ts.map +1 -0
- package/packages/shared/src/onboarding-presets.js +176 -0
- package/packages/shared/src/onboarding-presets.shared.d.ts +2 -0
- package/packages/shared/src/onboarding-presets.shared.d.ts.map +1 -0
- package/packages/shared/src/onboarding-presets.shared.js +7 -0
- package/packages/shared/src/restart.d.ts +27 -0
- package/packages/shared/src/restart.d.ts.map +1 -0
- package/packages/shared/src/restart.js +28 -0
- package/packages/shared/src/runtime-env.d.ts +82 -0
- package/packages/shared/src/runtime-env.d.ts.map +1 -0
- package/packages/shared/src/runtime-env.js +242 -0
- package/packages/shared/src/settings-debug.d.ts +20 -0
- package/packages/shared/src/settings-debug.d.ts.map +1 -0
- package/packages/shared/src/settings-debug.js +116 -0
- package/packages/shared/src/spoken-text.d.ts +2 -0
- package/packages/shared/src/spoken-text.d.ts.map +1 -0
- package/packages/shared/src/spoken-text.js +56 -0
- package/packages/shared/src/types.d.ts +27 -0
- package/packages/shared/src/types.d.ts.map +1 -0
- package/packages/shared/src/types.js +1 -0
- package/packages/shared/src/validation-keywords.d.ts +2 -0
- package/packages/shared/src/validation-keywords.d.ts.map +1 -0
- package/packages/shared/src/validation-keywords.js +1 -0
- package/packages/typescript/src/action-docs.d.ts +22 -0
- package/packages/typescript/src/action-docs.d.ts.map +1 -0
- package/packages/typescript/src/action-docs.js +93 -0
- package/packages/typescript/src/actions.d.ts +29 -0
- package/packages/typescript/src/actions.d.ts.map +1 -0
- package/packages/typescript/src/actions.js +456 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/append.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/append.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/append.js +150 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/delete.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/delete.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/delete.js +136 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/list.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/list.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/list.js +84 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read-attachment.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read-attachment.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read-attachment.js +107 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read-file.d.ts +16 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read-file.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read-file.js +187 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/read.js +138 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/remove-from-clipboard.js +96 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/search.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/search.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/search.js +139 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/write.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/write.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/actions/write.js +138 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/index.d.ts +39 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/index.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/index.js +78 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/providers/clipboard.d.ts +4 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/providers/clipboard.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/providers/clipboard.js +62 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/attachmentContext.d.ts +16 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/attachmentContext.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/attachmentContext.js +162 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/clipboardService.d.ts +65 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/clipboardService.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/clipboardService.js +352 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts +24 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/taskClipboardPersistence.js +63 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/taskClipboardService.d.ts +29 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/taskClipboardService.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/services/taskClipboardService.js +195 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/specs.d.ts +15 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/specs.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/specs.js +164 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/types.d.ts +92 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/types.d.ts.map +1 -0
- package/packages/typescript/src/advanced-capabilities/clipboard/types.js +4 -0
- package/packages/typescript/src/character-utils.d.ts +138 -0
- package/packages/typescript/src/character-utils.d.ts.map +1 -0
- package/packages/typescript/src/character-utils.js +271 -0
- package/packages/typescript/src/character.d.ts +68 -0
- package/packages/typescript/src/character.d.ts.map +1 -0
- package/packages/typescript/src/character.js +155 -0
- package/packages/typescript/src/connection.d.ts +45 -0
- package/packages/typescript/src/connection.d.ts.map +1 -0
- package/packages/typescript/src/connection.js +149 -0
- package/packages/typescript/src/constants/index.d.ts +7 -0
- package/packages/typescript/src/constants/index.d.ts.map +1 -0
- package/packages/typescript/src/constants/index.js +6 -0
- package/packages/typescript/src/constants/secrets.d.ts +99 -0
- package/packages/typescript/src/constants/secrets.d.ts.map +1 -0
- package/packages/typescript/src/constants/secrets.js +239 -0
- package/packages/typescript/src/database/inMemoryAdapter.d.ts +285 -0
- package/packages/typescript/src/database/inMemoryAdapter.d.ts.map +1 -0
- package/packages/typescript/src/database/inMemoryAdapter.js +1149 -0
- package/packages/typescript/src/database.d.ts +426 -0
- package/packages/typescript/src/database.d.ts.map +1 -0
- package/packages/typescript/src/database.js +24 -0
- package/packages/typescript/src/entities.d.ts +11 -0
- package/packages/typescript/src/entities.d.ts.map +1 -0
- package/packages/typescript/src/entities.js +437 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/addContact.js +142 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.js +183 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.js +148 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts +21 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/index.js +20 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.js +181 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.js +102 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts +13 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/roles.js +317 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.js +129 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.js +176 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts +15 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.js +476 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts +22 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/settings.js +823 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/think.js +84 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.js +134 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.js +193 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.js +199 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts +43 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.js +372 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.js +150 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.js +136 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.js +84 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.js +112 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts +16 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.js +192 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.js +138 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.js +96 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.js +139 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.js +138 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts +39 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/index.js +78 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts +4 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.js +62 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts +16 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.js +162 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts +65 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.js +352 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts +24 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.js +63 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts +29 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.js +195 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts +15 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.js +164 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts +92 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/clipboard/types.js +4 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts +8 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/index.js +7 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.js +633 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.js +619 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts +12 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.js +14 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.js +70 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.js +256 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts +12 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.js +41 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts +49 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.js +78 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts +159 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.js +192 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts +10 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/index.js +8 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.js +51 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts +46 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/service.js +569 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts +95 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/types.js +22 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts +34 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.js +106 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts +25 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.js +116 -0
- package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts +13 -0
- package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.js +152 -0
- package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts +101 -0
- package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/builder.js +362 -0
- package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts +16 -0
- package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/builtins.js +245 -0
- package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts +32 -0
- package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/defaults.js +98 -0
- package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts +12 -0
- package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.js +231 -0
- package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts +24 -0
- package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/extraction.js +319 -0
- package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts +22 -0
- package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/index.js +52 -0
- package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts +41 -0
- package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/intent.js +119 -0
- package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts +11 -0
- package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/providers/context.js +166 -0
- package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts +70 -0
- package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/service.js +924 -0
- package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts +26 -0
- package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/storage.js +228 -0
- package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts +10 -0
- package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/template.js +56 -0
- package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts +40 -0
- package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/ttl.js +107 -0
- package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts +588 -0
- package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/types.js +71 -0
- package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts +24 -0
- package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/form/validation.js +311 -0
- package/packages/typescript/src/features/advanced-capabilities/index.d.ts +47 -0
- package/packages/typescript/src/features/advanced-capabilities/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/index.js +114 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts +7 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.js +1299 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts +53 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.js +429 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts +10 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/index.js +8 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts +8 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.js +57 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts +71 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.js +498 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts +18 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/personality/types.js +8 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/contacts.js +77 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts +11 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/facts.js +108 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts +3 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/followUps.js +112 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts +13 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/index.js +12 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts +9 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.js +83 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts +15 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/relationships.js +125 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts +19 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/roles.js +180 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts +7 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-capabilities/providers/settings.js +286 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts +3 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/index.js +2 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts +3 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.js +198 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts +3 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/evaluators/summarization.js +240 -0
- package/packages/typescript/src/features/advanced-memory/index.d.ts +16 -0
- package/packages/typescript/src/features/advanced-memory/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/index.js +26 -0
- package/packages/typescript/src/features/advanced-memory/prompts.d.ts +2 -0
- package/packages/typescript/src/features/advanced-memory/prompts.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/prompts.js +1 -0
- package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts +3 -0
- package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/providers/context-summary.js +85 -0
- package/packages/typescript/src/features/advanced-memory/providers/index.d.ts +3 -0
- package/packages/typescript/src/features/advanced-memory/providers/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/providers/index.js +2 -0
- package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts +3 -0
- package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.js +92 -0
- package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts +5 -0
- package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/schemas/index.js +3 -0
- package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts +10 -0
- package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.js +65 -0
- package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts +10 -0
- package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.js +45 -0
- package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts +10 -0
- package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.js +66 -0
- package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts +37 -0
- package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/services/memory-service.js +347 -0
- package/packages/typescript/src/features/advanced-memory/trajectory.d.ts +10 -0
- package/packages/typescript/src/features/advanced-memory/trajectory.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/trajectory.js +33 -0
- package/packages/typescript/src/features/advanced-memory/types.d.ts +68 -0
- package/packages/typescript/src/features/advanced-memory/types.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-memory/types.js +6 -0
- package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts +6 -0
- package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-planning/actions/chain-example.js +181 -0
- package/packages/typescript/src/features/advanced-planning/index.d.ts +5 -0
- package/packages/typescript/src/features/advanced-planning/index.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-planning/index.js +20 -0
- package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts +3 -0
- package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-planning/providers/message-classifier.js +105 -0
- package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts +77 -0
- package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-planning/services/planning-service.js +875 -0
- package/packages/typescript/src/features/advanced-planning/types.d.ts +78 -0
- package/packages/typescript/src/features/advanced-planning/types.d.ts.map +1 -0
- package/packages/typescript/src/features/advanced-planning/types.js +1 -0
- package/packages/typescript/src/features/autonomy/action.d.ts +14 -0
- package/packages/typescript/src/features/autonomy/action.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/action.js +177 -0
- package/packages/typescript/src/features/autonomy/execution-facade.d.ts +22 -0
- package/packages/typescript/src/features/autonomy/execution-facade.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/execution-facade.js +132 -0
- package/packages/typescript/src/features/autonomy/index.d.ts +11 -0
- package/packages/typescript/src/features/autonomy/index.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/index.js +13 -0
- package/packages/typescript/src/features/autonomy/providers.d.ts +21 -0
- package/packages/typescript/src/features/autonomy/providers.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/providers.js +154 -0
- package/packages/typescript/src/features/autonomy/routes.d.ts +11 -0
- package/packages/typescript/src/features/autonomy/routes.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/routes.js +158 -0
- package/packages/typescript/src/features/autonomy/service.d.ts +138 -0
- package/packages/typescript/src/features/autonomy/service.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/service.js +813 -0
- package/packages/typescript/src/features/autonomy/types.d.ts +31 -0
- package/packages/typescript/src/features/autonomy/types.d.ts.map +1 -0
- package/packages/typescript/src/features/autonomy/types.js +6 -0
- package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts +4 -0
- package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/actions/choice.js +278 -0
- package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts +3 -0
- package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/actions/ignore.js +23 -0
- package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts +10 -0
- package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/actions/index.js +9 -0
- package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts +3 -0
- package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/actions/none.js +26 -0
- package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts +3 -0
- package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/actions/reply.js +80 -0
- package/packages/typescript/src/features/basic-capabilities/index.d.ts +108 -0
- package/packages/typescript/src/features/basic-capabilities/index.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/index.js +1020 -0
- package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts +7 -0
- package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/actionState.js +232 -0
- package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts +35 -0
- package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/actions.js +82 -0
- package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts +20 -0
- package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/attachments.js +94 -0
- package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts +17 -0
- package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/character.js +190 -0
- package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts +11 -0
- package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/choice.js +86 -0
- package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts +12 -0
- package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/contextBench.js +50 -0
- package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts +11 -0
- package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/currentTime.js +56 -0
- package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts +7 -0
- package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/entities.js +39 -0
- package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts +27 -0
- package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/evaluators.js +107 -0
- package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts +19 -0
- package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/index.js +18 -0
- package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts +18 -0
- package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/providers.js +70 -0
- package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts +14 -0
- package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.js +323 -0
- package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts +12 -0
- package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/time.js +36 -0
- package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts +8 -0
- package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts.map +1 -0
- package/packages/typescript/src/features/basic-capabilities/providers/world.js +212 -0
- package/packages/typescript/src/features/index.d.ts +58 -0
- package/packages/typescript/src/features/index.d.ts.map +1 -0
- package/packages/typescript/src/features/index.js +155 -0
- package/packages/typescript/src/features/knowledge/actions.d.ts +5 -0
- package/packages/typescript/src/features/knowledge/actions.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/actions.js +269 -0
- package/packages/typescript/src/features/knowledge/config.d.ts +5 -0
- package/packages/typescript/src/features/knowledge/config.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/config.js +147 -0
- package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts +53 -0
- package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/ctx-embeddings.js +412 -0
- package/packages/typescript/src/features/knowledge/docs-loader.d.ts +9 -0
- package/packages/typescript/src/features/knowledge/docs-loader.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/docs-loader.js +202 -0
- package/packages/typescript/src/features/knowledge/document-processor.d.ts +26 -0
- package/packages/typescript/src/features/knowledge/document-processor.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/document-processor.js +618 -0
- package/packages/typescript/src/features/knowledge/documents-provider.d.ts +3 -0
- package/packages/typescript/src/features/knowledge/documents-provider.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/documents-provider.js +106 -0
- package/packages/typescript/src/features/knowledge/index.d.ts +16 -0
- package/packages/typescript/src/features/knowledge/index.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/index.js +29 -0
- package/packages/typescript/src/features/knowledge/llm.d.ts +27 -0
- package/packages/typescript/src/features/knowledge/llm.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/llm.js +444 -0
- package/packages/typescript/src/features/knowledge/provider.d.ts +3 -0
- package/packages/typescript/src/features/knowledge/provider.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/provider.js +62 -0
- package/packages/typescript/src/features/knowledge/service.d.ts +76 -0
- package/packages/typescript/src/features/knowledge/service.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/service.js +511 -0
- package/packages/typescript/src/features/knowledge/types.d.ts +144 -0
- package/packages/typescript/src/features/knowledge/types.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/types.js +57 -0
- package/packages/typescript/src/features/knowledge/utils.d.ts +17 -0
- package/packages/typescript/src/features/knowledge/utils.d.ts.map +1 -0
- package/packages/typescript/src/features/knowledge/utils.js +313 -0
- package/packages/typescript/src/features/orchestrator/actions/coding-task-handlers.d.ts +41 -0
- package/packages/typescript/src/features/orchestrator/actions/coding-task-handlers.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/coding-task-handlers.js +443 -0
- package/packages/typescript/src/features/orchestrator/actions/coding-task-helpers.d.ts +34 -0
- package/packages/typescript/src/features/orchestrator/actions/coding-task-helpers.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/coding-task-helpers.js +171 -0
- package/packages/typescript/src/features/orchestrator/actions/eval-metadata.d.ts +11 -0
- package/packages/typescript/src/features/orchestrator/actions/eval-metadata.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/eval-metadata.js +55 -0
- package/packages/typescript/src/features/orchestrator/actions/finalize-workspace.d.ts +11 -0
- package/packages/typescript/src/features/orchestrator/actions/finalize-workspace.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/finalize-workspace.js +214 -0
- package/packages/typescript/src/features/orchestrator/actions/list-agents.d.ts +13 -0
- package/packages/typescript/src/features/orchestrator/actions/list-agents.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/list-agents.js +174 -0
- package/packages/typescript/src/features/orchestrator/actions/manage-issues.d.ts +11 -0
- package/packages/typescript/src/features/orchestrator/actions/manage-issues.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/manage-issues.js +428 -0
- package/packages/typescript/src/features/orchestrator/actions/provision-workspace.d.ts +11 -0
- package/packages/typescript/src/features/orchestrator/actions/provision-workspace.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/provision-workspace.js +189 -0
- package/packages/typescript/src/features/orchestrator/actions/send-to-agent.d.ts +12 -0
- package/packages/typescript/src/features/orchestrator/actions/send-to-agent.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/send-to-agent.js +265 -0
- package/packages/typescript/src/features/orchestrator/actions/spawn-agent.d.ts +12 -0
- package/packages/typescript/src/features/orchestrator/actions/spawn-agent.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/spawn-agent.js +356 -0
- package/packages/typescript/src/features/orchestrator/actions/start-coding-task.d.ts +22 -0
- package/packages/typescript/src/features/orchestrator/actions/start-coding-task.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/start-coding-task.js +270 -0
- package/packages/typescript/src/features/orchestrator/actions/stop-agent.d.ts +12 -0
- package/packages/typescript/src/features/orchestrator/actions/stop-agent.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/stop-agent.js +192 -0
- package/packages/typescript/src/features/orchestrator/actions/task-control.d.ts +3 -0
- package/packages/typescript/src/features/orchestrator/actions/task-control.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/task-control.js +217 -0
- package/packages/typescript/src/features/orchestrator/actions/task-history.d.ts +3 -0
- package/packages/typescript/src/features/orchestrator/actions/task-history.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/task-history.js +323 -0
- package/packages/typescript/src/features/orchestrator/actions/task-share.d.ts +3 -0
- package/packages/typescript/src/features/orchestrator/actions/task-share.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/task-share.js +168 -0
- package/packages/typescript/src/features/orchestrator/actions/task-thread-target.d.ts +11 -0
- package/packages/typescript/src/features/orchestrator/actions/task-thread-target.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/actions/task-thread-target.js +68 -0
- package/packages/typescript/src/features/orchestrator/api/agent-routes.d.ts +18 -0
- package/packages/typescript/src/features/orchestrator/api/agent-routes.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/api/agent-routes.js +654 -0
- package/packages/typescript/src/features/orchestrator/api/coordinator-routes.d.ts +22 -0
- package/packages/typescript/src/features/orchestrator/api/coordinator-routes.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/api/coordinator-routes.js +403 -0
- package/packages/typescript/src/features/orchestrator/api/hook-routes.d.ts +18 -0
- package/packages/typescript/src/features/orchestrator/api/hook-routes.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/api/hook-routes.js +164 -0
- package/packages/typescript/src/features/orchestrator/api/issue-routes.d.ts +17 -0
- package/packages/typescript/src/features/orchestrator/api/issue-routes.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/api/issue-routes.js +132 -0
- package/packages/typescript/src/features/orchestrator/api/routes.d.ts +37 -0
- package/packages/typescript/src/features/orchestrator/api/routes.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/api/routes.js +96 -0
- package/packages/typescript/src/features/orchestrator/api/workspace-routes.d.ts +17 -0
- package/packages/typescript/src/features/orchestrator/api/workspace-routes.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/api/workspace-routes.js +149 -0
- package/packages/typescript/src/features/orchestrator/base-plugin.d.ts +19 -0
- package/packages/typescript/src/features/orchestrator/base-plugin.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/base-plugin.js +75 -0
- package/packages/typescript/src/features/orchestrator/claude-jsonl-completion-watcher.d.ts +101 -0
- package/packages/typescript/src/features/orchestrator/claude-jsonl-completion-watcher.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/claude-jsonl-completion-watcher.js +310 -0
- package/packages/typescript/src/features/orchestrator/index.d.ts +33 -0
- package/packages/typescript/src/features/orchestrator/index.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/index.js +30 -0
- package/packages/typescript/src/features/orchestrator/patch-agent-orchestrator-plugin.d.ts +15 -0
- package/packages/typescript/src/features/orchestrator/patch-agent-orchestrator-plugin.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/patch-agent-orchestrator-plugin.js +1449 -0
- package/packages/typescript/src/features/orchestrator/providers/action-examples.d.ts +14 -0
- package/packages/typescript/src/features/orchestrator/providers/action-examples.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/providers/action-examples.js +151 -0
- package/packages/typescript/src/features/orchestrator/providers/active-workspace-context.d.ts +13 -0
- package/packages/typescript/src/features/orchestrator/providers/active-workspace-context.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/providers/active-workspace-context.js +142 -0
- package/packages/typescript/src/features/orchestrator/services/agent-credentials.d.ts +6 -0
- package/packages/typescript/src/features/orchestrator/services/agent-credentials.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/agent-credentials.js +91 -0
- package/packages/typescript/src/features/orchestrator/services/agent-metrics.d.ts +30 -0
- package/packages/typescript/src/features/orchestrator/services/agent-metrics.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/agent-metrics.js +54 -0
- package/packages/typescript/src/features/orchestrator/services/agent-selection.d.ts +53 -0
- package/packages/typescript/src/features/orchestrator/services/agent-selection.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/agent-selection.js +70 -0
- package/packages/typescript/src/features/orchestrator/services/ansi-utils.d.ts +61 -0
- package/packages/typescript/src/features/orchestrator/services/ansi-utils.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/ansi-utils.js +252 -0
- package/packages/typescript/src/features/orchestrator/services/config-env.d.ts +13 -0
- package/packages/typescript/src/features/orchestrator/services/config-env.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/config-env.js +37 -0
- package/packages/typescript/src/features/orchestrator/services/coordinator-event-normalizer.d.ts +50 -0
- package/packages/typescript/src/features/orchestrator/services/coordinator-event-normalizer.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/coordinator-event-normalizer.js +184 -0
- package/packages/typescript/src/features/orchestrator/services/debug-capture.d.ts +38 -0
- package/packages/typescript/src/features/orchestrator/services/debug-capture.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/debug-capture.js +113 -0
- package/packages/typescript/src/features/orchestrator/services/pty-auto-response.d.ts +30 -0
- package/packages/typescript/src/features/orchestrator/services/pty-auto-response.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/pty-auto-response.js +146 -0
- package/packages/typescript/src/features/orchestrator/services/pty-init.d.ts +54 -0
- package/packages/typescript/src/features/orchestrator/services/pty-init.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/pty-init.js +315 -0
- package/packages/typescript/src/features/orchestrator/services/pty-service.d.ts +175 -0
- package/packages/typescript/src/features/orchestrator/services/pty-service.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/pty-service.js +1469 -0
- package/packages/typescript/src/features/orchestrator/services/pty-session-io.d.ts +49 -0
- package/packages/typescript/src/features/orchestrator/services/pty-session-io.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/pty-session-io.js +180 -0
- package/packages/typescript/src/features/orchestrator/services/pty-spawn.d.ts +53 -0
- package/packages/typescript/src/features/orchestrator/services/pty-spawn.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/pty-spawn.js +280 -0
- package/packages/typescript/src/features/orchestrator/services/pty-types.d.ts +80 -0
- package/packages/typescript/src/features/orchestrator/services/pty-types.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/pty-types.js +51 -0
- package/packages/typescript/src/features/orchestrator/services/repo-input.d.ts +16 -0
- package/packages/typescript/src/features/orchestrator/services/repo-input.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/repo-input.js +88 -0
- package/packages/typescript/src/features/orchestrator/services/stall-classifier.d.ts +69 -0
- package/packages/typescript/src/features/orchestrator/services/stall-classifier.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/stall-classifier.js +446 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-coordinator-prompts.d.ts +97 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-coordinator-prompts.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-coordinator-prompts.js +342 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-coordinator.d.ts +421 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-coordinator.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-coordinator.js +2356 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-decision-loop.d.ts +52 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-decision-loop.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-decision-loop.js +1538 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-event-triage.d.ts +49 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-event-triage.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-event-triage.js +171 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-history.d.ts +27 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-history.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-history.js +148 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-idle-watchdog.d.ts +22 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-idle-watchdog.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/swarm-idle-watchdog.js +265 -0
- package/packages/typescript/src/features/orchestrator/services/task-acceptance.d.ts +8 -0
- package/packages/typescript/src/features/orchestrator/services/task-acceptance.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-acceptance.js +114 -0
- package/packages/typescript/src/features/orchestrator/services/task-agent-auth.d.ts +68 -0
- package/packages/typescript/src/features/orchestrator/services/task-agent-auth.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-agent-auth.js +559 -0
- package/packages/typescript/src/features/orchestrator/services/task-agent-frameworks.d.ts +82 -0
- package/packages/typescript/src/features/orchestrator/services/task-agent-frameworks.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-agent-frameworks.js +738 -0
- package/packages/typescript/src/features/orchestrator/services/task-kind.d.ts +3 -0
- package/packages/typescript/src/features/orchestrator/services/task-kind.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-kind.js +40 -0
- package/packages/typescript/src/features/orchestrator/services/task-policy.d.ts +17 -0
- package/packages/typescript/src/features/orchestrator/services/task-policy.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-policy.js +226 -0
- package/packages/typescript/src/features/orchestrator/services/task-registry.d.ts +550 -0
- package/packages/typescript/src/features/orchestrator/services/task-registry.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-registry.js +2182 -0
- package/packages/typescript/src/features/orchestrator/services/task-share.d.ts +18 -0
- package/packages/typescript/src/features/orchestrator/services/task-share.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-share.js +159 -0
- package/packages/typescript/src/features/orchestrator/services/task-validation.d.ts +69 -0
- package/packages/typescript/src/features/orchestrator/services/task-validation.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-validation.js +587 -0
- package/packages/typescript/src/features/orchestrator/services/task-verifier-runner.d.ts +5 -0
- package/packages/typescript/src/features/orchestrator/services/task-verifier-runner.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/task-verifier-runner.js +372 -0
- package/packages/typescript/src/features/orchestrator/services/trajectory-context.d.ts +73 -0
- package/packages/typescript/src/features/orchestrator/services/trajectory-context.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/trajectory-context.js +64 -0
- package/packages/typescript/src/features/orchestrator/services/trajectory-feedback.d.ts +53 -0
- package/packages/typescript/src/features/orchestrator/services/trajectory-feedback.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/trajectory-feedback.js +260 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-git-ops.d.ts +28 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-git-ops.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-git-ops.js +105 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-github.d.ts +58 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-github.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-github.js +139 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-lifecycle.d.ts +18 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-lifecycle.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-lifecycle.js +86 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-service.d.ts +118 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-service.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-service.js +533 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-types.d.ts +81 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-types.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/services/workspace-types.js +8 -0
- package/packages/typescript/src/features/orchestrator/task-progress-streamer.d.ts +38 -0
- package/packages/typescript/src/features/orchestrator/task-progress-streamer.d.ts.map +1 -0
- package/packages/typescript/src/features/orchestrator/task-progress-streamer.js +293 -0
- package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts +3 -0
- package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.js +65 -0
- package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts +3 -0
- package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.js +63 -0
- package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts +4 -0
- package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.js +232 -0
- package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts +35 -0
- package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/coreExtensions.js +77 -0
- package/packages/typescript/src/features/plugin-manager/index.d.ts +25 -0
- package/packages/typescript/src/features/plugin-manager/index.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/index.js +53 -0
- package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts +5 -0
- package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.js +104 -0
- package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts +5 -0
- package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.js +105 -0
- package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts +5 -0
- package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.js +93 -0
- package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts +9 -0
- package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/providers/relevance.js +226 -0
- package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts +76 -0
- package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/services/coreManagerService.js +479 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts +31 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.js +57 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts +68 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.js +1007 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts +84 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.js +402 -0
- package/packages/typescript/src/features/plugin-manager/types.d.ts +142 -0
- package/packages/typescript/src/features/plugin-manager/types.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/types.js +13 -0
- package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts +4 -0
- package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts.map +1 -0
- package/packages/typescript/src/features/plugin-manager/utils/paths.js +32 -0
- package/packages/typescript/src/features/secrets/actions/index.d.ts +7 -0
- package/packages/typescript/src/features/secrets/actions/index.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/actions/index.js +6 -0
- package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts +12 -0
- package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/actions/manage-secret.js +278 -0
- package/packages/typescript/src/features/secrets/actions/request-secret.d.ts +3 -0
- package/packages/typescript/src/features/secrets/actions/request-secret.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/actions/request-secret.js +105 -0
- package/packages/typescript/src/features/secrets/actions/set-secret.d.ts +12 -0
- package/packages/typescript/src/features/secrets/actions/set-secret.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/actions/set-secret.js +223 -0
- package/packages/typescript/src/features/secrets/crypto/encryption.d.ts +184 -0
- package/packages/typescript/src/features/secrets/crypto/encryption.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/crypto/encryption.js +373 -0
- package/packages/typescript/src/features/secrets/crypto/index.d.ts +5 -0
- package/packages/typescript/src/features/secrets/crypto/index.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/crypto/index.js +16 -0
- package/packages/typescript/src/features/secrets/onboarding/action.d.ts +12 -0
- package/packages/typescript/src/features/secrets/onboarding/action.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/onboarding/action.js +337 -0
- package/packages/typescript/src/features/secrets/onboarding/config.d.ts +99 -0
- package/packages/typescript/src/features/secrets/onboarding/config.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/onboarding/config.js +240 -0
- package/packages/typescript/src/features/secrets/onboarding/index.d.ts +13 -0
- package/packages/typescript/src/features/secrets/onboarding/index.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/onboarding/index.js +12 -0
- package/packages/typescript/src/features/secrets/onboarding/provider.d.ts +16 -0
- package/packages/typescript/src/features/secrets/onboarding/provider.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/onboarding/provider.js +231 -0
- package/packages/typescript/src/features/secrets/onboarding/service.d.ts +134 -0
- package/packages/typescript/src/features/secrets/onboarding/service.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/onboarding/service.js +436 -0
- package/packages/typescript/src/features/secrets/providers/index.d.ts +5 -0
- package/packages/typescript/src/features/secrets/providers/index.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/providers/index.js +4 -0
- package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts +22 -0
- package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/providers/secrets-status.js +160 -0
- package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts +182 -0
- package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/services/plugin-activator.js +617 -0
- package/packages/typescript/src/features/secrets/services/secrets.d.ts +183 -0
- package/packages/typescript/src/features/secrets/services/secrets.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/services/secrets.js +566 -0
- package/packages/typescript/src/features/secrets/storage/character-store.d.ts +63 -0
- package/packages/typescript/src/features/secrets/storage/character-store.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/storage/character-store.js +265 -0
- package/packages/typescript/src/features/secrets/storage/component-store.d.ts +47 -0
- package/packages/typescript/src/features/secrets/storage/component-store.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/storage/component-store.js +264 -0
- package/packages/typescript/src/features/secrets/storage/index.d.ts +10 -0
- package/packages/typescript/src/features/secrets/storage/index.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/storage/index.js +8 -0
- package/packages/typescript/src/features/secrets/storage/interface.d.ts +52 -0
- package/packages/typescript/src/features/secrets/storage/interface.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/storage/interface.js +92 -0
- package/packages/typescript/src/features/secrets/storage/memory-store.d.ts +44 -0
- package/packages/typescript/src/features/secrets/storage/memory-store.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/storage/memory-store.js +142 -0
- package/packages/typescript/src/features/secrets/storage/world-store.d.ts +52 -0
- package/packages/typescript/src/features/secrets/storage/world-store.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/storage/world-store.js +292 -0
- package/packages/typescript/src/features/secrets/types.d.ts +438 -0
- package/packages/typescript/src/features/secrets/types.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/types.js +57 -0
- package/packages/typescript/src/features/secrets/validation.d.ts +33 -0
- package/packages/typescript/src/features/secrets/validation.d.ts.map +1 -0
- package/packages/typescript/src/features/secrets/validation.js +389 -0
- package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts +275 -0
- package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/TrajectoriesService.js +1401 -0
- package/packages/typescript/src/features/trajectories/action-interceptor.d.ts +23 -0
- package/packages/typescript/src/features/trajectories/action-interceptor.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/action-interceptor.js +178 -0
- package/packages/typescript/src/features/trajectories/art-format.d.ts +32 -0
- package/packages/typescript/src/features/trajectories/art-format.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/art-format.js +221 -0
- package/packages/typescript/src/features/trajectories/export.d.ts +40 -0
- package/packages/typescript/src/features/trajectories/export.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/export.js +99 -0
- package/packages/typescript/src/features/trajectories/game-rewards.d.ts +14 -0
- package/packages/typescript/src/features/trajectories/game-rewards.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/game-rewards.js +20 -0
- package/packages/typescript/src/features/trajectories/index.d.ts +24 -0
- package/packages/typescript/src/features/trajectories/index.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/index.js +253 -0
- package/packages/typescript/src/features/trajectories/integration.d.ts +59 -0
- package/packages/typescript/src/features/trajectories/integration.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/integration.js +83 -0
- package/packages/typescript/src/features/trajectories/reward-service.d.ts +24 -0
- package/packages/typescript/src/features/trajectories/reward-service.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/reward-service.js +89 -0
- package/packages/typescript/src/features/trajectories/types.d.ts +243 -0
- package/packages/typescript/src/features/trajectories/types.d.ts.map +1 -0
- package/packages/typescript/src/features/trajectories/types.js +1 -0
- package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts +3 -0
- package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/evaluateTrust.js +225 -0
- package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts +3 -0
- package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/hasTrustEngine.js +3 -0
- package/packages/typescript/src/features/trust/actions/index.d.ts +6 -0
- package/packages/typescript/src/features/trust/actions/index.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/index.js +5 -0
- package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts +3 -0
- package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/recordTrustInteraction.js +189 -0
- package/packages/typescript/src/features/trust/actions/requestElevation.d.ts +3 -0
- package/packages/typescript/src/features/trust/actions/requestElevation.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/requestElevation.js +165 -0
- package/packages/typescript/src/features/trust/actions/roles.d.ts +3 -0
- package/packages/typescript/src/features/trust/actions/roles.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/roles.js +295 -0
- package/packages/typescript/src/features/trust/actions/settings.d.ts +5 -0
- package/packages/typescript/src/features/trust/actions/settings.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/actions/settings.js +603 -0
- package/packages/typescript/src/features/trust/evaluators/index.d.ts +4 -0
- package/packages/typescript/src/features/trust/evaluators/index.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/evaluators/index.js +3 -0
- package/packages/typescript/src/features/trust/evaluators/reflection.d.ts +3 -0
- package/packages/typescript/src/features/trust/evaluators/reflection.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/evaluators/reflection.js +290 -0
- package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts +3 -0
- package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/evaluators/securityEvaluator.js +270 -0
- package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts +3 -0
- package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.js +201 -0
- package/packages/typescript/src/features/trust/index.d.ts +72 -0
- package/packages/typescript/src/features/trust/index.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/index.js +213 -0
- package/packages/typescript/src/features/trust/providers/adminTrust.d.ts +3 -0
- package/packages/typescript/src/features/trust/providers/adminTrust.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/providers/adminTrust.js +49 -0
- package/packages/typescript/src/features/trust/providers/index.d.ts +6 -0
- package/packages/typescript/src/features/trust/providers/index.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/providers/index.js +5 -0
- package/packages/typescript/src/features/trust/providers/roles.d.ts +4 -0
- package/packages/typescript/src/features/trust/providers/roles.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/providers/roles.js +142 -0
- package/packages/typescript/src/features/trust/providers/securityStatus.d.ts +3 -0
- package/packages/typescript/src/features/trust/providers/securityStatus.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/providers/securityStatus.js +110 -0
- package/packages/typescript/src/features/trust/providers/settings.d.ts +3 -0
- package/packages/typescript/src/features/trust/providers/settings.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/providers/settings.js +212 -0
- package/packages/typescript/src/features/trust/providers/trustProfile.d.ts +3 -0
- package/packages/typescript/src/features/trust/providers/trustProfile.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/providers/trustProfile.js +68 -0
- package/packages/typescript/src/features/trust/schema.d.ts +1170 -0
- package/packages/typescript/src/features/trust/schema.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/schema.js +108 -0
- package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts +40 -0
- package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.js +317 -0
- package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts +62 -0
- package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/CredentialProtector.js +417 -0
- package/packages/typescript/src/features/trust/services/SecurityModule.d.ts +142 -0
- package/packages/typescript/src/features/trust/services/SecurityModule.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/SecurityModule.js +1057 -0
- package/packages/typescript/src/features/trust/services/SecurityStore.d.ts +53 -0
- package/packages/typescript/src/features/trust/services/SecurityStore.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/SecurityStore.js +123 -0
- package/packages/typescript/src/features/trust/services/TrustEngine.d.ts +81 -0
- package/packages/typescript/src/features/trust/services/TrustEngine.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/TrustEngine.js +621 -0
- package/packages/typescript/src/features/trust/services/adminContext.d.ts +3 -0
- package/packages/typescript/src/features/trust/services/adminContext.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/adminContext.js +32 -0
- package/packages/typescript/src/features/trust/services/db.d.ts +12 -0
- package/packages/typescript/src/features/trust/services/db.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/services/db.js +10 -0
- package/packages/typescript/src/features/trust/types/permissions.d.ts +185 -0
- package/packages/typescript/src/features/trust/types/permissions.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/types/permissions.js +58 -0
- package/packages/typescript/src/features/trust/types/security.d.ts +114 -0
- package/packages/typescript/src/features/trust/types/security.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/types/security.js +15 -0
- package/packages/typescript/src/features/trust/types/trust.d.ts +179 -0
- package/packages/typescript/src/features/trust/types/trust.d.ts.map +1 -0
- package/packages/typescript/src/features/trust/types/trust.js +25 -0
- package/packages/typescript/src/generated/action-docs.d.ts +2470 -0
- package/packages/typescript/src/generated/action-docs.d.ts.map +1 -0
- package/packages/typescript/src/generated/action-docs.js +3549 -0
- package/packages/typescript/src/generated/spec-helpers.d.ts +49 -0
- package/packages/typescript/src/generated/spec-helpers.d.ts.map +1 -0
- package/packages/typescript/src/generated/spec-helpers.js +78 -0
- package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts +1032 -0
- package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
- package/packages/typescript/src/i18n/generated/validation-keyword-data.js +1032 -0
- package/packages/typescript/src/i18n/validation-keywords.d.ts +25 -0
- package/packages/typescript/src/i18n/validation-keywords.d.ts.map +1 -0
- package/packages/typescript/src/i18n/validation-keywords.js +112 -0
- package/packages/typescript/src/index.d.ts +12 -0
- package/packages/typescript/src/index.d.ts.map +1 -0
- package/packages/typescript/src/index.js +13 -0
- package/packages/typescript/src/index.node.d.ts +78 -0
- package/packages/typescript/src/index.node.d.ts.map +1 -0
- package/packages/typescript/src/index.node.js +106 -0
- package/packages/typescript/src/logger.d.ts +121 -0
- package/packages/typescript/src/logger.d.ts.map +1 -0
- package/packages/typescript/src/logger.js +1023 -0
- package/packages/typescript/src/markdown/chunk.d.ts +50 -0
- package/packages/typescript/src/markdown/chunk.d.ts.map +1 -0
- package/packages/typescript/src/markdown/chunk.js +268 -0
- package/packages/typescript/src/markdown/code-spans.d.ts +42 -0
- package/packages/typescript/src/markdown/code-spans.d.ts.map +1 -0
- package/packages/typescript/src/markdown/code-spans.js +89 -0
- package/packages/typescript/src/markdown/fences.d.ts +50 -0
- package/packages/typescript/src/markdown/fences.d.ts.map +1 -0
- package/packages/typescript/src/markdown/fences.js +90 -0
- package/packages/typescript/src/markdown/frontmatter.d.ts +24 -0
- package/packages/typescript/src/markdown/frontmatter.d.ts.map +1 -0
- package/packages/typescript/src/markdown/frontmatter.js +151 -0
- package/packages/typescript/src/markdown/index.d.ts +18 -0
- package/packages/typescript/src/markdown/index.d.ts.map +1 -0
- package/packages/typescript/src/markdown/index.js +17 -0
- package/packages/typescript/src/markdown/ir.d.ts +101 -0
- package/packages/typescript/src/markdown/ir.d.ts.map +1 -0
- package/packages/typescript/src/markdown/ir.js +789 -0
- package/packages/typescript/src/media/fetch.d.ts +39 -0
- package/packages/typescript/src/media/fetch.d.ts.map +1 -0
- package/packages/typescript/src/media/fetch.js +205 -0
- package/packages/typescript/src/media/index.d.ts +8 -0
- package/packages/typescript/src/media/index.d.ts.map +1 -0
- package/packages/typescript/src/media/index.js +7 -0
- package/packages/typescript/src/media/mime.d.ts +51 -0
- package/packages/typescript/src/media/mime.d.ts.map +1 -0
- package/packages/typescript/src/media/mime.js +225 -0
- package/packages/typescript/src/memory.d.ts +40 -0
- package/packages/typescript/src/memory.d.ts.map +1 -0
- package/packages/typescript/src/memory.js +58 -0
- package/packages/typescript/src/network/fetch-guard.d.ts +34 -0
- package/packages/typescript/src/network/fetch-guard.d.ts.map +1 -0
- package/packages/typescript/src/network/fetch-guard.js +136 -0
- package/packages/typescript/src/network/index.d.ts +11 -0
- package/packages/typescript/src/network/index.d.ts.map +1 -0
- package/packages/typescript/src/network/index.js +10 -0
- package/packages/typescript/src/network/ssrf.d.ts +58 -0
- package/packages/typescript/src/network/ssrf.d.ts.map +1 -0
- package/packages/typescript/src/network/ssrf.js +252 -0
- package/packages/typescript/src/plugin-lifecycle.d.ts +16 -0
- package/packages/typescript/src/plugin-lifecycle.d.ts.map +1 -0
- package/packages/typescript/src/plugin-lifecycle.js +551 -0
- package/packages/typescript/src/plugin.d.ts +13 -0
- package/packages/typescript/src/plugin.d.ts.map +1 -0
- package/packages/typescript/src/plugin.js +334 -0
- package/packages/typescript/src/plugins/index.d.ts +9 -0
- package/packages/typescript/src/plugins/index.d.ts.map +1 -0
- package/packages/typescript/src/plugins/index.js +8 -0
- package/packages/typescript/src/plugins/native-features.d.ts +14 -0
- package/packages/typescript/src/plugins/native-features.d.ts.map +1 -0
- package/packages/typescript/src/plugins/native-features.js +59 -0
- package/packages/typescript/src/prompts.d.ts +88 -0
- package/packages/typescript/src/prompts.d.ts.map +1 -0
- package/packages/typescript/src/prompts.js +1123 -0
- package/packages/typescript/src/providers/onboarding-progress.d.ts +19 -0
- package/packages/typescript/src/providers/onboarding-progress.d.ts.map +1 -0
- package/packages/typescript/src/providers/onboarding-progress.js +268 -0
- package/packages/typescript/src/providers/skill-eligibility.d.ts +28 -0
- package/packages/typescript/src/providers/skill-eligibility.d.ts.map +1 -0
- package/packages/typescript/src/providers/skill-eligibility.js +179 -0
- package/packages/typescript/src/provisioning.d.ts +54 -0
- package/packages/typescript/src/provisioning.d.ts.map +1 -0
- package/packages/typescript/src/provisioning.js +209 -0
- package/packages/typescript/src/roles.d.ts +70 -0
- package/packages/typescript/src/roles.d.ts.map +1 -0
- package/packages/typescript/src/roles.js +544 -0
- package/packages/typescript/src/runtime-composition.d.ts +129 -0
- package/packages/typescript/src/runtime-composition.d.ts.map +1 -0
- package/packages/typescript/src/runtime-composition.js +335 -0
- package/packages/typescript/src/runtime.d.ts +877 -0
- package/packages/typescript/src/runtime.d.ts.map +1 -0
- package/packages/typescript/src/runtime.js +5277 -0
- package/packages/typescript/src/schemas/agent.d.ts +7 -0
- package/packages/typescript/src/schemas/agent.d.ts.map +1 -0
- package/packages/typescript/src/schemas/agent.js +112 -0
- package/packages/typescript/src/schemas/cache.d.ts +7 -0
- package/packages/typescript/src/schemas/cache.d.ts.map +1 -0
- package/packages/typescript/src/schemas/cache.js +55 -0
- package/packages/typescript/src/schemas/channel-participant.d.ts +7 -0
- package/packages/typescript/src/schemas/channel-participant.d.ts.map +1 -0
- package/packages/typescript/src/schemas/channel-participant.js +49 -0
- package/packages/typescript/src/schemas/channel.d.ts +7 -0
- package/packages/typescript/src/schemas/channel.d.ts.map +1 -0
- package/packages/typescript/src/schemas/channel.js +94 -0
- package/packages/typescript/src/schemas/character.d.ts +445 -0
- package/packages/typescript/src/schemas/character.d.ts.map +1 -0
- package/packages/typescript/src/schemas/character.js +309 -0
- package/packages/typescript/src/schemas/component.d.ts +7 -0
- package/packages/typescript/src/schemas/component.d.ts.map +1 -0
- package/packages/typescript/src/schemas/component.js +156 -0
- package/packages/typescript/src/schemas/embedding.d.ts +7 -0
- package/packages/typescript/src/schemas/embedding.d.ts.map +1 -0
- package/packages/typescript/src/schemas/embedding.js +89 -0
- package/packages/typescript/src/schemas/entity.d.ts +7 -0
- package/packages/typescript/src/schemas/entity.d.ts.map +1 -0
- package/packages/typescript/src/schemas/entity.js +69 -0
- package/packages/typescript/src/schemas/index.d.ts +75 -0
- package/packages/typescript/src/schemas/index.d.ts.map +1 -0
- package/packages/typescript/src/schemas/index.js +74 -0
- package/packages/typescript/src/schemas/log.d.ts +6 -0
- package/packages/typescript/src/schemas/log.d.ts.map +1 -0
- package/packages/typescript/src/schemas/log.js +93 -0
- package/packages/typescript/src/schemas/memory.d.ts +7 -0
- package/packages/typescript/src/schemas/memory.d.ts.map +1 -0
- package/packages/typescript/src/schemas/memory.js +167 -0
- package/packages/typescript/src/schemas/message-server-agent.d.ts +7 -0
- package/packages/typescript/src/schemas/message-server-agent.d.ts.map +1 -0
- package/packages/typescript/src/schemas/message-server-agent.js +58 -0
- package/packages/typescript/src/schemas/message-server.d.ts +6 -0
- package/packages/typescript/src/schemas/message-server.d.ts.map +1 -0
- package/packages/typescript/src/schemas/message-server.js +62 -0
- package/packages/typescript/src/schemas/message.d.ts +7 -0
- package/packages/typescript/src/schemas/message.d.ts.map +1 -0
- package/packages/typescript/src/schemas/message.js +106 -0
- package/packages/typescript/src/schemas/pairing-allowlist.d.ts +7 -0
- package/packages/typescript/src/schemas/pairing-allowlist.d.ts.map +1 -0
- package/packages/typescript/src/schemas/pairing-allowlist.js +76 -0
- package/packages/typescript/src/schemas/pairing-request.d.ts +7 -0
- package/packages/typescript/src/schemas/pairing-request.d.ts.map +1 -0
- package/packages/typescript/src/schemas/pairing-request.js +96 -0
- package/packages/typescript/src/schemas/participant.d.ts +6 -0
- package/packages/typescript/src/schemas/participant.d.ts.map +1 -0
- package/packages/typescript/src/schemas/participant.js +91 -0
- package/packages/typescript/src/schemas/relationship.d.ts +7 -0
- package/packages/typescript/src/schemas/relationship.d.ts.map +1 -0
- package/packages/typescript/src/schemas/relationship.js +102 -0
- package/packages/typescript/src/schemas/room.d.ts +6 -0
- package/packages/typescript/src/schemas/room.d.ts.map +1 -0
- package/packages/typescript/src/schemas/room.js +86 -0
- package/packages/typescript/src/schemas/server.d.ts +7 -0
- package/packages/typescript/src/schemas/server.d.ts.map +1 -0
- package/packages/typescript/src/schemas/server.js +33 -0
- package/packages/typescript/src/schemas/task.d.ts +6 -0
- package/packages/typescript/src/schemas/task.d.ts.map +1 -0
- package/packages/typescript/src/schemas/task.js +95 -0
- package/packages/typescript/src/schemas/world.d.ts +6 -0
- package/packages/typescript/src/schemas/world.d.ts.map +1 -0
- package/packages/typescript/src/schemas/world.js +64 -0
- package/packages/typescript/src/search.d.ts +381 -0
- package/packages/typescript/src/search.d.ts.map +1 -0
- package/packages/typescript/src/search.js +1580 -0
- package/packages/typescript/src/secrets.d.ts +6 -0
- package/packages/typescript/src/secrets.d.ts.map +1 -0
- package/packages/typescript/src/secrets.js +28 -0
- package/packages/typescript/src/security/external-content.d.ts +96 -0
- package/packages/typescript/src/security/external-content.d.ts.map +1 -0
- package/packages/typescript/src/security/external-content.js +252 -0
- package/packages/typescript/src/security/index.d.ts +12 -0
- package/packages/typescript/src/security/index.d.ts.map +1 -0
- package/packages/typescript/src/security/index.js +13 -0
- package/packages/typescript/src/security/redact.d.ts +111 -0
- package/packages/typescript/src/security/redact.d.ts.map +1 -0
- package/packages/typescript/src/security/redact.js +254 -0
- package/packages/typescript/src/services/agentEvent.d.ts +297 -0
- package/packages/typescript/src/services/agentEvent.d.ts.map +1 -0
- package/packages/typescript/src/services/agentEvent.js +422 -0
- package/packages/typescript/src/services/approval.d.ts +169 -0
- package/packages/typescript/src/services/approval.d.ts.map +1 -0
- package/packages/typescript/src/services/approval.js +399 -0
- package/packages/typescript/src/services/embedding.d.ts +29 -0
- package/packages/typescript/src/services/embedding.d.ts.map +1 -0
- package/packages/typescript/src/services/embedding.js +211 -0
- package/packages/typescript/src/services/followUp.d.ts +48 -0
- package/packages/typescript/src/services/followUp.d.ts.map +1 -0
- package/packages/typescript/src/services/followUp.js +333 -0
- package/packages/typescript/src/services/hook.d.ts +85 -0
- package/packages/typescript/src/services/hook.d.ts.map +1 -0
- package/packages/typescript/src/services/hook.js +396 -0
- package/packages/typescript/src/services/message.d.ts +93 -0
- package/packages/typescript/src/services/message.d.ts.map +1 -0
- package/packages/typescript/src/services/message.js +3131 -0
- package/packages/typescript/src/services/onboarding-cli.d.ts +240 -0
- package/packages/typescript/src/services/onboarding-cli.d.ts.map +1 -0
- package/packages/typescript/src/services/onboarding-cli.js +688 -0
- package/packages/typescript/src/services/onboarding-rpc.d.ts +225 -0
- package/packages/typescript/src/services/onboarding-rpc.d.ts.map +1 -0
- package/packages/typescript/src/services/onboarding-rpc.js +318 -0
- package/packages/typescript/src/services/onboarding-state.d.ts +155 -0
- package/packages/typescript/src/services/onboarding-state.d.ts.map +1 -0
- package/packages/typescript/src/services/onboarding-state.js +706 -0
- package/packages/typescript/src/services/pairing-integration.d.ts +96 -0
- package/packages/typescript/src/services/pairing-integration.d.ts.map +1 -0
- package/packages/typescript/src/services/pairing-integration.js +145 -0
- package/packages/typescript/src/services/pairing-migration.d.ts +105 -0
- package/packages/typescript/src/services/pairing-migration.d.ts.map +1 -0
- package/packages/typescript/src/services/pairing-migration.js +283 -0
- package/packages/typescript/src/services/pairing.d.ts +80 -0
- package/packages/typescript/src/services/pairing.d.ts.map +1 -0
- package/packages/typescript/src/services/pairing.js +253 -0
- package/packages/typescript/src/services/plugin-hooks.d.ts +112 -0
- package/packages/typescript/src/services/plugin-hooks.d.ts.map +1 -0
- package/packages/typescript/src/services/plugin-hooks.js +163 -0
- package/packages/typescript/src/services/relationships.d.ts +125 -0
- package/packages/typescript/src/services/relationships.d.ts.map +1 -0
- package/packages/typescript/src/services/relationships.js +637 -0
- package/packages/typescript/src/services/task-scheduler.d.ts +28 -0
- package/packages/typescript/src/services/task-scheduler.d.ts.map +1 -0
- package/packages/typescript/src/services/task-scheduler.js +89 -0
- package/packages/typescript/src/services/task.d.ts +130 -0
- package/packages/typescript/src/services/task.d.ts.map +1 -0
- package/packages/typescript/src/services/task.js +536 -0
- package/packages/typescript/src/services/tool-policy.d.ts +186 -0
- package/packages/typescript/src/services/tool-policy.d.ts.map +1 -0
- package/packages/typescript/src/services/tool-policy.js +332 -0
- package/packages/typescript/src/services/trajectories.d.ts +25 -0
- package/packages/typescript/src/services/trajectories.d.ts.map +1 -0
- package/packages/typescript/src/services/trajectories.js +1 -0
- package/packages/typescript/src/services.d.ts +61 -0
- package/packages/typescript/src/services.d.ts.map +1 -0
- package/packages/typescript/src/services.js +99 -0
- package/packages/typescript/src/sessions/index.d.ts +17 -0
- package/packages/typescript/src/sessions/index.d.ts.map +1 -0
- package/packages/typescript/src/sessions/index.js +29 -0
- package/packages/typescript/src/sessions/provider.d.ts +71 -0
- package/packages/typescript/src/sessions/provider.d.ts.map +1 -0
- package/packages/typescript/src/sessions/provider.js +243 -0
- package/packages/typescript/src/sessions/session-key.d.ts +201 -0
- package/packages/typescript/src/sessions/session-key.d.ts.map +1 -0
- package/packages/typescript/src/sessions/session-key.js +396 -0
- package/packages/typescript/src/sessions/types.d.ts +197 -0
- package/packages/typescript/src/sessions/types.d.ts.map +1 -0
- package/packages/typescript/src/sessions/types.js +68 -0
- package/packages/typescript/src/settings.d.ts +99 -0
- package/packages/typescript/src/settings.d.ts.map +1 -0
- package/packages/typescript/src/settings.js +409 -0
- package/packages/typescript/src/should-respond.d.ts +2 -0
- package/packages/typescript/src/should-respond.d.ts.map +1 -0
- package/packages/typescript/src/should-respond.js +16 -0
- package/packages/typescript/src/streaming-context.d.ts +79 -0
- package/packages/typescript/src/streaming-context.d.ts.map +1 -0
- package/packages/typescript/src/streaming-context.js +115 -0
- package/packages/typescript/src/trajectory-context.d.ts +26 -0
- package/packages/typescript/src/trajectory-context.d.ts.map +1 -0
- package/packages/typescript/src/trajectory-context.js +85 -0
- package/packages/typescript/src/trajectory-utils.d.ts +49 -0
- package/packages/typescript/src/trajectory-utils.d.ts.map +1 -0
- package/packages/typescript/src/trajectory-utils.js +105 -0
- package/packages/typescript/src/types/agent.d.ts +62 -0
- package/packages/typescript/src/types/agent.d.ts.map +1 -0
- package/packages/typescript/src/types/agent.js +5 -0
- package/packages/typescript/src/types/agentEvent.d.ts +258 -0
- package/packages/typescript/src/types/agentEvent.d.ts.map +1 -0
- package/packages/typescript/src/types/agentEvent.js +11 -0
- package/packages/typescript/src/types/channel-config.d.ts +167 -0
- package/packages/typescript/src/types/channel-config.d.ts.map +1 -0
- package/packages/typescript/src/types/channel-config.js +7 -0
- package/packages/typescript/src/types/components.d.ts +346 -0
- package/packages/typescript/src/types/components.d.ts.map +1 -0
- package/packages/typescript/src/types/components.js +1 -0
- package/packages/typescript/src/types/database.d.ts +1079 -0
- package/packages/typescript/src/types/database.d.ts.map +1 -0
- package/packages/typescript/src/types/database.js +9 -0
- package/packages/typescript/src/types/environment.d.ts +73 -0
- package/packages/typescript/src/types/environment.d.ts.map +1 -0
- package/packages/typescript/src/types/environment.js +16 -0
- package/packages/typescript/src/types/events.d.ts +386 -0
- package/packages/typescript/src/types/events.d.ts.map +1 -0
- package/packages/typescript/src/types/events.js +83 -0
- package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts +400 -0
- package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/agent_pb.js +72 -0
- package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts +364 -0
- package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/components_pb.js +68 -0
- package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts +694 -0
- package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/database_pb.js +172 -0
- package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts +299 -0
- package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/environment_pb.js +52 -0
- package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts +746 -0
- package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/events_pb.js +357 -0
- package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts +799 -0
- package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.js +172 -0
- package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts +63 -0
- package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.js +18 -0
- package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts +290 -0
- package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/memory_pb.js +53 -0
- package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts +160 -0
- package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.js +88 -0
- package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts +214 -0
- package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.js +78 -0
- package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts +653 -0
- package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/model_pb.js +237 -0
- package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts +147 -0
- package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/payment_pb.js +27 -0
- package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts +286 -0
- package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.js +86 -0
- package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts +263 -0
- package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.js +38 -0
- package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts +137 -0
- package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.js +27 -0
- package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts +2687 -0
- package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.js +392 -0
- package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts +144 -0
- package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/service_pb.js +99 -0
- package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts +146 -0
- package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/settings_pb.js +32 -0
- package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts +259 -0
- package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/state_pb.js +44 -0
- package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts +120 -0
- package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/task_pb.js +53 -0
- package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts +205 -0
- package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/tee_pb.js +89 -0
- package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts +47 -0
- package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts.map +1 -0
- package/packages/typescript/src/types/generated/eliza/v1/testing_pb.js +16 -0
- package/packages/typescript/src/types/hook.d.ts +338 -0
- package/packages/typescript/src/types/hook.d.ts.map +1 -0
- package/packages/typescript/src/types/hook.js +73 -0
- package/packages/typescript/src/types/index.d.ts +38 -0
- package/packages/typescript/src/types/index.d.ts.map +1 -0
- package/packages/typescript/src/types/index.js +46 -0
- package/packages/typescript/src/types/knowledge.d.ts +49 -0
- package/packages/typescript/src/types/knowledge.d.ts.map +1 -0
- package/packages/typescript/src/types/knowledge.js +1 -0
- package/packages/typescript/src/types/memory-storage.d.ts +28 -0
- package/packages/typescript/src/types/memory-storage.d.ts.map +1 -0
- package/packages/typescript/src/types/memory-storage.js +13 -0
- package/packages/typescript/src/types/memory.d.ts +438 -0
- package/packages/typescript/src/types/memory.d.ts.map +1 -0
- package/packages/typescript/src/types/memory.js +16 -0
- package/packages/typescript/src/types/message-service.d.ts +169 -0
- package/packages/typescript/src/types/message-service.d.ts.map +1 -0
- package/packages/typescript/src/types/message-service.js +1 -0
- package/packages/typescript/src/types/messaging.d.ts +358 -0
- package/packages/typescript/src/types/messaging.d.ts.map +1 -0
- package/packages/typescript/src/types/messaging.js +27 -0
- package/packages/typescript/src/types/model.d.ts +697 -0
- package/packages/typescript/src/types/model.d.ts.map +1 -0
- package/packages/typescript/src/types/model.js +247 -0
- package/packages/typescript/src/types/onboarding.d.ts +319 -0
- package/packages/typescript/src/types/onboarding.d.ts.map +1 -0
- package/packages/typescript/src/types/onboarding.js +97 -0
- package/packages/typescript/src/types/pairing.d.ts +124 -0
- package/packages/typescript/src/types/pairing.d.ts.map +1 -0
- package/packages/typescript/src/types/pairing.js +32 -0
- package/packages/typescript/src/types/payment.d.ts +45 -0
- package/packages/typescript/src/types/payment.d.ts.map +1 -0
- package/packages/typescript/src/types/payment.js +1 -0
- package/packages/typescript/src/types/plugin-manifest.d.ts +381 -0
- package/packages/typescript/src/types/plugin-manifest.d.ts.map +1 -0
- package/packages/typescript/src/types/plugin-manifest.js +10 -0
- package/packages/typescript/src/types/plugin-store.d.ts +173 -0
- package/packages/typescript/src/types/plugin-store.d.ts.map +1 -0
- package/packages/typescript/src/types/plugin-store.js +1 -0
- package/packages/typescript/src/types/plugin.d.ts +325 -0
- package/packages/typescript/src/types/plugin.d.ts.map +1 -0
- package/packages/typescript/src/types/plugin.js +1 -0
- package/packages/typescript/src/types/primitives.d.ts +176 -0
- package/packages/typescript/src/types/primitives.d.ts.map +1 -0
- package/packages/typescript/src/types/primitives.js +41 -0
- package/packages/typescript/src/types/prompt-batcher.d.ts +126 -0
- package/packages/typescript/src/types/prompt-batcher.d.ts.map +1 -0
- package/packages/typescript/src/types/prompt-batcher.js +6 -0
- package/packages/typescript/src/types/prompts.d.ts +39 -0
- package/packages/typescript/src/types/prompts.d.ts.map +1 -0
- package/packages/typescript/src/types/prompts.js +7 -0
- package/packages/typescript/src/types/proto.d.ts +60 -0
- package/packages/typescript/src/types/proto.d.ts.map +1 -0
- package/packages/typescript/src/types/proto.js +53 -0
- package/packages/typescript/src/types/runtime.d.ts +394 -0
- package/packages/typescript/src/types/runtime.d.ts.map +1 -0
- package/packages/typescript/src/types/runtime.js +1 -0
- package/packages/typescript/src/types/schema-builder.d.ts +43 -0
- package/packages/typescript/src/types/schema-builder.d.ts.map +1 -0
- package/packages/typescript/src/types/schema-builder.js +16 -0
- package/packages/typescript/src/types/schema.d.ts +99 -0
- package/packages/typescript/src/types/schema.d.ts.map +1 -0
- package/packages/typescript/src/types/schema.js +11 -0
- package/packages/typescript/src/types/service-interfaces.d.ts +1200 -0
- package/packages/typescript/src/types/service-interfaces.d.ts.map +1 -0
- package/packages/typescript/src/types/service-interfaces.js +81 -0
- package/packages/typescript/src/types/service.d.ts +173 -0
- package/packages/typescript/src/types/service.d.ts.map +1 -0
- package/packages/typescript/src/types/service.js +78 -0
- package/packages/typescript/src/types/settings.d.ts +36 -0
- package/packages/typescript/src/types/settings.d.ts.map +1 -0
- package/packages/typescript/src/types/settings.js +1 -0
- package/packages/typescript/src/types/state.d.ts +251 -0
- package/packages/typescript/src/types/state.d.ts.map +1 -0
- package/packages/typescript/src/types/state.js +1 -0
- package/packages/typescript/src/types/streaming.d.ts +93 -0
- package/packages/typescript/src/types/streaming.d.ts.map +1 -0
- package/packages/typescript/src/types/streaming.js +21 -0
- package/packages/typescript/src/types/task.d.ts +122 -0
- package/packages/typescript/src/types/task.d.ts.map +1 -0
- package/packages/typescript/src/types/task.js +1 -0
- package/packages/typescript/src/types/tee.d.ts +3 -0
- package/packages/typescript/src/types/tee.d.ts.map +1 -0
- package/packages/typescript/src/types/tee.js +1 -0
- package/packages/typescript/src/types/testing.d.ts +15 -0
- package/packages/typescript/src/types/testing.d.ts.map +1 -0
- package/packages/typescript/src/types/testing.js +1 -0
- package/packages/typescript/src/types/tools.d.ts +166 -0
- package/packages/typescript/src/types/tools.d.ts.map +1 -0
- package/packages/typescript/src/types/tools.js +380 -0
- package/packages/typescript/src/types/trigger.d.ts +38 -0
- package/packages/typescript/src/types/trigger.d.ts.map +1 -0
- package/packages/typescript/src/types/trigger.js +1 -0
- package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts +53 -0
- package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts.map +1 -0
- package/packages/typescript/src/utils/batch-queue/batch-processor.js +129 -0
- package/packages/typescript/src/utils/batch-queue/index.d.ts +97 -0
- package/packages/typescript/src/utils/batch-queue/index.d.ts.map +1 -0
- package/packages/typescript/src/utils/batch-queue/index.js +175 -0
- package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts +53 -0
- package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts.map +1 -0
- package/packages/typescript/src/utils/batch-queue/priority-queue.js +128 -0
- package/packages/typescript/src/utils/batch-queue/semaphore.d.ts +18 -0
- package/packages/typescript/src/utils/batch-queue/semaphore.d.ts.map +1 -0
- package/packages/typescript/src/utils/batch-queue/semaphore.js +34 -0
- package/packages/typescript/src/utils/batch-queue/task-drain.d.ts +57 -0
- package/packages/typescript/src/utils/batch-queue/task-drain.d.ts.map +1 -0
- package/packages/typescript/src/utils/batch-queue/task-drain.js +150 -0
- package/packages/typescript/src/utils/batch-queue.d.ts +20 -0
- package/packages/typescript/src/utils/batch-queue.d.ts.map +1 -0
- package/packages/typescript/src/utils/batch-queue.js +19 -0
- package/packages/typescript/src/utils/boolean.d.ts +50 -0
- package/packages/typescript/src/utils/boolean.d.ts.map +1 -0
- package/packages/typescript/src/utils/boolean.js +73 -0
- package/packages/typescript/src/utils/buffer.d.ts +107 -0
- package/packages/typescript/src/utils/buffer.d.ts.map +1 -0
- package/packages/typescript/src/utils/buffer.js +229 -0
- package/packages/typescript/src/utils/channel-utils.d.ts +274 -0
- package/packages/typescript/src/utils/channel-utils.d.ts.map +1 -0
- package/packages/typescript/src/utils/channel-utils.js +337 -0
- package/packages/typescript/src/utils/context-catalog.d.ts +6 -0
- package/packages/typescript/src/utils/context-catalog.d.ts.map +1 -0
- package/packages/typescript/src/utils/context-catalog.js +126 -0
- package/packages/typescript/src/utils/context-routing.d.ts +25 -0
- package/packages/typescript/src/utils/context-routing.d.ts.map +1 -0
- package/packages/typescript/src/utils/context-routing.js +160 -0
- package/packages/typescript/src/utils/crypto-compat.d.ts +83 -0
- package/packages/typescript/src/utils/crypto-compat.d.ts.map +1 -0
- package/packages/typescript/src/utils/crypto-compat.js +368 -0
- package/packages/typescript/src/utils/deterministic.d.ts +9 -0
- package/packages/typescript/src/utils/deterministic.d.ts.map +1 -0
- package/packages/typescript/src/utils/deterministic.js +70 -0
- package/packages/typescript/src/utils/environment.d.ts +125 -0
- package/packages/typescript/src/utils/environment.d.ts.map +1 -0
- package/packages/typescript/src/utils/environment.js +290 -0
- package/packages/typescript/src/utils/example-names.d.ts +3 -0
- package/packages/typescript/src/utils/example-names.d.ts.map +1 -0
- package/packages/typescript/src/utils/example-names.js +30 -0
- package/packages/typescript/src/utils/json-llm.d.ts +17 -0
- package/packages/typescript/src/utils/json-llm.d.ts.map +1 -0
- package/packages/typescript/src/utils/json-llm.js +32 -0
- package/packages/typescript/src/utils/model-errors.d.ts +3 -0
- package/packages/typescript/src/utils/model-errors.d.ts.map +1 -0
- package/packages/typescript/src/utils/model-errors.js +23 -0
- package/packages/typescript/src/utils/node.d.ts +8 -0
- package/packages/typescript/src/utils/node.d.ts.map +1 -0
- package/packages/typescript/src/utils/node.js +12 -0
- package/packages/typescript/src/utils/paths.d.ts +97 -0
- package/packages/typescript/src/utils/paths.d.ts.map +1 -0
- package/packages/typescript/src/utils/paths.js +204 -0
- package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts +163 -0
- package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts.map +1 -0
- package/packages/typescript/src/utils/prompt-batcher/batcher.js +896 -0
- package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts +15 -0
- package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts.map +1 -0
- package/packages/typescript/src/utils/prompt-batcher/dispatcher.js +230 -0
- package/packages/typescript/src/utils/prompt-batcher/shared.d.ts +66 -0
- package/packages/typescript/src/utils/prompt-batcher/shared.d.ts.map +1 -0
- package/packages/typescript/src/utils/prompt-batcher/shared.js +101 -0
- package/packages/typescript/src/utils/prompt-batcher.d.ts +5 -0
- package/packages/typescript/src/utils/prompt-batcher.d.ts.map +1 -0
- package/packages/typescript/src/utils/prompt-batcher.js +4 -0
- package/packages/typescript/src/utils/retry.d.ts +128 -0
- package/packages/typescript/src/utils/retry.d.ts.map +1 -0
- package/packages/typescript/src/utils/retry.js +190 -0
- package/packages/typescript/src/utils/server-health.d.ts +35 -0
- package/packages/typescript/src/utils/server-health.d.ts.map +1 -0
- package/packages/typescript/src/utils/server-health.js +76 -0
- package/packages/typescript/src/utils/slice-to-fit-budget.d.ts +12 -0
- package/packages/typescript/src/utils/slice-to-fit-budget.d.ts.map +1 -0
- package/packages/typescript/src/utils/slice-to-fit-budget.js +36 -0
- package/packages/typescript/src/utils/streaming.d.ts +275 -0
- package/packages/typescript/src/utils/streaming.d.ts.map +1 -0
- package/packages/typescript/src/utils/streaming.js +774 -0
- package/packages/typescript/src/utils/text-normalize.d.ts +23 -0
- package/packages/typescript/src/utils/text-normalize.d.ts.map +1 -0
- package/packages/typescript/src/utils/text-normalize.js +42 -0
- package/packages/typescript/src/utils/text-splitting.d.ts +14 -0
- package/packages/typescript/src/utils/text-splitting.d.ts.map +1 -0
- package/packages/typescript/src/utils/text-splitting.js +66 -0
- package/packages/typescript/src/utils/toon.d.ts +8 -0
- package/packages/typescript/src/utils/toon.d.ts.map +1 -0
- package/packages/typescript/src/utils/toon.js +325 -0
- package/packages/typescript/src/utils/type-guards.d.ts +25 -0
- package/packages/typescript/src/utils/type-guards.d.ts.map +1 -0
- package/packages/typescript/src/utils/type-guards.js +73 -0
- package/packages/typescript/src/utils.d.ts +190 -0
- package/packages/typescript/src/utils.d.ts.map +1 -0
- package/packages/typescript/src/utils.js +1115 -0
- package/packages/typescript/src/validation/index.d.ts +8 -0
- package/packages/typescript/src/validation/index.d.ts.map +1 -0
- package/packages/typescript/src/validation/index.js +7 -0
- package/packages/typescript/src/validation/keywords.d.ts +26 -0
- package/packages/typescript/src/validation/keywords.d.ts.map +1 -0
- package/packages/typescript/src/validation/keywords.js +76 -0
- package/packages/typescript/src/validation/secrets.d.ts +94 -0
- package/packages/typescript/src/validation/secrets.d.ts.map +1 -0
- package/packages/typescript/src/validation/secrets.js +399 -0
- package/jest.config.js +0 -17
- package/src/__tests__/client-type-identification.test.ts +0 -59
- package/src/defaultCharacter.ts +0 -530
- package/src/index.ts +0 -865
- package/tsconfig.json +0 -16
|
@@ -0,0 +1,2687 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file eliza/v1/service_interfaces.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_eliza_v1_service_interfaces: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message eliza.v1.TokenBalance
|
|
10
|
+
*/
|
|
11
|
+
export type TokenBalance = Message<"eliza.v1.TokenBalance"> & {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: string address = 1;
|
|
14
|
+
*/
|
|
15
|
+
address: string;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string balance = 2;
|
|
18
|
+
*/
|
|
19
|
+
balance: string;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: int32 decimals = 3;
|
|
22
|
+
*/
|
|
23
|
+
decimals: number;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: optional double ui_amount = 4;
|
|
26
|
+
*/
|
|
27
|
+
uiAmount?: number;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: optional string name = 5;
|
|
30
|
+
*/
|
|
31
|
+
name?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: optional string symbol = 6;
|
|
34
|
+
*/
|
|
35
|
+
symbol?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: optional string logo_uri = 7;
|
|
38
|
+
*/
|
|
39
|
+
logoUri?: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message eliza.v1.TokenBalance.
|
|
43
|
+
* Use `create(TokenBalanceSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export declare const TokenBalanceSchema: GenMessage<TokenBalance>;
|
|
46
|
+
/**
|
|
47
|
+
* @generated from message eliza.v1.TokenData
|
|
48
|
+
*/
|
|
49
|
+
export type TokenData = Message<"eliza.v1.TokenData"> & {
|
|
50
|
+
/**
|
|
51
|
+
* @generated from field: string id = 1;
|
|
52
|
+
*/
|
|
53
|
+
id: string;
|
|
54
|
+
/**
|
|
55
|
+
* @generated from field: string symbol = 2;
|
|
56
|
+
*/
|
|
57
|
+
symbol: string;
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: string name = 3;
|
|
60
|
+
*/
|
|
61
|
+
name: string;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: string address = 4;
|
|
64
|
+
*/
|
|
65
|
+
address: string;
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: string chain = 5;
|
|
68
|
+
*/
|
|
69
|
+
chain: string;
|
|
70
|
+
/**
|
|
71
|
+
* @generated from field: string source_provider = 6;
|
|
72
|
+
*/
|
|
73
|
+
sourceProvider: string;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: optional double price = 7;
|
|
76
|
+
*/
|
|
77
|
+
price?: number;
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: optional double price_change_24h_percent = 8;
|
|
80
|
+
*/
|
|
81
|
+
priceChange24hPercent?: number;
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: optional double price_change_24h_usd = 9;
|
|
84
|
+
*/
|
|
85
|
+
priceChange24hUsd?: number;
|
|
86
|
+
/**
|
|
87
|
+
* @generated from field: optional double volume_24h_usd = 10;
|
|
88
|
+
*/
|
|
89
|
+
volume24hUsd?: number;
|
|
90
|
+
/**
|
|
91
|
+
* @generated from field: optional double market_cap_usd = 11;
|
|
92
|
+
*/
|
|
93
|
+
marketCapUsd?: number;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from field: optional double liquidity = 12;
|
|
96
|
+
*/
|
|
97
|
+
liquidity?: number;
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: optional double holders = 13;
|
|
100
|
+
*/
|
|
101
|
+
holders?: number;
|
|
102
|
+
/**
|
|
103
|
+
* @generated from field: optional string logo_uri = 14;
|
|
104
|
+
*/
|
|
105
|
+
logoUri?: string;
|
|
106
|
+
/**
|
|
107
|
+
* @generated from field: optional int32 decimals = 15;
|
|
108
|
+
*/
|
|
109
|
+
decimals?: number;
|
|
110
|
+
/**
|
|
111
|
+
* @generated from field: optional google.protobuf.Timestamp last_updated_at = 16;
|
|
112
|
+
*/
|
|
113
|
+
lastUpdatedAt?: Timestamp;
|
|
114
|
+
/**
|
|
115
|
+
* @generated from field: google.protobuf.Struct raw = 17;
|
|
116
|
+
*/
|
|
117
|
+
raw?: JsonObject;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Describes the message eliza.v1.TokenData.
|
|
121
|
+
* Use `create(TokenDataSchema)` to create a new message.
|
|
122
|
+
*/
|
|
123
|
+
export declare const TokenDataSchema: GenMessage<TokenData>;
|
|
124
|
+
/**
|
|
125
|
+
* @generated from message eliza.v1.WalletAsset
|
|
126
|
+
*/
|
|
127
|
+
export type WalletAsset = Message<"eliza.v1.WalletAsset"> & {
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: string address = 1;
|
|
130
|
+
*/
|
|
131
|
+
address: string;
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: string balance = 2;
|
|
134
|
+
*/
|
|
135
|
+
balance: string;
|
|
136
|
+
/**
|
|
137
|
+
* @generated from field: int32 decimals = 3;
|
|
138
|
+
*/
|
|
139
|
+
decimals: number;
|
|
140
|
+
/**
|
|
141
|
+
* @generated from field: optional double ui_amount = 4;
|
|
142
|
+
*/
|
|
143
|
+
uiAmount?: number;
|
|
144
|
+
/**
|
|
145
|
+
* @generated from field: optional string name = 5;
|
|
146
|
+
*/
|
|
147
|
+
name?: string;
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: optional string symbol = 6;
|
|
150
|
+
*/
|
|
151
|
+
symbol?: string;
|
|
152
|
+
/**
|
|
153
|
+
* @generated from field: optional string logo_uri = 7;
|
|
154
|
+
*/
|
|
155
|
+
logoUri?: string;
|
|
156
|
+
/**
|
|
157
|
+
* @generated from field: optional double price_usd = 8;
|
|
158
|
+
*/
|
|
159
|
+
priceUsd?: number;
|
|
160
|
+
/**
|
|
161
|
+
* @generated from field: optional double value_usd = 9;
|
|
162
|
+
*/
|
|
163
|
+
valueUsd?: number;
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* Describes the message eliza.v1.WalletAsset.
|
|
167
|
+
* Use `create(WalletAssetSchema)` to create a new message.
|
|
168
|
+
*/
|
|
169
|
+
export declare const WalletAssetSchema: GenMessage<WalletAsset>;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from message eliza.v1.WalletPortfolio
|
|
172
|
+
*/
|
|
173
|
+
export type WalletPortfolio = Message<"eliza.v1.WalletPortfolio"> & {
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: double total_value_usd = 1;
|
|
176
|
+
*/
|
|
177
|
+
totalValueUsd: number;
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: repeated eliza.v1.WalletAsset assets = 2;
|
|
180
|
+
*/
|
|
181
|
+
assets: WalletAsset[];
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* Describes the message eliza.v1.WalletPortfolio.
|
|
185
|
+
* Use `create(WalletPortfolioSchema)` to create a new message.
|
|
186
|
+
*/
|
|
187
|
+
export declare const WalletPortfolioSchema: GenMessage<WalletPortfolio>;
|
|
188
|
+
/**
|
|
189
|
+
* @generated from message eliza.v1.PoolTokenInfo
|
|
190
|
+
*/
|
|
191
|
+
export type PoolTokenInfo = Message<"eliza.v1.PoolTokenInfo"> & {
|
|
192
|
+
/**
|
|
193
|
+
* @generated from field: string mint = 1;
|
|
194
|
+
*/
|
|
195
|
+
mint: string;
|
|
196
|
+
/**
|
|
197
|
+
* @generated from field: optional string symbol = 2;
|
|
198
|
+
*/
|
|
199
|
+
symbol?: string;
|
|
200
|
+
/**
|
|
201
|
+
* @generated from field: optional string reserve = 3;
|
|
202
|
+
*/
|
|
203
|
+
reserve?: string;
|
|
204
|
+
/**
|
|
205
|
+
* @generated from field: optional int32 decimals = 4;
|
|
206
|
+
*/
|
|
207
|
+
decimals?: number;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* Describes the message eliza.v1.PoolTokenInfo.
|
|
211
|
+
* Use `create(PoolTokenInfoSchema)` to create a new message.
|
|
212
|
+
*/
|
|
213
|
+
export declare const PoolTokenInfoSchema: GenMessage<PoolTokenInfo>;
|
|
214
|
+
/**
|
|
215
|
+
* @generated from message eliza.v1.PoolInfo
|
|
216
|
+
*/
|
|
217
|
+
export type PoolInfo = Message<"eliza.v1.PoolInfo"> & {
|
|
218
|
+
/**
|
|
219
|
+
* @generated from field: string id = 1;
|
|
220
|
+
*/
|
|
221
|
+
id: string;
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: optional string display_name = 2;
|
|
224
|
+
*/
|
|
225
|
+
displayName?: string;
|
|
226
|
+
/**
|
|
227
|
+
* @generated from field: string dex = 3;
|
|
228
|
+
*/
|
|
229
|
+
dex: string;
|
|
230
|
+
/**
|
|
231
|
+
* @generated from field: eliza.v1.PoolTokenInfo token_a = 4;
|
|
232
|
+
*/
|
|
233
|
+
tokenA?: PoolTokenInfo;
|
|
234
|
+
/**
|
|
235
|
+
* @generated from field: eliza.v1.PoolTokenInfo token_b = 5;
|
|
236
|
+
*/
|
|
237
|
+
tokenB?: PoolTokenInfo;
|
|
238
|
+
/**
|
|
239
|
+
* @generated from field: optional string lp_token_mint = 6;
|
|
240
|
+
*/
|
|
241
|
+
lpTokenMint?: string;
|
|
242
|
+
/**
|
|
243
|
+
* @generated from field: optional double apr = 7;
|
|
244
|
+
*/
|
|
245
|
+
apr?: number;
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: optional double apy = 8;
|
|
248
|
+
*/
|
|
249
|
+
apy?: number;
|
|
250
|
+
/**
|
|
251
|
+
* @generated from field: optional double tvl = 9;
|
|
252
|
+
*/
|
|
253
|
+
tvl?: number;
|
|
254
|
+
/**
|
|
255
|
+
* @generated from field: optional double fee = 10;
|
|
256
|
+
*/
|
|
257
|
+
fee?: number;
|
|
258
|
+
/**
|
|
259
|
+
* @generated from field: google.protobuf.Struct metadata = 11;
|
|
260
|
+
*/
|
|
261
|
+
metadata?: JsonObject;
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* Describes the message eliza.v1.PoolInfo.
|
|
265
|
+
* Use `create(PoolInfoSchema)` to create a new message.
|
|
266
|
+
*/
|
|
267
|
+
export declare const PoolInfoSchema: GenMessage<PoolInfo>;
|
|
268
|
+
/**
|
|
269
|
+
* @generated from message eliza.v1.LpPositionDetails
|
|
270
|
+
*/
|
|
271
|
+
export type LpPositionDetails = Message<"eliza.v1.LpPositionDetails"> & {
|
|
272
|
+
/**
|
|
273
|
+
* @generated from field: string pool_id = 1;
|
|
274
|
+
*/
|
|
275
|
+
poolId: string;
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: string dex = 2;
|
|
278
|
+
*/
|
|
279
|
+
dex: string;
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: eliza.v1.TokenBalance lp_token_balance = 3;
|
|
282
|
+
*/
|
|
283
|
+
lpTokenBalance?: TokenBalance;
|
|
284
|
+
/**
|
|
285
|
+
* @generated from field: repeated eliza.v1.TokenBalance underlying_tokens = 4;
|
|
286
|
+
*/
|
|
287
|
+
underlyingTokens: TokenBalance[];
|
|
288
|
+
/**
|
|
289
|
+
* @generated from field: optional double value_usd = 5;
|
|
290
|
+
*/
|
|
291
|
+
valueUsd?: number;
|
|
292
|
+
/**
|
|
293
|
+
* @generated from field: repeated eliza.v1.TokenBalance accrued_fees = 6;
|
|
294
|
+
*/
|
|
295
|
+
accruedFees: TokenBalance[];
|
|
296
|
+
/**
|
|
297
|
+
* @generated from field: repeated eliza.v1.TokenBalance rewards = 7;
|
|
298
|
+
*/
|
|
299
|
+
rewards: TokenBalance[];
|
|
300
|
+
/**
|
|
301
|
+
* @generated from field: google.protobuf.Struct metadata = 8;
|
|
302
|
+
*/
|
|
303
|
+
metadata?: JsonObject;
|
|
304
|
+
};
|
|
305
|
+
/**
|
|
306
|
+
* Describes the message eliza.v1.LpPositionDetails.
|
|
307
|
+
* Use `create(LpPositionDetailsSchema)` to create a new message.
|
|
308
|
+
*/
|
|
309
|
+
export declare const LpPositionDetailsSchema: GenMessage<LpPositionDetails>;
|
|
310
|
+
/**
|
|
311
|
+
* @generated from message eliza.v1.TransactionResult
|
|
312
|
+
*/
|
|
313
|
+
export type TransactionResult = Message<"eliza.v1.TransactionResult"> & {
|
|
314
|
+
/**
|
|
315
|
+
* @generated from field: bool success = 1;
|
|
316
|
+
*/
|
|
317
|
+
success: boolean;
|
|
318
|
+
/**
|
|
319
|
+
* @generated from field: optional string transaction_id = 2;
|
|
320
|
+
*/
|
|
321
|
+
transactionId?: string;
|
|
322
|
+
/**
|
|
323
|
+
* @generated from field: optional string error = 3;
|
|
324
|
+
*/
|
|
325
|
+
error?: string;
|
|
326
|
+
/**
|
|
327
|
+
* @generated from field: google.protobuf.Struct data = 4;
|
|
328
|
+
*/
|
|
329
|
+
data?: JsonObject;
|
|
330
|
+
};
|
|
331
|
+
/**
|
|
332
|
+
* Describes the message eliza.v1.TransactionResult.
|
|
333
|
+
* Use `create(TransactionResultSchema)` to create a new message.
|
|
334
|
+
*/
|
|
335
|
+
export declare const TransactionResultSchema: GenMessage<TransactionResult>;
|
|
336
|
+
/**
|
|
337
|
+
* @generated from message eliza.v1.TranscriptionOptions
|
|
338
|
+
*/
|
|
339
|
+
export type TranscriptionOptions = Message<"eliza.v1.TranscriptionOptions"> & {
|
|
340
|
+
/**
|
|
341
|
+
* @generated from field: optional string language = 1;
|
|
342
|
+
*/
|
|
343
|
+
language?: string;
|
|
344
|
+
/**
|
|
345
|
+
* @generated from field: optional string model = 2;
|
|
346
|
+
*/
|
|
347
|
+
model?: string;
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: optional double temperature = 3;
|
|
350
|
+
*/
|
|
351
|
+
temperature?: number;
|
|
352
|
+
/**
|
|
353
|
+
* @generated from field: optional string prompt = 4;
|
|
354
|
+
*/
|
|
355
|
+
prompt?: string;
|
|
356
|
+
/**
|
|
357
|
+
* @generated from field: optional string response_format = 5;
|
|
358
|
+
*/
|
|
359
|
+
responseFormat?: string;
|
|
360
|
+
/**
|
|
361
|
+
* @generated from field: repeated string timestamp_granularities = 6;
|
|
362
|
+
*/
|
|
363
|
+
timestampGranularities: string[];
|
|
364
|
+
/**
|
|
365
|
+
* @generated from field: optional bool word_timestamps = 7;
|
|
366
|
+
*/
|
|
367
|
+
wordTimestamps?: boolean;
|
|
368
|
+
/**
|
|
369
|
+
* @generated from field: optional bool segment_timestamps = 8;
|
|
370
|
+
*/
|
|
371
|
+
segmentTimestamps?: boolean;
|
|
372
|
+
};
|
|
373
|
+
/**
|
|
374
|
+
* Describes the message eliza.v1.TranscriptionOptions.
|
|
375
|
+
* Use `create(TranscriptionOptionsSchema)` to create a new message.
|
|
376
|
+
*/
|
|
377
|
+
export declare const TranscriptionOptionsSchema: GenMessage<TranscriptionOptions>;
|
|
378
|
+
/**
|
|
379
|
+
* @generated from message eliza.v1.TranscriptionResult
|
|
380
|
+
*/
|
|
381
|
+
export type TranscriptionResult = Message<"eliza.v1.TranscriptionResult"> & {
|
|
382
|
+
/**
|
|
383
|
+
* @generated from field: string text = 1;
|
|
384
|
+
*/
|
|
385
|
+
text: string;
|
|
386
|
+
/**
|
|
387
|
+
* @generated from field: optional string language = 2;
|
|
388
|
+
*/
|
|
389
|
+
language?: string;
|
|
390
|
+
/**
|
|
391
|
+
* @generated from field: optional double duration = 3;
|
|
392
|
+
*/
|
|
393
|
+
duration?: number;
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: repeated eliza.v1.TranscriptionSegment segments = 4;
|
|
396
|
+
*/
|
|
397
|
+
segments: TranscriptionSegment[];
|
|
398
|
+
/**
|
|
399
|
+
* @generated from field: repeated eliza.v1.TranscriptionWord words = 5;
|
|
400
|
+
*/
|
|
401
|
+
words: TranscriptionWord[];
|
|
402
|
+
/**
|
|
403
|
+
* @generated from field: optional double confidence = 6;
|
|
404
|
+
*/
|
|
405
|
+
confidence?: number;
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* Describes the message eliza.v1.TranscriptionResult.
|
|
409
|
+
* Use `create(TranscriptionResultSchema)` to create a new message.
|
|
410
|
+
*/
|
|
411
|
+
export declare const TranscriptionResultSchema: GenMessage<TranscriptionResult>;
|
|
412
|
+
/**
|
|
413
|
+
* @generated from message eliza.v1.TranscriptionSegment
|
|
414
|
+
*/
|
|
415
|
+
export type TranscriptionSegment = Message<"eliza.v1.TranscriptionSegment"> & {
|
|
416
|
+
/**
|
|
417
|
+
* @generated from field: int32 id = 1;
|
|
418
|
+
*/
|
|
419
|
+
id: number;
|
|
420
|
+
/**
|
|
421
|
+
* @generated from field: string text = 2;
|
|
422
|
+
*/
|
|
423
|
+
text: string;
|
|
424
|
+
/**
|
|
425
|
+
* @generated from field: double start = 3;
|
|
426
|
+
*/
|
|
427
|
+
start: number;
|
|
428
|
+
/**
|
|
429
|
+
* @generated from field: double end = 4;
|
|
430
|
+
*/
|
|
431
|
+
end: number;
|
|
432
|
+
/**
|
|
433
|
+
* @generated from field: optional double confidence = 5;
|
|
434
|
+
*/
|
|
435
|
+
confidence?: number;
|
|
436
|
+
/**
|
|
437
|
+
* @generated from field: repeated int32 tokens = 6;
|
|
438
|
+
*/
|
|
439
|
+
tokens: number[];
|
|
440
|
+
/**
|
|
441
|
+
* @generated from field: optional double temperature = 7;
|
|
442
|
+
*/
|
|
443
|
+
temperature?: number;
|
|
444
|
+
/**
|
|
445
|
+
* @generated from field: optional double avg_logprob = 8;
|
|
446
|
+
*/
|
|
447
|
+
avgLogprob?: number;
|
|
448
|
+
/**
|
|
449
|
+
* @generated from field: optional double compression_ratio = 9;
|
|
450
|
+
*/
|
|
451
|
+
compressionRatio?: number;
|
|
452
|
+
/**
|
|
453
|
+
* @generated from field: optional double no_speech_prob = 10;
|
|
454
|
+
*/
|
|
455
|
+
noSpeechProb?: number;
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* Describes the message eliza.v1.TranscriptionSegment.
|
|
459
|
+
* Use `create(TranscriptionSegmentSchema)` to create a new message.
|
|
460
|
+
*/
|
|
461
|
+
export declare const TranscriptionSegmentSchema: GenMessage<TranscriptionSegment>;
|
|
462
|
+
/**
|
|
463
|
+
* @generated from message eliza.v1.TranscriptionWord
|
|
464
|
+
*/
|
|
465
|
+
export type TranscriptionWord = Message<"eliza.v1.TranscriptionWord"> & {
|
|
466
|
+
/**
|
|
467
|
+
* @generated from field: string word = 1;
|
|
468
|
+
*/
|
|
469
|
+
word: string;
|
|
470
|
+
/**
|
|
471
|
+
* @generated from field: double start = 2;
|
|
472
|
+
*/
|
|
473
|
+
start: number;
|
|
474
|
+
/**
|
|
475
|
+
* @generated from field: double end = 3;
|
|
476
|
+
*/
|
|
477
|
+
end: number;
|
|
478
|
+
/**
|
|
479
|
+
* @generated from field: optional double confidence = 4;
|
|
480
|
+
*/
|
|
481
|
+
confidence?: number;
|
|
482
|
+
};
|
|
483
|
+
/**
|
|
484
|
+
* Describes the message eliza.v1.TranscriptionWord.
|
|
485
|
+
* Use `create(TranscriptionWordSchema)` to create a new message.
|
|
486
|
+
*/
|
|
487
|
+
export declare const TranscriptionWordSchema: GenMessage<TranscriptionWord>;
|
|
488
|
+
/**
|
|
489
|
+
* @generated from message eliza.v1.SpeechToTextOptions
|
|
490
|
+
*/
|
|
491
|
+
export type SpeechToTextOptions = Message<"eliza.v1.SpeechToTextOptions"> & {
|
|
492
|
+
/**
|
|
493
|
+
* @generated from field: optional string language = 1;
|
|
494
|
+
*/
|
|
495
|
+
language?: string;
|
|
496
|
+
/**
|
|
497
|
+
* @generated from field: optional string model = 2;
|
|
498
|
+
*/
|
|
499
|
+
model?: string;
|
|
500
|
+
/**
|
|
501
|
+
* @generated from field: optional bool continuous = 3;
|
|
502
|
+
*/
|
|
503
|
+
continuous?: boolean;
|
|
504
|
+
/**
|
|
505
|
+
* @generated from field: optional bool interim_results = 4;
|
|
506
|
+
*/
|
|
507
|
+
interimResults?: boolean;
|
|
508
|
+
/**
|
|
509
|
+
* @generated from field: optional int32 max_alternatives = 5;
|
|
510
|
+
*/
|
|
511
|
+
maxAlternatives?: number;
|
|
512
|
+
};
|
|
513
|
+
/**
|
|
514
|
+
* Describes the message eliza.v1.SpeechToTextOptions.
|
|
515
|
+
* Use `create(SpeechToTextOptionsSchema)` to create a new message.
|
|
516
|
+
*/
|
|
517
|
+
export declare const SpeechToTextOptionsSchema: GenMessage<SpeechToTextOptions>;
|
|
518
|
+
/**
|
|
519
|
+
* @generated from message eliza.v1.TextToSpeechOptions
|
|
520
|
+
*/
|
|
521
|
+
export type TextToSpeechOptions = Message<"eliza.v1.TextToSpeechOptions"> & {
|
|
522
|
+
/**
|
|
523
|
+
* @generated from field: optional string voice = 1;
|
|
524
|
+
*/
|
|
525
|
+
voice?: string;
|
|
526
|
+
/**
|
|
527
|
+
* @generated from field: optional string model = 2;
|
|
528
|
+
*/
|
|
529
|
+
model?: string;
|
|
530
|
+
/**
|
|
531
|
+
* @generated from field: optional double speed = 3;
|
|
532
|
+
*/
|
|
533
|
+
speed?: number;
|
|
534
|
+
/**
|
|
535
|
+
* @generated from field: optional string format = 4;
|
|
536
|
+
*/
|
|
537
|
+
format?: string;
|
|
538
|
+
/**
|
|
539
|
+
* @generated from field: optional string response_format = 5;
|
|
540
|
+
*/
|
|
541
|
+
responseFormat?: string;
|
|
542
|
+
};
|
|
543
|
+
/**
|
|
544
|
+
* Describes the message eliza.v1.TextToSpeechOptions.
|
|
545
|
+
* Use `create(TextToSpeechOptionsSchema)` to create a new message.
|
|
546
|
+
*/
|
|
547
|
+
export declare const TextToSpeechOptionsSchema: GenMessage<TextToSpeechOptions>;
|
|
548
|
+
/**
|
|
549
|
+
* @generated from message eliza.v1.VideoInfo
|
|
550
|
+
*/
|
|
551
|
+
export type VideoInfo = Message<"eliza.v1.VideoInfo"> & {
|
|
552
|
+
/**
|
|
553
|
+
* @generated from field: optional string title = 1;
|
|
554
|
+
*/
|
|
555
|
+
title?: string;
|
|
556
|
+
/**
|
|
557
|
+
* @generated from field: optional double duration = 2;
|
|
558
|
+
*/
|
|
559
|
+
duration?: number;
|
|
560
|
+
/**
|
|
561
|
+
* @generated from field: string url = 3;
|
|
562
|
+
*/
|
|
563
|
+
url: string;
|
|
564
|
+
/**
|
|
565
|
+
* @generated from field: optional string thumbnail = 4;
|
|
566
|
+
*/
|
|
567
|
+
thumbnail?: string;
|
|
568
|
+
/**
|
|
569
|
+
* @generated from field: optional string description = 5;
|
|
570
|
+
*/
|
|
571
|
+
description?: string;
|
|
572
|
+
/**
|
|
573
|
+
* @generated from field: optional string uploader = 6;
|
|
574
|
+
*/
|
|
575
|
+
uploader?: string;
|
|
576
|
+
/**
|
|
577
|
+
* @generated from field: optional double view_count = 7;
|
|
578
|
+
*/
|
|
579
|
+
viewCount?: number;
|
|
580
|
+
/**
|
|
581
|
+
* @generated from field: optional google.protobuf.Timestamp upload_date = 8;
|
|
582
|
+
*/
|
|
583
|
+
uploadDate?: Timestamp;
|
|
584
|
+
/**
|
|
585
|
+
* @generated from field: repeated eliza.v1.VideoFormat formats = 9;
|
|
586
|
+
*/
|
|
587
|
+
formats: VideoFormat[];
|
|
588
|
+
};
|
|
589
|
+
/**
|
|
590
|
+
* Describes the message eliza.v1.VideoInfo.
|
|
591
|
+
* Use `create(VideoInfoSchema)` to create a new message.
|
|
592
|
+
*/
|
|
593
|
+
export declare const VideoInfoSchema: GenMessage<VideoInfo>;
|
|
594
|
+
/**
|
|
595
|
+
* @generated from message eliza.v1.VideoFormat
|
|
596
|
+
*/
|
|
597
|
+
export type VideoFormat = Message<"eliza.v1.VideoFormat"> & {
|
|
598
|
+
/**
|
|
599
|
+
* @generated from field: string format_id = 1;
|
|
600
|
+
*/
|
|
601
|
+
formatId: string;
|
|
602
|
+
/**
|
|
603
|
+
* @generated from field: string url = 2;
|
|
604
|
+
*/
|
|
605
|
+
url: string;
|
|
606
|
+
/**
|
|
607
|
+
* @generated from field: string extension = 3;
|
|
608
|
+
*/
|
|
609
|
+
extension: string;
|
|
610
|
+
/**
|
|
611
|
+
* @generated from field: string quality = 4;
|
|
612
|
+
*/
|
|
613
|
+
quality: string;
|
|
614
|
+
/**
|
|
615
|
+
* @generated from field: optional int64 file_size = 5;
|
|
616
|
+
*/
|
|
617
|
+
fileSize?: bigint;
|
|
618
|
+
/**
|
|
619
|
+
* @generated from field: optional string video_codec = 6;
|
|
620
|
+
*/
|
|
621
|
+
videoCodec?: string;
|
|
622
|
+
/**
|
|
623
|
+
* @generated from field: optional string audio_codec = 7;
|
|
624
|
+
*/
|
|
625
|
+
audioCodec?: string;
|
|
626
|
+
/**
|
|
627
|
+
* @generated from field: optional string resolution = 8;
|
|
628
|
+
*/
|
|
629
|
+
resolution?: string;
|
|
630
|
+
/**
|
|
631
|
+
* @generated from field: optional double fps = 9;
|
|
632
|
+
*/
|
|
633
|
+
fps?: number;
|
|
634
|
+
/**
|
|
635
|
+
* @generated from field: optional double bitrate = 10;
|
|
636
|
+
*/
|
|
637
|
+
bitrate?: number;
|
|
638
|
+
};
|
|
639
|
+
/**
|
|
640
|
+
* Describes the message eliza.v1.VideoFormat.
|
|
641
|
+
* Use `create(VideoFormatSchema)` to create a new message.
|
|
642
|
+
*/
|
|
643
|
+
export declare const VideoFormatSchema: GenMessage<VideoFormat>;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from message eliza.v1.VideoDownloadOptions
|
|
646
|
+
*/
|
|
647
|
+
export type VideoDownloadOptions = Message<"eliza.v1.VideoDownloadOptions"> & {
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: optional string format = 1;
|
|
650
|
+
*/
|
|
651
|
+
format?: string;
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: optional string quality = 2;
|
|
654
|
+
*/
|
|
655
|
+
quality?: string;
|
|
656
|
+
/**
|
|
657
|
+
* @generated from field: optional string output_path = 3;
|
|
658
|
+
*/
|
|
659
|
+
outputPath?: string;
|
|
660
|
+
/**
|
|
661
|
+
* @generated from field: optional bool audio_only = 4;
|
|
662
|
+
*/
|
|
663
|
+
audioOnly?: boolean;
|
|
664
|
+
/**
|
|
665
|
+
* @generated from field: optional bool video_only = 5;
|
|
666
|
+
*/
|
|
667
|
+
videoOnly?: boolean;
|
|
668
|
+
/**
|
|
669
|
+
* @generated from field: optional bool subtitles = 6;
|
|
670
|
+
*/
|
|
671
|
+
subtitles?: boolean;
|
|
672
|
+
/**
|
|
673
|
+
* @generated from field: optional bool embed_subs = 7;
|
|
674
|
+
*/
|
|
675
|
+
embedSubs?: boolean;
|
|
676
|
+
/**
|
|
677
|
+
* @generated from field: optional bool write_info_json = 8;
|
|
678
|
+
*/
|
|
679
|
+
writeInfoJson?: boolean;
|
|
680
|
+
};
|
|
681
|
+
/**
|
|
682
|
+
* Describes the message eliza.v1.VideoDownloadOptions.
|
|
683
|
+
* Use `create(VideoDownloadOptionsSchema)` to create a new message.
|
|
684
|
+
*/
|
|
685
|
+
export declare const VideoDownloadOptionsSchema: GenMessage<VideoDownloadOptions>;
|
|
686
|
+
/**
|
|
687
|
+
* @generated from message eliza.v1.VideoProcessingOptions
|
|
688
|
+
*/
|
|
689
|
+
export type VideoProcessingOptions = Message<"eliza.v1.VideoProcessingOptions"> & {
|
|
690
|
+
/**
|
|
691
|
+
* @generated from field: optional double start_time = 1;
|
|
692
|
+
*/
|
|
693
|
+
startTime?: number;
|
|
694
|
+
/**
|
|
695
|
+
* @generated from field: optional double end_time = 2;
|
|
696
|
+
*/
|
|
697
|
+
endTime?: number;
|
|
698
|
+
/**
|
|
699
|
+
* @generated from field: optional string output_format = 3;
|
|
700
|
+
*/
|
|
701
|
+
outputFormat?: string;
|
|
702
|
+
/**
|
|
703
|
+
* @generated from field: optional string resolution = 4;
|
|
704
|
+
*/
|
|
705
|
+
resolution?: string;
|
|
706
|
+
/**
|
|
707
|
+
* @generated from field: optional string bitrate = 5;
|
|
708
|
+
*/
|
|
709
|
+
bitrate?: string;
|
|
710
|
+
/**
|
|
711
|
+
* @generated from field: optional double framerate = 6;
|
|
712
|
+
*/
|
|
713
|
+
framerate?: number;
|
|
714
|
+
/**
|
|
715
|
+
* @generated from field: optional string audio_codec = 7;
|
|
716
|
+
*/
|
|
717
|
+
audioCodec?: string;
|
|
718
|
+
/**
|
|
719
|
+
* @generated from field: optional string video_codec = 8;
|
|
720
|
+
*/
|
|
721
|
+
videoCodec?: string;
|
|
722
|
+
};
|
|
723
|
+
/**
|
|
724
|
+
* Describes the message eliza.v1.VideoProcessingOptions.
|
|
725
|
+
* Use `create(VideoProcessingOptionsSchema)` to create a new message.
|
|
726
|
+
*/
|
|
727
|
+
export declare const VideoProcessingOptionsSchema: GenMessage<VideoProcessingOptions>;
|
|
728
|
+
/**
|
|
729
|
+
* @generated from message eliza.v1.BrowserViewport
|
|
730
|
+
*/
|
|
731
|
+
export type BrowserViewport = Message<"eliza.v1.BrowserViewport"> & {
|
|
732
|
+
/**
|
|
733
|
+
* @generated from field: int32 width = 1;
|
|
734
|
+
*/
|
|
735
|
+
width: number;
|
|
736
|
+
/**
|
|
737
|
+
* @generated from field: int32 height = 2;
|
|
738
|
+
*/
|
|
739
|
+
height: number;
|
|
740
|
+
};
|
|
741
|
+
/**
|
|
742
|
+
* Describes the message eliza.v1.BrowserViewport.
|
|
743
|
+
* Use `create(BrowserViewportSchema)` to create a new message.
|
|
744
|
+
*/
|
|
745
|
+
export declare const BrowserViewportSchema: GenMessage<BrowserViewport>;
|
|
746
|
+
/**
|
|
747
|
+
* @generated from message eliza.v1.BrowserNavigationOptions
|
|
748
|
+
*/
|
|
749
|
+
export type BrowserNavigationOptions = Message<"eliza.v1.BrowserNavigationOptions"> & {
|
|
750
|
+
/**
|
|
751
|
+
* @generated from field: optional int32 timeout = 1;
|
|
752
|
+
*/
|
|
753
|
+
timeout?: number;
|
|
754
|
+
/**
|
|
755
|
+
* @generated from field: optional string wait_until = 2;
|
|
756
|
+
*/
|
|
757
|
+
waitUntil?: string;
|
|
758
|
+
/**
|
|
759
|
+
* @generated from field: optional eliza.v1.BrowserViewport viewport = 3;
|
|
760
|
+
*/
|
|
761
|
+
viewport?: BrowserViewport;
|
|
762
|
+
/**
|
|
763
|
+
* @generated from field: optional string user_agent = 4;
|
|
764
|
+
*/
|
|
765
|
+
userAgent?: string;
|
|
766
|
+
/**
|
|
767
|
+
* @generated from field: map<string, string> headers = 5;
|
|
768
|
+
*/
|
|
769
|
+
headers: {
|
|
770
|
+
[key: string]: string;
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
/**
|
|
774
|
+
* Describes the message eliza.v1.BrowserNavigationOptions.
|
|
775
|
+
* Use `create(BrowserNavigationOptionsSchema)` to create a new message.
|
|
776
|
+
*/
|
|
777
|
+
export declare const BrowserNavigationOptionsSchema: GenMessage<BrowserNavigationOptions>;
|
|
778
|
+
/**
|
|
779
|
+
* @generated from message eliza.v1.ScreenshotClip
|
|
780
|
+
*/
|
|
781
|
+
export type ScreenshotClip = Message<"eliza.v1.ScreenshotClip"> & {
|
|
782
|
+
/**
|
|
783
|
+
* @generated from field: int32 x = 1;
|
|
784
|
+
*/
|
|
785
|
+
x: number;
|
|
786
|
+
/**
|
|
787
|
+
* @generated from field: int32 y = 2;
|
|
788
|
+
*/
|
|
789
|
+
y: number;
|
|
790
|
+
/**
|
|
791
|
+
* @generated from field: int32 width = 3;
|
|
792
|
+
*/
|
|
793
|
+
width: number;
|
|
794
|
+
/**
|
|
795
|
+
* @generated from field: int32 height = 4;
|
|
796
|
+
*/
|
|
797
|
+
height: number;
|
|
798
|
+
};
|
|
799
|
+
/**
|
|
800
|
+
* Describes the message eliza.v1.ScreenshotClip.
|
|
801
|
+
* Use `create(ScreenshotClipSchema)` to create a new message.
|
|
802
|
+
*/
|
|
803
|
+
export declare const ScreenshotClipSchema: GenMessage<ScreenshotClip>;
|
|
804
|
+
/**
|
|
805
|
+
* @generated from message eliza.v1.ScreenshotOptions
|
|
806
|
+
*/
|
|
807
|
+
export type ScreenshotOptions = Message<"eliza.v1.ScreenshotOptions"> & {
|
|
808
|
+
/**
|
|
809
|
+
* @generated from field: optional bool full_page = 1;
|
|
810
|
+
*/
|
|
811
|
+
fullPage?: boolean;
|
|
812
|
+
/**
|
|
813
|
+
* @generated from field: optional eliza.v1.ScreenshotClip clip = 2;
|
|
814
|
+
*/
|
|
815
|
+
clip?: ScreenshotClip;
|
|
816
|
+
/**
|
|
817
|
+
* @generated from field: optional string format = 3;
|
|
818
|
+
*/
|
|
819
|
+
format?: string;
|
|
820
|
+
/**
|
|
821
|
+
* @generated from field: optional int32 quality = 4;
|
|
822
|
+
*/
|
|
823
|
+
quality?: number;
|
|
824
|
+
/**
|
|
825
|
+
* @generated from field: optional bool omit_background = 5;
|
|
826
|
+
*/
|
|
827
|
+
omitBackground?: boolean;
|
|
828
|
+
};
|
|
829
|
+
/**
|
|
830
|
+
* Describes the message eliza.v1.ScreenshotOptions.
|
|
831
|
+
* Use `create(ScreenshotOptionsSchema)` to create a new message.
|
|
832
|
+
*/
|
|
833
|
+
export declare const ScreenshotOptionsSchema: GenMessage<ScreenshotOptions>;
|
|
834
|
+
/**
|
|
835
|
+
* @generated from message eliza.v1.ElementSelector
|
|
836
|
+
*/
|
|
837
|
+
export type ElementSelector = Message<"eliza.v1.ElementSelector"> & {
|
|
838
|
+
/**
|
|
839
|
+
* @generated from field: string selector = 1;
|
|
840
|
+
*/
|
|
841
|
+
selector: string;
|
|
842
|
+
/**
|
|
843
|
+
* @generated from field: optional string text = 2;
|
|
844
|
+
*/
|
|
845
|
+
text?: string;
|
|
846
|
+
/**
|
|
847
|
+
* @generated from field: optional int32 timeout = 3;
|
|
848
|
+
*/
|
|
849
|
+
timeout?: number;
|
|
850
|
+
};
|
|
851
|
+
/**
|
|
852
|
+
* Describes the message eliza.v1.ElementSelector.
|
|
853
|
+
* Use `create(ElementSelectorSchema)` to create a new message.
|
|
854
|
+
*/
|
|
855
|
+
export declare const ElementSelectorSchema: GenMessage<ElementSelector>;
|
|
856
|
+
/**
|
|
857
|
+
* @generated from message eliza.v1.LinkInfo
|
|
858
|
+
*/
|
|
859
|
+
export type LinkInfo = Message<"eliza.v1.LinkInfo"> & {
|
|
860
|
+
/**
|
|
861
|
+
* @generated from field: string url = 1;
|
|
862
|
+
*/
|
|
863
|
+
url: string;
|
|
864
|
+
/**
|
|
865
|
+
* @generated from field: string text = 2;
|
|
866
|
+
*/
|
|
867
|
+
text: string;
|
|
868
|
+
};
|
|
869
|
+
/**
|
|
870
|
+
* Describes the message eliza.v1.LinkInfo.
|
|
871
|
+
* Use `create(LinkInfoSchema)` to create a new message.
|
|
872
|
+
*/
|
|
873
|
+
export declare const LinkInfoSchema: GenMessage<LinkInfo>;
|
|
874
|
+
/**
|
|
875
|
+
* @generated from message eliza.v1.ImageInfo
|
|
876
|
+
*/
|
|
877
|
+
export type ImageInfo = Message<"eliza.v1.ImageInfo"> & {
|
|
878
|
+
/**
|
|
879
|
+
* @generated from field: string src = 1;
|
|
880
|
+
*/
|
|
881
|
+
src: string;
|
|
882
|
+
/**
|
|
883
|
+
* @generated from field: optional string alt = 2;
|
|
884
|
+
*/
|
|
885
|
+
alt?: string;
|
|
886
|
+
};
|
|
887
|
+
/**
|
|
888
|
+
* Describes the message eliza.v1.ImageInfo.
|
|
889
|
+
* Use `create(ImageInfoSchema)` to create a new message.
|
|
890
|
+
*/
|
|
891
|
+
export declare const ImageInfoSchema: GenMessage<ImageInfo>;
|
|
892
|
+
/**
|
|
893
|
+
* @generated from message eliza.v1.ExtractedContent
|
|
894
|
+
*/
|
|
895
|
+
export type ExtractedContent = Message<"eliza.v1.ExtractedContent"> & {
|
|
896
|
+
/**
|
|
897
|
+
* @generated from field: string text = 1;
|
|
898
|
+
*/
|
|
899
|
+
text: string;
|
|
900
|
+
/**
|
|
901
|
+
* @generated from field: string html = 2;
|
|
902
|
+
*/
|
|
903
|
+
html: string;
|
|
904
|
+
/**
|
|
905
|
+
* @generated from field: repeated eliza.v1.LinkInfo links = 3;
|
|
906
|
+
*/
|
|
907
|
+
links: LinkInfo[];
|
|
908
|
+
/**
|
|
909
|
+
* @generated from field: repeated eliza.v1.ImageInfo images = 4;
|
|
910
|
+
*/
|
|
911
|
+
images: ImageInfo[];
|
|
912
|
+
/**
|
|
913
|
+
* @generated from field: optional string title = 5;
|
|
914
|
+
*/
|
|
915
|
+
title?: string;
|
|
916
|
+
/**
|
|
917
|
+
* @generated from field: map<string, string> metadata = 6;
|
|
918
|
+
*/
|
|
919
|
+
metadata: {
|
|
920
|
+
[key: string]: string;
|
|
921
|
+
};
|
|
922
|
+
};
|
|
923
|
+
/**
|
|
924
|
+
* Describes the message eliza.v1.ExtractedContent.
|
|
925
|
+
* Use `create(ExtractedContentSchema)` to create a new message.
|
|
926
|
+
*/
|
|
927
|
+
export declare const ExtractedContentSchema: GenMessage<ExtractedContent>;
|
|
928
|
+
/**
|
|
929
|
+
* @generated from message eliza.v1.ClickOptions
|
|
930
|
+
*/
|
|
931
|
+
export type ClickOptions = Message<"eliza.v1.ClickOptions"> & {
|
|
932
|
+
/**
|
|
933
|
+
* @generated from field: optional int32 timeout = 1;
|
|
934
|
+
*/
|
|
935
|
+
timeout?: number;
|
|
936
|
+
/**
|
|
937
|
+
* @generated from field: optional bool force = 2;
|
|
938
|
+
*/
|
|
939
|
+
force?: boolean;
|
|
940
|
+
/**
|
|
941
|
+
* @generated from field: optional bool wait_for_navigation = 3;
|
|
942
|
+
*/
|
|
943
|
+
waitForNavigation?: boolean;
|
|
944
|
+
};
|
|
945
|
+
/**
|
|
946
|
+
* Describes the message eliza.v1.ClickOptions.
|
|
947
|
+
* Use `create(ClickOptionsSchema)` to create a new message.
|
|
948
|
+
*/
|
|
949
|
+
export declare const ClickOptionsSchema: GenMessage<ClickOptions>;
|
|
950
|
+
/**
|
|
951
|
+
* @generated from message eliza.v1.TypeOptions
|
|
952
|
+
*/
|
|
953
|
+
export type TypeOptions = Message<"eliza.v1.TypeOptions"> & {
|
|
954
|
+
/**
|
|
955
|
+
* @generated from field: optional int32 delay = 1;
|
|
956
|
+
*/
|
|
957
|
+
delay?: number;
|
|
958
|
+
/**
|
|
959
|
+
* @generated from field: optional int32 timeout = 2;
|
|
960
|
+
*/
|
|
961
|
+
timeout?: number;
|
|
962
|
+
/**
|
|
963
|
+
* @generated from field: optional bool clear = 3;
|
|
964
|
+
*/
|
|
965
|
+
clear?: boolean;
|
|
966
|
+
};
|
|
967
|
+
/**
|
|
968
|
+
* Describes the message eliza.v1.TypeOptions.
|
|
969
|
+
* Use `create(TypeOptionsSchema)` to create a new message.
|
|
970
|
+
*/
|
|
971
|
+
export declare const TypeOptionsSchema: GenMessage<TypeOptions>;
|
|
972
|
+
/**
|
|
973
|
+
* @generated from message eliza.v1.PdfMetadata
|
|
974
|
+
*/
|
|
975
|
+
export type PdfMetadata = Message<"eliza.v1.PdfMetadata"> & {
|
|
976
|
+
/**
|
|
977
|
+
* @generated from field: optional string title = 1;
|
|
978
|
+
*/
|
|
979
|
+
title?: string;
|
|
980
|
+
/**
|
|
981
|
+
* @generated from field: optional string author = 2;
|
|
982
|
+
*/
|
|
983
|
+
author?: string;
|
|
984
|
+
/**
|
|
985
|
+
* @generated from field: optional google.protobuf.Timestamp created_at = 3;
|
|
986
|
+
*/
|
|
987
|
+
createdAt?: Timestamp;
|
|
988
|
+
/**
|
|
989
|
+
* @generated from field: optional google.protobuf.Timestamp modified_at = 4;
|
|
990
|
+
*/
|
|
991
|
+
modifiedAt?: Timestamp;
|
|
992
|
+
};
|
|
993
|
+
/**
|
|
994
|
+
* Describes the message eliza.v1.PdfMetadata.
|
|
995
|
+
* Use `create(PdfMetadataSchema)` to create a new message.
|
|
996
|
+
*/
|
|
997
|
+
export declare const PdfMetadataSchema: GenMessage<PdfMetadata>;
|
|
998
|
+
/**
|
|
999
|
+
* @generated from message eliza.v1.PdfExtractionResult
|
|
1000
|
+
*/
|
|
1001
|
+
export type PdfExtractionResult = Message<"eliza.v1.PdfExtractionResult"> & {
|
|
1002
|
+
/**
|
|
1003
|
+
* @generated from field: string text = 1;
|
|
1004
|
+
*/
|
|
1005
|
+
text: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* @generated from field: int32 page_count = 2;
|
|
1008
|
+
*/
|
|
1009
|
+
pageCount: number;
|
|
1010
|
+
/**
|
|
1011
|
+
* @generated from field: optional eliza.v1.PdfMetadata metadata = 3;
|
|
1012
|
+
*/
|
|
1013
|
+
metadata?: PdfMetadata;
|
|
1014
|
+
};
|
|
1015
|
+
/**
|
|
1016
|
+
* Describes the message eliza.v1.PdfExtractionResult.
|
|
1017
|
+
* Use `create(PdfExtractionResultSchema)` to create a new message.
|
|
1018
|
+
*/
|
|
1019
|
+
export declare const PdfExtractionResultSchema: GenMessage<PdfExtractionResult>;
|
|
1020
|
+
/**
|
|
1021
|
+
* @generated from message eliza.v1.PdfMargins
|
|
1022
|
+
*/
|
|
1023
|
+
export type PdfMargins = Message<"eliza.v1.PdfMargins"> & {
|
|
1024
|
+
/**
|
|
1025
|
+
* @generated from field: optional double top = 1;
|
|
1026
|
+
*/
|
|
1027
|
+
top?: number;
|
|
1028
|
+
/**
|
|
1029
|
+
* @generated from field: optional double bottom = 2;
|
|
1030
|
+
*/
|
|
1031
|
+
bottom?: number;
|
|
1032
|
+
/**
|
|
1033
|
+
* @generated from field: optional double left = 3;
|
|
1034
|
+
*/
|
|
1035
|
+
left?: number;
|
|
1036
|
+
/**
|
|
1037
|
+
* @generated from field: optional double right = 4;
|
|
1038
|
+
*/
|
|
1039
|
+
right?: number;
|
|
1040
|
+
};
|
|
1041
|
+
/**
|
|
1042
|
+
* Describes the message eliza.v1.PdfMargins.
|
|
1043
|
+
* Use `create(PdfMarginsSchema)` to create a new message.
|
|
1044
|
+
*/
|
|
1045
|
+
export declare const PdfMarginsSchema: GenMessage<PdfMargins>;
|
|
1046
|
+
/**
|
|
1047
|
+
* @generated from message eliza.v1.PdfGenerationOptions
|
|
1048
|
+
*/
|
|
1049
|
+
export type PdfGenerationOptions = Message<"eliza.v1.PdfGenerationOptions"> & {
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated from field: optional string format = 1;
|
|
1052
|
+
*/
|
|
1053
|
+
format?: string;
|
|
1054
|
+
/**
|
|
1055
|
+
* @generated from field: optional string orientation = 2;
|
|
1056
|
+
*/
|
|
1057
|
+
orientation?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* @generated from field: optional eliza.v1.PdfMargins margins = 3;
|
|
1060
|
+
*/
|
|
1061
|
+
margins?: PdfMargins;
|
|
1062
|
+
/**
|
|
1063
|
+
* @generated from field: optional string header = 4;
|
|
1064
|
+
*/
|
|
1065
|
+
header?: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* @generated from field: optional string footer = 5;
|
|
1068
|
+
*/
|
|
1069
|
+
footer?: string;
|
|
1070
|
+
};
|
|
1071
|
+
/**
|
|
1072
|
+
* Describes the message eliza.v1.PdfGenerationOptions.
|
|
1073
|
+
* Use `create(PdfGenerationOptionsSchema)` to create a new message.
|
|
1074
|
+
*/
|
|
1075
|
+
export declare const PdfGenerationOptionsSchema: GenMessage<PdfGenerationOptions>;
|
|
1076
|
+
/**
|
|
1077
|
+
* @generated from message eliza.v1.PdfConversionOptions
|
|
1078
|
+
*/
|
|
1079
|
+
export type PdfConversionOptions = Message<"eliza.v1.PdfConversionOptions"> & {
|
|
1080
|
+
/**
|
|
1081
|
+
* @generated from field: optional string quality = 1;
|
|
1082
|
+
*/
|
|
1083
|
+
quality?: string;
|
|
1084
|
+
/**
|
|
1085
|
+
* @generated from field: optional string output_format = 2;
|
|
1086
|
+
*/
|
|
1087
|
+
outputFormat?: string;
|
|
1088
|
+
/**
|
|
1089
|
+
* @generated from field: optional bool compression = 3;
|
|
1090
|
+
*/
|
|
1091
|
+
compression?: boolean;
|
|
1092
|
+
};
|
|
1093
|
+
/**
|
|
1094
|
+
* Describes the message eliza.v1.PdfConversionOptions.
|
|
1095
|
+
* Use `create(PdfConversionOptionsSchema)` to create a new message.
|
|
1096
|
+
*/
|
|
1097
|
+
export declare const PdfConversionOptionsSchema: GenMessage<PdfConversionOptions>;
|
|
1098
|
+
/**
|
|
1099
|
+
* @generated from message eliza.v1.DateRange
|
|
1100
|
+
*/
|
|
1101
|
+
export type DateRange = Message<"eliza.v1.DateRange"> & {
|
|
1102
|
+
/**
|
|
1103
|
+
* @generated from field: optional google.protobuf.Timestamp start = 1;
|
|
1104
|
+
*/
|
|
1105
|
+
start?: Timestamp;
|
|
1106
|
+
/**
|
|
1107
|
+
* @generated from field: optional google.protobuf.Timestamp end = 2;
|
|
1108
|
+
*/
|
|
1109
|
+
end?: Timestamp;
|
|
1110
|
+
};
|
|
1111
|
+
/**
|
|
1112
|
+
* Describes the message eliza.v1.DateRange.
|
|
1113
|
+
* Use `create(DateRangeSchema)` to create a new message.
|
|
1114
|
+
*/
|
|
1115
|
+
export declare const DateRangeSchema: GenMessage<DateRange>;
|
|
1116
|
+
/**
|
|
1117
|
+
* @generated from message eliza.v1.SearchOptions
|
|
1118
|
+
*/
|
|
1119
|
+
export type SearchOptions = Message<"eliza.v1.SearchOptions"> & {
|
|
1120
|
+
/**
|
|
1121
|
+
* @generated from field: optional int32 limit = 1;
|
|
1122
|
+
*/
|
|
1123
|
+
limit?: number;
|
|
1124
|
+
/**
|
|
1125
|
+
* @generated from field: optional int32 offset = 2;
|
|
1126
|
+
*/
|
|
1127
|
+
offset?: number;
|
|
1128
|
+
/**
|
|
1129
|
+
* @generated from field: optional string language = 3;
|
|
1130
|
+
*/
|
|
1131
|
+
language?: string;
|
|
1132
|
+
/**
|
|
1133
|
+
* @generated from field: optional string region = 4;
|
|
1134
|
+
*/
|
|
1135
|
+
region?: string;
|
|
1136
|
+
/**
|
|
1137
|
+
* @generated from field: optional eliza.v1.DateRange date_range = 5;
|
|
1138
|
+
*/
|
|
1139
|
+
dateRange?: DateRange;
|
|
1140
|
+
/**
|
|
1141
|
+
* @generated from field: optional string file_type = 6;
|
|
1142
|
+
*/
|
|
1143
|
+
fileType?: string;
|
|
1144
|
+
/**
|
|
1145
|
+
* @generated from field: optional string site = 7;
|
|
1146
|
+
*/
|
|
1147
|
+
site?: string;
|
|
1148
|
+
/**
|
|
1149
|
+
* @generated from field: optional string sort_by = 8;
|
|
1150
|
+
*/
|
|
1151
|
+
sortBy?: string;
|
|
1152
|
+
/**
|
|
1153
|
+
* @generated from field: optional string safe_search = 9;
|
|
1154
|
+
*/
|
|
1155
|
+
safeSearch?: string;
|
|
1156
|
+
};
|
|
1157
|
+
/**
|
|
1158
|
+
* Describes the message eliza.v1.SearchOptions.
|
|
1159
|
+
* Use `create(SearchOptionsSchema)` to create a new message.
|
|
1160
|
+
*/
|
|
1161
|
+
export declare const SearchOptionsSchema: GenMessage<SearchOptions>;
|
|
1162
|
+
/**
|
|
1163
|
+
* @generated from message eliza.v1.SearchResult
|
|
1164
|
+
*/
|
|
1165
|
+
export type SearchResult = Message<"eliza.v1.SearchResult"> & {
|
|
1166
|
+
/**
|
|
1167
|
+
* @generated from field: string title = 1;
|
|
1168
|
+
*/
|
|
1169
|
+
title: string;
|
|
1170
|
+
/**
|
|
1171
|
+
* @generated from field: string url = 2;
|
|
1172
|
+
*/
|
|
1173
|
+
url: string;
|
|
1174
|
+
/**
|
|
1175
|
+
* @generated from field: string description = 3;
|
|
1176
|
+
*/
|
|
1177
|
+
description: string;
|
|
1178
|
+
/**
|
|
1179
|
+
* @generated from field: optional string display_url = 4;
|
|
1180
|
+
*/
|
|
1181
|
+
displayUrl?: string;
|
|
1182
|
+
/**
|
|
1183
|
+
* @generated from field: optional string thumbnail = 5;
|
|
1184
|
+
*/
|
|
1185
|
+
thumbnail?: string;
|
|
1186
|
+
/**
|
|
1187
|
+
* @generated from field: optional google.protobuf.Timestamp published_date = 6;
|
|
1188
|
+
*/
|
|
1189
|
+
publishedDate?: Timestamp;
|
|
1190
|
+
/**
|
|
1191
|
+
* @generated from field: optional string source = 7;
|
|
1192
|
+
*/
|
|
1193
|
+
source?: string;
|
|
1194
|
+
/**
|
|
1195
|
+
* @generated from field: optional double relevance_score = 8;
|
|
1196
|
+
*/
|
|
1197
|
+
relevanceScore?: number;
|
|
1198
|
+
/**
|
|
1199
|
+
* @generated from field: optional string snippet = 9;
|
|
1200
|
+
*/
|
|
1201
|
+
snippet?: string;
|
|
1202
|
+
};
|
|
1203
|
+
/**
|
|
1204
|
+
* Describes the message eliza.v1.SearchResult.
|
|
1205
|
+
* Use `create(SearchResultSchema)` to create a new message.
|
|
1206
|
+
*/
|
|
1207
|
+
export declare const SearchResultSchema: GenMessage<SearchResult>;
|
|
1208
|
+
/**
|
|
1209
|
+
* @generated from message eliza.v1.SearchResponse
|
|
1210
|
+
*/
|
|
1211
|
+
export type SearchResponse = Message<"eliza.v1.SearchResponse"> & {
|
|
1212
|
+
/**
|
|
1213
|
+
* @generated from field: string query = 1;
|
|
1214
|
+
*/
|
|
1215
|
+
query: string;
|
|
1216
|
+
/**
|
|
1217
|
+
* @generated from field: repeated eliza.v1.SearchResult results = 2;
|
|
1218
|
+
*/
|
|
1219
|
+
results: SearchResult[];
|
|
1220
|
+
/**
|
|
1221
|
+
* @generated from field: optional int32 total_results = 3;
|
|
1222
|
+
*/
|
|
1223
|
+
totalResults?: number;
|
|
1224
|
+
/**
|
|
1225
|
+
* @generated from field: optional double search_time = 4;
|
|
1226
|
+
*/
|
|
1227
|
+
searchTime?: number;
|
|
1228
|
+
/**
|
|
1229
|
+
* @generated from field: repeated string suggestions = 5;
|
|
1230
|
+
*/
|
|
1231
|
+
suggestions: string[];
|
|
1232
|
+
/**
|
|
1233
|
+
* @generated from field: optional string next_page_token = 6;
|
|
1234
|
+
*/
|
|
1235
|
+
nextPageToken?: string;
|
|
1236
|
+
/**
|
|
1237
|
+
* @generated from field: repeated string related_searches = 7;
|
|
1238
|
+
*/
|
|
1239
|
+
relatedSearches: string[];
|
|
1240
|
+
};
|
|
1241
|
+
/**
|
|
1242
|
+
* Describes the message eliza.v1.SearchResponse.
|
|
1243
|
+
* Use `create(SearchResponseSchema)` to create a new message.
|
|
1244
|
+
*/
|
|
1245
|
+
export declare const SearchResponseSchema: GenMessage<SearchResponse>;
|
|
1246
|
+
/**
|
|
1247
|
+
* @generated from message eliza.v1.NewsSearchOptions
|
|
1248
|
+
*/
|
|
1249
|
+
export type NewsSearchOptions = Message<"eliza.v1.NewsSearchOptions"> & {
|
|
1250
|
+
/**
|
|
1251
|
+
* @generated from field: eliza.v1.SearchOptions base = 1;
|
|
1252
|
+
*/
|
|
1253
|
+
base?: SearchOptions;
|
|
1254
|
+
/**
|
|
1255
|
+
* @generated from field: optional string category = 2;
|
|
1256
|
+
*/
|
|
1257
|
+
category?: string;
|
|
1258
|
+
/**
|
|
1259
|
+
* @generated from field: optional string freshness = 3;
|
|
1260
|
+
*/
|
|
1261
|
+
freshness?: string;
|
|
1262
|
+
};
|
|
1263
|
+
/**
|
|
1264
|
+
* Describes the message eliza.v1.NewsSearchOptions.
|
|
1265
|
+
* Use `create(NewsSearchOptionsSchema)` to create a new message.
|
|
1266
|
+
*/
|
|
1267
|
+
export declare const NewsSearchOptionsSchema: GenMessage<NewsSearchOptions>;
|
|
1268
|
+
/**
|
|
1269
|
+
* @generated from message eliza.v1.ImageSearchOptions
|
|
1270
|
+
*/
|
|
1271
|
+
export type ImageSearchOptions = Message<"eliza.v1.ImageSearchOptions"> & {
|
|
1272
|
+
/**
|
|
1273
|
+
* @generated from field: eliza.v1.SearchOptions base = 1;
|
|
1274
|
+
*/
|
|
1275
|
+
base?: SearchOptions;
|
|
1276
|
+
/**
|
|
1277
|
+
* @generated from field: optional string size = 2;
|
|
1278
|
+
*/
|
|
1279
|
+
size?: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* @generated from field: optional string color = 3;
|
|
1282
|
+
*/
|
|
1283
|
+
color?: string;
|
|
1284
|
+
/**
|
|
1285
|
+
* @generated from field: optional string type = 4;
|
|
1286
|
+
*/
|
|
1287
|
+
type?: string;
|
|
1288
|
+
/**
|
|
1289
|
+
* @generated from field: optional string layout = 5;
|
|
1290
|
+
*/
|
|
1291
|
+
layout?: string;
|
|
1292
|
+
/**
|
|
1293
|
+
* @generated from field: optional string license = 6;
|
|
1294
|
+
*/
|
|
1295
|
+
license?: string;
|
|
1296
|
+
};
|
|
1297
|
+
/**
|
|
1298
|
+
* Describes the message eliza.v1.ImageSearchOptions.
|
|
1299
|
+
* Use `create(ImageSearchOptionsSchema)` to create a new message.
|
|
1300
|
+
*/
|
|
1301
|
+
export declare const ImageSearchOptionsSchema: GenMessage<ImageSearchOptions>;
|
|
1302
|
+
/**
|
|
1303
|
+
* @generated from message eliza.v1.VideoSearchOptions
|
|
1304
|
+
*/
|
|
1305
|
+
export type VideoSearchOptions = Message<"eliza.v1.VideoSearchOptions"> & {
|
|
1306
|
+
/**
|
|
1307
|
+
* @generated from field: eliza.v1.SearchOptions base = 1;
|
|
1308
|
+
*/
|
|
1309
|
+
base?: SearchOptions;
|
|
1310
|
+
/**
|
|
1311
|
+
* @generated from field: optional string duration = 2;
|
|
1312
|
+
*/
|
|
1313
|
+
duration?: string;
|
|
1314
|
+
/**
|
|
1315
|
+
* @generated from field: optional string resolution = 3;
|
|
1316
|
+
*/
|
|
1317
|
+
resolution?: string;
|
|
1318
|
+
/**
|
|
1319
|
+
* @generated from field: optional string quality = 4;
|
|
1320
|
+
*/
|
|
1321
|
+
quality?: string;
|
|
1322
|
+
};
|
|
1323
|
+
/**
|
|
1324
|
+
* Describes the message eliza.v1.VideoSearchOptions.
|
|
1325
|
+
* Use `create(VideoSearchOptionsSchema)` to create a new message.
|
|
1326
|
+
*/
|
|
1327
|
+
export declare const VideoSearchOptionsSchema: GenMessage<VideoSearchOptions>;
|
|
1328
|
+
/**
|
|
1329
|
+
* @generated from message eliza.v1.EmailAddress
|
|
1330
|
+
*/
|
|
1331
|
+
export type EmailAddress = Message<"eliza.v1.EmailAddress"> & {
|
|
1332
|
+
/**
|
|
1333
|
+
* @generated from field: string email = 1;
|
|
1334
|
+
*/
|
|
1335
|
+
email: string;
|
|
1336
|
+
/**
|
|
1337
|
+
* @generated from field: optional string name = 2;
|
|
1338
|
+
*/
|
|
1339
|
+
name?: string;
|
|
1340
|
+
};
|
|
1341
|
+
/**
|
|
1342
|
+
* Describes the message eliza.v1.EmailAddress.
|
|
1343
|
+
* Use `create(EmailAddressSchema)` to create a new message.
|
|
1344
|
+
*/
|
|
1345
|
+
export declare const EmailAddressSchema: GenMessage<EmailAddress>;
|
|
1346
|
+
/**
|
|
1347
|
+
* @generated from message eliza.v1.EmailAttachment
|
|
1348
|
+
*/
|
|
1349
|
+
export type EmailAttachment = Message<"eliza.v1.EmailAttachment"> & {
|
|
1350
|
+
/**
|
|
1351
|
+
* @generated from field: string filename = 1;
|
|
1352
|
+
*/
|
|
1353
|
+
filename: string;
|
|
1354
|
+
/**
|
|
1355
|
+
* @generated from oneof eliza.v1.EmailAttachment.content
|
|
1356
|
+
*/
|
|
1357
|
+
content: {
|
|
1358
|
+
/**
|
|
1359
|
+
* @generated from field: bytes content_bytes = 2;
|
|
1360
|
+
*/
|
|
1361
|
+
value: Uint8Array;
|
|
1362
|
+
case: "contentBytes";
|
|
1363
|
+
} | {
|
|
1364
|
+
/**
|
|
1365
|
+
* @generated from field: string content_text = 3;
|
|
1366
|
+
*/
|
|
1367
|
+
value: string;
|
|
1368
|
+
case: "contentText";
|
|
1369
|
+
} | {
|
|
1370
|
+
case: undefined;
|
|
1371
|
+
value?: undefined;
|
|
1372
|
+
};
|
|
1373
|
+
/**
|
|
1374
|
+
* @generated from field: optional string content_type = 4;
|
|
1375
|
+
*/
|
|
1376
|
+
contentType?: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* @generated from field: optional string content_disposition = 5;
|
|
1379
|
+
*/
|
|
1380
|
+
contentDisposition?: string;
|
|
1381
|
+
/**
|
|
1382
|
+
* @generated from field: optional string cid = 6;
|
|
1383
|
+
*/
|
|
1384
|
+
cid?: string;
|
|
1385
|
+
};
|
|
1386
|
+
/**
|
|
1387
|
+
* Describes the message eliza.v1.EmailAttachment.
|
|
1388
|
+
* Use `create(EmailAttachmentSchema)` to create a new message.
|
|
1389
|
+
*/
|
|
1390
|
+
export declare const EmailAttachmentSchema: GenMessage<EmailAttachment>;
|
|
1391
|
+
/**
|
|
1392
|
+
* @generated from message eliza.v1.EmailMessage
|
|
1393
|
+
*/
|
|
1394
|
+
export type EmailMessage = Message<"eliza.v1.EmailMessage"> & {
|
|
1395
|
+
/**
|
|
1396
|
+
* @generated from field: eliza.v1.EmailAddress from = 1;
|
|
1397
|
+
*/
|
|
1398
|
+
from?: EmailAddress;
|
|
1399
|
+
/**
|
|
1400
|
+
* @generated from field: repeated eliza.v1.EmailAddress to = 2;
|
|
1401
|
+
*/
|
|
1402
|
+
to: EmailAddress[];
|
|
1403
|
+
/**
|
|
1404
|
+
* @generated from field: repeated eliza.v1.EmailAddress cc = 3;
|
|
1405
|
+
*/
|
|
1406
|
+
cc: EmailAddress[];
|
|
1407
|
+
/**
|
|
1408
|
+
* @generated from field: repeated eliza.v1.EmailAddress bcc = 4;
|
|
1409
|
+
*/
|
|
1410
|
+
bcc: EmailAddress[];
|
|
1411
|
+
/**
|
|
1412
|
+
* @generated from field: string subject = 5;
|
|
1413
|
+
*/
|
|
1414
|
+
subject: string;
|
|
1415
|
+
/**
|
|
1416
|
+
* @generated from field: optional string text = 6;
|
|
1417
|
+
*/
|
|
1418
|
+
text?: string;
|
|
1419
|
+
/**
|
|
1420
|
+
* @generated from field: optional string html = 7;
|
|
1421
|
+
*/
|
|
1422
|
+
html?: string;
|
|
1423
|
+
/**
|
|
1424
|
+
* @generated from field: repeated eliza.v1.EmailAttachment attachments = 8;
|
|
1425
|
+
*/
|
|
1426
|
+
attachments: EmailAttachment[];
|
|
1427
|
+
/**
|
|
1428
|
+
* @generated from field: optional eliza.v1.EmailAddress reply_to = 9;
|
|
1429
|
+
*/
|
|
1430
|
+
replyTo?: EmailAddress;
|
|
1431
|
+
/**
|
|
1432
|
+
* @generated from field: optional google.protobuf.Timestamp date = 10;
|
|
1433
|
+
*/
|
|
1434
|
+
date?: Timestamp;
|
|
1435
|
+
/**
|
|
1436
|
+
* @generated from field: optional string message_id = 11;
|
|
1437
|
+
*/
|
|
1438
|
+
messageId?: string;
|
|
1439
|
+
/**
|
|
1440
|
+
* @generated from field: repeated string references = 12;
|
|
1441
|
+
*/
|
|
1442
|
+
references: string[];
|
|
1443
|
+
/**
|
|
1444
|
+
* @generated from field: optional string in_reply_to = 13;
|
|
1445
|
+
*/
|
|
1446
|
+
inReplyTo?: string;
|
|
1447
|
+
/**
|
|
1448
|
+
* @generated from field: optional string priority = 14;
|
|
1449
|
+
*/
|
|
1450
|
+
priority?: string;
|
|
1451
|
+
};
|
|
1452
|
+
/**
|
|
1453
|
+
* Describes the message eliza.v1.EmailMessage.
|
|
1454
|
+
* Use `create(EmailMessageSchema)` to create a new message.
|
|
1455
|
+
*/
|
|
1456
|
+
export declare const EmailMessageSchema: GenMessage<EmailMessage>;
|
|
1457
|
+
/**
|
|
1458
|
+
* @generated from message eliza.v1.EmailSendOptions
|
|
1459
|
+
*/
|
|
1460
|
+
export type EmailSendOptions = Message<"eliza.v1.EmailSendOptions"> & {
|
|
1461
|
+
/**
|
|
1462
|
+
* @generated from field: optional int32 retry = 1;
|
|
1463
|
+
*/
|
|
1464
|
+
retry?: number;
|
|
1465
|
+
/**
|
|
1466
|
+
* @generated from field: optional int32 timeout = 2;
|
|
1467
|
+
*/
|
|
1468
|
+
timeout?: number;
|
|
1469
|
+
/**
|
|
1470
|
+
* @generated from field: optional bool track_opens = 3;
|
|
1471
|
+
*/
|
|
1472
|
+
trackOpens?: boolean;
|
|
1473
|
+
/**
|
|
1474
|
+
* @generated from field: optional bool track_clicks = 4;
|
|
1475
|
+
*/
|
|
1476
|
+
trackClicks?: boolean;
|
|
1477
|
+
/**
|
|
1478
|
+
* @generated from field: repeated string tags = 5;
|
|
1479
|
+
*/
|
|
1480
|
+
tags: string[];
|
|
1481
|
+
};
|
|
1482
|
+
/**
|
|
1483
|
+
* Describes the message eliza.v1.EmailSendOptions.
|
|
1484
|
+
* Use `create(EmailSendOptionsSchema)` to create a new message.
|
|
1485
|
+
*/
|
|
1486
|
+
export declare const EmailSendOptionsSchema: GenMessage<EmailSendOptions>;
|
|
1487
|
+
/**
|
|
1488
|
+
* @generated from message eliza.v1.EmailSearchOptions
|
|
1489
|
+
*/
|
|
1490
|
+
export type EmailSearchOptions = Message<"eliza.v1.EmailSearchOptions"> & {
|
|
1491
|
+
/**
|
|
1492
|
+
* @generated from field: optional string query = 1;
|
|
1493
|
+
*/
|
|
1494
|
+
query?: string;
|
|
1495
|
+
/**
|
|
1496
|
+
* @generated from field: optional string from = 2;
|
|
1497
|
+
*/
|
|
1498
|
+
from?: string;
|
|
1499
|
+
/**
|
|
1500
|
+
* @generated from field: optional string to = 3;
|
|
1501
|
+
*/
|
|
1502
|
+
to?: string;
|
|
1503
|
+
/**
|
|
1504
|
+
* @generated from field: optional string subject = 4;
|
|
1505
|
+
*/
|
|
1506
|
+
subject?: string;
|
|
1507
|
+
/**
|
|
1508
|
+
* @generated from field: optional string folder = 5;
|
|
1509
|
+
*/
|
|
1510
|
+
folder?: string;
|
|
1511
|
+
/**
|
|
1512
|
+
* @generated from field: optional google.protobuf.Timestamp since = 6;
|
|
1513
|
+
*/
|
|
1514
|
+
since?: Timestamp;
|
|
1515
|
+
/**
|
|
1516
|
+
* @generated from field: optional google.protobuf.Timestamp before = 7;
|
|
1517
|
+
*/
|
|
1518
|
+
before?: Timestamp;
|
|
1519
|
+
/**
|
|
1520
|
+
* @generated from field: optional int32 limit = 8;
|
|
1521
|
+
*/
|
|
1522
|
+
limit?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* @generated from field: optional int32 offset = 9;
|
|
1525
|
+
*/
|
|
1526
|
+
offset?: number;
|
|
1527
|
+
/**
|
|
1528
|
+
* @generated from field: optional bool unread = 10;
|
|
1529
|
+
*/
|
|
1530
|
+
unread?: boolean;
|
|
1531
|
+
/**
|
|
1532
|
+
* @generated from field: optional bool flagged = 11;
|
|
1533
|
+
*/
|
|
1534
|
+
flagged?: boolean;
|
|
1535
|
+
/**
|
|
1536
|
+
* @generated from field: optional bool has_attachments = 12;
|
|
1537
|
+
*/
|
|
1538
|
+
hasAttachments?: boolean;
|
|
1539
|
+
};
|
|
1540
|
+
/**
|
|
1541
|
+
* Describes the message eliza.v1.EmailSearchOptions.
|
|
1542
|
+
* Use `create(EmailSearchOptionsSchema)` to create a new message.
|
|
1543
|
+
*/
|
|
1544
|
+
export declare const EmailSearchOptionsSchema: GenMessage<EmailSearchOptions>;
|
|
1545
|
+
/**
|
|
1546
|
+
* @generated from message eliza.v1.EmailFolder
|
|
1547
|
+
*/
|
|
1548
|
+
export type EmailFolder = Message<"eliza.v1.EmailFolder"> & {
|
|
1549
|
+
/**
|
|
1550
|
+
* @generated from field: string name = 1;
|
|
1551
|
+
*/
|
|
1552
|
+
name: string;
|
|
1553
|
+
/**
|
|
1554
|
+
* @generated from field: string path = 2;
|
|
1555
|
+
*/
|
|
1556
|
+
path: string;
|
|
1557
|
+
/**
|
|
1558
|
+
* @generated from field: string type = 3;
|
|
1559
|
+
*/
|
|
1560
|
+
type: string;
|
|
1561
|
+
/**
|
|
1562
|
+
* @generated from field: optional int32 message_count = 4;
|
|
1563
|
+
*/
|
|
1564
|
+
messageCount?: number;
|
|
1565
|
+
/**
|
|
1566
|
+
* @generated from field: optional int32 unread_count = 5;
|
|
1567
|
+
*/
|
|
1568
|
+
unreadCount?: number;
|
|
1569
|
+
/**
|
|
1570
|
+
* @generated from field: repeated eliza.v1.EmailFolder children = 6;
|
|
1571
|
+
*/
|
|
1572
|
+
children: EmailFolder[];
|
|
1573
|
+
};
|
|
1574
|
+
/**
|
|
1575
|
+
* Describes the message eliza.v1.EmailFolder.
|
|
1576
|
+
* Use `create(EmailFolderSchema)` to create a new message.
|
|
1577
|
+
*/
|
|
1578
|
+
export declare const EmailFolderSchema: GenMessage<EmailFolder>;
|
|
1579
|
+
/**
|
|
1580
|
+
* @generated from message eliza.v1.EmailAccount
|
|
1581
|
+
*/
|
|
1582
|
+
export type EmailAccount = Message<"eliza.v1.EmailAccount"> & {
|
|
1583
|
+
/**
|
|
1584
|
+
* @generated from field: string email = 1;
|
|
1585
|
+
*/
|
|
1586
|
+
email: string;
|
|
1587
|
+
/**
|
|
1588
|
+
* @generated from field: optional string name = 2;
|
|
1589
|
+
*/
|
|
1590
|
+
name?: string;
|
|
1591
|
+
/**
|
|
1592
|
+
* @generated from field: optional string provider = 3;
|
|
1593
|
+
*/
|
|
1594
|
+
provider?: string;
|
|
1595
|
+
/**
|
|
1596
|
+
* @generated from field: repeated eliza.v1.EmailFolder folders = 4;
|
|
1597
|
+
*/
|
|
1598
|
+
folders: EmailFolder[];
|
|
1599
|
+
/**
|
|
1600
|
+
* @generated from field: optional int64 quota_used = 5;
|
|
1601
|
+
*/
|
|
1602
|
+
quotaUsed?: bigint;
|
|
1603
|
+
/**
|
|
1604
|
+
* @generated from field: optional int64 quota_limit = 6;
|
|
1605
|
+
*/
|
|
1606
|
+
quotaLimit?: bigint;
|
|
1607
|
+
};
|
|
1608
|
+
/**
|
|
1609
|
+
* Describes the message eliza.v1.EmailAccount.
|
|
1610
|
+
* Use `create(EmailAccountSchema)` to create a new message.
|
|
1611
|
+
*/
|
|
1612
|
+
export declare const EmailAccountSchema: GenMessage<EmailAccount>;
|
|
1613
|
+
/**
|
|
1614
|
+
* @generated from message eliza.v1.MessageParticipant
|
|
1615
|
+
*/
|
|
1616
|
+
export type MessageParticipant = Message<"eliza.v1.MessageParticipant"> & {
|
|
1617
|
+
/**
|
|
1618
|
+
* @generated from field: string id = 1;
|
|
1619
|
+
*/
|
|
1620
|
+
id: string;
|
|
1621
|
+
/**
|
|
1622
|
+
* @generated from field: string name = 2;
|
|
1623
|
+
*/
|
|
1624
|
+
name: string;
|
|
1625
|
+
/**
|
|
1626
|
+
* @generated from field: optional string username = 3;
|
|
1627
|
+
*/
|
|
1628
|
+
username?: string;
|
|
1629
|
+
/**
|
|
1630
|
+
* @generated from field: optional string avatar = 4;
|
|
1631
|
+
*/
|
|
1632
|
+
avatar?: string;
|
|
1633
|
+
/**
|
|
1634
|
+
* @generated from field: optional string status = 5;
|
|
1635
|
+
*/
|
|
1636
|
+
status?: string;
|
|
1637
|
+
};
|
|
1638
|
+
/**
|
|
1639
|
+
* Describes the message eliza.v1.MessageParticipant.
|
|
1640
|
+
* Use `create(MessageParticipantSchema)` to create a new message.
|
|
1641
|
+
*/
|
|
1642
|
+
export declare const MessageParticipantSchema: GenMessage<MessageParticipant>;
|
|
1643
|
+
/**
|
|
1644
|
+
* @generated from message eliza.v1.MessageAttachment
|
|
1645
|
+
*/
|
|
1646
|
+
export type MessageAttachment = Message<"eliza.v1.MessageAttachment"> & {
|
|
1647
|
+
/**
|
|
1648
|
+
* @generated from field: string id = 1;
|
|
1649
|
+
*/
|
|
1650
|
+
id: string;
|
|
1651
|
+
/**
|
|
1652
|
+
* @generated from field: string filename = 2;
|
|
1653
|
+
*/
|
|
1654
|
+
filename: string;
|
|
1655
|
+
/**
|
|
1656
|
+
* @generated from field: string url = 3;
|
|
1657
|
+
*/
|
|
1658
|
+
url: string;
|
|
1659
|
+
/**
|
|
1660
|
+
* @generated from field: string mime_type = 4;
|
|
1661
|
+
*/
|
|
1662
|
+
mimeType: string;
|
|
1663
|
+
/**
|
|
1664
|
+
* @generated from field: int64 size = 5;
|
|
1665
|
+
*/
|
|
1666
|
+
size: bigint;
|
|
1667
|
+
/**
|
|
1668
|
+
* @generated from field: optional int32 width = 6;
|
|
1669
|
+
*/
|
|
1670
|
+
width?: number;
|
|
1671
|
+
/**
|
|
1672
|
+
* @generated from field: optional int32 height = 7;
|
|
1673
|
+
*/
|
|
1674
|
+
height?: number;
|
|
1675
|
+
/**
|
|
1676
|
+
* @generated from field: optional double duration = 8;
|
|
1677
|
+
*/
|
|
1678
|
+
duration?: number;
|
|
1679
|
+
/**
|
|
1680
|
+
* @generated from field: optional string thumbnail = 9;
|
|
1681
|
+
*/
|
|
1682
|
+
thumbnail?: string;
|
|
1683
|
+
};
|
|
1684
|
+
/**
|
|
1685
|
+
* Describes the message eliza.v1.MessageAttachment.
|
|
1686
|
+
* Use `create(MessageAttachmentSchema)` to create a new message.
|
|
1687
|
+
*/
|
|
1688
|
+
export declare const MessageAttachmentSchema: GenMessage<MessageAttachment>;
|
|
1689
|
+
/**
|
|
1690
|
+
* @generated from message eliza.v1.MessageReaction
|
|
1691
|
+
*/
|
|
1692
|
+
export type MessageReaction = Message<"eliza.v1.MessageReaction"> & {
|
|
1693
|
+
/**
|
|
1694
|
+
* @generated from field: string emoji = 1;
|
|
1695
|
+
*/
|
|
1696
|
+
emoji: string;
|
|
1697
|
+
/**
|
|
1698
|
+
* @generated from field: int32 count = 2;
|
|
1699
|
+
*/
|
|
1700
|
+
count: number;
|
|
1701
|
+
/**
|
|
1702
|
+
* @generated from field: repeated string users = 3;
|
|
1703
|
+
*/
|
|
1704
|
+
users: string[];
|
|
1705
|
+
/**
|
|
1706
|
+
* @generated from field: bool has_reacted = 4;
|
|
1707
|
+
*/
|
|
1708
|
+
hasReacted: boolean;
|
|
1709
|
+
};
|
|
1710
|
+
/**
|
|
1711
|
+
* Describes the message eliza.v1.MessageReaction.
|
|
1712
|
+
* Use `create(MessageReactionSchema)` to create a new message.
|
|
1713
|
+
*/
|
|
1714
|
+
export declare const MessageReactionSchema: GenMessage<MessageReaction>;
|
|
1715
|
+
/**
|
|
1716
|
+
* @generated from message eliza.v1.MessageReference
|
|
1717
|
+
*/
|
|
1718
|
+
export type MessageReference = Message<"eliza.v1.MessageReference"> & {
|
|
1719
|
+
/**
|
|
1720
|
+
* @generated from field: string message_id = 1;
|
|
1721
|
+
*/
|
|
1722
|
+
messageId: string;
|
|
1723
|
+
/**
|
|
1724
|
+
* @generated from field: string channel_id = 2;
|
|
1725
|
+
*/
|
|
1726
|
+
channelId: string;
|
|
1727
|
+
/**
|
|
1728
|
+
* @generated from field: string type = 3;
|
|
1729
|
+
*/
|
|
1730
|
+
type: string;
|
|
1731
|
+
};
|
|
1732
|
+
/**
|
|
1733
|
+
* Describes the message eliza.v1.MessageReference.
|
|
1734
|
+
* Use `create(MessageReferenceSchema)` to create a new message.
|
|
1735
|
+
*/
|
|
1736
|
+
export declare const MessageReferenceSchema: GenMessage<MessageReference>;
|
|
1737
|
+
/**
|
|
1738
|
+
* @generated from message eliza.v1.EmbedField
|
|
1739
|
+
*/
|
|
1740
|
+
export type EmbedField = Message<"eliza.v1.EmbedField"> & {
|
|
1741
|
+
/**
|
|
1742
|
+
* @generated from field: string name = 1;
|
|
1743
|
+
*/
|
|
1744
|
+
name: string;
|
|
1745
|
+
/**
|
|
1746
|
+
* @generated from field: string value = 2;
|
|
1747
|
+
*/
|
|
1748
|
+
value: string;
|
|
1749
|
+
/**
|
|
1750
|
+
* @generated from field: optional bool inline = 3;
|
|
1751
|
+
*/
|
|
1752
|
+
inline?: boolean;
|
|
1753
|
+
};
|
|
1754
|
+
/**
|
|
1755
|
+
* Describes the message eliza.v1.EmbedField.
|
|
1756
|
+
* Use `create(EmbedFieldSchema)` to create a new message.
|
|
1757
|
+
*/
|
|
1758
|
+
export declare const EmbedFieldSchema: GenMessage<EmbedField>;
|
|
1759
|
+
/**
|
|
1760
|
+
* @generated from message eliza.v1.MessageEmbed
|
|
1761
|
+
*/
|
|
1762
|
+
export type MessageEmbed = Message<"eliza.v1.MessageEmbed"> & {
|
|
1763
|
+
/**
|
|
1764
|
+
* @generated from field: optional string title = 1;
|
|
1765
|
+
*/
|
|
1766
|
+
title?: string;
|
|
1767
|
+
/**
|
|
1768
|
+
* @generated from field: optional string description = 2;
|
|
1769
|
+
*/
|
|
1770
|
+
description?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* @generated from field: optional string url = 3;
|
|
1773
|
+
*/
|
|
1774
|
+
url?: string;
|
|
1775
|
+
/**
|
|
1776
|
+
* @generated from field: optional string image = 4;
|
|
1777
|
+
*/
|
|
1778
|
+
image?: string;
|
|
1779
|
+
/**
|
|
1780
|
+
* @generated from field: repeated eliza.v1.EmbedField fields = 5;
|
|
1781
|
+
*/
|
|
1782
|
+
fields: EmbedField[];
|
|
1783
|
+
};
|
|
1784
|
+
/**
|
|
1785
|
+
* Describes the message eliza.v1.MessageEmbed.
|
|
1786
|
+
* Use `create(MessageEmbedSchema)` to create a new message.
|
|
1787
|
+
*/
|
|
1788
|
+
export declare const MessageEmbedSchema: GenMessage<MessageEmbed>;
|
|
1789
|
+
/**
|
|
1790
|
+
* @generated from message eliza.v1.MessageContent
|
|
1791
|
+
*/
|
|
1792
|
+
export type MessageContent = Message<"eliza.v1.MessageContent"> & {
|
|
1793
|
+
/**
|
|
1794
|
+
* @generated from field: optional string text = 1;
|
|
1795
|
+
*/
|
|
1796
|
+
text?: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* @generated from field: optional string html = 2;
|
|
1799
|
+
*/
|
|
1800
|
+
html?: string;
|
|
1801
|
+
/**
|
|
1802
|
+
* @generated from field: optional string markdown = 3;
|
|
1803
|
+
*/
|
|
1804
|
+
markdown?: string;
|
|
1805
|
+
/**
|
|
1806
|
+
* @generated from field: repeated eliza.v1.MessageAttachment attachments = 4;
|
|
1807
|
+
*/
|
|
1808
|
+
attachments: MessageAttachment[];
|
|
1809
|
+
/**
|
|
1810
|
+
* @generated from field: repeated eliza.v1.MessageReaction reactions = 5;
|
|
1811
|
+
*/
|
|
1812
|
+
reactions: MessageReaction[];
|
|
1813
|
+
/**
|
|
1814
|
+
* @generated from field: optional eliza.v1.MessageReference reference = 6;
|
|
1815
|
+
*/
|
|
1816
|
+
reference?: MessageReference;
|
|
1817
|
+
/**
|
|
1818
|
+
* @generated from field: repeated string mentions = 7;
|
|
1819
|
+
*/
|
|
1820
|
+
mentions: string[];
|
|
1821
|
+
/**
|
|
1822
|
+
* @generated from field: repeated eliza.v1.MessageEmbed embeds = 8;
|
|
1823
|
+
*/
|
|
1824
|
+
embeds: MessageEmbed[];
|
|
1825
|
+
};
|
|
1826
|
+
/**
|
|
1827
|
+
* Describes the message eliza.v1.MessageContent.
|
|
1828
|
+
* Use `create(MessageContentSchema)` to create a new message.
|
|
1829
|
+
*/
|
|
1830
|
+
export declare const MessageContentSchema: GenMessage<MessageContent>;
|
|
1831
|
+
/**
|
|
1832
|
+
* @generated from message eliza.v1.MessageThreadInfo
|
|
1833
|
+
*/
|
|
1834
|
+
export type MessageThreadInfo = Message<"eliza.v1.MessageThreadInfo"> & {
|
|
1835
|
+
/**
|
|
1836
|
+
* @generated from field: string id = 1;
|
|
1837
|
+
*/
|
|
1838
|
+
id: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* @generated from field: int32 message_count = 2;
|
|
1841
|
+
*/
|
|
1842
|
+
messageCount: number;
|
|
1843
|
+
/**
|
|
1844
|
+
* @generated from field: repeated string participants = 3;
|
|
1845
|
+
*/
|
|
1846
|
+
participants: string[];
|
|
1847
|
+
/**
|
|
1848
|
+
* @generated from field: google.protobuf.Timestamp last_message_at = 4;
|
|
1849
|
+
*/
|
|
1850
|
+
lastMessageAt?: Timestamp;
|
|
1851
|
+
};
|
|
1852
|
+
/**
|
|
1853
|
+
* Describes the message eliza.v1.MessageThreadInfo.
|
|
1854
|
+
* Use `create(MessageThreadInfoSchema)` to create a new message.
|
|
1855
|
+
*/
|
|
1856
|
+
export declare const MessageThreadInfoSchema: GenMessage<MessageThreadInfo>;
|
|
1857
|
+
/**
|
|
1858
|
+
* @generated from message eliza.v1.MessageInfo
|
|
1859
|
+
*/
|
|
1860
|
+
export type MessageInfo = Message<"eliza.v1.MessageInfo"> & {
|
|
1861
|
+
/**
|
|
1862
|
+
* @generated from field: string id = 1;
|
|
1863
|
+
*/
|
|
1864
|
+
id: string;
|
|
1865
|
+
/**
|
|
1866
|
+
* @generated from field: string channel_id = 2;
|
|
1867
|
+
*/
|
|
1868
|
+
channelId: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* @generated from field: string sender_id = 3;
|
|
1871
|
+
*/
|
|
1872
|
+
senderId: string;
|
|
1873
|
+
/**
|
|
1874
|
+
* @generated from field: eliza.v1.MessageContent content = 4;
|
|
1875
|
+
*/
|
|
1876
|
+
content?: MessageContent;
|
|
1877
|
+
/**
|
|
1878
|
+
* @generated from field: google.protobuf.Timestamp timestamp = 5;
|
|
1879
|
+
*/
|
|
1880
|
+
timestamp?: Timestamp;
|
|
1881
|
+
/**
|
|
1882
|
+
* @generated from field: optional google.protobuf.Timestamp edited = 6;
|
|
1883
|
+
*/
|
|
1884
|
+
edited?: Timestamp;
|
|
1885
|
+
/**
|
|
1886
|
+
* @generated from field: optional google.protobuf.Timestamp deleted = 7;
|
|
1887
|
+
*/
|
|
1888
|
+
deleted?: Timestamp;
|
|
1889
|
+
/**
|
|
1890
|
+
* @generated from field: optional bool pinned = 8;
|
|
1891
|
+
*/
|
|
1892
|
+
pinned?: boolean;
|
|
1893
|
+
/**
|
|
1894
|
+
* @generated from field: optional eliza.v1.MessageThreadInfo thread = 9;
|
|
1895
|
+
*/
|
|
1896
|
+
thread?: MessageThreadInfo;
|
|
1897
|
+
};
|
|
1898
|
+
/**
|
|
1899
|
+
* Describes the message eliza.v1.MessageInfo.
|
|
1900
|
+
* Use `create(MessageInfoSchema)` to create a new message.
|
|
1901
|
+
*/
|
|
1902
|
+
export declare const MessageInfoSchema: GenMessage<MessageInfo>;
|
|
1903
|
+
/**
|
|
1904
|
+
* @generated from message eliza.v1.MessageSendOptions
|
|
1905
|
+
*/
|
|
1906
|
+
export type MessageSendOptions = Message<"eliza.v1.MessageSendOptions"> & {
|
|
1907
|
+
/**
|
|
1908
|
+
* @generated from field: optional string reply_to = 1;
|
|
1909
|
+
*/
|
|
1910
|
+
replyTo?: string;
|
|
1911
|
+
/**
|
|
1912
|
+
* @generated from field: optional bool ephemeral = 2;
|
|
1913
|
+
*/
|
|
1914
|
+
ephemeral?: boolean;
|
|
1915
|
+
/**
|
|
1916
|
+
* @generated from field: optional bool silent = 3;
|
|
1917
|
+
*/
|
|
1918
|
+
silent?: boolean;
|
|
1919
|
+
/**
|
|
1920
|
+
* @generated from field: optional google.protobuf.Timestamp scheduled = 4;
|
|
1921
|
+
*/
|
|
1922
|
+
scheduled?: Timestamp;
|
|
1923
|
+
/**
|
|
1924
|
+
* @generated from field: optional string thread = 5;
|
|
1925
|
+
*/
|
|
1926
|
+
thread?: string;
|
|
1927
|
+
/**
|
|
1928
|
+
* @generated from field: optional string nonce = 6;
|
|
1929
|
+
*/
|
|
1930
|
+
nonce?: string;
|
|
1931
|
+
};
|
|
1932
|
+
/**
|
|
1933
|
+
* Describes the message eliza.v1.MessageSendOptions.
|
|
1934
|
+
* Use `create(MessageSendOptionsSchema)` to create a new message.
|
|
1935
|
+
*/
|
|
1936
|
+
export declare const MessageSendOptionsSchema: GenMessage<MessageSendOptions>;
|
|
1937
|
+
/**
|
|
1938
|
+
* @generated from message eliza.v1.MessageSearchOptions
|
|
1939
|
+
*/
|
|
1940
|
+
export type MessageSearchOptions = Message<"eliza.v1.MessageSearchOptions"> & {
|
|
1941
|
+
/**
|
|
1942
|
+
* @generated from field: optional string query = 1;
|
|
1943
|
+
*/
|
|
1944
|
+
query?: string;
|
|
1945
|
+
/**
|
|
1946
|
+
* @generated from field: optional string channel_id = 2;
|
|
1947
|
+
*/
|
|
1948
|
+
channelId?: string;
|
|
1949
|
+
/**
|
|
1950
|
+
* @generated from field: optional string sender_id = 3;
|
|
1951
|
+
*/
|
|
1952
|
+
senderId?: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* @generated from field: optional google.protobuf.Timestamp before = 4;
|
|
1955
|
+
*/
|
|
1956
|
+
before?: Timestamp;
|
|
1957
|
+
/**
|
|
1958
|
+
* @generated from field: optional google.protobuf.Timestamp after = 5;
|
|
1959
|
+
*/
|
|
1960
|
+
after?: Timestamp;
|
|
1961
|
+
/**
|
|
1962
|
+
* @generated from field: optional int32 limit = 6;
|
|
1963
|
+
*/
|
|
1964
|
+
limit?: number;
|
|
1965
|
+
/**
|
|
1966
|
+
* @generated from field: optional int32 offset = 7;
|
|
1967
|
+
*/
|
|
1968
|
+
offset?: number;
|
|
1969
|
+
/**
|
|
1970
|
+
* @generated from field: optional bool has_attachments = 8;
|
|
1971
|
+
*/
|
|
1972
|
+
hasAttachments?: boolean;
|
|
1973
|
+
/**
|
|
1974
|
+
* @generated from field: optional bool pinned = 9;
|
|
1975
|
+
*/
|
|
1976
|
+
pinned?: boolean;
|
|
1977
|
+
/**
|
|
1978
|
+
* @generated from field: optional string mentions = 10;
|
|
1979
|
+
*/
|
|
1980
|
+
mentions?: string;
|
|
1981
|
+
};
|
|
1982
|
+
/**
|
|
1983
|
+
* Describes the message eliza.v1.MessageSearchOptions.
|
|
1984
|
+
* Use `create(MessageSearchOptionsSchema)` to create a new message.
|
|
1985
|
+
*/
|
|
1986
|
+
export declare const MessageSearchOptionsSchema: GenMessage<MessageSearchOptions>;
|
|
1987
|
+
/**
|
|
1988
|
+
* @generated from message eliza.v1.ChannelPermissions
|
|
1989
|
+
*/
|
|
1990
|
+
export type ChannelPermissions = Message<"eliza.v1.ChannelPermissions"> & {
|
|
1991
|
+
/**
|
|
1992
|
+
* @generated from field: bool can_send = 1;
|
|
1993
|
+
*/
|
|
1994
|
+
canSend: boolean;
|
|
1995
|
+
/**
|
|
1996
|
+
* @generated from field: bool can_read = 2;
|
|
1997
|
+
*/
|
|
1998
|
+
canRead: boolean;
|
|
1999
|
+
/**
|
|
2000
|
+
* @generated from field: bool can_delete = 3;
|
|
2001
|
+
*/
|
|
2002
|
+
canDelete: boolean;
|
|
2003
|
+
/**
|
|
2004
|
+
* @generated from field: bool can_pin = 4;
|
|
2005
|
+
*/
|
|
2006
|
+
canPin: boolean;
|
|
2007
|
+
/**
|
|
2008
|
+
* @generated from field: bool can_manage = 5;
|
|
2009
|
+
*/
|
|
2010
|
+
canManage: boolean;
|
|
2011
|
+
};
|
|
2012
|
+
/**
|
|
2013
|
+
* Describes the message eliza.v1.ChannelPermissions.
|
|
2014
|
+
* Use `create(ChannelPermissionsSchema)` to create a new message.
|
|
2015
|
+
*/
|
|
2016
|
+
export declare const ChannelPermissionsSchema: GenMessage<ChannelPermissions>;
|
|
2017
|
+
/**
|
|
2018
|
+
* @generated from message eliza.v1.MessageChannel
|
|
2019
|
+
*/
|
|
2020
|
+
export type MessageChannel = Message<"eliza.v1.MessageChannel"> & {
|
|
2021
|
+
/**
|
|
2022
|
+
* @generated from field: string id = 1;
|
|
2023
|
+
*/
|
|
2024
|
+
id: string;
|
|
2025
|
+
/**
|
|
2026
|
+
* @generated from field: string name = 2;
|
|
2027
|
+
*/
|
|
2028
|
+
name: string;
|
|
2029
|
+
/**
|
|
2030
|
+
* @generated from field: string type = 3;
|
|
2031
|
+
*/
|
|
2032
|
+
type: string;
|
|
2033
|
+
/**
|
|
2034
|
+
* @generated from field: optional string description = 4;
|
|
2035
|
+
*/
|
|
2036
|
+
description?: string;
|
|
2037
|
+
/**
|
|
2038
|
+
* @generated from field: repeated eliza.v1.MessageParticipant participants = 5;
|
|
2039
|
+
*/
|
|
2040
|
+
participants: MessageParticipant[];
|
|
2041
|
+
/**
|
|
2042
|
+
* @generated from field: optional eliza.v1.ChannelPermissions permissions = 6;
|
|
2043
|
+
*/
|
|
2044
|
+
permissions?: ChannelPermissions;
|
|
2045
|
+
/**
|
|
2046
|
+
* @generated from field: optional google.protobuf.Timestamp last_message_at = 7;
|
|
2047
|
+
*/
|
|
2048
|
+
lastMessageAt?: Timestamp;
|
|
2049
|
+
/**
|
|
2050
|
+
* @generated from field: optional int32 message_count = 8;
|
|
2051
|
+
*/
|
|
2052
|
+
messageCount?: number;
|
|
2053
|
+
/**
|
|
2054
|
+
* @generated from field: optional int32 unread_count = 9;
|
|
2055
|
+
*/
|
|
2056
|
+
unreadCount?: number;
|
|
2057
|
+
};
|
|
2058
|
+
/**
|
|
2059
|
+
* Describes the message eliza.v1.MessageChannel.
|
|
2060
|
+
* Use `create(MessageChannelSchema)` to create a new message.
|
|
2061
|
+
*/
|
|
2062
|
+
export declare const MessageChannelSchema: GenMessage<MessageChannel>;
|
|
2063
|
+
/**
|
|
2064
|
+
* @generated from message eliza.v1.PostMedia
|
|
2065
|
+
*/
|
|
2066
|
+
export type PostMedia = Message<"eliza.v1.PostMedia"> & {
|
|
2067
|
+
/**
|
|
2068
|
+
* @generated from field: string id = 1;
|
|
2069
|
+
*/
|
|
2070
|
+
id: string;
|
|
2071
|
+
/**
|
|
2072
|
+
* @generated from field: string url = 2;
|
|
2073
|
+
*/
|
|
2074
|
+
url: string;
|
|
2075
|
+
/**
|
|
2076
|
+
* @generated from field: string type = 3;
|
|
2077
|
+
*/
|
|
2078
|
+
type: string;
|
|
2079
|
+
/**
|
|
2080
|
+
* @generated from field: string mime_type = 4;
|
|
2081
|
+
*/
|
|
2082
|
+
mimeType: string;
|
|
2083
|
+
/**
|
|
2084
|
+
* @generated from field: int64 size = 5;
|
|
2085
|
+
*/
|
|
2086
|
+
size: bigint;
|
|
2087
|
+
/**
|
|
2088
|
+
* @generated from field: optional int32 width = 6;
|
|
2089
|
+
*/
|
|
2090
|
+
width?: number;
|
|
2091
|
+
/**
|
|
2092
|
+
* @generated from field: optional int32 height = 7;
|
|
2093
|
+
*/
|
|
2094
|
+
height?: number;
|
|
2095
|
+
/**
|
|
2096
|
+
* @generated from field: optional double duration = 8;
|
|
2097
|
+
*/
|
|
2098
|
+
duration?: number;
|
|
2099
|
+
/**
|
|
2100
|
+
* @generated from field: optional string thumbnail = 9;
|
|
2101
|
+
*/
|
|
2102
|
+
thumbnail?: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* @generated from field: optional string description = 10;
|
|
2105
|
+
*/
|
|
2106
|
+
description?: string;
|
|
2107
|
+
/**
|
|
2108
|
+
* @generated from field: optional string alt_text = 11;
|
|
2109
|
+
*/
|
|
2110
|
+
altText?: string;
|
|
2111
|
+
};
|
|
2112
|
+
/**
|
|
2113
|
+
* Describes the message eliza.v1.PostMedia.
|
|
2114
|
+
* Use `create(PostMediaSchema)` to create a new message.
|
|
2115
|
+
*/
|
|
2116
|
+
export declare const PostMediaSchema: GenMessage<PostMedia>;
|
|
2117
|
+
/**
|
|
2118
|
+
* @generated from message eliza.v1.PostLocationCoordinates
|
|
2119
|
+
*/
|
|
2120
|
+
export type PostLocationCoordinates = Message<"eliza.v1.PostLocationCoordinates"> & {
|
|
2121
|
+
/**
|
|
2122
|
+
* @generated from field: double latitude = 1;
|
|
2123
|
+
*/
|
|
2124
|
+
latitude: number;
|
|
2125
|
+
/**
|
|
2126
|
+
* @generated from field: double longitude = 2;
|
|
2127
|
+
*/
|
|
2128
|
+
longitude: number;
|
|
2129
|
+
};
|
|
2130
|
+
/**
|
|
2131
|
+
* Describes the message eliza.v1.PostLocationCoordinates.
|
|
2132
|
+
* Use `create(PostLocationCoordinatesSchema)` to create a new message.
|
|
2133
|
+
*/
|
|
2134
|
+
export declare const PostLocationCoordinatesSchema: GenMessage<PostLocationCoordinates>;
|
|
2135
|
+
/**
|
|
2136
|
+
* @generated from message eliza.v1.PostLocation
|
|
2137
|
+
*/
|
|
2138
|
+
export type PostLocation = Message<"eliza.v1.PostLocation"> & {
|
|
2139
|
+
/**
|
|
2140
|
+
* @generated from field: string name = 1;
|
|
2141
|
+
*/
|
|
2142
|
+
name: string;
|
|
2143
|
+
/**
|
|
2144
|
+
* @generated from field: optional string address = 2;
|
|
2145
|
+
*/
|
|
2146
|
+
address?: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* @generated from field: optional eliza.v1.PostLocationCoordinates coordinates = 3;
|
|
2149
|
+
*/
|
|
2150
|
+
coordinates?: PostLocationCoordinates;
|
|
2151
|
+
/**
|
|
2152
|
+
* @generated from field: optional string place_id = 4;
|
|
2153
|
+
*/
|
|
2154
|
+
placeId?: string;
|
|
2155
|
+
};
|
|
2156
|
+
/**
|
|
2157
|
+
* Describes the message eliza.v1.PostLocation.
|
|
2158
|
+
* Use `create(PostLocationSchema)` to create a new message.
|
|
2159
|
+
*/
|
|
2160
|
+
export declare const PostLocationSchema: GenMessage<PostLocation>;
|
|
2161
|
+
/**
|
|
2162
|
+
* @generated from message eliza.v1.PostAuthor
|
|
2163
|
+
*/
|
|
2164
|
+
export type PostAuthor = Message<"eliza.v1.PostAuthor"> & {
|
|
2165
|
+
/**
|
|
2166
|
+
* @generated from field: string id = 1;
|
|
2167
|
+
*/
|
|
2168
|
+
id: string;
|
|
2169
|
+
/**
|
|
2170
|
+
* @generated from field: string username = 2;
|
|
2171
|
+
*/
|
|
2172
|
+
username: string;
|
|
2173
|
+
/**
|
|
2174
|
+
* @generated from field: string display_name = 3;
|
|
2175
|
+
*/
|
|
2176
|
+
displayName: string;
|
|
2177
|
+
/**
|
|
2178
|
+
* @generated from field: optional string avatar = 4;
|
|
2179
|
+
*/
|
|
2180
|
+
avatar?: string;
|
|
2181
|
+
/**
|
|
2182
|
+
* @generated from field: optional bool verified = 5;
|
|
2183
|
+
*/
|
|
2184
|
+
verified?: boolean;
|
|
2185
|
+
/**
|
|
2186
|
+
* @generated from field: optional int32 follower_count = 6;
|
|
2187
|
+
*/
|
|
2188
|
+
followerCount?: number;
|
|
2189
|
+
/**
|
|
2190
|
+
* @generated from field: optional int32 following_count = 7;
|
|
2191
|
+
*/
|
|
2192
|
+
followingCount?: number;
|
|
2193
|
+
/**
|
|
2194
|
+
* @generated from field: optional string bio = 8;
|
|
2195
|
+
*/
|
|
2196
|
+
bio?: string;
|
|
2197
|
+
/**
|
|
2198
|
+
* @generated from field: optional string website = 9;
|
|
2199
|
+
*/
|
|
2200
|
+
website?: string;
|
|
2201
|
+
};
|
|
2202
|
+
/**
|
|
2203
|
+
* Describes the message eliza.v1.PostAuthor.
|
|
2204
|
+
* Use `create(PostAuthorSchema)` to create a new message.
|
|
2205
|
+
*/
|
|
2206
|
+
export declare const PostAuthorSchema: GenMessage<PostAuthor>;
|
|
2207
|
+
/**
|
|
2208
|
+
* @generated from message eliza.v1.PostEngagement
|
|
2209
|
+
*/
|
|
2210
|
+
export type PostEngagement = Message<"eliza.v1.PostEngagement"> & {
|
|
2211
|
+
/**
|
|
2212
|
+
* @generated from field: int32 likes = 1;
|
|
2213
|
+
*/
|
|
2214
|
+
likes: number;
|
|
2215
|
+
/**
|
|
2216
|
+
* @generated from field: int32 shares = 2;
|
|
2217
|
+
*/
|
|
2218
|
+
shares: number;
|
|
2219
|
+
/**
|
|
2220
|
+
* @generated from field: int32 comments = 3;
|
|
2221
|
+
*/
|
|
2222
|
+
comments: number;
|
|
2223
|
+
/**
|
|
2224
|
+
* @generated from field: optional int32 views = 4;
|
|
2225
|
+
*/
|
|
2226
|
+
views?: number;
|
|
2227
|
+
/**
|
|
2228
|
+
* @generated from field: bool has_liked = 5;
|
|
2229
|
+
*/
|
|
2230
|
+
hasLiked: boolean;
|
|
2231
|
+
/**
|
|
2232
|
+
* @generated from field: bool has_shared = 6;
|
|
2233
|
+
*/
|
|
2234
|
+
hasShared: boolean;
|
|
2235
|
+
/**
|
|
2236
|
+
* @generated from field: bool has_commented = 7;
|
|
2237
|
+
*/
|
|
2238
|
+
hasCommented: boolean;
|
|
2239
|
+
/**
|
|
2240
|
+
* @generated from field: bool has_saved = 8;
|
|
2241
|
+
*/
|
|
2242
|
+
hasSaved: boolean;
|
|
2243
|
+
};
|
|
2244
|
+
/**
|
|
2245
|
+
* Describes the message eliza.v1.PostEngagement.
|
|
2246
|
+
* Use `create(PostEngagementSchema)` to create a new message.
|
|
2247
|
+
*/
|
|
2248
|
+
export declare const PostEngagementSchema: GenMessage<PostEngagement>;
|
|
2249
|
+
/**
|
|
2250
|
+
* @generated from message eliza.v1.PostLinkPreview
|
|
2251
|
+
*/
|
|
2252
|
+
export type PostLinkPreview = Message<"eliza.v1.PostLinkPreview"> & {
|
|
2253
|
+
/**
|
|
2254
|
+
* @generated from field: string url = 1;
|
|
2255
|
+
*/
|
|
2256
|
+
url: string;
|
|
2257
|
+
/**
|
|
2258
|
+
* @generated from field: optional string title = 2;
|
|
2259
|
+
*/
|
|
2260
|
+
title?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
* @generated from field: optional string description = 3;
|
|
2263
|
+
*/
|
|
2264
|
+
description?: string;
|
|
2265
|
+
/**
|
|
2266
|
+
* @generated from field: optional string image = 4;
|
|
2267
|
+
*/
|
|
2268
|
+
image?: string;
|
|
2269
|
+
};
|
|
2270
|
+
/**
|
|
2271
|
+
* Describes the message eliza.v1.PostLinkPreview.
|
|
2272
|
+
* Use `create(PostLinkPreviewSchema)` to create a new message.
|
|
2273
|
+
*/
|
|
2274
|
+
export declare const PostLinkPreviewSchema: GenMessage<PostLinkPreview>;
|
|
2275
|
+
/**
|
|
2276
|
+
* @generated from message eliza.v1.PostPollOption
|
|
2277
|
+
*/
|
|
2278
|
+
export type PostPollOption = Message<"eliza.v1.PostPollOption"> & {
|
|
2279
|
+
/**
|
|
2280
|
+
* @generated from field: string text = 1;
|
|
2281
|
+
*/
|
|
2282
|
+
text: string;
|
|
2283
|
+
/**
|
|
2284
|
+
* @generated from field: int32 votes = 2;
|
|
2285
|
+
*/
|
|
2286
|
+
votes: number;
|
|
2287
|
+
};
|
|
2288
|
+
/**
|
|
2289
|
+
* Describes the message eliza.v1.PostPollOption.
|
|
2290
|
+
* Use `create(PostPollOptionSchema)` to create a new message.
|
|
2291
|
+
*/
|
|
2292
|
+
export declare const PostPollOptionSchema: GenMessage<PostPollOption>;
|
|
2293
|
+
/**
|
|
2294
|
+
* @generated from message eliza.v1.PostPoll
|
|
2295
|
+
*/
|
|
2296
|
+
export type PostPoll = Message<"eliza.v1.PostPoll"> & {
|
|
2297
|
+
/**
|
|
2298
|
+
* @generated from field: string question = 1;
|
|
2299
|
+
*/
|
|
2300
|
+
question: string;
|
|
2301
|
+
/**
|
|
2302
|
+
* @generated from field: repeated eliza.v1.PostPollOption options = 2;
|
|
2303
|
+
*/
|
|
2304
|
+
options: PostPollOption[];
|
|
2305
|
+
/**
|
|
2306
|
+
* @generated from field: optional google.protobuf.Timestamp expires_at = 3;
|
|
2307
|
+
*/
|
|
2308
|
+
expiresAt?: Timestamp;
|
|
2309
|
+
/**
|
|
2310
|
+
* @generated from field: optional bool multiple_choice = 4;
|
|
2311
|
+
*/
|
|
2312
|
+
multipleChoice?: boolean;
|
|
2313
|
+
};
|
|
2314
|
+
/**
|
|
2315
|
+
* Describes the message eliza.v1.PostPoll.
|
|
2316
|
+
* Use `create(PostPollSchema)` to create a new message.
|
|
2317
|
+
*/
|
|
2318
|
+
export declare const PostPollSchema: GenMessage<PostPoll>;
|
|
2319
|
+
/**
|
|
2320
|
+
* @generated from message eliza.v1.PostContent
|
|
2321
|
+
*/
|
|
2322
|
+
export type PostContent = Message<"eliza.v1.PostContent"> & {
|
|
2323
|
+
/**
|
|
2324
|
+
* @generated from field: optional string text = 1;
|
|
2325
|
+
*/
|
|
2326
|
+
text?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* @generated from field: optional string html = 2;
|
|
2329
|
+
*/
|
|
2330
|
+
html?: string;
|
|
2331
|
+
/**
|
|
2332
|
+
* @generated from field: repeated eliza.v1.PostMedia media = 3;
|
|
2333
|
+
*/
|
|
2334
|
+
media: PostMedia[];
|
|
2335
|
+
/**
|
|
2336
|
+
* @generated from field: optional eliza.v1.PostLocation location = 4;
|
|
2337
|
+
*/
|
|
2338
|
+
location?: PostLocation;
|
|
2339
|
+
/**
|
|
2340
|
+
* @generated from field: repeated string tags = 5;
|
|
2341
|
+
*/
|
|
2342
|
+
tags: string[];
|
|
2343
|
+
/**
|
|
2344
|
+
* @generated from field: repeated string mentions = 6;
|
|
2345
|
+
*/
|
|
2346
|
+
mentions: string[];
|
|
2347
|
+
/**
|
|
2348
|
+
* @generated from field: repeated eliza.v1.PostLinkPreview links = 7;
|
|
2349
|
+
*/
|
|
2350
|
+
links: PostLinkPreview[];
|
|
2351
|
+
/**
|
|
2352
|
+
* @generated from field: optional eliza.v1.PostPoll poll = 8;
|
|
2353
|
+
*/
|
|
2354
|
+
poll?: PostPoll;
|
|
2355
|
+
};
|
|
2356
|
+
/**
|
|
2357
|
+
* Describes the message eliza.v1.PostContent.
|
|
2358
|
+
* Use `create(PostContentSchema)` to create a new message.
|
|
2359
|
+
*/
|
|
2360
|
+
export declare const PostContentSchema: GenMessage<PostContent>;
|
|
2361
|
+
/**
|
|
2362
|
+
* @generated from message eliza.v1.PostThreadInfo
|
|
2363
|
+
*/
|
|
2364
|
+
export type PostThreadInfo = Message<"eliza.v1.PostThreadInfo"> & {
|
|
2365
|
+
/**
|
|
2366
|
+
* @generated from field: string id = 1;
|
|
2367
|
+
*/
|
|
2368
|
+
id: string;
|
|
2369
|
+
/**
|
|
2370
|
+
* @generated from field: int32 position = 2;
|
|
2371
|
+
*/
|
|
2372
|
+
position: number;
|
|
2373
|
+
/**
|
|
2374
|
+
* @generated from field: int32 total = 3;
|
|
2375
|
+
*/
|
|
2376
|
+
total: number;
|
|
2377
|
+
};
|
|
2378
|
+
/**
|
|
2379
|
+
* Describes the message eliza.v1.PostThreadInfo.
|
|
2380
|
+
* Use `create(PostThreadInfoSchema)` to create a new message.
|
|
2381
|
+
*/
|
|
2382
|
+
export declare const PostThreadInfoSchema: GenMessage<PostThreadInfo>;
|
|
2383
|
+
/**
|
|
2384
|
+
* @generated from message eliza.v1.CrossPostInfo
|
|
2385
|
+
*/
|
|
2386
|
+
export type CrossPostInfo = Message<"eliza.v1.CrossPostInfo"> & {
|
|
2387
|
+
/**
|
|
2388
|
+
* @generated from field: string platform = 1;
|
|
2389
|
+
*/
|
|
2390
|
+
platform: string;
|
|
2391
|
+
/**
|
|
2392
|
+
* @generated from field: string platform_id = 2;
|
|
2393
|
+
*/
|
|
2394
|
+
platformId: string;
|
|
2395
|
+
/**
|
|
2396
|
+
* @generated from field: string url = 3;
|
|
2397
|
+
*/
|
|
2398
|
+
url: string;
|
|
2399
|
+
};
|
|
2400
|
+
/**
|
|
2401
|
+
* Describes the message eliza.v1.CrossPostInfo.
|
|
2402
|
+
* Use `create(CrossPostInfoSchema)` to create a new message.
|
|
2403
|
+
*/
|
|
2404
|
+
export declare const CrossPostInfoSchema: GenMessage<CrossPostInfo>;
|
|
2405
|
+
/**
|
|
2406
|
+
* @generated from message eliza.v1.PostInfo
|
|
2407
|
+
*/
|
|
2408
|
+
export type PostInfo = Message<"eliza.v1.PostInfo"> & {
|
|
2409
|
+
/**
|
|
2410
|
+
* @generated from field: string id = 1;
|
|
2411
|
+
*/
|
|
2412
|
+
id: string;
|
|
2413
|
+
/**
|
|
2414
|
+
* @generated from field: eliza.v1.PostAuthor author = 2;
|
|
2415
|
+
*/
|
|
2416
|
+
author?: PostAuthor;
|
|
2417
|
+
/**
|
|
2418
|
+
* @generated from field: eliza.v1.PostContent content = 3;
|
|
2419
|
+
*/
|
|
2420
|
+
content?: PostContent;
|
|
2421
|
+
/**
|
|
2422
|
+
* @generated from field: string platform = 4;
|
|
2423
|
+
*/
|
|
2424
|
+
platform: string;
|
|
2425
|
+
/**
|
|
2426
|
+
* @generated from field: string platform_id = 5;
|
|
2427
|
+
*/
|
|
2428
|
+
platformId: string;
|
|
2429
|
+
/**
|
|
2430
|
+
* @generated from field: string url = 6;
|
|
2431
|
+
*/
|
|
2432
|
+
url: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* @generated from field: google.protobuf.Timestamp created_at = 7;
|
|
2435
|
+
*/
|
|
2436
|
+
createdAt?: Timestamp;
|
|
2437
|
+
/**
|
|
2438
|
+
* @generated from field: optional google.protobuf.Timestamp edited_at = 8;
|
|
2439
|
+
*/
|
|
2440
|
+
editedAt?: Timestamp;
|
|
2441
|
+
/**
|
|
2442
|
+
* @generated from field: optional google.protobuf.Timestamp scheduled_at = 9;
|
|
2443
|
+
*/
|
|
2444
|
+
scheduledAt?: Timestamp;
|
|
2445
|
+
/**
|
|
2446
|
+
* @generated from field: eliza.v1.PostEngagement engagement = 10;
|
|
2447
|
+
*/
|
|
2448
|
+
engagement?: PostEngagement;
|
|
2449
|
+
/**
|
|
2450
|
+
* @generated from field: string visibility = 11;
|
|
2451
|
+
*/
|
|
2452
|
+
visibility: string;
|
|
2453
|
+
/**
|
|
2454
|
+
* @generated from field: optional string reply_to = 12;
|
|
2455
|
+
*/
|
|
2456
|
+
replyTo?: string;
|
|
2457
|
+
/**
|
|
2458
|
+
* @generated from field: optional eliza.v1.PostThreadInfo thread = 13;
|
|
2459
|
+
*/
|
|
2460
|
+
thread?: PostThreadInfo;
|
|
2461
|
+
/**
|
|
2462
|
+
* @generated from field: repeated eliza.v1.CrossPostInfo cross_posted = 14;
|
|
2463
|
+
*/
|
|
2464
|
+
crossPosted: CrossPostInfo[];
|
|
2465
|
+
};
|
|
2466
|
+
/**
|
|
2467
|
+
* Describes the message eliza.v1.PostInfo.
|
|
2468
|
+
* Use `create(PostInfoSchema)` to create a new message.
|
|
2469
|
+
*/
|
|
2470
|
+
export declare const PostInfoSchema: GenMessage<PostInfo>;
|
|
2471
|
+
/**
|
|
2472
|
+
* @generated from message eliza.v1.PostCreateOptions
|
|
2473
|
+
*/
|
|
2474
|
+
export type PostCreateOptions = Message<"eliza.v1.PostCreateOptions"> & {
|
|
2475
|
+
/**
|
|
2476
|
+
* @generated from field: repeated string platforms = 1;
|
|
2477
|
+
*/
|
|
2478
|
+
platforms: string[];
|
|
2479
|
+
/**
|
|
2480
|
+
* @generated from field: optional google.protobuf.Timestamp scheduled_at = 2;
|
|
2481
|
+
*/
|
|
2482
|
+
scheduledAt?: Timestamp;
|
|
2483
|
+
/**
|
|
2484
|
+
* @generated from field: optional string visibility = 3;
|
|
2485
|
+
*/
|
|
2486
|
+
visibility?: string;
|
|
2487
|
+
/**
|
|
2488
|
+
* @generated from field: optional string reply_to = 4;
|
|
2489
|
+
*/
|
|
2490
|
+
replyTo?: string;
|
|
2491
|
+
/**
|
|
2492
|
+
* @generated from field: optional bool thread = 5;
|
|
2493
|
+
*/
|
|
2494
|
+
thread?: boolean;
|
|
2495
|
+
/**
|
|
2496
|
+
* @generated from field: optional eliza.v1.PostLocation location = 6;
|
|
2497
|
+
*/
|
|
2498
|
+
location?: PostLocation;
|
|
2499
|
+
/**
|
|
2500
|
+
* @generated from field: repeated string tags = 7;
|
|
2501
|
+
*/
|
|
2502
|
+
tags: string[];
|
|
2503
|
+
/**
|
|
2504
|
+
* @generated from field: repeated string mentions = 8;
|
|
2505
|
+
*/
|
|
2506
|
+
mentions: string[];
|
|
2507
|
+
/**
|
|
2508
|
+
* @generated from field: optional bool enable_comments = 9;
|
|
2509
|
+
*/
|
|
2510
|
+
enableComments?: boolean;
|
|
2511
|
+
/**
|
|
2512
|
+
* @generated from field: optional bool enable_sharing = 10;
|
|
2513
|
+
*/
|
|
2514
|
+
enableSharing?: boolean;
|
|
2515
|
+
/**
|
|
2516
|
+
* @generated from field: optional string content_warning = 11;
|
|
2517
|
+
*/
|
|
2518
|
+
contentWarning?: string;
|
|
2519
|
+
/**
|
|
2520
|
+
* @generated from field: optional bool sensitive = 12;
|
|
2521
|
+
*/
|
|
2522
|
+
sensitive?: boolean;
|
|
2523
|
+
};
|
|
2524
|
+
/**
|
|
2525
|
+
* Describes the message eliza.v1.PostCreateOptions.
|
|
2526
|
+
* Use `create(PostCreateOptionsSchema)` to create a new message.
|
|
2527
|
+
*/
|
|
2528
|
+
export declare const PostCreateOptionsSchema: GenMessage<PostCreateOptions>;
|
|
2529
|
+
/**
|
|
2530
|
+
* @generated from message eliza.v1.PostSearchOptions
|
|
2531
|
+
*/
|
|
2532
|
+
export type PostSearchOptions = Message<"eliza.v1.PostSearchOptions"> & {
|
|
2533
|
+
/**
|
|
2534
|
+
* @generated from field: optional string query = 1;
|
|
2535
|
+
*/
|
|
2536
|
+
query?: string;
|
|
2537
|
+
/**
|
|
2538
|
+
* @generated from field: optional string author = 2;
|
|
2539
|
+
*/
|
|
2540
|
+
author?: string;
|
|
2541
|
+
/**
|
|
2542
|
+
* @generated from field: optional string platform = 3;
|
|
2543
|
+
*/
|
|
2544
|
+
platform?: string;
|
|
2545
|
+
/**
|
|
2546
|
+
* @generated from field: repeated string tags = 4;
|
|
2547
|
+
*/
|
|
2548
|
+
tags: string[];
|
|
2549
|
+
/**
|
|
2550
|
+
* @generated from field: repeated string mentions = 5;
|
|
2551
|
+
*/
|
|
2552
|
+
mentions: string[];
|
|
2553
|
+
/**
|
|
2554
|
+
* @generated from field: optional google.protobuf.Timestamp since = 6;
|
|
2555
|
+
*/
|
|
2556
|
+
since?: Timestamp;
|
|
2557
|
+
/**
|
|
2558
|
+
* @generated from field: optional google.protobuf.Timestamp before = 7;
|
|
2559
|
+
*/
|
|
2560
|
+
before?: Timestamp;
|
|
2561
|
+
/**
|
|
2562
|
+
* @generated from field: optional int32 limit = 8;
|
|
2563
|
+
*/
|
|
2564
|
+
limit?: number;
|
|
2565
|
+
/**
|
|
2566
|
+
* @generated from field: optional int32 offset = 9;
|
|
2567
|
+
*/
|
|
2568
|
+
offset?: number;
|
|
2569
|
+
/**
|
|
2570
|
+
* @generated from field: optional bool has_media = 10;
|
|
2571
|
+
*/
|
|
2572
|
+
hasMedia?: boolean;
|
|
2573
|
+
/**
|
|
2574
|
+
* @generated from field: optional bool has_location = 11;
|
|
2575
|
+
*/
|
|
2576
|
+
hasLocation?: boolean;
|
|
2577
|
+
/**
|
|
2578
|
+
* @generated from field: optional string visibility = 12;
|
|
2579
|
+
*/
|
|
2580
|
+
visibility?: string;
|
|
2581
|
+
/**
|
|
2582
|
+
* @generated from field: optional string sort_by = 13;
|
|
2583
|
+
*/
|
|
2584
|
+
sortBy?: string;
|
|
2585
|
+
};
|
|
2586
|
+
/**
|
|
2587
|
+
* Describes the message eliza.v1.PostSearchOptions.
|
|
2588
|
+
* Use `create(PostSearchOptionsSchema)` to create a new message.
|
|
2589
|
+
*/
|
|
2590
|
+
export declare const PostSearchOptionsSchema: GenMessage<PostSearchOptions>;
|
|
2591
|
+
/**
|
|
2592
|
+
* @generated from message eliza.v1.Demographics
|
|
2593
|
+
*/
|
|
2594
|
+
export type Demographics = Message<"eliza.v1.Demographics"> & {
|
|
2595
|
+
/**
|
|
2596
|
+
* @generated from field: map<string, double> age = 1;
|
|
2597
|
+
*/
|
|
2598
|
+
age: {
|
|
2599
|
+
[key: string]: number;
|
|
2600
|
+
};
|
|
2601
|
+
/**
|
|
2602
|
+
* @generated from field: map<string, double> gender = 2;
|
|
2603
|
+
*/
|
|
2604
|
+
gender: {
|
|
2605
|
+
[key: string]: number;
|
|
2606
|
+
};
|
|
2607
|
+
/**
|
|
2608
|
+
* @generated from field: map<string, double> location = 3;
|
|
2609
|
+
*/
|
|
2610
|
+
location: {
|
|
2611
|
+
[key: string]: number;
|
|
2612
|
+
};
|
|
2613
|
+
};
|
|
2614
|
+
/**
|
|
2615
|
+
* Describes the message eliza.v1.Demographics.
|
|
2616
|
+
* Use `create(DemographicsSchema)` to create a new message.
|
|
2617
|
+
*/
|
|
2618
|
+
export declare const DemographicsSchema: GenMessage<Demographics>;
|
|
2619
|
+
/**
|
|
2620
|
+
* @generated from message eliza.v1.TopPerformingHour
|
|
2621
|
+
*/
|
|
2622
|
+
export type TopPerformingHour = Message<"eliza.v1.TopPerformingHour"> & {
|
|
2623
|
+
/**
|
|
2624
|
+
* @generated from field: int32 hour = 1;
|
|
2625
|
+
*/
|
|
2626
|
+
hour: number;
|
|
2627
|
+
/**
|
|
2628
|
+
* @generated from field: int32 engagement = 2;
|
|
2629
|
+
*/
|
|
2630
|
+
engagement: number;
|
|
2631
|
+
};
|
|
2632
|
+
/**
|
|
2633
|
+
* Describes the message eliza.v1.TopPerformingHour.
|
|
2634
|
+
* Use `create(TopPerformingHourSchema)` to create a new message.
|
|
2635
|
+
*/
|
|
2636
|
+
export declare const TopPerformingHourSchema: GenMessage<TopPerformingHour>;
|
|
2637
|
+
/**
|
|
2638
|
+
* @generated from message eliza.v1.PostAnalytics
|
|
2639
|
+
*/
|
|
2640
|
+
export type PostAnalytics = Message<"eliza.v1.PostAnalytics"> & {
|
|
2641
|
+
/**
|
|
2642
|
+
* @generated from field: string post_id = 1;
|
|
2643
|
+
*/
|
|
2644
|
+
postId: string;
|
|
2645
|
+
/**
|
|
2646
|
+
* @generated from field: string platform = 2;
|
|
2647
|
+
*/
|
|
2648
|
+
platform: string;
|
|
2649
|
+
/**
|
|
2650
|
+
* @generated from field: int32 impressions = 3;
|
|
2651
|
+
*/
|
|
2652
|
+
impressions: number;
|
|
2653
|
+
/**
|
|
2654
|
+
* @generated from field: int32 reach = 4;
|
|
2655
|
+
*/
|
|
2656
|
+
reach: number;
|
|
2657
|
+
/**
|
|
2658
|
+
* @generated from field: eliza.v1.PostEngagement engagement = 5;
|
|
2659
|
+
*/
|
|
2660
|
+
engagement?: PostEngagement;
|
|
2661
|
+
/**
|
|
2662
|
+
* @generated from field: int32 clicks = 6;
|
|
2663
|
+
*/
|
|
2664
|
+
clicks: number;
|
|
2665
|
+
/**
|
|
2666
|
+
* @generated from field: int32 shares = 7;
|
|
2667
|
+
*/
|
|
2668
|
+
shares: number;
|
|
2669
|
+
/**
|
|
2670
|
+
* @generated from field: int32 saves = 8;
|
|
2671
|
+
*/
|
|
2672
|
+
saves: number;
|
|
2673
|
+
/**
|
|
2674
|
+
* @generated from field: optional eliza.v1.Demographics demographics = 9;
|
|
2675
|
+
*/
|
|
2676
|
+
demographics?: Demographics;
|
|
2677
|
+
/**
|
|
2678
|
+
* @generated from field: repeated eliza.v1.TopPerformingHour top_performing_hours = 10;
|
|
2679
|
+
*/
|
|
2680
|
+
topPerformingHours: TopPerformingHour[];
|
|
2681
|
+
};
|
|
2682
|
+
/**
|
|
2683
|
+
* Describes the message eliza.v1.PostAnalytics.
|
|
2684
|
+
* Use `create(PostAnalyticsSchema)` to create a new message.
|
|
2685
|
+
*/
|
|
2686
|
+
export declare const PostAnalyticsSchema: GenMessage<PostAnalytics>;
|
|
2687
|
+
//# sourceMappingURL=service_interfaces_pb.d.ts.map
|