@archastro/sdk 0.9.0 → 0.10.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 (47) hide show
  1. package/dist/types/chat.d.ts +81 -20
  2. package/dist/types/chat.d.ts.map +1 -1
  3. package/dist/types/common.d.ts +367 -364
  4. package/dist/types/common.d.ts.map +1 -1
  5. package/dist/types/common.js +20 -62
  6. package/dist/types/common.js.map +1 -1
  7. package/dist/types/index.d.ts +1 -0
  8. package/dist/types/index.d.ts.map +1 -1
  9. package/dist/types/index.js +2 -1
  10. package/dist/types/index.js.map +1 -1
  11. package/dist/types/tasks.d.ts +347 -0
  12. package/dist/types/tasks.d.ts.map +1 -0
  13. package/dist/types/tasks.js +67 -0
  14. package/dist/types/tasks.js.map +1 -0
  15. package/dist/types/threads.d.ts +540 -3
  16. package/dist/types/threads.d.ts.map +1 -1
  17. package/dist/types/threads.js +45 -2
  18. package/dist/types/threads.js.map +1 -1
  19. package/dist/v1/resources/agents.d.ts +2 -2
  20. package/dist/v1/resources/agents.js +3 -3
  21. package/dist/v1/resources/custom_objects.d.ts +55 -4
  22. package/dist/v1/resources/custom_objects.d.ts.map +1 -1
  23. package/dist/v1/resources/custom_objects.js +7 -4
  24. package/dist/v1/resources/custom_objects.js.map +1 -1
  25. package/dist/v1/resources/slack_channel_bindings.d.ts +37 -0
  26. package/dist/v1/resources/slack_channel_bindings.d.ts.map +1 -1
  27. package/dist/v1/resources/slack_channel_bindings.js +31 -1
  28. package/dist/v1/resources/slack_channel_bindings.js.map +1 -1
  29. package/dist/v1/resources/solutions.d.ts +2 -0
  30. package/dist/v1/resources/solutions.d.ts.map +1 -1
  31. package/dist/v1/resources/solutions.js +2 -1
  32. package/dist/v1/resources/solutions.js.map +1 -1
  33. package/dist/v1/resources/teams.d.ts +76 -0
  34. package/dist/v1/resources/teams.d.ts.map +1 -1
  35. package/dist/v1/resources/teams.js +58 -1
  36. package/dist/v1/resources/teams.js.map +1 -1
  37. package/dist/v1/resources/thread_messages.d.ts +19 -0
  38. package/dist/v1/resources/thread_messages.d.ts.map +1 -1
  39. package/dist/v1/resources/thread_messages.js +21 -1
  40. package/dist/v1/resources/thread_messages.js.map +1 -1
  41. package/dist/v1/resources/threads.d.ts +1 -0
  42. package/dist/v1/resources/threads.d.ts.map +1 -1
  43. package/dist/v1/resources/threads.js +1 -1
  44. package/dist/v1/resources/users.d.ts +1 -0
  45. package/dist/v1/resources/users.d.ts.map +1 -1
  46. package/dist/v1/resources/users.js +1 -1
  47. package/package.json +1 -1
@@ -5514,6 +5514,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
5514
5514
  replies_before_cursor: z.ZodOptional<z.ZodString>;
5515
5515
  reply_count: z.ZodOptional<z.ZodNumber>;
5516
5516
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5517
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5517
5518
  sandbox: z.ZodOptional<z.ZodString>;
5518
5519
  team: z.ZodOptional<z.ZodString>;
5519
5520
  thread: z.ZodOptional<z.ZodString>;
@@ -5628,6 +5629,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
5628
5629
  replies_before_cursor?: string | undefined;
5629
5630
  reply_count?: number | undefined;
5630
5631
  reply_to?: Record<string, unknown> | undefined;
5632
+ root_message_id?: string | null | undefined;
5631
5633
  }, {
5632
5634
  id: string;
5633
5635
  content?: string | undefined;
@@ -5736,6 +5738,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
5736
5738
  replies_before_cursor?: string | undefined;
5737
5739
  reply_count?: number | undefined;
5738
5740
  reply_to?: Record<string, unknown> | undefined;
5741
+ root_message_id?: string | null | undefined;
5739
5742
  }>, "many">;
5740
5743
  /** Number of messages that were added to the snapshot in the most recent incremental update. `null` on the initial load. */
5741
5744
  messages_loaded_on_last_update: z.ZodOptional<z.ZodNumber>;
@@ -6311,6 +6314,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
6311
6314
  replies_before_cursor: z.ZodOptional<z.ZodString>;
6312
6315
  reply_count: z.ZodOptional<z.ZodNumber>;
6313
6316
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6317
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6314
6318
  sandbox: z.ZodOptional<z.ZodString>;
6315
6319
  team: z.ZodOptional<z.ZodString>;
6316
6320
  thread: z.ZodOptional<z.ZodString>;
@@ -6425,6 +6429,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
6425
6429
  replies_before_cursor?: string | undefined;
6426
6430
  reply_count?: number | undefined;
6427
6431
  reply_to?: Record<string, unknown> | undefined;
6432
+ root_message_id?: string | null | undefined;
6428
6433
  }, {
6429
6434
  id: string;
6430
6435
  content?: string | undefined;
@@ -6533,6 +6538,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
6533
6538
  replies_before_cursor?: string | undefined;
6534
6539
  reply_count?: number | undefined;
6535
6540
  reply_to?: Record<string, unknown> | undefined;
6541
+ root_message_id?: string | null | undefined;
6536
6542
  }>>;
6537
6543
  participant: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6538
6544
  participants: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8033,7 +8039,6 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8033
8039
  metadata?: Record<string, unknown> | undefined;
8034
8040
  title?: string | undefined;
8035
8041
  muted?: boolean | undefined;
8036
- tags?: string[] | undefined;
8037
8042
  role?: string | undefined;
8038
8043
  agent_user?: string | undefined;
8039
8044
  creator?: string | {
@@ -8166,6 +8171,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8166
8171
  replies_before_cursor?: string | undefined;
8167
8172
  reply_count?: number | undefined;
8168
8173
  reply_to?: Record<string, unknown> | undefined;
8174
+ root_message_id?: string | null | undefined;
8169
8175
  } | undefined;
8170
8176
  participant?: string[] | undefined;
8171
8177
  participating_actor?: string[] | undefined;
@@ -8351,6 +8357,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8351
8357
  } | undefined;
8352
8358
  slug?: string | undefined;
8353
8359
  sub_threads?: Record<string, unknown>[] | undefined;
8360
+ tags?: string[] | undefined;
8354
8361
  ttl?: number | undefined;
8355
8362
  unread_count?: number | undefined;
8356
8363
  }, {
@@ -8383,7 +8390,6 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8383
8390
  metadata?: Record<string, unknown> | undefined;
8384
8391
  title?: string | undefined;
8385
8392
  muted?: boolean | undefined;
8386
- tags?: string[] | undefined;
8387
8393
  role?: string | undefined;
8388
8394
  agent_user?: string | undefined;
8389
8395
  creator?: string | {
@@ -8516,6 +8522,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8516
8522
  replies_before_cursor?: string | undefined;
8517
8523
  reply_count?: number | undefined;
8518
8524
  reply_to?: Record<string, unknown> | undefined;
8525
+ root_message_id?: string | null | undefined;
8519
8526
  } | undefined;
8520
8527
  participant?: string[] | undefined;
8521
8528
  participating_actor?: string[] | undefined;
@@ -8701,6 +8708,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8701
8708
  } | undefined;
8702
8709
  slug?: string | undefined;
8703
8710
  sub_threads?: Record<string, unknown>[] | undefined;
8711
+ tags?: string[] | undefined;
8704
8712
  ttl?: number | undefined;
8705
8713
  unread_count?: number | undefined;
8706
8714
  }>;
@@ -8735,7 +8743,6 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8735
8743
  metadata?: Record<string, unknown> | undefined;
8736
8744
  title?: string | undefined;
8737
8745
  muted?: boolean | undefined;
8738
- tags?: string[] | undefined;
8739
8746
  role?: string | undefined;
8740
8747
  agent_user?: string | undefined;
8741
8748
  creator?: string | {
@@ -8868,6 +8875,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
8868
8875
  replies_before_cursor?: string | undefined;
8869
8876
  reply_count?: number | undefined;
8870
8877
  reply_to?: Record<string, unknown> | undefined;
8878
+ root_message_id?: string | null | undefined;
8871
8879
  } | undefined;
8872
8880
  participant?: string[] | undefined;
8873
8881
  participating_actor?: string[] | undefined;
@@ -9053,6 +9061,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
9053
9061
  } | undefined;
9054
9062
  slug?: string | undefined;
9055
9063
  sub_threads?: Record<string, unknown>[] | undefined;
9064
+ tags?: string[] | undefined;
9056
9065
  ttl?: number | undefined;
9057
9066
  unread_count?: number | undefined;
9058
9067
  };
@@ -9165,6 +9174,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
9165
9174
  replies_before_cursor?: string | undefined;
9166
9175
  reply_count?: number | undefined;
9167
9176
  reply_to?: Record<string, unknown> | undefined;
9177
+ root_message_id?: string | null | undefined;
9168
9178
  }[];
9169
9179
  members: {
9170
9180
  type: string;
@@ -9603,7 +9613,6 @@ export declare const chatRoomModelSchema: z.ZodObject<{
9603
9613
  metadata?: Record<string, unknown> | undefined;
9604
9614
  title?: string | undefined;
9605
9615
  muted?: boolean | undefined;
9606
- tags?: string[] | undefined;
9607
9616
  role?: string | undefined;
9608
9617
  agent_user?: string | undefined;
9609
9618
  creator?: string | {
@@ -9736,6 +9745,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
9736
9745
  replies_before_cursor?: string | undefined;
9737
9746
  reply_count?: number | undefined;
9738
9747
  reply_to?: Record<string, unknown> | undefined;
9748
+ root_message_id?: string | null | undefined;
9739
9749
  } | undefined;
9740
9750
  participant?: string[] | undefined;
9741
9751
  participating_actor?: string[] | undefined;
@@ -9921,6 +9931,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
9921
9931
  } | undefined;
9922
9932
  slug?: string | undefined;
9923
9933
  sub_threads?: Record<string, unknown>[] | undefined;
9934
+ tags?: string[] | undefined;
9924
9935
  ttl?: number | undefined;
9925
9936
  unread_count?: number | undefined;
9926
9937
  };
@@ -10033,6 +10044,7 @@ export declare const chatRoomModelSchema: z.ZodObject<{
10033
10044
  replies_before_cursor?: string | undefined;
10034
10045
  reply_count?: number | undefined;
10035
10046
  reply_to?: Record<string, unknown> | undefined;
10047
+ root_message_id?: string | null | undefined;
10036
10048
  }[];
10037
10049
  members: {
10038
10050
  type: string;
@@ -14084,6 +14096,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
14084
14096
  replies_before_cursor: z.ZodOptional<z.ZodString>;
14085
14097
  reply_count: z.ZodOptional<z.ZodNumber>;
14086
14098
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14099
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14087
14100
  sandbox: z.ZodOptional<z.ZodString>;
14088
14101
  team: z.ZodOptional<z.ZodString>;
14089
14102
  thread: z.ZodOptional<z.ZodString>;
@@ -14198,6 +14211,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
14198
14211
  replies_before_cursor?: string | undefined;
14199
14212
  reply_count?: number | undefined;
14200
14213
  reply_to?: Record<string, unknown> | undefined;
14214
+ root_message_id?: string | null | undefined;
14201
14215
  }, {
14202
14216
  id: string;
14203
14217
  content?: string | undefined;
@@ -14306,6 +14320,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
14306
14320
  replies_before_cursor?: string | undefined;
14307
14321
  reply_count?: number | undefined;
14308
14322
  reply_to?: Record<string, unknown> | undefined;
14323
+ root_message_id?: string | null | undefined;
14309
14324
  }>, "many">;
14310
14325
  /** Number of messages that were added to the snapshot in the most recent incremental update. `null` on the initial load. */
14311
14326
  messages_loaded_on_last_update: z.ZodOptional<z.ZodNumber>;
@@ -14881,6 +14896,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
14881
14896
  replies_before_cursor: z.ZodOptional<z.ZodString>;
14882
14897
  reply_count: z.ZodOptional<z.ZodNumber>;
14883
14898
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
14899
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14884
14900
  sandbox: z.ZodOptional<z.ZodString>;
14885
14901
  team: z.ZodOptional<z.ZodString>;
14886
14902
  thread: z.ZodOptional<z.ZodString>;
@@ -14995,6 +15011,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
14995
15011
  replies_before_cursor?: string | undefined;
14996
15012
  reply_count?: number | undefined;
14997
15013
  reply_to?: Record<string, unknown> | undefined;
15014
+ root_message_id?: string | null | undefined;
14998
15015
  }, {
14999
15016
  id: string;
15000
15017
  content?: string | undefined;
@@ -15103,6 +15120,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
15103
15120
  replies_before_cursor?: string | undefined;
15104
15121
  reply_count?: number | undefined;
15105
15122
  reply_to?: Record<string, unknown> | undefined;
15123
+ root_message_id?: string | null | undefined;
15106
15124
  }>>;
15107
15125
  participant: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15108
15126
  participants: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -16603,7 +16621,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
16603
16621
  metadata?: Record<string, unknown> | undefined;
16604
16622
  title?: string | undefined;
16605
16623
  muted?: boolean | undefined;
16606
- tags?: string[] | undefined;
16607
16624
  role?: string | undefined;
16608
16625
  agent_user?: string | undefined;
16609
16626
  creator?: string | {
@@ -16736,6 +16753,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
16736
16753
  replies_before_cursor?: string | undefined;
16737
16754
  reply_count?: number | undefined;
16738
16755
  reply_to?: Record<string, unknown> | undefined;
16756
+ root_message_id?: string | null | undefined;
16739
16757
  } | undefined;
16740
16758
  participant?: string[] | undefined;
16741
16759
  participating_actor?: string[] | undefined;
@@ -16921,6 +16939,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
16921
16939
  } | undefined;
16922
16940
  slug?: string | undefined;
16923
16941
  sub_threads?: Record<string, unknown>[] | undefined;
16942
+ tags?: string[] | undefined;
16924
16943
  ttl?: number | undefined;
16925
16944
  unread_count?: number | undefined;
16926
16945
  }, {
@@ -16953,7 +16972,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
16953
16972
  metadata?: Record<string, unknown> | undefined;
16954
16973
  title?: string | undefined;
16955
16974
  muted?: boolean | undefined;
16956
- tags?: string[] | undefined;
16957
16975
  role?: string | undefined;
16958
16976
  agent_user?: string | undefined;
16959
16977
  creator?: string | {
@@ -17086,6 +17104,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
17086
17104
  replies_before_cursor?: string | undefined;
17087
17105
  reply_count?: number | undefined;
17088
17106
  reply_to?: Record<string, unknown> | undefined;
17107
+ root_message_id?: string | null | undefined;
17089
17108
  } | undefined;
17090
17109
  participant?: string[] | undefined;
17091
17110
  participating_actor?: string[] | undefined;
@@ -17271,6 +17290,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
17271
17290
  } | undefined;
17272
17291
  slug?: string | undefined;
17273
17292
  sub_threads?: Record<string, unknown>[] | undefined;
17293
+ tags?: string[] | undefined;
17274
17294
  ttl?: number | undefined;
17275
17295
  unread_count?: number | undefined;
17276
17296
  }>;
@@ -17305,7 +17325,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
17305
17325
  metadata?: Record<string, unknown> | undefined;
17306
17326
  title?: string | undefined;
17307
17327
  muted?: boolean | undefined;
17308
- tags?: string[] | undefined;
17309
17328
  role?: string | undefined;
17310
17329
  agent_user?: string | undefined;
17311
17330
  creator?: string | {
@@ -17438,6 +17457,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
17438
17457
  replies_before_cursor?: string | undefined;
17439
17458
  reply_count?: number | undefined;
17440
17459
  reply_to?: Record<string, unknown> | undefined;
17460
+ root_message_id?: string | null | undefined;
17441
17461
  } | undefined;
17442
17462
  participant?: string[] | undefined;
17443
17463
  participating_actor?: string[] | undefined;
@@ -17623,6 +17643,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
17623
17643
  } | undefined;
17624
17644
  slug?: string | undefined;
17625
17645
  sub_threads?: Record<string, unknown>[] | undefined;
17646
+ tags?: string[] | undefined;
17626
17647
  ttl?: number | undefined;
17627
17648
  unread_count?: number | undefined;
17628
17649
  };
@@ -17735,6 +17756,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
17735
17756
  replies_before_cursor?: string | undefined;
17736
17757
  reply_count?: number | undefined;
17737
17758
  reply_to?: Record<string, unknown> | undefined;
17759
+ root_message_id?: string | null | undefined;
17738
17760
  }[];
17739
17761
  members: {
17740
17762
  type: string;
@@ -18173,7 +18195,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
18173
18195
  metadata?: Record<string, unknown> | undefined;
18174
18196
  title?: string | undefined;
18175
18197
  muted?: boolean | undefined;
18176
- tags?: string[] | undefined;
18177
18198
  role?: string | undefined;
18178
18199
  agent_user?: string | undefined;
18179
18200
  creator?: string | {
@@ -18306,6 +18327,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
18306
18327
  replies_before_cursor?: string | undefined;
18307
18328
  reply_count?: number | undefined;
18308
18329
  reply_to?: Record<string, unknown> | undefined;
18330
+ root_message_id?: string | null | undefined;
18309
18331
  } | undefined;
18310
18332
  participant?: string[] | undefined;
18311
18333
  participating_actor?: string[] | undefined;
@@ -18491,6 +18513,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
18491
18513
  } | undefined;
18492
18514
  slug?: string | undefined;
18493
18515
  sub_threads?: Record<string, unknown>[] | undefined;
18516
+ tags?: string[] | undefined;
18494
18517
  ttl?: number | undefined;
18495
18518
  unread_count?: number | undefined;
18496
18519
  };
@@ -18603,6 +18626,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
18603
18626
  replies_before_cursor?: string | undefined;
18604
18627
  reply_count?: number | undefined;
18605
18628
  reply_to?: Record<string, unknown> | undefined;
18629
+ root_message_id?: string | null | undefined;
18606
18630
  }[];
18607
18631
  members: {
18608
18632
  type: string;
@@ -19583,6 +19607,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
19583
19607
  replies_before_cursor: z.ZodOptional<z.ZodString>;
19584
19608
  reply_count: z.ZodOptional<z.ZodNumber>;
19585
19609
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19610
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19586
19611
  sandbox: z.ZodOptional<z.ZodString>;
19587
19612
  team: z.ZodOptional<z.ZodString>;
19588
19613
  thread: z.ZodOptional<z.ZodString>;
@@ -19697,6 +19722,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
19697
19722
  replies_before_cursor?: string | undefined;
19698
19723
  reply_count?: number | undefined;
19699
19724
  reply_to?: Record<string, unknown> | undefined;
19725
+ root_message_id?: string | null | undefined;
19700
19726
  }, {
19701
19727
  id: string;
19702
19728
  content?: string | undefined;
@@ -19805,6 +19831,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
19805
19831
  replies_before_cursor?: string | undefined;
19806
19832
  reply_count?: number | undefined;
19807
19833
  reply_to?: Record<string, unknown> | undefined;
19834
+ root_message_id?: string | null | undefined;
19808
19835
  }>>;
19809
19836
  participant: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19810
19837
  participants: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -21305,7 +21332,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
21305
21332
  metadata?: Record<string, unknown> | undefined;
21306
21333
  title?: string | undefined;
21307
21334
  muted?: boolean | undefined;
21308
- tags?: string[] | undefined;
21309
21335
  role?: string | undefined;
21310
21336
  agent_user?: string | undefined;
21311
21337
  creator?: string | {
@@ -21438,6 +21464,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
21438
21464
  replies_before_cursor?: string | undefined;
21439
21465
  reply_count?: number | undefined;
21440
21466
  reply_to?: Record<string, unknown> | undefined;
21467
+ root_message_id?: string | null | undefined;
21441
21468
  } | undefined;
21442
21469
  participant?: string[] | undefined;
21443
21470
  participating_actor?: string[] | undefined;
@@ -21623,6 +21650,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
21623
21650
  } | undefined;
21624
21651
  slug?: string | undefined;
21625
21652
  sub_threads?: Record<string, unknown>[] | undefined;
21653
+ tags?: string[] | undefined;
21626
21654
  ttl?: number | undefined;
21627
21655
  unread_count?: number | undefined;
21628
21656
  }, {
@@ -21655,7 +21683,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
21655
21683
  metadata?: Record<string, unknown> | undefined;
21656
21684
  title?: string | undefined;
21657
21685
  muted?: boolean | undefined;
21658
- tags?: string[] | undefined;
21659
21686
  role?: string | undefined;
21660
21687
  agent_user?: string | undefined;
21661
21688
  creator?: string | {
@@ -21788,6 +21815,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
21788
21815
  replies_before_cursor?: string | undefined;
21789
21816
  reply_count?: number | undefined;
21790
21817
  reply_to?: Record<string, unknown> | undefined;
21818
+ root_message_id?: string | null | undefined;
21791
21819
  } | undefined;
21792
21820
  participant?: string[] | undefined;
21793
21821
  participating_actor?: string[] | undefined;
@@ -21973,6 +22001,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
21973
22001
  } | undefined;
21974
22002
  slug?: string | undefined;
21975
22003
  sub_threads?: Record<string, unknown>[] | undefined;
22004
+ tags?: string[] | undefined;
21976
22005
  ttl?: number | undefined;
21977
22006
  unread_count?: number | undefined;
21978
22007
  }>;
@@ -22007,7 +22036,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22007
22036
  metadata?: Record<string, unknown> | undefined;
22008
22037
  title?: string | undefined;
22009
22038
  muted?: boolean | undefined;
22010
- tags?: string[] | undefined;
22011
22039
  role?: string | undefined;
22012
22040
  agent_user?: string | undefined;
22013
22041
  creator?: string | {
@@ -22140,6 +22168,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22140
22168
  replies_before_cursor?: string | undefined;
22141
22169
  reply_count?: number | undefined;
22142
22170
  reply_to?: Record<string, unknown> | undefined;
22171
+ root_message_id?: string | null | undefined;
22143
22172
  } | undefined;
22144
22173
  participant?: string[] | undefined;
22145
22174
  participating_actor?: string[] | undefined;
@@ -22325,6 +22354,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22325
22354
  } | undefined;
22326
22355
  slug?: string | undefined;
22327
22356
  sub_threads?: Record<string, unknown>[] | undefined;
22357
+ tags?: string[] | undefined;
22328
22358
  ttl?: number | undefined;
22329
22359
  unread_count?: number | undefined;
22330
22360
  };
@@ -22389,7 +22419,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22389
22419
  metadata?: Record<string, unknown> | undefined;
22390
22420
  title?: string | undefined;
22391
22421
  muted?: boolean | undefined;
22392
- tags?: string[] | undefined;
22393
22422
  role?: string | undefined;
22394
22423
  agent_user?: string | undefined;
22395
22424
  creator?: string | {
@@ -22522,6 +22551,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22522
22551
  replies_before_cursor?: string | undefined;
22523
22552
  reply_count?: number | undefined;
22524
22553
  reply_to?: Record<string, unknown> | undefined;
22554
+ root_message_id?: string | null | undefined;
22525
22555
  } | undefined;
22526
22556
  participant?: string[] | undefined;
22527
22557
  participating_actor?: string[] | undefined;
@@ -22707,6 +22737,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22707
22737
  } | undefined;
22708
22738
  slug?: string | undefined;
22709
22739
  sub_threads?: Record<string, unknown>[] | undefined;
22740
+ tags?: string[] | undefined;
22710
22741
  ttl?: number | undefined;
22711
22742
  unread_count?: number | undefined;
22712
22743
  };
@@ -22819,6 +22850,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
22819
22850
  replies_before_cursor?: string | undefined;
22820
22851
  reply_count?: number | undefined;
22821
22852
  reply_to?: Record<string, unknown> | undefined;
22853
+ root_message_id?: string | null | undefined;
22822
22854
  }[];
22823
22855
  members: {
22824
22856
  type: string;
@@ -23258,7 +23290,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
23258
23290
  metadata?: Record<string, unknown> | undefined;
23259
23291
  title?: string | undefined;
23260
23292
  muted?: boolean | undefined;
23261
- tags?: string[] | undefined;
23262
23293
  role?: string | undefined;
23263
23294
  agent_user?: string | undefined;
23264
23295
  creator?: string | {
@@ -23391,6 +23422,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
23391
23422
  replies_before_cursor?: string | undefined;
23392
23423
  reply_count?: number | undefined;
23393
23424
  reply_to?: Record<string, unknown> | undefined;
23425
+ root_message_id?: string | null | undefined;
23394
23426
  } | undefined;
23395
23427
  participant?: string[] | undefined;
23396
23428
  participating_actor?: string[] | undefined;
@@ -23576,6 +23608,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
23576
23608
  } | undefined;
23577
23609
  slug?: string | undefined;
23578
23610
  sub_threads?: Record<string, unknown>[] | undefined;
23611
+ tags?: string[] | undefined;
23579
23612
  ttl?: number | undefined;
23580
23613
  unread_count?: number | undefined;
23581
23614
  };
@@ -23640,7 +23673,6 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
23640
23673
  metadata?: Record<string, unknown> | undefined;
23641
23674
  title?: string | undefined;
23642
23675
  muted?: boolean | undefined;
23643
- tags?: string[] | undefined;
23644
23676
  role?: string | undefined;
23645
23677
  agent_user?: string | undefined;
23646
23678
  creator?: string | {
@@ -23773,6 +23805,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
23773
23805
  replies_before_cursor?: string | undefined;
23774
23806
  reply_count?: number | undefined;
23775
23807
  reply_to?: Record<string, unknown> | undefined;
23808
+ root_message_id?: string | null | undefined;
23776
23809
  } | undefined;
23777
23810
  participant?: string[] | undefined;
23778
23811
  participating_actor?: string[] | undefined;
@@ -23958,6 +23991,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
23958
23991
  } | undefined;
23959
23992
  slug?: string | undefined;
23960
23993
  sub_threads?: Record<string, unknown>[] | undefined;
23994
+ tags?: string[] | undefined;
23961
23995
  ttl?: number | undefined;
23962
23996
  unread_count?: number | undefined;
23963
23997
  };
@@ -24070,6 +24104,7 @@ export declare const chatForkThreadResponseSchema: z.ZodObject<{
24070
24104
  replies_before_cursor?: string | undefined;
24071
24105
  reply_count?: number | undefined;
24072
24106
  reply_to?: Record<string, unknown> | undefined;
24107
+ root_message_id?: string | null | undefined;
24073
24108
  }[];
24074
24109
  members: {
24075
24110
  type: string;
@@ -28118,6 +28153,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
28118
28153
  replies_before_cursor: z.ZodOptional<z.ZodString>;
28119
28154
  reply_count: z.ZodOptional<z.ZodNumber>;
28120
28155
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
28156
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28121
28157
  sandbox: z.ZodOptional<z.ZodString>;
28122
28158
  team: z.ZodOptional<z.ZodString>;
28123
28159
  thread: z.ZodOptional<z.ZodString>;
@@ -28232,6 +28268,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
28232
28268
  replies_before_cursor?: string | undefined;
28233
28269
  reply_count?: number | undefined;
28234
28270
  reply_to?: Record<string, unknown> | undefined;
28271
+ root_message_id?: string | null | undefined;
28235
28272
  }, {
28236
28273
  id: string;
28237
28274
  content?: string | undefined;
@@ -28340,6 +28377,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
28340
28377
  replies_before_cursor?: string | undefined;
28341
28378
  reply_count?: number | undefined;
28342
28379
  reply_to?: Record<string, unknown> | undefined;
28380
+ root_message_id?: string | null | undefined;
28343
28381
  }>, "many">;
28344
28382
  /** Number of messages that were added to the snapshot in the most recent incremental update. `null` on the initial load. */
28345
28383
  messages_loaded_on_last_update: z.ZodOptional<z.ZodNumber>;
@@ -28915,6 +28953,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
28915
28953
  replies_before_cursor: z.ZodOptional<z.ZodString>;
28916
28954
  reply_count: z.ZodOptional<z.ZodNumber>;
28917
28955
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
28956
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28918
28957
  sandbox: z.ZodOptional<z.ZodString>;
28919
28958
  team: z.ZodOptional<z.ZodString>;
28920
28959
  thread: z.ZodOptional<z.ZodString>;
@@ -29029,6 +29068,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
29029
29068
  replies_before_cursor?: string | undefined;
29030
29069
  reply_count?: number | undefined;
29031
29070
  reply_to?: Record<string, unknown> | undefined;
29071
+ root_message_id?: string | null | undefined;
29032
29072
  }, {
29033
29073
  id: string;
29034
29074
  content?: string | undefined;
@@ -29137,6 +29177,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
29137
29177
  replies_before_cursor?: string | undefined;
29138
29178
  reply_count?: number | undefined;
29139
29179
  reply_to?: Record<string, unknown> | undefined;
29180
+ root_message_id?: string | null | undefined;
29140
29181
  }>>;
29141
29182
  participant: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29142
29183
  participants: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -30637,7 +30678,6 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
30637
30678
  metadata?: Record<string, unknown> | undefined;
30638
30679
  title?: string | undefined;
30639
30680
  muted?: boolean | undefined;
30640
- tags?: string[] | undefined;
30641
30681
  role?: string | undefined;
30642
30682
  agent_user?: string | undefined;
30643
30683
  creator?: string | {
@@ -30770,6 +30810,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
30770
30810
  replies_before_cursor?: string | undefined;
30771
30811
  reply_count?: number | undefined;
30772
30812
  reply_to?: Record<string, unknown> | undefined;
30813
+ root_message_id?: string | null | undefined;
30773
30814
  } | undefined;
30774
30815
  participant?: string[] | undefined;
30775
30816
  participating_actor?: string[] | undefined;
@@ -30955,6 +30996,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
30955
30996
  } | undefined;
30956
30997
  slug?: string | undefined;
30957
30998
  sub_threads?: Record<string, unknown>[] | undefined;
30999
+ tags?: string[] | undefined;
30958
31000
  ttl?: number | undefined;
30959
31001
  unread_count?: number | undefined;
30960
31002
  }, {
@@ -30987,7 +31029,6 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
30987
31029
  metadata?: Record<string, unknown> | undefined;
30988
31030
  title?: string | undefined;
30989
31031
  muted?: boolean | undefined;
30990
- tags?: string[] | undefined;
30991
31032
  role?: string | undefined;
30992
31033
  agent_user?: string | undefined;
30993
31034
  creator?: string | {
@@ -31120,6 +31161,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
31120
31161
  replies_before_cursor?: string | undefined;
31121
31162
  reply_count?: number | undefined;
31122
31163
  reply_to?: Record<string, unknown> | undefined;
31164
+ root_message_id?: string | null | undefined;
31123
31165
  } | undefined;
31124
31166
  participant?: string[] | undefined;
31125
31167
  participating_actor?: string[] | undefined;
@@ -31305,6 +31347,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
31305
31347
  } | undefined;
31306
31348
  slug?: string | undefined;
31307
31349
  sub_threads?: Record<string, unknown>[] | undefined;
31350
+ tags?: string[] | undefined;
31308
31351
  ttl?: number | undefined;
31309
31352
  unread_count?: number | undefined;
31310
31353
  }>;
@@ -31339,7 +31382,6 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
31339
31382
  metadata?: Record<string, unknown> | undefined;
31340
31383
  title?: string | undefined;
31341
31384
  muted?: boolean | undefined;
31342
- tags?: string[] | undefined;
31343
31385
  role?: string | undefined;
31344
31386
  agent_user?: string | undefined;
31345
31387
  creator?: string | {
@@ -31472,6 +31514,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
31472
31514
  replies_before_cursor?: string | undefined;
31473
31515
  reply_count?: number | undefined;
31474
31516
  reply_to?: Record<string, unknown> | undefined;
31517
+ root_message_id?: string | null | undefined;
31475
31518
  } | undefined;
31476
31519
  participant?: string[] | undefined;
31477
31520
  participating_actor?: string[] | undefined;
@@ -31657,6 +31700,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
31657
31700
  } | undefined;
31658
31701
  slug?: string | undefined;
31659
31702
  sub_threads?: Record<string, unknown>[] | undefined;
31703
+ tags?: string[] | undefined;
31660
31704
  ttl?: number | undefined;
31661
31705
  unread_count?: number | undefined;
31662
31706
  };
@@ -31769,6 +31813,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
31769
31813
  replies_before_cursor?: string | undefined;
31770
31814
  reply_count?: number | undefined;
31771
31815
  reply_to?: Record<string, unknown> | undefined;
31816
+ root_message_id?: string | null | undefined;
31772
31817
  }[];
31773
31818
  members: {
31774
31819
  type: string;
@@ -32207,7 +32252,6 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
32207
32252
  metadata?: Record<string, unknown> | undefined;
32208
32253
  title?: string | undefined;
32209
32254
  muted?: boolean | undefined;
32210
- tags?: string[] | undefined;
32211
32255
  role?: string | undefined;
32212
32256
  agent_user?: string | undefined;
32213
32257
  creator?: string | {
@@ -32340,6 +32384,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
32340
32384
  replies_before_cursor?: string | undefined;
32341
32385
  reply_count?: number | undefined;
32342
32386
  reply_to?: Record<string, unknown> | undefined;
32387
+ root_message_id?: string | null | undefined;
32343
32388
  } | undefined;
32344
32389
  participant?: string[] | undefined;
32345
32390
  participating_actor?: string[] | undefined;
@@ -32525,6 +32570,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
32525
32570
  } | undefined;
32526
32571
  slug?: string | undefined;
32527
32572
  sub_threads?: Record<string, unknown>[] | undefined;
32573
+ tags?: string[] | undefined;
32528
32574
  ttl?: number | undefined;
32529
32575
  unread_count?: number | undefined;
32530
32576
  };
@@ -32637,6 +32683,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
32637
32683
  replies_before_cursor?: string | undefined;
32638
32684
  reply_count?: number | undefined;
32639
32685
  reply_to?: Record<string, unknown> | undefined;
32686
+ root_message_id?: string | null | undefined;
32640
32687
  }[];
32641
32688
  members: {
32642
32689
  type: string;
@@ -33077,7 +33124,6 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
33077
33124
  metadata?: Record<string, unknown> | undefined;
33078
33125
  title?: string | undefined;
33079
33126
  muted?: boolean | undefined;
33080
- tags?: string[] | undefined;
33081
33127
  role?: string | undefined;
33082
33128
  agent_user?: string | undefined;
33083
33129
  creator?: string | {
@@ -33210,6 +33256,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
33210
33256
  replies_before_cursor?: string | undefined;
33211
33257
  reply_count?: number | undefined;
33212
33258
  reply_to?: Record<string, unknown> | undefined;
33259
+ root_message_id?: string | null | undefined;
33213
33260
  } | undefined;
33214
33261
  participant?: string[] | undefined;
33215
33262
  participating_actor?: string[] | undefined;
@@ -33395,6 +33442,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
33395
33442
  } | undefined;
33396
33443
  slug?: string | undefined;
33397
33444
  sub_threads?: Record<string, unknown>[] | undefined;
33445
+ tags?: string[] | undefined;
33398
33446
  ttl?: number | undefined;
33399
33447
  unread_count?: number | undefined;
33400
33448
  };
@@ -33507,6 +33555,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
33507
33555
  replies_before_cursor?: string | undefined;
33508
33556
  reply_count?: number | undefined;
33509
33557
  reply_to?: Record<string, unknown> | undefined;
33558
+ root_message_id?: string | null | undefined;
33510
33559
  }[];
33511
33560
  members: {
33512
33561
  type: string;
@@ -33947,7 +33996,6 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
33947
33996
  metadata?: Record<string, unknown> | undefined;
33948
33997
  title?: string | undefined;
33949
33998
  muted?: boolean | undefined;
33950
- tags?: string[] | undefined;
33951
33999
  role?: string | undefined;
33952
34000
  agent_user?: string | undefined;
33953
34001
  creator?: string | {
@@ -34080,6 +34128,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
34080
34128
  replies_before_cursor?: string | undefined;
34081
34129
  reply_count?: number | undefined;
34082
34130
  reply_to?: Record<string, unknown> | undefined;
34131
+ root_message_id?: string | null | undefined;
34083
34132
  } | undefined;
34084
34133
  participant?: string[] | undefined;
34085
34134
  participating_actor?: string[] | undefined;
@@ -34265,6 +34314,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
34265
34314
  } | undefined;
34266
34315
  slug?: string | undefined;
34267
34316
  sub_threads?: Record<string, unknown>[] | undefined;
34317
+ tags?: string[] | undefined;
34268
34318
  ttl?: number | undefined;
34269
34319
  unread_count?: number | undefined;
34270
34320
  };
@@ -34377,6 +34427,7 @@ export declare const chatLoadMoreMessagesResponseSchema: z.ZodObject<{
34377
34427
  replies_before_cursor?: string | undefined;
34378
34428
  reply_count?: number | undefined;
34379
34429
  reply_to?: Record<string, unknown> | undefined;
34430
+ root_message_id?: string | null | undefined;
34380
34431
  }[];
34381
34432
  members: {
34382
34433
  type: string;
@@ -35178,6 +35229,7 @@ export declare const chatMessageListResponseSchema: z.ZodObject<{
35178
35229
  replies_before_cursor: z.ZodOptional<z.ZodString>;
35179
35230
  reply_count: z.ZodOptional<z.ZodNumber>;
35180
35231
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
35232
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35181
35233
  sandbox: z.ZodOptional<z.ZodString>;
35182
35234
  team: z.ZodOptional<z.ZodString>;
35183
35235
  thread: z.ZodOptional<z.ZodString>;
@@ -35292,6 +35344,7 @@ export declare const chatMessageListResponseSchema: z.ZodObject<{
35292
35344
  replies_before_cursor?: string | undefined;
35293
35345
  reply_count?: number | undefined;
35294
35346
  reply_to?: Record<string, unknown> | undefined;
35347
+ root_message_id?: string | null | undefined;
35295
35348
  }, {
35296
35349
  id: string;
35297
35350
  content?: string | undefined;
@@ -35400,6 +35453,7 @@ export declare const chatMessageListResponseSchema: z.ZodObject<{
35400
35453
  replies_before_cursor?: string | undefined;
35401
35454
  reply_count?: number | undefined;
35402
35455
  reply_to?: Record<string, unknown> | undefined;
35456
+ root_message_id?: string | null | undefined;
35403
35457
  }>, "many">;
35404
35458
  }, "strip", z.ZodTypeAny, {
35405
35459
  messages: {
@@ -35510,6 +35564,7 @@ export declare const chatMessageListResponseSchema: z.ZodObject<{
35510
35564
  replies_before_cursor?: string | undefined;
35511
35565
  reply_count?: number | undefined;
35512
35566
  reply_to?: Record<string, unknown> | undefined;
35567
+ root_message_id?: string | null | undefined;
35513
35568
  }[];
35514
35569
  }, {
35515
35570
  messages: {
@@ -35620,6 +35675,7 @@ export declare const chatMessageListResponseSchema: z.ZodObject<{
35620
35675
  replies_before_cursor?: string | undefined;
35621
35676
  reply_count?: number | undefined;
35622
35677
  reply_to?: Record<string, unknown> | undefined;
35678
+ root_message_id?: string | null | undefined;
35623
35679
  }[];
35624
35680
  }>;
35625
35681
  /** Response returned after successfully posting a message to a chat thread. Contains the persisted message object echoed back to the sender. */
@@ -36000,6 +36056,7 @@ export declare const chatPostMessageResponseSchema: z.ZodObject<{
36000
36056
  replies_before_cursor: z.ZodOptional<z.ZodString>;
36001
36057
  reply_count: z.ZodOptional<z.ZodNumber>;
36002
36058
  reply_to: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
36059
+ root_message_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36003
36060
  sandbox: z.ZodOptional<z.ZodString>;
36004
36061
  team: z.ZodOptional<z.ZodString>;
36005
36062
  thread: z.ZodOptional<z.ZodString>;
@@ -36114,6 +36171,7 @@ export declare const chatPostMessageResponseSchema: z.ZodObject<{
36114
36171
  replies_before_cursor?: string | undefined;
36115
36172
  reply_count?: number | undefined;
36116
36173
  reply_to?: Record<string, unknown> | undefined;
36174
+ root_message_id?: string | null | undefined;
36117
36175
  }, {
36118
36176
  id: string;
36119
36177
  content?: string | undefined;
@@ -36222,6 +36280,7 @@ export declare const chatPostMessageResponseSchema: z.ZodObject<{
36222
36280
  replies_before_cursor?: string | undefined;
36223
36281
  reply_count?: number | undefined;
36224
36282
  reply_to?: Record<string, unknown> | undefined;
36283
+ root_message_id?: string | null | undefined;
36225
36284
  }>;
36226
36285
  }, "strip", z.ZodTypeAny, {
36227
36286
  message: {
@@ -36332,6 +36391,7 @@ export declare const chatPostMessageResponseSchema: z.ZodObject<{
36332
36391
  replies_before_cursor?: string | undefined;
36333
36392
  reply_count?: number | undefined;
36334
36393
  reply_to?: Record<string, unknown> | undefined;
36394
+ root_message_id?: string | null | undefined;
36335
36395
  };
36336
36396
  }, {
36337
36397
  message: {
@@ -36442,6 +36502,7 @@ export declare const chatPostMessageResponseSchema: z.ZodObject<{
36442
36502
  replies_before_cursor?: string | undefined;
36443
36503
  reply_count?: number | undefined;
36444
36504
  reply_to?: Record<string, unknown> | undefined;
36505
+ root_message_id?: string | null | undefined;
36445
36506
  };
36446
36507
  }>;
36447
36508
  //# sourceMappingURL=chat.d.ts.map