graphlit-client 1.0.20260416002 → 1.0.20260418002

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/client.d.ts CHANGED
@@ -3012,9 +3012,30 @@ declare class Graphlit {
3012
3012
  */
3013
3013
  private reconstructTurnResults;
3014
3014
  /**
3015
- * Extract task_complete summary from intermediate messages.
3015
+ * Detect whether task_complete was invoked in a single list of tool calls.
3016
+ *
3017
+ * Recognizes two invocation shapes:
3018
+ * 1. Direct — a tool call whose `name` is `"task_complete"`.
3019
+ * 2. Wrapped — a tool call whose arguments JSON has shape
3020
+ * `{ tool: "task_complete", parameters: { summary?, ... } }`. This is
3021
+ * the common pattern used by dynamic-toolset clients that expose a
3022
+ * single meta-executor (often named `execute_tool`) at the top level
3023
+ * and route every underlying tool through it.
3024
+ *
3025
+ * Detection is invocation-agnostic: whether the model called task_complete
3026
+ * directly or via a meta-executor, the harness treats the turn as complete
3027
+ * and surfaces the provided summary. Callers that only register a direct
3028
+ * top-level task_complete still work — the wrapped path is simply inert
3029
+ * when no meta-executor is in use.
3030
+ */
3031
+ private detectTaskComplete;
3032
+ /**
3033
+ * Scan a list of messages for a task_complete invocation. Returns the first
3034
+ * match found across all tool calls in all messages. Convenience wrapper
3035
+ * over `detectTaskComplete` for the streamAgent loop, which works with
3036
+ * `intermediateMessages` rather than a single tool-call list.
3016
3037
  */
3017
- private extractTaskCompleteSummary;
3038
+ private detectTaskCompleteInMessages;
3018
3039
  /**
3019
3040
  * Run LLM-as-judge quality assessment on a completed agent run.
3020
3041
  */
package/dist/client.js CHANGED
@@ -7168,7 +7168,8 @@ class Graphlit {
7168
7168
  }
7169
7169
  // 9. Build TurnResult
7170
7170
  const turnDuration = Date.now() - turnStart;
7171
- const taskCompleteThisTurn = loopResult.toolCallNames.includes("task_complete");
7171
+ const taskCompleteInfo = this.detectTaskCompleteInMessages(loopResult.intermediateMessages);
7172
+ const taskCompleteThisTurn = taskCompleteInfo.called;
7172
7173
  const turnToolNames = [...new Set(loopResult.toolCallNames)].sort();
7173
7174
  const turnResult = {
7174
7175
  turnNumber: turn,
@@ -7196,8 +7197,7 @@ class Graphlit {
7196
7197
  // 11. Evaluate turn
7197
7198
  // a. task_complete called?
7198
7199
  if (taskCompleteThisTurn) {
7199
- // Extract summary from task_complete arguments
7200
- taskCompleteSummary = this.extractTaskCompleteSummary(loopResult.intermediateMessages);
7200
+ taskCompleteSummary = taskCompleteInfo.summary;
7201
7201
  status = "completed";
7202
7202
  break;
7203
7203
  }
@@ -7382,32 +7382,82 @@ class Graphlit {
7382
7382
  toolCalls: [...new Set(toolNames)].sort(),
7383
7383
  toolCallCount: toolNames.length,
7384
7384
  durationMs: computePersistedToolRoundDurationMs(assistantMsg.toolCalls) ?? 0,
7385
- taskComplete: toolNames.includes("task_complete"),
7385
+ taskComplete: this.detectTaskComplete(assistantMsg.toolCalls).called,
7386
7386
  errors: toolErrors.length > 0 ? toolErrors : undefined,
7387
7387
  });
7388
7388
  }
7389
7389
  return results;
7390
7390
  }
7391
7391
  /**
7392
- * Extract task_complete summary from intermediate messages.
7393
- */
7394
- extractTaskCompleteSummary(messages) {
7395
- for (const msg of messages) {
7396
- if (msg.toolCalls) {
7397
- for (const tc of msg.toolCalls) {
7398
- if (tc && tc.name === "task_complete" && tc.arguments) {
7399
- try {
7400
- const args = JSON.parse(tc.arguments);
7401
- return args.summary ?? undefined;
7402
- }
7403
- catch {
7404
- return undefined;
7405
- }
7392
+ * Detect whether task_complete was invoked in a single list of tool calls.
7393
+ *
7394
+ * Recognizes two invocation shapes:
7395
+ * 1. Direct a tool call whose `name` is `"task_complete"`.
7396
+ * 2. Wrapped — a tool call whose arguments JSON has shape
7397
+ * `{ tool: "task_complete", parameters: { summary?, ... } }`. This is
7398
+ * the common pattern used by dynamic-toolset clients that expose a
7399
+ * single meta-executor (often named `execute_tool`) at the top level
7400
+ * and route every underlying tool through it.
7401
+ *
7402
+ * Detection is invocation-agnostic: whether the model called task_complete
7403
+ * directly or via a meta-executor, the harness treats the turn as complete
7404
+ * and surfaces the provided summary. Callers that only register a direct
7405
+ * top-level task_complete still work — the wrapped path is simply inert
7406
+ * when no meta-executor is in use.
7407
+ */
7408
+ detectTaskComplete(toolCalls) {
7409
+ if (!toolCalls)
7410
+ return { called: false };
7411
+ for (const tc of toolCalls) {
7412
+ if (!tc)
7413
+ continue;
7414
+ // Direct invocation
7415
+ if (tc.name === "task_complete") {
7416
+ if (!tc.arguments)
7417
+ return { called: true };
7418
+ try {
7419
+ const args = JSON.parse(tc.arguments);
7420
+ return {
7421
+ called: true,
7422
+ summary: typeof args.summary === "string" ? args.summary : undefined,
7423
+ };
7424
+ }
7425
+ catch {
7426
+ return { called: true };
7427
+ }
7428
+ }
7429
+ // Meta-executor wrapping (e.g. execute_tool({ tool: "task_complete", parameters: {...} }))
7430
+ if (tc.arguments) {
7431
+ try {
7432
+ const args = JSON.parse(tc.arguments);
7433
+ if (args.tool === "task_complete") {
7434
+ const params = args.parameters ?? {};
7435
+ return {
7436
+ called: true,
7437
+ summary: typeof params.summary === "string" ? params.summary : undefined,
7438
+ };
7406
7439
  }
7407
7440
  }
7441
+ catch {
7442
+ // Not JSON — skip
7443
+ }
7408
7444
  }
7409
7445
  }
7410
- return undefined;
7446
+ return { called: false };
7447
+ }
7448
+ /**
7449
+ * Scan a list of messages for a task_complete invocation. Returns the first
7450
+ * match found across all tool calls in all messages. Convenience wrapper
7451
+ * over `detectTaskComplete` for the streamAgent loop, which works with
7452
+ * `intermediateMessages` rather than a single tool-call list.
7453
+ */
7454
+ detectTaskCompleteInMessages(messages) {
7455
+ for (const msg of messages) {
7456
+ const result = this.detectTaskComplete(msg.toolCalls);
7457
+ if (result.called)
7458
+ return result;
7459
+ }
7460
+ return { called: false };
7411
7461
  }
7412
7462
  /**
7413
7463
  * Run LLM-as-judge quality assessment on a completed agent run.
@@ -2187,6 +2187,7 @@ export const DescribeEncodedImage = gql `
2187
2187
  fileMetadata
2188
2188
  relativeFolderPath
2189
2189
  masterUri
2190
+ markdownUri
2190
2191
  imageUri
2191
2192
  textUri
2192
2193
  audioUri
@@ -2342,6 +2343,7 @@ export const DescribeImage = gql `
2342
2343
  fileMetadata
2343
2344
  relativeFolderPath
2344
2345
  masterUri
2346
+ markdownUri
2345
2347
  imageUri
2346
2348
  textUri
2347
2349
  audioUri
@@ -2710,6 +2712,7 @@ export const GetContent = gql `
2710
2712
  fileMetadata
2711
2713
  relativeFolderPath
2712
2714
  masterUri
2715
+ markdownUri
2713
2716
  imageUri
2714
2717
  textUri
2715
2718
  audioUri
@@ -3615,6 +3618,7 @@ export const LookupContents = gql `
3615
3618
  fileMetadata
3616
3619
  relativeFolderPath
3617
3620
  masterUri
3621
+ markdownUri
3618
3622
  imageUri
3619
3623
  textUri
3620
3624
  audioUri
@@ -4095,6 +4099,7 @@ export const PublishContents = gql `
4095
4099
  fileMetadata
4096
4100
  relativeFolderPath
4097
4101
  masterUri
4102
+ markdownUri
4098
4103
  imageUri
4099
4104
  textUri
4100
4105
  audioUri
@@ -4244,6 +4249,7 @@ export const PublishText = gql `
4244
4249
  fileMetadata
4245
4250
  relativeFolderPath
4246
4251
  masterUri
4252
+ markdownUri
4247
4253
  imageUri
4248
4254
  textUri
4249
4255
  audioUri
@@ -4385,6 +4391,7 @@ export const QueryContents = gql `
4385
4391
  fileSize
4386
4392
  relativeFolderPath
4387
4393
  masterUri
4394
+ markdownUri
4388
4395
  imageUri
4389
4396
  textUri
4390
4397
  audioUri
@@ -4838,6 +4845,7 @@ export const QueryContentsObservations = gql `
4838
4845
  fileSize
4839
4846
  relativeFolderPath
4840
4847
  masterUri
4848
+ markdownUri
4841
4849
  imageUri
4842
4850
  textUri
4843
4851
  audioUri
@@ -5502,6 +5510,7 @@ export const AskGraphlit = gql `
5502
5510
  fileMetadata
5503
5511
  relativeFolderPath
5504
5512
  masterUri
5513
+ markdownUri
5505
5514
  imageUri
5506
5515
  textUri
5507
5516
  audioUri
@@ -5697,6 +5706,7 @@ export const CompleteConversation = gql `
5697
5706
  fileMetadata
5698
5707
  relativeFolderPath
5699
5708
  masterUri
5709
+ markdownUri
5700
5710
  imageUri
5701
5711
  textUri
5702
5712
  audioUri
@@ -5897,6 +5907,7 @@ export const CompleteConversation = gql `
5897
5907
  fileMetadata
5898
5908
  relativeFolderPath
5899
5909
  masterUri
5910
+ markdownUri
5900
5911
  imageUri
5901
5912
  textUri
5902
5913
  audioUri
@@ -6057,6 +6068,7 @@ export const ContinueConversation = gql `
6057
6068
  fileMetadata
6058
6069
  relativeFolderPath
6059
6070
  masterUri
6071
+ markdownUri
6060
6072
  imageUri
6061
6073
  textUri
6062
6074
  audioUri
@@ -6257,6 +6269,7 @@ export const ContinueConversation = gql `
6257
6269
  fileMetadata
6258
6270
  relativeFolderPath
6259
6271
  masterUri
6272
+ markdownUri
6260
6273
  imageUri
6261
6274
  textUri
6262
6275
  audioUri
@@ -6470,6 +6483,7 @@ export const FormatConversation = gql `
6470
6483
  fileMetadata
6471
6484
  relativeFolderPath
6472
6485
  masterUri
6486
+ markdownUri
6473
6487
  imageUri
6474
6488
  textUri
6475
6489
  audioUri
@@ -6670,6 +6684,7 @@ export const FormatConversation = gql `
6670
6684
  fileMetadata
6671
6685
  relativeFolderPath
6672
6686
  masterUri
6687
+ markdownUri
6673
6688
  imageUri
6674
6689
  textUri
6675
6690
  audioUri
@@ -6836,6 +6851,7 @@ export const GetConversation = gql `
6836
6851
  fileMetadata
6837
6852
  relativeFolderPath
6838
6853
  masterUri
6854
+ markdownUri
6839
6855
  imageUri
6840
6856
  textUri
6841
6857
  audioUri
@@ -6985,6 +7001,7 @@ export const GetConversation = gql `
6985
7001
  fileMetadata
6986
7002
  relativeFolderPath
6987
7003
  masterUri
7004
+ markdownUri
6988
7005
  imageUri
6989
7006
  textUri
6990
7007
  audioUri
@@ -7407,6 +7424,7 @@ export const Prompt = gql `
7407
7424
  fileMetadata
7408
7425
  relativeFolderPath
7409
7426
  masterUri
7427
+ markdownUri
7410
7428
  imageUri
7411
7429
  textUri
7412
7430
  audioUri
@@ -7578,6 +7596,7 @@ export const PromptConversation = gql `
7578
7596
  fileMetadata
7579
7597
  relativeFolderPath
7580
7598
  masterUri
7599
+ markdownUri
7581
7600
  imageUri
7582
7601
  textUri
7583
7602
  audioUri
@@ -7778,6 +7797,7 @@ export const PromptConversation = gql `
7778
7797
  fileMetadata
7779
7798
  relativeFolderPath
7780
7799
  masterUri
7800
+ markdownUri
7781
7801
  imageUri
7782
7802
  textUri
7783
7803
  audioUri
@@ -7934,6 +7954,7 @@ export const PublishConversation = gql `
7934
7954
  fileMetadata
7935
7955
  relativeFolderPath
7936
7956
  masterUri
7957
+ markdownUri
7937
7958
  imageUri
7938
7959
  textUri
7939
7960
  audioUri
@@ -8701,6 +8722,7 @@ export const ReviseContent = gql `
8701
8722
  fileMetadata
8702
8723
  relativeFolderPath
8703
8724
  masterUri
8725
+ markdownUri
8704
8726
  imageUri
8705
8727
  textUri
8706
8728
  audioUri
@@ -8864,6 +8886,7 @@ export const ReviseEncodedImage = gql `
8864
8886
  fileMetadata
8865
8887
  relativeFolderPath
8866
8888
  masterUri
8889
+ markdownUri
8867
8890
  imageUri
8868
8891
  textUri
8869
8892
  audioUri
@@ -9026,6 +9049,7 @@ export const ReviseImage = gql `
9026
9049
  fileMetadata
9027
9050
  relativeFolderPath
9028
9051
  masterUri
9052
+ markdownUri
9029
9053
  imageUri
9030
9054
  textUri
9031
9055
  audioUri
@@ -9188,6 +9212,7 @@ export const ReviseText = gql `
9188
9212
  fileMetadata
9189
9213
  relativeFolderPath
9190
9214
  masterUri
9215
+ markdownUri
9191
9216
  imageUri
9192
9217
  textUri
9193
9218
  audioUri
@@ -18764,6 +18789,7 @@ export const PromptSpecifications = gql `
18764
18789
  fileMetadata
18765
18790
  relativeFolderPath
18766
18791
  masterUri
18792
+ markdownUri
18767
18793
  imageUri
18768
18794
  textUri
18769
18795
  audioUri
@@ -3477,8 +3477,10 @@ export type Content = {
3477
3477
  links?: Maybe<Array<LinkReference>>;
3478
3478
  /** The geo-location of the content. */
3479
3479
  location?: Maybe<Point>;
3480
- /** The content text formatted as Markdown. Contains either the extracted text for files, posts, etc., or the raw text for messages, emails, etc. Export is bounded by stored token count. */
3480
+ /** The content text formatted as Markdown. Returns the persisted frontmatter-aware Markdown export when available, and otherwise falls back to on-demand export. Export is bounded by stored token count. */
3481
3481
  markdown?: Maybe<Scalars['String']['output']>;
3482
+ /** The persisted Markdown export URI of the content. This references the frontmatter-aware Markdown file written under the content folder. */
3483
+ markdownUri?: Maybe<Scalars['URL']['output']>;
3482
3484
  /** The master rendition URI of the content. This references a cached rendition of the source content. */
3483
3485
  masterUri?: Maybe<Scalars['URL']['output']>;
3484
3486
  /** The content meeting metadata. */
@@ -6916,6 +6918,8 @@ export declare enum EntityTypes {
6916
6918
  Project = "PROJECT",
6917
6919
  /** Rendition */
6918
6920
  Rendition = "RENDITION",
6921
+ /** Replica */
6922
+ Replica = "REPLICA",
6919
6923
  /** Code repository */
6920
6924
  Repo = "REPO",
6921
6925
  /** Cloud storage site */
@@ -28898,6 +28902,7 @@ export type DescribeEncodedImageMutation = {
28898
28902
  fileMetadata?: string | null;
28899
28903
  relativeFolderPath?: string | null;
28900
28904
  masterUri?: any | null;
28905
+ markdownUri?: any | null;
28901
28906
  imageUri?: any | null;
28902
28907
  textUri?: any | null;
28903
28908
  audioUri?: any | null;
@@ -29062,6 +29067,7 @@ export type DescribeImageMutation = {
29062
29067
  fileMetadata?: string | null;
29063
29068
  relativeFolderPath?: string | null;
29064
29069
  masterUri?: any | null;
29070
+ markdownUri?: any | null;
29065
29071
  imageUri?: any | null;
29066
29072
  textUri?: any | null;
29067
29073
  audioUri?: any | null;
@@ -29417,6 +29423,7 @@ export type GetContentQuery = {
29417
29423
  fileMetadata?: string | null;
29418
29424
  relativeFolderPath?: string | null;
29419
29425
  masterUri?: any | null;
29426
+ markdownUri?: any | null;
29420
29427
  imageUri?: any | null;
29421
29428
  textUri?: any | null;
29422
29429
  audioUri?: any | null;
@@ -30436,6 +30443,7 @@ export type LookupContentsQuery = {
30436
30443
  fileMetadata?: string | null;
30437
30444
  relativeFolderPath?: string | null;
30438
30445
  masterUri?: any | null;
30446
+ markdownUri?: any | null;
30439
30447
  imageUri?: any | null;
30440
30448
  textUri?: any | null;
30441
30449
  audioUri?: any | null;
@@ -31015,6 +31023,7 @@ export type PublishContentsMutation = {
31015
31023
  fileMetadata?: string | null;
31016
31024
  relativeFolderPath?: string | null;
31017
31025
  masterUri?: any | null;
31026
+ markdownUri?: any | null;
31018
31027
  imageUri?: any | null;
31019
31028
  textUri?: any | null;
31020
31029
  audioUri?: any | null;
@@ -31178,6 +31187,7 @@ export type PublishTextMutation = {
31178
31187
  fileMetadata?: string | null;
31179
31188
  relativeFolderPath?: string | null;
31180
31189
  masterUri?: any | null;
31190
+ markdownUri?: any | null;
31181
31191
  imageUri?: any | null;
31182
31192
  textUri?: any | null;
31183
31193
  audioUri?: any | null;
@@ -31316,6 +31326,7 @@ export type QueryContentsQuery = {
31316
31326
  fileSize?: any | null;
31317
31327
  relativeFolderPath?: string | null;
31318
31328
  masterUri?: any | null;
31329
+ markdownUri?: any | null;
31319
31330
  imageUri?: any | null;
31320
31331
  textUri?: any | null;
31321
31332
  audioUri?: any | null;
@@ -31836,6 +31847,7 @@ export type QueryContentsObservationsQuery = {
31836
31847
  fileSize?: any | null;
31837
31848
  relativeFolderPath?: string | null;
31838
31849
  masterUri?: any | null;
31850
+ markdownUri?: any | null;
31839
31851
  imageUri?: any | null;
31840
31852
  textUri?: any | null;
31841
31853
  audioUri?: any | null;
@@ -32642,6 +32654,7 @@ export type AskGraphlitMutation = {
32642
32654
  fileMetadata?: string | null;
32643
32655
  relativeFolderPath?: string | null;
32644
32656
  masterUri?: any | null;
32657
+ markdownUri?: any | null;
32645
32658
  imageUri?: any | null;
32646
32659
  textUri?: any | null;
32647
32660
  audioUri?: any | null;
@@ -32857,6 +32870,7 @@ export type CompleteConversationMutation = {
32857
32870
  fileMetadata?: string | null;
32858
32871
  relativeFolderPath?: string | null;
32859
32872
  masterUri?: any | null;
32873
+ markdownUri?: any | null;
32860
32874
  imageUri?: any | null;
32861
32875
  textUri?: any | null;
32862
32876
  audioUri?: any | null;
@@ -33073,6 +33087,7 @@ export type CompleteConversationMutation = {
33073
33087
  fileMetadata?: string | null;
33074
33088
  relativeFolderPath?: string | null;
33075
33089
  masterUri?: any | null;
33090
+ markdownUri?: any | null;
33076
33091
  imageUri?: any | null;
33077
33092
  textUri?: any | null;
33078
33093
  audioUri?: any | null;
@@ -33245,6 +33260,7 @@ export type ContinueConversationMutation = {
33245
33260
  fileMetadata?: string | null;
33246
33261
  relativeFolderPath?: string | null;
33247
33262
  masterUri?: any | null;
33263
+ markdownUri?: any | null;
33248
33264
  imageUri?: any | null;
33249
33265
  textUri?: any | null;
33250
33266
  audioUri?: any | null;
@@ -33461,6 +33477,7 @@ export type ContinueConversationMutation = {
33461
33477
  fileMetadata?: string | null;
33462
33478
  relativeFolderPath?: string | null;
33463
33479
  masterUri?: any | null;
33480
+ markdownUri?: any | null;
33464
33481
  imageUri?: any | null;
33465
33482
  textUri?: any | null;
33466
33483
  audioUri?: any | null;
@@ -33702,6 +33719,7 @@ export type FormatConversationMutation = {
33702
33719
  fileMetadata?: string | null;
33703
33720
  relativeFolderPath?: string | null;
33704
33721
  masterUri?: any | null;
33722
+ markdownUri?: any | null;
33705
33723
  imageUri?: any | null;
33706
33724
  textUri?: any | null;
33707
33725
  audioUri?: any | null;
@@ -33918,6 +33936,7 @@ export type FormatConversationMutation = {
33918
33936
  fileMetadata?: string | null;
33919
33937
  relativeFolderPath?: string | null;
33920
33938
  masterUri?: any | null;
33939
+ markdownUri?: any | null;
33921
33940
  imageUri?: any | null;
33922
33941
  textUri?: any | null;
33923
33942
  audioUri?: any | null;
@@ -34103,6 +34122,7 @@ export type GetConversationQuery = {
34103
34122
  fileMetadata?: string | null;
34104
34123
  relativeFolderPath?: string | null;
34105
34124
  masterUri?: any | null;
34125
+ markdownUri?: any | null;
34106
34126
  imageUri?: any | null;
34107
34127
  textUri?: any | null;
34108
34128
  audioUri?: any | null;
@@ -34266,6 +34286,7 @@ export type GetConversationQuery = {
34266
34286
  fileMetadata?: string | null;
34267
34287
  relativeFolderPath?: string | null;
34268
34288
  masterUri?: any | null;
34289
+ markdownUri?: any | null;
34269
34290
  imageUri?: any | null;
34270
34291
  textUri?: any | null;
34271
34292
  audioUri?: any | null;
@@ -34756,6 +34777,7 @@ export type PromptMutation = {
34756
34777
  fileMetadata?: string | null;
34757
34778
  relativeFolderPath?: string | null;
34758
34779
  masterUri?: any | null;
34780
+ markdownUri?: any | null;
34759
34781
  imageUri?: any | null;
34760
34782
  textUri?: any | null;
34761
34783
  audioUri?: any | null;
@@ -34938,6 +34960,7 @@ export type PromptConversationMutation = {
34938
34960
  fileMetadata?: string | null;
34939
34961
  relativeFolderPath?: string | null;
34940
34962
  masterUri?: any | null;
34963
+ markdownUri?: any | null;
34941
34964
  imageUri?: any | null;
34942
34965
  textUri?: any | null;
34943
34966
  audioUri?: any | null;
@@ -35154,6 +35177,7 @@ export type PromptConversationMutation = {
35154
35177
  fileMetadata?: string | null;
35155
35178
  relativeFolderPath?: string | null;
35156
35179
  masterUri?: any | null;
35180
+ markdownUri?: any | null;
35157
35181
  imageUri?: any | null;
35158
35182
  textUri?: any | null;
35159
35183
  audioUri?: any | null;
@@ -35299,6 +35323,7 @@ export type PublishConversationMutation = {
35299
35323
  fileMetadata?: string | null;
35300
35324
  relativeFolderPath?: string | null;
35301
35325
  masterUri?: any | null;
35326
+ markdownUri?: any | null;
35302
35327
  imageUri?: any | null;
35303
35328
  textUri?: any | null;
35304
35329
  audioUri?: any | null;
@@ -36258,6 +36283,7 @@ export type ReviseContentMutation = {
36258
36283
  fileMetadata?: string | null;
36259
36284
  relativeFolderPath?: string | null;
36260
36285
  masterUri?: any | null;
36286
+ markdownUri?: any | null;
36261
36287
  imageUri?: any | null;
36262
36288
  textUri?: any | null;
36263
36289
  audioUri?: any | null;
@@ -36432,6 +36458,7 @@ export type ReviseEncodedImageMutation = {
36432
36458
  fileMetadata?: string | null;
36433
36459
  relativeFolderPath?: string | null;
36434
36460
  masterUri?: any | null;
36461
+ markdownUri?: any | null;
36435
36462
  imageUri?: any | null;
36436
36463
  textUri?: any | null;
36437
36464
  audioUri?: any | null;
@@ -36605,6 +36632,7 @@ export type ReviseImageMutation = {
36605
36632
  fileMetadata?: string | null;
36606
36633
  relativeFolderPath?: string | null;
36607
36634
  masterUri?: any | null;
36635
+ markdownUri?: any | null;
36608
36636
  imageUri?: any | null;
36609
36637
  textUri?: any | null;
36610
36638
  audioUri?: any | null;
@@ -36778,6 +36806,7 @@ export type ReviseTextMutation = {
36778
36806
  fileMetadata?: string | null;
36779
36807
  relativeFolderPath?: string | null;
36780
36808
  masterUri?: any | null;
36809
+ markdownUri?: any | null;
36781
36810
  imageUri?: any | null;
36782
36811
  textUri?: any | null;
36783
36812
  audioUri?: any | null;
@@ -48388,6 +48417,7 @@ export type PromptSpecificationsMutation = {
48388
48417
  fileMetadata?: string | null;
48389
48418
  relativeFolderPath?: string | null;
48390
48419
  masterUri?: any | null;
48420
+ markdownUri?: any | null;
48391
48421
  imageUri?: any | null;
48392
48422
  textUri?: any | null;
48393
48423
  audioUri?: any | null;
@@ -1196,6 +1196,8 @@ export var EntityTypes;
1196
1196
  EntityTypes["Project"] = "PROJECT";
1197
1197
  /** Rendition */
1198
1198
  EntityTypes["Rendition"] = "RENDITION";
1199
+ /** Replica */
1200
+ EntityTypes["Replica"] = "REPLICA";
1199
1201
  /** Code repository */
1200
1202
  EntityTypes["Repo"] = "REPO";
1201
1203
  /** Cloud storage site */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260416002",
3
+ "version": "1.0.20260418002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",