@elevasis/ui 2.20.0 → 2.21.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 (66) hide show
  1. package/dist/api/index.js +2 -2
  2. package/dist/app/index.js +4 -4
  3. package/dist/charts/index.js +3 -3
  4. package/dist/{chunk-FMFX4K6E.js → chunk-7GG6OSD7.js} +34 -9
  5. package/dist/{chunk-GTYUP7MB.js → chunk-ATEHYDL3.js} +5 -21
  6. package/dist/{chunk-AL23U6C3.js → chunk-BIWHHWCJ.js} +1 -2
  7. package/dist/{chunk-JR5WNTLA.js → chunk-BJWIKEQG.js} +6 -11
  8. package/dist/{chunk-GP3AFJYG.js → chunk-CZK67OHH.js} +6 -11
  9. package/dist/{chunk-TO7QXDBX.js → chunk-DMYELNGA.js} +2 -2
  10. package/dist/{chunk-2CFOFSSG.js → chunk-EDX6WIN3.js} +6 -11
  11. package/dist/{chunk-PJVG3ISO.js → chunk-EGKNRM6P.js} +6 -8
  12. package/dist/{chunk-ZE2KQSHL.js → chunk-I5WRKH25.js} +4 -4
  13. package/dist/chunk-KVW56ERD.js +24 -0
  14. package/dist/{chunk-YP6T426C.js → chunk-LQU62KHD.js} +144 -432
  15. package/dist/{chunk-OUYH2SBS.js → chunk-LVUCBY7X.js} +2 -2
  16. package/dist/chunk-S7RL77QS.js +48 -0
  17. package/dist/{chunk-OD7GWIZS.js → chunk-SGXXJE52.js} +1 -121
  18. package/dist/{chunk-R7OJCNL3.js → chunk-T6INEVX6.js} +1 -1
  19. package/dist/{chunk-CTTY6FUT.js → chunk-TSSKOQBX.js} +2 -2
  20. package/dist/{chunk-Q4QJOSVS.js → chunk-ULZ2B3NC.js} +1 -1
  21. package/dist/chunk-VQESMHQV.js +336 -0
  22. package/dist/{chunk-MZFJWCPH.js → chunk-XLZZOFGM.js} +5 -19
  23. package/dist/{chunk-BHR7IV72.js → chunk-XUYBOO32.js} +1 -1
  24. package/dist/{chunk-M7W7CGPL.js → chunk-Z6FAH4XV.js} +1 -1
  25. package/dist/components/index.d.ts +46 -87
  26. package/dist/components/index.js +27 -26
  27. package/dist/components/navigation/index.d.ts +1 -13
  28. package/dist/components/navigation/index.js +11 -1
  29. package/dist/execution/index.d.ts +27 -0
  30. package/dist/features/crm/index.d.ts +12 -35
  31. package/dist/features/crm/index.js +11 -10
  32. package/dist/features/dashboard/index.d.ts +25 -27
  33. package/dist/features/dashboard/index.js +12 -11
  34. package/dist/features/delivery/index.d.ts +12 -35
  35. package/dist/features/delivery/index.js +11 -10
  36. package/dist/features/lead-gen/index.d.ts +14 -37
  37. package/dist/features/lead-gen/index.js +11 -10
  38. package/dist/features/monitoring/index.d.ts +12 -35
  39. package/dist/features/monitoring/index.js +13 -12
  40. package/dist/features/monitoring/requests/index.d.ts +13 -36
  41. package/dist/features/monitoring/requests/index.js +11 -10
  42. package/dist/features/operations/index.d.ts +44 -65
  43. package/dist/features/operations/index.js +14 -13
  44. package/dist/features/seo/index.d.ts +12 -35
  45. package/dist/features/seo/index.js +1 -1
  46. package/dist/features/settings/index.d.ts +12 -35
  47. package/dist/features/settings/index.js +11 -10
  48. package/dist/hooks/delivery/index.js +2 -2
  49. package/dist/hooks/index.d.ts +46 -66
  50. package/dist/hooks/index.js +10 -9
  51. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +92 -121
  52. package/dist/hooks/published.d.ts +46 -66
  53. package/dist/hooks/published.js +10 -9
  54. package/dist/index.d.ts +365 -452
  55. package/dist/index.js +10 -9
  56. package/dist/provider/index.d.ts +62 -125
  57. package/dist/provider/index.js +8 -7
  58. package/dist/provider/published.d.ts +62 -125
  59. package/dist/provider/published.js +6 -5
  60. package/dist/test-utils/index.js +2 -2
  61. package/dist/types/index.d.ts +108 -135
  62. package/dist/utils/index.d.ts +26 -59
  63. package/dist/utils/index.js +1 -1
  64. package/package.json +4 -4
  65. package/dist/chunk-LR5CRY5A.js +0 -514
  66. package/dist/chunk-MG3NF7QL.js +0 -63
@@ -1,70 +1,4 @@
1
- /**
2
- * Command View Types
3
- *
4
- * Unified type definitions for the Command View graph visualization.
5
- * These types are used by both backend serialization and frontend rendering.
6
- *
7
- * Command View shows the resource graph: agents, workflows, triggers, integrations,
8
- * external resources, and human checkpoints with their relationships.
9
- */
10
-
11
- /**
12
- * Extended agent metadata for Command View
13
- * Includes model and capability information for graph display
14
- */
15
- interface CommandViewAgent extends ResourceDefinition {
16
- type: 'agent';
17
- modelProvider: string;
18
- modelId: string;
19
- toolCount: number;
20
- hasKnowledgeMap: boolean;
21
- hasMemory: boolean;
22
- sessionCapable: boolean;
23
- }
24
- /**
25
- * Extended workflow metadata for Command View
26
- * Includes step information for graph display
27
- */
28
- interface CommandViewWorkflow extends ResourceDefinition {
29
- type: 'workflow';
30
- stepCount: number;
31
- entryPoint: string;
32
- }
33
- /**
34
- * Relationship types between resources
35
- *
36
- * - triggers: Resource initiates/starts another resource (orange)
37
- * - uses: Resource uses an integration (teal)
38
- * - approval: Resource requires human approval (yellow)
39
- */
40
- type RelationshipType$1 = 'triggers' | 'uses' | 'approval';
41
- /**
42
- * Command View edge (relationship between resources)
43
- */
44
- interface CommandViewEdge$1 {
45
- id: string;
46
- source: string;
47
- target: string;
48
- relationship: RelationshipType$1;
49
- label?: string;
50
- }
51
- /**
52
- * Command View data structure
53
- * Complete graph data for visualization
54
- *
55
- * Backend serializes this once at startup and serves it via /command-view endpoint.
56
- * Frontend consumes this directly for graph rendering.
57
- */
58
- interface CommandViewData {
59
- workflows: CommandViewWorkflow[];
60
- agents: CommandViewAgent[];
61
- triggers: TriggerDefinition[];
62
- integrations: IntegrationDefinition[];
63
- externalResources: ExternalResourceDefinition[];
64
- humanCheckpoints: HumanCheckpointDefinition[];
65
- edges: CommandViewEdge$1[];
66
- domainDefinitions?: DomainDefinition[];
67
- }
1
+ import { z } from 'zod';
68
2
 
69
3
  /**
70
4
  * Supported integration types
@@ -107,8 +41,10 @@ interface ResourceDefinition {
107
41
  type: ResourceType;
108
42
  /** Environment/deployment status */
109
43
  status: ResourceStatus;
110
- /** Domain tags for filtering and organization */
111
- domains?: ResourceDomain[];
44
+ /** Graph links to Organization Model nodes */
45
+ links?: ResourceLink[];
46
+ /** Infrastructure category for filtering */
47
+ category?: ResourceCategory;
112
48
  /** Whether the agent supports multi-turn sessions (agents only) */
113
49
  sessionCapable?: boolean;
114
50
  /** Whether the resource is local (monorepo) or remote (externally deployed) */
@@ -116,33 +52,6 @@ interface ResourceDefinition {
116
52
  /** Whether this resource is archived and should be excluded from registration and deployment */
117
53
  archived?: boolean;
118
54
  }
119
- /**
120
- * Domain definition for Command View filtering
121
- *
122
- * Domains are organizational metadata for UI filtering/grouping.
123
- * No execution impact - purely for visualization.
124
- *
125
- * @example
126
- * {
127
- * id: 'support',
128
- * name: 'Customer Support',
129
- * description: 'Ticket triage, knowledge base, escalations',
130
- * color: 'green',
131
- * icon: 'IconHeadset'
132
- * }
133
- */
134
- interface DomainDefinition {
135
- /** Unique identifier (e.g., 'support') */
136
- id: string;
137
- /** Display name (e.g., 'Customer Support') */
138
- name: string;
139
- /** Purpose description */
140
- description: string;
141
- /** Optional Mantine color for UI (e.g., 'blue', 'green', 'orange') */
142
- color?: string;
143
- /** Optional Tabler icon name (e.g., 'IconHeadset') */
144
- icon?: string;
145
- }
146
55
  /** Webhook provider identifiers */
147
56
  type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify' | 'test';
148
57
  /** Webhook trigger configuration */
@@ -179,7 +88,7 @@ type TriggerConfig = WebhookTriggerConfig | ScheduleTriggerConfig | EventTrigger
179
88
  * scheduled cron jobs, platform events, or manual user actions.
180
89
  *
181
90
  * BREAKING CHANGES (2025-11-30):
182
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
91
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
183
92
  * - Field renames: `id` -> `resourceId` (inherited), `type` -> `triggerType`
184
93
  * - Relationship rename: `invokes` -> `triggers` (unified vocabulary)
185
94
  * - New required fields: `version` (inherited), `type: 'trigger'` (inherited)
@@ -224,7 +133,7 @@ interface TriggerDefinition extends ResourceDefinition {
224
133
  * stored here (queried at runtime from credentials table).
225
134
  *
226
135
  * BREAKING CHANGES (2025-11-30):
227
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
136
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
228
137
  * - Field renames: `id` -> `resourceId` (inherited)
229
138
  * - New required field: `status` (inherited) - organizations must add status to all integrations
230
139
  * - New required field: `version` (inherited) - organizations must add version to all integrations
@@ -265,7 +174,7 @@ type ExternalPlatform = 'n8n' | 'make' | 'zapier' | 'other';
265
174
  * no API integration with external platforms, no status syncing.
266
175
  *
267
176
  * BREAKING CHANGES (2025-11-30):
268
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
177
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
269
178
  * - Field renames: `id` -> `resourceId` (inherited)
270
179
  * - New required field: `version` (inherited) - organizations must add version to all external resources
271
180
  * - New required field: `type: 'external'` (inherited) - resource type discriminator
@@ -314,7 +223,7 @@ interface ExternalResourceDefinition extends ResourceDefinition {
314
223
  * Tasks with matching command_queue_group are routed to this checkpoint.
315
224
  *
316
225
  * BREAKING CHANGES (2025-11-30):
317
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
226
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
318
227
  * - Field renames: `id` -> `resourceId` (inherited)
319
228
  * - description is now REQUIRED (was optional) - organizations must add description to all human checkpoints
320
229
  * - New required field: `version` (inherited) - organizations must add version to all human checkpoints
@@ -352,31 +261,93 @@ interface HumanCheckpointDefinition extends ResourceDefinition {
352
261
  }
353
262
 
354
263
  /**
355
- * Standard Domain Definitions
356
- * Centralized domain constants and definitions for all organization resources.
264
+ * Command View Types
265
+ *
266
+ * Unified type definitions for the Command View graph visualization.
267
+ * These types are used by both backend serialization and frontend rendering.
268
+ *
269
+ * Command View shows the resource graph: agents, workflows, triggers, integrations,
270
+ * external resources, and human checkpoints with their relationships.
357
271
  */
358
272
 
359
- declare const DOMAINS: {
360
- readonly INBOUND_PIPELINE: "inbound-pipeline";
361
- readonly LEAD_GEN_PIPELINE: "lead-gen-pipeline";
362
- readonly SUPPORT: "support";
363
- readonly CLIENT_SUPPORT: "client-support";
364
- readonly DELIVERY: "delivery";
365
- readonly OPERATIONS: "operations";
366
- readonly FINANCE: "finance";
367
- readonly EXECUTIVE: "executive";
368
- readonly INSTANTLY: "instantly";
369
- readonly TESTING: "testing";
370
- readonly INTERNAL: "internal";
371
- readonly INTEGRATION: "integration";
372
- readonly UTILITY: "utility";
373
- readonly DIAGNOSTIC: "diagnostic";
374
- };
375
273
  /**
376
- * ResourceDomain - Strongly typed domain identifier
377
- * Use this type for all domain references to ensure compile-time validation.
274
+ * Extended agent metadata for Command View
275
+ * Includes model and capability information for graph display
276
+ */
277
+ interface CommandViewAgent extends ResourceDefinition {
278
+ type: 'agent';
279
+ modelProvider: string;
280
+ modelId: string;
281
+ toolCount: number;
282
+ hasKnowledgeMap: boolean;
283
+ hasMemory: boolean;
284
+ sessionCapable: boolean;
285
+ }
286
+ /**
287
+ * Extended workflow metadata for Command View
288
+ * Includes step information for graph display
289
+ */
290
+ interface CommandViewWorkflow extends ResourceDefinition {
291
+ type: 'workflow';
292
+ stepCount: number;
293
+ entryPoint: string;
294
+ }
295
+ /**
296
+ * Relationship types between resources
297
+ *
298
+ * - triggers: Resource initiates/starts another resource (orange)
299
+ * - uses: Resource uses an integration (teal)
300
+ * - approval: Resource requires human approval (yellow)
301
+ */
302
+ type RelationshipType$1 = 'triggers' | 'uses' | 'approval';
303
+ /**
304
+ * Command View edge (relationship between resources)
378
305
  */
379
- type ResourceDomain = (typeof DOMAINS)[keyof typeof DOMAINS];
306
+ interface CommandViewEdge$1 {
307
+ id: string;
308
+ source: string;
309
+ target: string;
310
+ relationship: RelationshipType$1;
311
+ label?: string;
312
+ }
313
+ /**
314
+ * Command View data structure
315
+ * Complete graph data for visualization
316
+ *
317
+ * Backend serializes this once at startup and serves it via /command-view endpoint.
318
+ * Frontend consumes this directly for graph rendering.
319
+ */
320
+ interface CommandViewData {
321
+ workflows: CommandViewWorkflow[];
322
+ agents: CommandViewAgent[];
323
+ triggers: TriggerDefinition[];
324
+ integrations: IntegrationDefinition[];
325
+ externalResources: ExternalResourceDefinition[];
326
+ humanCheckpoints: HumanCheckpointDefinition[];
327
+ edges: CommandViewEdge$1[];
328
+ }
329
+
330
+ declare const LinkSchema: z.ZodObject<{
331
+ nodeId: z.ZodString;
332
+ kind: z.ZodEnum<{
333
+ contains: "contains";
334
+ references: "references";
335
+ exposes: "exposes";
336
+ maps_to: "maps_to";
337
+ "operates-on": "operates-on";
338
+ uses: "uses";
339
+ }>;
340
+ }, z.core.$strip>;
341
+ type Link = z.infer<typeof LinkSchema>;
342
+
343
+ declare const ResourceCategorySchema: z.ZodEnum<{
344
+ production: "production";
345
+ diagnostic: "diagnostic";
346
+ internal: "internal";
347
+ testing: "testing";
348
+ }>;
349
+ type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
350
+ type ResourceLink = Link;
380
351
 
381
352
  /**
382
353
  * Command View Types
@@ -3218,32 +3218,27 @@ interface CostByModelResponse {
3218
3218
  */
3219
3219
  type IntegrationType = 'gmail' | 'google-sheets' | 'slack' | 'github' | 'linear' | 'attio' | 'airtable' | 'salesforce' | 'hubspot' | 'stripe' | 'twilio' | 'sendgrid' | 'mailgun' | 'zapier' | 'webhook' | 'apify' | 'instantly' | 'resend' | 'signature-api' | 'dropbox' | 'anymailfinder' | 'tomba' | 'millionverifier';
3220
3220
 
3221
- /**
3222
- * Standard Domain Definitions
3223
- * Centralized domain constants and definitions for all organization resources.
3224
- */
3225
-
3226
- declare const DOMAINS: {
3227
- readonly INBOUND_PIPELINE: "inbound-pipeline";
3228
- readonly LEAD_GEN_PIPELINE: "lead-gen-pipeline";
3229
- readonly SUPPORT: "support";
3230
- readonly CLIENT_SUPPORT: "client-support";
3231
- readonly DELIVERY: "delivery";
3232
- readonly OPERATIONS: "operations";
3233
- readonly FINANCE: "finance";
3234
- readonly EXECUTIVE: "executive";
3235
- readonly INSTANTLY: "instantly";
3236
- readonly TESTING: "testing";
3237
- readonly INTERNAL: "internal";
3238
- readonly INTEGRATION: "integration";
3239
- readonly UTILITY: "utility";
3240
- readonly DIAGNOSTIC: "diagnostic";
3241
- };
3242
- /**
3243
- * ResourceDomain - Strongly typed domain identifier
3244
- * Use this type for all domain references to ensure compile-time validation.
3245
- */
3246
- type ResourceDomain = (typeof DOMAINS)[keyof typeof DOMAINS];
3221
+ declare const LinkSchema: z.ZodObject<{
3222
+ nodeId: z.ZodString;
3223
+ kind: z.ZodEnum<{
3224
+ contains: "contains";
3225
+ references: "references";
3226
+ exposes: "exposes";
3227
+ maps_to: "maps_to";
3228
+ "operates-on": "operates-on";
3229
+ uses: "uses";
3230
+ }>;
3231
+ }, z.core.$strip>;
3232
+ type Link = z.infer<typeof LinkSchema>;
3233
+
3234
+ declare const ResourceCategorySchema: z.ZodEnum<{
3235
+ production: "production";
3236
+ diagnostic: "diagnostic";
3237
+ internal: "internal";
3238
+ testing: "testing";
3239
+ }>;
3240
+ type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
3241
+ type ResourceLink = Link;
3247
3242
 
3248
3243
  /**
3249
3244
  * Resource Registry type definitions
@@ -3275,8 +3270,10 @@ interface ResourceDefinition {
3275
3270
  type: ResourceType;
3276
3271
  /** Environment/deployment status */
3277
3272
  status: ResourceStatus;
3278
- /** Domain tags for filtering and organization */
3279
- domains?: ResourceDomain[];
3273
+ /** Graph links to Organization Model nodes */
3274
+ links?: ResourceLink[];
3275
+ /** Infrastructure category for filtering */
3276
+ category?: ResourceCategory;
3280
3277
  /** Whether the agent supports multi-turn sessions (agents only) */
3281
3278
  sessionCapable?: boolean;
3282
3279
  /** Whether the resource is local (monorepo) or remote (externally deployed) */
@@ -3284,33 +3281,6 @@ interface ResourceDefinition {
3284
3281
  /** Whether this resource is archived and should be excluded from registration and deployment */
3285
3282
  archived?: boolean;
3286
3283
  }
3287
- /**
3288
- * Domain definition for Command View filtering
3289
- *
3290
- * Domains are organizational metadata for UI filtering/grouping.
3291
- * No execution impact - purely for visualization.
3292
- *
3293
- * @example
3294
- * {
3295
- * id: 'support',
3296
- * name: 'Customer Support',
3297
- * description: 'Ticket triage, knowledge base, escalations',
3298
- * color: 'green',
3299
- * icon: 'IconHeadset'
3300
- * }
3301
- */
3302
- interface DomainDefinition {
3303
- /** Unique identifier (e.g., 'support') */
3304
- id: string;
3305
- /** Display name (e.g., 'Customer Support') */
3306
- name: string;
3307
- /** Purpose description */
3308
- description: string;
3309
- /** Optional Mantine color for UI (e.g., 'blue', 'green', 'orange') */
3310
- color?: string;
3311
- /** Optional Tabler icon name (e.g., 'IconHeadset') */
3312
- icon?: string;
3313
- }
3314
3284
  /** Webhook provider identifiers */
3315
3285
  type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify' | 'test';
3316
3286
  /** Webhook trigger configuration */
@@ -3347,7 +3317,7 @@ type TriggerConfig = WebhookTriggerConfig | ScheduleTriggerConfig | EventTrigger
3347
3317
  * scheduled cron jobs, platform events, or manual user actions.
3348
3318
  *
3349
3319
  * BREAKING CHANGES (2025-11-30):
3350
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
3320
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
3351
3321
  * - Field renames: `id` -> `resourceId` (inherited), `type` -> `triggerType`
3352
3322
  * - Relationship rename: `invokes` -> `triggers` (unified vocabulary)
3353
3323
  * - New required fields: `version` (inherited), `type: 'trigger'` (inherited)
@@ -3392,7 +3362,7 @@ interface TriggerDefinition extends ResourceDefinition {
3392
3362
  * stored here (queried at runtime from credentials table).
3393
3363
  *
3394
3364
  * BREAKING CHANGES (2025-11-30):
3395
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
3365
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
3396
3366
  * - Field renames: `id` -> `resourceId` (inherited)
3397
3367
  * - New required field: `status` (inherited) - organizations must add status to all integrations
3398
3368
  * - New required field: `version` (inherited) - organizations must add version to all integrations
@@ -3433,7 +3403,7 @@ type ExternalPlatform = 'n8n' | 'make' | 'zapier' | 'other';
3433
3403
  * no API integration with external platforms, no status syncing.
3434
3404
  *
3435
3405
  * BREAKING CHANGES (2025-11-30):
3436
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
3406
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
3437
3407
  * - Field renames: `id` -> `resourceId` (inherited)
3438
3408
  * - New required field: `version` (inherited) - organizations must add version to all external resources
3439
3409
  * - New required field: `type: 'external'` (inherited) - resource type discriminator
@@ -3482,7 +3452,7 @@ interface ExternalResourceDefinition extends ResourceDefinition {
3482
3452
  * Tasks with matching command_queue_group are routed to this checkpoint.
3483
3453
  *
3484
3454
  * BREAKING CHANGES (2025-11-30):
3485
- * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, domains)
3455
+ * - Now extends ResourceDefinition (inherits: resourceId, name, description, version, type, status, links, category)
3486
3456
  * - Field renames: `id` -> `resourceId` (inherited)
3487
3457
  * - description is now REQUIRED (was optional) - organizations must add description to all human checkpoints
3488
3458
  * - New required field: `version` (inherited) - organizations must add version to all human checkpoints
@@ -3584,7 +3554,6 @@ interface CommandViewData {
3584
3554
  externalResources: ExternalResourceDefinition[];
3585
3555
  humanCheckpoints: HumanCheckpointDefinition[];
3586
3556
  edges: CommandViewEdge$1[];
3587
- domainDefinitions?: DomainDefinition[];
3588
3557
  }
3589
3558
 
3590
3559
  /**
@@ -3667,6 +3636,8 @@ interface SerializedAgentDefinition {
3667
3636
  version: string;
3668
3637
  type: 'agent';
3669
3638
  status: 'dev' | 'prod';
3639
+ links?: ResourceLink[];
3640
+ category?: ResourceCategory;
3670
3641
  /** Whether this resource is archived and should be excluded from registration and deployment */
3671
3642
  archived?: boolean;
3672
3643
  systemPrompt: string;
@@ -3722,6 +3693,8 @@ interface SerializedWorkflowDefinition {
3722
3693
  version: string;
3723
3694
  type: 'workflow';
3724
3695
  status: 'dev' | 'prod';
3696
+ links?: ResourceLink[];
3697
+ category?: ResourceCategory;
3725
3698
  /** Whether this resource is archived and should be excluded from registration and deployment */
3726
3699
  archived?: boolean;
3727
3700
  };
@@ -4533,9 +4506,9 @@ declare const ExecutionHistoryItemSchema: z.ZodObject<{
4533
4506
  createdAt: z.ZodString;
4534
4507
  status: z.ZodEnum<{
4535
4508
  completed: "completed";
4509
+ cancelled: "cancelled";
4536
4510
  failed: "failed";
4537
4511
  running: "running";
4538
- cancelled: "cancelled";
4539
4512
  }>;
4540
4513
  step: z.ZodNullable<z.ZodNumber>;
4541
4514
  itemLabel: z.ZodNullable<z.ZodString>;
@@ -4552,9 +4525,9 @@ declare const ExecutionHistoryResponseSchema: z.ZodObject<{
4552
4525
  createdAt: z.ZodString;
4553
4526
  status: z.ZodEnum<{
4554
4527
  completed: "completed";
4528
+ cancelled: "cancelled";
4555
4529
  failed: "failed";
4556
4530
  running: "running";
4557
- cancelled: "cancelled";
4558
4531
  }>;
4559
4532
  step: z.ZodNullable<z.ZodNumber>;
4560
4533
  itemLabel: z.ZodNullable<z.ZodString>;
@@ -5005,7 +4978,7 @@ declare function useGetExecutionHistory(scheduleId: string | undefined, options?
5005
4978
  executions: {
5006
4979
  id: string;
5007
4980
  createdAt: string;
5008
- status: "completed" | "failed" | "running" | "cancelled";
4981
+ status: "completed" | "cancelled" | "failed" | "running";
5009
4982
  step: number | null;
5010
4983
  itemLabel: string | null;
5011
4984
  duration: number | null;
@@ -5993,8 +5966,8 @@ declare const RequestSourceEnum: z.ZodEnum<{
5993
5966
  cli: "cli";
5994
5967
  }>;
5995
5968
  declare const RequestTypeEnum: z.ZodEnum<{
5996
- other: "other";
5997
5969
  feature: "feature";
5970
+ other: "other";
5998
5971
  bug: "bug";
5999
5972
  question: "question";
6000
5973
  }>;
@@ -7790,6 +7763,10 @@ declare function useVisibleResources(): {
7790
7763
  };
7791
7764
 
7792
7765
  type DomainFilterState = 'neutral' | 'include' | 'exclude';
7766
+ type ResourceFilterFacet = {
7767
+ id: string;
7768
+ label: string;
7769
+ };
7793
7770
  interface DomainFiltersStore {
7794
7771
  filters: Record<string, DomainFilterState>;
7795
7772
  cycle: (domainId: string) => void;
@@ -7821,6 +7798,9 @@ declare const useCommandViewDomainFilters: zustand.UseBoundStore<Omit<zustand.St
7821
7798
  getOptions: () => Partial<zustand_middleware.PersistOptions<DomainFiltersStore, DomainFiltersStore, unknown>>;
7822
7799
  };
7823
7800
  }>;
7801
+ declare function getResourceFilterFacetIds(resource: ResourceDefinition): string[];
7802
+ declare function labelResourceFilterFacet(id: string): string;
7803
+ declare function collectResourceFilterFacets(items: ResourceDefinition[]): ResourceFilterFacet[];
7824
7804
  declare function filterByDomainFilters(items: ResourceDefinition[], filters: Record<string, DomainFilterState>): ResourceDefinition[];
7825
7805
 
7826
7806
  /**
@@ -8275,5 +8255,5 @@ declare function useCreateNote(): _tanstack_react_query.UseMutationResult<{
8275
8255
  type?: string;
8276
8256
  }, "organization_id">, unknown>;
8277
8257
 
8278
- export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, createFeatureAccessHook, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
8279
- export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, FeatureAccessResult, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, RequestRow, RequestsListFilters, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StaleDealSummaryItem, StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
8258
+ export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, collectResourceFilterFacets, companyKeys, contactKeys, createFeatureAccessHook, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
8259
+ export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, FeatureAccessResult, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, RequestRow, RequestsListFilters, ResourceFilterFacet, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StaleDealSummaryItem, StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
@@ -1,21 +1,22 @@
1
- export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from '../chunk-FMFX4K6E.js';
1
+ export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from '../chunk-7GG6OSD7.js';
2
2
  import '../chunk-BRXELOHC.js';
3
3
  export { observabilityKeys, useErrorTrends } from '../chunk-QSTH6T77.js';
4
- export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateTask, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteMilestone, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateProject as useUpdateDeliveryProject, useUpdateMilestone, useUpdateTask } from '../chunk-M7W7CGPL.js';
4
+ export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateTask, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteMilestone, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateProject as useUpdateDeliveryProject, useUpdateMilestone, useUpdateTask } from '../chunk-Z6FAH4XV.js';
5
5
  import '../chunk-22UVE3RA.js';
6
6
  export { useMergedExecution } from '../chunk-3ZMAGTWF.js';
7
- import '../chunk-Q4QJOSVS.js';
8
- import '../chunk-TO7QXDBX.js';
7
+ import '../chunk-ULZ2B3NC.js';
8
+ import '../chunk-DMYELNGA.js';
9
9
  import '../chunk-Q5HC6ENG.js';
10
10
  import '../chunk-WLOQ4IBG.js';
11
- export { createFeatureAccessHook, createUseFeatureAccess } from '../chunk-LR5CRY5A.js';
12
- import '../chunk-OUYH2SBS.js';
11
+ import '../chunk-KVW56ERD.js';
12
+ import '../chunk-LVUCBY7X.js';
13
+ export { createFeatureAccessHook, createUseFeatureAccess } from '../chunk-VQESMHQV.js';
13
14
  import '../chunk-RX4UWZZR.js';
14
- import '../chunk-BHR7IV72.js';
15
+ import '../chunk-XUYBOO32.js';
15
16
  import '../chunk-SZHARWKU.js';
16
17
  import '../chunk-3KMDHCAR.js';
17
18
  import '../chunk-NYBEU5TE.js';
18
- import '../chunk-R7OJCNL3.js';
19
+ import '../chunk-T6INEVX6.js';
19
20
  import '../chunk-2IFYDILW.js';
20
21
  import '../chunk-Q7DJKLEN.js';
21
22
  import '../chunk-7YQKVWSD.js';
@@ -24,7 +25,7 @@ import '../chunk-QJ2KCHKX.js';
24
25
  import '../chunk-HQ7M6PBW.js';
25
26
  import '../chunk-DT3QYZVU.js';
26
27
  import '../chunk-RNP5R5I3.js';
27
- export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-OD7GWIZS.js';
28
+ export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-SGXXJE52.js';
28
29
  import '../chunk-KRWALB24.js';
29
30
  import '../chunk-SLH2QLKV.js';
30
31
  import '../chunk-DK2HVHCY.js';