@smartspace/api-client 0.1.0-dev.deb6d4c → 0.1.0-dev.e0eec1a

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 (54) hide show
  1. package/dist/generated/chat/api.d.ts +14 -4
  2. package/dist/generated/chat/api.js +66 -1
  3. package/dist/generated/chat/models/dtosMessageThreadsMessageThreadDto.d.ts +23 -0
  4. package/dist/generated/chat/models/dtosMessageThreadsMessageThreadDto.js +8 -0
  5. package/dist/generated/chat/models/fileUriResponse.d.ts +9 -0
  6. package/dist/generated/chat/models/fileUriResponse.js +8 -0
  7. package/dist/generated/chat/models/index.d.ts +2 -0
  8. package/dist/generated/chat/models/index.js +2 -0
  9. package/dist/generated/chat/models/modelModel.d.ts +2 -2
  10. package/dist/generated/chat/models/modelModelSummary.d.ts +2 -2
  11. package/dist/generated/chat/zod.d.ts +206 -41
  12. package/dist/generated/chat/zod.js +172 -12
  13. package/dist/generated/config/api.d.ts +91 -11
  14. package/dist/generated/config/api.js +282 -7
  15. package/dist/generated/config/models/fileUriResponse.d.ts +9 -0
  16. package/dist/generated/config/models/flowRunsAddFileIdFilesBody.d.ts +9 -0
  17. package/dist/generated/config/models/flowRunsCreateFlowRunParams.d.ts +13 -0
  18. package/dist/generated/config/models/index.d.ts +10 -3
  19. package/dist/generated/config/models/index.js +10 -3
  20. package/dist/generated/config/models/messageSandBoxMessageRequest.d.ts +3 -0
  21. package/dist/generated/config/models/messageSandBoxMessageRequestVariables.d.ts +12 -0
  22. package/dist/generated/config/models/messageSandBoxMessageRequestVariables.js +8 -0
  23. package/dist/generated/config/models/modelModel.d.ts +2 -2
  24. package/dist/generated/config/models/modelModelSummary.d.ts +2 -2
  25. package/dist/generated/config/models/modelProvidersGetProvidersParams.d.ts +16 -0
  26. package/dist/generated/config/models/modelProvidersGetProvidersParams.js +8 -0
  27. package/dist/generated/config/models/modelsGetDefaultDockerFileParams.d.ts +10 -0
  28. package/dist/generated/config/models/modelsGetDefaultDockerFileParams.js +2 -0
  29. package/dist/generated/config/models/{sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams.d.ts → sandBoxGetThreadMessagesParams.d.ts} +1 -1
  30. package/dist/generated/config/models/sandBoxGetThreadMessagesParams.js +8 -0
  31. package/dist/generated/config/models/usersAdminPermissionParams.d.ts +9 -0
  32. package/dist/generated/config/models/usersAdminPermissionParams.js +8 -0
  33. package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesParams.d.ts → workSpacesGetWorkspaceFilesParams.d.ts} +1 -1
  34. package/dist/generated/config/models/workSpacesGetWorkspaceFilesParams.js +8 -0
  35. package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesBody.d.ts → workSpacesWorkspaceFilesBody.d.ts} +1 -1
  36. package/dist/generated/config/models/workSpacesWorkspaceFilesBody.js +8 -0
  37. package/dist/generated/config/zod.d.ts +584 -69
  38. package/dist/generated/config/zod.js +432 -46
  39. package/dist/generated/signalr/SmartSpace.App.Business.Models.Comment.d.ts +24 -0
  40. package/dist/generated/signalr/SmartSpace.App.Business.Models.Comment.js +5 -0
  41. package/dist/generated/signalr/SmartSpace.App.Business.Models.MessageThread.d.ts +27 -0
  42. package/dist/generated/signalr/SmartSpace.App.Business.Models.MessageThread.js +5 -0
  43. package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.d.ts +71 -0
  44. package/dist/generated/signalr/TypedSignalR.Client/SmartSpace.App.Business.Hubs.Contracts.js +2 -0
  45. package/dist/generated/signalr/TypedSignalR.Client/index.d.ts +21 -0
  46. package/dist/generated/signalr/TypedSignalR.Client/index.js +114 -0
  47. package/dist/index.d.ts +1 -0
  48. package/dist/index.js +2 -1
  49. package/dist/signalr.d.ts +4 -0
  50. package/dist/signalr.js +18 -0
  51. package/package.json +6 -2
  52. /package/dist/generated/config/models/{sandBoxThreadMessagesWorkspacesWorkspaceIdSandboxMessagesParams.js → fileUriResponse.js} +0 -0
  53. /package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesBody.js → flowRunsAddFileIdFilesBody.js} +0 -0
  54. /package/dist/generated/config/models/{workSpacesWorkspaceFilesWorkspaceIdFilesParams.js → flowRunsCreateFlowRunParams.js} +0 -0
@@ -98,7 +98,9 @@ export declare const filesGetUriQueryParams: zod.ZodObject<{
98
98
  threadId: zod.ZodOptional<zod.ZodString>;
99
99
  workspaceId: zod.ZodOptional<zod.ZodString>;
100
100
  }, zod.core.$strict>;
101
- export declare const filesGetUriResponse: zod.ZodString;
101
+ export declare const filesGetUriResponse: zod.ZodObject<{
102
+ uri: zod.ZodString;
103
+ }, zod.core.$strip>;
102
104
  export declare const flowRunsGetVariablesPathIdRegExp: RegExp;
103
105
  export declare const flowRunsGetVariablesParams: zod.ZodObject<{
104
106
  id: zod.ZodString;
@@ -187,6 +189,30 @@ export declare const messageThreadsPostCommentResponse: zod.ZodObject<{
187
189
  id: zod.ZodString;
188
190
  mentionedUsers: zod.ZodArray<zod.ZodString>;
189
191
  }, zod.core.$strip>;
192
+ /**
193
+ * @summary Pilot endpoint for the DTO/Mapperly pattern. Returns the full
194
+ MessageThreadDto for the given id. 404 via ProblemDetails when
195
+ the thread does not exist. See .claude/plans/dto-mapper-layer-overhaul.md.
196
+ */
197
+ export declare const messageThreadsGetMessageThreadDetailIdDetailPathIdRegExp: RegExp;
198
+ export declare const messageThreadsGetMessageThreadDetailIdDetailParams: zod.ZodObject<{
199
+ id: zod.ZodString;
200
+ }, zod.core.$strict>;
201
+ export declare const messageThreadsGetMessageThreadDetailIdDetailResponseFlowIdRegExp: RegExp;
202
+ export declare const messageThreadsGetMessageThreadDetailIdDetailResponseIdRegExp: RegExp;
203
+ export declare const messageThreadsGetMessageThreadDetailIdDetailResponseWorkSpaceIdRegExp: RegExp;
204
+ export declare const messageThreadsGetMessageThreadDetailIdDetailResponse: zod.ZodObject<{
205
+ createdAt: zod.ZodISODateTime;
206
+ createdByUserId: zod.ZodString;
207
+ finishedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
208
+ flowId: zod.ZodString;
209
+ id: zod.ZodString;
210
+ isFlowRunning: zod.ZodBoolean;
211
+ modifiedAt: zod.ZodISODateTime;
212
+ modifiedByUserId: zod.ZodString;
213
+ name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
214
+ workSpaceId: zod.ZodString;
215
+ }, zod.core.$strip>;
190
216
  /**
191
217
  * @summary Mark a message thread as favorited or not in SmartSpace, using the thread's ID and a boolean value in the request.
192
218
  */
@@ -256,6 +282,17 @@ export declare const messageThreadsThreadMessagesIdMessagesResponse: zod.ZodObje
256
282
  }, zod.core.$strip>>;
257
283
  total: zod.ZodNumber;
258
284
  }, zod.core.$strip>;
285
+ /**
286
+ * @summary SSE stream of all messages on a thread. First frame is the thread
287
+ snapshot (current messages with in-flight Redis state already
288
+ overlaid by `GetMessagesByThreadIdAsync`); subsequent frames
289
+ are per-message chunk updates as they arrive. Cumulative deltas
290
+ mean reconnect is just "re-open" — no cursor handshake.
291
+ */
292
+ export declare const messageThreadsStreamThreadMessagesIdMessagesStreamPathIdRegExp: RegExp;
293
+ export declare const messageThreadsStreamThreadMessagesIdMessagesStreamParams: zod.ZodObject<{
294
+ id: zod.ZodString;
295
+ }, zod.core.$strict>;
259
296
  /**
260
297
  * @summary Update the name of a message thread in SmartSpace, using the thread's ID and providing the new name in the request.
261
298
  */
@@ -302,6 +339,10 @@ export declare const messageThreadsAddThreadUserParams: zod.ZodObject<{
302
339
  /**
303
340
  * @summary Handles the HTTP POST request to create a new message in a thread within SmartSpace.
304
341
  This method specifies details like workspace ID, thread ID, and message content in the request.
342
+ Blocks until the flow completes and returns the final Message with all outputs populated,
343
+ preserving the original synchronous request/response contract for SDK and integration clients.
344
+ Clients that prefer to return immediately and subscribe to the SSE stream should use
345
+ `POST /messages/start` instead.
305
346
  */
306
347
  export declare const messagesThreadMessagesBodyMessageThreadIdRegExp: RegExp;
307
348
  export declare const messagesThreadMessagesBodyWorkSpaceIdRegExp: RegExp;
@@ -315,6 +356,86 @@ export declare const messagesThreadMessagesBody: zod.ZodObject<{
315
356
  variables: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
316
357
  workSpaceId: zod.ZodString;
317
358
  }, zod.core.$strict>;
359
+ export declare const messagesThreadMessagesResponseIdRegExp: RegExp;
360
+ export declare const messagesThreadMessagesResponseMessageThreadIdRegExp: RegExp;
361
+ export declare const messagesThreadMessagesResponseValuesItemIdRegExp: RegExp;
362
+ export declare const messagesThreadMessagesResponse: zod.ZodObject<{
363
+ createdAt: zod.ZodISODateTime;
364
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
365
+ createdByUserId: zod.ZodString;
366
+ errors: zod.ZodArray<zod.ZodObject<{
367
+ blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
368
+ code: zod.ZodNumber;
369
+ data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
370
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
371
+ }, zod.core.$strip>>;
372
+ hasComments: zod.ZodBoolean;
373
+ id: zod.ZodString;
374
+ messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
375
+ values: zod.ZodArray<zod.ZodObject<{
376
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
377
+ createdAt: zod.ZodISODateTime;
378
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
379
+ createdByUserId: zod.ZodString;
380
+ id: zod.ZodString;
381
+ name: zod.ZodString;
382
+ type: zod.ZodEnum<{
383
+ Input: "Input";
384
+ Output: "Output";
385
+ }>;
386
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
387
+ }, zod.core.$strip>>;
388
+ }, zod.core.$strip>;
389
+ /**
390
+ * @summary Starts a flow run on a thread and returns immediately with the initial Message
391
+ before the flow has produced any outputs. The flow continues in a background task;
392
+ deltas stream via Redis to the SSE endpoint at
393
+ `GET /MessageThreads/{id}/messages/stream` and final outputs are persisted to
394
+ the database. Use this endpoint when the client subscribes to the SSE stream for
395
+ live updates instead of waiting for the flow to complete.
396
+ */
397
+ export declare const messagesStartThreadMessageBodyMessageThreadIdRegExp: RegExp;
398
+ export declare const messagesStartThreadMessageBodyWorkSpaceIdRegExp: RegExp;
399
+ export declare const messagesStartThreadMessageBody: zod.ZodObject<{
400
+ inputs: zod.ZodArray<zod.ZodObject<{
401
+ channels: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodNumber>>>;
402
+ name: zod.ZodString;
403
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
404
+ }, zod.core.$strict>>;
405
+ messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
406
+ variables: zod.ZodOptional<zod.ZodNullable<zod.ZodRecord<zod.ZodString, zod.ZodAny>>>;
407
+ workSpaceId: zod.ZodString;
408
+ }, zod.core.$strict>;
409
+ export declare const messagesStartThreadMessageResponseIdRegExp: RegExp;
410
+ export declare const messagesStartThreadMessageResponseMessageThreadIdRegExp: RegExp;
411
+ export declare const messagesStartThreadMessageResponseValuesItemIdRegExp: RegExp;
412
+ export declare const messagesStartThreadMessageResponse: zod.ZodObject<{
413
+ createdAt: zod.ZodISODateTime;
414
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
415
+ createdByUserId: zod.ZodString;
416
+ errors: zod.ZodArray<zod.ZodObject<{
417
+ blockId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
418
+ code: zod.ZodNumber;
419
+ data: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
420
+ message: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
421
+ }, zod.core.$strip>>;
422
+ hasComments: zod.ZodBoolean;
423
+ id: zod.ZodString;
424
+ messageThreadId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
425
+ values: zod.ZodArray<zod.ZodObject<{
426
+ channels: zod.ZodRecord<zod.ZodString, zod.ZodNumber>;
427
+ createdAt: zod.ZodISODateTime;
428
+ createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
429
+ createdByUserId: zod.ZodString;
430
+ id: zod.ZodString;
431
+ name: zod.ZodString;
432
+ type: zod.ZodEnum<{
433
+ Input: "Input";
434
+ Output: "Output";
435
+ }>;
436
+ value: zod.ZodOptional<zod.ZodNullable<zod.ZodAny>>;
437
+ }, zod.core.$strip>>;
438
+ }, zod.core.$strip>;
318
439
  /**
319
440
  * @summary Remove a specific message from SmartSpace using its ID.
320
441
  */
@@ -372,6 +493,13 @@ export declare const messagesPostCommentResponse: zod.ZodObject<{
372
493
  id: zod.ZodString;
373
494
  mentionedUsers: zod.ZodArray<zod.ZodString>;
374
495
  }, zod.core.$strip>;
496
+ /**
497
+ * @summary Append a new input value to an in-flight message and stream successive
498
+ snapshots back to the client. Each frame is a full M:SmartSpace.App.ChatApi.Controllers.MessagesController.Message(System.Guid)
499
+ with the latest cumulative state — the SDK should treat the response as
500
+ a stream of M:SmartSpace.App.ChatApi.Controllers.MessagesController.Message(System.Guid) frames (NDJSON / SSE), with the final
501
+ frame being the authoritative completed message.
502
+ */
375
503
  export declare const messagesAddValueToMessagePathIdRegExp: RegExp;
376
504
  export declare const messagesAddValueToMessageParams: zod.ZodObject<{
377
505
  id: zod.ZodString;
@@ -416,16 +544,7 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
416
544
  VertexAi: "VertexAi";
417
545
  AzureFoundry: "AzureFoundry";
418
546
  }>>;
419
- name: zod.ZodString;
420
- properties: zod.ZodArray<zod.ZodObject<{
421
- name: zod.ZodString;
422
- type: zod.ZodEnum<{
423
- Boolean: "Boolean";
424
- Number: "Number";
425
- String: "String";
426
- }>;
427
- }, zod.core.$strip>>;
428
- publisher: zod.ZodOptional<zod.ZodEnum<{
547
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
429
548
  OpenAi: "OpenAi";
430
549
  HuggingFace: "HuggingFace";
431
550
  Cohere: "Cohere";
@@ -440,6 +559,15 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
440
559
  Qwen: "Qwen";
441
560
  Other: "Other";
442
561
  }>>;
562
+ name: zod.ZodString;
563
+ properties: zod.ZodArray<zod.ZodObject<{
564
+ name: zod.ZodString;
565
+ type: zod.ZodEnum<{
566
+ Boolean: "Boolean";
567
+ Number: "Number";
568
+ String: "String";
569
+ }>;
570
+ }, zod.core.$strip>>;
443
571
  virtualMachineUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
444
572
  }, zod.core.$strip>>;
445
573
  total: zod.ZodNumber;
@@ -512,16 +640,7 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
512
640
  VertexAi: "VertexAi";
513
641
  AzureFoundry: "AzureFoundry";
514
642
  }>>;
515
- name: zod.ZodString;
516
- properties: zod.ZodArray<zod.ZodObject<{
517
- name: zod.ZodString;
518
- type: zod.ZodEnum<{
519
- Boolean: "Boolean";
520
- Number: "Number";
521
- String: "String";
522
- }>;
523
- }, zod.core.$strip>>;
524
- publisher: zod.ZodOptional<zod.ZodEnum<{
643
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
525
644
  OpenAi: "OpenAi";
526
645
  HuggingFace: "HuggingFace";
527
646
  Cohere: "Cohere";
@@ -536,6 +655,15 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
536
655
  Qwen: "Qwen";
537
656
  Other: "Other";
538
657
  }>>;
658
+ name: zod.ZodString;
659
+ properties: zod.ZodArray<zod.ZodObject<{
660
+ name: zod.ZodString;
661
+ type: zod.ZodEnum<{
662
+ Boolean: "Boolean";
663
+ Number: "Number";
664
+ String: "String";
665
+ }>;
666
+ }, zod.core.$strip>>;
539
667
  }, zod.core.$strip>;
540
668
  /**
541
669
  * @summary Retrieve notifications for user login.
@@ -789,16 +917,7 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
789
917
  VertexAi: "VertexAi";
790
918
  AzureFoundry: "AzureFoundry";
791
919
  }>>;
792
- name: zod.ZodString;
793
- properties: zod.ZodArray<zod.ZodObject<{
794
- name: zod.ZodString;
795
- type: zod.ZodEnum<{
796
- Boolean: "Boolean";
797
- Number: "Number";
798
- String: "String";
799
- }>;
800
- }, zod.core.$strip>>;
801
- publisher: zod.ZodOptional<zod.ZodEnum<{
920
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
802
921
  OpenAi: "OpenAi";
803
922
  HuggingFace: "HuggingFace";
804
923
  Cohere: "Cohere";
@@ -813,6 +932,15 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
813
932
  Qwen: "Qwen";
814
933
  Other: "Other";
815
934
  }>>;
935
+ name: zod.ZodString;
936
+ properties: zod.ZodArray<zod.ZodObject<{
937
+ name: zod.ZodString;
938
+ type: zod.ZodEnum<{
939
+ Boolean: "Boolean";
940
+ Number: "Number";
941
+ String: "String";
942
+ }>;
943
+ }, zod.core.$strip>>;
816
944
  }, zod.core.$strip>;
817
945
  prePrompt: zod.ZodString;
818
946
  presencePenalty: zod.ZodNumber;
@@ -1040,16 +1168,7 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
1040
1168
  VertexAi: "VertexAi";
1041
1169
  AzureFoundry: "AzureFoundry";
1042
1170
  }>>;
1043
- name: zod.ZodString;
1044
- properties: zod.ZodArray<zod.ZodObject<{
1045
- name: zod.ZodString;
1046
- type: zod.ZodEnum<{
1047
- Boolean: "Boolean";
1048
- Number: "Number";
1049
- String: "String";
1050
- }>;
1051
- }, zod.core.$strip>>;
1052
- publisher: zod.ZodOptional<zod.ZodEnum<{
1171
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
1053
1172
  OpenAi: "OpenAi";
1054
1173
  HuggingFace: "HuggingFace";
1055
1174
  Cohere: "Cohere";
@@ -1064,6 +1183,15 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
1064
1183
  Qwen: "Qwen";
1065
1184
  Other: "Other";
1066
1185
  }>>;
1186
+ name: zod.ZodString;
1187
+ properties: zod.ZodArray<zod.ZodObject<{
1188
+ name: zod.ZodString;
1189
+ type: zod.ZodEnum<{
1190
+ Boolean: "Boolean";
1191
+ Number: "Number";
1192
+ String: "String";
1193
+ }>;
1194
+ }, zod.core.$strip>>;
1067
1195
  }, zod.core.$strip>;
1068
1196
  prePrompt: zod.ZodString;
1069
1197
  presencePenalty: zod.ZodNumber;
@@ -1251,6 +1379,31 @@ export declare const messageThreadsGetMessageThreadWorkspacesWorkspaceIdMessaget
1251
1379
  totalMessages: zod.ZodNumber;
1252
1380
  workSpaceId: zod.ZodString;
1253
1381
  }, zod.core.$strip>;
1382
+ /**
1383
+ * @summary Pilot endpoint for the DTO/Mapperly pattern. Returns the full
1384
+ MessageThreadDto for the given id. 404 via ProblemDetails when
1385
+ the thread does not exist. See .claude/plans/dto-mapper-layer-overhaul.md.
1386
+ */
1387
+ export declare const messageThreadsGetMessageThreadDetailWorkspacesWorkspaceIdMessagethreadsIdDetailPathIdRegExp: RegExp;
1388
+ export declare const messageThreadsGetMessageThreadDetailWorkspacesWorkspaceIdMessagethreadsIdDetailParams: zod.ZodObject<{
1389
+ id: zod.ZodString;
1390
+ workspaceId: zod.ZodString;
1391
+ }, zod.core.$strict>;
1392
+ export declare const messageThreadsGetMessageThreadDetailWorkspacesWorkspaceIdMessagethreadsIdDetailResponseFlowIdRegExp: RegExp;
1393
+ export declare const messageThreadsGetMessageThreadDetailWorkspacesWorkspaceIdMessagethreadsIdDetailResponseIdRegExp: RegExp;
1394
+ export declare const messageThreadsGetMessageThreadDetailWorkspacesWorkspaceIdMessagethreadsIdDetailResponseWorkSpaceIdRegExp: RegExp;
1395
+ export declare const messageThreadsGetMessageThreadDetailWorkspacesWorkspaceIdMessagethreadsIdDetailResponse: zod.ZodObject<{
1396
+ createdAt: zod.ZodISODateTime;
1397
+ createdByUserId: zod.ZodString;
1398
+ finishedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
1399
+ flowId: zod.ZodString;
1400
+ id: zod.ZodString;
1401
+ isFlowRunning: zod.ZodBoolean;
1402
+ modifiedAt: zod.ZodISODateTime;
1403
+ modifiedByUserId: zod.ZodString;
1404
+ name: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1405
+ workSpaceId: zod.ZodString;
1406
+ }, zod.core.$strip>;
1254
1407
  /**
1255
1408
  * @summary Retrieves messages from a specific message thread along with the profile images of the users who created the messages.
1256
1409
  */
@@ -1314,3 +1467,15 @@ export declare const messageThreadsThreadMessagesWorkspacesWorkspaceIdMessagethr
1314
1467
  }, zod.core.$strip>>;
1315
1468
  total: zod.ZodNumber;
1316
1469
  }, zod.core.$strip>;
1470
+ /**
1471
+ * @summary SSE stream of all messages on a thread. First frame is the thread
1472
+ snapshot (current messages with in-flight Redis state already
1473
+ overlaid by `GetMessagesByThreadIdAsync`); subsequent frames
1474
+ are per-message chunk updates as they arrive. Cumulative deltas
1475
+ mean reconnect is just "re-open" — no cursor handshake.
1476
+ */
1477
+ export declare const messageThreadsStreamThreadMessagesWorkspacesWorkspaceIdMessagethreadsIdMessagesStreamPathIdRegExp: RegExp;
1478
+ export declare const messageThreadsStreamThreadMessagesWorkspacesWorkspaceIdMessagethreadsIdMessagesStreamParams: zod.ZodObject<{
1479
+ id: zod.ZodString;
1480
+ workspaceId: zod.ZodString;
1481
+ }, zod.core.$strict>;