@elevasis/sdk 1.2.0 → 1.4.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 +7 -5
- package/reference/_navigation.md +64 -39
- package/reference/_reference-manifest.json +509 -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/packages/core/src/README.md +34 -0
- package/reference/packages/core/src/organization-model/README.md +79 -0
- package/reference/packages/ui/src/api/README.md +18 -0
- package/reference/packages/ui/src/auth/README.md +18 -0
- package/reference/packages/ui/src/components/README.md +24 -0
- package/reference/packages/ui/src/execution/README.md +16 -0
- package/reference/packages/ui/src/features/README.md +28 -0
- package/reference/packages/ui/src/graph/README.md +16 -0
- package/reference/packages/ui/src/hooks/README.md +24 -0
- package/reference/packages/ui/src/initialization/README.md +19 -0
- package/reference/packages/ui/src/organization/README.md +18 -0
- package/reference/packages/ui/src/profile/README.md +19 -0
- package/reference/packages/ui/src/provider/README.md +31 -0
- package/reference/packages/ui/src/router/README.md +18 -0
- package/reference/packages/ui/src/sse/README.md +13 -0
- package/reference/packages/ui/src/theme/README.md +23 -0
- package/reference/packages/ui/src/types/README.md +16 -0
- package/reference/packages/ui/src/utils/README.md +18 -0
- package/reference/packages/ui/src/zustand/README.md +18 -0
- package/reference/platform-tools/adapters-platform.mdx +93 -36
- package/reference/resources/patterns.mdx +48 -0
|
@@ -0,0 +1,509 @@
|
|
|
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
|
+
"docPath": "packages/core/src/README.md",
|
|
15
|
+
"referencePath": "packages/core/src/README.md",
|
|
16
|
+
"publishedExportPath": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"packageName": "@elevasis/core",
|
|
20
|
+
"packageDir": "packages/core",
|
|
21
|
+
"subpath": "./organization-model",
|
|
22
|
+
"kind": "subpath",
|
|
23
|
+
"title": "Organization Model",
|
|
24
|
+
"description": "Published organization-model schema, defaults, resolver, and types.",
|
|
25
|
+
"group": "Organization Model",
|
|
26
|
+
"order": 1,
|
|
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",
|
|
30
|
+
"publishedExportPath": "./dist/organization-model/index.js"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"packageName": "@elevasis/sdk",
|
|
34
|
+
"packageDir": "packages/sdk",
|
|
35
|
+
"subpath": ".",
|
|
36
|
+
"kind": "root",
|
|
37
|
+
"title": "SDK",
|
|
38
|
+
"description": "Root SDK types, config, runtime errors, and registry surface.",
|
|
39
|
+
"group": "Getting Started",
|
|
40
|
+
"order": 1,
|
|
41
|
+
"sourcePath": "packages/sdk/src/index.ts",
|
|
42
|
+
"docPath": "apps/docs/content/docs/sdk/index.mdx",
|
|
43
|
+
"referencePath": "index.mdx",
|
|
44
|
+
"publishedExportPath": "./dist/index.js"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"packageName": "@elevasis/sdk",
|
|
48
|
+
"packageDir": "packages/sdk",
|
|
49
|
+
"subpath": "./worker",
|
|
50
|
+
"kind": "subpath",
|
|
51
|
+
"title": "Worker Runtime",
|
|
52
|
+
"description": "Worker runtime entrypoint, adapters, and platform execution surface.",
|
|
53
|
+
"group": "Runtime",
|
|
54
|
+
"order": 1,
|
|
55
|
+
"sourcePath": "packages/sdk/src/worker/index.ts",
|
|
56
|
+
"docPath": "apps/docs/content/docs/sdk/runtime.mdx",
|
|
57
|
+
"referencePath": "runtime.mdx",
|
|
58
|
+
"publishedExportPath": "./dist/worker/index.js"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"packageName": "@elevasis/ui",
|
|
62
|
+
"packageDir": "packages/ui",
|
|
63
|
+
"subpath": "./components",
|
|
64
|
+
"kind": "subpath",
|
|
65
|
+
"title": "Components",
|
|
66
|
+
"description": "Published UI component barrel for downstream applications.",
|
|
67
|
+
"group": "Components",
|
|
68
|
+
"order": 1,
|
|
69
|
+
"sourcePath": "packages/ui/src/components/index.ts",
|
|
70
|
+
"docPath": "packages/ui/src/components/README.md",
|
|
71
|
+
"referencePath": "packages/ui/src/components/README.md",
|
|
72
|
+
"publishedExportPath": "./dist/components/index.js"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"packageName": "@elevasis/ui",
|
|
76
|
+
"packageDir": "packages/ui",
|
|
77
|
+
"subpath": "./components/navigation",
|
|
78
|
+
"kind": "subpath",
|
|
79
|
+
"title": "Navigation Components",
|
|
80
|
+
"description": "Published navigation component entry for downstream applications.",
|
|
81
|
+
"group": "Components",
|
|
82
|
+
"order": 2,
|
|
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",
|
|
86
|
+
"publishedExportPath": "./dist/components/navigation/index.js"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"packageName": "@elevasis/ui",
|
|
90
|
+
"packageDir": "packages/ui",
|
|
91
|
+
"subpath": "./components/chat",
|
|
92
|
+
"kind": "subpath",
|
|
93
|
+
"title": "Chat Components",
|
|
94
|
+
"description": "Published chat component entry for downstream applications.",
|
|
95
|
+
"group": "Components",
|
|
96
|
+
"order": 3,
|
|
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",
|
|
100
|
+
"publishedExportPath": "./dist/components/chat/index.js"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"packageName": "@elevasis/ui",
|
|
104
|
+
"packageDir": "packages/ui",
|
|
105
|
+
"subpath": "./layout",
|
|
106
|
+
"kind": "subpath",
|
|
107
|
+
"title": "Layout",
|
|
108
|
+
"description": "Published layout component entry for downstream applications.",
|
|
109
|
+
"group": "Components",
|
|
110
|
+
"order": 4,
|
|
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",
|
|
114
|
+
"publishedExportPath": "./dist/layout/index.js"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"packageName": "@elevasis/ui",
|
|
118
|
+
"packageDir": "packages/ui",
|
|
119
|
+
"subpath": "./charts",
|
|
120
|
+
"kind": "subpath",
|
|
121
|
+
"title": "Charts",
|
|
122
|
+
"description": "Published chart component entry for downstream applications.",
|
|
123
|
+
"group": "Components",
|
|
124
|
+
"order": 5,
|
|
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",
|
|
128
|
+
"publishedExportPath": "./dist/charts/index.js"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"packageName": "@elevasis/ui",
|
|
132
|
+
"packageDir": "packages/ui",
|
|
133
|
+
"subpath": "./features/auth",
|
|
134
|
+
"kind": "subpath",
|
|
135
|
+
"title": "Features Auth",
|
|
136
|
+
"description": "Published auth feature surface for downstream shells.",
|
|
137
|
+
"group": "Features",
|
|
138
|
+
"order": 1,
|
|
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",
|
|
142
|
+
"publishedExportPath": "./dist/features/auth/index.js"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"packageName": "@elevasis/ui",
|
|
146
|
+
"packageDir": "packages/ui",
|
|
147
|
+
"subpath": "./features/crm",
|
|
148
|
+
"kind": "subpath",
|
|
149
|
+
"title": "Features CRM",
|
|
150
|
+
"description": "Published CRM feature surface for downstream shells.",
|
|
151
|
+
"group": "Features",
|
|
152
|
+
"order": 2,
|
|
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",
|
|
156
|
+
"publishedExportPath": "./dist/features/crm/index.js"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"packageName": "@elevasis/ui",
|
|
160
|
+
"packageDir": "packages/ui",
|
|
161
|
+
"subpath": "./features/dashboard",
|
|
162
|
+
"kind": "subpath",
|
|
163
|
+
"title": "Features Dashboard",
|
|
164
|
+
"description": "Published dashboard feature surface for downstream shells.",
|
|
165
|
+
"group": "Features",
|
|
166
|
+
"order": 3,
|
|
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",
|
|
170
|
+
"publishedExportPath": "./dist/features/dashboard/index.js"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"packageName": "@elevasis/ui",
|
|
174
|
+
"packageDir": "packages/ui",
|
|
175
|
+
"subpath": "./features/delivery",
|
|
176
|
+
"kind": "subpath",
|
|
177
|
+
"title": "Features Delivery",
|
|
178
|
+
"description": "Published delivery feature surface for downstream shells.",
|
|
179
|
+
"group": "Features",
|
|
180
|
+
"order": 4,
|
|
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",
|
|
184
|
+
"publishedExportPath": "./dist/features/delivery/index.js"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"packageName": "@elevasis/ui",
|
|
188
|
+
"packageDir": "packages/ui",
|
|
189
|
+
"subpath": "./features/lead-gen",
|
|
190
|
+
"kind": "subpath",
|
|
191
|
+
"title": "Features Lead Gen",
|
|
192
|
+
"description": "Published lead generation feature surface for downstream shells.",
|
|
193
|
+
"group": "Features",
|
|
194
|
+
"order": 5,
|
|
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",
|
|
198
|
+
"publishedExportPath": "./dist/features/lead-gen/index.js"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"packageName": "@elevasis/ui",
|
|
202
|
+
"packageDir": "packages/ui",
|
|
203
|
+
"subpath": "./features/operations",
|
|
204
|
+
"kind": "subpath",
|
|
205
|
+
"title": "Features Operations",
|
|
206
|
+
"description": "Published operations feature surface for downstream shells.",
|
|
207
|
+
"group": "Features",
|
|
208
|
+
"order": 6,
|
|
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",
|
|
212
|
+
"publishedExportPath": "./dist/features/operations/index.js"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"packageName": "@elevasis/ui",
|
|
216
|
+
"packageDir": "packages/ui",
|
|
217
|
+
"subpath": "./features/monitoring",
|
|
218
|
+
"kind": "subpath",
|
|
219
|
+
"title": "Features Monitoring",
|
|
220
|
+
"description": "Published monitoring feature surface for downstream shells.",
|
|
221
|
+
"group": "Features",
|
|
222
|
+
"order": 7,
|
|
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",
|
|
226
|
+
"publishedExportPath": "./dist/features/monitoring/index.js"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"packageName": "@elevasis/ui",
|
|
230
|
+
"packageDir": "packages/ui",
|
|
231
|
+
"subpath": "./features/seo",
|
|
232
|
+
"kind": "subpath",
|
|
233
|
+
"title": "Features SEO",
|
|
234
|
+
"description": "Published SEO feature surface for downstream shells.",
|
|
235
|
+
"group": "Features",
|
|
236
|
+
"order": 8,
|
|
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",
|
|
240
|
+
"publishedExportPath": "./dist/features/seo/index.js"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"packageName": "@elevasis/ui",
|
|
244
|
+
"packageDir": "packages/ui",
|
|
245
|
+
"subpath": "./features/settings",
|
|
246
|
+
"kind": "subpath",
|
|
247
|
+
"title": "Features Settings",
|
|
248
|
+
"description": "Published settings feature surface for downstream shells.",
|
|
249
|
+
"group": "Features",
|
|
250
|
+
"order": 9,
|
|
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",
|
|
254
|
+
"publishedExportPath": "./dist/features/settings/index.js"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"packageName": "@elevasis/ui",
|
|
258
|
+
"packageDir": "packages/ui",
|
|
259
|
+
"subpath": "./auth",
|
|
260
|
+
"kind": "subpath",
|
|
261
|
+
"title": "Auth",
|
|
262
|
+
"description": "Published authentication surface for UI integrations.",
|
|
263
|
+
"group": "Foundation",
|
|
264
|
+
"order": 1,
|
|
265
|
+
"sourcePath": "packages/ui/src/auth/index.ts",
|
|
266
|
+
"docPath": "packages/ui/src/auth/README.md",
|
|
267
|
+
"referencePath": "packages/ui/src/auth/README.md",
|
|
268
|
+
"publishedExportPath": "./dist/auth/index.js"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"packageName": "@elevasis/ui",
|
|
272
|
+
"packageDir": "packages/ui",
|
|
273
|
+
"subpath": "./auth/context",
|
|
274
|
+
"kind": "subpath",
|
|
275
|
+
"title": "Auth Context",
|
|
276
|
+
"description": "Published auth context entry for UI integrations.",
|
|
277
|
+
"group": "Foundation",
|
|
278
|
+
"order": 2,
|
|
279
|
+
"sourcePath": "packages/ui/src/auth/context.ts",
|
|
280
|
+
"docPath": "packages/ui/src/auth/README.md",
|
|
281
|
+
"referencePath": "packages/ui/src/auth/README.md",
|
|
282
|
+
"publishedExportPath": "./dist/auth/context.js"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"packageName": "@elevasis/ui",
|
|
286
|
+
"packageDir": "packages/ui",
|
|
287
|
+
"subpath": "./sse",
|
|
288
|
+
"kind": "subpath",
|
|
289
|
+
"title": "SSE",
|
|
290
|
+
"description": "Published server-sent events helpers and connection utilities.",
|
|
291
|
+
"group": "Foundation",
|
|
292
|
+
"order": 3,
|
|
293
|
+
"sourcePath": "packages/ui/src/sse/index.ts",
|
|
294
|
+
"docPath": "packages/ui/src/sse/README.md",
|
|
295
|
+
"referencePath": "packages/ui/src/sse/README.md",
|
|
296
|
+
"publishedExportPath": "./dist/sse/index.js"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"packageName": "@elevasis/ui",
|
|
300
|
+
"packageDir": "packages/ui",
|
|
301
|
+
"subpath": "./initialization",
|
|
302
|
+
"kind": "subpath",
|
|
303
|
+
"title": "Initialization",
|
|
304
|
+
"description": "Published app initialization provider and bootstrap helpers.",
|
|
305
|
+
"group": "Foundation",
|
|
306
|
+
"order": 4,
|
|
307
|
+
"sourcePath": "packages/ui/src/initialization/index.ts",
|
|
308
|
+
"docPath": "packages/ui/src/initialization/README.md",
|
|
309
|
+
"referencePath": "packages/ui/src/initialization/README.md",
|
|
310
|
+
"publishedExportPath": "./dist/initialization/index.js"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"packageName": "@elevasis/ui",
|
|
314
|
+
"packageDir": "packages/ui",
|
|
315
|
+
"subpath": "./profile",
|
|
316
|
+
"kind": "subpath",
|
|
317
|
+
"title": "Profile",
|
|
318
|
+
"description": "Published user profile surface for UI applications.",
|
|
319
|
+
"group": "Foundation",
|
|
320
|
+
"order": 5,
|
|
321
|
+
"sourcePath": "packages/ui/src/profile/index.ts",
|
|
322
|
+
"docPath": "packages/ui/src/profile/README.md",
|
|
323
|
+
"referencePath": "packages/ui/src/profile/README.md",
|
|
324
|
+
"publishedExportPath": "./dist/profile/index.js"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"packageName": "@elevasis/ui",
|
|
328
|
+
"packageDir": "packages/ui",
|
|
329
|
+
"subpath": "./organization",
|
|
330
|
+
"kind": "subpath",
|
|
331
|
+
"title": "Organization",
|
|
332
|
+
"description": "Published organization shell, store, and helper surface.",
|
|
333
|
+
"group": "Foundation",
|
|
334
|
+
"order": 6,
|
|
335
|
+
"sourcePath": "packages/ui/src/organization/index.ts",
|
|
336
|
+
"docPath": "packages/ui/src/organization/README.md",
|
|
337
|
+
"referencePath": "packages/ui/src/organization/README.md",
|
|
338
|
+
"publishedExportPath": "./dist/organization/index.js"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"packageName": "@elevasis/ui",
|
|
342
|
+
"packageDir": "packages/ui",
|
|
343
|
+
"subpath": "./types",
|
|
344
|
+
"kind": "subpath",
|
|
345
|
+
"title": "Types",
|
|
346
|
+
"description": "Published UI types entry for downstream applications.",
|
|
347
|
+
"group": "Foundation",
|
|
348
|
+
"order": 7,
|
|
349
|
+
"sourcePath": "packages/ui/src/types/index.ts",
|
|
350
|
+
"docPath": "packages/ui/src/types/README.md",
|
|
351
|
+
"referencePath": "packages/ui/src/types/README.md",
|
|
352
|
+
"publishedExportPath": "./dist/types/index.js"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"packageName": "@elevasis/ui",
|
|
356
|
+
"packageDir": "packages/ui",
|
|
357
|
+
"subpath": "./api",
|
|
358
|
+
"kind": "subpath",
|
|
359
|
+
"title": "API",
|
|
360
|
+
"description": "Published API client entry for downstream applications.",
|
|
361
|
+
"group": "Foundation",
|
|
362
|
+
"order": 8,
|
|
363
|
+
"sourcePath": "packages/ui/src/api/index.ts",
|
|
364
|
+
"docPath": "packages/ui/src/api/README.md",
|
|
365
|
+
"referencePath": "packages/ui/src/api/README.md",
|
|
366
|
+
"publishedExportPath": "./dist/api/index.js"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"packageName": "@elevasis/ui",
|
|
370
|
+
"packageDir": "packages/ui",
|
|
371
|
+
"subpath": "./utils",
|
|
372
|
+
"kind": "subpath",
|
|
373
|
+
"title": "Utils",
|
|
374
|
+
"description": "Published utility entry for downstream applications.",
|
|
375
|
+
"group": "Foundation",
|
|
376
|
+
"order": 9,
|
|
377
|
+
"sourcePath": "packages/ui/src/utils/index.ts",
|
|
378
|
+
"docPath": "packages/ui/src/utils/README.md",
|
|
379
|
+
"referencePath": "packages/ui/src/utils/README.md",
|
|
380
|
+
"publishedExportPath": "./dist/utils/index.js"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"packageName": "@elevasis/ui",
|
|
384
|
+
"packageDir": "packages/ui",
|
|
385
|
+
"subpath": "./execution",
|
|
386
|
+
"kind": "subpath",
|
|
387
|
+
"title": "Execution",
|
|
388
|
+
"description": "Published execution visualization and helper entry.",
|
|
389
|
+
"group": "Foundation",
|
|
390
|
+
"order": 10,
|
|
391
|
+
"sourcePath": "packages/ui/src/execution/index.ts",
|
|
392
|
+
"docPath": "packages/ui/src/execution/README.md",
|
|
393
|
+
"referencePath": "packages/ui/src/execution/README.md",
|
|
394
|
+
"publishedExportPath": "./dist/execution/index.js"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"packageName": "@elevasis/ui",
|
|
398
|
+
"packageDir": "packages/ui",
|
|
399
|
+
"subpath": "./router",
|
|
400
|
+
"kind": "subpath",
|
|
401
|
+
"title": "Router",
|
|
402
|
+
"description": "Published router entry for downstream applications.",
|
|
403
|
+
"group": "Foundation",
|
|
404
|
+
"order": 11,
|
|
405
|
+
"sourcePath": "packages/ui/src/router/index.ts",
|
|
406
|
+
"docPath": "packages/ui/src/router/README.md",
|
|
407
|
+
"referencePath": "packages/ui/src/router/README.md",
|
|
408
|
+
"publishedExportPath": "./dist/router/index.js"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"packageName": "@elevasis/ui",
|
|
412
|
+
"packageDir": "packages/ui",
|
|
413
|
+
"subpath": "./router/context",
|
|
414
|
+
"kind": "subpath",
|
|
415
|
+
"title": "Router Context",
|
|
416
|
+
"description": "Published router context entry for downstream applications.",
|
|
417
|
+
"group": "Foundation",
|
|
418
|
+
"order": 12,
|
|
419
|
+
"sourcePath": "packages/ui/src/router/context.ts",
|
|
420
|
+
"docPath": "packages/ui/src/router/README.md",
|
|
421
|
+
"referencePath": "packages/ui/src/router/README.md",
|
|
422
|
+
"publishedExportPath": "./dist/router/context.js"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"packageName": "@elevasis/ui",
|
|
426
|
+
"packageDir": "packages/ui",
|
|
427
|
+
"subpath": "./zustand",
|
|
428
|
+
"kind": "subpath",
|
|
429
|
+
"title": "Zustand",
|
|
430
|
+
"description": "Published Zustand slice entry for downstream applications.",
|
|
431
|
+
"group": "Foundation",
|
|
432
|
+
"order": 13,
|
|
433
|
+
"sourcePath": "packages/ui/src/zustand/index.ts",
|
|
434
|
+
"docPath": "packages/ui/src/zustand/README.md",
|
|
435
|
+
"referencePath": "packages/ui/src/zustand/README.md",
|
|
436
|
+
"publishedExportPath": "./dist/zustand/index.js"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"packageName": "@elevasis/ui",
|
|
440
|
+
"packageDir": "packages/ui",
|
|
441
|
+
"subpath": "./hooks",
|
|
442
|
+
"kind": "subpath",
|
|
443
|
+
"title": "Hooks",
|
|
444
|
+
"description": "Headless hooks surface for executions, sessions, observability, and operations.",
|
|
445
|
+
"group": "Hooks",
|
|
446
|
+
"order": 1,
|
|
447
|
+
"sourcePath": "packages/ui/src/hooks/published.ts",
|
|
448
|
+
"docPath": "packages/ui/src/hooks/README.md",
|
|
449
|
+
"referencePath": "packages/ui/src/hooks/README.md",
|
|
450
|
+
"publishedExportPath": "./dist/hooks/published.js"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"packageName": "@elevasis/ui",
|
|
454
|
+
"packageDir": "packages/ui",
|
|
455
|
+
"subpath": "./provider",
|
|
456
|
+
"kind": "subpath",
|
|
457
|
+
"title": "Provider",
|
|
458
|
+
"description": "Published provider and feature-shell contract for downstream apps.",
|
|
459
|
+
"group": "Provider",
|
|
460
|
+
"order": 1,
|
|
461
|
+
"sourcePath": "packages/ui/src/provider/published.ts",
|
|
462
|
+
"docPath": "packages/ui/src/provider/README.md",
|
|
463
|
+
"referencePath": "packages/ui/src/provider/README.md",
|
|
464
|
+
"publishedExportPath": "./dist/provider/published.js"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"packageName": "@elevasis/ui",
|
|
468
|
+
"packageDir": "packages/ui",
|
|
469
|
+
"subpath": "./provider/ui",
|
|
470
|
+
"kind": "subpath",
|
|
471
|
+
"title": "Provider UI",
|
|
472
|
+
"description": "Published provider UI entry for downstream applications.",
|
|
473
|
+
"group": "Provider",
|
|
474
|
+
"order": 2,
|
|
475
|
+
"sourcePath": "packages/ui/src/provider/index.ts",
|
|
476
|
+
"docPath": "packages/ui/src/provider/README.md",
|
|
477
|
+
"referencePath": "packages/ui/src/provider/README.md",
|
|
478
|
+
"publishedExportPath": "./dist/provider/index.js"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"packageName": "@elevasis/ui",
|
|
482
|
+
"packageDir": "packages/ui",
|
|
483
|
+
"subpath": "./theme",
|
|
484
|
+
"kind": "subpath",
|
|
485
|
+
"title": "Theme",
|
|
486
|
+
"description": "Published theme entry for downstream applications.",
|
|
487
|
+
"group": "Visual",
|
|
488
|
+
"order": 1,
|
|
489
|
+
"sourcePath": "packages/ui/src/theme/index.ts",
|
|
490
|
+
"docPath": "packages/ui/src/theme/README.md",
|
|
491
|
+
"referencePath": "packages/ui/src/theme/README.md",
|
|
492
|
+
"publishedExportPath": "./dist/theme/index.js"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"packageName": "@elevasis/ui",
|
|
496
|
+
"packageDir": "packages/ui",
|
|
497
|
+
"subpath": "./graph",
|
|
498
|
+
"kind": "subpath",
|
|
499
|
+
"title": "Graph",
|
|
500
|
+
"description": "Published graph helper and visualization entry.",
|
|
501
|
+
"group": "Visual",
|
|
502
|
+
"order": 2,
|
|
503
|
+
"sourcePath": "packages/ui/src/graph/index.ts",
|
|
504
|
+
"docPath": "packages/ui/src/graph/README.md",
|
|
505
|
+
"referencePath": "packages/ui/src/graph/README.md",
|
|
506
|
+
"publishedExportPath": "./dist/graph/index.js"
|
|
507
|
+
}
|
|
508
|
+
]
|
|
509
|
+
}
|
package/reference/cli.mdx
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
title: CLI Reference
|
|
3
|
-
description: Full reference for every elevasis-sdk CLI command -- validate, deploy, execute, and
|
|
3
|
+
description: Full reference for every elevasis-sdk CLI command -- validate, deploy, execute, inspect resources, and operate project-management surfaces
|
|
4
4
|
loadWhen: "Running CLI operations"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
The `elevasis-sdk` CLI is the primary interface for working with your Elevasis SDK project. Install it as part of `@elevasis/sdk` and use it to validate resource definitions, deploy to the platform,
|
|
7
|
+
The `elevasis-sdk` CLI is the primary interface for working with your Elevasis SDK project. Install it as part of `@elevasis/sdk` and use it to validate resource definitions, deploy to the platform, inspect execution history, and work with the shared project-management API surfaces.
|
|
8
8
|
|
|
9
9
|
**Installation:**
|
|
10
10
|
|
|
@@ -503,6 +503,78 @@ elevasis-sdk rename ist-upload-workflow --to ist-upload-contacts-workflow --exec
|
|
|
503
503
|
|
|
504
504
|
---
|
|
505
505
|
|
|
506
|
+
## elevasis-sdk project:*
|
|
507
|
+
|
|
508
|
+
Project-management commands operate on the shared delivery system used by packaged Projects pages and task-oriented agent workflows.
|
|
509
|
+
|
|
510
|
+
### Projects
|
|
511
|
+
|
|
512
|
+
```bash
|
|
513
|
+
elevasis-sdk project:list
|
|
514
|
+
elevasis-sdk project:get <id>
|
|
515
|
+
elevasis-sdk project:create --name "Website Refresh" --kind client_engagement
|
|
516
|
+
elevasis-sdk project:update <id> --status completed
|
|
517
|
+
elevasis-sdk project:delete <id>
|
|
518
|
+
```
|
|
519
|
+
|
|
520
|
+
**Behavior:**
|
|
521
|
+
|
|
522
|
+
- `project:list` filters by `--kind` and `--status`
|
|
523
|
+
- `project:get` returns a single project
|
|
524
|
+
- `project:create` and `project:update` operate on `/api/external/projects`
|
|
525
|
+
|
|
526
|
+
### Milestones
|
|
527
|
+
|
|
528
|
+
```bash
|
|
529
|
+
elevasis-sdk project:milestone:list --project <id>
|
|
530
|
+
elevasis-sdk project:milestone:create --project <id> --name "Phase 1"
|
|
531
|
+
elevasis-sdk project:milestone:update <id> --status completed
|
|
532
|
+
elevasis-sdk project:milestone:delete <id>
|
|
533
|
+
```
|
|
534
|
+
|
|
535
|
+
### Tasks
|
|
536
|
+
|
|
537
|
+
```bash
|
|
538
|
+
elevasis-sdk project:task:list --project <id>
|
|
539
|
+
elevasis-sdk project:task:get <id>
|
|
540
|
+
elevasis-sdk project:task:create --project <id> --title "Implement API"
|
|
541
|
+
elevasis-sdk project:task:update <id> --status in_progress
|
|
542
|
+
elevasis-sdk project:task:delete <id>
|
|
543
|
+
```
|
|
544
|
+
|
|
545
|
+
Task commands also expose agent-oriented resume state:
|
|
546
|
+
|
|
547
|
+
```bash
|
|
548
|
+
elevasis-sdk project:task:resume <id> --pretty
|
|
549
|
+
elevasis-sdk project:task:save <id> --current-state "Implemented the route layer"
|
|
550
|
+
```
|
|
551
|
+
|
|
552
|
+
- `project:task:resume` reads the task's `resume_context`
|
|
553
|
+
- `project:task:save` merges fields into `resume_context`
|
|
554
|
+
- these commands are the CLI counterpart to `/work resume` and `/work save` style flows
|
|
555
|
+
|
|
556
|
+
### Notes
|
|
557
|
+
|
|
558
|
+
```bash
|
|
559
|
+
elevasis-sdk project:note:list --project <id>
|
|
560
|
+
elevasis-sdk project:note:create --project <id> --content "Client approved scope"
|
|
561
|
+
elevasis-sdk project:note:update <id> --content "Updated status"
|
|
562
|
+
elevasis-sdk project:note:delete <id>
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
### Shared Flags
|
|
566
|
+
|
|
567
|
+
Most `project:*` commands support:
|
|
568
|
+
|
|
569
|
+
| Flag | Description |
|
|
570
|
+
| ---- | ----------- |
|
|
571
|
+
| `--pretty` | Human-readable terminal output instead of raw JSON |
|
|
572
|
+
| `--api-url <url>` | Override the API base URL |
|
|
573
|
+
|
|
574
|
+
For exact required flags and accepted enum values, see the command source under `packages/sdk/src/cli/commands/project/`.
|
|
575
|
+
|
|
576
|
+
---
|
|
577
|
+
|
|
506
578
|
## Global Flags
|
|
507
579
|
|
|
508
580
|
These flags are accepted by all commands:
|
|
@@ -521,4 +593,4 @@ These flags are accepted by all commands:
|
|
|
521
593
|
|
|
522
594
|
---
|
|
523
595
|
|
|
524
|
-
**Last Updated:** 2026-
|
|
596
|
+
**Last Updated:** 2026-04-15
|
|
@@ -151,8 +151,9 @@ The bundle is stored on the platform for durability and restart recovery. If the
|
|
|
151
151
|
## Documentation
|
|
152
152
|
|
|
153
153
|
- [Command Center](command-center.mdx) - Resource graph, relationships, node types, and post-deployment UI reference
|
|
154
|
+
- [Provided Features](provided-features.mdx) - Shared Lead Gen, CRM, Projects, and feature-shell surfaces for downstream apps and agents
|
|
154
155
|
- [Execution API](api.mdx) - REST endpoints for executing resources and managing deployments
|
|
155
156
|
|
|
156
157
|
---
|
|
157
158
|
|
|
158
|
-
**Last Updated:** 2026-
|
|
159
|
+
**Last Updated:** 2026-04-15
|