@objectstack/spec 6.3.0 → 6.5.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 (1699) hide show
  1. package/dist/ai/index.d.mts +1 -0
  2. package/dist/ai/index.d.ts +1 -0
  3. package/dist/ai/index.js +150 -0
  4. package/dist/ai/index.js.map +1 -1
  5. package/dist/ai/index.mjs +142 -1
  6. package/dist/ai/index.mjs.map +1 -1
  7. package/dist/cloud/index.d.mts +102 -0
  8. package/dist/cloud/index.d.ts +102 -0
  9. package/dist/cloud/index.js +170 -0
  10. package/dist/cloud/index.js.map +1 -1
  11. package/dist/cloud/index.mjs +170 -0
  12. package/dist/cloud/index.mjs.map +1 -1
  13. package/dist/contracts/index.d.mts +200 -2
  14. package/dist/contracts/index.d.ts +200 -2
  15. package/dist/contracts/index.js +4 -0
  16. package/dist/contracts/index.js.map +1 -1
  17. package/dist/contracts/index.mjs +3 -0
  18. package/dist/contracts/index.mjs.map +1 -1
  19. package/dist/{manifest.zod-ZIjKKFkz.d.mts → execution-context.zod-7FfY8UW2.d.mts} +14 -1
  20. package/dist/{manifest.zod-ZIjKKFkz.d.ts → execution-context.zod-7FfY8UW2.d.ts} +14 -1
  21. package/dist/index.d.mts +204 -0
  22. package/dist/index.d.ts +204 -0
  23. package/dist/index.js +170 -0
  24. package/dist/index.js.map +1 -1
  25. package/dist/index.mjs +170 -0
  26. package/dist/index.mjs.map +1 -1
  27. package/dist/kernel/index.d.mts +2 -15
  28. package/dist/kernel/index.d.ts +2 -15
  29. package/dist/knowledge-document.zod-C8B-jI53.d.mts +183 -0
  30. package/dist/knowledge-document.zod-C8B-jI53.d.ts +183 -0
  31. package/dist/ui/index.d.mts +307 -1
  32. package/dist/ui/index.d.ts +307 -1
  33. package/dist/ui/index.js +190 -0
  34. package/dist/ui/index.js.map +1 -1
  35. package/dist/ui/index.mjs +176 -1
  36. package/dist/ui/index.mjs.map +1 -1
  37. package/json-schema/ai/AIKnowledge.json +2 -2
  38. package/json-schema/ai/AIModelConfig.json +2 -2
  39. package/json-schema/ai/AITool.json +2 -2
  40. package/json-schema/ai/AIUsageRecord.json +2 -2
  41. package/json-schema/ai/Agent.json +2 -2
  42. package/json-schema/ai/CodeContent.json +2 -2
  43. package/json-schema/ai/ConversationAnalytics.json +2 -2
  44. package/json-schema/ai/ConversationContext.json +2 -2
  45. package/json-schema/ai/ConversationMessage.json +2 -2
  46. package/json-schema/ai/ConversationSession.json +2 -2
  47. package/json-schema/ai/ConversationSummary.json +2 -2
  48. package/json-schema/ai/EmbeddingModel.json +2 -2
  49. package/json-schema/ai/FileContent.json +2 -2
  50. package/json-schema/ai/FileKnowledgeSource.json +28 -0
  51. package/json-schema/ai/FunctionCall.json +2 -2
  52. package/json-schema/ai/HttpKnowledgeSource.json +28 -0
  53. package/json-schema/ai/ImageContent.json +2 -2
  54. package/json-schema/ai/KnowledgeChunk.json +36 -0
  55. package/json-schema/ai/KnowledgeDocument.json +45 -0
  56. package/json-schema/ai/KnowledgeHit.json +45 -0
  57. package/json-schema/ai/KnowledgeRefreshPolicy.json +16 -0
  58. package/json-schema/ai/KnowledgeSource.json +234 -0
  59. package/json-schema/ai/KnowledgeSourceKind.json +98 -0
  60. package/json-schema/ai/MCPApprovalPolicy.json +2 -2
  61. package/json-schema/ai/MCPServerRef.json +2 -2
  62. package/json-schema/ai/MCPToolBinding.json +2 -2
  63. package/json-schema/ai/MCPTransport.json +2 -2
  64. package/json-schema/ai/MessageContent.json +2 -2
  65. package/json-schema/ai/MessageContentType.json +2 -2
  66. package/json-schema/ai/MessagePruningEvent.json +2 -2
  67. package/json-schema/ai/MessageRole.json +2 -2
  68. package/json-schema/ai/ModelCapability.json +2 -2
  69. package/json-schema/ai/ModelConfig.json +2 -2
  70. package/json-schema/ai/ModelLimits.json +2 -2
  71. package/json-schema/ai/ModelPricing.json +2 -2
  72. package/json-schema/ai/ModelProvider.json +2 -2
  73. package/json-schema/ai/ModelRegistryEntry.json +2 -2
  74. package/json-schema/ai/ModelSelectionCriteria.json +2 -2
  75. package/json-schema/ai/ObjectKnowledgeSource.json +44 -0
  76. package/json-schema/ai/PromptVariable.json +2 -2
  77. package/json-schema/ai/Skill.json +2 -2
  78. package/json-schema/ai/SkillTriggerCondition.json +2 -2
  79. package/json-schema/ai/StructuredOutputConfig.json +2 -2
  80. package/json-schema/ai/StructuredOutputFormat.json +2 -2
  81. package/json-schema/ai/TextContent.json +2 -2
  82. package/json-schema/ai/TokenBudgetConfig.json +2 -2
  83. package/json-schema/ai/TokenBudgetStrategy.json +2 -2
  84. package/json-schema/ai/TokenUsage.json +2 -2
  85. package/json-schema/ai/TokenUsageStats.json +2 -2
  86. package/json-schema/ai/Tool.json +2 -2
  87. package/json-schema/ai/ToolCall.json +2 -2
  88. package/json-schema/ai/ToolCategory.json +2 -2
  89. package/json-schema/ai/TransformPipelineStep.json +2 -2
  90. package/json-schema/ai/VectorStore.json +2 -2
  91. package/json-schema/ai/VectorStoreProvider.json +2 -2
  92. package/json-schema/api/AckMessage.json +2 -2
  93. package/json-schema/api/AddReactionRequest.json +2 -2
  94. package/json-schema/api/AddReactionResponse.json +2 -2
  95. package/json-schema/api/AiInsightsRequest.json +2 -2
  96. package/json-schema/api/AiInsightsResponse.json +2 -2
  97. package/json-schema/api/AiNlqRequest.json +2 -2
  98. package/json-schema/api/AiNlqResponse.json +2 -2
  99. package/json-schema/api/AiSuggestRequest.json +2 -2
  100. package/json-schema/api/AiSuggestResponse.json +2 -2
  101. package/json-schema/api/AnalyticsEndpoint.json +2 -2
  102. package/json-schema/api/AnalyticsMetadataResponse.json +2 -2
  103. package/json-schema/api/AnalyticsQueryRequest.json +2 -2
  104. package/json-schema/api/AnalyticsResultResponse.json +2 -2
  105. package/json-schema/api/AnalyticsSqlResponse.json +2 -2
  106. package/json-schema/api/ApiChangelogEntry.json +2 -2
  107. package/json-schema/api/ApiDiscoveryQuery.json +2 -2
  108. package/json-schema/api/ApiDiscoveryResponse.json +2 -2
  109. package/json-schema/api/ApiDocumentationConfig.json +2 -2
  110. package/json-schema/api/ApiEndpoint.json +2 -2
  111. package/json-schema/api/ApiEndpointRegistration.json +2 -2
  112. package/json-schema/api/ApiError.json +2 -2
  113. package/json-schema/api/ApiMapping.json +2 -2
  114. package/json-schema/api/ApiMetadata.json +2 -2
  115. package/json-schema/api/ApiParameter.json +2 -2
  116. package/json-schema/api/ApiProtocolType.json +2 -2
  117. package/json-schema/api/ApiRegistry.json +2 -2
  118. package/json-schema/api/ApiRegistryEntry.json +2 -2
  119. package/json-schema/api/ApiResponse.json +2 -2
  120. package/json-schema/api/ApiRoutes.json +2 -2
  121. package/json-schema/api/ApiTestCollection.json +2 -2
  122. package/json-schema/api/ApiTestRequest.json +2 -2
  123. package/json-schema/api/ApiTestingUiConfig.json +2 -2
  124. package/json-schema/api/ApiTestingUiType.json +2 -2
  125. package/json-schema/api/AuthEndpoint.json +2 -2
  126. package/json-schema/api/AuthFeaturesConfig.json +2 -2
  127. package/json-schema/api/AuthProvider.json +2 -2
  128. package/json-schema/api/AuthProviderInfo.json +2 -2
  129. package/json-schema/api/AutomationApiErrorCode.json +2 -2
  130. package/json-schema/api/AutomationFlowPathParams.json +2 -2
  131. package/json-schema/api/AutomationRunPathParams.json +2 -2
  132. package/json-schema/api/AutomationTriggerRequest.json +2 -2
  133. package/json-schema/api/AutomationTriggerResponse.json +2 -2
  134. package/json-schema/api/BasePresence.json +2 -2
  135. package/json-schema/api/BaseResponse.json +2 -2
  136. package/json-schema/api/BatchConfig.json +2 -2
  137. package/json-schema/api/BatchDataRequest.json +2 -2
  138. package/json-schema/api/BatchDataResponse.json +2 -2
  139. package/json-schema/api/BatchEndpointsConfig.json +2 -2
  140. package/json-schema/api/BatchLoadingStrategy.json +2 -2
  141. package/json-schema/api/BatchOperationResult.json +2 -2
  142. package/json-schema/api/BatchOperationType.json +2 -2
  143. package/json-schema/api/BatchOptions.json +2 -2
  144. package/json-schema/api/BatchRecord.json +2 -2
  145. package/json-schema/api/BatchUpdateRequest.json +2 -2
  146. package/json-schema/api/BatchUpdateResponse.json +2 -2
  147. package/json-schema/api/BulkRequest.json +2 -2
  148. package/json-schema/api/BulkResponse.json +2 -2
  149. package/json-schema/api/CacheControl.json +2 -2
  150. package/json-schema/api/CacheDirective.json +2 -2
  151. package/json-schema/api/CacheInvalidationRequest.json +2 -2
  152. package/json-schema/api/CacheInvalidationResponse.json +2 -2
  153. package/json-schema/api/CacheInvalidationTarget.json +2 -2
  154. package/json-schema/api/Callback.json +2 -2
  155. package/json-schema/api/ChangelogEntry.json +2 -2
  156. package/json-schema/api/CheckPermissionRequest.json +2 -2
  157. package/json-schema/api/CheckPermissionResponse.json +2 -2
  158. package/json-schema/api/CodeGenerationTemplate.json +2 -2
  159. package/json-schema/api/CompleteChunkedUploadRequest.json +2 -2
  160. package/json-schema/api/CompleteChunkedUploadResponse.json +2 -2
  161. package/json-schema/api/CompleteUploadRequest.json +2 -2
  162. package/json-schema/api/ConceptListResponse.json +2 -2
  163. package/json-schema/api/ConflictResolutionStrategy.json +2 -2
  164. package/json-schema/api/CreateDataRequest.json +2 -2
  165. package/json-schema/api/CreateDataResponse.json +2 -2
  166. package/json-schema/api/CreateExportJobRequest.json +2 -2
  167. package/json-schema/api/CreateExportJobResponse.json +2 -2
  168. package/json-schema/api/CreateFeedItemRequest.json +2 -2
  169. package/json-schema/api/CreateFeedItemResponse.json +2 -2
  170. package/json-schema/api/CreateManyDataRequest.json +2 -2
  171. package/json-schema/api/CreateManyDataResponse.json +2 -2
  172. package/json-schema/api/CreateRequest.json +2 -2
  173. package/json-schema/api/CrudEndpointPattern.json +2 -2
  174. package/json-schema/api/CrudEndpointsConfig.json +2 -2
  175. package/json-schema/api/CrudOperation.json +2 -2
  176. package/json-schema/api/CursorMessage.json +2 -2
  177. package/json-schema/api/CursorPosition.json +2 -2
  178. package/json-schema/api/DataEvent.json +2 -2
  179. package/json-schema/api/DataEventType.json +2 -2
  180. package/json-schema/api/DataLoaderConfig.json +2 -2
  181. package/json-schema/api/DeduplicationStrategy.json +2 -2
  182. package/json-schema/api/DeleteDataRequest.json +2 -2
  183. package/json-schema/api/DeleteDataResponse.json +2 -2
  184. package/json-schema/api/DeleteFeedItemRequest.json +2 -2
  185. package/json-schema/api/DeleteFeedItemResponse.json +2 -2
  186. package/json-schema/api/DeleteFlowRequest.json +2 -2
  187. package/json-schema/api/DeleteFlowResponse.json +2 -2
  188. package/json-schema/api/DeleteManyDataRequest.json +2 -2
  189. package/json-schema/api/DeleteManyDataResponse.json +2 -2
  190. package/json-schema/api/DeleteManyRequest.json +2 -2
  191. package/json-schema/api/DeleteMetaItemRequest.json +2 -2
  192. package/json-schema/api/DeleteMetaItemResponse.json +2 -2
  193. package/json-schema/api/DeleteResponse.json +2 -2
  194. package/json-schema/api/DeleteViewRequest.json +2 -2
  195. package/json-schema/api/DeleteViewResponse.json +2 -2
  196. package/json-schema/api/DeviceRequestResponse.json +2 -2
  197. package/json-schema/api/DeviceTokenResponse.json +2 -2
  198. package/json-schema/api/DisablePackageRequest.json +2 -2
  199. package/json-schema/api/DisablePackageResponse.json +2 -2
  200. package/json-schema/api/Discovery.json +2 -2
  201. package/json-schema/api/DispatcherConfig.json +2 -2
  202. package/json-schema/api/DispatcherErrorCode.json +2 -2
  203. package/json-schema/api/DispatcherErrorResponse.json +2 -2
  204. package/json-schema/api/DispatcherRoute.json +2 -2
  205. package/json-schema/api/DocumentState.json +2 -2
  206. package/json-schema/api/ETag.json +2 -2
  207. package/json-schema/api/EditMessage.json +2 -2
  208. package/json-schema/api/EditOperation.json +2 -2
  209. package/json-schema/api/EditOperationType.json +2 -2
  210. package/json-schema/api/EmailPasswordConfigPublic.json +2 -2
  211. package/json-schema/api/EnablePackageRequest.json +2 -2
  212. package/json-schema/api/EnablePackageResponse.json +2 -2
  213. package/json-schema/api/EndpointRegistry.json +2 -2
  214. package/json-schema/api/EnhancedApiError.json +2 -2
  215. package/json-schema/api/ErrorCategory.json +2 -2
  216. package/json-schema/api/ErrorHandlingConfig.json +2 -2
  217. package/json-schema/api/ErrorMessage.json +2 -2
  218. package/json-schema/api/ErrorResponse.json +2 -2
  219. package/json-schema/api/EventFilter.json +2 -2
  220. package/json-schema/api/EventFilterCondition.json +2 -2
  221. package/json-schema/api/EventMessage.json +2 -2
  222. package/json-schema/api/EventPattern.json +2 -2
  223. package/json-schema/api/EventSubscription.json +2 -2
  224. package/json-schema/api/ExportFormat.json +2 -2
  225. package/json-schema/api/ExportImportTemplate.json +2 -2
  226. package/json-schema/api/ExportJobProgress.json +2 -2
  227. package/json-schema/api/ExportJobStatus.json +2 -2
  228. package/json-schema/api/ExportJobSummary.json +2 -2
  229. package/json-schema/api/ExportRequest.json +2 -2
  230. package/json-schema/api/FederationEntity.json +2 -2
  231. package/json-schema/api/FederationEntityKey.json +2 -2
  232. package/json-schema/api/FederationExternalField.json +2 -2
  233. package/json-schema/api/FederationGateway.json +2 -2
  234. package/json-schema/api/FederationProvides.json +2 -2
  235. package/json-schema/api/FederationRequires.json +2 -2
  236. package/json-schema/api/FeedApiErrorCode.json +2 -2
  237. package/json-schema/api/FeedItemPathParams.json +2 -2
  238. package/json-schema/api/FeedListFilterType.json +2 -2
  239. package/json-schema/api/FeedPathParams.json +2 -2
  240. package/json-schema/api/FeedUnsubscribeRequest.json +2 -2
  241. package/json-schema/api/FieldError.json +2 -2
  242. package/json-schema/api/FieldMappingEntry.json +2 -2
  243. package/json-schema/api/FileTypeValidation.json +2 -2
  244. package/json-schema/api/FileUploadResponse.json +2 -2
  245. package/json-schema/api/FilterOperator.json +2 -2
  246. package/json-schema/api/FindDataRequest.json +2 -2
  247. package/json-schema/api/FindDataResponse.json +2 -2
  248. package/json-schema/api/FlowSummary.json +2 -2
  249. package/json-schema/api/GeneratedApiDocumentation.json +2 -2
  250. package/json-schema/api/GeneratedEndpoint.json +2 -2
  251. package/json-schema/api/GetAnalyticsMetaRequest.json +2 -2
  252. package/json-schema/api/GetAuthConfigResponse.json +2 -2
  253. package/json-schema/api/GetChangelogRequest.json +2 -2
  254. package/json-schema/api/GetChangelogResponse.json +2 -2
  255. package/json-schema/api/GetDataRequest.json +2 -2
  256. package/json-schema/api/GetDataResponse.json +2 -2
  257. package/json-schema/api/GetDiscoveryRequest.json +2 -2
  258. package/json-schema/api/GetDiscoveryResponse.json +2 -2
  259. package/json-schema/api/GetEffectivePermissionsRequest.json +2 -2
  260. package/json-schema/api/GetEffectivePermissionsResponse.json +2 -2
  261. package/json-schema/api/GetExportJobDownloadRequest.json +2 -2
  262. package/json-schema/api/GetExportJobDownloadResponse.json +2 -2
  263. package/json-schema/api/GetFeedRequest.json +2 -2
  264. package/json-schema/api/GetFeedResponse.json +2 -2
  265. package/json-schema/api/GetFieldLabelsRequest.json +2 -2
  266. package/json-schema/api/GetFieldLabelsResponse.json +2 -2
  267. package/json-schema/api/GetFlowRequest.json +2 -2
  268. package/json-schema/api/GetInstalledPackageRequest.json +2 -2
  269. package/json-schema/api/GetInstalledPackageResponse.json +2 -2
  270. package/json-schema/api/GetLocalesRequest.json +2 -2
  271. package/json-schema/api/GetLocalesResponse.json +2 -2
  272. package/json-schema/api/GetMetaItemCachedRequest.json +2 -2
  273. package/json-schema/api/GetMetaItemCachedResponse.json +2 -2
  274. package/json-schema/api/GetMetaItemRequest.json +2 -2
  275. package/json-schema/api/GetMetaItemResponse.json +2 -2
  276. package/json-schema/api/GetMetaItemsRequest.json +2 -2
  277. package/json-schema/api/GetMetaItemsResponse.json +2 -2
  278. package/json-schema/api/GetMetaTypesRequest.json +2 -2
  279. package/json-schema/api/GetMetaTypesResponse.json +2 -2
  280. package/json-schema/api/GetNotificationPreferencesRequest.json +2 -2
  281. package/json-schema/api/GetNotificationPreferencesResponse.json +2 -2
  282. package/json-schema/api/GetObjectPermissionsRequest.json +2 -2
  283. package/json-schema/api/GetObjectPermissionsResponse.json +2 -2
  284. package/json-schema/api/GetPackageRequest.json +2 -2
  285. package/json-schema/api/GetPackageResponse.json +2 -2
  286. package/json-schema/api/GetPresenceRequest.json +2 -2
  287. package/json-schema/api/GetPresenceResponse.json +2 -2
  288. package/json-schema/api/GetPresignedUrlRequest.json +2 -2
  289. package/json-schema/api/GetRunRequest.json +2 -2
  290. package/json-schema/api/GetRunResponse.json +2 -2
  291. package/json-schema/api/GetTranslationsRequest.json +2 -2
  292. package/json-schema/api/GetTranslationsResponse.json +2 -2
  293. package/json-schema/api/GetUiViewRequest.json +2 -2
  294. package/json-schema/api/GetViewRequest.json +2 -2
  295. package/json-schema/api/GetWorkflowConfigRequest.json +2 -2
  296. package/json-schema/api/GetWorkflowStateRequest.json +2 -2
  297. package/json-schema/api/GetWorkflowStateResponse.json +2 -2
  298. package/json-schema/api/GraphQLDataLoaderConfig.json +2 -2
  299. package/json-schema/api/GraphQLDirectiveConfig.json +2 -2
  300. package/json-schema/api/GraphQLDirectiveLocation.json +2 -2
  301. package/json-schema/api/GraphQLMutationConfig.json +2 -2
  302. package/json-schema/api/GraphQLPersistedQuery.json +2 -2
  303. package/json-schema/api/GraphQLQueryAdapter.json +2 -2
  304. package/json-schema/api/GraphQLQueryComplexity.json +2 -2
  305. package/json-schema/api/GraphQLQueryDepthLimit.json +2 -2
  306. package/json-schema/api/GraphQLRateLimit.json +2 -2
  307. package/json-schema/api/GraphQLScalarType.json +2 -2
  308. package/json-schema/api/GraphQLSubscriptionConfig.json +2 -2
  309. package/json-schema/api/GraphQLTypeConfig.json +2 -2
  310. package/json-schema/api/HandlerStatus.json +2 -2
  311. package/json-schema/api/HttpFindQueryParams.json +2 -2
  312. package/json-schema/api/HttpMethod.json +2 -2
  313. package/json-schema/api/HttpStatusCode.json +2 -2
  314. package/json-schema/api/IdRequest.json +2 -2
  315. package/json-schema/api/ImportValidationConfig.json +2 -2
  316. package/json-schema/api/ImportValidationMode.json +2 -2
  317. package/json-schema/api/ImportValidationResult.json +2 -2
  318. package/json-schema/api/InitiateChunkedUploadRequest.json +2 -2
  319. package/json-schema/api/InitiateChunkedUploadResponse.json +2 -2
  320. package/json-schema/api/InstallPackageRequest.json +2 -2
  321. package/json-schema/api/InstallPackageResponse.json +2 -2
  322. package/json-schema/api/ListExportJobsRequest.json +2 -2
  323. package/json-schema/api/ListExportJobsResponse.json +2 -2
  324. package/json-schema/api/ListFlowsRequest.json +2 -2
  325. package/json-schema/api/ListFlowsResponse.json +2 -2
  326. package/json-schema/api/ListInstalledPackagesRequest.json +2 -2
  327. package/json-schema/api/ListInstalledPackagesResponse.json +2 -2
  328. package/json-schema/api/ListNotificationsRequest.json +2 -2
  329. package/json-schema/api/ListNotificationsResponse.json +2 -2
  330. package/json-schema/api/ListPackagesRequest.json +2 -2
  331. package/json-schema/api/ListPackagesResponse.json +2 -2
  332. package/json-schema/api/ListRecordResponse.json +2 -2
  333. package/json-schema/api/ListRunsRequest.json +2 -2
  334. package/json-schema/api/ListRunsResponse.json +2 -2
  335. package/json-schema/api/ListViewsRequest.json +2 -2
  336. package/json-schema/api/LoginRequest.json +2 -2
  337. package/json-schema/api/LoginType.json +2 -2
  338. package/json-schema/api/MarkAllNotificationsReadRequest.json +2 -2
  339. package/json-schema/api/MarkAllNotificationsReadResponse.json +2 -2
  340. package/json-schema/api/MarkNotificationsReadRequest.json +2 -2
  341. package/json-schema/api/MarkNotificationsReadResponse.json +2 -2
  342. package/json-schema/api/MetadataBulkRegisterRequest.json +2 -2
  343. package/json-schema/api/MetadataBulkResponse.json +2 -2
  344. package/json-schema/api/MetadataBulkUnregisterRequest.json +2 -2
  345. package/json-schema/api/MetadataCacheRequest.json +2 -2
  346. package/json-schema/api/MetadataCacheResponse.json +2 -2
  347. package/json-schema/api/MetadataDeleteResponse.json +2 -2
  348. package/json-schema/api/MetadataDependenciesResponse.json +2 -2
  349. package/json-schema/api/MetadataDependentsResponse.json +2 -2
  350. package/json-schema/api/MetadataEffectiveResponse.json +2 -2
  351. package/json-schema/api/MetadataEndpointsConfig.json +2 -2
  352. package/json-schema/api/MetadataEvent.json +2 -2
  353. package/json-schema/api/MetadataEventType.json +2 -2
  354. package/json-schema/api/MetadataExistsResponse.json +2 -2
  355. package/json-schema/api/MetadataExportRequest.json +2 -2
  356. package/json-schema/api/MetadataExportResponse.json +2 -2
  357. package/json-schema/api/MetadataImportRequest.json +2 -2
  358. package/json-schema/api/MetadataImportResponse.json +2 -2
  359. package/json-schema/api/MetadataItemResponse.json +2 -2
  360. package/json-schema/api/MetadataListResponse.json +2 -2
  361. package/json-schema/api/MetadataNamesResponse.json +2 -2
  362. package/json-schema/api/MetadataOverlayResponse.json +2 -2
  363. package/json-schema/api/MetadataOverlaySaveRequest.json +2 -2
  364. package/json-schema/api/MetadataQueryRequest.json +2 -2
  365. package/json-schema/api/MetadataQueryResponse.json +2 -2
  366. package/json-schema/api/MetadataRegisterRequest.json +2 -2
  367. package/json-schema/api/MetadataTypeInfoResponse.json +2 -2
  368. package/json-schema/api/MetadataTypesResponse.json +2 -2
  369. package/json-schema/api/MetadataValidateRequest.json +2 -2
  370. package/json-schema/api/MetadataValidateResponse.json +2 -2
  371. package/json-schema/api/ModificationResult.json +2 -2
  372. package/json-schema/api/Notification.json +2 -2
  373. package/json-schema/api/NotificationPreferences.json +2 -2
  374. package/json-schema/api/ODataConfig.json +2 -2
  375. package/json-schema/api/ODataError.json +2 -2
  376. package/json-schema/api/ODataFilterFunction.json +2 -2
  377. package/json-schema/api/ODataFilterOperator.json +2 -2
  378. package/json-schema/api/ODataMetadata.json +2 -2
  379. package/json-schema/api/ODataQuery.json +2 -2
  380. package/json-schema/api/ODataQueryAdapter.json +2 -2
  381. package/json-schema/api/ODataResponse.json +2 -2
  382. package/json-schema/api/ObjectQLReference.json +2 -2
  383. package/json-schema/api/OpenApi31Extensions.json +2 -2
  384. package/json-schema/api/OpenApiGenerationConfig.json +2 -2
  385. package/json-schema/api/OpenApiSecurityScheme.json +2 -2
  386. package/json-schema/api/OpenApiServer.json +2 -2
  387. package/json-schema/api/OpenApiSpec.json +2 -2
  388. package/json-schema/api/OperatorMapping.json +2 -2
  389. package/json-schema/api/PackageApiErrorCode.json +2 -2
  390. package/json-schema/api/PackageInstallRequest.json +2 -2
  391. package/json-schema/api/PackageInstallResponse.json +2 -2
  392. package/json-schema/api/PackagePathParams.json +2 -2
  393. package/json-schema/api/PackageRollbackRequest.json +2 -2
  394. package/json-schema/api/PackageRollbackResponse.json +2 -2
  395. package/json-schema/api/PackageUpgradeRequest.json +2 -2
  396. package/json-schema/api/PackageUpgradeResponse.json +2 -2
  397. package/json-schema/api/PinFeedItemRequest.json +2 -2
  398. package/json-schema/api/PinFeedItemResponse.json +2 -2
  399. package/json-schema/api/PingMessage.json +2 -2
  400. package/json-schema/api/PongMessage.json +2 -2
  401. package/json-schema/api/PresenceMessage.json +2 -2
  402. package/json-schema/api/PresenceState.json +2 -2
  403. package/json-schema/api/PresenceStatus.json +2 -2
  404. package/json-schema/api/PresenceUpdate.json +2 -2
  405. package/json-schema/api/PresignedUrlResponse.json +2 -2
  406. package/json-schema/api/QueryAdapterConfig.json +2 -2
  407. package/json-schema/api/QueryAdapterTarget.json +2 -2
  408. package/json-schema/api/QueryOptimizationConfig.json +2 -2
  409. package/json-schema/api/RealtimeConfig.json +2 -2
  410. package/json-schema/api/RealtimeConnectRequest.json +2 -2
  411. package/json-schema/api/RealtimeConnectResponse.json +2 -2
  412. package/json-schema/api/RealtimeDisconnectRequest.json +2 -2
  413. package/json-schema/api/RealtimeDisconnectResponse.json +2 -2
  414. package/json-schema/api/RealtimeEvent.json +2 -2
  415. package/json-schema/api/RealtimeEventType.json +2 -2
  416. package/json-schema/api/RealtimePresence.json +2 -2
  417. package/json-schema/api/RealtimeRecordAction.json +2 -2
  418. package/json-schema/api/RealtimeSubscribeRequest.json +2 -2
  419. package/json-schema/api/RealtimeSubscribeResponse.json +2 -2
  420. package/json-schema/api/RealtimeUnsubscribeRequest.json +2 -2
  421. package/json-schema/api/RealtimeUnsubscribeResponse.json +2 -2
  422. package/json-schema/api/RecordData.json +2 -2
  423. package/json-schema/api/RefreshTokenRequest.json +2 -2
  424. package/json-schema/api/RegisterDeviceRequest.json +2 -2
  425. package/json-schema/api/RegisterDeviceResponse.json +2 -2
  426. package/json-schema/api/RegisterRequest.json +2 -2
  427. package/json-schema/api/RemoveReactionRequest.json +2 -2
  428. package/json-schema/api/RemoveReactionResponse.json +2 -2
  429. package/json-schema/api/RequestValidationConfig.json +2 -2
  430. package/json-schema/api/ResolveDependenciesRequest.json +2 -2
  431. package/json-schema/api/ResolveDependenciesResponse.json +2 -2
  432. package/json-schema/api/ResponseEnvelopeConfig.json +2 -2
  433. package/json-schema/api/RestApiConfig.json +2 -2
  434. package/json-schema/api/RestApiEndpoint.json +2 -2
  435. package/json-schema/api/RestApiPluginConfig.json +2 -2
  436. package/json-schema/api/RestApiRouteCategory.json +2 -2
  437. package/json-schema/api/RestApiRouteRegistration.json +2 -2
  438. package/json-schema/api/RestQueryAdapter.json +2 -2
  439. package/json-schema/api/RestServerConfig.json +2 -2
  440. package/json-schema/api/RetryStrategy.json +2 -2
  441. package/json-schema/api/RouteCategory.json +2 -2
  442. package/json-schema/api/RouteCoverageEntry.json +2 -2
  443. package/json-schema/api/RouteCoverageReport.json +2 -2
  444. package/json-schema/api/RouteDefinition.json +2 -2
  445. package/json-schema/api/RouteGenerationConfig.json +2 -2
  446. package/json-schema/api/RouteHealthEntry.json +2 -2
  447. package/json-schema/api/RouteHealthReport.json +2 -2
  448. package/json-schema/api/RouterConfig.json +2 -2
  449. package/json-schema/api/SaveMetaItemRequest.json +2 -2
  450. package/json-schema/api/SaveMetaItemResponse.json +2 -2
  451. package/json-schema/api/ScheduleExportResponse.json +2 -2
  452. package/json-schema/api/SchemaDefinition.json +2 -2
  453. package/json-schema/api/SearchFeedRequest.json +2 -2
  454. package/json-schema/api/SearchFeedResponse.json +2 -2
  455. package/json-schema/api/ServiceInfo.json +2 -2
  456. package/json-schema/api/ServiceStatus.json +2 -2
  457. package/json-schema/api/Session.json +2 -2
  458. package/json-schema/api/SessionResponse.json +2 -2
  459. package/json-schema/api/SessionUser.json +2 -2
  460. package/json-schema/api/SetPresenceRequest.json +2 -2
  461. package/json-schema/api/SetPresenceResponse.json +2 -2
  462. package/json-schema/api/SimpleCursorPosition.json +2 -2
  463. package/json-schema/api/SimplePresenceState.json +2 -2
  464. package/json-schema/api/SingleRecordResponse.json +2 -2
  465. package/json-schema/api/StandardErrorCode.json +2 -2
  466. package/json-schema/api/StarFeedItemRequest.json +2 -2
  467. package/json-schema/api/StarFeedItemResponse.json +2 -2
  468. package/json-schema/api/SubgraphConfig.json +2 -2
  469. package/json-schema/api/SubscribeMessage.json +2 -2
  470. package/json-schema/api/SubscribeRequest.json +2 -2
  471. package/json-schema/api/SubscribeResponse.json +2 -2
  472. package/json-schema/api/Subscription.json +2 -2
  473. package/json-schema/api/SubscriptionEvent.json +2 -2
  474. package/json-schema/api/ToggleFlowRequest.json +2 -2
  475. package/json-schema/api/ToggleFlowResponse.json +2 -2
  476. package/json-schema/api/TransportProtocol.json +2 -2
  477. package/json-schema/api/TriggerFlowRequest.json +2 -2
  478. package/json-schema/api/TriggerFlowResponse.json +2 -2
  479. package/json-schema/api/UninstallPackageApiRequest.json +2 -2
  480. package/json-schema/api/UninstallPackageApiResponse.json +2 -2
  481. package/json-schema/api/UninstallPackageRequest.json +2 -2
  482. package/json-schema/api/UninstallPackageResponse.json +2 -2
  483. package/json-schema/api/UnpinFeedItemRequest.json +2 -2
  484. package/json-schema/api/UnpinFeedItemResponse.json +2 -2
  485. package/json-schema/api/UnregisterDeviceRequest.json +2 -2
  486. package/json-schema/api/UnregisterDeviceResponse.json +2 -2
  487. package/json-schema/api/UnstarFeedItemRequest.json +2 -2
  488. package/json-schema/api/UnstarFeedItemResponse.json +2 -2
  489. package/json-schema/api/UnsubscribeMessage.json +2 -2
  490. package/json-schema/api/UnsubscribeRequest.json +2 -2
  491. package/json-schema/api/UnsubscribeResponse.json +2 -2
  492. package/json-schema/api/UpdateDataRequest.json +2 -2
  493. package/json-schema/api/UpdateDataResponse.json +2 -2
  494. package/json-schema/api/UpdateFeedItemRequest.json +2 -2
  495. package/json-schema/api/UpdateFeedItemResponse.json +2 -2
  496. package/json-schema/api/UpdateManyDataRequest.json +2 -2
  497. package/json-schema/api/UpdateManyDataResponse.json +2 -2
  498. package/json-schema/api/UpdateManyRequest.json +2 -2
  499. package/json-schema/api/UpdateNotificationPreferencesRequest.json +2 -2
  500. package/json-schema/api/UpdateNotificationPreferencesResponse.json +2 -2
  501. package/json-schema/api/UpdateRequest.json +2 -2
  502. package/json-schema/api/UploadArtifactRequest.json +2 -2
  503. package/json-schema/api/UploadArtifactResponse.json +2 -2
  504. package/json-schema/api/UploadChunkRequest.json +2 -2
  505. package/json-schema/api/UploadChunkResponse.json +2 -2
  506. package/json-schema/api/UploadProgress.json +2 -2
  507. package/json-schema/api/UserProfileResponse.json +2 -2
  508. package/json-schema/api/ValidationMode.json +2 -2
  509. package/json-schema/api/VersionDefinition.json +2 -2
  510. package/json-schema/api/VersionNegotiationResponse.json +2 -2
  511. package/json-schema/api/VersionStatus.json +2 -2
  512. package/json-schema/api/VersioningConfig.json +2 -2
  513. package/json-schema/api/VersioningStrategy.json +2 -2
  514. package/json-schema/api/WebSocketConfig.json +2 -2
  515. package/json-schema/api/WebSocketEvent.json +2 -2
  516. package/json-schema/api/WebSocketMessage.json +2 -2
  517. package/json-schema/api/WebSocketMessageType.json +2 -2
  518. package/json-schema/api/WebSocketPresenceStatus.json +2 -2
  519. package/json-schema/api/WebSocketServerConfig.json +2 -2
  520. package/json-schema/api/WebhookConfig.json +2 -2
  521. package/json-schema/api/WebhookEvent.json +2 -2
  522. package/json-schema/api/WellKnownCapabilities.json +2 -2
  523. package/json-schema/api/WorkflowApproveRequest.json +2 -2
  524. package/json-schema/api/WorkflowApproveResponse.json +2 -2
  525. package/json-schema/api/WorkflowRejectRequest.json +2 -2
  526. package/json-schema/api/WorkflowRejectResponse.json +2 -2
  527. package/json-schema/api/WorkflowState.json +2 -2
  528. package/json-schema/api/WorkflowTransitionRequest.json +2 -2
  529. package/json-schema/api/WorkflowTransitionResponse.json +2 -2
  530. package/json-schema/automation/ActionRef.json +2 -2
  531. package/json-schema/automation/ApprovalAction.json +2 -2
  532. package/json-schema/automation/ApprovalActionType.json +2 -2
  533. package/json-schema/automation/ApproverType.json +2 -2
  534. package/json-schema/automation/AuthField.json +2 -2
  535. package/json-schema/automation/Authentication.json +2 -2
  536. package/json-schema/automation/AuthenticationType.json +2 -2
  537. package/json-schema/automation/BpmnDiagnostic.json +2 -2
  538. package/json-schema/automation/BpmnElementMapping.json +2 -2
  539. package/json-schema/automation/BpmnExportOptions.json +2 -2
  540. package/json-schema/automation/BpmnImportOptions.json +2 -2
  541. package/json-schema/automation/BpmnInteropResult.json +2 -2
  542. package/json-schema/automation/BpmnUnmappedStrategy.json +2 -2
  543. package/json-schema/automation/BpmnVersion.json +2 -2
  544. package/json-schema/automation/Checkpoint.json +2 -2
  545. package/json-schema/automation/ConcurrencyPolicy.json +2 -2
  546. package/json-schema/automation/ConflictResolution.json +2 -2
  547. package/json-schema/automation/Connector.json +2 -2
  548. package/json-schema/automation/ConnectorActionRef.json +2 -2
  549. package/json-schema/automation/ConnectorCategory.json +2 -2
  550. package/json-schema/automation/ConnectorInstance.json +2 -2
  551. package/json-schema/automation/ConnectorOperation.json +2 -2
  552. package/json-schema/automation/ConnectorTrigger.json +2 -2
  553. package/json-schema/automation/CustomScriptAction.json +2 -2
  554. package/json-schema/automation/DataSourceConfig.json +2 -2
  555. package/json-schema/automation/ETLDestination.json +2 -2
  556. package/json-schema/automation/ETLEndpointType.json +2 -2
  557. package/json-schema/automation/ETLPipelineRun.json +2 -2
  558. package/json-schema/automation/ETLRunStatus.json +2 -2
  559. package/json-schema/automation/ETLSource.json +2 -2
  560. package/json-schema/automation/ETLSyncMode.json +2 -2
  561. package/json-schema/automation/ETLTransformation.json +2 -2
  562. package/json-schema/automation/ETLTransformationType.json +2 -2
  563. package/json-schema/automation/EmailAlertAction.json +2 -2
  564. package/json-schema/automation/Event.json +2 -2
  565. package/json-schema/automation/ExecutionError.json +2 -2
  566. package/json-schema/automation/ExecutionErrorSeverity.json +2 -2
  567. package/json-schema/automation/ExecutionLog.json +2 -2
  568. package/json-schema/automation/ExecutionStatus.json +2 -2
  569. package/json-schema/automation/ExecutionStepLog.json +2 -2
  570. package/json-schema/automation/FieldUpdateAction.json +2 -2
  571. package/json-schema/automation/FlowNode.json +2 -2
  572. package/json-schema/automation/FlowNodeAction.json +2 -2
  573. package/json-schema/automation/FlowVariable.json +2 -2
  574. package/json-schema/automation/GuardRef.json +2 -2
  575. package/json-schema/automation/HttpCallAction.json +2 -2
  576. package/json-schema/automation/NodeExecutorDescriptor.json +2 -2
  577. package/json-schema/automation/OAuth2Config.json +2 -2
  578. package/json-schema/automation/OperationParameter.json +2 -2
  579. package/json-schema/automation/OperationType.json +2 -2
  580. package/json-schema/automation/PushNotificationAction.json +2 -2
  581. package/json-schema/automation/StateMachine.json +2 -2
  582. package/json-schema/automation/StateNode.json +2 -2
  583. package/json-schema/automation/SyncDirection.json +2 -2
  584. package/json-schema/automation/SyncExecutionResult.json +2 -2
  585. package/json-schema/automation/SyncExecutionStatus.json +2 -2
  586. package/json-schema/automation/SyncMode.json +2 -2
  587. package/json-schema/automation/Transition.json +2 -2
  588. package/json-schema/automation/WaitEventType.json +2 -2
  589. package/json-schema/automation/WaitExecutorConfig.json +2 -2
  590. package/json-schema/automation/WaitResumePayload.json +2 -2
  591. package/json-schema/automation/WaitTimeoutBehavior.json +2 -2
  592. package/json-schema/automation/Webhook.json +2 -2
  593. package/json-schema/automation/WebhookReceiver.json +2 -2
  594. package/json-schema/automation/WebhookTriggerType.json +2 -2
  595. package/json-schema/automation/WorkflowTriggerType.json +2 -2
  596. package/json-schema/cloud/AnalyticsTimeRange.json +2 -2
  597. package/json-schema/cloud/AppDiscoveryRequest.json +2 -2
  598. package/json-schema/cloud/AppDiscoveryResponse.json +2 -2
  599. package/json-schema/cloud/AppSubscription.json +2 -2
  600. package/json-schema/cloud/ArtifactDownloadResponse.json +2 -2
  601. package/json-schema/cloud/ArtifactReference.json +2 -2
  602. package/json-schema/cloud/CreateListingRequest.json +2 -2
  603. package/json-schema/cloud/CreatePackageRequest.json +2 -2
  604. package/json-schema/cloud/CreatePackageVersionRequest.json +2 -2
  605. package/json-schema/cloud/CuratedCollection.json +2 -2
  606. package/json-schema/cloud/Environment.json +2 -2
  607. package/json-schema/cloud/EnvironmentCredential.json +2 -2
  608. package/json-schema/cloud/EnvironmentCredentialStatus.json +2 -2
  609. package/json-schema/cloud/EnvironmentDriver.json +2 -2
  610. package/json-schema/cloud/EnvironmentMember.json +2 -2
  611. package/json-schema/cloud/EnvironmentPackageInstallation.json +2 -2
  612. package/json-schema/cloud/EnvironmentPackageStatus.json +2 -2
  613. package/json-schema/cloud/EnvironmentRole.json +2 -2
  614. package/json-schema/cloud/EnvironmentStatus.json +2 -2
  615. package/json-schema/cloud/EnvironmentType.json +2 -2
  616. package/json-schema/cloud/EnvironmentVisibility.json +2 -2
  617. package/json-schema/cloud/FeaturedListing.json +2 -2
  618. package/json-schema/cloud/InstallPackageToEnvironmentRequest.json +2 -2
  619. package/json-schema/cloud/InstalledAppSummary.json +2 -2
  620. package/json-schema/cloud/ListEnvironmentPackagesResponse.json +2 -2
  621. package/json-schema/cloud/ListInstalledAppsRequest.json +2 -2
  622. package/json-schema/cloud/ListInstalledAppsResponse.json +2 -2
  623. package/json-schema/cloud/ListReviewsRequest.json +2 -2
  624. package/json-schema/cloud/ListReviewsResponse.json +2 -2
  625. package/json-schema/cloud/ListingActionRequest.json +2 -2
  626. package/json-schema/cloud/ListingStatus.json +2 -2
  627. package/json-schema/cloud/MarketplaceCategory.json +2 -2
  628. package/json-schema/cloud/MarketplaceHealthMetrics.json +2 -2
  629. package/json-schema/cloud/MarketplaceInstallRequest.json +2 -2
  630. package/json-schema/cloud/MarketplaceInstallResponse.json +2 -2
  631. package/json-schema/cloud/MarketplaceListing.json +2 -2
  632. package/json-schema/cloud/MarketplaceSearchRequest.json +2 -2
  633. package/json-schema/cloud/MarketplaceSearchResponse.json +2 -2
  634. package/json-schema/cloud/Package.json +2 -2
  635. package/json-schema/cloud/PackageCategory.json +2 -2
  636. package/json-schema/cloud/PackageDependency.json +2 -2
  637. package/json-schema/cloud/PackageInstallation.json +2 -2
  638. package/json-schema/cloud/PackageInstallationStatus.json +2 -2
  639. package/json-schema/cloud/PackageManifest.json +2 -2
  640. package/json-schema/cloud/PackagePublisher.json +2 -2
  641. package/json-schema/cloud/PackageSubmission.json +2 -2
  642. package/json-schema/cloud/PackageVersion.json +2 -2
  643. package/json-schema/cloud/PackageVersionStatus.json +2 -2
  644. package/json-schema/cloud/PackageVisibility.json +2 -2
  645. package/json-schema/cloud/PolicyAction.json +2 -2
  646. package/json-schema/cloud/PolicyViolationType.json +2 -2
  647. package/json-schema/cloud/PricingModel.json +2 -2
  648. package/json-schema/cloud/ProvisionEnvironmentRequest.json +2 -2
  649. package/json-schema/cloud/ProvisionEnvironmentResponse.json +2 -2
  650. package/json-schema/cloud/ProvisionOrganizationRequest.json +2 -2
  651. package/json-schema/cloud/ProvisionOrganizationResponse.json +2 -2
  652. package/json-schema/cloud/ProvisionTenantRequest.json +2 -2
  653. package/json-schema/cloud/ProvisionTenantResponse.json +2 -2
  654. package/json-schema/cloud/PublishPackageVersionRequest.json +2 -2
  655. package/json-schema/cloud/Publisher.json +2 -2
  656. package/json-schema/cloud/PublisherProfile.json +2 -2
  657. package/json-schema/cloud/PublisherVerification.json +2 -2
  658. package/json-schema/cloud/PublishingAnalyticsRequest.json +2 -2
  659. package/json-schema/cloud/PublishingAnalyticsResponse.json +2 -2
  660. package/json-schema/cloud/RecommendationReason.json +2 -2
  661. package/json-schema/cloud/RecommendedApp.json +2 -2
  662. package/json-schema/cloud/RejectionReason.json +2 -2
  663. package/json-schema/cloud/ReleaseChannel.json +2 -2
  664. package/json-schema/cloud/ReviewCriterion.json +2 -2
  665. package/json-schema/cloud/ReviewDecision.json +2 -2
  666. package/json-schema/cloud/ReviewModerationStatus.json +2 -2
  667. package/json-schema/cloud/RollbackEnvironmentPackageRequest.json +2 -2
  668. package/json-schema/cloud/Sha256Digest.json +2 -2
  669. package/json-schema/cloud/SubmissionReview.json +2 -2
  670. package/json-schema/cloud/SubmitReviewRequest.json +2 -2
  671. package/json-schema/cloud/SubscriptionStatus.json +2 -2
  672. package/json-schema/cloud/TemplateManifest.json +2 -2
  673. package/json-schema/cloud/TenantContext.json +2 -2
  674. package/json-schema/cloud/TenantDatabase.json +2 -2
  675. package/json-schema/cloud/TenantDatabaseStatus.json +2 -2
  676. package/json-schema/cloud/TenantIdentificationSource.json +2 -2
  677. package/json-schema/cloud/TenantPlan.json +2 -2
  678. package/json-schema/cloud/TenantRoutingConfig.json +2 -2
  679. package/json-schema/cloud/TimeSeriesPoint.json +2 -2
  680. package/json-schema/cloud/TrendingListing.json +2 -2
  681. package/json-schema/cloud/UpdateListingRequest.json +2 -2
  682. package/json-schema/cloud/UpdatePackageRequest.json +2 -2
  683. package/json-schema/cloud/UpdatePackageVersionRequest.json +2 -2
  684. package/json-schema/cloud/UpgradeEnvironmentPackageRequest.json +2 -2
  685. package/json-schema/cloud/UserReview.json +2 -2
  686. package/json-schema/cloud/VersionRelease.json +2 -2
  687. package/json-schema/data/Address.json +2 -2
  688. package/json-schema/data/AggregationFunction.json +2 -2
  689. package/json-schema/data/AggregationMetricType.json +2 -2
  690. package/json-schema/data/AggregationNode.json +2 -2
  691. package/json-schema/data/AggregationPipeline.json +2 -2
  692. package/json-schema/data/AggregationStage.json +2 -2
  693. package/json-schema/data/AnalyticsQuery.json +2 -2
  694. package/json-schema/data/ApiMethod.json +2 -2
  695. package/json-schema/data/AsyncValidation.json +2 -2
  696. package/json-schema/data/BaseEngineOptions.json +2 -2
  697. package/json-schema/data/CDCConfig.json +2 -2
  698. package/json-schema/data/ComputedFieldCache.json +2 -2
  699. package/json-schema/data/ConsistencyLevel.json +2 -2
  700. package/json-schema/data/Cube.json +2 -2
  701. package/json-schema/data/CubeJoin.json +2 -2
  702. package/json-schema/data/CurrencyConfig.json +2 -2
  703. package/json-schema/data/CurrencyValue.json +2 -2
  704. package/json-schema/data/CustomValidator.json +2 -2
  705. package/json-schema/data/DataEngineAggregateOptions.json +2 -2
  706. package/json-schema/data/DataEngineAggregateRequest.json +2 -2
  707. package/json-schema/data/DataEngineBatchRequest.json +2 -2
  708. package/json-schema/data/DataEngineCountOptions.json +2 -2
  709. package/json-schema/data/DataEngineCountRequest.json +2 -2
  710. package/json-schema/data/DataEngineDeleteOptions.json +2 -2
  711. package/json-schema/data/DataEngineDeleteRequest.json +2 -2
  712. package/json-schema/data/DataEngineExecuteRequest.json +2 -2
  713. package/json-schema/data/DataEngineFilter.json +2 -2
  714. package/json-schema/data/DataEngineFindOneRequest.json +2 -2
  715. package/json-schema/data/DataEngineFindRequest.json +2 -2
  716. package/json-schema/data/DataEngineInsertOptions.json +2 -2
  717. package/json-schema/data/DataEngineInsertRequest.json +2 -2
  718. package/json-schema/data/DataEngineQueryOptions.json +2 -2
  719. package/json-schema/data/DataEngineRequest.json +2 -2
  720. package/json-schema/data/DataEngineSort.json +2 -2
  721. package/json-schema/data/DataEngineUpdateOptions.json +2 -2
  722. package/json-schema/data/DataEngineUpdateRequest.json +2 -2
  723. package/json-schema/data/DataEngineVectorFindRequest.json +2 -2
  724. package/json-schema/data/DataQualityRules.json +2 -2
  725. package/json-schema/data/DataTypeMapping.json +2 -2
  726. package/json-schema/data/Dataset.json +2 -2
  727. package/json-schema/data/DatasetLoadResult.json +2 -2
  728. package/json-schema/data/DatasetMode.json +2 -2
  729. package/json-schema/data/Datasource.json +2 -2
  730. package/json-schema/data/DatasourceCapabilities.json +2 -2
  731. package/json-schema/data/DateGranularity.json +2 -2
  732. package/json-schema/data/DateMacroPlaceholder.json +2 -2
  733. package/json-schema/data/DateMacroToken.json +2 -2
  734. package/json-schema/data/Dimension.json +2 -2
  735. package/json-schema/data/DimensionType.json +2 -2
  736. package/json-schema/data/Document.json +2 -2
  737. package/json-schema/data/DocumentTemplate.json +2 -2
  738. package/json-schema/data/DocumentValidationSchema.json +2 -2
  739. package/json-schema/data/DocumentVersion.json +2 -2
  740. package/json-schema/data/DriverCapabilities.json +2 -2
  741. package/json-schema/data/DriverConfig.json +2 -2
  742. package/json-schema/data/DriverDefinition.json +2 -2
  743. package/json-schema/data/DriverOptions.json +2 -2
  744. package/json-schema/data/DriverType.json +2 -2
  745. package/json-schema/data/ESignatureConfig.json +2 -2
  746. package/json-schema/data/EngineAggregateOptions.json +2 -2
  747. package/json-schema/data/EngineCountOptions.json +2 -2
  748. package/json-schema/data/EngineDeleteOptions.json +2 -2
  749. package/json-schema/data/EngineQueryOptions.json +2 -2
  750. package/json-schema/data/EngineUpdateOptions.json +2 -2
  751. package/json-schema/data/EqualityOperator.json +2 -2
  752. package/json-schema/data/ExpressionBody.json +2 -2
  753. package/json-schema/data/ExternalDataSource.json +2 -2
  754. package/json-schema/data/FeedActor.json +2 -2
  755. package/json-schema/data/FeedFilterMode.json +2 -2
  756. package/json-schema/data/FeedItem.json +2 -2
  757. package/json-schema/data/FeedItemType.json +2 -2
  758. package/json-schema/data/FeedVisibility.json +2 -2
  759. package/json-schema/data/FieldChangeEntry.json +2 -2
  760. package/json-schema/data/FieldMapping.json +2 -2
  761. package/json-schema/data/FieldNode.json +2 -2
  762. package/json-schema/data/FieldReference.json +2 -2
  763. package/json-schema/data/FieldType.json +2 -2
  764. package/json-schema/data/FileAttachmentConfig.json +2 -2
  765. package/json-schema/data/FilterCondition.json +2 -2
  766. package/json-schema/data/FormatValidation.json +2 -2
  767. package/json-schema/data/FullTextSearch.json +2 -2
  768. package/json-schema/data/GroupByNode.json +2 -2
  769. package/json-schema/data/HookBody.json +2 -2
  770. package/json-schema/data/HookBodyCapability.json +2 -2
  771. package/json-schema/data/HookContext.json +2 -2
  772. package/json-schema/data/HookEvent.json +2 -2
  773. package/json-schema/data/Index.json +2 -2
  774. package/json-schema/data/JSONValidation.json +2 -2
  775. package/json-schema/data/JoinNode.json +2 -2
  776. package/json-schema/data/JoinStrategy.json +2 -2
  777. package/json-schema/data/JoinType.json +2 -2
  778. package/json-schema/data/LocationCoordinates.json +2 -2
  779. package/json-schema/data/Mapping.json +2 -2
  780. package/json-schema/data/Mention.json +2 -2
  781. package/json-schema/data/Metric.json +2 -2
  782. package/json-schema/data/NoSQLDataTypeMapping.json +2 -2
  783. package/json-schema/data/NoSQLDatabaseType.json +2 -2
  784. package/json-schema/data/NoSQLDriverConfig.json +2 -2
  785. package/json-schema/data/NoSQLIndex.json +2 -2
  786. package/json-schema/data/NoSQLIndexType.json +2 -2
  787. package/json-schema/data/NoSQLOperationType.json +2 -2
  788. package/json-schema/data/NoSQLQueryOptions.json +2 -2
  789. package/json-schema/data/NoSQLTransactionOptions.json +2 -2
  790. package/json-schema/data/NotificationChannel.json +2 -2
  791. package/json-schema/data/ObjectCapabilities.json +2 -2
  792. package/json-schema/data/ObjectDependencyGraph.json +2 -2
  793. package/json-schema/data/ObjectDependencyNode.json +2 -2
  794. package/json-schema/data/ObjectOwnershipEnum.json +2 -2
  795. package/json-schema/data/PartitioningConfig.json +2 -2
  796. package/json-schema/data/PoolConfig.json +2 -2
  797. package/json-schema/data/Query.json +2 -2
  798. package/json-schema/data/QueryFilter.json +2 -2
  799. package/json-schema/data/Reaction.json +2 -2
  800. package/json-schema/data/RecordSubscription.json +2 -2
  801. package/json-schema/data/ReferenceResolution.json +2 -2
  802. package/json-schema/data/ReferenceResolutionError.json +2 -2
  803. package/json-schema/data/ReplicationConfig.json +2 -2
  804. package/json-schema/data/SQLDialect.json +2 -2
  805. package/json-schema/data/SQLDriverConfig.json +2 -2
  806. package/json-schema/data/SSLConfig.json +2 -2
  807. package/json-schema/data/ScriptBody.json +2 -2
  808. package/json-schema/data/SearchConfig.json +2 -2
  809. package/json-schema/data/SeedLoaderConfig.json +2 -2
  810. package/json-schema/data/SeedLoaderRequest.json +2 -2
  811. package/json-schema/data/SeedLoaderResult.json +2 -2
  812. package/json-schema/data/SelectOption.json +2 -2
  813. package/json-schema/data/SetOperator.json +2 -2
  814. package/json-schema/data/ShardingConfig.json +2 -2
  815. package/json-schema/data/SoftDeleteConfig.json +2 -2
  816. package/json-schema/data/SortNode.json +2 -2
  817. package/json-schema/data/SpecialOperator.json +2 -2
  818. package/json-schema/data/StateMachineValidation.json +2 -2
  819. package/json-schema/data/StringOperator.json +2 -2
  820. package/json-schema/data/SubscriptionEventType.json +2 -2
  821. package/json-schema/data/TenancyConfig.json +2 -2
  822. package/json-schema/data/TenantDatabaseLifecycle.json +2 -2
  823. package/json-schema/data/TenantResolverStrategy.json +2 -2
  824. package/json-schema/data/TimeUpdateInterval.json +2 -2
  825. package/json-schema/data/TransformType.json +2 -2
  826. package/json-schema/data/TursoGroup.json +2 -2
  827. package/json-schema/data/TursoMultiTenantConfig.json +2 -2
  828. package/json-schema/data/VectorConfig.json +2 -2
  829. package/json-schema/data/VersioningConfig.json +2 -2
  830. package/json-schema/data/WindowFunction.json +2 -2
  831. package/json-schema/data/WindowFunctionNode.json +2 -2
  832. package/json-schema/data/WindowSpec.json +2 -2
  833. package/json-schema/identity/Account.json +2 -2
  834. package/json-schema/identity/ApiKey.json +2 -2
  835. package/json-schema/identity/Invitation.json +2 -2
  836. package/json-schema/identity/InvitationStatus.json +2 -2
  837. package/json-schema/identity/Member.json +2 -2
  838. package/json-schema/identity/Organization.json +2 -2
  839. package/json-schema/identity/Role.json +2 -2
  840. package/json-schema/identity/SCIMAddress.json +2 -2
  841. package/json-schema/identity/SCIMBulkOperation.json +2 -2
  842. package/json-schema/identity/SCIMBulkRequest.json +2 -2
  843. package/json-schema/identity/SCIMBulkResponse.json +2 -2
  844. package/json-schema/identity/SCIMBulkResponseOperation.json +2 -2
  845. package/json-schema/identity/SCIMEmail.json +2 -2
  846. package/json-schema/identity/SCIMEnterpriseUser.json +2 -2
  847. package/json-schema/identity/SCIMError.json +2 -2
  848. package/json-schema/identity/SCIMGroup.json +2 -2
  849. package/json-schema/identity/SCIMGroupReference.json +2 -2
  850. package/json-schema/identity/SCIMListResponse.json +2 -2
  851. package/json-schema/identity/SCIMMemberReference.json +2 -2
  852. package/json-schema/identity/SCIMMeta.json +2 -2
  853. package/json-schema/identity/SCIMName.json +2 -2
  854. package/json-schema/identity/SCIMPatchOperation.json +2 -2
  855. package/json-schema/identity/SCIMPatchRequest.json +2 -2
  856. package/json-schema/identity/SCIMPhoneNumber.json +2 -2
  857. package/json-schema/identity/SCIMUser.json +2 -2
  858. package/json-schema/identity/Session.json +2 -2
  859. package/json-schema/identity/User.json +2 -2
  860. package/json-schema/identity/VerificationToken.json +2 -2
  861. package/json-schema/integration/AckMode.json +2 -2
  862. package/json-schema/integration/ApiVersionConfig.json +2 -2
  863. package/json-schema/integration/BuildConfig.json +2 -2
  864. package/json-schema/integration/CdcConfig.json +2 -2
  865. package/json-schema/integration/CircuitBreakerConfig.json +2 -2
  866. package/json-schema/integration/ConflictResolution.json +2 -2
  867. package/json-schema/integration/ConnectorAction.json +2 -2
  868. package/json-schema/integration/ConnectorHealth.json +2 -2
  869. package/json-schema/integration/ConnectorStatus.json +2 -2
  870. package/json-schema/integration/ConnectorTrigger.json +2 -2
  871. package/json-schema/integration/ConnectorType.json +2 -2
  872. package/json-schema/integration/ConsumerConfig.json +2 -2
  873. package/json-schema/integration/DatabasePoolConfig.json +2 -2
  874. package/json-schema/integration/DatabaseProvider.json +2 -2
  875. package/json-schema/integration/DeliveryGuarantee.json +2 -2
  876. package/json-schema/integration/DeploymentConfig.json +2 -2
  877. package/json-schema/integration/DlqConfig.json +2 -2
  878. package/json-schema/integration/DomainConfig.json +2 -2
  879. package/json-schema/integration/EdgeFunctionConfig.json +2 -2
  880. package/json-schema/integration/EnvironmentVariables.json +2 -2
  881. package/json-schema/integration/ErrorCategory.json +2 -2
  882. package/json-schema/integration/ErrorMappingConfig.json +2 -2
  883. package/json-schema/integration/ErrorMappingRule.json +2 -2
  884. package/json-schema/integration/FileAccessPattern.json +2 -2
  885. package/json-schema/integration/FileFilterConfig.json +2 -2
  886. package/json-schema/integration/FileMetadataConfig.json +2 -2
  887. package/json-schema/integration/FileStorageProvider.json +2 -2
  888. package/json-schema/integration/FileVersioningConfig.json +2 -2
  889. package/json-schema/integration/GitHubActionsWorkflow.json +2 -2
  890. package/json-schema/integration/GitHubCommitConfig.json +2 -2
  891. package/json-schema/integration/GitHubIssueTracking.json +2 -2
  892. package/json-schema/integration/GitHubProvider.json +2 -2
  893. package/json-schema/integration/GitHubReleaseConfig.json +2 -2
  894. package/json-schema/integration/GitHubRepository.json +2 -2
  895. package/json-schema/integration/GitRepositoryConfig.json +2 -2
  896. package/json-schema/integration/HealthCheckConfig.json +2 -2
  897. package/json-schema/integration/MessageFormat.json +2 -2
  898. package/json-schema/integration/MessageQueueProvider.json +2 -2
  899. package/json-schema/integration/MultipartUploadConfig.json +2 -2
  900. package/json-schema/integration/ProducerConfig.json +2 -2
  901. package/json-schema/integration/RateLimitConfig.json +2 -2
  902. package/json-schema/integration/RateLimitStrategy.json +2 -2
  903. package/json-schema/integration/RetryConfig.json +2 -2
  904. package/json-schema/integration/RetryStrategy.json +2 -2
  905. package/json-schema/integration/SaasProvider.json +2 -2
  906. package/json-schema/integration/SslConfig.json +2 -2
  907. package/json-schema/integration/StorageBucket.json +2 -2
  908. package/json-schema/integration/SyncStrategy.json +2 -2
  909. package/json-schema/integration/TopicQueue.json +2 -2
  910. package/json-schema/integration/VercelFramework.json +2 -2
  911. package/json-schema/integration/VercelMonitoring.json +2 -2
  912. package/json-schema/integration/VercelProject.json +2 -2
  913. package/json-schema/integration/VercelProvider.json +2 -2
  914. package/json-schema/integration/VercelTeam.json +2 -2
  915. package/json-schema/integration/WebhookConfig.json +2 -2
  916. package/json-schema/integration/WebhookEvent.json +2 -2
  917. package/json-schema/integration/WebhookSignatureAlgorithm.json +2 -2
  918. package/json-schema/kernel/ActivationEvent.json +2 -2
  919. package/json-schema/kernel/AdvancedPluginLifecycleConfig.json +2 -2
  920. package/json-schema/kernel/ArtifactChecksum.json +2 -2
  921. package/json-schema/kernel/ArtifactFileEntry.json +2 -2
  922. package/json-schema/kernel/ArtifactSignature.json +2 -2
  923. package/json-schema/kernel/BreakingChange.json +2 -2
  924. package/json-schema/kernel/CLICommandContribution.json +2 -2
  925. package/json-schema/kernel/CapabilityConformanceLevel.json +2 -2
  926. package/json-schema/kernel/ClusterCapabilityConfig.json +2 -2
  927. package/json-schema/kernel/ClusterDriver.json +2 -2
  928. package/json-schema/kernel/ClusterTenantIsolation.json +2 -2
  929. package/json-schema/kernel/CompatibilityLevel.json +2 -2
  930. package/json-schema/kernel/CompatibilityMatrixEntry.json +2 -2
  931. package/json-schema/kernel/CustomizationOrigin.json +2 -2
  932. package/json-schema/kernel/CustomizationPolicy.json +2 -2
  933. package/json-schema/kernel/DeadLetterQueueEntry.json +2 -2
  934. package/json-schema/kernel/DependencyConflict.json +2 -2
  935. package/json-schema/kernel/DependencyGraph.json +2 -2
  936. package/json-schema/kernel/DependencyGraphNode.json +2 -2
  937. package/json-schema/kernel/DependencyResolutionResult.json +2 -2
  938. package/json-schema/kernel/DependencyStatusEnum.json +2 -2
  939. package/json-schema/kernel/DeprecationNotice.json +2 -2
  940. package/json-schema/kernel/DevFixtureConfig.json +2 -2
  941. package/json-schema/kernel/DevPluginConfig.json +2 -2
  942. package/json-schema/kernel/DevPluginPreset.json +2 -2
  943. package/json-schema/kernel/DevServiceOverride.json +2 -2
  944. package/json-schema/kernel/DevToolsConfig.json +2 -2
  945. package/json-schema/kernel/DisablePackageRequest.json +2 -2
  946. package/json-schema/kernel/DisablePackageResponse.json +2 -2
  947. package/json-schema/kernel/DistributedStateConfig.json +2 -2
  948. package/json-schema/kernel/DynamicLoadRequest.json +2 -2
  949. package/json-schema/kernel/DynamicLoadingConfig.json +2 -2
  950. package/json-schema/kernel/DynamicPluginOperation.json +2 -2
  951. package/json-schema/kernel/DynamicPluginResult.json +2 -2
  952. package/json-schema/kernel/DynamicUnloadRequest.json +2 -2
  953. package/json-schema/kernel/EnablePackageRequest.json +2 -2
  954. package/json-schema/kernel/EnablePackageResponse.json +2 -2
  955. package/json-schema/kernel/Event.json +2 -2
  956. package/json-schema/kernel/EventBusConfig.json +2 -2
  957. package/json-schema/kernel/EventClusterOptions.json +2 -2
  958. package/json-schema/kernel/EventDeliverySemantics.json +2 -2
  959. package/json-schema/kernel/EventHandler.json +2 -2
  960. package/json-schema/kernel/EventLogEntry.json +2 -2
  961. package/json-schema/kernel/EventMessageQueueConfig.json +2 -2
  962. package/json-schema/kernel/EventMetadata.json +2 -2
  963. package/json-schema/kernel/EventPersistence.json +2 -2
  964. package/json-schema/kernel/EventPhase.json +2 -2
  965. package/json-schema/kernel/EventPriority.json +2 -2
  966. package/json-schema/kernel/EventQueueConfig.json +2 -2
  967. package/json-schema/kernel/EventReplayConfig.json +2 -2
  968. package/json-schema/kernel/EventRoute.json +2 -2
  969. package/json-schema/kernel/EventScope.json +2 -2
  970. package/json-schema/kernel/EventSourcingConfig.json +2 -2
  971. package/json-schema/kernel/EventTypeDefinition.json +2 -2
  972. package/json-schema/kernel/EventWebhookConfig.json +2 -2
  973. package/json-schema/kernel/ExecutionContext.json +2 -2
  974. package/json-schema/kernel/ExtensionPoint.json +2 -2
  975. package/json-schema/kernel/FeatureStrategy.json +2 -2
  976. package/json-schema/kernel/FieldChange.json +2 -2
  977. package/json-schema/kernel/GetPackageRequest.json +2 -2
  978. package/json-schema/kernel/GetPackageResponse.json +2 -2
  979. package/json-schema/kernel/GracefulDegradation.json +2 -2
  980. package/json-schema/kernel/HealthStatus.json +2 -2
  981. package/json-schema/kernel/HookRegisteredEvent.json +2 -2
  982. package/json-schema/kernel/HookTriggeredEvent.json +2 -2
  983. package/json-schema/kernel/HotReloadConfig.json +2 -2
  984. package/json-schema/kernel/InstallPackageRequest.json +2 -2
  985. package/json-schema/kernel/InstallPackageResponse.json +2 -2
  986. package/json-schema/kernel/InstalledPackage.json +2 -2
  987. package/json-schema/kernel/KernelContext.json +2 -2
  988. package/json-schema/kernel/KernelEventBase.json +2 -2
  989. package/json-schema/kernel/KernelReadyEvent.json +2 -2
  990. package/json-schema/kernel/KernelSecurityPolicy.json +2 -2
  991. package/json-schema/kernel/KernelSecurityScanResult.json +2 -2
  992. package/json-schema/kernel/KernelSecurityVulnerability.json +2 -2
  993. package/json-schema/kernel/KernelShutdownEvent.json +2 -2
  994. package/json-schema/kernel/ListPackagesRequest.json +2 -2
  995. package/json-schema/kernel/ListPackagesResponse.json +2 -2
  996. package/json-schema/kernel/Manifest.json +2 -2
  997. package/json-schema/kernel/MergeConflict.json +2 -2
  998. package/json-schema/kernel/MergeResult.json +2 -2
  999. package/json-schema/kernel/MergeStrategyConfig.json +2 -2
  1000. package/json-schema/kernel/MetadataBulkRegisterRequest.json +2 -2
  1001. package/json-schema/kernel/MetadataBulkResult.json +2 -2
  1002. package/json-schema/kernel/MetadataCategoryEnum.json +2 -2
  1003. package/json-schema/kernel/MetadataChangeOperation.json +2 -2
  1004. package/json-schema/kernel/MetadataChangeType.json +2 -2
  1005. package/json-schema/kernel/MetadataCollectionInfo.json +2 -2
  1006. package/json-schema/kernel/MetadataDependency.json +2 -2
  1007. package/json-schema/kernel/MetadataDiffItem.json +2 -2
  1008. package/json-schema/kernel/MetadataEvent.json +2 -2
  1009. package/json-schema/kernel/MetadataFallbackStrategy.json +2 -2
  1010. package/json-schema/kernel/MetadataFormat.json +2 -2
  1011. package/json-schema/kernel/MetadataImportOptions.json +2 -2
  1012. package/json-schema/kernel/MetadataLoadResult.json +2 -2
  1013. package/json-schema/kernel/MetadataLoaderContract.json +2 -2
  1014. package/json-schema/kernel/MetadataManagerConfig.json +2 -2
  1015. package/json-schema/kernel/MetadataOverlay.json +2 -2
  1016. package/json-schema/kernel/MetadataPluginConfig.json +2 -2
  1017. package/json-schema/kernel/MetadataPluginManifest.json +2 -2
  1018. package/json-schema/kernel/MetadataQuery.json +2 -2
  1019. package/json-schema/kernel/MetadataQueryResult.json +2 -2
  1020. package/json-schema/kernel/MetadataSaveOptions.json +2 -2
  1021. package/json-schema/kernel/MetadataSaveResult.json +2 -2
  1022. package/json-schema/kernel/MetadataStats.json +2 -2
  1023. package/json-schema/kernel/MetadataType.json +2 -2
  1024. package/json-schema/kernel/MetadataTypeRegistryEntry.json +2 -2
  1025. package/json-schema/kernel/MetadataValidationResult.json +2 -2
  1026. package/json-schema/kernel/MetadataWatchEvent.json +2 -2
  1027. package/json-schema/kernel/NamespaceConflictError.json +2 -2
  1028. package/json-schema/kernel/NamespaceRegistryEntry.json +2 -2
  1029. package/json-schema/kernel/OclifPluginConfig.json +2 -2
  1030. package/json-schema/kernel/OpsDomainModule.json +2 -2
  1031. package/json-schema/kernel/OpsFilePath.json +2 -2
  1032. package/json-schema/kernel/OpsPluginStructure.json +2 -2
  1033. package/json-schema/kernel/PackageArtifact.json +2 -2
  1034. package/json-schema/kernel/PackageDependency.json +2 -2
  1035. package/json-schema/kernel/PackageDependencyConflict.json +2 -2
  1036. package/json-schema/kernel/PackageDependencyResolutionResult.json +2 -2
  1037. package/json-schema/kernel/PackageStatusEnum.json +2 -2
  1038. package/json-schema/kernel/PermissionAction.json +2 -2
  1039. package/json-schema/kernel/PermissionScope.json +2 -2
  1040. package/json-schema/kernel/PluginCaching.json +2 -2
  1041. package/json-schema/kernel/PluginCapability.json +2 -2
  1042. package/json-schema/kernel/PluginCapabilityManifest.json +2 -2
  1043. package/json-schema/kernel/PluginCodeSplitting.json +2 -2
  1044. package/json-schema/kernel/PluginCompatibilityMatrix.json +2 -2
  1045. package/json-schema/kernel/PluginDependency.json +2 -2
  1046. package/json-schema/kernel/PluginDependencyResolution.json +2 -2
  1047. package/json-schema/kernel/PluginDependencyResolutionResult.json +2 -2
  1048. package/json-schema/kernel/PluginDiscoveryConfig.json +2 -2
  1049. package/json-schema/kernel/PluginDiscoverySource.json +2 -2
  1050. package/json-schema/kernel/PluginDynamicImport.json +2 -2
  1051. package/json-schema/kernel/PluginErrorEvent.json +2 -2
  1052. package/json-schema/kernel/PluginEventBase.json +2 -2
  1053. package/json-schema/kernel/PluginHealthCheck.json +2 -2
  1054. package/json-schema/kernel/PluginHealthReport.json +2 -2
  1055. package/json-schema/kernel/PluginHealthStatus.json +2 -2
  1056. package/json-schema/kernel/PluginHotReload.json +2 -2
  1057. package/json-schema/kernel/PluginInitialization.json +2 -2
  1058. package/json-schema/kernel/PluginInstallConfig.json +2 -2
  1059. package/json-schema/kernel/PluginInterface.json +2 -2
  1060. package/json-schema/kernel/PluginLifecycleEventType.json +2 -2
  1061. package/json-schema/kernel/PluginLifecyclePhaseEvent.json +2 -2
  1062. package/json-schema/kernel/PluginLoadingConfig.json +2 -2
  1063. package/json-schema/kernel/PluginLoadingEvent.json +2 -2
  1064. package/json-schema/kernel/PluginLoadingState.json +2 -2
  1065. package/json-schema/kernel/PluginLoadingStrategy.json +2 -2
  1066. package/json-schema/kernel/PluginMetadata.json +2 -2
  1067. package/json-schema/kernel/PluginPerformanceMonitoring.json +2 -2
  1068. package/json-schema/kernel/PluginPreloadConfig.json +2 -2
  1069. package/json-schema/kernel/PluginProvenance.json +2 -2
  1070. package/json-schema/kernel/PluginQualityMetrics.json +2 -2
  1071. package/json-schema/kernel/PluginRegisteredEvent.json +2 -2
  1072. package/json-schema/kernel/PluginRegistryEntry.json +2 -2
  1073. package/json-schema/kernel/PluginSandboxing.json +2 -2
  1074. package/json-schema/kernel/PluginSearchFilters.json +2 -2
  1075. package/json-schema/kernel/PluginSource.json +2 -2
  1076. package/json-schema/kernel/PluginStartupResult.json +2 -2
  1077. package/json-schema/kernel/PluginStateSnapshot.json +2 -2
  1078. package/json-schema/kernel/PluginStatistics.json +2 -2
  1079. package/json-schema/kernel/PluginTrustLevel.json +2 -2
  1080. package/json-schema/kernel/PluginTrustScore.json +2 -2
  1081. package/json-schema/kernel/PluginUpdateStrategy.json +2 -2
  1082. package/json-schema/kernel/PluginVendor.json +2 -2
  1083. package/json-schema/kernel/PluginVersionMetadata.json +2 -2
  1084. package/json-schema/kernel/PreviewModeConfig.json +2 -2
  1085. package/json-schema/kernel/ProtocolFeature.json +2 -2
  1086. package/json-schema/kernel/ProtocolReference.json +2 -2
  1087. package/json-schema/kernel/ProtocolVersion.json +2 -2
  1088. package/json-schema/kernel/RealTimeNotificationConfig.json +2 -2
  1089. package/json-schema/kernel/RequiredAction.json +2 -2
  1090. package/json-schema/kernel/ResolvedDependency.json +2 -2
  1091. package/json-schema/kernel/ResourceType.json +2 -2
  1092. package/json-schema/kernel/RollbackPackageRequest.json +2 -2
  1093. package/json-schema/kernel/RollbackPackageResponse.json +2 -2
  1094. package/json-schema/kernel/RuntimeConfig.json +2 -2
  1095. package/json-schema/kernel/RuntimeMode.json +2 -2
  1096. package/json-schema/kernel/SBOM.json +2 -2
  1097. package/json-schema/kernel/SBOMEntry.json +2 -2
  1098. package/json-schema/kernel/SandboxConfig.json +2 -2
  1099. package/json-schema/kernel/ScopeConfig.json +2 -2
  1100. package/json-schema/kernel/ScopeInfo.json +2 -2
  1101. package/json-schema/kernel/SecurityPolicy.json +2 -2
  1102. package/json-schema/kernel/SecurityScanResult.json +2 -2
  1103. package/json-schema/kernel/SecurityVulnerability.json +2 -2
  1104. package/json-schema/kernel/SemanticVersion.json +2 -2
  1105. package/json-schema/kernel/ServiceClusterAnnotations.json +2 -2
  1106. package/json-schema/kernel/ServiceClusterScope.json +2 -2
  1107. package/json-schema/kernel/ServiceFactoryRegistration.json +2 -2
  1108. package/json-schema/kernel/ServiceLeaderStrategy.json +2 -2
  1109. package/json-schema/kernel/ServiceMetadata.json +2 -2
  1110. package/json-schema/kernel/ServiceRegisteredEvent.json +2 -2
  1111. package/json-schema/kernel/ServiceRegistryConfig.json +2 -2
  1112. package/json-schema/kernel/ServiceScopeType.json +2 -2
  1113. package/json-schema/kernel/ServiceUnregisteredEvent.json +2 -2
  1114. package/json-schema/kernel/StartupOptions.json +2 -2
  1115. package/json-schema/kernel/StartupOrchestrationResult.json +2 -2
  1116. package/json-schema/kernel/TenantRuntimeContext.json +2 -2
  1117. package/json-schema/kernel/UninstallPackageRequest.json +2 -2
  1118. package/json-schema/kernel/UninstallPackageResponse.json +2 -2
  1119. package/json-schema/kernel/UpgradeContext.json +2 -2
  1120. package/json-schema/kernel/UpgradeImpactLevel.json +2 -2
  1121. package/json-schema/kernel/UpgradePackageRequest.json +2 -2
  1122. package/json-schema/kernel/UpgradePackageResponse.json +2 -2
  1123. package/json-schema/kernel/UpgradePhase.json +2 -2
  1124. package/json-schema/kernel/UpgradePlan.json +2 -2
  1125. package/json-schema/kernel/UpgradeSnapshot.json +2 -2
  1126. package/json-schema/kernel/ValidationError.json +2 -2
  1127. package/json-schema/kernel/ValidationResult.json +2 -2
  1128. package/json-schema/kernel/ValidationWarning.json +2 -2
  1129. package/json-schema/kernel/VersionConstraint.json +2 -2
  1130. package/json-schema/kernel/VulnerabilitySeverity.json +2 -2
  1131. package/json-schema/objectstack.json +5115 -3272
  1132. package/json-schema/openapi.json +1 -1
  1133. package/json-schema/qa/TestAction.json +2 -2
  1134. package/json-schema/qa/TestActionType.json +2 -2
  1135. package/json-schema/qa/TestAssertion.json +2 -2
  1136. package/json-schema/qa/TestAssertionType.json +2 -2
  1137. package/json-schema/qa/TestContext.json +2 -2
  1138. package/json-schema/qa/TestScenario.json +2 -2
  1139. package/json-schema/qa/TestStep.json +2 -2
  1140. package/json-schema/qa/TestSuite.json +2 -2
  1141. package/json-schema/security/AuditPolicy.json +2 -2
  1142. package/json-schema/security/FieldPermission.json +2 -2
  1143. package/json-schema/security/NetworkPolicy.json +2 -2
  1144. package/json-schema/security/OWDModel.json +2 -2
  1145. package/json-schema/security/ObjectPermission.json +2 -2
  1146. package/json-schema/security/OwnerSharingRule.json +2 -2
  1147. package/json-schema/security/PasswordPolicy.json +2 -2
  1148. package/json-schema/security/PermissionSet.json +2 -2
  1149. package/json-schema/security/Policy.json +2 -2
  1150. package/json-schema/security/RLSAuditConfig.json +2 -2
  1151. package/json-schema/security/RLSAuditEvent.json +2 -2
  1152. package/json-schema/security/RLSConfig.json +2 -2
  1153. package/json-schema/security/RLSEvaluationResult.json +2 -2
  1154. package/json-schema/security/RLSOperation.json +2 -2
  1155. package/json-schema/security/RLSUserContext.json +2 -2
  1156. package/json-schema/security/RowLevelSecurityPolicy.json +2 -2
  1157. package/json-schema/security/SessionPolicy.json +2 -2
  1158. package/json-schema/security/ShareRecipientType.json +2 -2
  1159. package/json-schema/security/SharingLevel.json +2 -2
  1160. package/json-schema/security/SharingRuleType.json +2 -2
  1161. package/json-schema/security/Territory.json +2 -2
  1162. package/json-schema/security/TerritoryModel.json +2 -2
  1163. package/json-schema/security/TerritoryType.json +2 -2
  1164. package/json-schema/shared/AggregationFunctionEnum.json +2 -2
  1165. package/json-schema/shared/AppName.json +2 -2
  1166. package/json-schema/shared/BaseMetadataRecord.json +2 -2
  1167. package/json-schema/shared/CacheStrategyEnum.json +2 -2
  1168. package/json-schema/shared/CorsConfig.json +2 -2
  1169. package/json-schema/shared/EventName.json +2 -2
  1170. package/json-schema/shared/Expression.json +2 -2
  1171. package/json-schema/shared/ExpressionDialect.json +2 -2
  1172. package/json-schema/shared/ExpressionMeta.json +2 -2
  1173. package/json-schema/shared/FieldName.json +2 -2
  1174. package/json-schema/shared/FlowName.json +2 -2
  1175. package/json-schema/shared/HttpMethod.json +2 -2
  1176. package/json-schema/shared/HttpRequest.json +2 -2
  1177. package/json-schema/shared/IsolationLevelEnum.json +2 -2
  1178. package/json-schema/shared/MetadataFormat.json +2 -2
  1179. package/json-schema/shared/MutationEventEnum.json +2 -2
  1180. package/json-schema/shared/ObjectName.json +2 -2
  1181. package/json-schema/shared/Predicate.json +2 -2
  1182. package/json-schema/shared/RateLimitConfig.json +2 -2
  1183. package/json-schema/shared/RoleName.json +2 -2
  1184. package/json-schema/shared/SnakeCaseIdentifier.json +2 -2
  1185. package/json-schema/shared/SortDirectionEnum.json +2 -2
  1186. package/json-schema/shared/SortItem.json +2 -2
  1187. package/json-schema/shared/StaticMount.json +2 -2
  1188. package/json-schema/shared/SystemIdentifier.json +2 -2
  1189. package/json-schema/shared/ViewName.json +2 -2
  1190. package/json-schema/studio/ActionContribution.json +2 -2
  1191. package/json-schema/studio/ActionLocation.json +2 -2
  1192. package/json-schema/studio/ActivationEvent.json +2 -2
  1193. package/json-schema/studio/CanvasSnapSettings.json +2 -2
  1194. package/json-schema/studio/CanvasZoomSettings.json +2 -2
  1195. package/json-schema/studio/CommandContribution.json +2 -2
  1196. package/json-schema/studio/ERDiagramConfig.json +2 -2
  1197. package/json-schema/studio/ERLayoutAlgorithm.json +2 -2
  1198. package/json-schema/studio/ERNodeDisplay.json +2 -2
  1199. package/json-schema/studio/ElementPaletteItem.json +2 -2
  1200. package/json-schema/studio/FieldEditorConfig.json +2 -2
  1201. package/json-schema/studio/FieldGroup.json +2 -2
  1202. package/json-schema/studio/FieldPropertySection.json +2 -2
  1203. package/json-schema/studio/FlowBuilderConfig.json +2 -2
  1204. package/json-schema/studio/FlowCanvasEdge.json +2 -2
  1205. package/json-schema/studio/FlowCanvasEdgeStyle.json +2 -2
  1206. package/json-schema/studio/FlowCanvasNode.json +2 -2
  1207. package/json-schema/studio/FlowLayoutAlgorithm.json +2 -2
  1208. package/json-schema/studio/FlowLayoutDirection.json +2 -2
  1209. package/json-schema/studio/FlowNodeRenderDescriptor.json +2 -2
  1210. package/json-schema/studio/FlowNodeShape.json +2 -2
  1211. package/json-schema/studio/InterfaceBuilderConfig.json +2 -2
  1212. package/json-schema/studio/MetadataIconContribution.json +2 -2
  1213. package/json-schema/studio/MetadataViewerContribution.json +2 -2
  1214. package/json-schema/studio/ObjectDesignerConfig.json +2 -2
  1215. package/json-schema/studio/ObjectDesignerDefaultView.json +2 -2
  1216. package/json-schema/studio/ObjectFilter.json +2 -2
  1217. package/json-schema/studio/ObjectListDisplayMode.json +2 -2
  1218. package/json-schema/studio/ObjectManagerConfig.json +2 -2
  1219. package/json-schema/studio/ObjectPreviewConfig.json +2 -2
  1220. package/json-schema/studio/ObjectPreviewTab.json +2 -2
  1221. package/json-schema/studio/ObjectSortField.json +2 -2
  1222. package/json-schema/studio/PageBuilderConfig.json +2 -2
  1223. package/json-schema/studio/PanelContribution.json +2 -2
  1224. package/json-schema/studio/PanelLocation.json +2 -2
  1225. package/json-schema/studio/RelationshipDisplay.json +2 -2
  1226. package/json-schema/studio/RelationshipMapperConfig.json +2 -2
  1227. package/json-schema/studio/SidebarGroupContribution.json +2 -2
  1228. package/json-schema/studio/StudioPluginContributions.json +2 -2
  1229. package/json-schema/studio/StudioPluginManifest.json +2 -2
  1230. package/json-schema/studio/ViewMode.json +2 -2
  1231. package/json-schema/system/AccessControlConfig.json +2 -2
  1232. package/json-schema/system/AdvancedAuthConfig.json +2 -2
  1233. package/json-schema/system/AnalyzerConfig.json +2 -2
  1234. package/json-schema/system/AppCompatibilityCheck.json +2 -2
  1235. package/json-schema/system/AppInstallRequest.json +2 -2
  1236. package/json-schema/system/AppInstallResult.json +2 -2
  1237. package/json-schema/system/AppManifest.json +2 -2
  1238. package/json-schema/system/AppTranslationBundle.json +2 -2
  1239. package/json-schema/system/AuditEvent.json +2 -2
  1240. package/json-schema/system/AuditEventActor.json +2 -2
  1241. package/json-schema/system/AuditEventChange.json +2 -2
  1242. package/json-schema/system/AuditEventFilter.json +2 -2
  1243. package/json-schema/system/AuditEventSeverity.json +2 -2
  1244. package/json-schema/system/AuditEventTarget.json +2 -2
  1245. package/json-schema/system/AuditEventType.json +2 -2
  1246. package/json-schema/system/AuditFinding.json +2 -2
  1247. package/json-schema/system/AuditFindingSeverity.json +2 -2
  1248. package/json-schema/system/AuditFindingStatus.json +2 -2
  1249. package/json-schema/system/AuditLogConfig.json +2 -2
  1250. package/json-schema/system/AuditRetentionPolicy.json +2 -2
  1251. package/json-schema/system/AuditSchedule.json +2 -2
  1252. package/json-schema/system/AuditStorageConfig.json +2 -2
  1253. package/json-schema/system/AuthConfig.json +2 -2
  1254. package/json-schema/system/AuthPluginConfig.json +2 -2
  1255. package/json-schema/system/AuthProviderConfig.json +2 -2
  1256. package/json-schema/system/AwarenessEvent.json +2 -2
  1257. package/json-schema/system/AwarenessSession.json +2 -2
  1258. package/json-schema/system/AwarenessUpdate.json +2 -2
  1259. package/json-schema/system/AwarenessUserState.json +2 -2
  1260. package/json-schema/system/BackupRetention.json +2 -2
  1261. package/json-schema/system/BackupStrategy.json +2 -2
  1262. package/json-schema/system/BatchProgress.json +2 -2
  1263. package/json-schema/system/BucketConfig.json +2 -2
  1264. package/json-schema/system/CRDTMergeResult.json +2 -2
  1265. package/json-schema/system/CRDTState.json +2 -2
  1266. package/json-schema/system/CRDTType.json +2 -2
  1267. package/json-schema/system/CacheAvalanchePrevention.json +2 -2
  1268. package/json-schema/system/CacheConfig.json +2 -2
  1269. package/json-schema/system/CacheConsistency.json +2 -2
  1270. package/json-schema/system/CacheInvalidation.json +2 -2
  1271. package/json-schema/system/CacheStrategy.json +2 -2
  1272. package/json-schema/system/CacheTier.json +2 -2
  1273. package/json-schema/system/ChangeImpact.json +2 -2
  1274. package/json-schema/system/ChangePriority.json +2 -2
  1275. package/json-schema/system/ChangeRequest.json +2 -2
  1276. package/json-schema/system/ChangeSchema.json +2 -2
  1277. package/json-schema/system/ChangeStatus.json +2 -2
  1278. package/json-schema/system/ChangeType.json +2 -2
  1279. package/json-schema/system/CollaborationMode.json +2 -2
  1280. package/json-schema/system/CollaborationSession.json +2 -2
  1281. package/json-schema/system/CollaborationSessionConfig.json +2 -2
  1282. package/json-schema/system/CollaborativeCursor.json +2 -2
  1283. package/json-schema/system/ComplianceAuditRequirement.json +2 -2
  1284. package/json-schema/system/ComplianceConfig.json +2 -2
  1285. package/json-schema/system/ComplianceEncryptionRequirement.json +2 -2
  1286. package/json-schema/system/ComplianceFramework.json +2 -2
  1287. package/json-schema/system/ConsoleDestinationConfig.json +2 -2
  1288. package/json-schema/system/ConsumerConfig.json +2 -2
  1289. package/json-schema/system/CoreServiceName.json +2 -2
  1290. package/json-schema/system/CounterOperation.json +2 -2
  1291. package/json-schema/system/CoverageBreakdownEntry.json +2 -2
  1292. package/json-schema/system/CursorColorPreset.json +2 -2
  1293. package/json-schema/system/CursorSelection.json +2 -2
  1294. package/json-schema/system/CursorStyle.json +2 -2
  1295. package/json-schema/system/CursorUpdate.json +2 -2
  1296. package/json-schema/system/DataClassification.json +2 -2
  1297. package/json-schema/system/DataClassificationPolicy.json +2 -2
  1298. package/json-schema/system/DatabaseLevelIsolationStrategy.json +2 -2
  1299. package/json-schema/system/DatabaseProvider.json +2 -2
  1300. package/json-schema/system/DeadLetterQueue.json +2 -2
  1301. package/json-schema/system/DeleteObjectOperation.json +2 -2
  1302. package/json-schema/system/DeployBundle.json +2 -2
  1303. package/json-schema/system/DeployDiff.json +2 -2
  1304. package/json-schema/system/DeployManifest.json +2 -2
  1305. package/json-schema/system/DeployStatusEnum.json +2 -2
  1306. package/json-schema/system/DeployValidationIssue.json +2 -2
  1307. package/json-schema/system/DeployValidationResult.json +2 -2
  1308. package/json-schema/system/EmailAddressConfig.json +2 -2
  1309. package/json-schema/system/EmailAndPasswordConfig.json +2 -2
  1310. package/json-schema/system/EmailProvider.json +2 -2
  1311. package/json-schema/system/EmailServiceConfig.json +2 -2
  1312. package/json-schema/system/EmailTemplateDefinition.json +2 -2
  1313. package/json-schema/system/EmailTemplateDefinitionCategory.json +2 -2
  1314. package/json-schema/system/EmailTemplateDefinitionVariable.json +2 -2
  1315. package/json-schema/system/EmailVerificationConfig.json +2 -2
  1316. package/json-schema/system/EncryptionAlgorithm.json +2 -2
  1317. package/json-schema/system/EncryptionConfig.json +2 -2
  1318. package/json-schema/system/EnvironmentArtifact.json +2 -2
  1319. package/json-schema/system/EnvironmentArtifactChecksum.json +2 -2
  1320. package/json-schema/system/EnvironmentArtifactFunction.json +2 -2
  1321. package/json-schema/system/EnvironmentArtifactFunctionLanguageEnum.json +2 -2
  1322. package/json-schema/system/EnvironmentArtifactHashAlgorithmEnum.json +2 -2
  1323. package/json-schema/system/EnvironmentArtifactManifest.json +2 -2
  1324. package/json-schema/system/EnvironmentArtifactMetadata.json +2 -2
  1325. package/json-schema/system/EnvironmentArtifactPayloadRef.json +2 -2
  1326. package/json-schema/system/EnvironmentArtifactRequirement.json +2 -2
  1327. package/json-schema/system/ExecuteSqlOperation.json +2 -2
  1328. package/json-schema/system/ExtendedLogLevel.json +2 -2
  1329. package/json-schema/system/ExternalServiceDestinationConfig.json +2 -2
  1330. package/json-schema/system/FacetConfig.json +2 -2
  1331. package/json-schema/system/FailoverConfig.json +2 -2
  1332. package/json-schema/system/FailoverMode.json +2 -2
  1333. package/json-schema/system/Feature.json +2 -2
  1334. package/json-schema/system/FieldEncryption.json +2 -2
  1335. package/json-schema/system/FieldTranslation.json +2 -2
  1336. package/json-schema/system/FileDestinationConfig.json +2 -2
  1337. package/json-schema/system/FileMetadata.json +2 -2
  1338. package/json-schema/system/GCounter.json +2 -2
  1339. package/json-schema/system/GDPRConfig.json +2 -2
  1340. package/json-schema/system/HIPAAConfig.json +2 -2
  1341. package/json-schema/system/HistogramBucketConfig.json +2 -2
  1342. package/json-schema/system/HttpDestinationConfig.json +2 -2
  1343. package/json-schema/system/HttpServerConfig.json +2 -2
  1344. package/json-schema/system/Incident.json +2 -2
  1345. package/json-schema/system/IncidentCategory.json +2 -2
  1346. package/json-schema/system/IncidentNotificationMatrix.json +2 -2
  1347. package/json-schema/system/IncidentNotificationRule.json +2 -2
  1348. package/json-schema/system/IncidentResponsePhase.json +2 -2
  1349. package/json-schema/system/IncidentResponsePolicy.json +2 -2
  1350. package/json-schema/system/IncidentSeverity.json +2 -2
  1351. package/json-schema/system/IncidentStatus.json +2 -2
  1352. package/json-schema/system/IntervalSchedule.json +2 -2
  1353. package/json-schema/system/JobExecution.json +2 -2
  1354. package/json-schema/system/JobExecutionStatus.json +2 -2
  1355. package/json-schema/system/KernelServiceMap.json +2 -2
  1356. package/json-schema/system/KeyManagementProvider.json +2 -2
  1357. package/json-schema/system/KeyRotationPolicy.json +2 -2
  1358. package/json-schema/system/LWWRegister.json +2 -2
  1359. package/json-schema/system/LevelIsolationStrategySchema.json +2 -2
  1360. package/json-schema/system/License.json +2 -2
  1361. package/json-schema/system/LicenseMetricType.json +2 -2
  1362. package/json-schema/system/LifecycleAction.json +2 -2
  1363. package/json-schema/system/LifecyclePolicyConfig.json +2 -2
  1364. package/json-schema/system/LifecyclePolicyRule.json +2 -2
  1365. package/json-schema/system/Locale.json +2 -2
  1366. package/json-schema/system/LogDestination.json +2 -2
  1367. package/json-schema/system/LogDestinationType.json +2 -2
  1368. package/json-schema/system/LogEnrichmentConfig.json +2 -2
  1369. package/json-schema/system/LogEntry.json +2 -2
  1370. package/json-schema/system/LogFormat.json +2 -2
  1371. package/json-schema/system/LogLevel.json +2 -2
  1372. package/json-schema/system/LoggerConfig.json +2 -2
  1373. package/json-schema/system/LoggingConfig.json +2 -2
  1374. package/json-schema/system/MaskingConfig.json +2 -2
  1375. package/json-schema/system/MaskingRule.json +2 -2
  1376. package/json-schema/system/MaskingStrategy.json +2 -2
  1377. package/json-schema/system/MaskingVisibilityRule.json +2 -2
  1378. package/json-schema/system/MessageFormat.json +2 -2
  1379. package/json-schema/system/MessageQueueConfig.json +2 -2
  1380. package/json-schema/system/MessageQueueProvider.json +2 -2
  1381. package/json-schema/system/MetadataCollectionInfo.json +2 -2
  1382. package/json-schema/system/MetadataDiffResult.json +2 -2
  1383. package/json-schema/system/MetadataExportOptions.json +2 -2
  1384. package/json-schema/system/MetadataFallbackStrategy.json +2 -2
  1385. package/json-schema/system/MetadataFormat.json +2 -2
  1386. package/json-schema/system/MetadataHistoryQueryOptions.json +2 -2
  1387. package/json-schema/system/MetadataHistoryQueryResult.json +2 -2
  1388. package/json-schema/system/MetadataHistoryRecord.json +2 -2
  1389. package/json-schema/system/MetadataHistoryRetentionPolicy.json +2 -2
  1390. package/json-schema/system/MetadataImportOptions.json +2 -2
  1391. package/json-schema/system/MetadataLoadOptions.json +2 -2
  1392. package/json-schema/system/MetadataLoadResult.json +2 -2
  1393. package/json-schema/system/MetadataLoaderContract.json +2 -2
  1394. package/json-schema/system/MetadataManagerConfig.json +2 -2
  1395. package/json-schema/system/MetadataRecord.json +2 -2
  1396. package/json-schema/system/MetadataSaveOptions.json +2 -2
  1397. package/json-schema/system/MetadataSaveResult.json +2 -2
  1398. package/json-schema/system/MetadataScope.json +2 -2
  1399. package/json-schema/system/MetadataSource.json +2 -2
  1400. package/json-schema/system/MetadataState.json +2 -2
  1401. package/json-schema/system/MetadataStats.json +2 -2
  1402. package/json-schema/system/MetadataWatchEvent.json +2 -2
  1403. package/json-schema/system/MetricAggregationConfig.json +2 -2
  1404. package/json-schema/system/MetricAggregationType.json +2 -2
  1405. package/json-schema/system/MetricDataPoint.json +2 -2
  1406. package/json-schema/system/MetricDefinition.json +2 -2
  1407. package/json-schema/system/MetricExportConfig.json +2 -2
  1408. package/json-schema/system/MetricLabels.json +2 -2
  1409. package/json-schema/system/MetricType.json +2 -2
  1410. package/json-schema/system/MetricUnit.json +2 -2
  1411. package/json-schema/system/MiddlewareConfig.json +2 -2
  1412. package/json-schema/system/MiddlewareType.json +2 -2
  1413. package/json-schema/system/MigrationDependency.json +2 -2
  1414. package/json-schema/system/MigrationPlan.json +2 -2
  1415. package/json-schema/system/MigrationStatement.json +2 -2
  1416. package/json-schema/system/ModifyFieldOperation.json +2 -2
  1417. package/json-schema/system/MultipartUploadConfig.json +2 -2
  1418. package/json-schema/system/MutualTLSConfig.json +2 -2
  1419. package/json-schema/system/NotificationChannel.json +2 -2
  1420. package/json-schema/system/ORSet.json +2 -2
  1421. package/json-schema/system/ORSetElement.json +2 -2
  1422. package/json-schema/system/OTComponent.json +2 -2
  1423. package/json-schema/system/OTOperation.json +2 -2
  1424. package/json-schema/system/OTOperationType.json +2 -2
  1425. package/json-schema/system/OTTransformResult.json +2 -2
  1426. package/json-schema/system/ObjectMetadata.json +2 -2
  1427. package/json-schema/system/ObjectStorageConfig.json +2 -2
  1428. package/json-schema/system/ObjectTranslationData.json +2 -2
  1429. package/json-schema/system/ObjectTranslationNode.json +2 -2
  1430. package/json-schema/system/OidcProviderConfig.json +2 -2
  1431. package/json-schema/system/OidcProvidersConfig.json +2 -2
  1432. package/json-schema/system/OnceSchedule.json +2 -2
  1433. package/json-schema/system/OpenTelemetryCompatibility.json +2 -2
  1434. package/json-schema/system/OtelExporterType.json +2 -2
  1435. package/json-schema/system/PCIDSSConfig.json +2 -2
  1436. package/json-schema/system/PNCounter.json +2 -2
  1437. package/json-schema/system/PackagePublishResult.json +2 -2
  1438. package/json-schema/system/Plan.json +2 -2
  1439. package/json-schema/system/PresignedUrlConfig.json +2 -2
  1440. package/json-schema/system/ProvisioningStep.json +2 -2
  1441. package/json-schema/system/QueueConfig.json +2 -2
  1442. package/json-schema/system/QuotaEnforcementResult.json +2 -2
  1443. package/json-schema/system/RPO.json +2 -2
  1444. package/json-schema/system/RTO.json +2 -2
  1445. package/json-schema/system/RegistryConfig.json +2 -2
  1446. package/json-schema/system/RegistrySyncPolicy.json +2 -2
  1447. package/json-schema/system/RegistryUpstream.json +2 -2
  1448. package/json-schema/system/RemoveFieldOperation.json +2 -2
  1449. package/json-schema/system/RenameObjectOperation.json +2 -2
  1450. package/json-schema/system/ResolvedSettingValue.json +2 -2
  1451. package/json-schema/system/RetryPolicy.json +2 -2
  1452. package/json-schema/system/RollbackPlan.json +2 -2
  1453. package/json-schema/system/RouteHandlerMetadata.json +2 -2
  1454. package/json-schema/system/RowLevelIsolationStrategy.json +2 -2
  1455. package/json-schema/system/SamplingDecision.json +2 -2
  1456. package/json-schema/system/SamplingStrategyType.json +2 -2
  1457. package/json-schema/system/SearchConfig.json +2 -2
  1458. package/json-schema/system/SearchIndexConfig.json +2 -2
  1459. package/json-schema/system/SearchProvider.json +2 -2
  1460. package/json-schema/system/SecurityContextConfig.json +2 -2
  1461. package/json-schema/system/SecurityEventCorrelation.json +2 -2
  1462. package/json-schema/system/ServerCapabilities.json +2 -2
  1463. package/json-schema/system/ServerEvent.json +2 -2
  1464. package/json-schema/system/ServerEventType.json +2 -2
  1465. package/json-schema/system/ServerStatus.json +2 -2
  1466. package/json-schema/system/ServiceConfig.json +2 -2
  1467. package/json-schema/system/ServiceCriticality.json +2 -2
  1468. package/json-schema/system/ServiceLevelObjective.json +2 -2
  1469. package/json-schema/system/ServiceStatus.json +2 -2
  1470. package/json-schema/system/SettingsActionResult.json +2 -2
  1471. package/json-schema/system/SettingsChangeEvent.json +2 -2
  1472. package/json-schema/system/SocialProviderConfig.json +2 -2
  1473. package/json-schema/system/Span.json +2 -2
  1474. package/json-schema/system/SpanAttributeValue.json +2 -2
  1475. package/json-schema/system/SpanAttributes.json +2 -2
  1476. package/json-schema/system/SpanEvent.json +2 -2
  1477. package/json-schema/system/SpanKind.json +2 -2
  1478. package/json-schema/system/SpanLink.json +2 -2
  1479. package/json-schema/system/SpanStatus.json +2 -2
  1480. package/json-schema/system/SpecifierHandler.json +2 -2
  1481. package/json-schema/system/SpecifierOption.json +2 -2
  1482. package/json-schema/system/SpecifierScope.json +2 -2
  1483. package/json-schema/system/SpecifierType.json +2 -2
  1484. package/json-schema/system/StorageAcl.json +2 -2
  1485. package/json-schema/system/StorageClass.json +2 -2
  1486. package/json-schema/system/StorageConnection.json +2 -2
  1487. package/json-schema/system/StorageProvider.json +2 -2
  1488. package/json-schema/system/StorageScope.json +2 -2
  1489. package/json-schema/system/StructuredLogEntry.json +2 -2
  1490. package/json-schema/system/SupplierAssessmentStatus.json +2 -2
  1491. package/json-schema/system/SupplierRiskLevel.json +2 -2
  1492. package/json-schema/system/SupplierSecurityAssessment.json +2 -2
  1493. package/json-schema/system/SupplierSecurityPolicy.json +2 -2
  1494. package/json-schema/system/SupplierSecurityRequirement.json +2 -2
  1495. package/json-schema/system/Task.json +2 -2
  1496. package/json-schema/system/TaskExecutionResult.json +2 -2
  1497. package/json-schema/system/TaskPriority.json +2 -2
  1498. package/json-schema/system/TaskRetryPolicy.json +2 -2
  1499. package/json-schema/system/TaskStatus.json +2 -2
  1500. package/json-schema/system/Tenant.json +2 -2
  1501. package/json-schema/system/TenantConnectionConfig.json +2 -2
  1502. package/json-schema/system/TenantIsolationConfig.json +2 -2
  1503. package/json-schema/system/TenantIsolationLevel.json +2 -2
  1504. package/json-schema/system/TenantPlan.json +2 -2
  1505. package/json-schema/system/TenantProvisioningRequest.json +2 -2
  1506. package/json-schema/system/TenantProvisioningResult.json +2 -2
  1507. package/json-schema/system/TenantProvisioningStatusEnum.json +2 -2
  1508. package/json-schema/system/TenantQuota.json +2 -2
  1509. package/json-schema/system/TenantRegion.json +2 -2
  1510. package/json-schema/system/TenantSecurityPolicy.json +2 -2
  1511. package/json-schema/system/TenantUsage.json +2 -2
  1512. package/json-schema/system/TextCRDTOperation.json +2 -2
  1513. package/json-schema/system/TextCRDTState.json +2 -2
  1514. package/json-schema/system/TimeSeries.json +2 -2
  1515. package/json-schema/system/TimeSeriesDataPoint.json +2 -2
  1516. package/json-schema/system/TopicConfig.json +2 -2
  1517. package/json-schema/system/TraceContext.json +2 -2
  1518. package/json-schema/system/TraceContextPropagation.json +2 -2
  1519. package/json-schema/system/TraceFlags.json +2 -2
  1520. package/json-schema/system/TracePropagationFormat.json +2 -2
  1521. package/json-schema/system/TraceState.json +2 -2
  1522. package/json-schema/system/TrainingCategory.json +2 -2
  1523. package/json-schema/system/TrainingCompletionStatus.json +2 -2
  1524. package/json-schema/system/TrainingCourse.json +2 -2
  1525. package/json-schema/system/TrainingPlan.json +2 -2
  1526. package/json-schema/system/TrainingRecord.json +2 -2
  1527. package/json-schema/system/TranslationBundle.json +2 -2
  1528. package/json-schema/system/TranslationConfig.json +2 -2
  1529. package/json-schema/system/TranslationCoverageResult.json +2 -2
  1530. package/json-schema/system/TranslationData.json +2 -2
  1531. package/json-schema/system/TranslationDiffItem.json +2 -2
  1532. package/json-schema/system/TranslationDiffStatus.json +2 -2
  1533. package/json-schema/system/TranslationFileOrganization.json +2 -2
  1534. package/json-schema/system/UserActivityStatus.json +2 -2
  1535. package/json-schema/system/VectorClock.json +2 -2
  1536. package/json-schema/system/WorkerStats.json +2 -2
  1537. package/json-schema/ui/AIChatWindowProps.json +2 -2
  1538. package/json-schema/ui/ActionParam.json +2 -2
  1539. package/json-schema/ui/ActionType.json +2 -2
  1540. package/json-schema/ui/AddRecordConfig.json +2 -2
  1541. package/json-schema/ui/Animation.json +2 -2
  1542. package/json-schema/ui/AnimationTrigger.json +2 -2
  1543. package/json-schema/ui/AppBranding.json +2 -2
  1544. package/json-schema/ui/AppearanceConfig.json +2 -2
  1545. package/json-schema/ui/AriaProps.json +2 -2
  1546. package/json-schema/ui/BlankPageLayout.json +2 -2
  1547. package/json-schema/ui/BlankPageLayoutItem.json +2 -2
  1548. package/json-schema/ui/BorderRadius.json +2 -2
  1549. package/json-schema/ui/BreakpointColumnMap.json +2 -2
  1550. package/json-schema/ui/BreakpointName.json +2 -2
  1551. package/json-schema/ui/BreakpointOrderMap.json +2 -2
  1552. package/json-schema/ui/Breakpoints.json +2 -2
  1553. package/json-schema/ui/CalendarConfig.json +2 -2
  1554. package/json-schema/ui/ChartAnnotation.json +2 -2
  1555. package/json-schema/ui/ChartAxis.json +2 -2
  1556. package/json-schema/ui/ChartConfig.json +2 -2
  1557. package/json-schema/ui/ChartInteraction.json +2 -2
  1558. package/json-schema/ui/ChartSeries.json +2 -2
  1559. package/json-schema/ui/ChartType.json +2 -2
  1560. package/json-schema/ui/ColorPalette.json +2 -2
  1561. package/json-schema/ui/ColumnSummary.json +2 -2
  1562. package/json-schema/ui/ComponentAnimation.json +2 -2
  1563. package/json-schema/ui/ConflictResolution.json +2 -2
  1564. package/json-schema/ui/Dashboard.json +2 -2
  1565. package/json-schema/ui/DashboardHeader.json +2 -2
  1566. package/json-schema/ui/DashboardHeaderAction.json +2 -2
  1567. package/json-schema/ui/DashboardWidget.json +2 -2
  1568. package/json-schema/ui/DateFormat.json +2 -2
  1569. package/json-schema/ui/DensityMode.json +2 -2
  1570. package/json-schema/ui/DndConfig.json +2 -2
  1571. package/json-schema/ui/DragConstraint.json +2 -2
  1572. package/json-schema/ui/DragHandle.json +2 -2
  1573. package/json-schema/ui/DragItem.json +2 -2
  1574. package/json-schema/ui/DropEffect.json +2 -2
  1575. package/json-schema/ui/DropZone.json +2 -2
  1576. package/json-schema/ui/EasingFunction.json +2 -2
  1577. package/json-schema/ui/ElementButtonProps.json +2 -2
  1578. package/json-schema/ui/ElementDataSource.json +2 -2
  1579. package/json-schema/ui/ElementFilterProps.json +2 -2
  1580. package/json-schema/ui/ElementImageProps.json +2 -2
  1581. package/json-schema/ui/ElementNumberProps.json +2 -2
  1582. package/json-schema/ui/ElementRecordPickerProps.json +2 -2
  1583. package/json-schema/ui/ElementTextProps.json +2 -2
  1584. package/json-schema/ui/EmbedConfig.json +2 -2
  1585. package/json-schema/ui/EvictionPolicy.json +2 -2
  1586. package/json-schema/ui/FocusManagement.json +2 -2
  1587. package/json-schema/ui/FocusTrapConfig.json +2 -2
  1588. package/json-schema/ui/GalleryConfig.json +2 -2
  1589. package/json-schema/ui/GanttConfig.json +2 -2
  1590. package/json-schema/ui/GestureConfig.json +2 -2
  1591. package/json-schema/ui/GestureType.json +2 -2
  1592. package/json-schema/ui/GlobalFilter.json +2 -2
  1593. package/json-schema/ui/GlobalFilterOptionsFrom.json +2 -2
  1594. package/json-schema/ui/GroupingConfig.json +2 -2
  1595. package/json-schema/ui/GroupingField.json +2 -2
  1596. package/json-schema/ui/HttpMethod.json +2 -2
  1597. package/json-schema/ui/HttpRequest.json +2 -2
  1598. package/json-schema/ui/I18nLabel.json +2 -2
  1599. package/json-schema/ui/I18nObject.json +2 -2
  1600. package/json-schema/ui/InterfacePageConfig.json +2 -2
  1601. package/json-schema/ui/JoinedReportBlock.json +2 -2
  1602. package/json-schema/ui/KanbanConfig.json +2 -2
  1603. package/json-schema/ui/KeyboardNavigationConfig.json +2 -2
  1604. package/json-schema/ui/KeyboardShortcut.json +2 -2
  1605. package/json-schema/ui/ListChartConfig.json +2 -2
  1606. package/json-schema/ui/ListColumn.json +2 -2
  1607. package/json-schema/ui/LocaleConfig.json +2 -2
  1608. package/json-schema/ui/LongPressGestureConfig.json +2 -2
  1609. package/json-schema/ui/MotionConfig.json +2 -2
  1610. package/json-schema/ui/NavigationConfig.json +2 -2
  1611. package/json-schema/ui/NavigationMode.json +2 -2
  1612. package/json-schema/ui/Notification.json +2 -2
  1613. package/json-schema/ui/NotificationAction.json +2 -2
  1614. package/json-schema/ui/NotificationConfig.json +2 -2
  1615. package/json-schema/ui/NotificationPosition.json +2 -2
  1616. package/json-schema/ui/NotificationSeverity.json +2 -2
  1617. package/json-schema/ui/NotificationType.json +2 -2
  1618. package/json-schema/ui/NumberFormat.json +2 -2
  1619. package/json-schema/ui/OfflineCacheConfig.json +2 -2
  1620. package/json-schema/ui/OfflineConfig.json +2 -2
  1621. package/json-schema/ui/OfflineStrategy.json +2 -2
  1622. package/json-schema/ui/PageAccordionProps.json +2 -2
  1623. package/json-schema/ui/PageCardProps.json +2 -2
  1624. package/json-schema/ui/PageComponentType.json +2 -2
  1625. package/json-schema/ui/PageHeaderProps.json +2 -2
  1626. package/json-schema/ui/PageTabsProps.json +2 -2
  1627. package/json-schema/ui/PageTransition.json +2 -2
  1628. package/json-schema/ui/PageType.json +2 -2
  1629. package/json-schema/ui/PageVariable.json +2 -2
  1630. package/json-schema/ui/PaginationConfig.json +2 -2
  1631. package/json-schema/ui/PerformanceConfig.json +2 -2
  1632. package/json-schema/ui/PersistStorage.json +2 -2
  1633. package/json-schema/ui/PinchGestureConfig.json +2 -2
  1634. package/json-schema/ui/PluralRule.json +2 -2
  1635. package/json-schema/ui/Portal.json +531 -0
  1636. package/json-schema/ui/PortalActionNavItem.json +52 -0
  1637. package/json-schema/ui/PortalAnonymousEntry.json +96 -0
  1638. package/json-schema/ui/PortalAnonymousRoute.json +59 -0
  1639. package/json-schema/ui/PortalAuthMode.json +23 -0
  1640. package/json-schema/ui/PortalDashboardNavItem.json +54 -0
  1641. package/json-schema/ui/PortalLayout.json +23 -0
  1642. package/json-schema/ui/PortalNavItem.json +214 -0
  1643. package/json-schema/ui/PortalRateLimit.json +27 -0
  1644. package/json-schema/ui/PortalSeo.json +32 -0
  1645. package/json-schema/ui/PortalTheme.json +45 -0
  1646. package/json-schema/ui/PortalUrlNavItem.json +61 -0
  1647. package/json-schema/ui/PortalViewNavItem.json +52 -0
  1648. package/json-schema/ui/RecordActivityProps.json +2 -2
  1649. package/json-schema/ui/RecordChatterProps.json +2 -2
  1650. package/json-schema/ui/RecordDetailsProps.json +2 -2
  1651. package/json-schema/ui/RecordHighlightsField.json +2 -2
  1652. package/json-schema/ui/RecordHighlightsProps.json +2 -2
  1653. package/json-schema/ui/RecordPathProps.json +2 -2
  1654. package/json-schema/ui/RecordRelatedListProps.json +2 -2
  1655. package/json-schema/ui/RecordReviewConfig.json +2 -2
  1656. package/json-schema/ui/Report.json +2 -2
  1657. package/json-schema/ui/ReportChart.json +2 -2
  1658. package/json-schema/ui/ReportColumn.json +2 -2
  1659. package/json-schema/ui/ReportGrouping.json +2 -2
  1660. package/json-schema/ui/ReportType.json +2 -2
  1661. package/json-schema/ui/ResponsiveConfig.json +2 -2
  1662. package/json-schema/ui/RowColorConfig.json +2 -2
  1663. package/json-schema/ui/RowHeight.json +2 -2
  1664. package/json-schema/ui/SelectionConfig.json +2 -2
  1665. package/json-schema/ui/Shadow.json +2 -2
  1666. package/json-schema/ui/SharingConfig.json +2 -2
  1667. package/json-schema/ui/Spacing.json +2 -2
  1668. package/json-schema/ui/SwipeDirection.json +2 -2
  1669. package/json-schema/ui/SwipeGestureConfig.json +2 -2
  1670. package/json-schema/ui/SyncConfig.json +2 -2
  1671. package/json-schema/ui/Theme.json +2 -2
  1672. package/json-schema/ui/ThemeMode.json +2 -2
  1673. package/json-schema/ui/TimelineConfig.json +2 -2
  1674. package/json-schema/ui/TouchInteraction.json +2 -2
  1675. package/json-schema/ui/TouchTargetConfig.json +2 -2
  1676. package/json-schema/ui/TransitionConfig.json +2 -2
  1677. package/json-schema/ui/TransitionPreset.json +2 -2
  1678. package/json-schema/ui/Typography.json +2 -2
  1679. package/json-schema/ui/UserActionsConfig.json +2 -2
  1680. package/json-schema/ui/ViewData.json +2 -2
  1681. package/json-schema/ui/ViewFilterRule.json +2 -2
  1682. package/json-schema/ui/ViewSharing.json +2 -2
  1683. package/json-schema/ui/ViewTab.json +2 -2
  1684. package/json-schema/ui/VisualizationType.json +2 -2
  1685. package/json-schema/ui/WcagContrastLevel.json +2 -2
  1686. package/json-schema/ui/WidgetActionType.json +2 -2
  1687. package/json-schema/ui/WidgetColorVariant.json +2 -2
  1688. package/json-schema/ui/WidgetEvent.json +2 -2
  1689. package/json-schema/ui/WidgetLifecycle.json +2 -2
  1690. package/json-schema/ui/WidgetManifest.json +2 -2
  1691. package/json-schema/ui/WidgetMeasure.json +2 -2
  1692. package/json-schema/ui/WidgetProperty.json +2 -2
  1693. package/json-schema/ui/WidgetSource.json +2 -2
  1694. package/json-schema/ui/ZIndex.json +2 -2
  1695. package/package.json +1 -1
  1696. package/src/ai/knowledge-document.zod.ts +97 -0
  1697. package/src/ai/knowledge-source.zod.ts +123 -0
  1698. package/src/stack.zod.ts +2 -0
  1699. package/src/ui/portal.zod.ts +325 -0
@@ -3,7 +3,7 @@ import { Q as QueryAST } from '../query.zod-C-iygIgx.mjs';
3
3
  import { z } from 'zod';
4
4
  import { u as ObjectSchema } from '../object.zod-rhReSd7V.mjs';
5
5
  import { k as FieldSchema } from '../field.zod-Bqhc6_7G.mjs';
6
- import { S as MetadataQuery, T as MetadataQueryResult, v as MetadataBulkResult, L as MetadataOverlay, _ as MetadataValidationResult, E as MetadataDependency, a0 as ObjectStackManifest, i as DependencyResolutionResult, al as UpgradePlan, ah as UpgradePackageResponse, ab as RollbackPackageResponse, an as UpgradeSnapshot, a2 as PackageArtifact } from '../manifest.zod-ZIjKKFkz.mjs';
6
+ import { U as MetadataQuery, V as MetadataQueryResult, w as MetadataBulkResult, O as MetadataOverlay, a0 as MetadataValidationResult, H as MetadataDependency, a2 as ObjectStackManifest, i as DependencyResolutionResult, an as UpgradePlan, aj as UpgradePackageResponse, ad as RollbackPackageResponse, ap as UpgradeSnapshot, a4 as PackageArtifact, E as ExecutionContext } from '../execution-context.zod-7FfY8UW2.mjs';
7
7
  import { am as PackagePublishResult, J as MetadataHistoryQueryOptions, N as MetadataHistoryQueryResult, z as MetadataDiffResult, h as AppTranslationBundle, aG as TranslationCoverageResult, aK as TranslationDiffItem, au as TenantProvisioningRequest, aw as TenantProvisioningResult, ay as TenantProvisioningStatus, as as TenantPlan, l as DeployDiff, ae as MigrationPlan, p as DeployStatus, D as DeployBundle, t as DeployValidationResult, aA as TenantRegion, f as AppManifest, A as AppCompatibilityCheck, d as AppInstallResult } from '../app-install.zod-FLEuRBBE.mjs';
8
8
  import { h as FlowParsed } from '../flow.zod-BFCtGdYw.mjs';
9
9
  import { i as ExecutionLog } from '../execution.zod-DGGOFfcb.mjs';
@@ -11,6 +11,7 @@ import { ModelMessage, ToolCallPart, TextStreamPart, ToolSet, ToolResultPart } f
11
11
  export { AssistantModelMessage, FinishReason, ModelMessage, SystemModelMessage, TextStreamPart, ToolCallPart, ToolModelMessage, ToolResultPart, ToolSet, UserModelMessage } from 'ai';
12
12
  import { d as ExportFormat, i as ExportJobStatus, j as ExportJobSummary, g as ExportJobProgress, z as ScheduledExport, e as ExportImportTemplate } from '../export.zod-DXjlPiR2.mjs';
13
13
  import { N as NamespaceConflictError, m as InstalledPackage } from '../package-registry.zod--iKeSd9R.mjs';
14
+ import { j as KnowledgeSource, d as KnowledgeDocument, f as KnowledgeHit } from '../knowledge-document.zod-C8B-jI53.mjs';
14
15
  import '../filter.zod-DG_Mf2_S.mjs';
15
16
  import '../state-machine.zod-BNanU03M.mjs';
16
17
 
@@ -2668,6 +2669,45 @@ interface ChatWithToolsOptions extends AIRequestOptions {
2668
2669
  * or `'abort'` to immediately stop the tool call loop.
2669
2670
  */
2670
2671
  onToolError?: (toolCall: ToolCallPart, error: string) => 'continue' | 'abort';
2672
+ /**
2673
+ * Per-call execution context threaded into every tool handler the
2674
+ * loop dispatches. The HTTP route should populate this from
2675
+ * `req.user` (and any conversation/environment headers) so that
2676
+ * built-in data tools forward the actor into ObjectQL's
2677
+ * `ExecutionContext` and row-level security automatically scopes
2678
+ * what the LLM can see or change.
2679
+ *
2680
+ * Optional for backward compatibility — when omitted, tools fall
2681
+ * back to system-level behaviour.
2682
+ */
2683
+ toolExecutionContext?: ToolExecutionContext;
2684
+ }
2685
+ /**
2686
+ * Per-call execution context threaded into every tool handler invoked
2687
+ * by {@link ChatWithToolsOptions}. Mirrors {@link ExecutionContext}
2688
+ * but is tailored to the AI tool boundary (no transaction handle, no
2689
+ * raw access token — those live on the engine call site).
2690
+ */
2691
+ interface ToolExecutionContext {
2692
+ /**
2693
+ * Authenticated end user on whose behalf the LLM is acting.
2694
+ * Built-in tools promote this into the ObjectQL `ExecutionContext`
2695
+ * so RLS engages. Omit for internal/system invocations.
2696
+ */
2697
+ actor?: {
2698
+ id: string;
2699
+ name?: string;
2700
+ roles?: string[];
2701
+ permissions?: string[];
2702
+ };
2703
+ /** Conversation id for trace/HITL correlation. */
2704
+ conversationId?: string;
2705
+ /** Assistant message id that produced the tool call. */
2706
+ messageId?: string;
2707
+ /** Active environment (multi-tenant project) id, if known. */
2708
+ environmentId?: string;
2709
+ /** Distributed-trace id for cross-service correlation. */
2710
+ traceId?: string;
2671
2711
  }
2672
2712
  /**
2673
2713
  * Options for {@link IAIService.generateObject}.
@@ -4296,6 +4336,164 @@ interface IPackageService {
4296
4336
  togglePackage?(packageId: string, enabled: boolean): Promise<InstalledPackage>;
4297
4337
  }
4298
4338
 
4339
+ /**
4340
+ * `IKnowledgeAdapter` — plugin-side contract.
4341
+ *
4342
+ * Each backend (RAGFlow, LlamaIndex, Dify, Vectara, an in-memory
4343
+ * cosine adapter, a custom pgvector adapter, …) ships as its own
4344
+ * plugin package and implements this interface. The adapter is then
4345
+ * registered with the host's `IKnowledgeService` via
4346
+ * `registerAdapter(id, this)` during the plugin's `start()` hook.
4347
+ *
4348
+ * The surface is **deliberately minimal**: no chunk strategy, no
4349
+ * embedding configuration, no rerank toggles. Adapters that need
4350
+ * extra knobs expose them via their plugin options object.
4351
+ *
4352
+ * See `content/docs/protocol/knowledge.mdx`.
4353
+ */
4354
+ /**
4355
+ * Context passed to every adapter call. Carries the resolved source
4356
+ * (so the adapter can locate its dataset / collection / table) and
4357
+ * optional trace metadata. Adapters MUST treat unknown fields as
4358
+ * forwards-compatible.
4359
+ */
4360
+ interface AdapterContext {
4361
+ /** The source these documents belong to. */
4362
+ source: KnowledgeSource;
4363
+ /** Trace id for correlation across logs / metrics. */
4364
+ traceId?: string;
4365
+ /** Caller-supplied free-form diagnostics tag. */
4366
+ reason?: 'event-sync' | 'reindex' | 'manual' | 'tool-call' | (string & {});
4367
+ }
4368
+ /** Options accepted by `IKnowledgeAdapter.search`. */
4369
+ interface AdapterSearchOptions {
4370
+ /** The source the search is scoped to. */
4371
+ source: KnowledgeSource;
4372
+ /** Max hits to return. */
4373
+ topK: number;
4374
+ /** Adapter-specific filter (e.g. `{ status: 'active' }`). */
4375
+ filter?: Record<string, unknown>;
4376
+ /** Trace id for correlation. */
4377
+ traceId?: string;
4378
+ }
4379
+ /**
4380
+ * Plugin-implemented adapter. **One per backend**. Stateless across
4381
+ * source ids — the source is supplied per-call.
4382
+ */
4383
+ interface IKnowledgeAdapter {
4384
+ /** Stable adapter id used in `KnowledgeSource.adapter`. */
4385
+ readonly id: string;
4386
+ /** Insert or replace documents in the adapter's backend. */
4387
+ upsert(docs: KnowledgeDocument[], ctx: AdapterContext): Promise<void>;
4388
+ /** Run a search query. Returns hits sorted by descending score. */
4389
+ search(query: string, opts: AdapterSearchOptions): Promise<KnowledgeHit[]>;
4390
+ /** Remove documents by id. */
4391
+ delete(documentIds: string[], ctx: AdapterContext): Promise<void>;
4392
+ /**
4393
+ * Optional liveness probe. When implemented, used by the service's
4394
+ * health endpoint and Studio "test connection" actions.
4395
+ */
4396
+ healthCheck?(): Promise<{
4397
+ ok: boolean;
4398
+ message?: string;
4399
+ }>;
4400
+ }
4401
+
4402
+ /**
4403
+ * `IKnowledgeService` — orchestrator contract consumed by REST,
4404
+ * `service-ai`, Studio, and custom plugins. Implemented by
4405
+ * `@objectstack/service-knowledge`.
4406
+ *
4407
+ * The service routes requests to one of many `IKnowledgeAdapter`
4408
+ * plugins (RAGFlow, LlamaIndex, Dify, …), wraps search results with a
4409
+ * permission-aware filter that uses the caller's `ExecutionContext`,
4410
+ * and drives event-based sync from ObjectQL.
4411
+ *
4412
+ * See `content/docs/protocol/knowledge.mdx` for the architecture
4413
+ * rationale.
4414
+ */
4415
+ /** Options accepted by `IKnowledgeService.search`. */
4416
+ interface KnowledgeSearchOptions {
4417
+ /**
4418
+ * Restrict the search to the given source ids. When omitted, every
4419
+ * source the caller is allowed to see is queried.
4420
+ */
4421
+ sourceIds?: string[];
4422
+ /** Max number of hits to return. Adapters may cap further. */
4423
+ topK?: number;
4424
+ /** Adapter-specific filter (passed opaquely). */
4425
+ filter?: Record<string, unknown>;
4426
+ /**
4427
+ * Execution context of the caller. **Required** for permission-aware
4428
+ * retrieval: hits whose `sourceRecordId` would be filtered out by
4429
+ * RLS are dropped before being returned. Internal callers may pass
4430
+ * an `isSystem: true` context to bypass — same convention as
4431
+ * `IDataEngine`.
4432
+ */
4433
+ executionContext?: ExecutionContext;
4434
+ }
4435
+ /** Options accepted by `IKnowledgeService.reindexSource`. */
4436
+ interface KnowledgeReindexOptions {
4437
+ /** When `true`, walk the source and count but do not call the adapter. */
4438
+ dryRun?: boolean;
4439
+ /** Cap on number of documents to reindex (mostly for tests / smoke runs). */
4440
+ limit?: number;
4441
+ }
4442
+ /** Result of a `reindexSource` call. */
4443
+ interface KnowledgeReindexResult {
4444
+ /** Number of documents pushed to the adapter (0 when dryRun). */
4445
+ indexed: number;
4446
+ /** Number of documents discovered (always populated). */
4447
+ discovered: number;
4448
+ /** When applicable, the underlying object's short name. */
4449
+ object?: string;
4450
+ /** When `false`, an adapter / source check prevented the run. */
4451
+ ok: boolean;
4452
+ /** Free-form diagnostics. */
4453
+ message?: string;
4454
+ }
4455
+ /**
4456
+ * Core service contract.
4457
+ *
4458
+ * Every adapter plugin calls `registerAdapter(id, this)` during its
4459
+ * `start()` hook. Sources reference adapters by id; unknown ids cause
4460
+ * `search` / `indexDocument` to throw early with a clear error.
4461
+ */
4462
+ interface IKnowledgeService {
4463
+ /** Register (or replace) an adapter under the given id. */
4464
+ registerAdapter(id: string, adapter: IKnowledgeAdapter): void;
4465
+ /** Resolve an adapter by id. Throws when unknown. */
4466
+ getAdapter(id: string): IKnowledgeAdapter;
4467
+ /** Enumerate registered adapter ids. */
4468
+ listAdapters(): string[];
4469
+ /** Register a logical knowledge source. */
4470
+ registerSource(source: KnowledgeSource): void;
4471
+ /** Remove a registered source. Does not delete underlying data. */
4472
+ unregisterSource(sourceId: string): void;
4473
+ /** Snapshot of registered sources (read-only). */
4474
+ listSources(): KnowledgeSource[];
4475
+ /** Look up a single source. Returns `undefined` when not registered. */
4476
+ getSource(sourceId: string): KnowledgeSource | undefined;
4477
+ /** Index (insert or replace) a document into the source's adapter. */
4478
+ indexDocument(sourceId: string, doc: KnowledgeDocument): Promise<void>;
4479
+ /** Remove a document from the source's adapter. */
4480
+ deleteDocument(sourceId: string, documentId: string): Promise<void>;
4481
+ /**
4482
+ * Bulk reindex a source from its declared origin. Object sources
4483
+ * walk the underlying object via `IDataEngine`; file / http sources
4484
+ * delegate to the adapter's own ingestion.
4485
+ */
4486
+ reindexSource(sourceId: string, opts?: KnowledgeReindexOptions): Promise<KnowledgeReindexResult>;
4487
+ /**
4488
+ * Run a search across one or more sources. Results are
4489
+ * permission-filtered before being returned (see
4490
+ * `KnowledgeSearchOptions.executionContext`).
4491
+ */
4492
+ search(query: string, opts?: KnowledgeSearchOptions): Promise<KnowledgeHit[]>;
4493
+ }
4494
+ /** Canonical service-registry id used by `IKnowledgeService` consumers. */
4495
+ declare const KNOWLEDGE_SERVICE: "knowledge";
4496
+
4299
4497
  /**
4300
4498
  * ITursoPlatformService - Turso Platform API Contract
4301
4499
  *
@@ -5103,4 +5301,4 @@ interface IClusterService {
5103
5301
  close(): Promise<void>;
5104
5302
  }
5105
5303
 
5106
- export type { AIConversation, AIMessage, AIMessageWithTools, AIObjectResult, AIRequestOptions, AIRequestOptionsWithTools, AIResult, AIStreamEvent, AIToolCall, AIToolDefinition, AIToolResult, AnalyticsQuery, AnalyticsResult, AnalyticsStrategy, ApprovalActionRow, ApprovalDecisionInput, ApprovalDecisionResult, ApprovalProcessRow, ApprovalRequestRow, ApprovalStatus, AuthResult, AuthSession, AuthUser, AutomationContext, AutomationResult, CacheStats, ChatWithToolsOptions, CheckNamespaceInput, CheckNamespaceResult, ClusterCallContext, CounterIncrOptions, CreateExportJobInput, CreateExportJobResult, CreateFeedItemInput, CreateTursoDatabaseOptions, CryptoContext, CryptoHandle, CubeMeta, DefineApprovalProcessInput, DefineSharingRuleInput, DeployExecutionResult, DriverCapabilities, DriverInterface, EmailAddress, EmailAttachment, EmailDeliveryStatus, ExecuteUpgradeInput, ExportJobDownload, ExportJobListResult, FeedListResult, GenerateObjectOptions, GrantShareInput, GraphQLRequest, GraphQLResponse, HealthStatus, IAIConversationService, IAIService, IAdvancedServiceRegistry, IAnalyticsService, IAppLifecycleService, IApprovalService, IAuthService, IAutomationService, IBasicServiceRegistry, ICacheService, IClusterService, ICounter, ICryptoProvider, IDataDriver, IDataEngine, IDepartmentGraphService, IDeployPipelineService, IEmailService, IEmailTransport, IExportService, IFeedService, IGraphQLService, IHttpRequest, IHttpResponse, IHttpServer, II18nService, IJobService, IKV, ILock, IMetadataService, INotificationService, IPackageService, IPluginLifecycleEvents, IPluginValidator, IProvisioningService, IPubSub, IQueueService, IRealtimeService, IReportService, ISchemaDiffService, ISchemaDriver, ISearchService, ISeedLoaderService, IServiceRegistry, ISharingRuleService, ISharingService, IStartupOrchestrator, IStorageService, ITeamGraphService, ITenantRouter, ITursoPlatformService, ITypedEventEmitter, IUIService, IWorkflowService, InstallPackageInput, InstallPackageResult, IntrospectedColumn, IntrospectedIndex, IntrospectedSchema, IntrospectedTable, JobExecution, JobHandler, JobSchedule, KVEntry, KVSetOptions, LLMAdapter, ListExportJobsOptions, ListFeedOptions, LockAcquireOptions, LockHandle, Logger, MetadataExportOptions, MetadataImportOptions, MetadataImportResult, MetadataTypeInfo, MetadataWatchCallback, MetadataWatchHandle, Middleware, MigrationApplyResult, NormalizedEmailMessage, NotificationChannel, NotificationMessage, NotificationResult, PendingActionRow, PendingActionStatus, PlanUpgradeInput, Plugin, PluginStartupResult, PresignedDownloadDescriptor, PresignedUploadDescriptor, ProposePendingActionInput, PubSubHandler, PubSubMessage, PublishOptions, QueueBackoffPolicy, QueueHandler, QueueMessage, QueueMessageRecord, QueuePublishOptions, RealtimeEventHandler, RealtimeEventPayload, RealtimeSubscriptionFilter, RealtimeSubscriptionOptions, RecordShare, ReportFormat, ReportQuery, ReportRunResult, ReportSchedule, ResolveDependenciesInput, ResolvedTenantContext, RollbackInput, RouteHandler, SaveReportInput, SavedReport, ScheduleExportInput, ScheduleReportInput, SearchHit, SearchOptions, SearchResult, SendEmailInput, SendEmailResult, SendTemplateInput, ShareAccessLevel, ShareRecipientType, ShareSource, SharingExecutionContext, SharingRuleEvaluationResult, SharingRuleRecipientType, SharingRuleRow, StartupOptions, StorageFileInfo, StorageUploadOptions, StrategyContext, SubmitApprovalInput, SubscribeInput, SubscribeOptions, TransportSendResult, TursoDatabaseInfo, TursoTokenResult, TursoTokenScope, Unsubscribe, UpdateFeedItemInput, UploadArtifactInput, UploadArtifactResult, ValidationResult, WorkflowStatus, WorkflowTransition, WorkflowTransitionResult };
5304
+ export { type AIConversation, type AIMessage, type AIMessageWithTools, type AIObjectResult, type AIRequestOptions, type AIRequestOptionsWithTools, type AIResult, type AIStreamEvent, type AIToolCall, type AIToolDefinition, type AIToolResult, type AdapterContext, type AdapterSearchOptions, type AnalyticsQuery, type AnalyticsResult, type AnalyticsStrategy, type ApprovalActionRow, type ApprovalDecisionInput, type ApprovalDecisionResult, type ApprovalProcessRow, type ApprovalRequestRow, type ApprovalStatus, type AuthResult, type AuthSession, type AuthUser, type AutomationContext, type AutomationResult, type CacheStats, type ChatWithToolsOptions, type CheckNamespaceInput, type CheckNamespaceResult, type ClusterCallContext, type CounterIncrOptions, type CreateExportJobInput, type CreateExportJobResult, type CreateFeedItemInput, type CreateTursoDatabaseOptions, type CryptoContext, type CryptoHandle, type CubeMeta, type DefineApprovalProcessInput, type DefineSharingRuleInput, type DeployExecutionResult, type DriverCapabilities, type DriverInterface, type EmailAddress, type EmailAttachment, type EmailDeliveryStatus, type ExecuteUpgradeInput, type ExportJobDownload, type ExportJobListResult, type FeedListResult, type GenerateObjectOptions, type GrantShareInput, type GraphQLRequest, type GraphQLResponse, type HealthStatus, type IAIConversationService, type IAIService, type IAdvancedServiceRegistry, type IAnalyticsService, type IAppLifecycleService, type IApprovalService, type IAuthService, type IAutomationService, type IBasicServiceRegistry, type ICacheService, type IClusterService, type ICounter, type ICryptoProvider, type IDataDriver, type IDataEngine, type IDepartmentGraphService, type IDeployPipelineService, type IEmailService, type IEmailTransport, type IExportService, type IFeedService, type IGraphQLService, type IHttpRequest, type IHttpResponse, type IHttpServer, type II18nService, type IJobService, type IKV, type IKnowledgeAdapter, type IKnowledgeService, type ILock, type IMetadataService, type INotificationService, type IPackageService, type IPluginLifecycleEvents, type IPluginValidator, type IProvisioningService, type IPubSub, type IQueueService, type IRealtimeService, type IReportService, type ISchemaDiffService, type ISchemaDriver, type ISearchService, type ISeedLoaderService, type IServiceRegistry, type ISharingRuleService, type ISharingService, type IStartupOrchestrator, type IStorageService, type ITeamGraphService, type ITenantRouter, type ITursoPlatformService, type ITypedEventEmitter, type IUIService, type IWorkflowService, type InstallPackageInput, type InstallPackageResult, type IntrospectedColumn, type IntrospectedIndex, type IntrospectedSchema, type IntrospectedTable, type JobExecution, type JobHandler, type JobSchedule, KNOWLEDGE_SERVICE, type KVEntry, type KVSetOptions, type KnowledgeReindexOptions, type KnowledgeReindexResult, type KnowledgeSearchOptions, type LLMAdapter, type ListExportJobsOptions, type ListFeedOptions, type LockAcquireOptions, type LockHandle, type Logger, type MetadataExportOptions, type MetadataImportOptions, type MetadataImportResult, type MetadataTypeInfo, type MetadataWatchCallback, type MetadataWatchHandle, type Middleware, type MigrationApplyResult, type NormalizedEmailMessage, type NotificationChannel, type NotificationMessage, type NotificationResult, type PendingActionRow, type PendingActionStatus, type PlanUpgradeInput, type Plugin, type PluginStartupResult, type PresignedDownloadDescriptor, type PresignedUploadDescriptor, type ProposePendingActionInput, type PubSubHandler, type PubSubMessage, type PublishOptions, type QueueBackoffPolicy, type QueueHandler, type QueueMessage, type QueueMessageRecord, type QueuePublishOptions, type RealtimeEventHandler, type RealtimeEventPayload, type RealtimeSubscriptionFilter, type RealtimeSubscriptionOptions, type RecordShare, type ReportFormat, type ReportQuery, type ReportRunResult, type ReportSchedule, type ResolveDependenciesInput, type ResolvedTenantContext, type RollbackInput, type RouteHandler, type SaveReportInput, type SavedReport, type ScheduleExportInput, type ScheduleReportInput, type SearchHit, type SearchOptions, type SearchResult, type SendEmailInput, type SendEmailResult, type SendTemplateInput, type ShareAccessLevel, type ShareRecipientType, type ShareSource, type SharingExecutionContext, type SharingRuleEvaluationResult, type SharingRuleRecipientType, type SharingRuleRow, type StartupOptions, type StorageFileInfo, type StorageUploadOptions, type StrategyContext, type SubmitApprovalInput, type SubscribeInput, type SubscribeOptions, type ToolExecutionContext, type TransportSendResult, type TursoDatabaseInfo, type TursoTokenResult, type TursoTokenScope, type Unsubscribe, type UpdateFeedItemInput, type UploadArtifactInput, type UploadArtifactResult, type ValidationResult, type WorkflowStatus, type WorkflowTransition, type WorkflowTransitionResult };
@@ -3,7 +3,7 @@ import { Q as QueryAST } from '../query.zod-CGnJOIQH.js';
3
3
  import { z } from 'zod';
4
4
  import { u as ObjectSchema } from '../object.zod-BntYUReb.js';
5
5
  import { k as FieldSchema } from '../field.zod-Bqhc6_7G.js';
6
- import { S as MetadataQuery, T as MetadataQueryResult, v as MetadataBulkResult, L as MetadataOverlay, _ as MetadataValidationResult, E as MetadataDependency, a0 as ObjectStackManifest, i as DependencyResolutionResult, al as UpgradePlan, ah as UpgradePackageResponse, ab as RollbackPackageResponse, an as UpgradeSnapshot, a2 as PackageArtifact } from '../manifest.zod-ZIjKKFkz.js';
6
+ import { U as MetadataQuery, V as MetadataQueryResult, w as MetadataBulkResult, O as MetadataOverlay, a0 as MetadataValidationResult, H as MetadataDependency, a2 as ObjectStackManifest, i as DependencyResolutionResult, an as UpgradePlan, aj as UpgradePackageResponse, ad as RollbackPackageResponse, ap as UpgradeSnapshot, a4 as PackageArtifact, E as ExecutionContext } from '../execution-context.zod-7FfY8UW2.js';
7
7
  import { am as PackagePublishResult, J as MetadataHistoryQueryOptions, N as MetadataHistoryQueryResult, z as MetadataDiffResult, h as AppTranslationBundle, aG as TranslationCoverageResult, aK as TranslationDiffItem, au as TenantProvisioningRequest, aw as TenantProvisioningResult, ay as TenantProvisioningStatus, as as TenantPlan, l as DeployDiff, ae as MigrationPlan, p as DeployStatus, D as DeployBundle, t as DeployValidationResult, aA as TenantRegion, f as AppManifest, A as AppCompatibilityCheck, d as AppInstallResult } from '../app-install.zod-FLEuRBBE.js';
8
8
  import { h as FlowParsed } from '../flow.zod-BFCtGdYw.js';
9
9
  import { i as ExecutionLog } from '../execution.zod-DGGOFfcb.js';
@@ -11,6 +11,7 @@ import { ModelMessage, ToolCallPart, TextStreamPart, ToolSet, ToolResultPart } f
11
11
  export { AssistantModelMessage, FinishReason, ModelMessage, SystemModelMessage, TextStreamPart, ToolCallPart, ToolModelMessage, ToolResultPart, ToolSet, UserModelMessage } from 'ai';
12
12
  import { d as ExportFormat, i as ExportJobStatus, j as ExportJobSummary, g as ExportJobProgress, z as ScheduledExport, e as ExportImportTemplate } from '../export.zod-DXjlPiR2.js';
13
13
  import { N as NamespaceConflictError, m as InstalledPackage } from '../package-registry.zod--iKeSd9R.js';
14
+ import { j as KnowledgeSource, d as KnowledgeDocument, f as KnowledgeHit } from '../knowledge-document.zod-C8B-jI53.js';
14
15
  import '../filter.zod-DG_Mf2_S.js';
15
16
  import '../state-machine.zod-BNanU03M.js';
16
17
 
@@ -2668,6 +2669,45 @@ interface ChatWithToolsOptions extends AIRequestOptions {
2668
2669
  * or `'abort'` to immediately stop the tool call loop.
2669
2670
  */
2670
2671
  onToolError?: (toolCall: ToolCallPart, error: string) => 'continue' | 'abort';
2672
+ /**
2673
+ * Per-call execution context threaded into every tool handler the
2674
+ * loop dispatches. The HTTP route should populate this from
2675
+ * `req.user` (and any conversation/environment headers) so that
2676
+ * built-in data tools forward the actor into ObjectQL's
2677
+ * `ExecutionContext` and row-level security automatically scopes
2678
+ * what the LLM can see or change.
2679
+ *
2680
+ * Optional for backward compatibility — when omitted, tools fall
2681
+ * back to system-level behaviour.
2682
+ */
2683
+ toolExecutionContext?: ToolExecutionContext;
2684
+ }
2685
+ /**
2686
+ * Per-call execution context threaded into every tool handler invoked
2687
+ * by {@link ChatWithToolsOptions}. Mirrors {@link ExecutionContext}
2688
+ * but is tailored to the AI tool boundary (no transaction handle, no
2689
+ * raw access token — those live on the engine call site).
2690
+ */
2691
+ interface ToolExecutionContext {
2692
+ /**
2693
+ * Authenticated end user on whose behalf the LLM is acting.
2694
+ * Built-in tools promote this into the ObjectQL `ExecutionContext`
2695
+ * so RLS engages. Omit for internal/system invocations.
2696
+ */
2697
+ actor?: {
2698
+ id: string;
2699
+ name?: string;
2700
+ roles?: string[];
2701
+ permissions?: string[];
2702
+ };
2703
+ /** Conversation id for trace/HITL correlation. */
2704
+ conversationId?: string;
2705
+ /** Assistant message id that produced the tool call. */
2706
+ messageId?: string;
2707
+ /** Active environment (multi-tenant project) id, if known. */
2708
+ environmentId?: string;
2709
+ /** Distributed-trace id for cross-service correlation. */
2710
+ traceId?: string;
2671
2711
  }
2672
2712
  /**
2673
2713
  * Options for {@link IAIService.generateObject}.
@@ -4296,6 +4336,164 @@ interface IPackageService {
4296
4336
  togglePackage?(packageId: string, enabled: boolean): Promise<InstalledPackage>;
4297
4337
  }
4298
4338
 
4339
+ /**
4340
+ * `IKnowledgeAdapter` — plugin-side contract.
4341
+ *
4342
+ * Each backend (RAGFlow, LlamaIndex, Dify, Vectara, an in-memory
4343
+ * cosine adapter, a custom pgvector adapter, …) ships as its own
4344
+ * plugin package and implements this interface. The adapter is then
4345
+ * registered with the host's `IKnowledgeService` via
4346
+ * `registerAdapter(id, this)` during the plugin's `start()` hook.
4347
+ *
4348
+ * The surface is **deliberately minimal**: no chunk strategy, no
4349
+ * embedding configuration, no rerank toggles. Adapters that need
4350
+ * extra knobs expose them via their plugin options object.
4351
+ *
4352
+ * See `content/docs/protocol/knowledge.mdx`.
4353
+ */
4354
+ /**
4355
+ * Context passed to every adapter call. Carries the resolved source
4356
+ * (so the adapter can locate its dataset / collection / table) and
4357
+ * optional trace metadata. Adapters MUST treat unknown fields as
4358
+ * forwards-compatible.
4359
+ */
4360
+ interface AdapterContext {
4361
+ /** The source these documents belong to. */
4362
+ source: KnowledgeSource;
4363
+ /** Trace id for correlation across logs / metrics. */
4364
+ traceId?: string;
4365
+ /** Caller-supplied free-form diagnostics tag. */
4366
+ reason?: 'event-sync' | 'reindex' | 'manual' | 'tool-call' | (string & {});
4367
+ }
4368
+ /** Options accepted by `IKnowledgeAdapter.search`. */
4369
+ interface AdapterSearchOptions {
4370
+ /** The source the search is scoped to. */
4371
+ source: KnowledgeSource;
4372
+ /** Max hits to return. */
4373
+ topK: number;
4374
+ /** Adapter-specific filter (e.g. `{ status: 'active' }`). */
4375
+ filter?: Record<string, unknown>;
4376
+ /** Trace id for correlation. */
4377
+ traceId?: string;
4378
+ }
4379
+ /**
4380
+ * Plugin-implemented adapter. **One per backend**. Stateless across
4381
+ * source ids — the source is supplied per-call.
4382
+ */
4383
+ interface IKnowledgeAdapter {
4384
+ /** Stable adapter id used in `KnowledgeSource.adapter`. */
4385
+ readonly id: string;
4386
+ /** Insert or replace documents in the adapter's backend. */
4387
+ upsert(docs: KnowledgeDocument[], ctx: AdapterContext): Promise<void>;
4388
+ /** Run a search query. Returns hits sorted by descending score. */
4389
+ search(query: string, opts: AdapterSearchOptions): Promise<KnowledgeHit[]>;
4390
+ /** Remove documents by id. */
4391
+ delete(documentIds: string[], ctx: AdapterContext): Promise<void>;
4392
+ /**
4393
+ * Optional liveness probe. When implemented, used by the service's
4394
+ * health endpoint and Studio "test connection" actions.
4395
+ */
4396
+ healthCheck?(): Promise<{
4397
+ ok: boolean;
4398
+ message?: string;
4399
+ }>;
4400
+ }
4401
+
4402
+ /**
4403
+ * `IKnowledgeService` — orchestrator contract consumed by REST,
4404
+ * `service-ai`, Studio, and custom plugins. Implemented by
4405
+ * `@objectstack/service-knowledge`.
4406
+ *
4407
+ * The service routes requests to one of many `IKnowledgeAdapter`
4408
+ * plugins (RAGFlow, LlamaIndex, Dify, …), wraps search results with a
4409
+ * permission-aware filter that uses the caller's `ExecutionContext`,
4410
+ * and drives event-based sync from ObjectQL.
4411
+ *
4412
+ * See `content/docs/protocol/knowledge.mdx` for the architecture
4413
+ * rationale.
4414
+ */
4415
+ /** Options accepted by `IKnowledgeService.search`. */
4416
+ interface KnowledgeSearchOptions {
4417
+ /**
4418
+ * Restrict the search to the given source ids. When omitted, every
4419
+ * source the caller is allowed to see is queried.
4420
+ */
4421
+ sourceIds?: string[];
4422
+ /** Max number of hits to return. Adapters may cap further. */
4423
+ topK?: number;
4424
+ /** Adapter-specific filter (passed opaquely). */
4425
+ filter?: Record<string, unknown>;
4426
+ /**
4427
+ * Execution context of the caller. **Required** for permission-aware
4428
+ * retrieval: hits whose `sourceRecordId` would be filtered out by
4429
+ * RLS are dropped before being returned. Internal callers may pass
4430
+ * an `isSystem: true` context to bypass — same convention as
4431
+ * `IDataEngine`.
4432
+ */
4433
+ executionContext?: ExecutionContext;
4434
+ }
4435
+ /** Options accepted by `IKnowledgeService.reindexSource`. */
4436
+ interface KnowledgeReindexOptions {
4437
+ /** When `true`, walk the source and count but do not call the adapter. */
4438
+ dryRun?: boolean;
4439
+ /** Cap on number of documents to reindex (mostly for tests / smoke runs). */
4440
+ limit?: number;
4441
+ }
4442
+ /** Result of a `reindexSource` call. */
4443
+ interface KnowledgeReindexResult {
4444
+ /** Number of documents pushed to the adapter (0 when dryRun). */
4445
+ indexed: number;
4446
+ /** Number of documents discovered (always populated). */
4447
+ discovered: number;
4448
+ /** When applicable, the underlying object's short name. */
4449
+ object?: string;
4450
+ /** When `false`, an adapter / source check prevented the run. */
4451
+ ok: boolean;
4452
+ /** Free-form diagnostics. */
4453
+ message?: string;
4454
+ }
4455
+ /**
4456
+ * Core service contract.
4457
+ *
4458
+ * Every adapter plugin calls `registerAdapter(id, this)` during its
4459
+ * `start()` hook. Sources reference adapters by id; unknown ids cause
4460
+ * `search` / `indexDocument` to throw early with a clear error.
4461
+ */
4462
+ interface IKnowledgeService {
4463
+ /** Register (or replace) an adapter under the given id. */
4464
+ registerAdapter(id: string, adapter: IKnowledgeAdapter): void;
4465
+ /** Resolve an adapter by id. Throws when unknown. */
4466
+ getAdapter(id: string): IKnowledgeAdapter;
4467
+ /** Enumerate registered adapter ids. */
4468
+ listAdapters(): string[];
4469
+ /** Register a logical knowledge source. */
4470
+ registerSource(source: KnowledgeSource): void;
4471
+ /** Remove a registered source. Does not delete underlying data. */
4472
+ unregisterSource(sourceId: string): void;
4473
+ /** Snapshot of registered sources (read-only). */
4474
+ listSources(): KnowledgeSource[];
4475
+ /** Look up a single source. Returns `undefined` when not registered. */
4476
+ getSource(sourceId: string): KnowledgeSource | undefined;
4477
+ /** Index (insert or replace) a document into the source's adapter. */
4478
+ indexDocument(sourceId: string, doc: KnowledgeDocument): Promise<void>;
4479
+ /** Remove a document from the source's adapter. */
4480
+ deleteDocument(sourceId: string, documentId: string): Promise<void>;
4481
+ /**
4482
+ * Bulk reindex a source from its declared origin. Object sources
4483
+ * walk the underlying object via `IDataEngine`; file / http sources
4484
+ * delegate to the adapter's own ingestion.
4485
+ */
4486
+ reindexSource(sourceId: string, opts?: KnowledgeReindexOptions): Promise<KnowledgeReindexResult>;
4487
+ /**
4488
+ * Run a search across one or more sources. Results are
4489
+ * permission-filtered before being returned (see
4490
+ * `KnowledgeSearchOptions.executionContext`).
4491
+ */
4492
+ search(query: string, opts?: KnowledgeSearchOptions): Promise<KnowledgeHit[]>;
4493
+ }
4494
+ /** Canonical service-registry id used by `IKnowledgeService` consumers. */
4495
+ declare const KNOWLEDGE_SERVICE: "knowledge";
4496
+
4299
4497
  /**
4300
4498
  * ITursoPlatformService - Turso Platform API Contract
4301
4499
  *
@@ -5103,4 +5301,4 @@ interface IClusterService {
5103
5301
  close(): Promise<void>;
5104
5302
  }
5105
5303
 
5106
- export type { AIConversation, AIMessage, AIMessageWithTools, AIObjectResult, AIRequestOptions, AIRequestOptionsWithTools, AIResult, AIStreamEvent, AIToolCall, AIToolDefinition, AIToolResult, AnalyticsQuery, AnalyticsResult, AnalyticsStrategy, ApprovalActionRow, ApprovalDecisionInput, ApprovalDecisionResult, ApprovalProcessRow, ApprovalRequestRow, ApprovalStatus, AuthResult, AuthSession, AuthUser, AutomationContext, AutomationResult, CacheStats, ChatWithToolsOptions, CheckNamespaceInput, CheckNamespaceResult, ClusterCallContext, CounterIncrOptions, CreateExportJobInput, CreateExportJobResult, CreateFeedItemInput, CreateTursoDatabaseOptions, CryptoContext, CryptoHandle, CubeMeta, DefineApprovalProcessInput, DefineSharingRuleInput, DeployExecutionResult, DriverCapabilities, DriverInterface, EmailAddress, EmailAttachment, EmailDeliveryStatus, ExecuteUpgradeInput, ExportJobDownload, ExportJobListResult, FeedListResult, GenerateObjectOptions, GrantShareInput, GraphQLRequest, GraphQLResponse, HealthStatus, IAIConversationService, IAIService, IAdvancedServiceRegistry, IAnalyticsService, IAppLifecycleService, IApprovalService, IAuthService, IAutomationService, IBasicServiceRegistry, ICacheService, IClusterService, ICounter, ICryptoProvider, IDataDriver, IDataEngine, IDepartmentGraphService, IDeployPipelineService, IEmailService, IEmailTransport, IExportService, IFeedService, IGraphQLService, IHttpRequest, IHttpResponse, IHttpServer, II18nService, IJobService, IKV, ILock, IMetadataService, INotificationService, IPackageService, IPluginLifecycleEvents, IPluginValidator, IProvisioningService, IPubSub, IQueueService, IRealtimeService, IReportService, ISchemaDiffService, ISchemaDriver, ISearchService, ISeedLoaderService, IServiceRegistry, ISharingRuleService, ISharingService, IStartupOrchestrator, IStorageService, ITeamGraphService, ITenantRouter, ITursoPlatformService, ITypedEventEmitter, IUIService, IWorkflowService, InstallPackageInput, InstallPackageResult, IntrospectedColumn, IntrospectedIndex, IntrospectedSchema, IntrospectedTable, JobExecution, JobHandler, JobSchedule, KVEntry, KVSetOptions, LLMAdapter, ListExportJobsOptions, ListFeedOptions, LockAcquireOptions, LockHandle, Logger, MetadataExportOptions, MetadataImportOptions, MetadataImportResult, MetadataTypeInfo, MetadataWatchCallback, MetadataWatchHandle, Middleware, MigrationApplyResult, NormalizedEmailMessage, NotificationChannel, NotificationMessage, NotificationResult, PendingActionRow, PendingActionStatus, PlanUpgradeInput, Plugin, PluginStartupResult, PresignedDownloadDescriptor, PresignedUploadDescriptor, ProposePendingActionInput, PubSubHandler, PubSubMessage, PublishOptions, QueueBackoffPolicy, QueueHandler, QueueMessage, QueueMessageRecord, QueuePublishOptions, RealtimeEventHandler, RealtimeEventPayload, RealtimeSubscriptionFilter, RealtimeSubscriptionOptions, RecordShare, ReportFormat, ReportQuery, ReportRunResult, ReportSchedule, ResolveDependenciesInput, ResolvedTenantContext, RollbackInput, RouteHandler, SaveReportInput, SavedReport, ScheduleExportInput, ScheduleReportInput, SearchHit, SearchOptions, SearchResult, SendEmailInput, SendEmailResult, SendTemplateInput, ShareAccessLevel, ShareRecipientType, ShareSource, SharingExecutionContext, SharingRuleEvaluationResult, SharingRuleRecipientType, SharingRuleRow, StartupOptions, StorageFileInfo, StorageUploadOptions, StrategyContext, SubmitApprovalInput, SubscribeInput, SubscribeOptions, TransportSendResult, TursoDatabaseInfo, TursoTokenResult, TursoTokenScope, Unsubscribe, UpdateFeedItemInput, UploadArtifactInput, UploadArtifactResult, ValidationResult, WorkflowStatus, WorkflowTransition, WorkflowTransitionResult };
5304
+ export { type AIConversation, type AIMessage, type AIMessageWithTools, type AIObjectResult, type AIRequestOptions, type AIRequestOptionsWithTools, type AIResult, type AIStreamEvent, type AIToolCall, type AIToolDefinition, type AIToolResult, type AdapterContext, type AdapterSearchOptions, type AnalyticsQuery, type AnalyticsResult, type AnalyticsStrategy, type ApprovalActionRow, type ApprovalDecisionInput, type ApprovalDecisionResult, type ApprovalProcessRow, type ApprovalRequestRow, type ApprovalStatus, type AuthResult, type AuthSession, type AuthUser, type AutomationContext, type AutomationResult, type CacheStats, type ChatWithToolsOptions, type CheckNamespaceInput, type CheckNamespaceResult, type ClusterCallContext, type CounterIncrOptions, type CreateExportJobInput, type CreateExportJobResult, type CreateFeedItemInput, type CreateTursoDatabaseOptions, type CryptoContext, type CryptoHandle, type CubeMeta, type DefineApprovalProcessInput, type DefineSharingRuleInput, type DeployExecutionResult, type DriverCapabilities, type DriverInterface, type EmailAddress, type EmailAttachment, type EmailDeliveryStatus, type ExecuteUpgradeInput, type ExportJobDownload, type ExportJobListResult, type FeedListResult, type GenerateObjectOptions, type GrantShareInput, type GraphQLRequest, type GraphQLResponse, type HealthStatus, type IAIConversationService, type IAIService, type IAdvancedServiceRegistry, type IAnalyticsService, type IAppLifecycleService, type IApprovalService, type IAuthService, type IAutomationService, type IBasicServiceRegistry, type ICacheService, type IClusterService, type ICounter, type ICryptoProvider, type IDataDriver, type IDataEngine, type IDepartmentGraphService, type IDeployPipelineService, type IEmailService, type IEmailTransport, type IExportService, type IFeedService, type IGraphQLService, type IHttpRequest, type IHttpResponse, type IHttpServer, type II18nService, type IJobService, type IKV, type IKnowledgeAdapter, type IKnowledgeService, type ILock, type IMetadataService, type INotificationService, type IPackageService, type IPluginLifecycleEvents, type IPluginValidator, type IProvisioningService, type IPubSub, type IQueueService, type IRealtimeService, type IReportService, type ISchemaDiffService, type ISchemaDriver, type ISearchService, type ISeedLoaderService, type IServiceRegistry, type ISharingRuleService, type ISharingService, type IStartupOrchestrator, type IStorageService, type ITeamGraphService, type ITenantRouter, type ITursoPlatformService, type ITypedEventEmitter, type IUIService, type IWorkflowService, type InstallPackageInput, type InstallPackageResult, type IntrospectedColumn, type IntrospectedIndex, type IntrospectedSchema, type IntrospectedTable, type JobExecution, type JobHandler, type JobSchedule, KNOWLEDGE_SERVICE, type KVEntry, type KVSetOptions, type KnowledgeReindexOptions, type KnowledgeReindexResult, type KnowledgeSearchOptions, type LLMAdapter, type ListExportJobsOptions, type ListFeedOptions, type LockAcquireOptions, type LockHandle, type Logger, type MetadataExportOptions, type MetadataImportOptions, type MetadataImportResult, type MetadataTypeInfo, type MetadataWatchCallback, type MetadataWatchHandle, type Middleware, type MigrationApplyResult, type NormalizedEmailMessage, type NotificationChannel, type NotificationMessage, type NotificationResult, type PendingActionRow, type PendingActionStatus, type PlanUpgradeInput, type Plugin, type PluginStartupResult, type PresignedDownloadDescriptor, type PresignedUploadDescriptor, type ProposePendingActionInput, type PubSubHandler, type PubSubMessage, type PublishOptions, type QueueBackoffPolicy, type QueueHandler, type QueueMessage, type QueueMessageRecord, type QueuePublishOptions, type RealtimeEventHandler, type RealtimeEventPayload, type RealtimeSubscriptionFilter, type RealtimeSubscriptionOptions, type RecordShare, type ReportFormat, type ReportQuery, type ReportRunResult, type ReportSchedule, type ResolveDependenciesInput, type ResolvedTenantContext, type RollbackInput, type RouteHandler, type SaveReportInput, type SavedReport, type ScheduleExportInput, type ScheduleReportInput, type SearchHit, type SearchOptions, type SearchResult, type SendEmailInput, type SendEmailResult, type SendTemplateInput, type ShareAccessLevel, type ShareRecipientType, type ShareSource, type SharingExecutionContext, type SharingRuleEvaluationResult, type SharingRuleRecipientType, type SharingRuleRow, type StartupOptions, type StorageFileInfo, type StorageUploadOptions, type StrategyContext, type SubmitApprovalInput, type SubscribeInput, type SubscribeOptions, type ToolExecutionContext, type TransportSendResult, type TursoDatabaseInfo, type TursoTokenResult, type TursoTokenScope, type Unsubscribe, type UpdateFeedItemInput, type UploadArtifactInput, type UploadArtifactResult, type ValidationResult, type WorkflowStatus, type WorkflowTransition, type WorkflowTransitionResult };
@@ -1,4 +1,8 @@
1
1
  'use strict';
2
2
 
3
+ // src/contracts/knowledge-service.ts
4
+ var KNOWLEDGE_SERVICE = "knowledge";
5
+
6
+ exports.KNOWLEDGE_SERVICE = KNOWLEDGE_SERVICE;
3
7
  //# sourceMappingURL=index.js.map
4
8
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
1
+ {"version":3,"sources":["../../src/contracts/knowledge-service.ts"],"names":[],"mappings":";;;AAgHO,IAAM,iBAAA,GAAoB","file":"index.js","sourcesContent":["// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport type { ExecutionContext } from '../kernel/execution-context.zod';\nimport type {\n KnowledgeDocument,\n KnowledgeHit,\n} from '../ai/knowledge-document.zod';\nimport type { KnowledgeSource } from '../ai/knowledge-source.zod';\nimport type { IKnowledgeAdapter } from './knowledge-adapter';\n\n/**\n * `IKnowledgeService` — orchestrator contract consumed by REST,\n * `service-ai`, Studio, and custom plugins. Implemented by\n * `@objectstack/service-knowledge`.\n *\n * The service routes requests to one of many `IKnowledgeAdapter`\n * plugins (RAGFlow, LlamaIndex, Dify, …), wraps search results with a\n * permission-aware filter that uses the caller's `ExecutionContext`,\n * and drives event-based sync from ObjectQL.\n *\n * See `content/docs/protocol/knowledge.mdx` for the architecture\n * rationale.\n */\n\n/** Options accepted by `IKnowledgeService.search`. */\nexport interface KnowledgeSearchOptions {\n /**\n * Restrict the search to the given source ids. When omitted, every\n * source the caller is allowed to see is queried.\n */\n sourceIds?: string[];\n /** Max number of hits to return. Adapters may cap further. */\n topK?: number;\n /** Adapter-specific filter (passed opaquely). */\n filter?: Record<string, unknown>;\n /**\n * Execution context of the caller. **Required** for permission-aware\n * retrieval: hits whose `sourceRecordId` would be filtered out by\n * RLS are dropped before being returned. Internal callers may pass\n * an `isSystem: true` context to bypass — same convention as\n * `IDataEngine`.\n */\n executionContext?: ExecutionContext;\n}\n\n/** Options accepted by `IKnowledgeService.reindexSource`. */\nexport interface KnowledgeReindexOptions {\n /** When `true`, walk the source and count but do not call the adapter. */\n dryRun?: boolean;\n /** Cap on number of documents to reindex (mostly for tests / smoke runs). */\n limit?: number;\n}\n\n/** Result of a `reindexSource` call. */\nexport interface KnowledgeReindexResult {\n /** Number of documents pushed to the adapter (0 when dryRun). */\n indexed: number;\n /** Number of documents discovered (always populated). */\n discovered: number;\n /** When applicable, the underlying object's short name. */\n object?: string;\n /** When `false`, an adapter / source check prevented the run. */\n ok: boolean;\n /** Free-form diagnostics. */\n message?: string;\n}\n\n/**\n * Core service contract.\n *\n * Every adapter plugin calls `registerAdapter(id, this)` during its\n * `start()` hook. Sources reference adapters by id; unknown ids cause\n * `search` / `indexDocument` to throw early with a clear error.\n */\nexport interface IKnowledgeService {\n /** Register (or replace) an adapter under the given id. */\n registerAdapter(id: string, adapter: IKnowledgeAdapter): void;\n /** Resolve an adapter by id. Throws when unknown. */\n getAdapter(id: string): IKnowledgeAdapter;\n /** Enumerate registered adapter ids. */\n listAdapters(): string[];\n\n /** Register a logical knowledge source. */\n registerSource(source: KnowledgeSource): void;\n /** Remove a registered source. Does not delete underlying data. */\n unregisterSource(sourceId: string): void;\n /** Snapshot of registered sources (read-only). */\n listSources(): KnowledgeSource[];\n /** Look up a single source. Returns `undefined` when not registered. */\n getSource(sourceId: string): KnowledgeSource | undefined;\n\n /** Index (insert or replace) a document into the source's adapter. */\n indexDocument(sourceId: string, doc: KnowledgeDocument): Promise<void>;\n /** Remove a document from the source's adapter. */\n deleteDocument(sourceId: string, documentId: string): Promise<void>;\n\n /**\n * Bulk reindex a source from its declared origin. Object sources\n * walk the underlying object via `IDataEngine`; file / http sources\n * delegate to the adapter's own ingestion.\n */\n reindexSource(sourceId: string, opts?: KnowledgeReindexOptions): Promise<KnowledgeReindexResult>;\n\n /**\n * Run a search across one or more sources. Results are\n * permission-filtered before being returned (see\n * `KnowledgeSearchOptions.executionContext`).\n */\n search(query: string, opts?: KnowledgeSearchOptions): Promise<KnowledgeHit[]>;\n}\n\n/** Canonical service-registry id used by `IKnowledgeService` consumers. */\nexport const KNOWLEDGE_SERVICE = 'knowledge' as const;\n"]}
@@ -1,3 +1,6 @@
1
+ // src/contracts/knowledge-service.ts
2
+ var KNOWLEDGE_SERVICE = "knowledge";
1
3
 
4
+ export { KNOWLEDGE_SERVICE };
2
5
  //# sourceMappingURL=index.mjs.map
3
6
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs"}
1
+ {"version":3,"sources":["../../src/contracts/knowledge-service.ts"],"names":[],"mappings":";AAgHO,IAAM,iBAAA,GAAoB","file":"index.mjs","sourcesContent":["// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.\n\nimport type { ExecutionContext } from '../kernel/execution-context.zod';\nimport type {\n KnowledgeDocument,\n KnowledgeHit,\n} from '../ai/knowledge-document.zod';\nimport type { KnowledgeSource } from '../ai/knowledge-source.zod';\nimport type { IKnowledgeAdapter } from './knowledge-adapter';\n\n/**\n * `IKnowledgeService` — orchestrator contract consumed by REST,\n * `service-ai`, Studio, and custom plugins. Implemented by\n * `@objectstack/service-knowledge`.\n *\n * The service routes requests to one of many `IKnowledgeAdapter`\n * plugins (RAGFlow, LlamaIndex, Dify, …), wraps search results with a\n * permission-aware filter that uses the caller's `ExecutionContext`,\n * and drives event-based sync from ObjectQL.\n *\n * See `content/docs/protocol/knowledge.mdx` for the architecture\n * rationale.\n */\n\n/** Options accepted by `IKnowledgeService.search`. */\nexport interface KnowledgeSearchOptions {\n /**\n * Restrict the search to the given source ids. When omitted, every\n * source the caller is allowed to see is queried.\n */\n sourceIds?: string[];\n /** Max number of hits to return. Adapters may cap further. */\n topK?: number;\n /** Adapter-specific filter (passed opaquely). */\n filter?: Record<string, unknown>;\n /**\n * Execution context of the caller. **Required** for permission-aware\n * retrieval: hits whose `sourceRecordId` would be filtered out by\n * RLS are dropped before being returned. Internal callers may pass\n * an `isSystem: true` context to bypass — same convention as\n * `IDataEngine`.\n */\n executionContext?: ExecutionContext;\n}\n\n/** Options accepted by `IKnowledgeService.reindexSource`. */\nexport interface KnowledgeReindexOptions {\n /** When `true`, walk the source and count but do not call the adapter. */\n dryRun?: boolean;\n /** Cap on number of documents to reindex (mostly for tests / smoke runs). */\n limit?: number;\n}\n\n/** Result of a `reindexSource` call. */\nexport interface KnowledgeReindexResult {\n /** Number of documents pushed to the adapter (0 when dryRun). */\n indexed: number;\n /** Number of documents discovered (always populated). */\n discovered: number;\n /** When applicable, the underlying object's short name. */\n object?: string;\n /** When `false`, an adapter / source check prevented the run. */\n ok: boolean;\n /** Free-form diagnostics. */\n message?: string;\n}\n\n/**\n * Core service contract.\n *\n * Every adapter plugin calls `registerAdapter(id, this)` during its\n * `start()` hook. Sources reference adapters by id; unknown ids cause\n * `search` / `indexDocument` to throw early with a clear error.\n */\nexport interface IKnowledgeService {\n /** Register (or replace) an adapter under the given id. */\n registerAdapter(id: string, adapter: IKnowledgeAdapter): void;\n /** Resolve an adapter by id. Throws when unknown. */\n getAdapter(id: string): IKnowledgeAdapter;\n /** Enumerate registered adapter ids. */\n listAdapters(): string[];\n\n /** Register a logical knowledge source. */\n registerSource(source: KnowledgeSource): void;\n /** Remove a registered source. Does not delete underlying data. */\n unregisterSource(sourceId: string): void;\n /** Snapshot of registered sources (read-only). */\n listSources(): KnowledgeSource[];\n /** Look up a single source. Returns `undefined` when not registered. */\n getSource(sourceId: string): KnowledgeSource | undefined;\n\n /** Index (insert or replace) a document into the source's adapter. */\n indexDocument(sourceId: string, doc: KnowledgeDocument): Promise<void>;\n /** Remove a document from the source's adapter. */\n deleteDocument(sourceId: string, documentId: string): Promise<void>;\n\n /**\n * Bulk reindex a source from its declared origin. Object sources\n * walk the underlying object via `IDataEngine`; file / http sources\n * delegate to the adapter's own ingestion.\n */\n reindexSource(sourceId: string, opts?: KnowledgeReindexOptions): Promise<KnowledgeReindexResult>;\n\n /**\n * Run a search across one or more sources. Results are\n * permission-filtered before being returned (see\n * `KnowledgeSearchOptions.executionContext`).\n */\n search(query: string, opts?: KnowledgeSearchOptions): Promise<KnowledgeHit[]>;\n}\n\n/** Canonical service-registry id used by `IKnowledgeService` consumers. */\nexport const KNOWLEDGE_SERVICE = 'knowledge' as const;\n"]}
@@ -2578,4 +2578,17 @@ declare const ManifestSchema: z.ZodObject<{
2578
2578
  type ObjectStackManifest = z.infer<typeof ManifestSchema>;
2579
2579
  type ObjectStackManifestInput = z.input<typeof ManifestSchema>;
2580
2580
 
2581
- export { MetadataValidationResultSchema as $, type ArtifactChecksum as A, MetadataChangeTypeSchema as B, type CustomizationOrigin as C, DEFAULT_METADATA_TYPE_REGISTRY as D, type MetadataDependency as E, type FieldChange as F, MetadataDependencySchema as G, type MetadataDiffItem as H, MetadataDiffItemSchema as I, type MetadataEvent as J, MetadataEventSchema as K, type MetadataOverlay as L, ManifestSchema as M, MetadataOverlaySchema as N, type MetadataPluginConfig as O, MetadataPluginConfigSchema as P, type MetadataPluginManifest as Q, MetadataPluginManifestSchema as R, type MetadataQuery as S, type MetadataQueryResult as T, MetadataQueryResultSchema as U, MetadataQuerySchema as V, type MetadataType as W, type MetadataTypeRegistryEntry as X, MetadataTypeRegistryEntrySchema as Y, MetadataTypeSchema as Z, type MetadataValidationResult as _, ArtifactChecksumSchema as a, type ObjectStackManifest as a0, type ObjectStackManifestInput as a1, type PackageArtifact as a2, type PackageArtifactInput as a3, PackageArtifactSchema as a4, type RequiredAction as a5, RequiredActionSchema as a6, type ResolvedDependency as a7, ResolvedDependencySchema as a8, type RollbackPackageRequest as a9, RollbackPackageRequestSchema as aa, type RollbackPackageResponse as ab, RollbackPackageResponseSchema as ac, type UpgradeImpactLevel as ad, UpgradeImpactLevelSchema as ae, type UpgradePackageRequest as af, UpgradePackageRequestSchema as ag, type UpgradePackageResponse as ah, UpgradePackageResponseSchema as ai, type UpgradePhase as aj, UpgradePhaseSchema as ak, type UpgradePlan as al, UpgradePlanSchema as am, type UpgradeSnapshot as an, UpgradeSnapshotSchema as ao, type ArtifactFileEntry as b, ArtifactFileEntrySchema as c, type ArtifactSignature as d, ArtifactSignatureSchema as e, CustomizationOriginSchema as f, type CustomizationPolicy as g, CustomizationPolicySchema as h, type DependencyResolutionResult as i, DependencyResolutionResultSchema as j, type DependencyStatus as k, DependencyStatusEnum as l, FieldChangeSchema as m, type MergeConflict as n, MergeConflictSchema as o, type MergeResult as p, MergeResultSchema as q, type MergeStrategyConfig as r, MergeStrategyConfigSchema as s, type MetadataBulkRegisterRequest as t, MetadataBulkRegisterRequestSchema as u, type MetadataBulkResult as v, MetadataBulkResultSchema as w, type MetadataCategory as x, MetadataCategoryEnum as y, type MetadataChangeType as z };
2581
+ declare const ExecutionContextSchema: z.ZodObject<{
2582
+ userId: z.ZodOptional<z.ZodString>;
2583
+ tenantId: z.ZodOptional<z.ZodString>;
2584
+ roles: z.ZodDefault<z.ZodArray<z.ZodString>>;
2585
+ permissions: z.ZodDefault<z.ZodArray<z.ZodString>>;
2586
+ org_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
2587
+ isSystem: z.ZodDefault<z.ZodBoolean>;
2588
+ accessToken: z.ZodOptional<z.ZodString>;
2589
+ transaction: z.ZodOptional<z.ZodUnknown>;
2590
+ traceId: z.ZodOptional<z.ZodString>;
2591
+ }, z.core.$strip>;
2592
+ type ExecutionContext = z.infer<typeof ExecutionContextSchema>;
2593
+
2594
+ export { MetadataTypeSchema as $, type ArtifactChecksum as A, type MetadataChangeType as B, type CustomizationOrigin as C, DEFAULT_METADATA_TYPE_REGISTRY as D, type ExecutionContext as E, type FieldChange as F, MetadataChangeTypeSchema as G, type MetadataDependency as H, MetadataDependencySchema as I, type MetadataDiffItem as J, MetadataDiffItemSchema as K, type MetadataEvent as L, ManifestSchema as M, MetadataEventSchema as N, type MetadataOverlay as O, MetadataOverlaySchema as P, type MetadataPluginConfig as Q, MetadataPluginConfigSchema as R, type MetadataPluginManifest as S, MetadataPluginManifestSchema as T, type MetadataQuery as U, type MetadataQueryResult as V, MetadataQueryResultSchema as W, MetadataQuerySchema as X, type MetadataType as Y, type MetadataTypeRegistryEntry as Z, MetadataTypeRegistryEntrySchema as _, ArtifactChecksumSchema as a, type MetadataValidationResult as a0, MetadataValidationResultSchema as a1, type ObjectStackManifest as a2, type ObjectStackManifestInput as a3, type PackageArtifact as a4, type PackageArtifactInput as a5, PackageArtifactSchema as a6, type RequiredAction as a7, RequiredActionSchema as a8, type ResolvedDependency as a9, ResolvedDependencySchema as aa, type RollbackPackageRequest as ab, RollbackPackageRequestSchema as ac, type RollbackPackageResponse as ad, RollbackPackageResponseSchema as ae, type UpgradeImpactLevel as af, UpgradeImpactLevelSchema as ag, type UpgradePackageRequest as ah, UpgradePackageRequestSchema as ai, type UpgradePackageResponse as aj, UpgradePackageResponseSchema as ak, type UpgradePhase as al, UpgradePhaseSchema as am, type UpgradePlan as an, UpgradePlanSchema as ao, type UpgradeSnapshot as ap, UpgradeSnapshotSchema as aq, type ArtifactFileEntry as b, ArtifactFileEntrySchema as c, type ArtifactSignature as d, ArtifactSignatureSchema as e, CustomizationOriginSchema as f, type CustomizationPolicy as g, CustomizationPolicySchema as h, type DependencyResolutionResult as i, DependencyResolutionResultSchema as j, type DependencyStatus as k, DependencyStatusEnum as l, ExecutionContextSchema as m, FieldChangeSchema as n, type MergeConflict as o, MergeConflictSchema as p, type MergeResult as q, MergeResultSchema as r, type MergeStrategyConfig as s, MergeStrategyConfigSchema as t, type MetadataBulkRegisterRequest as u, MetadataBulkRegisterRequestSchema as v, type MetadataBulkResult as w, MetadataBulkResultSchema as x, type MetadataCategory as y, MetadataCategoryEnum as z };
@@ -2578,4 +2578,17 @@ declare const ManifestSchema: z.ZodObject<{
2578
2578
  type ObjectStackManifest = z.infer<typeof ManifestSchema>;
2579
2579
  type ObjectStackManifestInput = z.input<typeof ManifestSchema>;
2580
2580
 
2581
- export { MetadataValidationResultSchema as $, type ArtifactChecksum as A, MetadataChangeTypeSchema as B, type CustomizationOrigin as C, DEFAULT_METADATA_TYPE_REGISTRY as D, type MetadataDependency as E, type FieldChange as F, MetadataDependencySchema as G, type MetadataDiffItem as H, MetadataDiffItemSchema as I, type MetadataEvent as J, MetadataEventSchema as K, type MetadataOverlay as L, ManifestSchema as M, MetadataOverlaySchema as N, type MetadataPluginConfig as O, MetadataPluginConfigSchema as P, type MetadataPluginManifest as Q, MetadataPluginManifestSchema as R, type MetadataQuery as S, type MetadataQueryResult as T, MetadataQueryResultSchema as U, MetadataQuerySchema as V, type MetadataType as W, type MetadataTypeRegistryEntry as X, MetadataTypeRegistryEntrySchema as Y, MetadataTypeSchema as Z, type MetadataValidationResult as _, ArtifactChecksumSchema as a, type ObjectStackManifest as a0, type ObjectStackManifestInput as a1, type PackageArtifact as a2, type PackageArtifactInput as a3, PackageArtifactSchema as a4, type RequiredAction as a5, RequiredActionSchema as a6, type ResolvedDependency as a7, ResolvedDependencySchema as a8, type RollbackPackageRequest as a9, RollbackPackageRequestSchema as aa, type RollbackPackageResponse as ab, RollbackPackageResponseSchema as ac, type UpgradeImpactLevel as ad, UpgradeImpactLevelSchema as ae, type UpgradePackageRequest as af, UpgradePackageRequestSchema as ag, type UpgradePackageResponse as ah, UpgradePackageResponseSchema as ai, type UpgradePhase as aj, UpgradePhaseSchema as ak, type UpgradePlan as al, UpgradePlanSchema as am, type UpgradeSnapshot as an, UpgradeSnapshotSchema as ao, type ArtifactFileEntry as b, ArtifactFileEntrySchema as c, type ArtifactSignature as d, ArtifactSignatureSchema as e, CustomizationOriginSchema as f, type CustomizationPolicy as g, CustomizationPolicySchema as h, type DependencyResolutionResult as i, DependencyResolutionResultSchema as j, type DependencyStatus as k, DependencyStatusEnum as l, FieldChangeSchema as m, type MergeConflict as n, MergeConflictSchema as o, type MergeResult as p, MergeResultSchema as q, type MergeStrategyConfig as r, MergeStrategyConfigSchema as s, type MetadataBulkRegisterRequest as t, MetadataBulkRegisterRequestSchema as u, type MetadataBulkResult as v, MetadataBulkResultSchema as w, type MetadataCategory as x, MetadataCategoryEnum as y, type MetadataChangeType as z };
2581
+ declare const ExecutionContextSchema: z.ZodObject<{
2582
+ userId: z.ZodOptional<z.ZodString>;
2583
+ tenantId: z.ZodOptional<z.ZodString>;
2584
+ roles: z.ZodDefault<z.ZodArray<z.ZodString>>;
2585
+ permissions: z.ZodDefault<z.ZodArray<z.ZodString>>;
2586
+ org_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
2587
+ isSystem: z.ZodDefault<z.ZodBoolean>;
2588
+ accessToken: z.ZodOptional<z.ZodString>;
2589
+ transaction: z.ZodOptional<z.ZodUnknown>;
2590
+ traceId: z.ZodOptional<z.ZodString>;
2591
+ }, z.core.$strip>;
2592
+ type ExecutionContext = z.infer<typeof ExecutionContextSchema>;
2593
+
2594
+ export { MetadataTypeSchema as $, type ArtifactChecksum as A, type MetadataChangeType as B, type CustomizationOrigin as C, DEFAULT_METADATA_TYPE_REGISTRY as D, type ExecutionContext as E, type FieldChange as F, MetadataChangeTypeSchema as G, type MetadataDependency as H, MetadataDependencySchema as I, type MetadataDiffItem as J, MetadataDiffItemSchema as K, type MetadataEvent as L, ManifestSchema as M, MetadataEventSchema as N, type MetadataOverlay as O, MetadataOverlaySchema as P, type MetadataPluginConfig as Q, MetadataPluginConfigSchema as R, type MetadataPluginManifest as S, MetadataPluginManifestSchema as T, type MetadataQuery as U, type MetadataQueryResult as V, MetadataQueryResultSchema as W, MetadataQuerySchema as X, type MetadataType as Y, type MetadataTypeRegistryEntry as Z, MetadataTypeRegistryEntrySchema as _, ArtifactChecksumSchema as a, type MetadataValidationResult as a0, MetadataValidationResultSchema as a1, type ObjectStackManifest as a2, type ObjectStackManifestInput as a3, type PackageArtifact as a4, type PackageArtifactInput as a5, PackageArtifactSchema as a6, type RequiredAction as a7, RequiredActionSchema as a8, type ResolvedDependency as a9, ResolvedDependencySchema as aa, type RollbackPackageRequest as ab, RollbackPackageRequestSchema as ac, type RollbackPackageResponse as ad, RollbackPackageResponseSchema as ae, type UpgradeImpactLevel as af, UpgradeImpactLevelSchema as ag, type UpgradePackageRequest as ah, UpgradePackageRequestSchema as ai, type UpgradePackageResponse as aj, UpgradePackageResponseSchema as ak, type UpgradePhase as al, UpgradePhaseSchema as am, type UpgradePlan as an, UpgradePlanSchema as ao, type UpgradeSnapshot as ap, UpgradeSnapshotSchema as aq, type ArtifactFileEntry as b, ArtifactFileEntrySchema as c, type ArtifactSignature as d, ArtifactSignatureSchema as e, CustomizationOriginSchema as f, type CustomizationPolicy as g, CustomizationPolicySchema as h, type DependencyResolutionResult as i, DependencyResolutionResultSchema as j, type DependencyStatus as k, DependencyStatusEnum as l, ExecutionContextSchema as m, FieldChangeSchema as n, type MergeConflict as o, MergeConflictSchema as p, type MergeResult as q, MergeResultSchema as r, type MergeStrategyConfig as s, MergeStrategyConfigSchema as t, type MetadataBulkRegisterRequest as u, MetadataBulkRegisterRequestSchema as v, type MetadataBulkResult as w, MetadataBulkResultSchema as x, type MetadataCategory as y, MetadataCategoryEnum as z };