@memberjunction/graphql-dataprovider 5.38.0 → 5.40.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/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { GraphQLClient } from 'graphql-request';
2
2
  export { gql } from 'graphql-request';
3
- import { ProviderBase, IEntityDataProvider, IMetadataProvider, IRunReportProvider, ProviderConfigDataBase, QueryExecutionSpec, UserInfo, RunQueryResult, RunReportParams, RunReportResult, RunQueryParams, RunQueryWithCacheCheckParams, RunQueriesWithCacheCheckResponse, RunViewParams, RunViewResult, RunViewWithCacheCheckParams, RunViewsWithCacheCheckResponse, EntityInfo, ProviderType, CompositeKey, RecordChange, RecordDependency, KeyValuePair, PotentialDuplicateRequest, PotentialDuplicateResponse, RecordMergeRequest, EntityMergeOptions, RecordMergeResult, BaseEntity, EntitySaveOptions, EntityDeleteOptions, DatasetItemFilterType, DatasetResultType, DatasetStatusResultType, TransactionGroupBase, EntityRecordNameInput, EntityRecordNameResult, ILocalStorageProvider, TransactionResult, PlatformSQL } from '@memberjunction/core';
3
+ import { ProviderBase, IEntityDataProvider, IMetadataProvider, IRunReportProvider, ProviderConfigDataBase, QueryExecutionSpec, UserInfo, RunQueryResult, RunReportParams, RunReportResult, RunQueryParams, RunQueryWithCacheCheckParams, RunQueriesWithCacheCheckResponse, RunViewParams, RunViewResult, RunViewWithCacheCheckParams, RunViewsWithCacheCheckResponse, EntityInfo, ProviderType, CompositeKey, RecordChange, RecordDependency, KeyValuePair, PotentialDuplicateRequest, PotentialDuplicateResponse, SearchEntityParams, EntitySearchResult, ScoredCandidate, RecordMergeRequest, EntityMergeOptions, RecordMergeResult, BaseEntity, EntitySaveOptions, EntityDeleteOptions, DatasetItemFilterType, DatasetResultType, DatasetStatusResultType, TransactionGroupBase, EntityRecordNameInput, EntityRecordNameResult, ILocalStorageProvider, TransactionResult, PlatformSQL } from '@memberjunction/core';
4
4
  import { MJUserViewEntityExtended } from '@memberjunction/core-entities';
5
5
  import { Observable } from 'rxjs';
6
6
  import { ExecuteAgentParams, ExecuteAgentResult } from '@memberjunction/ai-core-plus';
@@ -202,6 +202,30 @@ declare class GraphQLAIClient {
202
202
  * Used by RunAIAgentFromConversationDetail which correlates by conversationDetailId.
203
203
  */
204
204
  private isConversationDetailCompletionEvent;
205
+ /**
206
+ * Capture the agent run id from any PubSub message so the reconciliation hook has a
207
+ * handle even before progress flows. Used only by the plain RunAIAgent path, which
208
+ * has no conversationDetailId to reconcile on (the conversation-detail path reconciles
209
+ * by ConversationDetailID instead). Heartbeats carry `data.runId`;
210
+ * progress/streaming/completion carry `data.agentRunId`. Ignores the 'unknown'
211
+ * placeholder used by background error events.
212
+ */
213
+ private captureAgentRunId;
214
+ /**
215
+ * Reconcile against the persisted AI Agent Run when the client idle timer expires.
216
+ * `filter` selects the run: the plain path passes `ID='<captured run id>'`; the
217
+ * conversation-detail path passes `ConversationDetailID='<id>'` (a stable,
218
+ * operation-specific key). 'Running' means execution is genuinely in progress (keep
219
+ * waiting); any other status means executeAIAgent already returned, so we resolve
220
+ * from the record — recovering a completion event lost to a socket blip.
221
+ *
222
+ * The recovered result rehydrates `payload` from the run's persisted Result so a
223
+ * programmatic caller still receives the agent's output. The interactive
224
+ * `responseForm` / actionable + automatic commands are intentionally NOT
225
+ * reconstructed here: they live on the response ConversationDetail and the
226
+ * conversation UI renders them from that record, independent of this return value.
227
+ */
228
+ private reconcileAgentRun;
205
229
  /**
206
230
  * Extract an ExecuteAgentResult from a completion PubSub message.
207
231
  * The server publishes the full result JSON in the completion event data.
@@ -783,6 +807,13 @@ declare class GraphQLProviderConfigData extends ProviderConfigDataBase {
783
807
  * MJAPI server using GraphQL. This class is used to interact with the server to get and save data, as well as to get metadata about the entities and fields in the system.
784
808
  */
785
809
  declare class GraphQLDataProvider extends ProviderBase implements IEntityDataProvider, IMetadataProvider, IRunReportProvider {
810
+ /**
811
+ * Opt-in verbose logging for the real-time cache-invalidation subscription. Off by default — these
812
+ * messages fire on every cross-server save/delete and flood the console. Set to `true` (e.g. from
813
+ * the console: `GraphQLDataProvider.VerboseCacheInvalidationLogging = true`) only when debugging
814
+ * cache-invalidation / cross-server sync behavior.
815
+ */
816
+ static VerboseCacheInvalidationLogging: boolean;
786
817
  /**
787
818
  * Global Object Store key — follows BaseSingleton's naming convention so the
788
819
  * singleton is discoverable in the same way as BaseSingleton-derived classes.
@@ -957,6 +988,38 @@ declare class GraphQLDataProvider extends ProviderBase implements IEntityDataPro
957
988
  Value: string;
958
989
  }[];
959
990
  GetRecordDuplicates(params: PotentialDuplicateRequest, contextUser?: UserInfo): Promise<PotentialDuplicateResponse>;
991
+ /**
992
+ * Ranked search over many entities in one GraphQL round-trip.
993
+ *
994
+ * Both the singular {@link SearchEntity} and the batched `SearchEntities`
995
+ * forms on the client route through the same plural GQL endpoint — one
996
+ * request, one response, regardless of how many entities are in `params`.
997
+ * The full ranking (lexical + semantic + RRF blend + permission filter)
998
+ * runs server-side against the backing database provider; the client just
999
+ * unpacks the already-ranked, permission-filtered result groups and
1000
+ * returns them aligned by input order.
1001
+ *
1002
+ * Overrides the inherited `Promise.all`-based fan-out on `ProviderBase`
1003
+ * because the client has no embedder, no vector pool, and no business
1004
+ * doing the work locally — N round-trips to N entities would be silly when
1005
+ * one batched payload returns the same answer.
1006
+ */
1007
+ SearchEntities(params: SearchEntityParams[]): Promise<EntitySearchResult[][]>;
1008
+ /**
1009
+ * Singular form — convenience wrapper that calls the batched
1010
+ * {@link SearchEntities} with a single-element params list. Same one
1011
+ * GraphQL round-trip; same server-side ranking. Returning `results[0]`
1012
+ * is safe even for invalid inputs because `SearchEntities` returns an
1013
+ * empty array per slot in that case.
1014
+ */
1015
+ SearchEntity(params: SearchEntityParams): Promise<EntitySearchResult[]>;
1016
+ /**
1017
+ * Unreachable on the client — `SearchEntity` and `SearchEntities` are both
1018
+ * overridden above to proxy through one batched GraphQL round-trip, so the
1019
+ * inherited template-method orchestration never invokes this. Implementing
1020
+ * the abstract method as a no-op is purely a type-system requirement.
1021
+ */
1022
+ protected searchEntitiesSemanticPass(): Promise<ScoredCandidate[]>;
960
1023
  MergeRecords(request: RecordMergeRequest, contextUser?: UserInfo, options?: EntityMergeOptions): Promise<RecordMergeResult>;
961
1024
  Save(entity: BaseEntity, user: UserInfo, options: EntitySaveOptions): Promise<{}>;
962
1025
  Load(entity: BaseEntity, primaryKey: CompositeKey, EntityRelationshipsToLoad: string[], user: UserInfo): Promise<{}>;
@@ -1187,7 +1250,7 @@ declare class GraphQLDataProvider extends ProviderBase implements IEntityDataPro
1187
1250
  */
1188
1251
  declare function setupGraphQLClient(config: GraphQLProviderConfigData): Promise<GraphQLDataProvider>;
1189
1252
 
1190
- declare const PACKAGE_VERSION = "5.38.0";
1253
+ declare const PACKAGE_VERSION = "5.40.0";
1191
1254
 
1192
1255
  declare class GraphQLTransactionGroup extends TransactionGroupBase {
1193
1256
  private _provider;
@@ -3268,6 +3331,292 @@ declare class GraphQLEncryptionClient {
3268
3331
  RevokeAPIKey(apiKeyId: string): Promise<RevokeAPIKeyResult>;
3269
3332
  }
3270
3333
 
3334
+ /**
3335
+ * Input for the `RunClusterAnalysis` GraphQL mutation.
3336
+ *
3337
+ * Mirrors the server-side `RunClusterAnalysisInput` (MJServer
3338
+ * `RunClusterAnalysisResolver`). All fields are optional; the server applies
3339
+ * defaults for any that are omitted.
3340
+ */
3341
+ interface RunClusterAnalysisInput {
3342
+ /** Entity name whose records are being clustered. */
3343
+ EntityName?: string;
3344
+ /** Entity ID — persisted to the top-level `EntityID` column when available. */
3345
+ EntityID?: string;
3346
+ /** Specific Entity Document ID supplying the vectors. Blank => the server chooses. */
3347
+ EntityDocumentID?: string;
3348
+ /**
3349
+ * Multi-entity clustering: one or more Entity Document IDs whose vectors are
3350
+ * merged into one analysis. Takes precedence over `EntityDocumentID` when
3351
+ * non-empty. The server hard-blocks documents that use different embedding models.
3352
+ */
3353
+ EntityDocumentIDs?: string[];
3354
+ /** Legend mode: color points by 'cluster' (default) or 'entity'. */
3355
+ ColorBy?: 'cluster' | 'entity';
3356
+ /** Clustering algorithm: 'kmeans' or 'dbscan'. */
3357
+ Algorithm?: string;
3358
+ /** Number of clusters for K-Means. */
3359
+ K?: number;
3360
+ /** Epsilon neighbourhood radius for DBSCAN. */
3361
+ Epsilon?: number;
3362
+ /** Minimum points to form a dense region in DBSCAN. */
3363
+ MinPoints?: number;
3364
+ /** Distance metric: 'cosine', 'euclidean' or 'dotproduct'. */
3365
+ DistanceMetric?: string;
3366
+ /** Maximum number of records to fetch for clustering. */
3367
+ MaxRecords?: number;
3368
+ /** Optional SQL-style filter applied by the vector source. */
3369
+ Filter?: string;
3370
+ /** When true, runs the optional LLM cluster-naming step server-side. */
3371
+ NameClusters?: boolean;
3372
+ /** Number of dimensions for the projected layout (2 or 3). Defaults to 2. */
3373
+ Dimensions?: number;
3374
+ /**
3375
+ * When supplied, the result is persisted as an `MJ: Cluster Analysis` row
3376
+ * with this Name and the returned `AnalysisID` is populated.
3377
+ */
3378
+ PersistName?: string;
3379
+ }
3380
+ /**
3381
+ * A single projected point returned by the clustering pipeline, after
3382
+ * dimensionality reduction. Parsed from the mutation's `PointsJSON` field.
3383
+ *
3384
+ * Defined locally here (not imported from `@memberjunction/clustering-engine`)
3385
+ * so this transport package stays decoupled from the engine. The shape mirrors
3386
+ * the engine's `ClusterPoint`.
3387
+ */
3388
+ interface ClusterAnalysisPoint {
3389
+ /** X coordinate in projected space. */
3390
+ X: number;
3391
+ /** Y coordinate in projected space. */
3392
+ Y: number;
3393
+ /** Z coordinate in projected space (only present when Dimensions === 3). */
3394
+ Z?: number;
3395
+ /** Cluster assignment index (`-1` for outliers / noise). */
3396
+ ClusterIndex: number;
3397
+ /** Display label for this point. */
3398
+ Label: string;
3399
+ /** Original vector key (entity record ID). */
3400
+ Key: string;
3401
+ /** Arbitrary metadata surfaced in tooltips / drilldown. */
3402
+ Metadata: Record<string, unknown>;
3403
+ }
3404
+ /**
3405
+ * Summary information about a single discovered cluster. Parsed from the
3406
+ * mutation's `ClustersJSON` field. Mirrors the engine's `ClusterInfo`.
3407
+ */
3408
+ interface ClusterAnalysisInfo {
3409
+ /** Zero-based cluster index, matching `ClusterAnalysisPoint.ClusterIndex`. */
3410
+ Index: number;
3411
+ /** Human-readable label (LLM-generated or default). */
3412
+ Label: string;
3413
+ /** Display color as a CSS hex string. */
3414
+ Color: string;
3415
+ /** Number of member points in this cluster. */
3416
+ MemberCount: number;
3417
+ /** Whether the label was edited by a user (always false on a fresh run). */
3418
+ IsUserEdited: boolean;
3419
+ }
3420
+ /**
3421
+ * Quality + performance metrics for a clustering run. Parsed from the
3422
+ * mutation's `MetricsJSON` field. Mirrors the engine's `ClusterMetrics`.
3423
+ */
3424
+ interface ClusterAnalysisMetrics {
3425
+ /** Silhouette score ranging from -1 (poor) to 1 (excellent). */
3426
+ SilhouetteScore: number;
3427
+ /** Total number of clusters discovered. */
3428
+ ClusterCount: number;
3429
+ /** Wall-clock computation time in milliseconds. */
3430
+ ComputationTimeMs: number;
3431
+ /** Total records that were processed. */
3432
+ RecordCount: number;
3433
+ /** Number of outlier points (DBSCAN only; 0 for K-Means). */
3434
+ OutlierCount: number;
3435
+ }
3436
+ /**
3437
+ * Fully-parsed result of a `RunClusterAnalysis` mutation.
3438
+ *
3439
+ * The transport helper parses the JSON-string fields
3440
+ * (`MetricsJSON` / `ClustersJSON` / `PointsJSON`) returned by the server back
3441
+ * into the typed `Metrics` / `Clusters` / `Points` properties so consumers
3442
+ * never deal with raw JSON strings.
3443
+ */
3444
+ interface RunClusterAnalysisResult {
3445
+ /** Whether the analysis succeeded. */
3446
+ Success: boolean;
3447
+ /** Error message when `Success` is false. */
3448
+ ErrorMessage?: string;
3449
+ /** Parsed quality + performance metrics. */
3450
+ Metrics: ClusterAnalysisMetrics;
3451
+ /** Parsed cluster summaries. */
3452
+ Clusters: ClusterAnalysisInfo[];
3453
+ /** Parsed projected points (can be large). */
3454
+ Points: ClusterAnalysisPoint[];
3455
+ /** The persisted `MJ: Cluster Analysis` ID when a `PersistName` was supplied. */
3456
+ AnalysisID?: string;
3457
+ }
3458
+ /**
3459
+ * Client for running cluster analysis on the server through GraphQL.
3460
+ *
3461
+ * The heavy clustering / dimensionality-reduction / LLM-naming pipeline runs
3462
+ * server-side (via `@memberjunction/clustering-engine`); this client is a thin,
3463
+ * strongly-typed transport that sends the `RunClusterAnalysis` mutation and
3464
+ * parses the JSON-string fields back into typed objects.
3465
+ *
3466
+ * Follows the same naming + construction convention as the other GraphQL
3467
+ * clients in this package (`GraphQLAIClient`, `GraphQLEncryptionClient`, etc.).
3468
+ *
3469
+ * @example
3470
+ * ```typescript
3471
+ * const clusterClient = new GraphQLClusterClient(graphQLProvider);
3472
+ * const result = await clusterClient.RunClusterAnalysis({
3473
+ * EntityName: 'Companies',
3474
+ * Algorithm: 'kmeans',
3475
+ * K: 5,
3476
+ * Dimensions: 2,
3477
+ * NameClusters: true,
3478
+ * });
3479
+ * if (result.Success) {
3480
+ * console.log('Clusters:', result.Clusters);
3481
+ * console.log('Points:', result.Points.length);
3482
+ * } else {
3483
+ * console.error(result.ErrorMessage);
3484
+ * }
3485
+ * ```
3486
+ */
3487
+ declare class GraphQLClusterClient {
3488
+ /** The GraphQLDataProvider instance used to execute GraphQL requests. */
3489
+ private _dataProvider;
3490
+ /**
3491
+ * Creates a new GraphQLClusterClient instance.
3492
+ * @param dataProvider The GraphQL data provider to use for the mutation.
3493
+ */
3494
+ constructor(dataProvider: GraphQLDataProvider);
3495
+ /**
3496
+ * Run a cluster analysis on the server.
3497
+ *
3498
+ * Sends the `RunClusterAnalysis` mutation, then parses the JSON-string
3499
+ * fields (`MetricsJSON` / `ClustersJSON` / `PointsJSON`) into typed objects.
3500
+ *
3501
+ * @param input The clustering parameters (entity, algorithm, K, etc.).
3502
+ * @returns A Promise resolving to a fully-parsed {@link RunClusterAnalysisResult}.
3503
+ */
3504
+ RunClusterAnalysis(input: RunClusterAnalysisInput): Promise<RunClusterAnalysisResult>;
3505
+ /**
3506
+ * Parse the raw mutation payload, deserializing the JSON-string fields into
3507
+ * typed objects.
3508
+ */
3509
+ private parseResult;
3510
+ /**
3511
+ * Parse the `MetricsJSON` field, falling back to the scalar metric fields
3512
+ * on the payload when the JSON is missing or unparseable.
3513
+ */
3514
+ private parseMetrics;
3515
+ /** Build a failed {@link RunClusterAnalysisResult} carrying an error message. */
3516
+ private errorResult;
3517
+ }
3518
+
3519
+ /**
3520
+ * Input for the `GenerateSeedTaxonomy` GraphQL mutation.
3521
+ *
3522
+ * Mirrors the server-side resolver arguments (MJServer
3523
+ * `GenerateSeedTaxonomyResolver`).
3524
+ */
3525
+ interface GenerateSeedTaxonomyInput {
3526
+ /** The ContentSource ID whose items seed the taxonomy. */
3527
+ SourceID: string;
3528
+ /** Max number of content items to consider (server defaults when <= 0). */
3529
+ SampleSize: number;
3530
+ }
3531
+ /**
3532
+ * A single node in the server-proposed taxonomy tree. Parsed from the
3533
+ * mutation's `NodesJSON` field. The tree is NON-persisted — it is a proposal
3534
+ * the caller renders and selectively accepts.
3535
+ */
3536
+ interface SeedTaxonomyNode {
3537
+ /** Proposed tag name. */
3538
+ Name: string;
3539
+ /** Optional proposed description for the tag. */
3540
+ Description?: string;
3541
+ /** Optional count of sampled members associated with this node. */
3542
+ MemberCount?: number;
3543
+ /** Optional child nodes (recursive). */
3544
+ Children?: SeedTaxonomyNode[];
3545
+ }
3546
+ /**
3547
+ * Fully-parsed result of a `GenerateSeedTaxonomy` mutation.
3548
+ *
3549
+ * The transport helper parses the JSON-string field (`NodesJSON`) returned by
3550
+ * the server back into the typed `Nodes` property so consumers never deal with
3551
+ * raw JSON strings.
3552
+ */
3553
+ interface SeedTaxonomyResult {
3554
+ /** Whether the taxonomy generation succeeded. */
3555
+ Success: boolean;
3556
+ /** Error message when `Success` is false. */
3557
+ ErrorMessage?: string;
3558
+ /** How the taxonomy was produced: 'clustering' or 'prompt-fallback'. */
3559
+ Method?: string;
3560
+ /** Number of content items sampled / considered. */
3561
+ SampleSize: number;
3562
+ /** Parsed, NON-persisted proposed tag tree. */
3563
+ Nodes: SeedTaxonomyNode[];
3564
+ }
3565
+ /**
3566
+ * Client for generating a seed tag taxonomy on the server through GraphQL.
3567
+ *
3568
+ * The taxonomy-proposal pipeline (sampling a content source and proposing a tag
3569
+ * tree, optionally via clustering or an LLM prompt fallback) runs server-side
3570
+ * (via `@memberjunction/tag-engine`); this client is a thin, strongly-typed
3571
+ * transport that sends the `GenerateSeedTaxonomy` mutation and parses the
3572
+ * JSON-string field back into typed objects.
3573
+ *
3574
+ * Follows the same naming + construction convention as the other GraphQL
3575
+ * clients in this package (`GraphQLClusterClient`, `GraphQLAIClient`, etc.).
3576
+ *
3577
+ * @example
3578
+ * ```typescript
3579
+ * const classifyClient = new GraphQLClassifyClient(graphQLProvider);
3580
+ * const result = await classifyClient.GenerateSeedTaxonomy({
3581
+ * SourceID: 'some-content-source-id',
3582
+ * SampleSize: 50,
3583
+ * });
3584
+ * if (result.Success) {
3585
+ * console.log('Method:', result.Method);
3586
+ * console.log('Nodes:', result.Nodes.length);
3587
+ * } else {
3588
+ * console.error(result.ErrorMessage);
3589
+ * }
3590
+ * ```
3591
+ */
3592
+ declare class GraphQLClassifyClient {
3593
+ /** The GraphQLDataProvider instance used to execute GraphQL requests. */
3594
+ private _dataProvider;
3595
+ /**
3596
+ * Creates a new GraphQLClassifyClient instance.
3597
+ * @param dataProvider The GraphQL data provider to use for the mutation.
3598
+ */
3599
+ constructor(dataProvider: GraphQLDataProvider);
3600
+ /**
3601
+ * Generate a seed tag taxonomy proposal for a content source.
3602
+ *
3603
+ * Sends the `GenerateSeedTaxonomy` mutation, then parses the JSON-string
3604
+ * field (`NodesJSON`) into the typed `Nodes` tree. Never throws — failures
3605
+ * are returned as a result with `Success: false` and an `ErrorMessage`.
3606
+ *
3607
+ * @param input The source + sample size to generate the taxonomy from.
3608
+ * @returns A Promise resolving to a fully-parsed {@link SeedTaxonomyResult}.
3609
+ */
3610
+ GenerateSeedTaxonomy(input: GenerateSeedTaxonomyInput): Promise<SeedTaxonomyResult>;
3611
+ /**
3612
+ * Parse the raw mutation payload, deserializing the `NodesJSON` field into
3613
+ * the typed `Nodes` tree.
3614
+ */
3615
+ private parseResult;
3616
+ /** Build a failed {@link SeedTaxonomyResult} carrying an error message. */
3617
+ private errorResult;
3618
+ }
3619
+
3271
3620
  /**
3272
3621
  * Parameters for running a test
3273
3622
  */
@@ -3394,6 +3743,18 @@ declare class GraphQLTestingClient {
3394
3743
  * Check if a PubSub message is the fire-and-forget completion event for this suite.
3395
3744
  */
3396
3745
  private isSuiteCompletionEvent;
3746
+ /**
3747
+ * Capture the test run id from test progress messages so the reconciliation
3748
+ * hook has a handle. Early progress may carry the test *definition* id until
3749
+ * the run record exists; it self-corrects once real progress flows.
3750
+ */
3751
+ private captureTestRunId;
3752
+ /**
3753
+ * Reconcile against the persisted Test Run when the client idle timer expires.
3754
+ * 'Pending'/'Running' means execution is still in progress (keep waiting);
3755
+ * any terminal status resolves from the record (recovers a lost completion event).
3756
+ */
3757
+ private reconcileTestRun;
3397
3758
  private extractTestResult;
3398
3759
  private extractSuiteResult;
3399
3760
  /**
@@ -3403,6 +3764,18 @@ declare class GraphQLTestingClient {
3403
3764
  private handleError;
3404
3765
  }
3405
3766
 
3767
+ /**
3768
+ * Decision returned by the {@link FireAndForgetConfig.onStall} hook when the
3769
+ * client idle timer expires:
3770
+ * - `'continue'` — the operation is still running; keep waiting (re-arms the timer).
3771
+ * - `{ resolve }` — the operation finished (e.g. completion event was lost); resolve with this result.
3772
+ * - `{ reject }` — the operation failed/died; reject with this error.
3773
+ */
3774
+ type StallDecision<TResult> = 'continue' | {
3775
+ resolve: TResult;
3776
+ } | {
3777
+ reject: Error;
3778
+ };
3406
3779
  /**
3407
3780
  * Configuration for a fire-and-forget GraphQL mutation execution.
3408
3781
  *
@@ -3447,8 +3820,17 @@ interface FireAndForgetConfig<TResult> {
3447
3820
  * Use this to forward progress updates to UI callbacks.
3448
3821
  */
3449
3822
  onMessage?: (parsed: Record<string, unknown>) => void;
3450
- /** Timeout in milliseconds (default: 15 minutes) */
3823
+ /**
3824
+ * Optional reconciliation hook invoked when the idle timer expires (no message
3825
+ * received within the idle window) or the PubSub stream drops. Should query the
3826
+ * authoritative server-side run record and return a {@link StallDecision}.
3827
+ * When omitted, an idle expiry rejects with a timeout message (legacy behavior).
3828
+ */
3829
+ onStall?: () => Promise<StallDecision<TResult>>;
3830
+ /** Idle timeout in milliseconds — resets on activity (default: 12 minutes) */
3451
3831
  timeoutMs?: number;
3832
+ /** Max consecutive 'continue' reconciliations before giving up (default: 6) */
3833
+ maxStallReconciles?: number;
3452
3834
  /** Custom timeout error message */
3453
3835
  timeoutErrorMessage?: string;
3454
3836
  /**
@@ -3469,8 +3851,11 @@ interface FireAndForgetConfig<TResult> {
3469
3851
  * 1. Subscribes to PubSub updates for the current session
3470
3852
  * 2. Sends the mutation with `fireAndForget: true`
3471
3853
  * 3. Server validates, starts background work, returns ACK immediately
3472
- * 4. Client waits for a matching completion event via WebSocket
3473
- * 5. Resolves the promise with the result from the completion event
3854
+ * 4. Client waits for a matching completion event via WebSocket, kept alive by
3855
+ * an idle timer that resets on every message (including the server's ~5min
3856
+ * liveness pulse)
3857
+ * 5. On idle expiry or stream drop, an optional reconciliation hook checks the
3858
+ * authoritative run record to decide resolve / continue / reject
3474
3859
  *
3475
3860
  * ## Usage:
3476
3861
  * ```typescript
@@ -3492,7 +3877,8 @@ interface FireAndForgetConfig<TResult> {
3492
3877
  declare class FireAndForgetHelper {
3493
3878
  /**
3494
3879
  * Execute a long-running mutation using fire-and-forget pattern.
3495
- * Returns when the server publishes a matching completion event via PubSub.
3880
+ * Returns when the server publishes a matching completion event via PubSub,
3881
+ * or when the reconciliation hook resolves/rejects after an idle stall.
3496
3882
  */
3497
3883
  static Execute<TResult>(config: FireAndForgetConfig<TResult>): Promise<TResult>;
3498
3884
  /**
@@ -3500,11 +3886,17 @@ declare class FireAndForgetHelper {
3500
3886
  */
3501
3887
  private static createCompletionPromise;
3502
3888
  /**
3503
- * Sets up a safety timeout that rejects the promise if no completion arrives.
3889
+ * Creates a resettable inactivity timer. `reset()` (re)starts the countdown;
3890
+ * `onExpire` fires if the countdown completes without another reset.
3891
+ */
3892
+ private static createIdleTimer;
3893
+ /**
3894
+ * Builds the idle-timeout error message used when no reconciliation hook is provided.
3504
3895
  */
3505
- private static setupTimeout;
3896
+ private static timeoutMessage;
3506
3897
  /**
3507
- * Subscribes to PubSub and wires up message handling + completion detection.
3898
+ * Subscribes to PubSub and wires up message handling, idle-timer resets, and
3899
+ * completion detection. Stream end/error triggers reconciliation.
3508
3900
  */
3509
3901
  private static subscribeToPubSub;
3510
3902
  /**
@@ -4803,7 +5195,7 @@ declare class GraphQLIntegrationClient {
4803
5195
  StartSync(companyIntegrationID: string, webhookURL?: string, fullSync?: boolean, syncDirection?: 'Pull' | 'Push' | 'Bidirectional'): Promise<MutationResult & {
4804
5196
  RunID?: string;
4805
5197
  }>;
4806
- CancelSync(runID: string): Promise<MutationResult>;
5198
+ CancelSync(companyIntegrationID: string): Promise<MutationResult>;
4807
5199
  CreateSchedule(input: {
4808
5200
  CompanyIntegrationID: string;
4809
5201
  Name: string;
@@ -4826,6 +5218,6 @@ declare class GraphQLIntegrationClient {
4826
5218
  private handleError;
4827
5219
  }
4828
5220
 
4829
- export { ActionItemInput, ActionItemOutput, BrowserIndexedDBStorageProvider, BrowserStorageProviderBase, FieldMapper, FireAndForgetHelper, GetDataOutput, GraphQLAIClient, GraphQLActionClient, GraphQLComponentRegistryClient, GraphQLDataProvider, GraphQLEncryptionClient, GraphQLFileStorageClient, GraphQLIntegrationClient, GraphQLListsClient, GraphQLProviderConfigData, GraphQLSearchClient, GraphQLSystemUserClient, GraphQLTestingClient, GraphQLTransactionGroup, GraphQLVersionHistoryClient, PACKAGE_VERSION, RoleInput, RolesAndUsersInput, SimpleRemoteEntity, SimpleRemoteEntityField, SimpleRemoteEntityOutput, SyncDataAction, SyncDataResult, SyncRolesAndUsersResult, UserInput, setupGraphQLClient };
4830
- export type { AccountSearchResult, ApplyAllEntityMapCreated, ApplyAllResult, AuthenticationErrorCallback, AutotagPipelineResult, ComponentDependencyTree, ComponentSpecWithHash, ConnectionTestGraphQLResult, CopyBetweenAccountsResult, CreateAPIKeyParams, CreateAPIKeyResult, CreatePreAuthUploadUrlResult, CreateQueryInput, CreateQueryResult, CreateVersionLabelParams, CreateVersionLabelProgress, CreateVersionLabelResult, DefaultConfigResult, DefaultFieldMappingResult, DefaultObjectConfigResult, DeleteQueryOptionsInput, DeleteQueryResult, DiscoveredFieldResult, DiscoveredObjectResult, DiscoveryResult, EmbedTextParams, EmbedTextResult, ExecuteSimplePromptParams, FileSearchOptions, FileSearchResult, FireAndForgetConfig, GetQueryDataByNameSystemUserInput, GetQueryDataSystemUserInput, GetRegistryComponentParams, MJQueryEntity, MJ_MetadataDB, PreviewDataResult, PreviewRecordResult, PreviewSearchSystemUserInput, QueryDependencySpecClientInput, QueryField, QueryMutationQueryData, QueryMutationResult, QueryParameter, QueryParameterHintInput, QueryPermission, QueryPermissionInput, RegistryComponentSearchResult, RevokeAPIKeyResult, RunAIAgentFromConversationDetailParams, RunAIPromptParams, RunAIPromptResult, RunDynamicViewSystemUserInput, RunQuerySystemUserResult, RunTestParams, RunTestResult, RunTestSuiteParams, RunTestSuiteResult, RunViewByIDSystemUserInput, RunViewByNameSystemUserInput, RunViewSystemUserInput, RunViewSystemUserResult, RunViewSystemUserResultRow, SchemaPreviewFile, SchemaPreviewObjectInput, SchemaPreviewResult, SearchAcrossAccountsResult, SearchClientFilters, SearchClientParams, SearchClientProviderInfo, SearchClientResponse, SearchClientResultItem, SearchKnowledgeSystemUserInput, SearchRegistryComponentsParams, SearchScoreBreakdown, SearchSourceCounts, SimplePromptResult, SocketConnectionState, SourceObjectListItem, SourceObjectSelectionInput, StorageListResult, StorageObjectMetadata, TestExecutionProgress, TestQuerySQLClientInput, TestQuerySQLClientResult, UpdateQueryInput, UpdateQueryResult, VectorizeEntityParams, VectorizeEntityResult };
5221
+ export { ActionItemInput, ActionItemOutput, BrowserIndexedDBStorageProvider, BrowserStorageProviderBase, FieldMapper, FireAndForgetHelper, GetDataOutput, GraphQLAIClient, GraphQLActionClient, GraphQLClassifyClient, GraphQLClusterClient, GraphQLComponentRegistryClient, GraphQLDataProvider, GraphQLEncryptionClient, GraphQLFileStorageClient, GraphQLIntegrationClient, GraphQLListsClient, GraphQLProviderConfigData, GraphQLSearchClient, GraphQLSystemUserClient, GraphQLTestingClient, GraphQLTransactionGroup, GraphQLVersionHistoryClient, PACKAGE_VERSION, RoleInput, RolesAndUsersInput, SimpleRemoteEntity, SimpleRemoteEntityField, SimpleRemoteEntityOutput, SyncDataAction, SyncDataResult, SyncRolesAndUsersResult, UserInput, setupGraphQLClient };
5222
+ export type { AccountSearchResult, ApplyAllEntityMapCreated, ApplyAllResult, AuthenticationErrorCallback, AutotagPipelineResult, ClusterAnalysisInfo, ClusterAnalysisMetrics, ClusterAnalysisPoint, ComponentDependencyTree, ComponentSpecWithHash, ConnectionTestGraphQLResult, CopyBetweenAccountsResult, CreateAPIKeyParams, CreateAPIKeyResult, CreatePreAuthUploadUrlResult, CreateQueryInput, CreateQueryResult, CreateVersionLabelParams, CreateVersionLabelProgress, CreateVersionLabelResult, DefaultConfigResult, DefaultFieldMappingResult, DefaultObjectConfigResult, DeleteQueryOptionsInput, DeleteQueryResult, DiscoveredFieldResult, DiscoveredObjectResult, DiscoveryResult, EmbedTextParams, EmbedTextResult, ExecuteSimplePromptParams, FileSearchOptions, FileSearchResult, FireAndForgetConfig, GenerateSeedTaxonomyInput, GetQueryDataByNameSystemUserInput, GetQueryDataSystemUserInput, GetRegistryComponentParams, MJQueryEntity, MJ_MetadataDB, PreviewDataResult, PreviewRecordResult, PreviewSearchSystemUserInput, QueryDependencySpecClientInput, QueryField, QueryMutationQueryData, QueryMutationResult, QueryParameter, QueryParameterHintInput, QueryPermission, QueryPermissionInput, RegistryComponentSearchResult, RevokeAPIKeyResult, RunAIAgentFromConversationDetailParams, RunAIPromptParams, RunAIPromptResult, RunClusterAnalysisInput, RunClusterAnalysisResult, RunDynamicViewSystemUserInput, RunQuerySystemUserResult, RunTestParams, RunTestResult, RunTestSuiteParams, RunTestSuiteResult, RunViewByIDSystemUserInput, RunViewByNameSystemUserInput, RunViewSystemUserInput, RunViewSystemUserResult, RunViewSystemUserResultRow, SchemaPreviewFile, SchemaPreviewObjectInput, SchemaPreviewResult, SearchAcrossAccountsResult, SearchClientFilters, SearchClientParams, SearchClientProviderInfo, SearchClientResponse, SearchClientResultItem, SearchKnowledgeSystemUserInput, SearchRegistryComponentsParams, SearchScoreBreakdown, SearchSourceCounts, SeedTaxonomyNode, SeedTaxonomyResult, SimplePromptResult, SocketConnectionState, SourceObjectListItem, SourceObjectSelectionInput, StorageListResult, StorageObjectMetadata, TestExecutionProgress, TestQuerySQLClientInput, TestQuerySQLClientResult, UpdateQueryInput, UpdateQueryResult, VectorizeEntityParams, VectorizeEntityResult };
4831
5223
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","sources":["../src/graphQLAIClient.ts","../src/graphQLDataProvider.ts","../src/config.ts","../src/version.generated.ts","../src/graphQLTransactionGroup.ts","../src/FieldMapper.ts","../src/rolesAndUsersType.ts","../src/graphQLSearchClient.ts","../src/graphQLSystemUserClient.ts","../src/graphQLActionClient.ts","../src/graphQLListsClient.ts","../src/graphQLEncryptionClient.ts","../src/graphQLTestingClient.ts","../src/fireAndForgetHelper.ts","../src/GraphQLComponentRegistryClient.ts","../src/graphQLVersionHistoryClient.ts","../src/graphQLFileStorageClient.ts","../src/storage-providers.ts","../src/graphQLIntegrationClient.ts"],"mappings":"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","names":[]}
1
+ {"version":3,"file":"index.d.mts","sources":["../src/graphQLAIClient.ts","../src/graphQLDataProvider.ts","../src/config.ts","../src/version.generated.ts","../src/graphQLTransactionGroup.ts","../src/FieldMapper.ts","../src/rolesAndUsersType.ts","../src/graphQLSearchClient.ts","../src/graphQLSystemUserClient.ts","../src/graphQLActionClient.ts","../src/graphQLListsClient.ts","../src/graphQLEncryptionClient.ts","../src/graphQLClusterClient.ts","../src/graphQLClassifyClient.ts","../src/graphQLTestingClient.ts","../src/fireAndForgetHelper.ts","../src/GraphQLComponentRegistryClient.ts","../src/graphQLVersionHistoryClient.ts","../src/graphQLFileStorageClient.ts","../src/storage-providers.ts","../src/graphQLIntegrationClient.ts"],"mappings":"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","names":[]}