@elevasis/ui 2.10.2 → 2.12.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 (46) hide show
  1. package/dist/app/index.js +2 -2
  2. package/dist/{chunk-YQLE5HR5.js → chunk-235RO24Z.js} +2 -2
  3. package/dist/chunk-3ZMAGTWF.js +18 -0
  4. package/dist/{chunk-AT5XCBTU.js → chunk-7PLBPEBW.js} +2 -2
  5. package/dist/chunk-BRXELOHC.js +47 -0
  6. package/dist/{chunk-KYOF6NYW.js → chunk-ETWKPFOO.js} +1 -1
  7. package/dist/{chunk-M6ZZ2FW5.js → chunk-F6SMVMFC.js} +3 -3
  8. package/dist/{chunk-GJVGV7QZ.js → chunk-GHCYUZZE.js} +276 -5
  9. package/dist/{chunk-XA34RETF.js → chunk-GHIPBT5V.js} +1 -14
  10. package/dist/{chunk-TSX4I3NW.js → chunk-ISVFJCPP.js} +1 -1
  11. package/dist/{chunk-WHQXDETX.js → chunk-MISBW6WW.js} +124 -5
  12. package/dist/{chunk-LPSBID5V.js → chunk-PXFV47B3.js} +1 -1
  13. package/dist/{chunk-CLXMNMIS.js → chunk-TXZXMTZB.js} +652 -110
  14. package/dist/{chunk-6PNHW4X2.js → chunk-TYWZABTP.js} +115 -137
  15. package/dist/{chunk-E3IFHX6A.js → chunk-WM7JTTPX.js} +494 -311
  16. package/dist/{chunk-CYT4PORT.js → chunk-ZKCQEHEJ.js} +7 -51
  17. package/dist/components/index.d.ts +241 -3
  18. package/dist/components/index.js +20 -18
  19. package/dist/execution/index.js +2 -1
  20. package/dist/features/auth/index.d.ts +85 -0
  21. package/dist/features/crm/index.d.ts +94 -2
  22. package/dist/features/crm/index.js +6 -4
  23. package/dist/features/dashboard/index.js +7 -5
  24. package/dist/features/delivery/index.d.ts +132 -13
  25. package/dist/features/delivery/index.js +6 -4
  26. package/dist/features/lead-gen/index.js +10 -8
  27. package/dist/features/monitoring/index.js +8 -6
  28. package/dist/features/operations/index.js +9 -7
  29. package/dist/features/settings/index.d.ts +85 -0
  30. package/dist/features/settings/index.js +7 -5
  31. package/dist/hooks/index.d.ts +426 -52
  32. package/dist/hooks/index.js +5 -3
  33. package/dist/hooks/published.d.ts +426 -52
  34. package/dist/hooks/published.js +5 -3
  35. package/dist/index.d.ts +387 -23
  36. package/dist/index.js +7 -5
  37. package/dist/initialization/index.d.ts +85 -0
  38. package/dist/profile/index.d.ts +85 -0
  39. package/dist/provider/index.js +2 -2
  40. package/dist/supabase/index.d.ts +166 -0
  41. package/dist/supabase/index.js +2 -47
  42. package/dist/theme/index.js +2 -2
  43. package/dist/types/index.d.ts +86 -1
  44. package/dist/zustand/index.d.ts +0 -4
  45. package/dist/zustand/index.js +0 -10
  46. package/package.json +4 -4
@@ -2356,6 +2356,91 @@ type Database$1 = {
2356
2356
  },
2357
2357
  ]
2358
2358
  }
2359
+ reported_issues: {
2360
+ Row: {
2361
+ affected_page: string | null
2362
+ category: string
2363
+ context: Json$1 | null
2364
+ created_at: string
2365
+ description: string
2366
+ evidence: Json$1 | null
2367
+ id: string
2368
+ organization_id: string
2369
+ project_id: string | null
2370
+ reported_at: string
2371
+ reporter_id: string | null
2372
+ resolved_at: string | null
2373
+ severity: string
2374
+ source: string
2375
+ status: string
2376
+ task_id: string | null
2377
+ title: string
2378
+ updated_at: string
2379
+ }
2380
+ Insert: {
2381
+ affected_page?: string | null
2382
+ category: string
2383
+ context?: Json$1 | null
2384
+ created_at?: string
2385
+ description: string
2386
+ evidence?: Json$1 | null
2387
+ id?: string
2388
+ organization_id: string
2389
+ project_id?: string | null
2390
+ reported_at?: string
2391
+ reporter_id?: string | null
2392
+ resolved_at?: string | null
2393
+ severity: string
2394
+ source: string
2395
+ status?: string
2396
+ task_id?: string | null
2397
+ title: string
2398
+ updated_at?: string
2399
+ }
2400
+ Update: {
2401
+ affected_page?: string | null
2402
+ category?: string
2403
+ context?: Json$1 | null
2404
+ created_at?: string
2405
+ description?: string
2406
+ evidence?: Json$1 | null
2407
+ id?: string
2408
+ organization_id?: string
2409
+ project_id?: string | null
2410
+ reported_at?: string
2411
+ reporter_id?: string | null
2412
+ resolved_at?: string | null
2413
+ severity?: string
2414
+ source?: string
2415
+ status?: string
2416
+ task_id?: string | null
2417
+ title?: string
2418
+ updated_at?: string
2419
+ }
2420
+ Relationships: [
2421
+ {
2422
+ foreignKeyName: "reported_issues_organization_id_fkey"
2423
+ columns: ["organization_id"]
2424
+ isOneToOne: false
2425
+ referencedRelation: "organizations"
2426
+ referencedColumns: ["id"]
2427
+ },
2428
+ {
2429
+ foreignKeyName: "reported_issues_project_id_fkey"
2430
+ columns: ["project_id"]
2431
+ isOneToOne: false
2432
+ referencedRelation: "prj_projects"
2433
+ referencedColumns: ["id"]
2434
+ },
2435
+ {
2436
+ foreignKeyName: "reported_issues_task_id_fkey"
2437
+ columns: ["task_id"]
2438
+ isOneToOne: false
2439
+ referencedRelation: "prj_tasks"
2440
+ referencedColumns: ["id"]
2441
+ },
2442
+ ]
2443
+ }
2359
2444
  session_messages: {
2360
2445
  Row: {
2361
2446
  created_at: string | null
@@ -2752,6 +2837,7 @@ type MilestoneRow = Database$1['public']['Tables']['prj_milestones']['Row']
2752
2837
  type MilestoneUpdate = Database$1['public']['Tables']['prj_milestones']['Update']
2753
2838
 
2754
2839
  type TaskRow = Database$1['public']['Tables']['prj_tasks']['Row']
2840
+ type TaskUpdate = Database$1['public']['Tables']['prj_tasks']['Update']
2755
2841
 
2756
2842
  // Status enums
2757
2843
  type ProjectStatus = 'active' | 'on_track' | 'at_risk' | 'blocked' | 'completed' | 'paused'
@@ -5564,6 +5650,91 @@ type Database = {
5564
5650
  }
5565
5651
  ];
5566
5652
  };
5653
+ reported_issues: {
5654
+ Row: {
5655
+ affected_page: string | null;
5656
+ category: string;
5657
+ context: Json | null;
5658
+ created_at: string;
5659
+ description: string;
5660
+ evidence: Json | null;
5661
+ id: string;
5662
+ organization_id: string;
5663
+ project_id: string | null;
5664
+ reported_at: string;
5665
+ reporter_id: string | null;
5666
+ resolved_at: string | null;
5667
+ severity: string;
5668
+ source: string;
5669
+ status: string;
5670
+ task_id: string | null;
5671
+ title: string;
5672
+ updated_at: string;
5673
+ };
5674
+ Insert: {
5675
+ affected_page?: string | null;
5676
+ category: string;
5677
+ context?: Json | null;
5678
+ created_at?: string;
5679
+ description: string;
5680
+ evidence?: Json | null;
5681
+ id?: string;
5682
+ organization_id: string;
5683
+ project_id?: string | null;
5684
+ reported_at?: string;
5685
+ reporter_id?: string | null;
5686
+ resolved_at?: string | null;
5687
+ severity: string;
5688
+ source: string;
5689
+ status?: string;
5690
+ task_id?: string | null;
5691
+ title: string;
5692
+ updated_at?: string;
5693
+ };
5694
+ Update: {
5695
+ affected_page?: string | null;
5696
+ category?: string;
5697
+ context?: Json | null;
5698
+ created_at?: string;
5699
+ description?: string;
5700
+ evidence?: Json | null;
5701
+ id?: string;
5702
+ organization_id?: string;
5703
+ project_id?: string | null;
5704
+ reported_at?: string;
5705
+ reporter_id?: string | null;
5706
+ resolved_at?: string | null;
5707
+ severity?: string;
5708
+ source?: string;
5709
+ status?: string;
5710
+ task_id?: string | null;
5711
+ title?: string;
5712
+ updated_at?: string;
5713
+ };
5714
+ Relationships: [
5715
+ {
5716
+ foreignKeyName: "reported_issues_organization_id_fkey";
5717
+ columns: ["organization_id"];
5718
+ isOneToOne: false;
5719
+ referencedRelation: "organizations";
5720
+ referencedColumns: ["id"];
5721
+ },
5722
+ {
5723
+ foreignKeyName: "reported_issues_project_id_fkey";
5724
+ columns: ["project_id"];
5725
+ isOneToOne: false;
5726
+ referencedRelation: "prj_projects";
5727
+ referencedColumns: ["id"];
5728
+ },
5729
+ {
5730
+ foreignKeyName: "reported_issues_task_id_fkey";
5731
+ columns: ["task_id"];
5732
+ isOneToOne: false;
5733
+ referencedRelation: "prj_tasks";
5734
+ referencedColumns: ["id"];
5735
+ }
5736
+ ];
5737
+ };
5567
5738
  session_messages: {
5568
5739
  Row: {
5569
5740
  created_at: string | null;
@@ -6025,6 +6196,8 @@ interface DealContact {
6025
6196
  interface DealFilters {
6026
6197
  stage?: DealStage;
6027
6198
  search?: string;
6199
+ limit?: number;
6200
+ offset?: number;
6028
6201
  }
6029
6202
  /** Deal list item with joined contact and company data */
6030
6203
  interface DealListItem extends AcqDealRow {
@@ -6975,7 +7148,7 @@ interface DomainDefinition {
6975
7148
  icon?: string;
6976
7149
  }
6977
7150
  /** Webhook provider identifiers */
6978
- type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify';
7151
+ type WebhookProviderType = 'cal-com' | 'stripe' | 'signature-api' | 'instantly' | 'apify' | 'test';
6979
7152
  /** Webhook trigger configuration */
6980
7153
  interface WebhookTriggerConfig {
6981
7154
  /** Provider identifier */
@@ -7405,21 +7578,29 @@ interface ArchivedLogsState {
7405
7578
  */
7406
7579
  declare function useArchivedLogs(executionId: string | undefined): ArchivedLogsState;
7407
7580
 
7408
- interface UseExecuteWorkflowOptions<TSchema extends z.ZodType> {
7409
- schema: TSchema;
7410
- }
7411
- interface UseExecuteWorkflowParams<TSchema extends z.ZodType> {
7581
+ interface UseExecuteResourceOptions<TSchema extends z.ZodType | undefined = undefined> {
7412
7582
  resourceId: string;
7413
- resourceType: ExecuteAsyncParams['resourceType'];
7414
- input: z.infer<TSchema>;
7583
+ resourceType: ResourceType$1;
7584
+ schema?: TSchema;
7415
7585
  }
7416
7586
  /**
7417
- * Zod-validating wrapper around useExecuteAsync. Validates input against schema
7418
- * before POSTing; rejects with a useful error on validation failure.
7587
+ * Generic resource execution hook. Binds resourceId and resourceType at
7588
+ * construction time so callers only pass input to execute().
7589
+ *
7590
+ * When schema is provided, validates input via schema.safeParse and throws
7591
+ * a descriptive error on failure. When no schema, passes input through unchanged.
7592
+ *
7593
+ * @example
7594
+ * const { execute, isPending } = useExecuteResource({
7595
+ * resourceId: 'my-workflow',
7596
+ * resourceType: 'workflow',
7597
+ * schema: writeNoteInputSchema
7598
+ * })
7599
+ * await execute({ dealId: '...', note: '...' })
7419
7600
  */
7420
- declare function useExecuteWorkflow<TSchema extends z.ZodType>(options: UseExecuteWorkflowOptions<TSchema>): {
7421
- execute: (params: UseExecuteWorkflowParams<TSchema>) => Promise<ExecuteAsyncResult>;
7422
- mutation: _tanstack_react_query.UseMutationResult<ExecuteAsyncResult, Error, ExecuteAsyncParams, unknown>;
7601
+ declare function useExecuteResource<TSchema extends z.ZodType | undefined = undefined>(options: UseExecuteResourceOptions<TSchema>): {
7602
+ execute: (input: TSchema extends z.ZodType ? z.infer<TSchema> : unknown) => Promise<ExecuteAsyncResult>;
7603
+ mutation: ReturnType<typeof useExecuteAsync>;
7423
7604
  isPending: boolean;
7424
7605
  isSuccess: boolean;
7425
7606
  isError: boolean;
@@ -7428,6 +7609,54 @@ declare function useExecuteWorkflow<TSchema extends z.ZodType>(options: UseExecu
7428
7609
  reset: () => void;
7429
7610
  };
7430
7611
 
7612
+ interface EventSourceMessage {
7613
+ id: string;
7614
+ event: string;
7615
+ data: string;
7616
+ retry?: number;
7617
+ }
7618
+
7619
+ interface FetchEventSourceWithTokenRefreshOptions {
7620
+ url: string;
7621
+ getToken: () => Promise<string | undefined>;
7622
+ headers?: Record<string, string>;
7623
+ signal: AbortSignal;
7624
+ /** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
7625
+ tokenRefreshDelayMs?: number;
7626
+ onopen?: (response: Response) => void | Promise<void>;
7627
+ onmessage?: (event: EventSourceMessage) => void;
7628
+ onerror?: (error: unknown) => void;
7629
+ onclose?: () => void;
7630
+ }
7631
+
7632
+ interface SSEConnectionManagerLike {
7633
+ subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
7634
+ closeConnection(key: string): void;
7635
+ getConnectionInfo(): Map<string, {
7636
+ url: string;
7637
+ subscribers: number;
7638
+ }>;
7639
+ }
7640
+
7641
+ declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManagerLike, apiUrl: string): {
7642
+ liveExecutions: Set<string>;
7643
+ connected: boolean;
7644
+ error: string | null;
7645
+ runningCount: number;
7646
+ isLive: (executionId: string) => boolean;
7647
+ streamingLogs: Map<string, ExecutionLogMessage[]>;
7648
+ };
7649
+
7650
+ /**
7651
+ * Merges SSE-streamed logs with fetched execution data for instant log display.
7652
+ * Deduplicates by composite key (timestamp + message) to avoid showing the same
7653
+ * log twice while preserving distinct logs that share the same millisecond.
7654
+ *
7655
+ * When no streaming logs exist or all SSE logs are already in the fetched data,
7656
+ * returns the fetched execution unchanged for referential stability.
7657
+ */
7658
+ declare function useMergedExecution(fetchedExecution: APIExecutionDetail | undefined, streamingLogs: ExecutionLogMessage[] | undefined): APIExecutionDetail | undefined;
7659
+
7431
7660
  interface UseScheduledTasksOptions {
7432
7661
  status?: 'active' | 'paused' | 'completed' | 'cancelled';
7433
7662
  targetResourceType?: 'agent' | 'workflow';
@@ -7653,6 +7882,44 @@ declare function useCancelSchedule(): _tanstack_react_query.UseMutationResult<Ta
7653
7882
  */
7654
7883
  declare function useDeleteSchedule(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
7655
7884
 
7885
+ /**
7886
+ * Subscribe to Supabase Realtime for activity INSERT events.
7887
+ *
7888
+ * Replaces the former Activities SSE subscription. The `activities` table is
7889
+ * in the `supabase_realtime` publication (migration 20260418000000). RLS on
7890
+ * the table enforces org-scoping server-side; the filter here is a belt-and-
7891
+ * suspenders guard that also avoids receiving rows that RLS already blocks.
7892
+ *
7893
+ * When `enabled` is false (e.g., the user is on a route where activity feed
7894
+ * is not displayed) no channel is opened -- preserving the same route-gating
7895
+ * behaviour the SSEProvider enforced.
7896
+ *
7897
+ * On INSERT, invalidates the broad `['activities']` query key, which matches
7898
+ * both `['activities', 'list', ...]` and `['activities', 'trend', ...]` caches
7899
+ * used by `useActivities` and `useActivityTrend`.
7900
+ *
7901
+ * @param organizationId - Supabase UUID for the current org (used as RLS filter)
7902
+ * @param enabled - Whether to open the subscription (route-gating)
7903
+ */
7904
+ declare function useActivitiesRealtime(organizationId: string, enabled: boolean): void;
7905
+
7906
+ declare const projectActivityKeys: {
7907
+ all: readonly ["project-activities"];
7908
+ list: (projectId: string) => readonly ["project-activities", "list", string];
7909
+ };
7910
+ /**
7911
+ * Fetches activities scoped to a single project via entity filtering.
7912
+ *
7913
+ * Uses the existing /activities endpoint with entityType=project and entityId=projectId.
7914
+ * Wave 3's useProjectRealtime hook will invalidate ['project-activities', 'list', projectId]
7915
+ * on project-scoped Realtime events -- this query key is intentionally stable so that
7916
+ * invalidation from the outside does not require coupling to local state.
7917
+ *
7918
+ * @param projectId - The project's UUID
7919
+ * @param enabled - Whether the query should run (route-gating)
7920
+ */
7921
+ declare function useProjectActivities(projectId: string, enabled?: boolean): _tanstack_react_query.UseQueryResult<Activity[], Error>;
7922
+
7656
7923
  interface UseActivitiesParams {
7657
7924
  limit?: number;
7658
7925
  offset?: number;
@@ -8238,35 +8505,6 @@ declare function createFeatureAccessHook({ useInitialization, useOrganization }:
8238
8505
  */
8239
8506
  declare const createUseFeatureAccess: typeof createFeatureAccessHook;
8240
8507
 
8241
- interface EventSourceMessage {
8242
- id: string;
8243
- event: string;
8244
- data: string;
8245
- retry?: number;
8246
- }
8247
-
8248
- interface FetchEventSourceWithTokenRefreshOptions {
8249
- url: string;
8250
- getToken: () => Promise<string | undefined>;
8251
- headers?: Record<string, string>;
8252
- signal: AbortSignal;
8253
- /** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
8254
- tokenRefreshDelayMs?: number;
8255
- onopen?: (response: Response) => void | Promise<void>;
8256
- onmessage?: (event: EventSourceMessage) => void;
8257
- onerror?: (error: unknown) => void;
8258
- onclose?: () => void;
8259
- }
8260
-
8261
- interface SSEConnectionManagerLike {
8262
- subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
8263
- closeConnection(key: string): void;
8264
- getConnectionInfo(): Map<string, {
8265
- url: string;
8266
- subscribers: number;
8267
- }>;
8268
- }
8269
-
8270
8508
  interface UseSSEConnectionOptions {
8271
8509
  manager: SSEConnectionManagerLike;
8272
8510
  /** Shared connection key — all subscribers with the same key share ONE connection. */
@@ -8537,15 +8775,6 @@ declare const operationsKeys: {
8537
8775
  session: (org: string, sessionId: string) => readonly ["operations", "session", string, string];
8538
8776
  };
8539
8777
 
8540
- declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManagerLike, apiUrl: string): {
8541
- liveExecutions: Set<string>;
8542
- connected: boolean;
8543
- error: string | null;
8544
- runningCount: number;
8545
- isLive: (executionId: string) => boolean;
8546
- streamingLogs: Map<string, ExecutionLogMessage[]>;
8547
- };
8548
-
8549
8778
  interface UseExecutionPanelStateOptions {
8550
8779
  resourceId: string;
8551
8780
  manager: SSEConnectionManagerLike;
@@ -10072,15 +10301,101 @@ declare function useExecutionLogsFilters(_timeRange: TimeRange): {
10072
10301
  */
10073
10302
  declare function useOrganizationMembers(organizationId: string, params?: Omit<ListMembershipsParams, 'organizationId'>): _tanstack_react_query.UseQueryResult<MembershipWithDetails[], Error>;
10074
10303
 
10304
+ /**
10305
+ * Subscribe to Supabase Realtime for project-scoped postgres_changes events.
10306
+ *
10307
+ * Opens a single multiplexed channel listening to INSERT / UPDATE / DELETE on:
10308
+ * - `prj_projects` (filter: id=eq.{projectId})
10309
+ * - `prj_milestones` (filter: project_id=eq.{projectId})
10310
+ * - `prj_tasks` (filter: project_id=eq.{projectId})
10311
+ * - `prj_notes` (filter: project_id=eq.{projectId})
10312
+ *
10313
+ * All five tables are in the `supabase_realtime` publication (migration
10314
+ * 20260418000000). RLS enforces org scoping server-side; no client-side
10315
+ * org filter is needed here.
10316
+ *
10317
+ * On any event the hook invalidates the relevant TanStack Query cache:
10318
+ * - `prj_projects` → projectKeys.detail(projectId)
10319
+ * - `prj_milestones` → projectKeys.milestones(projectId)
10320
+ * - `prj_tasks` → projectKeys.tasks(projectId)
10321
+ * - `prj_notes` → noteKeys.all (broad: covers all note list variants)
10322
+ * - any table → projectActivityKeys.list(projectId) (activity feed is
10323
+ * derived from project state and is NOT covered by the
10324
+ * org-level useActivitiesRealtime, which only invalidates
10325
+ * the top-level ['activities'] key)
10326
+ *
10327
+ * If `projectId` is falsy no channel is opened, preserving the no-idle-
10328
+ * subscription contract.
10329
+ *
10330
+ * @param projectId - UUID of the project to scope the subscription to
10331
+ */
10332
+ declare function useProjectRealtime(projectId: string | null | undefined): void;
10333
+
10075
10334
  declare const projectKeys: {
10076
10335
  all: readonly ["projects"];
10077
10336
  lists: () => readonly ["projects", "list"];
10078
10337
  list: (orgId: string | null, filters: ProjectFilters) => readonly ["projects", "list", string | null, ProjectFilters];
10079
10338
  details: () => readonly ["projects", "detail"];
10080
10339
  detail: (id: string) => readonly ["projects", "detail", string];
10340
+ milestones: (id: string) => readonly ["projects", string, "milestones"];
10341
+ tasks: (id: string) => readonly ["projects", string, "tasks"];
10081
10342
  };
10082
10343
  declare function useProjects(filters?: ProjectFilters): _tanstack_react_query.UseQueryResult<ProjectWithCounts[], Error>;
10083
10344
  declare function useProject(id: string): _tanstack_react_query.UseQueryResult<ProjectDetail | null, Error>;
10345
+ /**
10346
+ * Fetches milestones for a single project with a stable, project-scoped query key.
10347
+ *
10348
+ * Query key: ['projects', projectId, 'milestones']
10349
+ *
10350
+ * This key is distinct from the generic `useMilestones` key so that
10351
+ * `queryClient.invalidateQueries({ queryKey: projectKeys.milestones(projectId) })`
10352
+ * invalidates only this project's milestone list -- used by `useProjectRealtime`
10353
+ * to respond to `prj_milestones` Realtime events without forcing a full project refetch.
10354
+ */
10355
+ declare function useProjectMilestones(projectId: string): _tanstack_react_query.UseQueryResult<{
10356
+ checklist: Json | null;
10357
+ completed_at: string | null;
10358
+ created_at: string;
10359
+ description: string | null;
10360
+ due_date: string | null;
10361
+ id: string;
10362
+ metadata: Json | null;
10363
+ name: string;
10364
+ organization_id: string;
10365
+ project_id: string;
10366
+ sequence: number;
10367
+ status: string;
10368
+ updated_at: string;
10369
+ }[], Error>;
10370
+ /**
10371
+ * Fetches tasks for a single project with a stable, project-scoped query key.
10372
+ *
10373
+ * Query key: ['projects', projectId, 'tasks']
10374
+ *
10375
+ * This key is distinct from the generic `useTasks` key so that
10376
+ * `queryClient.invalidateQueries({ queryKey: projectKeys.tasks(projectId) })`
10377
+ * invalidates only this project's task list -- used by `useProjectRealtime`
10378
+ * to respond to `prj_tasks` Realtime events without forcing a full project refetch.
10379
+ */
10380
+ declare function useProjectTasks(projectId: string): _tanstack_react_query.UseQueryResult<{
10381
+ checklist: Json;
10382
+ completed_at: string | null;
10383
+ created_at: string;
10384
+ description: string | null;
10385
+ due_date: string | null;
10386
+ file_url: string | null;
10387
+ id: string;
10388
+ metadata: Json | null;
10389
+ milestone_id: string | null;
10390
+ name: string;
10391
+ organization_id: string;
10392
+ parent_task_id: string | null;
10393
+ project_id: string;
10394
+ resume_context: Json | null;
10395
+ status: string;
10396
+ type: string;
10397
+ updated_at: string;
10398
+ }[], Error>;
10084
10399
  declare function useCreateProject(): _tanstack_react_query.UseMutationResult<{
10085
10400
  actual_end_date: string | null;
10086
10401
  client_company_id: string | null;
@@ -10262,6 +10577,65 @@ declare function useTasks(filters?: TaskFilters): _tanstack_react_query.UseQuery
10262
10577
  type: string;
10263
10578
  updated_at: string;
10264
10579
  }[], Error>;
10580
+ declare function useCreateTask(): _tanstack_react_query.UseMutationResult<{
10581
+ checklist: Json;
10582
+ completed_at: string | null;
10583
+ created_at: string;
10584
+ description: string | null;
10585
+ due_date: string | null;
10586
+ file_url: string | null;
10587
+ id: string;
10588
+ metadata: Json | null;
10589
+ milestone_id: string | null;
10590
+ name: string;
10591
+ organization_id: string;
10592
+ parent_task_id: string | null;
10593
+ project_id: string;
10594
+ resume_context: Json | null;
10595
+ status: string;
10596
+ type: string;
10597
+ updated_at: string;
10598
+ }, Error, Omit<{
10599
+ checklist?: Json;
10600
+ completed_at?: string | null;
10601
+ created_at?: string;
10602
+ description?: string | null;
10603
+ due_date?: string | null;
10604
+ file_url?: string | null;
10605
+ id?: string;
10606
+ metadata?: Json | null;
10607
+ milestone_id?: string | null;
10608
+ name: string;
10609
+ organization_id: string;
10610
+ parent_task_id?: string | null;
10611
+ project_id: string;
10612
+ resume_context?: Json | null;
10613
+ status?: string;
10614
+ type?: string;
10615
+ updated_at?: string;
10616
+ }, "organization_id">, unknown>;
10617
+ declare function useUpdateTask(): _tanstack_react_query.UseMutationResult<{
10618
+ checklist: Json;
10619
+ completed_at: string | null;
10620
+ created_at: string;
10621
+ description: string | null;
10622
+ due_date: string | null;
10623
+ file_url: string | null;
10624
+ id: string;
10625
+ metadata: Json | null;
10626
+ milestone_id: string | null;
10627
+ name: string;
10628
+ organization_id: string;
10629
+ parent_task_id: string | null;
10630
+ project_id: string;
10631
+ resume_context: Json | null;
10632
+ status: string;
10633
+ type: string;
10634
+ updated_at: string;
10635
+ }, Error, {
10636
+ id: string;
10637
+ updates: Omit<TaskUpdate, "organization_id">;
10638
+ }, unknown>;
10265
10639
  declare function useDeleteTask(): _tanstack_react_query.UseMutationResult<void, Error, {
10266
10640
  id: string;
10267
10641
  projectId: string;
@@ -10326,5 +10700,5 @@ declare function useCreateNote(): _tanstack_react_query.UseMutationResult<{
10326
10700
  type?: string;
10327
10701
  }, "organization_id">, unknown>;
10328
10702
 
10329
- 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, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectNotes, useProjects, useReactivateMembership, useRecentExecutionsByResource, 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, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
10330
- export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, FeatureAccessResult, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
10703
+ 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, 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, 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, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, 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, 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, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
10704
+ export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, FeatureAccessResult, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
@@ -1,10 +1,12 @@
1
1
  import '../chunk-7M2VOCYN.js';
2
- export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, operationsKeys, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectNotes, useProjects, useReactivateMembership, useRecentExecutionsByResource, 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, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from '../chunk-E3IFHX6A.js';
2
+ export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, operationsKeys, projectActivityKeys, projectKeys, 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, 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, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, 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, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, 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, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from '../chunk-WM7JTTPX.js';
3
3
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
4
+ import '../chunk-BRXELOHC.js';
4
5
  import '../chunk-22UVE3RA.js';
6
+ export { useMergedExecution } from '../chunk-3ZMAGTWF.js';
5
7
  import '../chunk-DKQQK3WX.js';
6
- import '../chunk-LPSBID5V.js';
7
- import '../chunk-6PNHW4X2.js';
8
+ import '../chunk-PXFV47B3.js';
9
+ import '../chunk-TYWZABTP.js';
8
10
  import '../chunk-F4TPY6YL.js';
9
11
  export { createFeatureAccessHook, createUseFeatureAccess } from '../chunk-C7BX547M.js';
10
12
  import '../chunk-RX4UWZZR.js';