@dotdo/do 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +400 -0
- package/dist/ai/embeddings.d.ts +129 -0
- package/dist/ai/embeddings.d.ts.map +1 -0
- package/dist/ai/embeddings.js +217 -0
- package/dist/ai/embeddings.js.map +1 -0
- package/dist/ai/gateway.d.ts +139 -0
- package/dist/ai/gateway.d.ts.map +1 -0
- package/dist/ai/gateway.js +179 -0
- package/dist/ai/gateway.js.map +1 -0
- package/dist/ai/image.d.ts +140 -0
- package/dist/ai/image.d.ts.map +1 -0
- package/dist/ai/image.js +199 -0
- package/dist/ai/image.js.map +1 -0
- package/dist/ai/index.d.ts +98 -0
- package/dist/ai/index.d.ts.map +1 -0
- package/dist/ai/index.js +223 -0
- package/dist/ai/index.js.map +1 -0
- package/dist/ai/models.d.ts +81 -0
- package/dist/ai/models.d.ts.map +1 -0
- package/dist/ai/models.js +537 -0
- package/dist/ai/models.js.map +1 -0
- package/dist/ai/text.d.ts +176 -0
- package/dist/ai/text.d.ts.map +1 -0
- package/dist/ai/text.js +253 -0
- package/dist/ai/text.js.map +1 -0
- package/dist/ai/voice/agents.d.ts +224 -0
- package/dist/ai/voice/agents.d.ts.map +1 -0
- package/dist/ai/voice/agents.js +375 -0
- package/dist/ai/voice/agents.js.map +1 -0
- package/dist/ai/voice/campaigns.d.ts +307 -0
- package/dist/ai/voice/campaigns.d.ts.map +1 -0
- package/dist/ai/voice/campaigns.js +739 -0
- package/dist/ai/voice/campaigns.js.map +1 -0
- package/dist/ai/voice/index.d.ts +21 -0
- package/dist/ai/voice/index.d.ts.map +1 -0
- package/dist/ai/voice/index.js +42 -0
- package/dist/ai/voice/index.js.map +1 -0
- package/dist/ai/voice/providers.d.ts +283 -0
- package/dist/ai/voice/providers.d.ts.map +1 -0
- package/dist/ai/voice/providers.js +286 -0
- package/dist/ai/voice/providers.js.map +1 -0
- package/dist/ai/voice/sessions.d.ts +294 -0
- package/dist/ai/voice/sessions.d.ts.map +1 -0
- package/dist/ai/voice/sessions.js +531 -0
- package/dist/ai/voice/sessions.js.map +1 -0
- package/dist/ai/voice/tools.d.ts +242 -0
- package/dist/ai/voice/tools.d.ts.map +1 -0
- package/dist/ai/voice/tools.js +370 -0
- package/dist/ai/voice/tools.js.map +1 -0
- package/dist/ai/voice/tts.d.ts +173 -0
- package/dist/ai/voice/tts.d.ts.map +1 -0
- package/dist/ai/voice/tts.js +252 -0
- package/dist/ai/voice/tts.js.map +1 -0
- package/dist/ai/voice/webrtc.d.ts +228 -0
- package/dist/ai/voice/webrtc.d.ts.map +1 -0
- package/dist/ai/voice/webrtc.js +372 -0
- package/dist/ai/voice/webrtc.js.map +1 -0
- package/dist/api/index.d.ts +103 -0
- package/dist/api/index.d.ts.map +1 -0
- package/dist/api/index.js +191 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/mcp/handlers.d.ts +25 -0
- package/dist/api/mcp/handlers.d.ts.map +1 -0
- package/dist/api/mcp/handlers.js +422 -0
- package/dist/api/mcp/handlers.js.map +1 -0
- package/dist/api/mcp/index.d.ts +113 -0
- package/dist/api/mcp/index.d.ts.map +1 -0
- package/dist/api/mcp/index.js +141 -0
- package/dist/api/mcp/index.js.map +1 -0
- package/dist/api/middleware/auth.d.ts +65 -0
- package/dist/api/middleware/auth.d.ts.map +1 -0
- package/dist/api/middleware/auth.js +271 -0
- package/dist/api/middleware/auth.js.map +1 -0
- package/dist/api/middleware/cors.d.ts +62 -0
- package/dist/api/middleware/cors.d.ts.map +1 -0
- package/dist/api/middleware/cors.js +225 -0
- package/dist/api/middleware/cors.js.map +1 -0
- package/dist/api/middleware/index.d.ts +60 -0
- package/dist/api/middleware/index.d.ts.map +1 -0
- package/dist/api/middleware/index.js +175 -0
- package/dist/api/middleware/index.js.map +1 -0
- package/dist/api/middleware/rateLimit.d.ts +84 -0
- package/dist/api/middleware/rateLimit.d.ts.map +1 -0
- package/dist/api/middleware/rateLimit.js +321 -0
- package/dist/api/middleware/rateLimit.js.map +1 -0
- package/dist/api/routes/ai.d.ts +17 -0
- package/dist/api/routes/ai.d.ts.map +1 -0
- package/dist/api/routes/ai.js +430 -0
- package/dist/api/routes/ai.js.map +1 -0
- package/dist/api/routes/do.d.ts +17 -0
- package/dist/api/routes/do.d.ts.map +1 -0
- package/dist/api/routes/do.js +458 -0
- package/dist/api/routes/do.js.map +1 -0
- package/dist/api/routes/functions.d.ts +111 -0
- package/dist/api/routes/functions.d.ts.map +1 -0
- package/dist/api/routes/functions.js +548 -0
- package/dist/api/routes/functions.js.map +1 -0
- package/dist/api/routes/health.d.ts +16 -0
- package/dist/api/routes/health.d.ts.map +1 -0
- package/dist/api/routes/health.js +163 -0
- package/dist/api/routes/health.js.map +1 -0
- package/dist/api/routes/index.d.ts +41 -0
- package/dist/api/routes/index.d.ts.map +1 -0
- package/dist/api/routes/index.js +275 -0
- package/dist/api/routes/index.js.map +1 -0
- package/dist/api/routes/nouns.d.ts +26 -0
- package/dist/api/routes/nouns.d.ts.map +1 -0
- package/dist/api/routes/nouns.js +456 -0
- package/dist/api/routes/nouns.js.map +1 -0
- package/dist/api/routes/orgs.d.ts +17 -0
- package/dist/api/routes/orgs.d.ts.map +1 -0
- package/dist/api/routes/orgs.js +560 -0
- package/dist/api/routes/orgs.js.map +1 -0
- package/dist/api/routes/relationships.d.ts +30 -0
- package/dist/api/routes/relationships.d.ts.map +1 -0
- package/dist/api/routes/relationships.js +360 -0
- package/dist/api/routes/relationships.js.map +1 -0
- package/dist/api/routes/roles.d.ts +17 -0
- package/dist/api/routes/roles.d.ts.map +1 -0
- package/dist/api/routes/roles.js +721 -0
- package/dist/api/routes/roles.js.map +1 -0
- package/dist/api/routes/things.d.ts +27 -0
- package/dist/api/routes/things.d.ts.map +1 -0
- package/dist/api/routes/things.js +568 -0
- package/dist/api/routes/things.js.map +1 -0
- package/dist/api/routes/users.d.ts +17 -0
- package/dist/api/routes/users.d.ts.map +1 -0
- package/dist/api/routes/users.js +401 -0
- package/dist/api/routes/users.js.map +1 -0
- package/dist/api/routes/verbs.d.ts +31 -0
- package/dist/api/routes/verbs.d.ts.map +1 -0
- package/dist/api/routes/verbs.js +505 -0
- package/dist/api/routes/verbs.js.map +1 -0
- package/dist/api/routes/workflows.d.ts +44 -0
- package/dist/api/routes/workflows.d.ts.map +1 -0
- package/dist/api/routes/workflows.js +521 -0
- package/dist/api/routes/workflows.js.map +1 -0
- package/dist/api/types.d.ts +370 -0
- package/dist/api/types.d.ts.map +1 -0
- package/dist/api/types.js +11 -0
- package/dist/api/types.js.map +1 -0
- package/dist/db/cdc/events.d.ts +201 -0
- package/dist/db/cdc/events.d.ts.map +1 -0
- package/dist/db/cdc/events.js +271 -0
- package/dist/db/cdc/events.js.map +1 -0
- package/dist/db/cdc/index.d.ts +13 -0
- package/dist/db/cdc/index.d.ts.map +1 -0
- package/dist/db/cdc/index.js +16 -0
- package/dist/db/cdc/index.js.map +1 -0
- package/dist/db/cdc/replay.d.ts +388 -0
- package/dist/db/cdc/replay.d.ts.map +1 -0
- package/dist/db/cdc/replay.js +469 -0
- package/dist/db/cdc/replay.js.map +1 -0
- package/dist/db/cdc/storage.d.ts +567 -0
- package/dist/db/cdc/storage.d.ts.map +1 -0
- package/dist/db/cdc/storage.js +856 -0
- package/dist/db/cdc/storage.js.map +1 -0
- package/dist/db/cdc/streaming.d.ts +459 -0
- package/dist/db/cdc/streaming.d.ts.map +1 -0
- package/dist/db/cdc/streaming.js +636 -0
- package/dist/db/cdc/streaming.js.map +1 -0
- package/dist/db/collections/actions.d.ts +440 -0
- package/dist/db/collections/actions.d.ts.map +1 -0
- package/dist/db/collections/actions.js +631 -0
- package/dist/db/collections/actions.js.map +1 -0
- package/dist/db/collections/base.d.ts +342 -0
- package/dist/db/collections/base.d.ts.map +1 -0
- package/dist/db/collections/base.js +510 -0
- package/dist/db/collections/base.js.map +1 -0
- package/dist/db/collections/index.d.ts +50 -0
- package/dist/db/collections/index.d.ts.map +1 -0
- package/dist/db/collections/index.js +48 -0
- package/dist/db/collections/index.js.map +1 -0
- package/dist/db/collections/nouns.d.ts +260 -0
- package/dist/db/collections/nouns.d.ts.map +1 -0
- package/dist/db/collections/nouns.js +273 -0
- package/dist/db/collections/nouns.js.map +1 -0
- package/dist/db/collections/relationships.d.ts +484 -0
- package/dist/db/collections/relationships.d.ts.map +1 -0
- package/dist/db/collections/relationships.js +815 -0
- package/dist/db/collections/relationships.js.map +1 -0
- package/dist/db/collections/things.d.ts +439 -0
- package/dist/db/collections/things.d.ts.map +1 -0
- package/dist/db/collections/things.js +603 -0
- package/dist/db/collections/things.js.map +1 -0
- package/dist/db/collections/verbs.d.ts +308 -0
- package/dist/db/collections/verbs.d.ts.map +1 -0
- package/dist/db/collections/verbs.js +480 -0
- package/dist/db/collections/verbs.js.map +1 -0
- package/dist/db/index.d.ts +14 -0
- package/dist/db/index.d.ts.map +1 -0
- package/dist/db/index.js +23 -0
- package/dist/db/index.js.map +1 -0
- package/dist/db/storage/cold.d.ts +313 -0
- package/dist/db/storage/cold.d.ts.map +1 -0
- package/dist/db/storage/cold.js +319 -0
- package/dist/db/storage/cold.js.map +1 -0
- package/dist/db/storage/hot.d.ts +340 -0
- package/dist/db/storage/hot.d.ts.map +1 -0
- package/dist/db/storage/hot.js +333 -0
- package/dist/db/storage/hot.js.map +1 -0
- package/dist/db/storage/index.d.ts +242 -0
- package/dist/db/storage/index.d.ts.map +1 -0
- package/dist/db/storage/index.js +109 -0
- package/dist/db/storage/index.js.map +1 -0
- package/dist/db/storage/snapshots.d.ts +342 -0
- package/dist/db/storage/snapshots.d.ts.map +1 -0
- package/dist/db/storage/snapshots.js +298 -0
- package/dist/db/storage/snapshots.js.map +1 -0
- package/dist/db/storage/vortex.d.ts +324 -0
- package/dist/db/storage/vortex.d.ts.map +1 -0
- package/dist/db/storage/vortex.js +365 -0
- package/dist/db/storage/vortex.js.map +1 -0
- package/dist/db/storage/warm.d.ts +306 -0
- package/dist/db/storage/warm.d.ts.map +1 -0
- package/dist/db/storage/warm.js +339 -0
- package/dist/db/storage/warm.js.map +1 -0
- package/dist/do/DigitalObject.d.ts +595 -0
- package/dist/do/DigitalObject.d.ts.map +1 -0
- package/dist/do/DigitalObject.js +971 -0
- package/dist/do/DigitalObject.js.map +1 -0
- package/dist/do/business/financial/accounting.d.ts +436 -0
- package/dist/do/business/financial/accounting.d.ts.map +1 -0
- package/dist/do/business/financial/accounting.js +476 -0
- package/dist/do/business/financial/accounting.js.map +1 -0
- package/dist/do/business/financial/index.d.ts +15 -0
- package/dist/do/business/financial/index.d.ts.map +1 -0
- package/dist/do/business/financial/index.js +20 -0
- package/dist/do/business/financial/index.js.map +1 -0
- package/dist/do/business/financial/metrics.d.ts +370 -0
- package/dist/do/business/financial/metrics.d.ts.map +1 -0
- package/dist/do/business/financial/metrics.js +376 -0
- package/dist/do/business/financial/metrics.js.map +1 -0
- package/dist/do/business/financial/payments.d.ts +397 -0
- package/dist/do/business/financial/payments.d.ts.map +1 -0
- package/dist/do/business/financial/payments.js +395 -0
- package/dist/do/business/financial/payments.js.map +1 -0
- package/dist/do/business/financial/reports.d.ts +284 -0
- package/dist/do/business/financial/reports.d.ts.map +1 -0
- package/dist/do/business/financial/reports.js +347 -0
- package/dist/do/business/financial/reports.js.map +1 -0
- package/dist/do/business/financial/stripe.d.ts +254 -0
- package/dist/do/business/financial/stripe.d.ts.map +1 -0
- package/dist/do/business/financial/stripe.js +261 -0
- package/dist/do/business/financial/stripe.js.map +1 -0
- package/dist/do/business/financial/subscriptions.d.ts +402 -0
- package/dist/do/business/financial/subscriptions.d.ts.map +1 -0
- package/dist/do/business/financial/subscriptions.js +349 -0
- package/dist/do/business/financial/subscriptions.js.map +1 -0
- package/dist/do/business/index.d.ts +9 -0
- package/dist/do/business/index.d.ts.map +1 -0
- package/dist/do/business/index.js +10 -0
- package/dist/do/business/index.js.map +1 -0
- package/dist/do/colo/followers.d.ts +194 -0
- package/dist/do/colo/followers.d.ts.map +1 -0
- package/dist/do/colo/followers.js +224 -0
- package/dist/do/colo/followers.js.map +1 -0
- package/dist/do/colo/fork.d.ts +103 -0
- package/dist/do/colo/fork.d.ts.map +1 -0
- package/dist/do/colo/fork.js +143 -0
- package/dist/do/colo/fork.js.map +1 -0
- package/dist/do/colo/index.d.ts +181 -0
- package/dist/do/colo/index.d.ts.map +1 -0
- package/dist/do/colo/index.js +145 -0
- package/dist/do/colo/index.js.map +1 -0
- package/dist/do/colo/info.d.ts +106 -0
- package/dist/do/colo/info.d.ts.map +1 -0
- package/dist/do/colo/info.js +196 -0
- package/dist/do/colo/info.js.map +1 -0
- package/dist/do/colo/migrate.d.ts +161 -0
- package/dist/do/colo/migrate.d.ts.map +1 -0
- package/dist/do/colo/migrate.js +190 -0
- package/dist/do/colo/migrate.js.map +1 -0
- package/dist/do/colo/routing.d.ts +182 -0
- package/dist/do/colo/routing.d.ts.map +1 -0
- package/dist/do/colo/routing.js +254 -0
- package/dist/do/colo/routing.js.map +1 -0
- package/dist/do/domains/dns.d.ts +269 -0
- package/dist/do/domains/dns.d.ts.map +1 -0
- package/dist/do/domains/dns.js +215 -0
- package/dist/do/domains/dns.js.map +1 -0
- package/dist/do/domains/index.d.ts +40 -0
- package/dist/do/domains/index.d.ts.map +1 -0
- package/dist/do/domains/index.js +61 -0
- package/dist/do/domains/index.js.map +1 -0
- package/dist/do/domains/routing.d.ts +263 -0
- package/dist/do/domains/routing.d.ts.map +1 -0
- package/dist/do/domains/routing.js +362 -0
- package/dist/do/domains/routing.js.map +1 -0
- package/dist/do/domains/ssl.d.ts +217 -0
- package/dist/do/domains/ssl.d.ts.map +1 -0
- package/dist/do/domains/ssl.js +231 -0
- package/dist/do/domains/ssl.js.map +1 -0
- package/dist/do/domains/subdomains.d.ts +207 -0
- package/dist/do/domains/subdomains.d.ts.map +1 -0
- package/dist/do/domains/subdomains.js +223 -0
- package/dist/do/domains/subdomains.js.map +1 -0
- package/dist/do/domains/tlds.d.ts +175 -0
- package/dist/do/domains/tlds.d.ts.map +1 -0
- package/dist/do/domains/tlds.js +188 -0
- package/dist/do/domains/tlds.js.map +1 -0
- package/dist/do/domains/validation.d.ts +164 -0
- package/dist/do/domains/validation.d.ts.map +1 -0
- package/dist/do/domains/validation.js +290 -0
- package/dist/do/domains/validation.js.map +1 -0
- package/dist/do/hibernation.d.ts +385 -0
- package/dist/do/hibernation.d.ts.map +1 -0
- package/dist/do/hibernation.js +518 -0
- package/dist/do/hibernation.js.map +1 -0
- package/dist/do/index.d.ts +19 -0
- package/dist/do/index.d.ts.map +1 -0
- package/dist/do/index.js +23 -0
- package/dist/do/index.js.map +1 -0
- package/dist/do/state.d.ts +336 -0
- package/dist/do/state.d.ts.map +1 -0
- package/dist/do/state.js +290 -0
- package/dist/do/state.js.map +1 -0
- package/dist/index.d.ts +44 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +89 -0
- package/dist/index.js.map +1 -0
- package/dist/rpc/client.d.ts +426 -0
- package/dist/rpc/client.d.ts.map +1 -0
- package/dist/rpc/client.js +826 -0
- package/dist/rpc/client.js.map +1 -0
- package/dist/rpc/index.d.ts +19 -0
- package/dist/rpc/index.d.ts.map +1 -0
- package/dist/rpc/index.js +23 -0
- package/dist/rpc/index.js.map +1 -0
- package/dist/rpc/methods.d.ts +364 -0
- package/dist/rpc/methods.d.ts.map +1 -0
- package/dist/rpc/methods.js +557 -0
- package/dist/rpc/methods.js.map +1 -0
- package/dist/rpc/protocol.d.ts +310 -0
- package/dist/rpc/protocol.d.ts.map +1 -0
- package/dist/rpc/protocol.js +672 -0
- package/dist/rpc/protocol.js.map +1 -0
- package/dist/rpc/routes.d.ts +332 -0
- package/dist/rpc/routes.d.ts.map +1 -0
- package/dist/rpc/routes.js +633 -0
- package/dist/rpc/routes.js.map +1 -0
- package/dist/rpc/server.d.ts +380 -0
- package/dist/rpc/server.d.ts.map +1 -0
- package/dist/rpc/server.js +850 -0
- package/dist/rpc/server.js.map +1 -0
- package/dist/sdk/auth.d.ts +201 -0
- package/dist/sdk/auth.d.ts.map +1 -0
- package/dist/sdk/auth.js +343 -0
- package/dist/sdk/auth.js.map +1 -0
- package/dist/sdk/client.d.ts +123 -0
- package/dist/sdk/client.d.ts.map +1 -0
- package/dist/sdk/client.js +403 -0
- package/dist/sdk/client.js.map +1 -0
- package/dist/sdk/index.d.ts +123 -0
- package/dist/sdk/index.d.ts.map +1 -0
- package/dist/sdk/index.js +230 -0
- package/dist/sdk/index.js.map +1 -0
- package/dist/sdk/rpc.d.ts +275 -0
- package/dist/sdk/rpc.d.ts.map +1 -0
- package/dist/sdk/rpc.js +249 -0
- package/dist/sdk/rpc.js.map +1 -0
- package/dist/sdk/transport.d.ts +283 -0
- package/dist/sdk/transport.d.ts.map +1 -0
- package/dist/sdk/transport.js +661 -0
- package/dist/sdk/transport.js.map +1 -0
- package/dist/sdk/types.d.ts +265 -0
- package/dist/sdk/types.d.ts.map +1 -0
- package/dist/sdk/types.js +27 -0
- package/dist/sdk/types.js.map +1 -0
- package/dist/types/ai.d.ts +533 -0
- package/dist/types/ai.d.ts.map +1 -0
- package/dist/types/ai.js +18 -0
- package/dist/types/ai.js.map +1 -0
- package/dist/types/app.d.ts +371 -0
- package/dist/types/app.d.ts.map +1 -0
- package/dist/types/app.js +151 -0
- package/dist/types/app.js.map +1 -0
- package/dist/types/business.d.ts +482 -0
- package/dist/types/business.d.ts.map +1 -0
- package/dist/types/business.js +60 -0
- package/dist/types/business.js.map +1 -0
- package/dist/types/cascade.d.ts +323 -0
- package/dist/types/cascade.d.ts.map +1 -0
- package/dist/types/cascade.js +82 -0
- package/dist/types/cascade.js.map +1 -0
- package/dist/types/collections.d.ts +704 -0
- package/dist/types/collections.d.ts.map +1 -0
- package/dist/types/collections.js +23 -0
- package/dist/types/collections.js.map +1 -0
- package/dist/types/colo.d.ts +171 -0
- package/dist/types/colo.d.ts.map +1 -0
- package/dist/types/colo.js +63 -0
- package/dist/types/colo.js.map +1 -0
- package/dist/types/communication.d.ts +595 -0
- package/dist/types/communication.d.ts.map +1 -0
- package/dist/types/communication.js +16 -0
- package/dist/types/communication.js.map +1 -0
- package/dist/types/content.d.ts +286 -0
- package/dist/types/content.d.ts.map +1 -0
- package/dist/types/content.js +8 -0
- package/dist/types/content.js.map +1 -0
- package/dist/types/context.d.ts +407 -0
- package/dist/types/context.d.ts.map +1 -0
- package/dist/types/context.js +36 -0
- package/dist/types/context.js.map +1 -0
- package/dist/types/databases.d.ts +377 -0
- package/dist/types/databases.d.ts.map +1 -0
- package/dist/types/databases.js +14 -0
- package/dist/types/databases.js.map +1 -0
- package/dist/types/domains.d.ts +132 -0
- package/dist/types/domains.d.ts.map +1 -0
- package/dist/types/domains.js +107 -0
- package/dist/types/domains.js.map +1 -0
- package/dist/types/execution.d.ts +381 -0
- package/dist/types/execution.d.ts.map +1 -0
- package/dist/types/execution.js +40 -0
- package/dist/types/execution.js.map +1 -0
- package/dist/types/financial.d.ts +608 -0
- package/dist/types/financial.d.ts.map +1 -0
- package/dist/types/financial.js +12 -0
- package/dist/types/financial.js.map +1 -0
- package/dist/types/functions.d.ts +215 -0
- package/dist/types/functions.d.ts.map +1 -0
- package/dist/types/functions.js +15 -0
- package/dist/types/functions.js.map +1 -0
- package/dist/types/git.d.ts +299 -0
- package/dist/types/git.d.ts.map +1 -0
- package/dist/types/git.js +17 -0
- package/dist/types/git.js.map +1 -0
- package/dist/types/identity.d.ts +141 -0
- package/dist/types/identity.d.ts.map +1 -0
- package/dist/types/identity.js +54 -0
- package/dist/types/identity.js.map +1 -0
- package/dist/types/index.d.ts +40 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +65 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/integrations.d.ts +356 -0
- package/dist/types/integrations.d.ts.map +1 -0
- package/dist/types/integrations.js +19 -0
- package/dist/types/integrations.js.map +1 -0
- package/dist/types/mdxui.d.ts +1955 -0
- package/dist/types/mdxui.d.ts.map +1 -0
- package/dist/types/mdxui.js +751 -0
- package/dist/types/mdxui.js.map +1 -0
- package/dist/types/observability.d.ts +315 -0
- package/dist/types/observability.d.ts.map +1 -0
- package/dist/types/observability.js +13 -0
- package/dist/types/observability.js.map +1 -0
- package/dist/types/rpc.d.ts +339 -0
- package/dist/types/rpc.d.ts.map +1 -0
- package/dist/types/rpc.js +24 -0
- package/dist/types/rpc.js.map +1 -0
- package/dist/types/saas.d.ts +678 -0
- package/dist/types/saas.d.ts.map +1 -0
- package/dist/types/saas.js +59 -0
- package/dist/types/saas.js.map +1 -0
- package/dist/types/service.d.ts +676 -0
- package/dist/types/service.d.ts.map +1 -0
- package/dist/types/service.js +69 -0
- package/dist/types/service.js.map +1 -0
- package/dist/types/site.d.ts +317 -0
- package/dist/types/site.d.ts.map +1 -0
- package/dist/types/site.js +203 -0
- package/dist/types/site.js.map +1 -0
- package/dist/types/startup.d.ts +576 -0
- package/dist/types/startup.d.ts.map +1 -0
- package/dist/types/startup.js +59 -0
- package/dist/types/startup.js.map +1 -0
- package/dist/types/storage.d.ts +276 -0
- package/dist/types/storage.d.ts.map +1 -0
- package/dist/types/storage.js +35 -0
- package/dist/types/storage.js.map +1 -0
- package/dist/types/telephony.d.ts +458 -0
- package/dist/types/telephony.d.ts.map +1 -0
- package/dist/types/telephony.js +19 -0
- package/dist/types/telephony.js.map +1 -0
- package/dist/types/tenant.d.ts +708 -0
- package/dist/types/tenant.d.ts.map +1 -0
- package/dist/types/tenant.js +103 -0
- package/dist/types/tenant.js.map +1 -0
- package/dist/types/voice-ai.d.ts +459 -0
- package/dist/types/voice-ai.d.ts.map +1 -0
- package/dist/types/voice-ai.js +32 -0
- package/dist/types/voice-ai.js.map +1 -0
- package/package.json +143 -0
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Actions Collection - Durable action execution for Digital Objects
|
|
3
|
+
*
|
|
4
|
+
* @module collections/actions
|
|
5
|
+
*
|
|
6
|
+
* @description
|
|
7
|
+
* Manages durable Actions (instances of Verbs) within a Digital Object.
|
|
8
|
+
* Actions track the full lifecycle of operations from creation through completion,
|
|
9
|
+
* including retry handling, error tracking, and actor attribution.
|
|
10
|
+
*
|
|
11
|
+
* Action lifecycle:
|
|
12
|
+
* ```
|
|
13
|
+
* pending -> running -> completed
|
|
14
|
+
* -> failed -> retrying -> completed
|
|
15
|
+
* -> cancelled
|
|
16
|
+
* -> blocked (waiting on dependency)
|
|
17
|
+
* ```
|
|
18
|
+
*
|
|
19
|
+
* @example
|
|
20
|
+
* ```typescript
|
|
21
|
+
* const actions = new ActionCollection(storage, verbs)
|
|
22
|
+
*
|
|
23
|
+
* // Create an action
|
|
24
|
+
* const action = await actions.create({
|
|
25
|
+
* verb: 'subscribe',
|
|
26
|
+
* object: 'customer_123',
|
|
27
|
+
* input: { plan: 'pro' },
|
|
28
|
+
* actor: { type: 'User', id: 'user_456' }
|
|
29
|
+
* })
|
|
30
|
+
*
|
|
31
|
+
* // Start execution
|
|
32
|
+
* await actions.start(action.$id)
|
|
33
|
+
*
|
|
34
|
+
* // Complete with output
|
|
35
|
+
* await actions.complete(action.$id, { subscriptionId: 'sub_789' })
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
import type { Action, ActionStatus, ActionRequest, Actor, ActorType } from '../../types/collections';
|
|
39
|
+
import { BaseCollection, DOStorage } from './base';
|
|
40
|
+
import type { VerbCollection } from './verbs';
|
|
41
|
+
/**
|
|
42
|
+
* Options for creating an action
|
|
43
|
+
*/
|
|
44
|
+
export interface CreateActionOptions<TInput = unknown, TConfig = unknown> {
|
|
45
|
+
/**
|
|
46
|
+
* Verb reference (action type)
|
|
47
|
+
*/
|
|
48
|
+
verb: string;
|
|
49
|
+
/**
|
|
50
|
+
* Subject (who/what performed the action, if different from actor)
|
|
51
|
+
*/
|
|
52
|
+
subject?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Object (what the action operates on)
|
|
55
|
+
*/
|
|
56
|
+
object?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Input data for the action
|
|
59
|
+
*/
|
|
60
|
+
input?: TInput;
|
|
61
|
+
/**
|
|
62
|
+
* Configuration/options for the action
|
|
63
|
+
*/
|
|
64
|
+
config?: TConfig;
|
|
65
|
+
/**
|
|
66
|
+
* Actor who initiated this action
|
|
67
|
+
*/
|
|
68
|
+
actor: Actor;
|
|
69
|
+
/**
|
|
70
|
+
* Request that initiated this action (optional)
|
|
71
|
+
*/
|
|
72
|
+
request?: ActionRequest;
|
|
73
|
+
/**
|
|
74
|
+
* Additional metadata
|
|
75
|
+
*/
|
|
76
|
+
metadata?: Record<string, unknown>;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Options for failing an action
|
|
80
|
+
*/
|
|
81
|
+
export interface FailActionOptions {
|
|
82
|
+
/**
|
|
83
|
+
* Error code
|
|
84
|
+
*/
|
|
85
|
+
code: string;
|
|
86
|
+
/**
|
|
87
|
+
* Error message
|
|
88
|
+
*/
|
|
89
|
+
message: string;
|
|
90
|
+
/**
|
|
91
|
+
* Stack trace (optional)
|
|
92
|
+
*/
|
|
93
|
+
stack?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Whether the action can be retried
|
|
96
|
+
*/
|
|
97
|
+
retryable?: boolean;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Retry policy for actions
|
|
101
|
+
*/
|
|
102
|
+
export interface ActionRetryPolicy {
|
|
103
|
+
/**
|
|
104
|
+
* Maximum number of retry attempts
|
|
105
|
+
*/
|
|
106
|
+
maxAttempts: number;
|
|
107
|
+
/**
|
|
108
|
+
* Initial delay in milliseconds
|
|
109
|
+
*/
|
|
110
|
+
initialDelay: number;
|
|
111
|
+
/**
|
|
112
|
+
* Maximum delay in milliseconds
|
|
113
|
+
*/
|
|
114
|
+
maxDelay: number;
|
|
115
|
+
/**
|
|
116
|
+
* Backoff multiplier
|
|
117
|
+
*/
|
|
118
|
+
backoffMultiplier: number;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Default retry policy
|
|
122
|
+
*/
|
|
123
|
+
export declare const DEFAULT_RETRY_POLICY: ActionRetryPolicy;
|
|
124
|
+
/**
|
|
125
|
+
* Actions collection for durable action execution
|
|
126
|
+
*
|
|
127
|
+
* @description
|
|
128
|
+
* The ActionCollection manages the lifecycle of durable actions within a DO.
|
|
129
|
+
* Every action is an instance of a Verb and tracks:
|
|
130
|
+
*
|
|
131
|
+
* - Who initiated it (Actor: User, Agent, Service, System)
|
|
132
|
+
* - What it operates on (subject, object)
|
|
133
|
+
* - Its current status and history
|
|
134
|
+
* - Input, config, and output data
|
|
135
|
+
* - Errors and retry information
|
|
136
|
+
*
|
|
137
|
+
* Actions are durable - they survive DO hibernation and can be resumed.
|
|
138
|
+
* This enables long-running operations, workflows, and reliable execution.
|
|
139
|
+
*
|
|
140
|
+
* @example
|
|
141
|
+
* ```typescript
|
|
142
|
+
* const actions = new ActionCollection(storage, verbs)
|
|
143
|
+
*
|
|
144
|
+
* // Create and execute an action
|
|
145
|
+
* const action = await actions.create({
|
|
146
|
+
* verb: 'process',
|
|
147
|
+
* object: 'order_123',
|
|
148
|
+
* input: { priority: 'high' },
|
|
149
|
+
* actor: { type: 'Service', id: 'payment-service' }
|
|
150
|
+
* })
|
|
151
|
+
*
|
|
152
|
+
* try {
|
|
153
|
+
* await actions.start(action.$id)
|
|
154
|
+
* const result = await processOrder(action.input)
|
|
155
|
+
* await actions.complete(action.$id, result)
|
|
156
|
+
* } catch (error) {
|
|
157
|
+
* await actions.fail(action.$id, {
|
|
158
|
+
* code: 'PROCESS_ERROR',
|
|
159
|
+
* message: error.message,
|
|
160
|
+
* retryable: true
|
|
161
|
+
* })
|
|
162
|
+
* }
|
|
163
|
+
*
|
|
164
|
+
* // Query actions
|
|
165
|
+
* const pending = await actions.findByStatus('pending')
|
|
166
|
+
* const userActions = await actions.findByActor('User', 'user_123')
|
|
167
|
+
* ```
|
|
168
|
+
*/
|
|
169
|
+
export declare class ActionCollection extends BaseCollection<any> {
|
|
170
|
+
/**
|
|
171
|
+
* Reference to verb collection for type validation
|
|
172
|
+
*/
|
|
173
|
+
private readonly verbs;
|
|
174
|
+
/**
|
|
175
|
+
* Default retry policy
|
|
176
|
+
*/
|
|
177
|
+
private readonly retryPolicy;
|
|
178
|
+
/**
|
|
179
|
+
* Create a new ActionCollection instance
|
|
180
|
+
*
|
|
181
|
+
* @param storage - DO storage interface
|
|
182
|
+
* @param verbs - Verb collection for type validation
|
|
183
|
+
* @param retryPolicy - Optional custom retry policy
|
|
184
|
+
*/
|
|
185
|
+
constructor(storage: DOStorage, verbs: VerbCollection, retryPolicy?: ActionRetryPolicy);
|
|
186
|
+
/**
|
|
187
|
+
* Initialize the actions table in SQLite
|
|
188
|
+
*
|
|
189
|
+
* @internal
|
|
190
|
+
*/
|
|
191
|
+
protected initializeTable(): Promise<void>;
|
|
192
|
+
/**
|
|
193
|
+
* Create a new action
|
|
194
|
+
*
|
|
195
|
+
* @param data - Action creation options
|
|
196
|
+
* @returns Created action with generated ID and pending status
|
|
197
|
+
*
|
|
198
|
+
* @throws {ValidationError} If verb is not registered
|
|
199
|
+
*
|
|
200
|
+
* @example
|
|
201
|
+
* ```typescript
|
|
202
|
+
* const action = await actions.create({
|
|
203
|
+
* verb: 'approve',
|
|
204
|
+
* object: 'request_123',
|
|
205
|
+
* actor: { type: 'User', id: 'user_456', name: 'John' }
|
|
206
|
+
* })
|
|
207
|
+
* console.log(action.status) // 'pending'
|
|
208
|
+
* ```
|
|
209
|
+
*/
|
|
210
|
+
create<TInput = unknown, TConfig = unknown>(data: CreateActionOptions<TInput, TConfig>): Promise<Action<TInput, unknown, TConfig>>;
|
|
211
|
+
/**
|
|
212
|
+
* Start action execution
|
|
213
|
+
*
|
|
214
|
+
* @param id - Action ID
|
|
215
|
+
* @returns Updated action with 'running' status
|
|
216
|
+
*
|
|
217
|
+
* @throws {NotFoundError} If action not found
|
|
218
|
+
* @throws {ValidationError} If action is not in 'pending' or 'retrying' status
|
|
219
|
+
*
|
|
220
|
+
* @example
|
|
221
|
+
* ```typescript
|
|
222
|
+
* const action = await actions.start('action_123')
|
|
223
|
+
* console.log(action.status) // 'running'
|
|
224
|
+
* console.log(action.startedAt) // timestamp
|
|
225
|
+
* ```
|
|
226
|
+
*/
|
|
227
|
+
start(id: string): Promise<Action>;
|
|
228
|
+
/**
|
|
229
|
+
* Complete action successfully
|
|
230
|
+
*
|
|
231
|
+
* @param id - Action ID
|
|
232
|
+
* @param output - Output data from action execution
|
|
233
|
+
* @returns Updated action with 'completed' status
|
|
234
|
+
*
|
|
235
|
+
* @throws {NotFoundError} If action not found
|
|
236
|
+
* @throws {ValidationError} If action is not in 'running' status
|
|
237
|
+
*
|
|
238
|
+
* @example
|
|
239
|
+
* ```typescript
|
|
240
|
+
* const action = await actions.complete('action_123', {
|
|
241
|
+
* subscriptionId: 'sub_789',
|
|
242
|
+
* activatedAt: Date.now()
|
|
243
|
+
* })
|
|
244
|
+
* console.log(action.status) // 'completed'
|
|
245
|
+
* ```
|
|
246
|
+
*/
|
|
247
|
+
complete<TOutput = unknown>(id: string, output?: TOutput): Promise<Action>;
|
|
248
|
+
/**
|
|
249
|
+
* Fail action with error
|
|
250
|
+
*
|
|
251
|
+
* @param id - Action ID
|
|
252
|
+
* @param error - Error details
|
|
253
|
+
* @returns Updated action with 'failed' or 'retrying' status
|
|
254
|
+
*
|
|
255
|
+
* @throws {NotFoundError} If action not found
|
|
256
|
+
* @throws {ValidationError} If action is not in 'running' status
|
|
257
|
+
*
|
|
258
|
+
* @description
|
|
259
|
+
* If the error is retryable and retry attempts remain, status becomes 'retrying'.
|
|
260
|
+
* Otherwise, status becomes 'failed'.
|
|
261
|
+
*
|
|
262
|
+
* @example
|
|
263
|
+
* ```typescript
|
|
264
|
+
* const action = await actions.fail('action_123', {
|
|
265
|
+
* code: 'PAYMENT_DECLINED',
|
|
266
|
+
* message: 'Card declined',
|
|
267
|
+
* retryable: true
|
|
268
|
+
* })
|
|
269
|
+
* console.log(action.status) // 'retrying' or 'failed'
|
|
270
|
+
* ```
|
|
271
|
+
*/
|
|
272
|
+
fail(id: string, error: FailActionOptions): Promise<Action>;
|
|
273
|
+
/**
|
|
274
|
+
* Cancel an action
|
|
275
|
+
*
|
|
276
|
+
* @param id - Action ID
|
|
277
|
+
* @param reason - Optional cancellation reason
|
|
278
|
+
* @returns Updated action with 'cancelled' status
|
|
279
|
+
*
|
|
280
|
+
* @throws {NotFoundError} If action not found
|
|
281
|
+
* @throws {ValidationError} If action is already completed or failed
|
|
282
|
+
*
|
|
283
|
+
* @example
|
|
284
|
+
* ```typescript
|
|
285
|
+
* await actions.cancel('action_123', 'User requested cancellation')
|
|
286
|
+
* ```
|
|
287
|
+
*/
|
|
288
|
+
cancel(id: string, reason?: string): Promise<Action>;
|
|
289
|
+
/**
|
|
290
|
+
* Block an action (waiting on dependency)
|
|
291
|
+
*
|
|
292
|
+
* @param id - Action ID
|
|
293
|
+
* @param dependency - ID of the blocking action or resource
|
|
294
|
+
* @returns Updated action with 'blocked' status
|
|
295
|
+
*
|
|
296
|
+
* @throws {NotFoundError} If action not found
|
|
297
|
+
*
|
|
298
|
+
* @example
|
|
299
|
+
* ```typescript
|
|
300
|
+
* // Block action until payment is processed
|
|
301
|
+
* await actions.block('action_123', 'action_payment_456')
|
|
302
|
+
* ```
|
|
303
|
+
*/
|
|
304
|
+
block(id: string, dependency: string): Promise<Action>;
|
|
305
|
+
/**
|
|
306
|
+
* Unblock an action
|
|
307
|
+
*
|
|
308
|
+
* @param id - Action ID
|
|
309
|
+
* @returns Updated action with 'pending' status
|
|
310
|
+
*
|
|
311
|
+
* @throws {NotFoundError} If action not found
|
|
312
|
+
* @throws {ValidationError} If action is not blocked
|
|
313
|
+
*/
|
|
314
|
+
unblock(id: string): Promise<Action>;
|
|
315
|
+
/**
|
|
316
|
+
* Get action by ID
|
|
317
|
+
*
|
|
318
|
+
* @param id - Action ID
|
|
319
|
+
* @returns Action or null if not found
|
|
320
|
+
*/
|
|
321
|
+
get(id: string): Promise<Action | null>;
|
|
322
|
+
/**
|
|
323
|
+
* Find actions by status
|
|
324
|
+
*
|
|
325
|
+
* @param status - Action status to filter by
|
|
326
|
+
* @returns Array of matching actions
|
|
327
|
+
*
|
|
328
|
+
* @example
|
|
329
|
+
* ```typescript
|
|
330
|
+
* const pending = await actions.findByStatus('pending')
|
|
331
|
+
* const running = await actions.findByStatus('running')
|
|
332
|
+
* ```
|
|
333
|
+
*/
|
|
334
|
+
findByStatus(status: ActionStatus): Promise<Action[]>;
|
|
335
|
+
/**
|
|
336
|
+
* Find actions by verb
|
|
337
|
+
*
|
|
338
|
+
* @param verb - Verb action form
|
|
339
|
+
* @returns Array of matching actions
|
|
340
|
+
*
|
|
341
|
+
* @example
|
|
342
|
+
* ```typescript
|
|
343
|
+
* const approvals = await actions.findByVerb('approve')
|
|
344
|
+
* ```
|
|
345
|
+
*/
|
|
346
|
+
findByVerb(verb: string): Promise<Action[]>;
|
|
347
|
+
/**
|
|
348
|
+
* Find actions by actor
|
|
349
|
+
*
|
|
350
|
+
* @param actorType - Actor type (User, Agent, Service, System)
|
|
351
|
+
* @param actorId - Actor ID
|
|
352
|
+
* @returns Array of matching actions
|
|
353
|
+
*
|
|
354
|
+
* @example
|
|
355
|
+
* ```typescript
|
|
356
|
+
* const userActions = await actions.findByActor('User', 'user_123')
|
|
357
|
+
* const serviceActions = await actions.findByActor('Service', 'payment-service')
|
|
358
|
+
* ```
|
|
359
|
+
*/
|
|
360
|
+
findByActor(actorType: ActorType, actorId: string): Promise<Action[]>;
|
|
361
|
+
/**
|
|
362
|
+
* Find actions by object
|
|
363
|
+
*
|
|
364
|
+
* @param object - Object ID
|
|
365
|
+
* @returns Array of actions on the object
|
|
366
|
+
*
|
|
367
|
+
* @example
|
|
368
|
+
* ```typescript
|
|
369
|
+
* const orderActions = await actions.findByObject('order_123')
|
|
370
|
+
* ```
|
|
371
|
+
*/
|
|
372
|
+
findByObject(object: string): Promise<Action[]>;
|
|
373
|
+
/**
|
|
374
|
+
* Find retryable actions that are ready for retry
|
|
375
|
+
*
|
|
376
|
+
* @returns Actions in 'retrying' status ready for next attempt
|
|
377
|
+
*
|
|
378
|
+
* @description
|
|
379
|
+
* Calculates next retry time based on retry policy and returns
|
|
380
|
+
* actions that are past their retry delay.
|
|
381
|
+
*/
|
|
382
|
+
findRetryable(): Promise<Action[]>;
|
|
383
|
+
/**
|
|
384
|
+
* Get pending actions count
|
|
385
|
+
*
|
|
386
|
+
* @returns Number of pending actions
|
|
387
|
+
*/
|
|
388
|
+
getPendingCount(): Promise<number>;
|
|
389
|
+
/**
|
|
390
|
+
* Get running actions count
|
|
391
|
+
*
|
|
392
|
+
* @returns Number of running actions
|
|
393
|
+
*/
|
|
394
|
+
getRunningCount(): Promise<number>;
|
|
395
|
+
/**
|
|
396
|
+
* Calculate next retry delay
|
|
397
|
+
*
|
|
398
|
+
* @param retryCount - Current retry count
|
|
399
|
+
* @returns Delay in milliseconds
|
|
400
|
+
*
|
|
401
|
+
* @internal
|
|
402
|
+
*/
|
|
403
|
+
calculateRetryDelay(retryCount: number): number;
|
|
404
|
+
/**
|
|
405
|
+
* Check if action can be retried
|
|
406
|
+
*
|
|
407
|
+
* @param action - Action to check
|
|
408
|
+
* @returns True if retry is possible
|
|
409
|
+
*
|
|
410
|
+
* @internal
|
|
411
|
+
*/
|
|
412
|
+
canRetry(action: Action): boolean;
|
|
413
|
+
/**
|
|
414
|
+
* Get action statistics
|
|
415
|
+
*
|
|
416
|
+
* @returns Count of actions by status
|
|
417
|
+
*
|
|
418
|
+
* @example
|
|
419
|
+
* ```typescript
|
|
420
|
+
* const stats = await actions.getStats()
|
|
421
|
+
* // { pending: 5, running: 2, completed: 100, failed: 3 }
|
|
422
|
+
* ```
|
|
423
|
+
*/
|
|
424
|
+
getStats(): Promise<Record<ActionStatus, number>>;
|
|
425
|
+
/**
|
|
426
|
+
* Clean up old completed/failed actions
|
|
427
|
+
*
|
|
428
|
+
* @param olderThan - Delete actions older than this timestamp
|
|
429
|
+
* @returns Number of deleted actions
|
|
430
|
+
*
|
|
431
|
+
* @example
|
|
432
|
+
* ```typescript
|
|
433
|
+
* // Delete completed actions older than 30 days
|
|
434
|
+
* const deleted = await actions.cleanup(Date.now() - 30 * 24 * 60 * 60 * 1000)
|
|
435
|
+
* ```
|
|
436
|
+
*/
|
|
437
|
+
cleanup(olderThan: number): Promise<number>;
|
|
438
|
+
}
|
|
439
|
+
export default ActionCollection;
|
|
440
|
+
//# sourceMappingURL=actions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../db/collections/actions.ts"],"names":[],"mappings":"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"}
|