lemma-sdk 0.2.36 → 0.2.38

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 (171) hide show
  1. package/README.md +45 -30
  2. package/dist/browser/lemma-client.js +224 -212
  3. package/dist/client.d.ts +1 -4
  4. package/dist/client.js +1 -6
  5. package/dist/index.d.ts +2 -5
  6. package/dist/index.js +1 -2
  7. package/dist/namespaces/agents.js +1 -1
  8. package/dist/namespaces/conversations.d.ts +68 -0
  9. package/dist/namespaces/conversations.js +159 -0
  10. package/dist/namespaces/files.d.ts +24 -6
  11. package/dist/namespaces/files.js +25 -12
  12. package/dist/namespaces/integrations.js +1 -1
  13. package/dist/namespaces/pod-surfaces.d.ts +1 -1
  14. package/dist/namespaces/pod-surfaces.js +6 -6
  15. package/dist/openapi_client/index.d.ts +17 -32
  16. package/dist/openapi_client/index.js +8 -12
  17. package/dist/openapi_client/models/AdminConsentInfoResponse.d.ts +2 -2
  18. package/dist/openapi_client/models/AgentListResponse.d.ts +2 -4
  19. package/dist/openapi_client/models/AgentMessageResponse.d.ts +0 -3
  20. package/dist/openapi_client/models/{AvailableModels.d.ts → AgentModelName.d.ts} +4 -1
  21. package/dist/openapi_client/models/AgentModelName.js +18 -0
  22. package/dist/openapi_client/models/AgentResponse.d.ts +18 -13
  23. package/dist/openapi_client/models/AgentSurfaceListResponse.d.ts +6 -0
  24. package/dist/openapi_client/models/{AssistantSurfaceResponse.d.ts → AgentSurfaceResponse.d.ts} +6 -5
  25. package/dist/openapi_client/models/{AssistantSurfaceStatus.d.ts → AgentSurfaceStatus.d.ts} +1 -1
  26. package/dist/openapi_client/models/AgentSurfaceStatus.js +10 -0
  27. package/dist/openapi_client/models/{ToolSet.d.ts → AgentToolset.d.ts} +3 -5
  28. package/dist/openapi_client/models/AgentToolset.js +17 -0
  29. package/dist/openapi_client/models/ApplicationAccessConfig.d.ts +3 -5
  30. package/dist/openapi_client/models/ApplicationMode.d.ts +3 -3
  31. package/dist/openapi_client/models/ApplicationMode.js +3 -3
  32. package/dist/openapi_client/models/ConversationResponse.d.ts +9 -20
  33. package/dist/openapi_client/models/CreateAgentRequest.d.ts +11 -7
  34. package/dist/openapi_client/models/CreateConversationRequest.d.ts +4 -8
  35. package/dist/openapi_client/models/CreateFolderRequest.d.ts +2 -5
  36. package/dist/openapi_client/models/CreateFunctionRequest.d.ts +2 -2
  37. package/dist/openapi_client/models/CreateSurfaceRequest.d.ts +1 -1
  38. package/dist/openapi_client/models/DatastoreFileUploadRequest.d.ts +2 -2
  39. package/dist/openapi_client/models/FileNamespace.d.ts +4 -0
  40. package/dist/openapi_client/models/FileNamespace.js +9 -0
  41. package/dist/openapi_client/models/FileResponse.d.ts +2 -2
  42. package/dist/openapi_client/models/FlowRunEntity.d.ts +10 -1
  43. package/dist/openapi_client/models/FunctionResponse.d.ts +2 -2
  44. package/dist/openapi_client/models/HarnessKind.d.ts +7 -0
  45. package/dist/openapi_client/models/HarnessKind.js +12 -0
  46. package/dist/openapi_client/models/MessageListResponse.d.ts +6 -0
  47. package/dist/openapi_client/models/{TaskMessageResponse.d.ts → MessageResponse.d.ts} +8 -7
  48. package/dist/openapi_client/models/OrganizationInvitationResponse.d.ts +1 -0
  49. package/dist/openapi_client/models/ReportFeedbackResponse.d.ts +0 -4
  50. package/dist/openapi_client/models/ResourceType.d.ts +0 -1
  51. package/dist/openapi_client/models/ResourceType.js +0 -1
  52. package/dist/openapi_client/models/SendMessageRequest.d.ts +5 -0
  53. package/dist/openapi_client/models/{ToolCallRequest.d.ts → ToolCallContent.d.ts} +1 -1
  54. package/dist/openapi_client/models/{ToolCallResponse.d.ts → ToolReturnContent.d.ts} +2 -1
  55. package/dist/openapi_client/models/UpdateAgentRequest.d.ts +11 -7
  56. package/dist/openapi_client/models/UpdateConversationRequest.d.ts +2 -5
  57. package/dist/openapi_client/models/UpdateFunctionRequest.d.ts +2 -2
  58. package/dist/openapi_client/models/app__modules__agent__domain__value_objects__TableAccessEntry.d.ts +8 -0
  59. package/dist/openapi_client/models/{TableAccessEntry.d.ts → app__modules__function__api__schemas__function_schemas__TableAccessEntry.d.ts} +1 -1
  60. package/dist/openapi_client/models/update.d.ts +2 -2
  61. package/dist/openapi_client/services/AgentConversationsService.d.ts +87 -0
  62. package/dist/openapi_client/services/{ConversationsService.js → AgentConversationsService.js} +61 -72
  63. package/dist/openapi_client/services/{AssistantSurfacesIngressService.d.ts → AgentSurfacesIngressService.d.ts} +2 -2
  64. package/dist/openapi_client/services/{AssistantSurfacesIngressService.js → AgentSurfacesIngressService.js} +2 -2
  65. package/dist/openapi_client/services/{AssistantSurfacesService.d.ts → AgentSurfacesService.d.ts} +11 -11
  66. package/dist/openapi_client/services/{AssistantSurfacesService.js → AgentSurfacesService.js} +10 -10
  67. package/dist/openapi_client/services/AgentToolsService.d.ts +8 -8
  68. package/dist/openapi_client/services/AgentToolsService.js +8 -8
  69. package/dist/openapi_client/services/AgentsService.d.ts +7 -7
  70. package/dist/openapi_client/services/AgentsService.js +8 -8
  71. package/dist/openapi_client/services/FilesService.d.ts +17 -8
  72. package/dist/openapi_client/services/FilesService.js +25 -8
  73. package/dist/openapi_client/services/WorkflowsService.d.ts +1 -1
  74. package/dist/openapi_client/services/WorkflowsService.js +1 -1
  75. package/dist/react/index.d.ts +0 -8
  76. package/dist/react/index.js +0 -4
  77. package/dist/react/useAssistantController.d.ts +6 -2
  78. package/dist/react/useAssistantController.js +56 -15
  79. package/dist/react/useAssistantSession.d.ts +15 -5
  80. package/dist/react/useAssistantSession.js +24 -26
  81. package/dist/react/useConversationMessages.d.ts +6 -2
  82. package/dist/react/useConversationMessages.js +2 -1
  83. package/dist/react/useConversations.d.ts +6 -2
  84. package/dist/react/useConversations.js +7 -5
  85. package/dist/react/useCreateFolder.d.ts +4 -2
  86. package/dist/react/useCreateFolder.js +6 -3
  87. package/dist/react/useDeleteFile.d.ts +4 -1
  88. package/dist/react/useDeleteFile.js +3 -3
  89. package/dist/react/useFile.d.ts +4 -2
  90. package/dist/react/useFile.js +3 -3
  91. package/dist/react/useFilePreview.d.ts +4 -1
  92. package/dist/react/useFilePreview.js +5 -4
  93. package/dist/react/useFileTree.d.ts +4 -2
  94. package/dist/react/useFileTree.js +3 -2
  95. package/dist/react/useFiles.d.ts +4 -2
  96. package/dist/react/useFiles.js +5 -3
  97. package/dist/react/useUpdateFile.d.ts +4 -2
  98. package/dist/react/useUpdateFile.js +6 -3
  99. package/dist/react/useUploadFile.d.ts +4 -2
  100. package/dist/react/useUploadFile.js +6 -3
  101. package/dist/react/useWorkflowRun.js +1 -1
  102. package/dist/react/useWorkflowStart.js +1 -1
  103. package/dist/run-utils.d.ts +2 -5
  104. package/dist/run-utils.js +0 -10
  105. package/dist/types.d.ts +24 -10
  106. package/package.json +1 -1
  107. package/dist/namespaces/assistants.d.ts +0 -96
  108. package/dist/namespaces/assistants.js +0 -160
  109. package/dist/namespaces/tasks.d.ts +0 -29
  110. package/dist/namespaces/tasks.js +0 -49
  111. package/dist/openapi_client/models/AddMessageRequest.d.ts +0 -6
  112. package/dist/openapi_client/models/AssistantListResponse.d.ts +0 -6
  113. package/dist/openapi_client/models/AssistantResponse.d.ts +0 -23
  114. package/dist/openapi_client/models/AssistantSurfaceListResponse.d.ts +0 -6
  115. package/dist/openapi_client/models/AssistantSurfaceStatus.js +0 -10
  116. package/dist/openapi_client/models/AvailableModelInfo.d.ts +0 -8
  117. package/dist/openapi_client/models/AvailableModels.js +0 -15
  118. package/dist/openapi_client/models/AvailableModelsListResponse.d.ts +0 -7
  119. package/dist/openapi_client/models/ConversationMessageListResponse.d.ts +0 -6
  120. package/dist/openapi_client/models/ConversationMessageResponse.d.ts +0 -19
  121. package/dist/openapi_client/models/ConversationStatus.d.ts +0 -7
  122. package/dist/openapi_client/models/ConversationStatus.js +0 -12
  123. package/dist/openapi_client/models/ConversationType.d.ts +0 -8
  124. package/dist/openapi_client/models/ConversationType.js +0 -13
  125. package/dist/openapi_client/models/CreateAssistantRequest.d.ts +0 -18
  126. package/dist/openapi_client/models/CreateAssistantRequest.js +0 -1
  127. package/dist/openapi_client/models/CreateMessageRequest.d.ts +0 -6
  128. package/dist/openapi_client/models/CreateMessageRequest.js +0 -1
  129. package/dist/openapi_client/models/CreateTaskRequest.d.ts +0 -10
  130. package/dist/openapi_client/models/CreateTaskRequest.js +0 -1
  131. package/dist/openapi_client/models/FileVisibility.d.ts +0 -4
  132. package/dist/openapi_client/models/FileVisibility.js +0 -9
  133. package/dist/openapi_client/models/TableAccessEntry.js +0 -1
  134. package/dist/openapi_client/models/TaskListResponse.d.ts +0 -9
  135. package/dist/openapi_client/models/TaskListResponse.js +0 -1
  136. package/dist/openapi_client/models/TaskMessageListResponse.d.ts +0 -9
  137. package/dist/openapi_client/models/TaskMessageListResponse.js +0 -1
  138. package/dist/openapi_client/models/TaskMessageResponse.js +0 -1
  139. package/dist/openapi_client/models/TaskResponse.d.ts +0 -16
  140. package/dist/openapi_client/models/TaskResponse.js +0 -1
  141. package/dist/openapi_client/models/TaskStatus.d.ts +0 -12
  142. package/dist/openapi_client/models/TaskStatus.js +0 -17
  143. package/dist/openapi_client/models/ToolCallRequest.js +0 -1
  144. package/dist/openapi_client/models/ToolCallResponse.js +0 -1
  145. package/dist/openapi_client/models/ToolSet.js +0 -19
  146. package/dist/openapi_client/models/UpdateAssistantRequest.d.ts +0 -17
  147. package/dist/openapi_client/models/UpdateAssistantRequest.js +0 -1
  148. package/dist/openapi_client/services/AssistantsService.d.ts +0 -49
  149. package/dist/openapi_client/services/AssistantsService.js +0 -112
  150. package/dist/openapi_client/services/ConversationsService.d.ts +0 -88
  151. package/dist/openapi_client/services/TasksService.d.ts +0 -76
  152. package/dist/openapi_client/services/TasksService.js +0 -167
  153. package/dist/react/useAgentRun.d.ts +0 -17
  154. package/dist/react/useAgentRun.js +0 -56
  155. package/dist/react/useAgentRuns.d.ts +0 -33
  156. package/dist/react/useAgentRuns.js +0 -149
  157. package/dist/react/useAssistantRun.d.ts +0 -27
  158. package/dist/react/useAssistantRun.js +0 -47
  159. package/dist/react/useTaskSession.d.ts +0 -35
  160. package/dist/react/useTaskSession.js +0 -269
  161. package/dist/task-events.d.ts +0 -8
  162. package/dist/task-events.js +0 -115
  163. /package/dist/openapi_client/models/{AddMessageRequest.js → AgentSurfaceListResponse.js} +0 -0
  164. /package/dist/openapi_client/models/{AssistantListResponse.js → AgentSurfaceResponse.js} +0 -0
  165. /package/dist/openapi_client/models/{AssistantResponse.js → MessageListResponse.js} +0 -0
  166. /package/dist/openapi_client/models/{AssistantSurfaceListResponse.js → MessageResponse.js} +0 -0
  167. /package/dist/openapi_client/models/{AssistantSurfaceResponse.js → SendMessageRequest.js} +0 -0
  168. /package/dist/openapi_client/models/{AvailableModelInfo.js → ToolCallContent.js} +0 -0
  169. /package/dist/openapi_client/models/{AvailableModelsListResponse.js → ToolReturnContent.js} +0 -0
  170. /package/dist/openapi_client/models/{ConversationMessageListResponse.js → app__modules__agent__domain__value_objects__TableAccessEntry.js} +0 -0
  171. /package/dist/openapi_client/models/{ConversationMessageResponse.js → app__modules__function__api__schemas__function_schemas__TableAccessEntry.js} +0 -0
@@ -6,15 +6,21 @@ export type { AccountCredentialsResponseSchema } from './models/AccountCredentia
6
6
  export type { AccountListResponseSchema } from './models/AccountListResponseSchema.js';
7
7
  export type { AccountResponseSchema } from './models/AccountResponseSchema.js';
8
8
  export type { AddColumnRequest } from './models/AddColumnRequest.js';
9
- export type { AddMessageRequest } from './models/AddMessageRequest.js';
10
9
  export type { AdminConsentInfoResponse } from './models/AdminConsentInfoResponse.js';
11
10
  export type { AgentListResponse } from './models/AgentListResponse.js';
12
11
  export type { AgentMessageResponse } from './models/AgentMessageResponse.js';
12
+ export { AgentModelName } from './models/AgentModelName.js';
13
13
  export type { AgentNode } from './models/AgentNode.js';
14
14
  export type { AgentNodeConfig } from './models/AgentNodeConfig.js';
15
15
  export type { AgentNodeResponse } from './models/AgentNodeResponse.js';
16
16
  export type { AgentResponse } from './models/AgentResponse.js';
17
+ export type { AgentSurfaceListResponse } from './models/AgentSurfaceListResponse.js';
18
+ export type { AgentSurfaceResponse } from './models/AgentSurfaceResponse.js';
19
+ export { AgentSurfaceStatus } from './models/AgentSurfaceStatus.js';
20
+ export { AgentToolset } from './models/AgentToolset.js';
17
21
  export type { ApiKeyCredentialsResponseSchema } from './models/ApiKeyCredentialsResponseSchema.js';
22
+ export type { app__modules__agent__domain__value_objects__TableAccessEntry } from './models/app__modules__agent__domain__value_objects__TableAccessEntry.js';
23
+ export type { app__modules__function__api__schemas__function_schemas__TableAccessEntry } from './models/app__modules__function__api__schemas__function_schemas__TableAccessEntry.js';
18
24
  export type { ApplicationAccessConfig } from './models/ApplicationAccessConfig.js';
19
25
  export type { ApplicationDetailResponseSchema } from './models/ApplicationDetailResponseSchema.js';
20
26
  export type { ApplicationListResponseSchema } from './models/ApplicationListResponseSchema.js';
@@ -22,14 +28,6 @@ export { ApplicationMode } from './models/ApplicationMode.js';
22
28
  export type { ApplicationResponseSchema } from './models/ApplicationResponseSchema.js';
23
29
  export type { AppTriggerListResponseSchema } from './models/AppTriggerListResponseSchema.js';
24
30
  export type { AppTriggerResponseSchema } from './models/AppTriggerResponseSchema.js';
25
- export type { AssistantListResponse } from './models/AssistantListResponse.js';
26
- export type { AssistantResponse } from './models/AssistantResponse.js';
27
- export type { AssistantSurfaceListResponse } from './models/AssistantSurfaceListResponse.js';
28
- export type { AssistantSurfaceResponse } from './models/AssistantSurfaceResponse.js';
29
- export { AssistantSurfaceStatus } from './models/AssistantSurfaceStatus.js';
30
- export type { AvailableModelInfo } from './models/AvailableModelInfo.js';
31
- export { AvailableModels } from './models/AvailableModels.js';
32
- export type { AvailableModelsListResponse } from './models/AvailableModelsListResponse.js';
33
31
  export { BillingInterval } from './models/BillingInterval.js';
34
32
  export type { Body_upload_file_files__resource_type___resource_id__upload_post } from './models/Body_upload_file_files__resource_type___resource_id__upload_post.js';
35
33
  export type { BulkCreateRecordsRequest } from './models/BulkCreateRecordsRequest.js';
@@ -40,24 +38,17 @@ export type { ColumnSchema } from './models/ColumnSchema.js';
40
38
  export type { ConnectRequestInitiateSchema } from './models/ConnectRequestInitiateSchema.js';
41
39
  export type { ConnectRequestResponseSchema } from './models/ConnectRequestResponseSchema.js';
42
40
  export type { ConversationListResponse } from './models/ConversationListResponse.js';
43
- export type { ConversationMessageListResponse } from './models/ConversationMessageListResponse.js';
44
- export type { ConversationMessageResponse } from './models/ConversationMessageResponse.js';
45
41
  export type { ConversationResponse } from './models/ConversationResponse.js';
46
- export { ConversationStatus } from './models/ConversationStatus.js';
47
- export { ConversationType } from './models/ConversationType.js';
48
42
  export type { ConvertedArtifactResponse } from './models/ConvertedArtifactResponse.js';
49
43
  export type { ConvertedFileResponse } from './models/ConvertedFileResponse.js';
50
44
  export type { CreateAgentRequest } from './models/CreateAgentRequest.js';
51
- export type { CreateAssistantRequest } from './models/CreateAssistantRequest.js';
52
45
  export type { CreateConversationRequest } from './models/CreateConversationRequest.js';
53
46
  export type { CreateDeskRequest } from './models/CreateDeskRequest.js';
54
47
  export type { CreateFolderRequest } from './models/CreateFolderRequest.js';
55
48
  export type { CreateFunctionRequest } from './models/CreateFunctionRequest.js';
56
- export type { CreateMessageRequest } from './models/CreateMessageRequest.js';
57
49
  export type { CreateRecordRequest } from './models/CreateRecordRequest.js';
58
50
  export type { CreateSurfaceRequest } from './models/CreateSurfaceRequest.js';
59
51
  export type { CreateTableRequest } from './models/CreateTableRequest.js';
60
- export type { CreateTaskRequest } from './models/CreateTaskRequest.js';
61
52
  export type { CreateTriggerRequest } from './models/CreateTriggerRequest.js';
62
53
  export { CredentialTypes } from './models/CredentialTypes.js';
63
54
  export { DatastoreDataType } from './models/DatastoreDataType.js';
@@ -94,13 +85,13 @@ export type { ExpressionInputBinding } from './models/ExpressionInputBinding.js'
94
85
  export { FeedbackCategory } from './models/FeedbackCategory.js';
95
86
  export { FileInfo } from './models/FileInfo.js';
96
87
  export type { FileListResponse } from './models/FileListResponse.js';
88
+ export { FileNamespace } from './models/FileNamespace.js';
97
89
  export type { FileResponse } from './models/FileResponse.js';
98
90
  export type { FileSearchRequest } from './models/FileSearchRequest.js';
99
91
  export type { FileSearchResponse } from './models/FileSearchResponse.js';
100
92
  export type { FileSearchResultSchema } from './models/FileSearchResultSchema.js';
101
93
  export { FileSearchScopeMode } from './models/FileSearchScopeMode.js';
102
94
  export type { FileUploadResponse } from './models/FileUploadResponse.js';
103
- export { FileVisibility } from './models/FileVisibility.js';
104
95
  export type { FlowInstallResponse } from './models/FlowInstallResponse.js';
105
96
  export type { FlowResponse } from './models/FlowResponse.js';
106
97
  export type { FlowRunEntity } from './models/FlowRunEntity.js';
@@ -123,6 +114,7 @@ export { FunctionType } from './models/FunctionType.js';
123
114
  export type { GmailSurfaceConfig } from './models/GmailSurfaceConfig.js';
124
115
  export type { GmailSurfaceConfigInput } from './models/GmailSurfaceConfigInput.js';
125
116
  export type { GrantPermissionRequest } from './models/GrantPermissionRequest.js';
117
+ export { HarnessKind } from './models/HarnessKind.js';
126
118
  export type { HTTPValidationError } from './models/HTTPValidationError.js';
127
119
  export type { IconUploadRequest } from './models/IconUploadRequest.js';
128
120
  export type { IconUploadResponse } from './models/IconUploadResponse.js';
@@ -134,6 +126,8 @@ export type { LoopNodeConfig } from './models/LoopNodeConfig.js';
134
126
  export type { LoopNodeResponse } from './models/LoopNodeResponse.js';
135
127
  export type { ManualWorkflowStartInput } from './models/ManualWorkflowStartInput.js';
136
128
  export type { ManualWorkflowStartOutput } from './models/ManualWorkflowStartOutput.js';
129
+ export type { MessageListResponse } from './models/MessageListResponse.js';
130
+ export type { MessageResponse } from './models/MessageResponse.js';
137
131
  export type { MessageResponseSchema } from './models/MessageResponseSchema.js';
138
132
  export type { NotificationContent } from './models/NotificationContent.js';
139
133
  export type { OauthCredentialsResponseSchema } from './models/OauthCredentialsResponseSchema.js';
@@ -196,6 +190,7 @@ export type { ScheduledWorkflowStartOutput } from './models/ScheduledWorkflowSta
196
190
  export { SearchMethod } from './models/SearchMethod.js';
197
191
  export type { SearchResult } from './models/SearchResult.js';
198
192
  export type { SeatInfoResponse } from './models/SeatInfoResponse.js';
193
+ export type { SendMessageRequest } from './models/SendMessageRequest.js';
199
194
  export type { SetVisibilityRequest } from './models/SetVisibilityRequest.js';
200
195
  export type { SlackCredentialsInput } from './models/SlackCredentialsInput.js';
201
196
  export type { SlackSurfaceConfig } from './models/SlackSurfaceConfig.js';
@@ -218,15 +213,9 @@ export { SurfaceSetupMode } from './models/SurfaceSetupMode.js';
218
213
  export { SurfaceSetupPhase } from './models/SurfaceSetupPhase.js';
219
214
  export type { SurfaceSetupStep } from './models/SurfaceSetupStep.js';
220
215
  export { SurfaceWebhookMode } from './models/SurfaceWebhookMode.js';
221
- export type { TableAccessEntry } from './models/TableAccessEntry.js';
222
216
  export { TableAccessMode } from './models/TableAccessMode.js';
223
217
  export type { TableListResponse } from './models/TableListResponse.js';
224
218
  export type { TableResponse } from './models/TableResponse.js';
225
- export type { TaskListResponse } from './models/TaskListResponse.js';
226
- export type { TaskMessageListResponse } from './models/TaskMessageListResponse.js';
227
- export type { TaskMessageResponse } from './models/TaskMessageResponse.js';
228
- export type { TaskResponse } from './models/TaskResponse.js';
229
- export { TaskStatus } from './models/TaskStatus.js';
230
219
  export type { TeamsCredentialsInput } from './models/TeamsCredentialsInput.js';
231
220
  export type { TeamsSurfaceConfig } from './models/TeamsSurfaceConfig.js';
232
221
  export type { TeamsSurfaceConfigInput } from './models/TeamsSurfaceConfigInput.js';
@@ -236,15 +225,13 @@ export type { TelegramSurfaceConfigInput } from './models/TelegramSurfaceConfigI
236
225
  export type { TextContent } from './models/TextContent.js';
237
226
  export type { ThinkingContent } from './models/ThinkingContent.js';
238
227
  export type { ToggleSurfaceRequest } from './models/ToggleSurfaceRequest.js';
239
- export type { ToolCallRequest } from './models/ToolCallRequest.js';
240
- export type { ToolCallResponse } from './models/ToolCallResponse.js';
241
- export { ToolSet } from './models/ToolSet.js';
228
+ export type { ToolCallContent } from './models/ToolCallContent.js';
229
+ export type { ToolReturnContent } from './models/ToolReturnContent.js';
242
230
  export type { TriggerListResponse } from './models/TriggerListResponse.js';
243
231
  export type { TriggerResponse } from './models/TriggerResponse.js';
244
232
  export { TriggerType } from './models/TriggerType.js';
245
233
  export type { update } from './models/update.js';
246
234
  export type { UpdateAgentRequest } from './models/UpdateAgentRequest.js';
247
- export type { UpdateAssistantRequest } from './models/UpdateAssistantRequest.js';
248
235
  export type { UpdateConversationRequest } from './models/UpdateConversationRequest.js';
249
236
  export type { UpdateDeskRequest } from './models/UpdateDeskRequest.js';
250
237
  export type { UpdateFunctionRequest } from './models/UpdateFunctionRequest.js';
@@ -279,19 +266,18 @@ export type { WorkflowListResponse } from './models/WorkflowListResponse.js';
279
266
  export type { WorkflowRunListResponse } from './models/WorkflowRunListResponse.js';
280
267
  export type { WorkflowTimeInstallConfig } from './models/WorkflowTimeInstallConfig.js';
281
268
  export type { WorkflowUpdateRequest } from './models/WorkflowUpdateRequest.js';
269
+ export { AgentConversationsService } from './services/AgentConversationsService.js';
282
270
  export { AgentFilesService } from './services/AgentFilesService.js';
283
271
  export { AgentsService } from './services/AgentsService.js';
272
+ export { AgentSurfacesService } from './services/AgentSurfacesService.js';
273
+ export { AgentSurfacesIngressService } from './services/AgentSurfacesIngressService.js';
284
274
  export { AgentToolsService } from './services/AgentToolsService.js';
285
275
  export { ApplicationsService } from './services/ApplicationsService.js';
286
- export { AssistantsService } from './services/AssistantsService.js';
287
- export { AssistantSurfacesService } from './services/AssistantSurfacesService.js';
288
- export { AssistantSurfacesIngressService } from './services/AssistantSurfacesIngressService.js';
289
276
  export { AuthService } from './services/AuthService.js';
290
277
  export { AuthorizationService } from './services/AuthorizationService.js';
291
278
  export { BillingSubscriptionsService } from './services/BillingSubscriptionsService.js';
292
279
  export { BillingUsageService } from './services/BillingUsageService.js';
293
280
  export { BillingWebhooksService } from './services/BillingWebhooksService.js';
294
- export { ConversationsService } from './services/ConversationsService.js';
295
281
  export { DefaultService } from './services/DefaultService.js';
296
282
  export { DesksService } from './services/DesksService.js';
297
283
  export { FilesService } from './services/FilesService.js';
@@ -305,7 +291,6 @@ export { PodsService } from './services/PodsService.js';
305
291
  export { QueryService } from './services/QueryService.js';
306
292
  export { RecordsService } from './services/RecordsService.js';
307
293
  export { TablesService } from './services/TablesService.js';
308
- export { TasksService } from './services/TasksService.js';
309
294
  export { TriggersService } from './services/TriggersService.js';
310
295
  export { UsersService } from './services/UsersService.js';
311
296
  export { WebhooksService } from './services/WebhooksService.js';
@@ -5,24 +5,24 @@
5
5
  export { ApiError } from './core/ApiError.js';
6
6
  export { CancelablePromise, CancelError } from './core/CancelablePromise.js';
7
7
  export { OpenAPI } from './core/OpenAPI.js';
8
+ export { AgentModelName } from './models/AgentModelName.js';
9
+ export { AgentSurfaceStatus } from './models/AgentSurfaceStatus.js';
10
+ export { AgentToolset } from './models/AgentToolset.js';
8
11
  export { ApplicationMode } from './models/ApplicationMode.js';
9
- export { AssistantSurfaceStatus } from './models/AssistantSurfaceStatus.js';
10
- export { AvailableModels } from './models/AvailableModels.js';
11
12
  export { BillingInterval } from './models/BillingInterval.js';
12
- export { ConversationStatus } from './models/ConversationStatus.js';
13
- export { ConversationType } from './models/ConversationType.js';
14
13
  export { CredentialTypes } from './models/CredentialTypes.js';
15
14
  export { DatastoreDataType } from './models/DatastoreDataType.js';
16
15
  export { DatastoreOperation } from './models/DatastoreOperation.js';
17
16
  export { DeskStatus } from './models/DeskStatus.js';
18
17
  export { FeedbackCategory } from './models/FeedbackCategory.js';
19
18
  export { FileInfo } from './models/FileInfo.js';
19
+ export { FileNamespace } from './models/FileNamespace.js';
20
20
  export { FileSearchScopeMode } from './models/FileSearchScopeMode.js';
21
- export { FileVisibility } from './models/FileVisibility.js';
22
21
  export { FlowRunStatus } from './models/FlowRunStatus.js';
23
22
  export { FunctionRunStatus } from './models/FunctionRunStatus.js';
24
23
  export { FunctionStatus } from './models/FunctionStatus.js';
25
24
  export { FunctionType } from './models/FunctionType.js';
25
+ export { HarnessKind } from './models/HarnessKind.js';
26
26
  export { OrganizationInvitationStatus } from './models/OrganizationInvitationStatus.js';
27
27
  export { OrganizationRole } from './models/OrganizationRole.js';
28
28
  export { PodAppMode } from './models/PodAppMode.js';
@@ -40,23 +40,20 @@ export { SurfaceSetupMode } from './models/SurfaceSetupMode.js';
40
40
  export { SurfaceSetupPhase } from './models/SurfaceSetupPhase.js';
41
41
  export { SurfaceWebhookMode } from './models/SurfaceWebhookMode.js';
42
42
  export { TableAccessMode } from './models/TableAccessMode.js';
43
- export { TaskStatus } from './models/TaskStatus.js';
44
- export { ToolSet } from './models/ToolSet.js';
45
43
  export { TriggerType } from './models/TriggerType.js';
46
44
  export { WorkflowInstallMode } from './models/WorkflowInstallMode.js';
45
+ export { AgentConversationsService } from './services/AgentConversationsService.js';
47
46
  export { AgentFilesService } from './services/AgentFilesService.js';
48
47
  export { AgentsService } from './services/AgentsService.js';
48
+ export { AgentSurfacesService } from './services/AgentSurfacesService.js';
49
+ export { AgentSurfacesIngressService } from './services/AgentSurfacesIngressService.js';
49
50
  export { AgentToolsService } from './services/AgentToolsService.js';
50
51
  export { ApplicationsService } from './services/ApplicationsService.js';
51
- export { AssistantsService } from './services/AssistantsService.js';
52
- export { AssistantSurfacesService } from './services/AssistantSurfacesService.js';
53
- export { AssistantSurfacesIngressService } from './services/AssistantSurfacesIngressService.js';
54
52
  export { AuthService } from './services/AuthService.js';
55
53
  export { AuthorizationService } from './services/AuthorizationService.js';
56
54
  export { BillingSubscriptionsService } from './services/BillingSubscriptionsService.js';
57
55
  export { BillingUsageService } from './services/BillingUsageService.js';
58
56
  export { BillingWebhooksService } from './services/BillingWebhooksService.js';
59
- export { ConversationsService } from './services/ConversationsService.js';
60
57
  export { DefaultService } from './services/DefaultService.js';
61
58
  export { DesksService } from './services/DesksService.js';
62
59
  export { FilesService } from './services/FilesService.js';
@@ -70,7 +67,6 @@ export { PodsService } from './services/PodsService.js';
70
67
  export { QueryService } from './services/QueryService.js';
71
68
  export { RecordsService } from './services/RecordsService.js';
72
69
  export { TablesService } from './services/TablesService.js';
73
- export { TasksService } from './services/TasksService.js';
74
70
  export { TriggersService } from './services/TriggersService.js';
75
71
  export { UsersService } from './services/UsersService.js';
76
72
  export { WebhooksService } from './services/WebhooksService.js';
@@ -1,6 +1,6 @@
1
- import type { AssistantSurfaceStatus } from './AssistantSurfaceStatus.js';
1
+ import type { AgentSurfaceStatus } from './AgentSurfaceStatus.js';
2
2
  export type AdminConsentInfoResponse = {
3
3
  consent_url?: (string | null);
4
- status: AssistantSurfaceStatus;
4
+ status: AgentSurfaceStatus;
5
5
  surface_id: string;
6
6
  };
@@ -1,8 +1,6 @@
1
1
  import type { AgentResponse } from './AgentResponse.js';
2
- /**
3
- * Response schema for list of agents.
4
- */
5
2
  export type AgentListResponse = {
6
3
  items: Array<AgentResponse>;
7
- next_page_token: (string | null);
4
+ limit: number;
5
+ next_page_token?: (string | null);
8
6
  };
@@ -1,6 +1,3 @@
1
- /**
2
- * Generic agent action response.
3
- */
4
1
  export type AgentMessageResponse = {
5
2
  message: string;
6
3
  };
@@ -1,4 +1,7 @@
1
- export declare enum AvailableModels {
1
+ /**
2
+ * Models that can be selected for an agent conversation.
3
+ */
4
+ export declare enum AgentModelName {
2
5
  GEMINI_PRO = "GEMINI_PRO",
3
6
  GEMINI_FLASH = "GEMINI_FLASH",
4
7
  GEMINI_FLASH_LITE = "GEMINI_FLASH_LITE",
@@ -0,0 +1,18 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ /**
6
+ * Models that can be selected for an agent conversation.
7
+ */
8
+ export var AgentModelName;
9
+ (function (AgentModelName) {
10
+ AgentModelName["GEMINI_PRO"] = "GEMINI_PRO";
11
+ AgentModelName["GEMINI_FLASH"] = "GEMINI_FLASH";
12
+ AgentModelName["GEMINI_FLASH_LITE"] = "GEMINI_FLASH_LITE";
13
+ AgentModelName["KIMI_K2"] = "KIMI_K2";
14
+ AgentModelName["GPT_OSS"] = "GPT_OSS";
15
+ AgentModelName["DEEPSEEK_V32"] = "DEEPSEEK_V32";
16
+ AgentModelName["GLM_5"] = "GLM_5";
17
+ AgentModelName["QWEN3_6"] = "QWEN3_6";
18
+ })(AgentModelName || (AgentModelName = {}));
@@ -1,23 +1,28 @@
1
+ import type { AgentModelName } from './AgentModelName.js';
2
+ import type { AgentToolset } from './AgentToolset.js';
3
+ import type { app__modules__agent__domain__value_objects__TableAccessEntry } from './app__modules__agent__domain__value_objects__TableAccessEntry.js';
1
4
  import type { ApplicationAccessConfig } from './ApplicationAccessConfig.js';
2
- import type { TableAccessEntry } from './TableAccessEntry.js';
3
- import type { ToolSet } from './ToolSet.js';
4
- /**
5
- * Response schema for agent.
6
- */
5
+ import type { HarnessKind } from './HarnessKind.js';
7
6
  export type AgentResponse = {
8
- accessible_applications: Array<ApplicationAccessConfig>;
9
- accessible_folders: Array<string>;
10
- accessible_tables: Array<TableAccessEntry>;
7
+ accessible_applications?: Array<ApplicationAccessConfig>;
8
+ accessible_folders?: Array<string>;
9
+ accessible_tables?: Array<app__modules__agent__domain__value_objects__TableAccessEntry>;
10
+ agent_names?: Array<string>;
11
11
  created_at: string;
12
- description: (string | null);
13
- icon_url: (string | null);
12
+ description?: (string | null);
13
+ function_names?: Array<string>;
14
+ harness_kind: HarnessKind;
15
+ icon_url?: (string | null);
14
16
  id: string;
15
- input_schema: Record<string, any>;
17
+ input_schema?: (Record<string, any> | null);
16
18
  instruction: string;
19
+ metadata?: (Record<string, any> | null);
20
+ model_name: AgentModelName;
17
21
  name: string;
18
- output_schema: Record<string, any>;
22
+ output_schema?: (Record<string, any> | null);
19
23
  pod_id: string;
20
- tool_sets: Array<ToolSet>;
24
+ toolsets?: Array<AgentToolset>;
21
25
  updated_at: string;
22
26
  user_id: string;
27
+ visibility?: string;
23
28
  };
@@ -0,0 +1,6 @@
1
+ import type { AgentSurfaceResponse } from './AgentSurfaceResponse.js';
2
+ export type AgentSurfaceListResponse = {
3
+ items: Array<AgentSurfaceResponse>;
4
+ limit: number;
5
+ next_page_token?: (string | null);
6
+ };
@@ -1,4 +1,4 @@
1
- import type { AssistantSurfaceStatus } from './AssistantSurfaceStatus.js';
1
+ import type { AgentSurfaceStatus } from './AgentSurfaceStatus.js';
2
2
  import type { GmailSurfaceConfig } from './GmailSurfaceConfig.js';
3
3
  import type { OutlookSurfaceConfig } from './OutlookSurfaceConfig.js';
4
4
  import type { SlackSurfaceConfig } from './SlackSurfaceConfig.js';
@@ -8,17 +8,18 @@ import type { SurfaceWebhookMode } from './SurfaceWebhookMode.js';
8
8
  import type { TeamsSurfaceConfig } from './TeamsSurfaceConfig.js';
9
9
  import type { TelegramSurfaceConfig } from './TelegramSurfaceConfig.js';
10
10
  import type { WhatsAppSurfaceConfig } from './WhatsAppSurfaceConfig.js';
11
- export type AssistantSurfaceResponse = {
12
- assistant_id: string;
13
- assistant_name?: (string | null);
11
+ export type AgentSurfaceResponse = {
12
+ agent_id?: (string | null);
13
+ agent_name?: (string | null);
14
14
  config: (SlackSurfaceConfig | TeamsSurfaceConfig | WhatsAppSurfaceConfig | TelegramSurfaceConfig | GmailSurfaceConfig | OutlookSurfaceConfig);
15
15
  credential_mode?: SurfaceCredentialMode;
16
16
  id: string;
17
17
  is_active: boolean;
18
18
  pod_id: string;
19
19
  routing_scope?: SurfaceRoutingScope;
20
- status?: AssistantSurfaceStatus;
20
+ status?: AgentSurfaceStatus;
21
21
  surface_type: string;
22
+ uses_default_agent?: boolean;
22
23
  webhook_mode?: SurfaceWebhookMode;
23
24
  webhook_url?: (string | null);
24
25
  };
@@ -1,4 +1,4 @@
1
- export declare enum AssistantSurfaceStatus {
1
+ export declare enum AgentSurfaceStatus {
2
2
  ACTIVE = "ACTIVE",
3
3
  PENDING_ADMIN_CONSENT = "PENDING_ADMIN_CONSENT",
4
4
  INACTIVE = "INACTIVE"
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export var AgentSurfaceStatus;
6
+ (function (AgentSurfaceStatus) {
7
+ AgentSurfaceStatus["ACTIVE"] = "ACTIVE";
8
+ AgentSurfaceStatus["PENDING_ADMIN_CONSENT"] = "PENDING_ADMIN_CONSENT";
9
+ AgentSurfaceStatus["INACTIVE"] = "INACTIVE";
10
+ })(AgentSurfaceStatus || (AgentSurfaceStatus = {}));
@@ -1,14 +1,12 @@
1
1
  /**
2
- * Tool sets available for agents.
2
+ * Known tool bundles an agent may request.
3
3
  */
4
- export declare enum ToolSet {
4
+ export declare enum AgentToolset {
5
5
  FILE_SYSTEM = "FILE_SYSTEM",
6
- CODE_EXECUTOR = "CODE_EXECUTOR",
7
6
  WORKSPACE_CLI = "WORKSPACE_CLI",
8
7
  SKILLS = "SKILLS",
9
8
  WEB_SEARCH = "WEB_SEARCH",
10
9
  USER_INTERACTION = "USER_INTERACTION",
11
10
  IMAGE_GENERATION = "IMAGE_GENERATION",
12
- AUDIO_GENERATION = "AUDIO_GENERATION",
13
- WAIT_UNTIL = "WAIT_UNTIL"
11
+ AUDIO_GENERATION = "AUDIO_GENERATION"
14
12
  }
@@ -0,0 +1,17 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ /**
6
+ * Known tool bundles an agent may request.
7
+ */
8
+ export var AgentToolset;
9
+ (function (AgentToolset) {
10
+ AgentToolset["FILE_SYSTEM"] = "FILE_SYSTEM";
11
+ AgentToolset["WORKSPACE_CLI"] = "WORKSPACE_CLI";
12
+ AgentToolset["SKILLS"] = "SKILLS";
13
+ AgentToolset["WEB_SEARCH"] = "WEB_SEARCH";
14
+ AgentToolset["USER_INTERACTION"] = "USER_INTERACTION";
15
+ AgentToolset["IMAGE_GENERATION"] = "IMAGE_GENERATION";
16
+ AgentToolset["AUDIO_GENERATION"] = "AUDIO_GENERATION";
17
+ })(AgentToolset || (AgentToolset = {}));
@@ -1,12 +1,10 @@
1
1
  import type { ApplicationMode } from './ApplicationMode.js';
2
2
  /**
3
- * Configuration for application access.
4
- *
5
- * Defines how an agent or function can access a specific application.
3
+ * Configuration for application access granted to a workload.
6
4
  */
7
5
  export type ApplicationAccessConfig = {
8
6
  /**
9
- * Required for FIXED mode - specific account to use
7
+ * Required for AGENT_OWNED mode - specific account to use
10
8
  */
11
9
  account_id?: (string | null);
12
10
  /**
@@ -14,7 +12,7 @@ export type ApplicationAccessConfig = {
14
12
  */
15
13
  app_name: string;
16
14
  /**
17
- * Access mode - FIXED or DYNAMIC
15
+ * Application account ownership mode
18
16
  */
19
17
  mode: ApplicationMode;
20
18
  };
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Mode for application access configuration.
2
+ * Application account ownership mode for access configuration.
3
3
  */
4
4
  export declare enum ApplicationMode {
5
- FIXED = "FIXED",
6
- DYNAMIC = "DYNAMIC"
5
+ AGENT_OWNED = "AGENT_OWNED",
6
+ USER_OWNED = "USER_OWNED"
7
7
  }
@@ -3,10 +3,10 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  /**
6
- * Mode for application access configuration.
6
+ * Application account ownership mode for access configuration.
7
7
  */
8
8
  export var ApplicationMode;
9
9
  (function (ApplicationMode) {
10
- ApplicationMode["FIXED"] = "FIXED";
11
- ApplicationMode["DYNAMIC"] = "DYNAMIC";
10
+ ApplicationMode["AGENT_OWNED"] = "AGENT_OWNED";
11
+ ApplicationMode["USER_OWNED"] = "USER_OWNED";
12
12
  })(ApplicationMode || (ApplicationMode = {}));
@@ -1,25 +1,14 @@
1
- import type { AvailableModels } from './AvailableModels.js';
2
- import type { ConversationStatus } from './ConversationStatus.js';
3
- import type { ConversationType } from './ConversationType.js';
4
- /**
5
- * Response for conversation.
6
- */
1
+ import type { AgentModelName } from './AgentModelName.js';
7
2
  export type ConversationResponse = {
8
- assistant_id: (string | null);
9
- assistant_name?: (string | null);
10
- conversation_type?: ConversationType;
11
- created_at: any;
12
- external_channel_id?: (string | null);
13
- external_thread_id?: (string | null);
14
- external_user_id?: (string | null);
3
+ agent_id?: (string | null);
4
+ created_at: string;
15
5
  id: string;
16
- model?: (AvailableModels | null);
6
+ metadata?: (Record<string, any> | null);
7
+ model_name?: (AgentModelName | null);
17
8
  organization_id?: (string | null);
18
- pod_id: (string | null);
19
- status: ConversationStatus;
20
- surface_installation_id?: (string | null);
21
- surface_type?: (string | null);
22
- title: (string | null);
23
- updated_at: any;
9
+ parent_id?: (string | null);
10
+ pod_id: string;
11
+ title?: (string | null);
12
+ updated_at: string;
24
13
  user_id: string;
25
14
  };
@@ -1,18 +1,22 @@
1
+ import type { AgentModelName } from './AgentModelName.js';
2
+ import type { AgentToolset } from './AgentToolset.js';
3
+ import type { app__modules__agent__domain__value_objects__TableAccessEntry } from './app__modules__agent__domain__value_objects__TableAccessEntry.js';
1
4
  import type { ApplicationAccessConfig } from './ApplicationAccessConfig.js';
2
- import type { TableAccessEntry } from './TableAccessEntry.js';
3
- import type { ToolSet } from './ToolSet.js';
4
- /**
5
- * Request schema for creating an agent.
6
- */
5
+ import type { HarnessKind } from './HarnessKind.js';
7
6
  export type CreateAgentRequest = {
8
7
  accessible_applications?: Array<ApplicationAccessConfig>;
9
8
  accessible_folders?: Array<string>;
10
- accessible_tables?: Array<TableAccessEntry>;
9
+ accessible_tables?: Array<app__modules__agent__domain__value_objects__TableAccessEntry>;
10
+ agent_names?: Array<string>;
11
11
  description?: (string | null);
12
+ function_names?: Array<string>;
13
+ harness_kind?: HarnessKind;
12
14
  icon_url?: (string | null);
13
15
  input_schema?: (Record<string, any> | null);
14
16
  instruction: string;
17
+ metadata?: (Record<string, any> | null);
18
+ model_name?: AgentModelName;
15
19
  name: string;
16
20
  output_schema?: (Record<string, any> | null);
17
- tool_sets?: Array<ToolSet>;
21
+ toolsets?: Array<AgentToolset>;
18
22
  };
@@ -1,11 +1,7 @@
1
- import type { AvailableModels } from './AvailableModels.js';
2
- /**
3
- * Request to create a conversation.
4
- */
1
+ import type { AgentModelName } from './AgentModelName.js';
5
2
  export type CreateConversationRequest = {
6
- assistant_name?: (string | null);
7
- model?: (AvailableModels | null);
8
- organization_id?: (string | null);
9
- pod_id?: (string | null);
3
+ agent_name?: (string | null);
4
+ model_name?: (AgentModelName | null);
5
+ parent_id?: (string | null);
10
6
  title?: (string | null);
11
7
  };
@@ -1,11 +1,8 @@
1
- import type { FileVisibility } from './FileVisibility.js';
1
+ import type { FileNamespace } from './FileNamespace.js';
2
2
  export type CreateFolderRequest = {
3
3
  description?: (string | null);
4
4
  name?: (string | null);
5
+ namespace?: (FileNamespace | null);
5
6
  parent_id?: (string | null);
6
7
  path?: (string | null);
7
- /**
8
- * Optional visibility override for the new folder.
9
- */
10
- visibility?: (FileVisibility | null);
11
8
  };
@@ -1,13 +1,13 @@
1
+ import type { app__modules__function__api__schemas__function_schemas__TableAccessEntry } from './app__modules__function__api__schemas__function_schemas__TableAccessEntry.js';
1
2
  import type { ApplicationAccessConfig } from './ApplicationAccessConfig.js';
2
3
  import type { FunctionType } from './FunctionType.js';
3
- import type { TableAccessEntry } from './TableAccessEntry.js';
4
4
  /**
5
5
  * Request to create a function.
6
6
  */
7
7
  export type CreateFunctionRequest = {
8
8
  accessible_applications?: Array<ApplicationAccessConfig>;
9
9
  accessible_folders?: Array<string>;
10
- accessible_tables?: Array<TableAccessEntry>;
10
+ accessible_tables?: Array<app__modules__function__api__schemas__function_schemas__TableAccessEntry>;
11
11
  code?: (string | null);
12
12
  config?: (Record<string, any> | null);
13
13
  config_schema?: (Record<string, any> | null);
@@ -11,7 +11,7 @@ import type { TelegramSurfaceConfigInput } from './TelegramSurfaceConfigInput.js
11
11
  import type { WhatsAppCredentialsInput } from './WhatsAppCredentialsInput.js';
12
12
  import type { WhatsAppSurfaceConfigInput } from './WhatsAppSurfaceConfigInput.js';
13
13
  export type CreateSurfaceRequest = {
14
- assistant_name: string;
14
+ agent_name?: (string | null);
15
15
  config: (SlackSurfaceConfigInput | TeamsSurfaceConfigInput | WhatsAppSurfaceConfigInput | TelegramSurfaceConfigInput | GmailSurfaceConfigInput | OutlookSurfaceConfigInput);
16
16
  credential_mode?: SurfaceCredentialMode;
17
17
  credentials?: ((SlackCredentialsInput | TeamsCredentialsInput | WhatsAppCredentialsInput | TelegramCredentialsInput) | null);
@@ -1,9 +1,9 @@
1
- import type { FileVisibility } from './FileVisibility.js';
1
+ import type { FileNamespace } from './FileNamespace.js';
2
2
  export type DatastoreFileUploadRequest = {
3
3
  data: string;
4
4
  description?: (string | null);
5
5
  directory_path?: string;
6
6
  name?: (string | null);
7
+ namespace?: (FileNamespace | null);
7
8
  search_enabled?: boolean;
8
- visibility?: (FileVisibility | null);
9
9
  };
@@ -0,0 +1,4 @@
1
+ export declare enum FileNamespace {
2
+ PERSONAL = "PERSONAL",
3
+ POD = "POD"
4
+ }