@elevasis/ui 2.65.0 → 2.67.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/app/index.d.ts +21 -9
- package/dist/app/index.js +21 -14
- package/dist/auth/index.d.ts +12 -5
- package/dist/auth/index.js +5 -5
- package/dist/charts/index.js +5 -5
- package/dist/{chunk-3WVZRN37.js → chunk-5TERYXOO.js} +235 -379
- package/dist/{chunk-ZTWA5H77.js → chunk-6ZAP3FOA.js} +0 -1
- package/dist/chunk-L7BZZ4SI.js +56 -0
- package/dist/chunk-P45GQ3ZW.js +104 -0
- package/dist/{chunk-EIXSQONC.js → chunk-RT4KRGZT.js} +37 -59
- package/dist/components/index.d.ts +240 -209
- package/dist/components/index.js +5 -5
- package/dist/components/navigation/index.js +5 -5
- package/dist/execution/index.d.ts +115 -104
- package/dist/features/auth/index.d.ts +39 -8
- package/dist/features/auth/index.js +14 -9
- package/dist/features/clients/index.js +5 -5
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/knowledge/index.js +5 -5
- package/dist/features/lead-gen/index.js +5 -5
- package/dist/features/monitoring/index.js +5 -5
- package/dist/features/monitoring/requests/index.js +6 -6
- package/dist/features/notes/index.js +2 -2
- package/dist/features/operations/index.d.ts +141 -105
- package/dist/features/operations/index.js +5 -5
- package/dist/features/settings/index.d.ts +1 -0
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/access/index.js +5 -5
- package/dist/hooks/delivery/index.js +5 -5
- package/dist/hooks/index.d.ts +284 -162
- package/dist/hooks/index.js +5 -5
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +0 -2
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.js +1 -1
- package/dist/hooks/published.d.ts +284 -162
- package/dist/hooks/published.js +5 -5
- package/dist/index.d.ts +374 -236
- package/dist/index.js +5 -5
- package/dist/initialization/index.d.ts +61 -28
- package/dist/initialization/index.js +3 -3
- package/dist/knowledge/index.js +9 -9
- package/dist/{knowledge-search-index-JOPRYZN6.js → knowledge-search-index-6EZNBNSR.js} +4 -4
- package/dist/layout/index.js +5 -5
- package/dist/organization/index.d.ts +49 -4
- package/dist/organization/index.js +5 -5
- package/dist/profile/index.d.ts +23 -2
- package/dist/profile/index.js +1 -1
- package/dist/provider/index.js +5 -5
- package/dist/provider/published.js +5 -5
- package/dist/types/index.d.ts +330 -271
- package/package.json +3 -3
- package/dist/chunk-LO7GWG24.js +0 -75
- package/dist/chunk-T4LA4RY2.js +0 -56
|
@@ -219,117 +219,97 @@ interface ExecutionLogMessage {
|
|
|
219
219
|
context?: LogContext;
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
+
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
223
|
+
active: "active";
|
|
224
|
+
deprecated: "deprecated";
|
|
225
|
+
archived: "archived";
|
|
226
|
+
}>;
|
|
227
|
+
type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
|
|
228
|
+
|
|
222
229
|
/**
|
|
223
|
-
*
|
|
230
|
+
* Memory type definitions
|
|
231
|
+
* Types for agent memory management with semantic entry types
|
|
232
|
+
*/
|
|
233
|
+
/**
|
|
234
|
+
* Semantic memory entry types
|
|
235
|
+
* Use-case agnostic types that describe the purpose of each entry
|
|
236
|
+
* Memory types mirror action types for clarity and filtering
|
|
237
|
+
*/
|
|
238
|
+
type MemoryEntryType = 'context' | 'input' | 'reasoning' | 'tool-result' | 'error';
|
|
239
|
+
/**
|
|
240
|
+
* Who authored an entry's content.
|
|
224
241
|
*
|
|
225
|
-
*
|
|
226
|
-
*
|
|
242
|
+
* This is what lets the assembled prompt tell framework-authored text apart from text that
|
|
243
|
+
* originated outside the trust boundary. `'framework'` content is ours; the other three are not
|
|
244
|
+
* and are rendered inside the JSON data envelope (see `MemoryManager.toContextParts`).
|
|
227
245
|
*/
|
|
228
|
-
|
|
246
|
+
type MemoryEntrySource = 'framework' | 'user' | 'tool' | 'model';
|
|
229
247
|
/**
|
|
230
|
-
*
|
|
231
|
-
*
|
|
248
|
+
* Memory entry - represents a single entry in agent memory
|
|
249
|
+
* Stored in agent memory, translated by adapters to vendor-specific formats
|
|
232
250
|
*/
|
|
233
|
-
interface
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
contract: {
|
|
266
|
-
inputSchema: object;
|
|
267
|
-
outputSchema?: object;
|
|
268
|
-
};
|
|
269
|
-
tools: Array<{
|
|
270
|
-
name: string;
|
|
271
|
-
description: string;
|
|
272
|
-
inputSchema?: object;
|
|
273
|
-
outputSchema?: object;
|
|
274
|
-
}>;
|
|
275
|
-
knowledgeMap?: {
|
|
276
|
-
nodeCount: number;
|
|
277
|
-
nodes: Array<{
|
|
278
|
-
id: string;
|
|
279
|
-
description: string;
|
|
280
|
-
loaded: boolean;
|
|
281
|
-
hasPrompt: boolean;
|
|
282
|
-
}>;
|
|
251
|
+
interface MemoryEntry {
|
|
252
|
+
type: MemoryEntryType;
|
|
253
|
+
content: string;
|
|
254
|
+
timestamp: number;
|
|
255
|
+
turnNumber: number | null;
|
|
256
|
+
iterationNumber: number | null;
|
|
257
|
+
/**
|
|
258
|
+
* Provenance. **Optional on purpose** — `undefined` means unknown, which is what every
|
|
259
|
+
* pre-existing snapshot and every not-yet-redeployed tenant bundle produces. Read sites MUST
|
|
260
|
+
* test `== null`, never `=== undefined`: the `inTurnScope` predicate in `manager.ts` is the
|
|
261
|
+
* cautionary precedent, where a `=== undefined` check silently dropped every `null`-stamped
|
|
262
|
+
* entry. `isMemoryEntry` is deliberately NOT tightened to require this field; doing so would
|
|
263
|
+
* make every stored snapshot fail validation, and `restoreSessionMemory` fails open by
|
|
264
|
+
* starting the agent with empty memory rather than throwing.
|
|
265
|
+
*/
|
|
266
|
+
source?: MemoryEntrySource;
|
|
267
|
+
/**
|
|
268
|
+
* Which tool produced this entry. Set on `tool-result` entries so the model can tell N parallel
|
|
269
|
+
* results apart -- the framework instructs batching independent tool calls in one iteration, and
|
|
270
|
+
* an anonymous result is unattributable the moment two land in the same iteration. `addToolError`
|
|
271
|
+
* already carries this (folded into its `content` JSON); this is the same fact for the success
|
|
272
|
+
* path, carried as a real field instead of prose the caller has to parse back out.
|
|
273
|
+
*/
|
|
274
|
+
toolName?: string;
|
|
275
|
+
/**
|
|
276
|
+
* Present when `truncateContent` cut this entry's `content` to fit its token budget. A sibling
|
|
277
|
+
* field, never text appended into `content` -- the notice used to be spliced into the string
|
|
278
|
+
* itself, which could (and did) land inside a JSON string literal `truncateContent` had just cut
|
|
279
|
+
* open, breaking `JSON.parse` on the far end. Absent means never truncated.
|
|
280
|
+
*/
|
|
281
|
+
truncated?: {
|
|
282
|
+
omittedTokens: number;
|
|
283
283
|
};
|
|
284
|
-
|
|
284
|
+
/**
|
|
285
|
+
* Prompt-injection warning types found in `content`, screened once here -- when the entry is
|
|
286
|
+
* written -- instead of by re-scanning the whole accumulated envelope on every iteration it gets
|
|
287
|
+
* re-sent for (`screenRequest`'s `data-envelope` slot used to do exactly that). Empty array means
|
|
288
|
+
* screened and clean; `undefined` means never screened (entries that bypass `addToHistory`/`set`,
|
|
289
|
+
* or pre-existing snapshots from before this field existed).
|
|
290
|
+
*/
|
|
291
|
+
warnings?: string[];
|
|
285
292
|
}
|
|
286
293
|
/**
|
|
287
|
-
*
|
|
288
|
-
*
|
|
294
|
+
* Agent memory - Self-orchestrated memory with session + working storage
|
|
295
|
+
* Agent has full control over what persists, framework handles auto-compaction
|
|
289
296
|
*/
|
|
290
|
-
interface
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
steps: Array<{
|
|
305
|
-
id: string;
|
|
306
|
-
name: string;
|
|
307
|
-
description: string;
|
|
308
|
-
inputSchema?: object;
|
|
309
|
-
outputSchema?: object;
|
|
310
|
-
next: {
|
|
311
|
-
type: 'linear' | 'conditional';
|
|
312
|
-
target?: string;
|
|
313
|
-
routes?: Array<{
|
|
314
|
-
target: string;
|
|
315
|
-
}>;
|
|
316
|
-
default?: string;
|
|
317
|
-
} | null;
|
|
318
|
-
}>;
|
|
319
|
-
contract: {
|
|
320
|
-
inputSchema: object;
|
|
321
|
-
outputSchema?: object;
|
|
322
|
-
};
|
|
323
|
-
metricsConfig?: object;
|
|
297
|
+
interface AgentMemory {
|
|
298
|
+
/**
|
|
299
|
+
* Session memory - Persists for session/conversation duration
|
|
300
|
+
* Never auto-trimmed by framework
|
|
301
|
+
* Agent-managed key-value store for critical information
|
|
302
|
+
* Agent provides strings, framework wraps in MemoryEntry
|
|
303
|
+
*/
|
|
304
|
+
sessionMemory: Record<string, MemoryEntry>;
|
|
305
|
+
/**
|
|
306
|
+
* Working memory - Execution history
|
|
307
|
+
* Automatically compacted by framework when needed
|
|
308
|
+
* Agent doesn't control compaction
|
|
309
|
+
*/
|
|
310
|
+
history: MemoryEntry[];
|
|
324
311
|
}
|
|
325
312
|
|
|
326
|
-
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
327
|
-
active: "active";
|
|
328
|
-
deprecated: "deprecated";
|
|
329
|
-
archived: "archived";
|
|
330
|
-
}>;
|
|
331
|
-
type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
|
|
332
|
-
|
|
333
313
|
/**
|
|
334
314
|
* Shared form field types for dynamic form generation
|
|
335
315
|
* Used by: Command Queue, Execution Runner UI, future form-based features
|
|
@@ -406,65 +386,6 @@ interface WorkflowNodeVisualizerData {
|
|
|
406
386
|
isRunning: boolean;
|
|
407
387
|
}
|
|
408
388
|
|
|
409
|
-
/**
|
|
410
|
-
* Memory type definitions
|
|
411
|
-
* Types for agent memory management with semantic entry types
|
|
412
|
-
*/
|
|
413
|
-
/**
|
|
414
|
-
* Semantic memory entry types
|
|
415
|
-
* Use-case agnostic types that describe the purpose of each entry
|
|
416
|
-
* Memory types mirror action types for clarity and filtering
|
|
417
|
-
*/
|
|
418
|
-
type MemoryEntryType = 'context' | 'input' | 'reasoning' | 'tool-result' | 'delegation-result' | 'error';
|
|
419
|
-
/**
|
|
420
|
-
* Who authored an entry's content.
|
|
421
|
-
*
|
|
422
|
-
* This is what lets the assembled prompt tell framework-authored text apart from text that
|
|
423
|
-
* originated outside the trust boundary. `'framework'` content is ours; the other three are not
|
|
424
|
-
* and are rendered inside the JSON data envelope (see `MemoryManager.toContextParts`).
|
|
425
|
-
*/
|
|
426
|
-
type MemoryEntrySource = 'framework' | 'user' | 'tool' | 'model';
|
|
427
|
-
/**
|
|
428
|
-
* Memory entry - represents a single entry in agent memory
|
|
429
|
-
* Stored in agent memory, translated by adapters to vendor-specific formats
|
|
430
|
-
*/
|
|
431
|
-
interface MemoryEntry {
|
|
432
|
-
type: MemoryEntryType;
|
|
433
|
-
content: string;
|
|
434
|
-
timestamp: number;
|
|
435
|
-
turnNumber: number | null;
|
|
436
|
-
iterationNumber: number | null;
|
|
437
|
-
/**
|
|
438
|
-
* Provenance. **Optional on purpose** — `undefined` means unknown, which is what every
|
|
439
|
-
* pre-existing snapshot and every not-yet-redeployed tenant bundle produces. Read sites MUST
|
|
440
|
-
* test `== null`, never `=== undefined`: the `inTurnScope` predicate in `manager.ts` is the
|
|
441
|
-
* cautionary precedent, where a `=== undefined` check silently dropped every `null`-stamped
|
|
442
|
-
* entry. `isMemoryEntry` is deliberately NOT tightened to require this field; doing so would
|
|
443
|
-
* make every stored snapshot fail validation, and `restoreSessionMemory` fails open by
|
|
444
|
-
* starting the agent with empty memory rather than throwing.
|
|
445
|
-
*/
|
|
446
|
-
source?: MemoryEntrySource;
|
|
447
|
-
}
|
|
448
|
-
/**
|
|
449
|
-
* Agent memory - Self-orchestrated memory with session + working storage
|
|
450
|
-
* Agent has full control over what persists, framework handles auto-compaction
|
|
451
|
-
*/
|
|
452
|
-
interface AgentMemory {
|
|
453
|
-
/**
|
|
454
|
-
* Session memory - Persists for session/conversation duration
|
|
455
|
-
* Never auto-trimmed by framework
|
|
456
|
-
* Agent-managed key-value store for critical information
|
|
457
|
-
* Agent provides strings, framework wraps in MemoryEntry
|
|
458
|
-
*/
|
|
459
|
-
sessionMemory: Record<string, MemoryEntry>;
|
|
460
|
-
/**
|
|
461
|
-
* Working memory - Execution history
|
|
462
|
-
* Automatically compacted by framework when needed
|
|
463
|
-
* Agent doesn't control compaction
|
|
464
|
-
*/
|
|
465
|
-
history: MemoryEntry[];
|
|
466
|
-
}
|
|
467
|
-
|
|
468
389
|
/**
|
|
469
390
|
* Agent timeline and observability types
|
|
470
391
|
* Used for UI timeline visualization and backend processing
|
|
@@ -4415,6 +4336,20 @@ interface OrganizationMembership {
|
|
|
4415
4336
|
type MembershipProvisioningState = 'linked' | 'pre_provisioned' | 'workos_only';
|
|
4416
4337
|
/**
|
|
4417
4338
|
* Extended membership with user and organization details for UI
|
|
4339
|
+
*
|
|
4340
|
+
* **ID convention (step 17 of the auth/invitations architecture refactor):**
|
|
4341
|
+
* `id`, `userId`, and `organizationId` are the canonical Supabase UUIDs
|
|
4342
|
+
* (`org_memberships.id` / `users.id` / `organizations.id`) on every producer
|
|
4343
|
+
* of this type. `workosMembershipId` / `workosUserId` /
|
|
4344
|
+
* `organization.workos_org_id` carry the WorkOS-side forms explicitly instead
|
|
4345
|
+
* -- the contract does not overload the canonical fields with either form.
|
|
4346
|
+
*
|
|
4347
|
+
* The one exception: a `workos_only` row (a WorkOS membership with no
|
|
4348
|
+
* `org_memberships` row -- a sync gap) has no canonical membership UUID to
|
|
4349
|
+
* report, because no such row exists. `id` stays the WorkOS `om_...` form for
|
|
4350
|
+
* that `provisioningState` alone; `userId` / `organizationId` are still
|
|
4351
|
+
* resolved to their Supabase forms where the user/organization themselves
|
|
4352
|
+
* exist.
|
|
4418
4353
|
*/
|
|
4419
4354
|
interface MembershipWithDetails extends OrganizationMembership {
|
|
4420
4355
|
/**
|
|
@@ -4422,6 +4357,18 @@ interface MembershipWithDetails extends OrganizationMembership {
|
|
|
4422
4357
|
* treat `undefined` as "not reported by this endpoint".
|
|
4423
4358
|
*/
|
|
4424
4359
|
provisioningState?: MembershipProvisioningState;
|
|
4360
|
+
/**
|
|
4361
|
+
* WorkOS `om_...` form of `id`. `null` when the membership is
|
|
4362
|
+
* pre-provisioned (invited, signup not completed -- no WorkOS record yet).
|
|
4363
|
+
* Explicit companion to the canonical `id`; see the type-level doc comment.
|
|
4364
|
+
*/
|
|
4365
|
+
workosMembershipId?: string | null;
|
|
4366
|
+
/**
|
|
4367
|
+
* WorkOS `user_...` form of `userId`. `null` when the member has not
|
|
4368
|
+
* completed WorkOS signup yet. Explicit companion to the canonical
|
|
4369
|
+
* `userId`; see the type-level doc comment.
|
|
4370
|
+
*/
|
|
4371
|
+
workosUserId?: string | null;
|
|
4425
4372
|
user?: {
|
|
4426
4373
|
id: string;
|
|
4427
4374
|
email: string;
|
|
@@ -4622,6 +4569,121 @@ interface CostByModelResponse {
|
|
|
4622
4569
|
totalCallCount: number;
|
|
4623
4570
|
}
|
|
4624
4571
|
|
|
4572
|
+
/**
|
|
4573
|
+
* Agent-specific type definitions
|
|
4574
|
+
* Types for autonomous agents with tools, memory, and constraints
|
|
4575
|
+
*/
|
|
4576
|
+
|
|
4577
|
+
type AgentKind = 'orchestrator' | 'specialist' | 'utility' | 'platform';
|
|
4578
|
+
|
|
4579
|
+
/**
|
|
4580
|
+
* Serialized Registry Types
|
|
4581
|
+
*
|
|
4582
|
+
* Pre-computed JSON-safe types for API responses and Command View.
|
|
4583
|
+
* Serialization happens once at API startup, enabling instant response times.
|
|
4584
|
+
*/
|
|
4585
|
+
|
|
4586
|
+
/**
|
|
4587
|
+
* Serialized agent definition (JSON-safe)
|
|
4588
|
+
* Result of serializeDefinition(AgentDefinition)
|
|
4589
|
+
*/
|
|
4590
|
+
interface SerializedAgentDefinition {
|
|
4591
|
+
config: {
|
|
4592
|
+
resourceId: string;
|
|
4593
|
+
name: string;
|
|
4594
|
+
description: string;
|
|
4595
|
+
version: string;
|
|
4596
|
+
type: 'agent';
|
|
4597
|
+
/**
|
|
4598
|
+
* Imported from the runtime type instead of hand-copied. It used to be a hand-written literal
|
|
4599
|
+
* union that said `'system'` where `AgentKind`'s fourth member is `'platform'` -- undetected
|
|
4600
|
+
* because `serializeDefinition` returns `any` and every call site casts the result to this
|
|
4601
|
+
* interface, so the literal union was never actually checked against real data. Deriving from
|
|
4602
|
+
* the source of truth makes that class of drift a type error instead of a silent typo.
|
|
4603
|
+
*/
|
|
4604
|
+
kind: AgentKind;
|
|
4605
|
+
status: 'dev' | 'prod';
|
|
4606
|
+
links?: ResourceLink[];
|
|
4607
|
+
category?: ResourceCategory;
|
|
4608
|
+
/** Whether this resource is archived and should be excluded from registration and deployment */
|
|
4609
|
+
archived?: boolean;
|
|
4610
|
+
systemPrompt: string;
|
|
4611
|
+
constraints?: {
|
|
4612
|
+
maxIterations?: number;
|
|
4613
|
+
timeout?: number;
|
|
4614
|
+
maxSessionMemoryKeys?: number;
|
|
4615
|
+
maxMemoryTokens?: number;
|
|
4616
|
+
};
|
|
4617
|
+
sessionCapable?: boolean;
|
|
4618
|
+
memoryPreferences?: string;
|
|
4619
|
+
};
|
|
4620
|
+
modelConfig: {
|
|
4621
|
+
provider: string;
|
|
4622
|
+
model: string;
|
|
4623
|
+
apiKey: string;
|
|
4624
|
+
/**
|
|
4625
|
+
* Optional here, matching `ModelConfig` -- this used to be required even though neither real
|
|
4626
|
+
* agent literal in the monorepo (`local-test-agent`, the `createPlatformToolAgent` test fixture)
|
|
4627
|
+
* sets it, and nothing caught the mismatch for the same `serializeDefinition`-returns-`any`
|
|
4628
|
+
* reason `kind` drifted above.
|
|
4629
|
+
*/
|
|
4630
|
+
temperature?: number;
|
|
4631
|
+
maxOutputTokens?: number;
|
|
4632
|
+
topP?: number;
|
|
4633
|
+
modelOptions?: Record<string, unknown>;
|
|
4634
|
+
};
|
|
4635
|
+
contract: {
|
|
4636
|
+
inputSchema: object;
|
|
4637
|
+
outputSchema?: object;
|
|
4638
|
+
};
|
|
4639
|
+
tools: Array<{
|
|
4640
|
+
name: string;
|
|
4641
|
+
description: string;
|
|
4642
|
+
inputSchema?: object;
|
|
4643
|
+
outputSchema?: object;
|
|
4644
|
+
}>;
|
|
4645
|
+
metricsConfig?: object;
|
|
4646
|
+
}
|
|
4647
|
+
/**
|
|
4648
|
+
* Serialized workflow definition (JSON-safe)
|
|
4649
|
+
* Result of serializeDefinition(WorkflowDefinition)
|
|
4650
|
+
*/
|
|
4651
|
+
interface SerializedWorkflowDefinition {
|
|
4652
|
+
config: {
|
|
4653
|
+
resourceId: string;
|
|
4654
|
+
name: string;
|
|
4655
|
+
description: string;
|
|
4656
|
+
version: string;
|
|
4657
|
+
type: 'workflow';
|
|
4658
|
+
status: 'dev' | 'prod';
|
|
4659
|
+
links?: ResourceLink[];
|
|
4660
|
+
category?: ResourceCategory;
|
|
4661
|
+
/** Whether this resource is archived and should be excluded from registration and deployment */
|
|
4662
|
+
archived?: boolean;
|
|
4663
|
+
};
|
|
4664
|
+
entryPoint: string;
|
|
4665
|
+
steps: Array<{
|
|
4666
|
+
id: string;
|
|
4667
|
+
name: string;
|
|
4668
|
+
description: string;
|
|
4669
|
+
inputSchema?: object;
|
|
4670
|
+
outputSchema?: object;
|
|
4671
|
+
next: {
|
|
4672
|
+
type: 'linear' | 'conditional';
|
|
4673
|
+
target?: string;
|
|
4674
|
+
routes?: Array<{
|
|
4675
|
+
target: string;
|
|
4676
|
+
}>;
|
|
4677
|
+
default?: string;
|
|
4678
|
+
} | null;
|
|
4679
|
+
}>;
|
|
4680
|
+
contract: {
|
|
4681
|
+
inputSchema: object;
|
|
4682
|
+
outputSchema?: object;
|
|
4683
|
+
};
|
|
4684
|
+
metricsConfig?: object;
|
|
4685
|
+
}
|
|
4686
|
+
|
|
4625
4687
|
/**
|
|
4626
4688
|
* Base Execution Engine type definitions
|
|
4627
4689
|
* Core types shared across all Execution Engine resources
|
|
@@ -6378,54 +6440,6 @@ interface CollapsibleJsonSectionProps {
|
|
|
6378
6440
|
}
|
|
6379
6441
|
declare function CollapsibleJsonSection({ title, data, defaultExpanded }: CollapsibleJsonSectionProps): react_jsx_runtime.JSX.Element;
|
|
6380
6442
|
|
|
6381
|
-
/**
|
|
6382
|
-
* Shared types for ResourceDefinition components
|
|
6383
|
-
*/
|
|
6384
|
-
/** Serialized knowledge node from API response */
|
|
6385
|
-
interface SerializedKnowledgeNode {
|
|
6386
|
-
id: string;
|
|
6387
|
-
description: string;
|
|
6388
|
-
loaded: boolean;
|
|
6389
|
-
hasPrompt: boolean;
|
|
6390
|
-
[key: string]: unknown;
|
|
6391
|
-
}
|
|
6392
|
-
/** Serialized knowledge map from API response */
|
|
6393
|
-
interface SerializedKnowledgeMap {
|
|
6394
|
-
nodeCount: number;
|
|
6395
|
-
nodes: SerializedKnowledgeNode[];
|
|
6396
|
-
}
|
|
6397
|
-
|
|
6398
|
-
interface NewKnowledgeMapGraphProps {
|
|
6399
|
-
knowledgeMap: SerializedKnowledgeMap;
|
|
6400
|
-
agentName: string;
|
|
6401
|
-
compact?: boolean;
|
|
6402
|
-
fitViewTrigger?: number;
|
|
6403
|
-
}
|
|
6404
|
-
declare function NewKnowledgeMapGraph(props: NewKnowledgeMapGraphProps): react_jsx_runtime.JSX.Element;
|
|
6405
|
-
|
|
6406
|
-
interface KnowledgeMapNodeData {
|
|
6407
|
-
id: string;
|
|
6408
|
-
name: string;
|
|
6409
|
-
description: string;
|
|
6410
|
-
loaded: boolean;
|
|
6411
|
-
hasPrompt: boolean;
|
|
6412
|
-
isAgentNode: boolean;
|
|
6413
|
-
[key: string]: unknown;
|
|
6414
|
-
}
|
|
6415
|
-
interface KnowledgeMapEdgeData {
|
|
6416
|
-
[key: string]: unknown;
|
|
6417
|
-
}
|
|
6418
|
-
declare function useNewKnowledgeMapLayout(knowledgeMap: SerializedKnowledgeMap | undefined, agentName: string): {
|
|
6419
|
-
nodes: Node<KnowledgeMapNodeData>[];
|
|
6420
|
-
edges: Edge<KnowledgeMapEdgeData>[];
|
|
6421
|
-
};
|
|
6422
|
-
|
|
6423
|
-
type NewKnowledgeMapNodeProps = NodeProps<Node<KnowledgeMapNodeData>>;
|
|
6424
|
-
declare const NewKnowledgeMapNode: React$1.NamedExoticComponent<NewKnowledgeMapNodeProps>;
|
|
6425
|
-
|
|
6426
|
-
type NewKnowledgeMapEdgeProps = EdgeProps<Edge<KnowledgeMapEdgeData, string>>;
|
|
6427
|
-
declare const NewKnowledgeMapEdge: React$1.NamedExoticComponent<NewKnowledgeMapEdgeProps>;
|
|
6428
|
-
|
|
6429
6443
|
declare const showInfoNotification: (message: string) => void;
|
|
6430
6444
|
declare const showSuccessNotification: (message: string) => void;
|
|
6431
6445
|
declare const showErrorNotification: (error: Error | string) => void;
|
|
@@ -6916,6 +6930,23 @@ interface MembershipStatusBadgeProps {
|
|
|
6916
6930
|
}
|
|
6917
6931
|
declare function MembershipStatusBadge({ status, size, variant }: MembershipStatusBadgeProps): react_jsx_runtime.JSX.Element;
|
|
6918
6932
|
|
|
6933
|
+
interface ProvisioningStateBadgeProps {
|
|
6934
|
+
/**
|
|
6935
|
+
* `undefined` means the endpoint did not report a provisioning state, which is
|
|
6936
|
+
* indistinguishable from the ordinary case for display purposes.
|
|
6937
|
+
*/
|
|
6938
|
+
state?: MembershipProvisioningState;
|
|
6939
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
6940
|
+
variant?: 'light' | 'filled' | 'outline' | 'dot';
|
|
6941
|
+
}
|
|
6942
|
+
/**
|
|
6943
|
+
* Marks a membership that is not backed by a completed signup.
|
|
6944
|
+
*
|
|
6945
|
+
* Renders nothing for `linked` and for `undefined` — those are the ordinary case,
|
|
6946
|
+
* and a badge on every row would carry no information.
|
|
6947
|
+
*/
|
|
6948
|
+
declare function ProvisioningStateBadge({ state, size, variant }: ProvisioningStateBadgeProps): react_jsx_runtime.JSX.Element | null;
|
|
6949
|
+
|
|
6919
6950
|
interface OrganizationMembershipsListProps {
|
|
6920
6951
|
memberships: MembershipWithDetails[];
|
|
6921
6952
|
loading: boolean;
|
|
@@ -7394,5 +7425,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
7394
7425
|
|
|
7395
7426
|
declare const operationsManifest: SystemModule;
|
|
7396
7427
|
|
|
7397
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton,
|
|
7398
|
-
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, AgentIterationTotals, AppErrorBoundaryProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CompanyDetailPageProps, ContactDetailPageProps, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CreateRoleModalProps, CrmOverviewProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps,
|
|
7428
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProvisioningStateBadge, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useRecentCrmActivity };
|
|
7429
|
+
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, AgentIterationTotals, AppErrorBoundaryProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CompanyDetailPageProps, ContactDetailPageProps, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CreateRoleModalProps, CrmOverviewProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, LogLevel, MdxRendererProps, NavigationButtonProps, PermissionRow, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, StatCardProps, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StyledMarkdownProps, TabSectionProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
|
package/dist/components/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton,
|
|
1
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProvisioningStateBadge, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useRecentCrmActivity } from '../chunk-5TERYXOO.js';
|
|
2
2
|
import '../chunk-4OEVLV66.js';
|
|
3
3
|
import '../chunk-RBGVNPA6.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-6ZAP3FOA.js';
|
|
5
5
|
import '../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../chunk-MKH2KOAO.js';
|
|
8
8
|
import '../chunk-XNW3O6QW.js';
|
|
9
|
-
import '../chunk-
|
|
9
|
+
import '../chunk-L7BZZ4SI.js';
|
|
10
10
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-GMXGDO3I.js';
|
|
11
11
|
export { CardHeader } from '../chunk-62GVNH5U.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-P45GQ3ZW.js';
|
|
13
13
|
import '../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../chunk-M7WWRZ5Z.js';
|
|
15
15
|
export { StyledMarkdown } from '../chunk-JFBZ6XDW.js';
|
|
@@ -18,7 +18,7 @@ import '../chunk-Q7DJKLEN.js';
|
|
|
18
18
|
export { Graph_module_css_default as graphStyles } from '../chunk-HENXLGVD.js';
|
|
19
19
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-BLXJEIQS.js';
|
|
20
20
|
import '../chunk-RNP5R5I3.js';
|
|
21
|
-
import '../chunk-
|
|
21
|
+
import '../chunk-RT4KRGZT.js';
|
|
22
22
|
import '../chunk-I7BZVVVU.js';
|
|
23
23
|
import '../chunk-Y6I3IC45.js';
|
|
24
24
|
import '../chunk-6SSQGWK7.js';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export { useBreadcrumbs } from '../../chunk-
|
|
1
|
+
export { useBreadcrumbs } from '../../chunk-5TERYXOO.js';
|
|
2
2
|
import '../../chunk-4OEVLV66.js';
|
|
3
3
|
import '../../chunk-RBGVNPA6.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-6ZAP3FOA.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
8
|
import '../../chunk-XNW3O6QW.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-L7BZZ4SI.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import '../../chunk-62GVNH5U.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-P45GQ3ZW.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-M7WWRZ5Z.js';
|
|
15
15
|
import '../../chunk-JFBZ6XDW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-Q7DJKLEN.js';
|
|
|
18
18
|
import '../../chunk-HENXLGVD.js';
|
|
19
19
|
import '../../chunk-BLXJEIQS.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-RT4KRGZT.js';
|
|
22
22
|
import '../../chunk-I7BZVVVU.js';
|
|
23
23
|
import '../../chunk-Y6I3IC45.js';
|
|
24
24
|
import '../../chunk-6SSQGWK7.js';
|