@elevasis/sdk 1.3.0 → 1.5.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.
Files changed (50) hide show
  1. package/dist/cli.cjs +75 -8
  2. package/dist/index.d.ts +1464 -749
  3. package/dist/index.js +74 -7
  4. package/dist/types/worker/adapters/crm.d.ts +20 -0
  5. package/dist/types/worker/adapters/index.d.ts +2 -0
  6. package/dist/types/worker/adapters/projects.d.ts +20 -0
  7. package/dist/worker/index.js +41 -1
  8. package/package.json +2 -2
  9. package/reference/_navigation.md +103 -5
  10. package/reference/_reference-manifest.json +72 -0
  11. package/reference/deployment/provided-features.mdx +64 -25
  12. package/reference/framework/index.mdx +2 -2
  13. package/reference/framework/project-structure.mdx +10 -8
  14. package/reference/index.mdx +3 -3
  15. package/reference/packages/core/src/README.md +34 -0
  16. package/reference/packages/core/src/organization-model/README.md +94 -0
  17. package/reference/packages/ui/src/api/README.md +18 -0
  18. package/reference/packages/ui/src/auth/README.md +18 -0
  19. package/reference/packages/ui/src/components/README.md +24 -0
  20. package/reference/packages/ui/src/execution/README.md +16 -0
  21. package/reference/packages/ui/src/features/README.md +28 -0
  22. package/reference/packages/ui/src/graph/README.md +16 -0
  23. package/reference/packages/ui/src/hooks/README.md +24 -0
  24. package/reference/packages/ui/src/initialization/README.md +19 -0
  25. package/reference/packages/ui/src/organization/README.md +18 -0
  26. package/reference/packages/ui/src/profile/README.md +19 -0
  27. package/reference/packages/ui/src/provider/README.md +31 -0
  28. package/reference/packages/ui/src/router/README.md +18 -0
  29. package/reference/packages/ui/src/sse/README.md +13 -0
  30. package/reference/packages/ui/src/theme/README.md +23 -0
  31. package/reference/packages/ui/src/types/README.md +16 -0
  32. package/reference/packages/ui/src/utils/README.md +18 -0
  33. package/reference/packages/ui/src/zustand/README.md +18 -0
  34. package/reference/resources/patterns.mdx +54 -8
  35. package/reference/scaffold/core/organization-graph.mdx +262 -0
  36. package/reference/scaffold/core/organization-model.mdx +257 -0
  37. package/reference/scaffold/index.mdx +59 -0
  38. package/reference/scaffold/operations/workflow-recipes.md +419 -0
  39. package/reference/scaffold/recipes/add-a-feature.md +142 -0
  40. package/reference/scaffold/recipes/add-a-resource.md +163 -0
  41. package/reference/scaffold/recipes/gate-by-feature-or-admin.md +152 -0
  42. package/reference/scaffold/recipes/index.md +32 -0
  43. package/reference/scaffold/reference/contracts.md +1044 -0
  44. package/reference/scaffold/reference/feature-registry.md +30 -0
  45. package/reference/scaffold/reference/glossary.md +88 -0
  46. package/reference/scaffold/ui/composition-extensibility.mdx +216 -0
  47. package/reference/scaffold/ui/customization.md +239 -0
  48. package/reference/scaffold/ui/feature-flags-and-gating.md +265 -0
  49. package/reference/scaffold/ui/feature-shell.mdx +241 -0
  50. package/reference/scaffold/ui/recipes.md +418 -0
package/dist/index.js CHANGED
@@ -3200,6 +3200,71 @@ var ResourceRegistry = class {
3200
3200
  validateRelationships(orgName, resources);
3201
3201
  }
3202
3202
  }
3203
+ /**
3204
+ * Get the remote resource IDs currently registered for an organization.
3205
+ * Used to validate redeployments against the post-swap state before any
3206
+ * live registry mutation occurs.
3207
+ */
3208
+ getRemoteResourceIds(orgName) {
3209
+ const prefix = `${orgName}/`;
3210
+ const remoteIds = /* @__PURE__ */ new Set();
3211
+ for (const key of this.remoteResources.keys()) {
3212
+ if (key.startsWith(prefix)) {
3213
+ remoteIds.add(key.slice(prefix.length));
3214
+ }
3215
+ }
3216
+ return remoteIds;
3217
+ }
3218
+ /**
3219
+ * Build the "static + surviving" baseline for registration validation.
3220
+ * On redeploy, this strips the currently remote-owned resources and
3221
+ * deployment-owned metadata so validation reflects the state after swap.
3222
+ */
3223
+ buildRegistrationBase(orgName) {
3224
+ const existingOrg = this.registry[orgName];
3225
+ if (!existingOrg) return void 0;
3226
+ const remoteIds = this.getRemoteResourceIds(orgName);
3227
+ if (remoteIds.size === 0) return existingOrg;
3228
+ const relationships = existingOrg.relationships ? Object.fromEntries(Object.entries(existingOrg.relationships).filter(([resourceId]) => !remoteIds.has(resourceId))) : void 0;
3229
+ return {
3230
+ ...existingOrg,
3231
+ version: existingOrg.version ?? "0.0.0",
3232
+ workflows: (existingOrg.workflows ?? []).filter((w) => !remoteIds.has(w.config.resourceId)),
3233
+ agents: (existingOrg.agents ?? []).filter((a) => !remoteIds.has(a.config.resourceId)),
3234
+ triggers: void 0,
3235
+ integrations: void 0,
3236
+ humanCheckpoints: void 0,
3237
+ externalResources: void 0,
3238
+ relationships: relationships && Object.keys(relationships).length > 0 ? relationships : void 0
3239
+ };
3240
+ }
3241
+ /**
3242
+ * Validate the registry state that would exist after registration succeeds.
3243
+ * This runs before any live mutation so invalid redeploys preserve the
3244
+ * currently active remote resources.
3245
+ */
3246
+ validateRegistrationCandidate(orgName, incoming) {
3247
+ const base = this.buildRegistrationBase(orgName);
3248
+ const candidate = base ? {
3249
+ ...base,
3250
+ version: incoming.version ?? base.version ?? "0.0.0",
3251
+ workflows: [...base.workflows ?? [], ...incoming.workflows ?? []],
3252
+ agents: [...base.agents ?? [], ...incoming.agents ?? []],
3253
+ triggers: incoming.triggers,
3254
+ integrations: incoming.integrations,
3255
+ humanCheckpoints: incoming.humanCheckpoints,
3256
+ externalResources: incoming.externalResources,
3257
+ relationships: incoming.relationships ? {
3258
+ ...base.relationships ?? {},
3259
+ ...incoming.relationships
3260
+ } : base.relationships
3261
+ } : {
3262
+ ...incoming,
3263
+ version: incoming.version ?? "0.0.0"
3264
+ };
3265
+ validateDeploymentSpec(orgName, candidate);
3266
+ validateRelationships(orgName, candidate);
3267
+ }
3203
3268
  /**
3204
3269
  * Get a resource definition by ID
3205
3270
  * Returns full definition (WorkflowDefinition or AgentDefinition)
@@ -3308,13 +3373,10 @@ var ResourceRegistry = class {
3308
3373
  );
3309
3374
  }
3310
3375
  }
3311
- if (this.isRemote(orgName)) {
3312
- this.unregisterOrganization(orgName);
3313
- }
3314
- const existingOrg = this.registry[orgName];
3315
- if (existingOrg) {
3316
- const staticWorkflowIds = new Set((existingOrg.workflows ?? []).map((w) => w.config.resourceId));
3317
- const staticAgentIds = new Set((existingOrg.agents ?? []).map((a) => a.config.resourceId));
3376
+ const validationBase = this.buildRegistrationBase(orgName);
3377
+ if (validationBase) {
3378
+ const staticWorkflowIds = new Set((validationBase.workflows ?? []).map((w) => w.config.resourceId));
3379
+ const staticAgentIds = new Set((validationBase.agents ?? []).map((a) => a.config.resourceId));
3318
3380
  for (const id of incomingIds) {
3319
3381
  if (staticWorkflowIds.has(id) || staticAgentIds.has(id)) {
3320
3382
  throw new Error(
@@ -3323,6 +3385,11 @@ var ResourceRegistry = class {
3323
3385
  }
3324
3386
  }
3325
3387
  }
3388
+ this.validateRegistrationCandidate(orgName, org);
3389
+ if (this.isRemote(orgName)) {
3390
+ this.unregisterOrganization(orgName);
3391
+ }
3392
+ const existingOrg = this.registry[orgName];
3326
3393
  if (existingOrg) {
3327
3394
  existingOrg.workflows = [...existingOrg.workflows ?? [], ...org.workflows ?? []];
3328
3395
  existingOrg.agents = [...existingOrg.agents ?? [], ...org.agents ?? []];
@@ -0,0 +1,20 @@
1
+ /**
2
+ * CRM Platform Tool Adapter
3
+ *
4
+ * Typed wrapper over platform.call() for deal and pipeline operations.
5
+ * Singleton export -- no credential needed (platform tool).
6
+ */
7
+ import { type TypedAdapter } from './create-adapter.js';
8
+ import type { CrmToolMap } from '../../types/index.js';
9
+ /**
10
+ * Typed crm adapter for recent activity, deal reads, stage changes, notes, tasks, and cleanup.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * import { crm } from '@elevasis/sdk/worker'
15
+ *
16
+ * const deals = await crm.listDeals({ stage: 'proposal' })
17
+ * const activity = await crm.getRecentActivity({ limit: 10 })
18
+ * ```
19
+ */
20
+ export declare const crm: TypedAdapter<CrmToolMap>;
@@ -23,6 +23,8 @@ 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 { projects } from './projects.js';
27
+ export { crm } from './crm.js';
26
28
  export { list } from './list.js';
27
29
  export { pdf } from './pdf.js';
28
30
  export { approval } from './approval.js';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Projects Platform Tool Adapter
3
+ *
4
+ * Typed wrapper over platform.call() for delivery project operations.
5
+ * Singleton export -- no credential needed (platform tool).
6
+ */
7
+ import { type TypedAdapter } from './create-adapter.js';
8
+ import type { ProjectsToolMap } from '../../types/index.js';
9
+ /**
10
+ * Typed projects adapter for project, milestone, task, note, and resume-context operations.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * import { projects } from '@elevasis/sdk/worker'
15
+ *
16
+ * const activeProjects = await projects.listProjects({ kind: 'internal' })
17
+ * const project = await projects.getProject({ id: '...' })
18
+ * ```
19
+ */
20
+ export declare const projects: TypedAdapter<ProjectsToolMap>;
@@ -5012,6 +5012,46 @@ var acqDb = createAdapter("acqDb", [
5012
5012
  "upsertSocialPosts"
5013
5013
  ]);
5014
5014
 
5015
+ // src/worker/adapters/projects.ts
5016
+ var projects = createAdapter("projects", [
5017
+ "listProjects",
5018
+ "getProject",
5019
+ "createProject",
5020
+ "updateProject",
5021
+ "deleteProject",
5022
+ "listMilestones",
5023
+ "createMilestone",
5024
+ "updateMilestone",
5025
+ "deleteMilestone",
5026
+ "listTasks",
5027
+ "getTask",
5028
+ "createTask",
5029
+ "updateTask",
5030
+ "deleteTask",
5031
+ "mergeTaskResumeContext",
5032
+ "listNotes",
5033
+ "createNote",
5034
+ "updateNote",
5035
+ "deleteNote"
5036
+ ]);
5037
+
5038
+ // src/worker/adapters/crm.ts
5039
+ var crm = createAdapter("crm", [
5040
+ "getRecentActivity",
5041
+ "listDeals",
5042
+ "getDeal",
5043
+ "getDealByEmail",
5044
+ "updateDealStage",
5045
+ "createDealNote",
5046
+ "listDealNotes",
5047
+ "createDealTask",
5048
+ "listDealTasks",
5049
+ "listDealTasksDue",
5050
+ "completeDealTask",
5051
+ "recordActivity",
5052
+ "deleteDeal"
5053
+ ]);
5054
+
5015
5055
  // src/worker/adapters/list.ts
5016
5056
  var list = createAdapter("list", [
5017
5057
  "getConfig",
@@ -5392,4 +5432,4 @@ function startWorker(org) {
5392
5432
  });
5393
5433
  }
5394
5434
 
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 };
5435
+ export { PlatformToolError, acqDb, approval, createAdapter, createAnymailfinderAdapter, createApifyAdapter, createAttioAdapter, createDropboxAdapter, createGmailAdapter, createGoogleSheetsAdapter, createInstantlyAdapter, createMillionVerifierAdapter, createResendAdapter, createSignatureApiAdapter, createStripeAdapter, createTombaAdapter, crm, email, execution, list, llm, notifications, pdf, platform, projects, scheduler, startWorker, storage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "type": "module",
6
6
  "bin": {
@@ -44,7 +44,7 @@
44
44
  "tsup": "^8.0.0",
45
45
  "typescript": "5.9.2",
46
46
  "zod": "^4.1.0",
47
- "@repo/core": "0.0.0",
47
+ "@repo/core": "0.2.0",
48
48
  "@repo/typescript-config": "0.0.0"
49
49
  },
50
50
  "scripts": {
@@ -2,16 +2,114 @@
2
2
 
3
3
  Auto-generated from the package reference manifests.
4
4
 
5
- Package entries indexed: 2.
5
+ Package entries indexed: 36.
6
6
 
7
- ## Getting Started
7
+ ## @elevasis/core / Core
8
8
 
9
9
  | Resource | Location | Description | When to Load |
10
10
  | --- | --- | --- | --- |
11
- | SDK | `../src/index.ts` | Root SDK types, config, runtime errors, and registry surface. | (not specified) |
11
+ | Core | `packages/core/src/README.md` | Published core wrapper for the curated contract surface. | (not specified) |
12
12
 
13
- ## Runtime
13
+ ## @elevasis/core / Organization Model
14
14
 
15
15
  | Resource | Location | Description | When to Load |
16
16
  | --- | --- | --- | --- |
17
- | Worker Runtime | `../src/worker/index.ts` | Worker runtime entrypoint, adapters, and platform execution surface. | (not specified) |
17
+ | Organization Model | `packages/core/src/organization-model/README.md` | Published organization-model schema, defaults, resolver, and types. | (not specified) |
18
+
19
+ ## @elevasis/sdk / Getting Started
20
+
21
+ | Resource | Location | Description | When to Load |
22
+ | --- | --- | --- | --- |
23
+ | SDK | `index.mdx` | Root SDK types, config, runtime errors, and registry surface. | (not specified) |
24
+
25
+ ## @elevasis/sdk / Runtime
26
+
27
+ | Resource | Location | Description | When to Load |
28
+ | --- | --- | --- | --- |
29
+ | Worker Runtime | `runtime.mdx` | Worker runtime entrypoint, adapters, and platform execution surface. | (not specified) |
30
+
31
+ ## @elevasis/ui / Components
32
+
33
+ | Resource | Location | Description | When to Load |
34
+ | --- | --- | --- | --- |
35
+ | Components | `packages/ui/src/components/README.md` | Published UI component barrel for downstream applications. | (not specified) |
36
+ | Navigation Components | `packages/ui/src/components/README.md` | Published navigation component entry for downstream applications. | (not specified) |
37
+ | Chat Components | `packages/ui/src/components/README.md` | Published chat component entry for downstream applications. | (not specified) |
38
+ | Layout | `packages/ui/src/components/README.md` | Published layout component entry for downstream applications. | (not specified) |
39
+ | Charts | `packages/ui/src/components/README.md` | Published chart component entry for downstream applications. | (not specified) |
40
+
41
+ ## @elevasis/ui / Features
42
+
43
+ | Resource | Location | Description | When to Load |
44
+ | --- | --- | --- | --- |
45
+ | Features Auth | `packages/ui/src/features/README.md` | Published auth feature surface for downstream shells. | (not specified) |
46
+ | Features CRM | `packages/ui/src/features/README.md` | Published CRM feature surface for downstream shells. | (not specified) |
47
+ | Features Dashboard | `packages/ui/src/features/README.md` | Published dashboard feature surface for downstream shells. | (not specified) |
48
+ | Features Delivery | `packages/ui/src/features/README.md` | Published delivery feature surface for downstream shells. | (not specified) |
49
+ | Features Lead Gen | `packages/ui/src/features/README.md` | Published lead generation feature surface for downstream shells. | (not specified) |
50
+ | Features Operations | `packages/ui/src/features/README.md` | Published operations feature surface for downstream shells. | (not specified) |
51
+ | Features Monitoring | `packages/ui/src/features/README.md` | Published monitoring feature surface for downstream shells. | (not specified) |
52
+ | Features SEO | `packages/ui/src/features/README.md` | Published SEO feature surface for downstream shells. | (not specified) |
53
+ | Features Settings | `packages/ui/src/features/README.md` | Published settings feature surface for downstream shells. | (not specified) |
54
+
55
+ ## @elevasis/ui / Foundation
56
+
57
+ | Resource | Location | Description | When to Load |
58
+ | --- | --- | --- | --- |
59
+ | Auth | `packages/ui/src/auth/README.md` | Published authentication surface for UI integrations. | (not specified) |
60
+ | Auth Context | `packages/ui/src/auth/README.md` | Published auth context entry for UI integrations. | (not specified) |
61
+ | SSE | `packages/ui/src/sse/README.md` | Published server-sent events helpers and connection utilities. | (not specified) |
62
+ | Initialization | `packages/ui/src/initialization/README.md` | Published app initialization provider and bootstrap helpers. | (not specified) |
63
+ | Profile | `packages/ui/src/profile/README.md` | Published user profile surface for UI applications. | (not specified) |
64
+ | Organization | `packages/ui/src/organization/README.md` | Published organization shell, store, and helper surface. | (not specified) |
65
+ | Types | `packages/ui/src/types/README.md` | Published UI types entry for downstream applications. | (not specified) |
66
+ | API | `packages/ui/src/api/README.md` | Published API client entry for downstream applications. | (not specified) |
67
+ | Utils | `packages/ui/src/utils/README.md` | Published utility entry for downstream applications. | (not specified) |
68
+ | Execution | `packages/ui/src/execution/README.md` | Published execution visualization and helper entry. | (not specified) |
69
+ | Router | `packages/ui/src/router/README.md` | Published router entry for downstream applications. | (not specified) |
70
+ | Router Context | `packages/ui/src/router/README.md` | Published router context entry for downstream applications. | (not specified) |
71
+ | Zustand | `packages/ui/src/zustand/README.md` | Published Zustand slice entry for downstream applications. | (not specified) |
72
+
73
+ ## @elevasis/ui / Hooks
74
+
75
+ | Resource | Location | Description | When to Load |
76
+ | --- | --- | --- | --- |
77
+ | Hooks | `packages/ui/src/hooks/README.md` | Headless hooks surface for executions, sessions, observability, and operations. | (not specified) |
78
+
79
+ ## @elevasis/ui / Provider
80
+
81
+ | Resource | Location | Description | When to Load |
82
+ | --- | --- | --- | --- |
83
+ | Provider | `packages/ui/src/provider/README.md` | Published provider and feature-shell contract for downstream apps. | (not specified) |
84
+ | Provider UI | `packages/ui/src/provider/README.md` | Published provider UI entry for downstream applications. | (not specified) |
85
+
86
+ ## @elevasis/ui / Visual
87
+
88
+ | Resource | Location | Description | When to Load |
89
+ | --- | --- | --- | --- |
90
+ | Theme | `packages/ui/src/theme/README.md` | Published theme entry for downstream applications. | (not specified) |
91
+ | Graph | `packages/ui/src/graph/README.md` | Published graph helper and visualization entry. | (not specified) |
92
+
93
+ ---
94
+
95
+ ## Scaffold Reference
96
+
97
+ Universal scaffold documentation for all SDK projects. Source locations are co-located with owning packages; the SDK build copies everything into `reference/scaffold/`.
98
+
99
+ | Document | Bundle Path | Description |
100
+ | --- | --- | --- |
101
+ | Scaffold Index | `scaffold/index.mdx` | Discovery entry point and navigation map |
102
+ | Add a Feature | `scaffold/recipes/add-a-feature.md` | End-to-end feature addition recipe |
103
+ | Add a Resource | `scaffold/recipes/add-a-resource.md` | Workflow/agent authoring recipe |
104
+ | Gate by Feature/Admin | `scaffold/recipes/gate-by-feature-or-admin.md` | Access control patterns |
105
+ | UI Recipes | `scaffold/ui/recipes.md` | Copy-paste UI recipes |
106
+ | Feature Flags & Gating | `scaffold/ui/feature-flags-and-gating.md` | Three-concept gating model |
107
+ | Customizing Features | `scaffold/ui/customization.md` | Sidebar composition patterns |
108
+ | Feature Shell | `scaffold/ui/feature-shell.mdx` | FeatureModule manifest and provider |
109
+ | Composition & Extensibility | `scaffold/ui/composition-extensibility.mdx` | Layout primitives and overrides |
110
+ | Organization Model | `scaffold/core/organization-model.mdx` | Semantic contract and schema |
111
+ | Organization Graph | `scaffold/core/organization-graph.mdx` | Graph derivation and Cytoscape |
112
+ | Workflow Recipes | `scaffold/operations/workflow-recipes.md` | Workflow anatomy and adapters |
113
+ | Glossary | `scaffold/reference/glossary.md` | Term definitions |
114
+ | Contracts | `scaffold/reference/contracts.md` | Auto-generated type contracts |
115
+ | Feature Registry | `scaffold/reference/feature-registry.md` | Auto-generated feature catalog |
@@ -11,6 +11,8 @@
11
11
  "group": "Core",
12
12
  "order": 1,
13
13
  "sourcePath": "packages/core/src/published.ts",
14
+ "docPath": "packages/core/src/README.md",
15
+ "referencePath": "packages/core/src/README.md",
14
16
  "publishedExportPath": "./dist/index.js"
15
17
  },
16
18
  {
@@ -23,6 +25,8 @@
23
25
  "group": "Organization Model",
24
26
  "order": 1,
25
27
  "sourcePath": "packages/core/src/organization-model/published.ts",
28
+ "docPath": "packages/core/src/organization-model/README.md",
29
+ "referencePath": "packages/core/src/organization-model/README.md",
26
30
  "publishedExportPath": "./dist/organization-model/index.js"
27
31
  },
28
32
  {
@@ -35,6 +39,8 @@
35
39
  "group": "Getting Started",
36
40
  "order": 1,
37
41
  "sourcePath": "packages/sdk/src/index.ts",
42
+ "docPath": "apps/docs/content/docs/sdk/index.mdx",
43
+ "referencePath": "index.mdx",
38
44
  "publishedExportPath": "./dist/index.js"
39
45
  },
40
46
  {
@@ -47,6 +53,8 @@
47
53
  "group": "Runtime",
48
54
  "order": 1,
49
55
  "sourcePath": "packages/sdk/src/worker/index.ts",
56
+ "docPath": "apps/docs/content/docs/sdk/runtime.mdx",
57
+ "referencePath": "runtime.mdx",
50
58
  "publishedExportPath": "./dist/worker/index.js"
51
59
  },
52
60
  {
@@ -59,6 +67,8 @@
59
67
  "group": "Components",
60
68
  "order": 1,
61
69
  "sourcePath": "packages/ui/src/components/index.ts",
70
+ "docPath": "packages/ui/src/components/README.md",
71
+ "referencePath": "packages/ui/src/components/README.md",
62
72
  "publishedExportPath": "./dist/components/index.js"
63
73
  },
64
74
  {
@@ -71,6 +81,8 @@
71
81
  "group": "Components",
72
82
  "order": 2,
73
83
  "sourcePath": "packages/ui/src/components/navigation/index.ts",
84
+ "docPath": "packages/ui/src/components/README.md",
85
+ "referencePath": "packages/ui/src/components/README.md",
74
86
  "publishedExportPath": "./dist/components/navigation/index.js"
75
87
  },
76
88
  {
@@ -83,6 +95,8 @@
83
95
  "group": "Components",
84
96
  "order": 3,
85
97
  "sourcePath": "packages/ui/src/components/chat/index.ts",
98
+ "docPath": "packages/ui/src/components/README.md",
99
+ "referencePath": "packages/ui/src/components/README.md",
86
100
  "publishedExportPath": "./dist/components/chat/index.js"
87
101
  },
88
102
  {
@@ -95,6 +109,8 @@
95
109
  "group": "Components",
96
110
  "order": 4,
97
111
  "sourcePath": "packages/ui/src/components/layout/index.ts",
112
+ "docPath": "packages/ui/src/components/README.md",
113
+ "referencePath": "packages/ui/src/components/README.md",
98
114
  "publishedExportPath": "./dist/layout/index.js"
99
115
  },
100
116
  {
@@ -107,6 +123,8 @@
107
123
  "group": "Components",
108
124
  "order": 5,
109
125
  "sourcePath": "packages/ui/src/components/charts/index.ts",
126
+ "docPath": "packages/ui/src/components/README.md",
127
+ "referencePath": "packages/ui/src/components/README.md",
110
128
  "publishedExportPath": "./dist/charts/index.js"
111
129
  },
112
130
  {
@@ -119,6 +137,8 @@
119
137
  "group": "Features",
120
138
  "order": 1,
121
139
  "sourcePath": "packages/ui/src/features/auth/index.ts",
140
+ "docPath": "packages/ui/src/features/README.md",
141
+ "referencePath": "packages/ui/src/features/README.md",
122
142
  "publishedExportPath": "./dist/features/auth/index.js"
123
143
  },
124
144
  {
@@ -131,6 +151,8 @@
131
151
  "group": "Features",
132
152
  "order": 2,
133
153
  "sourcePath": "packages/ui/src/features/crm/index.ts",
154
+ "docPath": "packages/ui/src/features/README.md",
155
+ "referencePath": "packages/ui/src/features/README.md",
134
156
  "publishedExportPath": "./dist/features/crm/index.js"
135
157
  },
136
158
  {
@@ -143,6 +165,8 @@
143
165
  "group": "Features",
144
166
  "order": 3,
145
167
  "sourcePath": "packages/ui/src/features/dashboard/index.ts",
168
+ "docPath": "packages/ui/src/features/README.md",
169
+ "referencePath": "packages/ui/src/features/README.md",
146
170
  "publishedExportPath": "./dist/features/dashboard/index.js"
147
171
  },
148
172
  {
@@ -155,6 +179,8 @@
155
179
  "group": "Features",
156
180
  "order": 4,
157
181
  "sourcePath": "packages/ui/src/features/delivery/index.ts",
182
+ "docPath": "packages/ui/src/features/README.md",
183
+ "referencePath": "packages/ui/src/features/README.md",
158
184
  "publishedExportPath": "./dist/features/delivery/index.js"
159
185
  },
160
186
  {
@@ -167,6 +193,8 @@
167
193
  "group": "Features",
168
194
  "order": 5,
169
195
  "sourcePath": "packages/ui/src/features/lead-gen/index.ts",
196
+ "docPath": "packages/ui/src/features/README.md",
197
+ "referencePath": "packages/ui/src/features/README.md",
170
198
  "publishedExportPath": "./dist/features/lead-gen/index.js"
171
199
  },
172
200
  {
@@ -179,6 +207,8 @@
179
207
  "group": "Features",
180
208
  "order": 6,
181
209
  "sourcePath": "packages/ui/src/features/operations/index.ts",
210
+ "docPath": "packages/ui/src/features/README.md",
211
+ "referencePath": "packages/ui/src/features/README.md",
182
212
  "publishedExportPath": "./dist/features/operations/index.js"
183
213
  },
184
214
  {
@@ -191,6 +221,8 @@
191
221
  "group": "Features",
192
222
  "order": 7,
193
223
  "sourcePath": "packages/ui/src/features/monitoring/index.ts",
224
+ "docPath": "packages/ui/src/features/README.md",
225
+ "referencePath": "packages/ui/src/features/README.md",
194
226
  "publishedExportPath": "./dist/features/monitoring/index.js"
195
227
  },
196
228
  {
@@ -203,6 +235,8 @@
203
235
  "group": "Features",
204
236
  "order": 8,
205
237
  "sourcePath": "packages/ui/src/features/seo/index.ts",
238
+ "docPath": "packages/ui/src/features/README.md",
239
+ "referencePath": "packages/ui/src/features/README.md",
206
240
  "publishedExportPath": "./dist/features/seo/index.js"
207
241
  },
208
242
  {
@@ -215,6 +249,8 @@
215
249
  "group": "Features",
216
250
  "order": 9,
217
251
  "sourcePath": "packages/ui/src/features/settings/index.ts",
252
+ "docPath": "packages/ui/src/features/README.md",
253
+ "referencePath": "packages/ui/src/features/README.md",
218
254
  "publishedExportPath": "./dist/features/settings/index.js"
219
255
  },
220
256
  {
@@ -227,6 +263,8 @@
227
263
  "group": "Foundation",
228
264
  "order": 1,
229
265
  "sourcePath": "packages/ui/src/auth/index.ts",
266
+ "docPath": "packages/ui/src/auth/README.md",
267
+ "referencePath": "packages/ui/src/auth/README.md",
230
268
  "publishedExportPath": "./dist/auth/index.js"
231
269
  },
232
270
  {
@@ -239,6 +277,8 @@
239
277
  "group": "Foundation",
240
278
  "order": 2,
241
279
  "sourcePath": "packages/ui/src/auth/context.ts",
280
+ "docPath": "packages/ui/src/auth/README.md",
281
+ "referencePath": "packages/ui/src/auth/README.md",
242
282
  "publishedExportPath": "./dist/auth/context.js"
243
283
  },
244
284
  {
@@ -251,6 +291,8 @@
251
291
  "group": "Foundation",
252
292
  "order": 3,
253
293
  "sourcePath": "packages/ui/src/sse/index.ts",
294
+ "docPath": "packages/ui/src/sse/README.md",
295
+ "referencePath": "packages/ui/src/sse/README.md",
254
296
  "publishedExportPath": "./dist/sse/index.js"
255
297
  },
256
298
  {
@@ -263,6 +305,8 @@
263
305
  "group": "Foundation",
264
306
  "order": 4,
265
307
  "sourcePath": "packages/ui/src/initialization/index.ts",
308
+ "docPath": "packages/ui/src/initialization/README.md",
309
+ "referencePath": "packages/ui/src/initialization/README.md",
266
310
  "publishedExportPath": "./dist/initialization/index.js"
267
311
  },
268
312
  {
@@ -275,6 +319,8 @@
275
319
  "group": "Foundation",
276
320
  "order": 5,
277
321
  "sourcePath": "packages/ui/src/profile/index.ts",
322
+ "docPath": "packages/ui/src/profile/README.md",
323
+ "referencePath": "packages/ui/src/profile/README.md",
278
324
  "publishedExportPath": "./dist/profile/index.js"
279
325
  },
280
326
  {
@@ -287,6 +333,8 @@
287
333
  "group": "Foundation",
288
334
  "order": 6,
289
335
  "sourcePath": "packages/ui/src/organization/index.ts",
336
+ "docPath": "packages/ui/src/organization/README.md",
337
+ "referencePath": "packages/ui/src/organization/README.md",
290
338
  "publishedExportPath": "./dist/organization/index.js"
291
339
  },
292
340
  {
@@ -299,6 +347,8 @@
299
347
  "group": "Foundation",
300
348
  "order": 7,
301
349
  "sourcePath": "packages/ui/src/types/index.ts",
350
+ "docPath": "packages/ui/src/types/README.md",
351
+ "referencePath": "packages/ui/src/types/README.md",
302
352
  "publishedExportPath": "./dist/types/index.js"
303
353
  },
304
354
  {
@@ -311,6 +361,8 @@
311
361
  "group": "Foundation",
312
362
  "order": 8,
313
363
  "sourcePath": "packages/ui/src/api/index.ts",
364
+ "docPath": "packages/ui/src/api/README.md",
365
+ "referencePath": "packages/ui/src/api/README.md",
314
366
  "publishedExportPath": "./dist/api/index.js"
315
367
  },
316
368
  {
@@ -323,6 +375,8 @@
323
375
  "group": "Foundation",
324
376
  "order": 9,
325
377
  "sourcePath": "packages/ui/src/utils/index.ts",
378
+ "docPath": "packages/ui/src/utils/README.md",
379
+ "referencePath": "packages/ui/src/utils/README.md",
326
380
  "publishedExportPath": "./dist/utils/index.js"
327
381
  },
328
382
  {
@@ -335,6 +389,8 @@
335
389
  "group": "Foundation",
336
390
  "order": 10,
337
391
  "sourcePath": "packages/ui/src/execution/index.ts",
392
+ "docPath": "packages/ui/src/execution/README.md",
393
+ "referencePath": "packages/ui/src/execution/README.md",
338
394
  "publishedExportPath": "./dist/execution/index.js"
339
395
  },
340
396
  {
@@ -347,6 +403,8 @@
347
403
  "group": "Foundation",
348
404
  "order": 11,
349
405
  "sourcePath": "packages/ui/src/router/index.ts",
406
+ "docPath": "packages/ui/src/router/README.md",
407
+ "referencePath": "packages/ui/src/router/README.md",
350
408
  "publishedExportPath": "./dist/router/index.js"
351
409
  },
352
410
  {
@@ -359,6 +417,8 @@
359
417
  "group": "Foundation",
360
418
  "order": 12,
361
419
  "sourcePath": "packages/ui/src/router/context.ts",
420
+ "docPath": "packages/ui/src/router/README.md",
421
+ "referencePath": "packages/ui/src/router/README.md",
362
422
  "publishedExportPath": "./dist/router/context.js"
363
423
  },
364
424
  {
@@ -371,6 +431,8 @@
371
431
  "group": "Foundation",
372
432
  "order": 13,
373
433
  "sourcePath": "packages/ui/src/zustand/index.ts",
434
+ "docPath": "packages/ui/src/zustand/README.md",
435
+ "referencePath": "packages/ui/src/zustand/README.md",
374
436
  "publishedExportPath": "./dist/zustand/index.js"
375
437
  },
376
438
  {
@@ -383,6 +445,8 @@
383
445
  "group": "Hooks",
384
446
  "order": 1,
385
447
  "sourcePath": "packages/ui/src/hooks/published.ts",
448
+ "docPath": "packages/ui/src/hooks/README.md",
449
+ "referencePath": "packages/ui/src/hooks/README.md",
386
450
  "publishedExportPath": "./dist/hooks/published.js"
387
451
  },
388
452
  {
@@ -395,6 +459,8 @@
395
459
  "group": "Provider",
396
460
  "order": 1,
397
461
  "sourcePath": "packages/ui/src/provider/published.ts",
462
+ "docPath": "packages/ui/src/provider/README.md",
463
+ "referencePath": "packages/ui/src/provider/README.md",
398
464
  "publishedExportPath": "./dist/provider/published.js"
399
465
  },
400
466
  {
@@ -407,6 +473,8 @@
407
473
  "group": "Provider",
408
474
  "order": 2,
409
475
  "sourcePath": "packages/ui/src/provider/index.ts",
476
+ "docPath": "packages/ui/src/provider/README.md",
477
+ "referencePath": "packages/ui/src/provider/README.md",
410
478
  "publishedExportPath": "./dist/provider/index.js"
411
479
  },
412
480
  {
@@ -419,6 +487,8 @@
419
487
  "group": "Visual",
420
488
  "order": 1,
421
489
  "sourcePath": "packages/ui/src/theme/index.ts",
490
+ "docPath": "packages/ui/src/theme/README.md",
491
+ "referencePath": "packages/ui/src/theme/README.md",
422
492
  "publishedExportPath": "./dist/theme/index.js"
423
493
  },
424
494
  {
@@ -431,6 +501,8 @@
431
501
  "group": "Visual",
432
502
  "order": 2,
433
503
  "sourcePath": "packages/ui/src/graph/index.ts",
504
+ "docPath": "packages/ui/src/graph/README.md",
505
+ "referencePath": "packages/ui/src/graph/README.md",
434
506
  "publishedExportPath": "./dist/graph/index.js"
435
507
  }
436
508
  ]