@elevasis/sdk 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +16 -5
- package/dist/index.d.ts +476 -49
- package/dist/types/worker/adapters/index.d.ts +1 -0
- package/dist/types/worker/adapters/lead.d.ts +1 -1
- package/dist/types/worker/adapters/list.d.ts +9 -0
- package/dist/worker/index.js +20 -3
- package/package.json +6 -4
- package/reference/_navigation.md +6 -55
- package/reference/_reference-manifest.json +437 -0
- package/reference/cli.mdx +75 -3
- package/reference/deployment/index.mdx +2 -1
- package/reference/deployment/provided-features.mdx +259 -0
- package/reference/deployment/ui-execution.mdx +251 -0
- package/reference/index.mdx +5 -3
- package/reference/platform-tools/adapters-platform.mdx +93 -36
- package/reference/resources/patterns.mdx +48 -0
|
@@ -23,6 +23,7 @@ export { llm } from './llm.js';
|
|
|
23
23
|
export { storage } from './storage.js';
|
|
24
24
|
export { notifications, type NotificationInput } from './notification.js';
|
|
25
25
|
export { acqDb } from './lead.js';
|
|
26
|
+
export { list } from './list.js';
|
|
26
27
|
export { pdf } from './pdf.js';
|
|
27
28
|
export { approval } from './approval.js';
|
|
28
29
|
export { execution } from './execution.js';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Typed wrapper over platform.call() for acquisition lead management.
|
|
5
5
|
* Singleton export -- no credential needed (platform tool).
|
|
6
6
|
*
|
|
7
|
-
*
|
|
7
|
+
* 49 methods covering lists, companies, contacts, deals, deal-sync, deal notes, deal tasks, enrichment, and social monitoring operations.
|
|
8
8
|
* organizationId is injected server-side by the dispatcher -- never sent from the SDK.
|
|
9
9
|
*/
|
|
10
10
|
import { type TypedAdapter } from './create-adapter.js';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List Platform Tool Adapter
|
|
3
|
+
*
|
|
4
|
+
* Focused wrapper for list-scoped workflow operations.
|
|
5
|
+
* Singleton export -- no credential needed (platform tool).
|
|
6
|
+
*/
|
|
7
|
+
import { type TypedAdapter } from './create-adapter.js';
|
|
8
|
+
import type { ListToolMap } from '../../types/index.js';
|
|
9
|
+
export declare const list: TypedAdapter<ListToolMap>;
|
package/dist/worker/index.js
CHANGED
|
@@ -4981,7 +4981,9 @@ var acqDb = createAdapter("acqDb", [
|
|
|
4981
4981
|
"getDealByEmail",
|
|
4982
4982
|
"getDealByEnvelopeId",
|
|
4983
4983
|
"updateDealEnvelopeId",
|
|
4984
|
-
"
|
|
4984
|
+
"getDealById",
|
|
4985
|
+
"getContactById",
|
|
4986
|
+
"getCompanyById",
|
|
4985
4987
|
// Deal-sync operations
|
|
4986
4988
|
"updateDiscoveryData",
|
|
4987
4989
|
"updateProposalData",
|
|
@@ -4995,14 +4997,29 @@ var acqDb = createAdapter("acqDb", [
|
|
|
4995
4997
|
"cancelHitlByDealId",
|
|
4996
4998
|
"clearDealFields",
|
|
4997
4999
|
"deleteDeal",
|
|
4998
|
-
"recordReply",
|
|
4999
5000
|
"recordDealActivity",
|
|
5001
|
+
// Deal note operations
|
|
5002
|
+
"createDealNote",
|
|
5003
|
+
"listDealNotes",
|
|
5004
|
+
// Deal task operations
|
|
5005
|
+
"createDealTask",
|
|
5006
|
+
"listDealTasks",
|
|
5007
|
+
"listDealTasksDue",
|
|
5008
|
+
"completeDealTask",
|
|
5000
5009
|
// Enrichment data operations
|
|
5001
5010
|
"mergeEnrichmentData",
|
|
5002
5011
|
// Social monitoring operations
|
|
5003
5012
|
"upsertSocialPosts"
|
|
5004
5013
|
]);
|
|
5005
5014
|
|
|
5015
|
+
// src/worker/adapters/list.ts
|
|
5016
|
+
var list = createAdapter("list", [
|
|
5017
|
+
"getConfig",
|
|
5018
|
+
"recordExecution",
|
|
5019
|
+
"updateCompanyStage",
|
|
5020
|
+
"updateContactStage"
|
|
5021
|
+
]);
|
|
5022
|
+
|
|
5006
5023
|
// src/worker/adapters/pdf.ts
|
|
5007
5024
|
var pdf = createAdapter("pdf", ["render", "renderToBuffer"]);
|
|
5008
5025
|
|
|
@@ -5375,4 +5392,4 @@ function startWorker(org) {
|
|
|
5375
5392
|
});
|
|
5376
5393
|
}
|
|
5377
5394
|
|
|
5378
|
-
export { PlatformToolError, acqDb, approval, createAdapter, createAnymailfinderAdapter, createApifyAdapter, createAttioAdapter, createDropboxAdapter, createGmailAdapter, createGoogleSheetsAdapter, createInstantlyAdapter, createMillionVerifierAdapter, createResendAdapter, createSignatureApiAdapter, createStripeAdapter, createTombaAdapter, email, execution, llm, notifications, pdf, platform, scheduler, startWorker, storage };
|
|
5395
|
+
export { PlatformToolError, acqDb, approval, createAdapter, createAnymailfinderAdapter, createApifyAdapter, createAttioAdapter, createDropboxAdapter, createGmailAdapter, createGoogleSheetsAdapter, createInstantlyAdapter, createMillionVerifierAdapter, createResendAdapter, createSignatureApiAdapter, createStripeAdapter, createTombaAdapter, email, execution, list, llm, notifications, pdf, platform, scheduler, startWorker, storage };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "SDK for building Elevasis organization resources",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -48,8 +48,10 @@
|
|
|
48
48
|
"@repo/typescript-config": "0.0.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
|
-
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.core-dts.json && tsc -p tsconfig.build.json && tsup && rollup -c rollup.dts.config.mjs && esbuild src/cli/index.ts --bundle --platform=node --outfile=dist/cli.cjs --format=cjs --external:esbuild --banner:js=\"#!/usr/bin/env node\" && node scripts/copy-reference-docs.mjs && node scripts/generate-
|
|
52
|
-
"check
|
|
53
|
-
"
|
|
51
|
+
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.core-dts.json && tsc -p tsconfig.build.json && tsup && rollup -c rollup.dts.config.mjs && esbuild src/cli/index.ts --bundle --platform=node --outfile=dist/cli.cjs --format=cjs --external:esbuild --banner:js=\"#!/usr/bin/env node\" && node scripts/copy-reference-docs.mjs && node ../../scripts/monorepo/generate-reference-artifacts.js",
|
|
52
|
+
"type-check": "tsc --noEmit",
|
|
53
|
+
"check-types": "pnpm type-check",
|
|
54
|
+
"test": "pnpm build && node ../../scripts/monorepo/validate-reference-artifacts.js && vitest run --config vitest.bundle.config.ts",
|
|
55
|
+
"test:bundle": "pnpm test"
|
|
54
56
|
}
|
|
55
57
|
}
|
package/reference/_navigation.md
CHANGED
|
@@ -1,66 +1,17 @@
|
|
|
1
1
|
# SDK Reference Navigation
|
|
2
2
|
|
|
3
|
-
Auto-generated from
|
|
3
|
+
Auto-generated from the package reference manifests.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Package entries indexed: 2.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Getting Started
|
|
8
8
|
|
|
9
9
|
| Resource | Location | Description | When to Load |
|
|
10
10
|
| --- | --- | --- | --- |
|
|
11
|
-
|
|
|
12
|
-
| Concepts Reference | `concepts.mdx` | Plain-English explanations of Elevasis SDK concepts -- glossary, workflow analogies, Zod schemas, execution model, platform tools, common errors, and design decisions | User asks what is or needs conceptual grounding |
|
|
13
|
-
| Getting Started | `getting-started.mdx` | Install the Elevasis SDK, scaffold a project, and run your first deployment | Setting up a new project or onboarding |
|
|
14
|
-
| Elevasis SDK | `index.mdx` | Build and deploy workflows, agents, and resources with the Elevasis SDK | First session or new to the SDK |
|
|
15
|
-
| Roadmap | `roadmap.mdx` | Planned SDK features -- error taxonomy, retry semantics, circuit breaker, metrics, alerting, and resource lifecycle extensions | Asking about future features or planned capabilities |
|
|
16
|
-
| Execution Runtime | `runtime.mdx` | How your code runs on the Elevasis platform -- execution lifecycle, concurrency, timeouts, cancellation, error handling, observability, resource limits, and v1 limitations | Debugging execution behavior or understanding the runtime model |
|
|
17
|
-
| Common Errors | `troubleshooting.mdx` | Static SDK-level error catalog -- CLI errors, deployment errors, schema validation, platform tool failures, and runtime errors with diagnostic steps | Debugging an unknown error not found in workspace memory |
|
|
11
|
+
| SDK | `../src/index.ts` | Root SDK types, config, runtime errors, and registry surface. | (not specified) |
|
|
18
12
|
|
|
19
|
-
##
|
|
13
|
+
## Runtime
|
|
20
14
|
|
|
21
15
|
| Resource | Location | Description | When to Load |
|
|
22
16
|
| --- | --- | --- | --- |
|
|
23
|
-
|
|
|
24
|
-
| Command Center | `deployment/command-center.mdx` | Post-deployment UI reference -- what each page does, the resource graph model, relationships, validation, and how SDK concepts map to Command Center actions | User asks about the Command Center UI, post-deployment workflow, monitoring, or the resource graph |
|
|
25
|
-
| Deploying Resources | `deployment/index.mdx` | How to deploy your Elevasis SDK resources to the platform using elevasis-sdk deploy, including configuration, validation, and environment setup | Preparing to deploy or debugging deploy failures |
|
|
26
|
-
|
|
27
|
-
## Framework
|
|
28
|
-
|
|
29
|
-
| Resource | Location | Description | When to Load |
|
|
30
|
-
| --- | --- | --- | --- |
|
|
31
|
-
| Agent System | `framework/agent.mdx` | CLAUDE.md drives all agent behavior -- project instructions, slash commands, memory-based developer profile, and three-tier adaptive guidance | Configuring agent behavior or capabilities |
|
|
32
|
-
| Development Framework | `framework/index.mdx` | The SDK scaffolds a complete development environment for Claude Code -- project instructions, slash commands, cross-session memory, template versioning, and resource documentation | Understanding the agent framework structure |
|
|
33
|
-
| Interaction Guidance | `framework/interaction-guidance.mdx` | Full dimensional adaptation rules per skill axis -- platform navigation, API integration, automation concepts, domain expertise -- with growth tracking protocol | Unsure how to adapt for a skill combination |
|
|
34
|
-
| Memory System | `framework/memory.mdx` | Cross-session project knowledge stored in .claude/memory/ -- deployment state, environment, decisions, and error patterns that persist between Claude Code sessions | Working with agent memory or session state |
|
|
35
|
-
| Project Structure | `framework/project-structure.mdx` | Each file scaffolded by elevasis-sdk init and its purpose in the development workflow | Understanding scaffolded files or project layout |
|
|
36
|
-
| Tutorial System | `framework/tutorial-system.mdx` | Reference for the SDK tutorial system -- 21-item menu across 4 sections, skill-level adaptation rules, progress tracking format, and per-lesson module contents | (not specified) |
|
|
37
|
-
|
|
38
|
-
## Platform-tools
|
|
39
|
-
|
|
40
|
-
| Resource | Location | Description | When to Load |
|
|
41
|
-
| --- | --- | --- | --- |
|
|
42
|
-
| Integration Adapters | `platform-tools/adapters-integration.mdx` | Type-safe wrappers for third-party integrations -- Attio, Stripe, Google Sheets, Instantly, SignatureAPI, Resend, Dropbox, Apify, Gmail, and Tomba -- with full autocomplete and compile-time checking | Using typed adapters for integration tools, or needs to know what integration adapter methods are available |
|
|
43
|
-
| Platform Adapters | `platform-tools/adapters-platform.mdx` | Type-safe singleton adapters for built-in platform services -- scheduler, storage, LLM, PDF, approval, notifications, acqDb, execution, and email -- no credentials required | Using platform service adapters (scheduler, storage, llm, pdf, approval, acqDb, notifications, execution, email) |
|
|
44
|
-
| Platform Tools | `platform-tools/index.mdx` | Access 70+ tools across integration adapters and platform services from your SDK workflows -- typed adapters, credential security model, and working code examples | Connecting to external services |
|
|
45
|
-
| Adapter Type Safety | `platform-tools/type-safety.mdx` | SDK worker adapter type safety patterns - required fields, discriminated unions, and intentionally loose types | (not specified) |
|
|
46
|
-
|
|
47
|
-
## Resources
|
|
48
|
-
|
|
49
|
-
| Resource | Location | Description | When to Load |
|
|
50
|
-
| --- | --- | --- | --- |
|
|
51
|
-
| Writing Resources | `resources/index.mdx` | Guide to creating workflows and agents using WorkflowDefinition, AgentDefinition, and DeploymentSpec with the Elevasis SDK | Building or modifying a workflow |
|
|
52
|
-
| Common Patterns | `resources/patterns.mdx` | Common resource patterns for Elevasis SDK developers -- sequential steps, conditional branching, platform tools, error handling, and resource status management | Building or modifying a workflow |
|
|
53
|
-
| SDK Types | `resources/types.mdx` | Complete type reference for @elevasis/sdk -- package exports, re-exported platform types, ElevasConfig interface, StepHandler context, and runtime values | Looking up type signatures or SDK exports |
|
|
54
|
-
|
|
55
|
-
## Templates
|
|
56
|
-
|
|
57
|
-
| Resource | Location | Description | When to Load |
|
|
58
|
-
| --- | --- | --- | --- |
|
|
59
|
-
| Template: Data Enrichment | `templates/data-enrichment.mdx` | LLM-powered enrichment of existing database records -- read rows, enrich each with an LLM, write results back to Supabase | Applying the data-enrichment workflow template |
|
|
60
|
-
| Template: Email Sender | `templates/email-sender.mdx` | Transactional email via Resend with template support -- send styled emails to one or multiple recipients | Applying the email-sender workflow template |
|
|
61
|
-
| Templates | `templates/index.mdx` | Ready-to-use workflow templates for common automation patterns -- web scraping, data enrichment, email sending, lead scoring, PDF generation, text classification, and recurring jobs | (not specified) |
|
|
62
|
-
| Template: Lead Scorer | `templates/lead-scorer.mdx` | LLM-based lead scoring with Supabase storage -- receive a lead, score it with an LLM, store the result | Applying the lead-scorer workflow template |
|
|
63
|
-
| Template: PDF Generator | `templates/pdf-generator.mdx` | PDF generation from structured data with platform storage upload -- render a PDF from a template and upload to platform storage | Applying the pdf-generator workflow template |
|
|
64
|
-
| Template: Recurring Job | `templates/recurring-job.mdx` | Scheduler-triggered periodic workflow -- run a task on a schedule (daily, weekly, hourly, or custom cron) | Applying the recurring-job workflow template |
|
|
65
|
-
| Template: Text Classifier | `templates/text-classifier.mdx` | Multi-label text classification with structured output -- classify text into predefined categories using an LLM with JSON output | Applying the text-classifier workflow template |
|
|
66
|
-
| Template: Web Scraper | `templates/web-scraper.mdx` | Apify-based web scraper that stores results in Supabase -- fetch structured data from any website via Apify actors | Applying the web-scraper workflow template |
|
|
17
|
+
| Worker Runtime | `../src/worker/index.ts` | Worker runtime entrypoint, adapters, and platform execution surface. | (not specified) |
|
|
@@ -0,0 +1,437 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"packageName": "@elevasis/core",
|
|
6
|
+
"packageDir": "packages/core",
|
|
7
|
+
"subpath": ".",
|
|
8
|
+
"kind": "root",
|
|
9
|
+
"title": "Core",
|
|
10
|
+
"description": "Published core wrapper for the curated contract surface.",
|
|
11
|
+
"group": "Core",
|
|
12
|
+
"order": 1,
|
|
13
|
+
"sourcePath": "packages/core/src/published.ts",
|
|
14
|
+
"publishedExportPath": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"packageName": "@elevasis/core",
|
|
18
|
+
"packageDir": "packages/core",
|
|
19
|
+
"subpath": "./organization-model",
|
|
20
|
+
"kind": "subpath",
|
|
21
|
+
"title": "Organization Model",
|
|
22
|
+
"description": "Published organization-model schema, defaults, resolver, and types.",
|
|
23
|
+
"group": "Organization Model",
|
|
24
|
+
"order": 1,
|
|
25
|
+
"sourcePath": "packages/core/src/organization-model/published.ts",
|
|
26
|
+
"publishedExportPath": "./dist/organization-model/index.js"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"packageName": "@elevasis/sdk",
|
|
30
|
+
"packageDir": "packages/sdk",
|
|
31
|
+
"subpath": ".",
|
|
32
|
+
"kind": "root",
|
|
33
|
+
"title": "SDK",
|
|
34
|
+
"description": "Root SDK types, config, runtime errors, and registry surface.",
|
|
35
|
+
"group": "Getting Started",
|
|
36
|
+
"order": 1,
|
|
37
|
+
"sourcePath": "packages/sdk/src/index.ts",
|
|
38
|
+
"publishedExportPath": "./dist/index.js"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"packageName": "@elevasis/sdk",
|
|
42
|
+
"packageDir": "packages/sdk",
|
|
43
|
+
"subpath": "./worker",
|
|
44
|
+
"kind": "subpath",
|
|
45
|
+
"title": "Worker Runtime",
|
|
46
|
+
"description": "Worker runtime entrypoint, adapters, and platform execution surface.",
|
|
47
|
+
"group": "Runtime",
|
|
48
|
+
"order": 1,
|
|
49
|
+
"sourcePath": "packages/sdk/src/worker/index.ts",
|
|
50
|
+
"publishedExportPath": "./dist/worker/index.js"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"packageName": "@elevasis/ui",
|
|
54
|
+
"packageDir": "packages/ui",
|
|
55
|
+
"subpath": "./components",
|
|
56
|
+
"kind": "subpath",
|
|
57
|
+
"title": "Components",
|
|
58
|
+
"description": "Published UI component barrel for downstream applications.",
|
|
59
|
+
"group": "Components",
|
|
60
|
+
"order": 1,
|
|
61
|
+
"sourcePath": "packages/ui/src/components/index.ts",
|
|
62
|
+
"publishedExportPath": "./dist/components/index.js"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"packageName": "@elevasis/ui",
|
|
66
|
+
"packageDir": "packages/ui",
|
|
67
|
+
"subpath": "./components/navigation",
|
|
68
|
+
"kind": "subpath",
|
|
69
|
+
"title": "Navigation Components",
|
|
70
|
+
"description": "Published navigation component entry for downstream applications.",
|
|
71
|
+
"group": "Components",
|
|
72
|
+
"order": 2,
|
|
73
|
+
"sourcePath": "packages/ui/src/components/navigation/index.ts",
|
|
74
|
+
"publishedExportPath": "./dist/components/navigation/index.js"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"packageName": "@elevasis/ui",
|
|
78
|
+
"packageDir": "packages/ui",
|
|
79
|
+
"subpath": "./components/chat",
|
|
80
|
+
"kind": "subpath",
|
|
81
|
+
"title": "Chat Components",
|
|
82
|
+
"description": "Published chat component entry for downstream applications.",
|
|
83
|
+
"group": "Components",
|
|
84
|
+
"order": 3,
|
|
85
|
+
"sourcePath": "packages/ui/src/components/chat/index.ts",
|
|
86
|
+
"publishedExportPath": "./dist/components/chat/index.js"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"packageName": "@elevasis/ui",
|
|
90
|
+
"packageDir": "packages/ui",
|
|
91
|
+
"subpath": "./layout",
|
|
92
|
+
"kind": "subpath",
|
|
93
|
+
"title": "Layout",
|
|
94
|
+
"description": "Published layout component entry for downstream applications.",
|
|
95
|
+
"group": "Components",
|
|
96
|
+
"order": 4,
|
|
97
|
+
"sourcePath": "packages/ui/src/components/layout/index.ts",
|
|
98
|
+
"publishedExportPath": "./dist/layout/index.js"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"packageName": "@elevasis/ui",
|
|
102
|
+
"packageDir": "packages/ui",
|
|
103
|
+
"subpath": "./charts",
|
|
104
|
+
"kind": "subpath",
|
|
105
|
+
"title": "Charts",
|
|
106
|
+
"description": "Published chart component entry for downstream applications.",
|
|
107
|
+
"group": "Components",
|
|
108
|
+
"order": 5,
|
|
109
|
+
"sourcePath": "packages/ui/src/components/charts/index.ts",
|
|
110
|
+
"publishedExportPath": "./dist/charts/index.js"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"packageName": "@elevasis/ui",
|
|
114
|
+
"packageDir": "packages/ui",
|
|
115
|
+
"subpath": "./features/auth",
|
|
116
|
+
"kind": "subpath",
|
|
117
|
+
"title": "Features Auth",
|
|
118
|
+
"description": "Published auth feature surface for downstream shells.",
|
|
119
|
+
"group": "Features",
|
|
120
|
+
"order": 1,
|
|
121
|
+
"sourcePath": "packages/ui/src/features/auth/index.ts",
|
|
122
|
+
"publishedExportPath": "./dist/features/auth/index.js"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"packageName": "@elevasis/ui",
|
|
126
|
+
"packageDir": "packages/ui",
|
|
127
|
+
"subpath": "./features/crm",
|
|
128
|
+
"kind": "subpath",
|
|
129
|
+
"title": "Features CRM",
|
|
130
|
+
"description": "Published CRM feature surface for downstream shells.",
|
|
131
|
+
"group": "Features",
|
|
132
|
+
"order": 2,
|
|
133
|
+
"sourcePath": "packages/ui/src/features/crm/index.ts",
|
|
134
|
+
"publishedExportPath": "./dist/features/crm/index.js"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"packageName": "@elevasis/ui",
|
|
138
|
+
"packageDir": "packages/ui",
|
|
139
|
+
"subpath": "./features/dashboard",
|
|
140
|
+
"kind": "subpath",
|
|
141
|
+
"title": "Features Dashboard",
|
|
142
|
+
"description": "Published dashboard feature surface for downstream shells.",
|
|
143
|
+
"group": "Features",
|
|
144
|
+
"order": 3,
|
|
145
|
+
"sourcePath": "packages/ui/src/features/dashboard/index.ts",
|
|
146
|
+
"publishedExportPath": "./dist/features/dashboard/index.js"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"packageName": "@elevasis/ui",
|
|
150
|
+
"packageDir": "packages/ui",
|
|
151
|
+
"subpath": "./features/delivery",
|
|
152
|
+
"kind": "subpath",
|
|
153
|
+
"title": "Features Delivery",
|
|
154
|
+
"description": "Published delivery feature surface for downstream shells.",
|
|
155
|
+
"group": "Features",
|
|
156
|
+
"order": 4,
|
|
157
|
+
"sourcePath": "packages/ui/src/features/delivery/index.ts",
|
|
158
|
+
"publishedExportPath": "./dist/features/delivery/index.js"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"packageName": "@elevasis/ui",
|
|
162
|
+
"packageDir": "packages/ui",
|
|
163
|
+
"subpath": "./features/lead-gen",
|
|
164
|
+
"kind": "subpath",
|
|
165
|
+
"title": "Features Lead Gen",
|
|
166
|
+
"description": "Published lead generation feature surface for downstream shells.",
|
|
167
|
+
"group": "Features",
|
|
168
|
+
"order": 5,
|
|
169
|
+
"sourcePath": "packages/ui/src/features/lead-gen/index.ts",
|
|
170
|
+
"publishedExportPath": "./dist/features/lead-gen/index.js"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"packageName": "@elevasis/ui",
|
|
174
|
+
"packageDir": "packages/ui",
|
|
175
|
+
"subpath": "./features/operations",
|
|
176
|
+
"kind": "subpath",
|
|
177
|
+
"title": "Features Operations",
|
|
178
|
+
"description": "Published operations feature surface for downstream shells.",
|
|
179
|
+
"group": "Features",
|
|
180
|
+
"order": 6,
|
|
181
|
+
"sourcePath": "packages/ui/src/features/operations/index.ts",
|
|
182
|
+
"publishedExportPath": "./dist/features/operations/index.js"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"packageName": "@elevasis/ui",
|
|
186
|
+
"packageDir": "packages/ui",
|
|
187
|
+
"subpath": "./features/monitoring",
|
|
188
|
+
"kind": "subpath",
|
|
189
|
+
"title": "Features Monitoring",
|
|
190
|
+
"description": "Published monitoring feature surface for downstream shells.",
|
|
191
|
+
"group": "Features",
|
|
192
|
+
"order": 7,
|
|
193
|
+
"sourcePath": "packages/ui/src/features/monitoring/index.ts",
|
|
194
|
+
"publishedExportPath": "./dist/features/monitoring/index.js"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"packageName": "@elevasis/ui",
|
|
198
|
+
"packageDir": "packages/ui",
|
|
199
|
+
"subpath": "./features/seo",
|
|
200
|
+
"kind": "subpath",
|
|
201
|
+
"title": "Features SEO",
|
|
202
|
+
"description": "Published SEO feature surface for downstream shells.",
|
|
203
|
+
"group": "Features",
|
|
204
|
+
"order": 8,
|
|
205
|
+
"sourcePath": "packages/ui/src/features/seo/index.ts",
|
|
206
|
+
"publishedExportPath": "./dist/features/seo/index.js"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"packageName": "@elevasis/ui",
|
|
210
|
+
"packageDir": "packages/ui",
|
|
211
|
+
"subpath": "./features/settings",
|
|
212
|
+
"kind": "subpath",
|
|
213
|
+
"title": "Features Settings",
|
|
214
|
+
"description": "Published settings feature surface for downstream shells.",
|
|
215
|
+
"group": "Features",
|
|
216
|
+
"order": 9,
|
|
217
|
+
"sourcePath": "packages/ui/src/features/settings/index.ts",
|
|
218
|
+
"publishedExportPath": "./dist/features/settings/index.js"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"packageName": "@elevasis/ui",
|
|
222
|
+
"packageDir": "packages/ui",
|
|
223
|
+
"subpath": "./auth",
|
|
224
|
+
"kind": "subpath",
|
|
225
|
+
"title": "Auth",
|
|
226
|
+
"description": "Published authentication surface for UI integrations.",
|
|
227
|
+
"group": "Foundation",
|
|
228
|
+
"order": 1,
|
|
229
|
+
"sourcePath": "packages/ui/src/auth/index.ts",
|
|
230
|
+
"publishedExportPath": "./dist/auth/index.js"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"packageName": "@elevasis/ui",
|
|
234
|
+
"packageDir": "packages/ui",
|
|
235
|
+
"subpath": "./auth/context",
|
|
236
|
+
"kind": "subpath",
|
|
237
|
+
"title": "Auth Context",
|
|
238
|
+
"description": "Published auth context entry for UI integrations.",
|
|
239
|
+
"group": "Foundation",
|
|
240
|
+
"order": 2,
|
|
241
|
+
"sourcePath": "packages/ui/src/auth/context.ts",
|
|
242
|
+
"publishedExportPath": "./dist/auth/context.js"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"packageName": "@elevasis/ui",
|
|
246
|
+
"packageDir": "packages/ui",
|
|
247
|
+
"subpath": "./sse",
|
|
248
|
+
"kind": "subpath",
|
|
249
|
+
"title": "SSE",
|
|
250
|
+
"description": "Published server-sent events helpers and connection utilities.",
|
|
251
|
+
"group": "Foundation",
|
|
252
|
+
"order": 3,
|
|
253
|
+
"sourcePath": "packages/ui/src/sse/index.ts",
|
|
254
|
+
"publishedExportPath": "./dist/sse/index.js"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"packageName": "@elevasis/ui",
|
|
258
|
+
"packageDir": "packages/ui",
|
|
259
|
+
"subpath": "./initialization",
|
|
260
|
+
"kind": "subpath",
|
|
261
|
+
"title": "Initialization",
|
|
262
|
+
"description": "Published app initialization provider and bootstrap helpers.",
|
|
263
|
+
"group": "Foundation",
|
|
264
|
+
"order": 4,
|
|
265
|
+
"sourcePath": "packages/ui/src/initialization/index.ts",
|
|
266
|
+
"publishedExportPath": "./dist/initialization/index.js"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"packageName": "@elevasis/ui",
|
|
270
|
+
"packageDir": "packages/ui",
|
|
271
|
+
"subpath": "./profile",
|
|
272
|
+
"kind": "subpath",
|
|
273
|
+
"title": "Profile",
|
|
274
|
+
"description": "Published user profile surface for UI applications.",
|
|
275
|
+
"group": "Foundation",
|
|
276
|
+
"order": 5,
|
|
277
|
+
"sourcePath": "packages/ui/src/profile/index.ts",
|
|
278
|
+
"publishedExportPath": "./dist/profile/index.js"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"packageName": "@elevasis/ui",
|
|
282
|
+
"packageDir": "packages/ui",
|
|
283
|
+
"subpath": "./organization",
|
|
284
|
+
"kind": "subpath",
|
|
285
|
+
"title": "Organization",
|
|
286
|
+
"description": "Published organization shell, store, and helper surface.",
|
|
287
|
+
"group": "Foundation",
|
|
288
|
+
"order": 6,
|
|
289
|
+
"sourcePath": "packages/ui/src/organization/index.ts",
|
|
290
|
+
"publishedExportPath": "./dist/organization/index.js"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"packageName": "@elevasis/ui",
|
|
294
|
+
"packageDir": "packages/ui",
|
|
295
|
+
"subpath": "./types",
|
|
296
|
+
"kind": "subpath",
|
|
297
|
+
"title": "Types",
|
|
298
|
+
"description": "Published UI types entry for downstream applications.",
|
|
299
|
+
"group": "Foundation",
|
|
300
|
+
"order": 7,
|
|
301
|
+
"sourcePath": "packages/ui/src/types/index.ts",
|
|
302
|
+
"publishedExportPath": "./dist/types/index.js"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"packageName": "@elevasis/ui",
|
|
306
|
+
"packageDir": "packages/ui",
|
|
307
|
+
"subpath": "./api",
|
|
308
|
+
"kind": "subpath",
|
|
309
|
+
"title": "API",
|
|
310
|
+
"description": "Published API client entry for downstream applications.",
|
|
311
|
+
"group": "Foundation",
|
|
312
|
+
"order": 8,
|
|
313
|
+
"sourcePath": "packages/ui/src/api/index.ts",
|
|
314
|
+
"publishedExportPath": "./dist/api/index.js"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"packageName": "@elevasis/ui",
|
|
318
|
+
"packageDir": "packages/ui",
|
|
319
|
+
"subpath": "./utils",
|
|
320
|
+
"kind": "subpath",
|
|
321
|
+
"title": "Utils",
|
|
322
|
+
"description": "Published utility entry for downstream applications.",
|
|
323
|
+
"group": "Foundation",
|
|
324
|
+
"order": 9,
|
|
325
|
+
"sourcePath": "packages/ui/src/utils/index.ts",
|
|
326
|
+
"publishedExportPath": "./dist/utils/index.js"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"packageName": "@elevasis/ui",
|
|
330
|
+
"packageDir": "packages/ui",
|
|
331
|
+
"subpath": "./execution",
|
|
332
|
+
"kind": "subpath",
|
|
333
|
+
"title": "Execution",
|
|
334
|
+
"description": "Published execution visualization and helper entry.",
|
|
335
|
+
"group": "Foundation",
|
|
336
|
+
"order": 10,
|
|
337
|
+
"sourcePath": "packages/ui/src/execution/index.ts",
|
|
338
|
+
"publishedExportPath": "./dist/execution/index.js"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"packageName": "@elevasis/ui",
|
|
342
|
+
"packageDir": "packages/ui",
|
|
343
|
+
"subpath": "./router",
|
|
344
|
+
"kind": "subpath",
|
|
345
|
+
"title": "Router",
|
|
346
|
+
"description": "Published router entry for downstream applications.",
|
|
347
|
+
"group": "Foundation",
|
|
348
|
+
"order": 11,
|
|
349
|
+
"sourcePath": "packages/ui/src/router/index.ts",
|
|
350
|
+
"publishedExportPath": "./dist/router/index.js"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"packageName": "@elevasis/ui",
|
|
354
|
+
"packageDir": "packages/ui",
|
|
355
|
+
"subpath": "./router/context",
|
|
356
|
+
"kind": "subpath",
|
|
357
|
+
"title": "Router Context",
|
|
358
|
+
"description": "Published router context entry for downstream applications.",
|
|
359
|
+
"group": "Foundation",
|
|
360
|
+
"order": 12,
|
|
361
|
+
"sourcePath": "packages/ui/src/router/context.ts",
|
|
362
|
+
"publishedExportPath": "./dist/router/context.js"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"packageName": "@elevasis/ui",
|
|
366
|
+
"packageDir": "packages/ui",
|
|
367
|
+
"subpath": "./zustand",
|
|
368
|
+
"kind": "subpath",
|
|
369
|
+
"title": "Zustand",
|
|
370
|
+
"description": "Published Zustand slice entry for downstream applications.",
|
|
371
|
+
"group": "Foundation",
|
|
372
|
+
"order": 13,
|
|
373
|
+
"sourcePath": "packages/ui/src/zustand/index.ts",
|
|
374
|
+
"publishedExportPath": "./dist/zustand/index.js"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"packageName": "@elevasis/ui",
|
|
378
|
+
"packageDir": "packages/ui",
|
|
379
|
+
"subpath": "./hooks",
|
|
380
|
+
"kind": "subpath",
|
|
381
|
+
"title": "Hooks",
|
|
382
|
+
"description": "Headless hooks surface for executions, sessions, observability, and operations.",
|
|
383
|
+
"group": "Hooks",
|
|
384
|
+
"order": 1,
|
|
385
|
+
"sourcePath": "packages/ui/src/hooks/published.ts",
|
|
386
|
+
"publishedExportPath": "./dist/hooks/published.js"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"packageName": "@elevasis/ui",
|
|
390
|
+
"packageDir": "packages/ui",
|
|
391
|
+
"subpath": "./provider",
|
|
392
|
+
"kind": "subpath",
|
|
393
|
+
"title": "Provider",
|
|
394
|
+
"description": "Published provider and feature-shell contract for downstream apps.",
|
|
395
|
+
"group": "Provider",
|
|
396
|
+
"order": 1,
|
|
397
|
+
"sourcePath": "packages/ui/src/provider/published.ts",
|
|
398
|
+
"publishedExportPath": "./dist/provider/published.js"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"packageName": "@elevasis/ui",
|
|
402
|
+
"packageDir": "packages/ui",
|
|
403
|
+
"subpath": "./provider/ui",
|
|
404
|
+
"kind": "subpath",
|
|
405
|
+
"title": "Provider UI",
|
|
406
|
+
"description": "Published provider UI entry for downstream applications.",
|
|
407
|
+
"group": "Provider",
|
|
408
|
+
"order": 2,
|
|
409
|
+
"sourcePath": "packages/ui/src/provider/index.ts",
|
|
410
|
+
"publishedExportPath": "./dist/provider/index.js"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"packageName": "@elevasis/ui",
|
|
414
|
+
"packageDir": "packages/ui",
|
|
415
|
+
"subpath": "./theme",
|
|
416
|
+
"kind": "subpath",
|
|
417
|
+
"title": "Theme",
|
|
418
|
+
"description": "Published theme entry for downstream applications.",
|
|
419
|
+
"group": "Visual",
|
|
420
|
+
"order": 1,
|
|
421
|
+
"sourcePath": "packages/ui/src/theme/index.ts",
|
|
422
|
+
"publishedExportPath": "./dist/theme/index.js"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"packageName": "@elevasis/ui",
|
|
426
|
+
"packageDir": "packages/ui",
|
|
427
|
+
"subpath": "./graph",
|
|
428
|
+
"kind": "subpath",
|
|
429
|
+
"title": "Graph",
|
|
430
|
+
"description": "Published graph helper and visualization entry.",
|
|
431
|
+
"group": "Visual",
|
|
432
|
+
"order": 2,
|
|
433
|
+
"sourcePath": "packages/ui/src/graph/index.ts",
|
|
434
|
+
"publishedExportPath": "./dist/graph/index.js"
|
|
435
|
+
}
|
|
436
|
+
]
|
|
437
|
+
}
|