@objectstack/spec 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/conversation.zod.d.ts +1059 -0
- package/dist/ai/conversation.zod.d.ts.map +1 -0
- package/dist/ai/conversation.zod.js +248 -0
- package/dist/ai/cost.zod.d.ts +2025 -0
- package/dist/ai/cost.zod.d.ts.map +1 -0
- package/dist/ai/cost.zod.js +324 -0
- package/dist/ai/index.d.ts +8 -0
- package/dist/ai/index.d.ts.map +1 -1
- package/dist/ai/index.js +8 -0
- package/dist/ai/model-registry.zod.d.ts +53 -53
- package/dist/ai/nlq.zod.d.ts +24 -24
- package/dist/ai/predictive.zod.d.ts +838 -0
- package/dist/ai/predictive.zod.d.ts.map +1 -0
- package/dist/ai/predictive.zod.js +244 -0
- package/dist/ai/rag-pipeline.zod.d.ts +22 -22
- package/dist/ai/workflow-automation.zod.d.ts +590 -0
- package/dist/ai/workflow-automation.zod.d.ts.map +1 -0
- package/dist/ai/workflow-automation.zod.js +197 -0
- package/dist/api/contract.zod.d.ts +22 -22
- package/dist/data/field.zod.d.ts +409 -4
- package/dist/data/field.zod.d.ts.map +1 -1
- package/dist/data/field.zod.js +28 -2
- package/dist/data/mapping.zod.d.ts +6 -6
- package/dist/data/object.zod.d.ts +80 -10
- package/dist/data/object.zod.d.ts.map +1 -1
- package/dist/data/workflow.zod.d.ts +809 -18
- package/dist/data/workflow.zod.d.ts.map +1 -1
- package/dist/data/workflow.zod.js +115 -7
- package/dist/system/api.zod.d.ts +4 -4
- package/dist/system/audit.zod.d.ts +1172 -0
- package/dist/system/audit.zod.d.ts.map +1 -0
- package/dist/system/audit.zod.js +596 -0
- package/dist/system/auth.zod.d.ts +8 -8
- package/dist/system/driver.zod.d.ts +4 -4
- package/dist/system/events.zod.d.ts +177 -0
- package/dist/system/events.zod.d.ts.map +1 -0
- package/dist/system/events.zod.js +51 -0
- package/dist/system/identity.zod.d.ts +4 -4
- package/dist/system/index.d.ts +5 -0
- package/dist/system/index.d.ts.map +1 -1
- package/dist/system/index.js +5 -0
- package/dist/system/job.zod.d.ts +237 -0
- package/dist/system/job.zod.d.ts.map +1 -0
- package/dist/system/job.zod.js +82 -0
- package/dist/system/manifest.zod.d.ts +10 -10
- package/dist/system/realtime.zod.d.ts +135 -0
- package/dist/system/realtime.zod.d.ts.map +1 -0
- package/dist/system/realtime.zod.js +83 -0
- package/dist/system/tenant.zod.d.ts +1151 -0
- package/dist/system/tenant.zod.d.ts.map +1 -0
- package/dist/system/tenant.zod.js +498 -0
- package/dist/system/webhook.zod.d.ts +2 -2
- package/dist/ui/action.zod.d.ts +8 -8
- package/dist/ui/theme.zod.d.ts +12 -12
- package/dist/ui/view.zod.d.ts +2315 -54
- package/dist/ui/view.zod.d.ts.map +1 -1
- package/dist/ui/view.zod.js +102 -3
- package/dist/ui/widget.zod.d.ts +40 -5
- package/dist/ui/widget.zod.d.ts.map +1 -1
- package/json-schema/README.md +127 -0
- package/json-schema/ai/AITask.json +123 -0
- package/json-schema/ai/AITaskType.json +21 -0
- package/json-schema/ai/AIWorkflowAutomation.json +379 -0
- package/json-schema/ai/AIWorkflowExecutionResult.json +105 -0
- package/json-schema/ai/AIWorkflowTrigger.json +18 -0
- package/json-schema/ai/BatchAIWorkflowExecution.json +48 -0
- package/json-schema/ai/BillingPeriod.json +18 -0
- package/json-schema/ai/BudgetLimit.json +111 -0
- package/json-schema/ai/BudgetStatus.json +91 -0
- package/json-schema/ai/BudgetType.json +17 -0
- package/json-schema/ai/ConversationAnalytics.json +86 -0
- package/json-schema/ai/ConversationContext.json +48 -0
- package/json-schema/ai/ConversationMessage.json +209 -0
- package/json-schema/ai/ConversationSession.json +458 -0
- package/json-schema/ai/ConversationSummary.json +73 -0
- package/json-schema/ai/CostAlert.json +107 -0
- package/json-schema/ai/CostAlertType.json +16 -0
- package/json-schema/ai/CostAnalytics.json +589 -0
- package/json-schema/ai/CostBreakdownDimension.json +20 -0
- package/json-schema/ai/CostBreakdownEntry.json +60 -0
- package/json-schema/ai/CostEntry.json +106 -0
- package/json-schema/ai/CostMetricType.json +17 -0
- package/json-schema/ai/CostOptimizationRecommendation.json +100 -0
- package/json-schema/ai/CostQueryFilters.json +112 -0
- package/json-schema/ai/CostReport.json +964 -0
- package/json-schema/ai/EvaluationMetrics.json +64 -0
- package/json-schema/ai/FunctionCall.json +28 -0
- package/json-schema/ai/Hyperparameters.json +80 -0
- package/json-schema/ai/MessageContent.json +46 -0
- package/json-schema/ai/MessageContentType.json +16 -0
- package/json-schema/ai/MessagePruningEvent.json +92 -0
- package/json-schema/ai/MessageRole.json +16 -0
- package/json-schema/ai/ModelDrift.json +73 -0
- package/json-schema/ai/ModelFeature.json +71 -0
- package/json-schema/ai/PostProcessingAction.json +41 -0
- package/json-schema/ai/PredictionRequest.json +39 -0
- package/json-schema/ai/PredictionResult.json +82 -0
- package/json-schema/ai/PredictiveModel.json +445 -0
- package/json-schema/ai/PredictiveModelType.json +18 -0
- package/json-schema/ai/TokenBudgetConfig.json +92 -0
- package/json-schema/ai/TokenBudgetStrategy.json +16 -0
- package/json-schema/ai/TokenUsageStats.json +66 -0
- package/json-schema/ai/ToolCall.json +49 -0
- package/json-schema/ai/TrainingConfig.json +88 -0
- package/json-schema/ai/WorkflowFieldCondition.json +33 -0
- package/json-schema/ai/WorkflowSchedule.json +51 -0
- package/json-schema/data/CustomScriptAction.json +49 -0
- package/json-schema/{Field.json → data/Field.json} +50 -1
- package/json-schema/{FieldType.json → data/FieldType.json} +4 -1
- package/json-schema/data/HttpCallAction.json +81 -0
- package/json-schema/{Object.json → data/Object.json} +50 -1
- package/json-schema/data/PushNotificationAction.json +59 -0
- package/json-schema/data/SlackMessageAction.json +45 -0
- package/json-schema/data/SmsNotificationAction.json +50 -0
- package/json-schema/data/TaskCreationAction.json +59 -0
- package/json-schema/data/TeamsMessageAction.json +45 -0
- package/json-schema/data/WebhookTriggerAction.json +58 -0
- package/json-schema/data/WorkflowAction.json +465 -0
- package/json-schema/data/WorkflowRule.json +509 -0
- package/json-schema/system/AuditConfig.json +587 -0
- package/json-schema/system/AuditEvent.json +232 -0
- package/json-schema/system/AuditEventActor.json +48 -0
- package/json-schema/system/AuditEventChange.json +25 -0
- package/json-schema/system/AuditEventFilter.json +127 -0
- package/json-schema/system/AuditEventSeverity.json +19 -0
- package/json-schema/system/AuditEventTarget.json +33 -0
- package/json-schema/system/AuditEventType.json +53 -0
- package/json-schema/system/AuditRetentionPolicy.json +73 -0
- package/json-schema/system/AuditStorageConfig.json +60 -0
- package/json-schema/system/CronSchedule.json +29 -0
- package/json-schema/system/DatabaseLevelIsolationStrategy.json +139 -0
- package/json-schema/system/Event.json +52 -0
- package/json-schema/system/EventHandler.json +29 -0
- package/json-schema/system/EventMetadata.json +33 -0
- package/json-schema/system/EventPersistence.json +25 -0
- package/json-schema/system/EventRoute.json +27 -0
- package/json-schema/system/IntervalSchedule.json +25 -0
- package/json-schema/system/Job.json +127 -0
- package/json-schema/system/JobExecution.json +49 -0
- package/json-schema/system/JobExecutionStatus.json +15 -0
- package/json-schema/system/LevelIsolationStrategySchema.json +93 -0
- package/json-schema/system/OnceSchedule.json +25 -0
- package/json-schema/system/Presence.json +40 -0
- package/json-schema/system/PresenceStatus.json +14 -0
- package/json-schema/system/RealtimeAction.json +14 -0
- package/json-schema/system/RealtimeEvent.json +51 -0
- package/json-schema/system/RealtimeEventType.json +15 -0
- package/json-schema/system/RetryPolicy.json +30 -0
- package/json-schema/system/RowLevelIsolationStrategy.json +74 -0
- package/json-schema/system/Schedule.json +71 -0
- package/json-schema/system/Subscription.json +65 -0
- package/json-schema/system/SubscriptionEvent.json +32 -0
- package/json-schema/system/SuspiciousActivityRule.json +175 -0
- package/json-schema/system/Tenant.json +61 -0
- package/json-schema/system/TenantIsolationConfig.json +298 -0
- package/json-schema/system/TenantIsolationLevel.json +14 -0
- package/json-schema/system/TenantQuota.json +27 -0
- package/json-schema/system/TenantSecurityPolicy.json +115 -0
- package/json-schema/system/TransportProtocol.json +14 -0
- package/json-schema/{Action.json → ui/Action.json} +4 -1
- package/json-schema/{ActionParam.json → ui/ActionParam.json} +4 -1
- package/json-schema/{FieldWidgetProps.json → ui/FieldWidgetProps.json} +50 -1
- package/json-schema/ui/FormField.json +61 -0
- package/json-schema/ui/FormSection.json +101 -0
- package/json-schema/ui/FormView.json +354 -0
- package/json-schema/ui/HttpMethod.json +16 -0
- package/json-schema/ui/HttpRequest.json +46 -0
- package/json-schema/ui/ListColumn.json +57 -0
- package/json-schema/ui/ListView.json +398 -0
- package/json-schema/ui/PaginationConfig.json +26 -0
- package/json-schema/ui/SelectionConfig.json +22 -0
- package/json-schema/ui/View.json +1500 -0
- package/json-schema/ui/ViewData.json +142 -0
- package/package.json +12 -12
- package/json-schema/AuthenticationConfig.json +0 -601
- package/json-schema/AuthenticationProvider.json +0 -617
- package/json-schema/FormSection.json +0 -42
- package/json-schema/FormView.json +0 -99
- package/json-schema/ListView.json +0 -153
- package/json-schema/MenuItem.json +0 -28
- package/json-schema/View.json +0 -500
- package/json-schema/WorkflowAction.json +0 -84
- package/json-schema/WorkflowRule.json +0 -128
- /package/json-schema/{AIKnowledge.json → ai/AIKnowledge.json} +0 -0
- /package/json-schema/{AIModelConfig.json → ai/AIModelConfig.json} +0 -0
- /package/json-schema/{AITool.json → ai/AITool.json} +0 -0
- /package/json-schema/{Agent.json → ai/Agent.json} +0 -0
- /package/json-schema/{ChunkingStrategy.json → ai/ChunkingStrategy.json} +0 -0
- /package/json-schema/{DocumentChunk.json → ai/DocumentChunk.json} +0 -0
- /package/json-schema/{DocumentLoaderConfig.json → ai/DocumentLoaderConfig.json} +0 -0
- /package/json-schema/{DocumentMetadata.json → ai/DocumentMetadata.json} +0 -0
- /package/json-schema/{EmbeddingModel.json → ai/EmbeddingModel.json} +0 -0
- /package/json-schema/{Entity.json → ai/Entity.json} +0 -0
- /package/json-schema/{FieldSynonymConfig.json → ai/FieldSynonymConfig.json} +0 -0
- /package/json-schema/{ModelCapability.json → ai/ModelCapability.json} +0 -0
- /package/json-schema/{ModelConfig.json → ai/ModelConfig.json} +0 -0
- /package/json-schema/{ModelLimits.json → ai/ModelLimits.json} +0 -0
- /package/json-schema/{ModelPricing.json → ai/ModelPricing.json} +0 -0
- /package/json-schema/{ModelProvider.json → ai/ModelProvider.json} +0 -0
- /package/json-schema/{ModelRegistry.json → ai/ModelRegistry.json} +0 -0
- /package/json-schema/{ModelRegistryEntry.json → ai/ModelRegistryEntry.json} +0 -0
- /package/json-schema/{ModelSelectionCriteria.json → ai/ModelSelectionCriteria.json} +0 -0
- /package/json-schema/{NLQAnalytics.json → ai/NLQAnalytics.json} +0 -0
- /package/json-schema/{NLQFieldMapping.json → ai/NLQFieldMapping.json} +0 -0
- /package/json-schema/{NLQModelConfig.json → ai/NLQModelConfig.json} +0 -0
- /package/json-schema/{NLQParseResult.json → ai/NLQParseResult.json} +0 -0
- /package/json-schema/{NLQRequest.json → ai/NLQRequest.json} +0 -0
- /package/json-schema/{NLQResponse.json → ai/NLQResponse.json} +0 -0
- /package/json-schema/{NLQTrainingExample.json → ai/NLQTrainingExample.json} +0 -0
- /package/json-schema/{PromptTemplate.json → ai/PromptTemplate.json} +0 -0
- /package/json-schema/{PromptVariable.json → ai/PromptVariable.json} +0 -0
- /package/json-schema/{QueryContext.json → ai/QueryContext.json} +0 -0
- /package/json-schema/{QueryIntent.json → ai/QueryIntent.json} +0 -0
- /package/json-schema/{QueryTemplate.json → ai/QueryTemplate.json} +0 -0
- /package/json-schema/{RAGPipelineConfig.json → ai/RAGPipelineConfig.json} +0 -0
- /package/json-schema/{RAGPipelineStatus.json → ai/RAGPipelineStatus.json} +0 -0
- /package/json-schema/{RAGQueryRequest.json → ai/RAGQueryRequest.json} +0 -0
- /package/json-schema/{RAGQueryResponse.json → ai/RAGQueryResponse.json} +0 -0
- /package/json-schema/{RerankingConfig.json → ai/RerankingConfig.json} +0 -0
- /package/json-schema/{RetrievalStrategy.json → ai/RetrievalStrategy.json} +0 -0
- /package/json-schema/{Timeframe.json → ai/Timeframe.json} +0 -0
- /package/json-schema/{VectorStoreConfig.json → ai/VectorStoreConfig.json} +0 -0
- /package/json-schema/{VectorStoreProvider.json → ai/VectorStoreProvider.json} +0 -0
- /package/json-schema/{ApiError.json → api/ApiError.json} +0 -0
- /package/json-schema/{BaseResponse.json → api/BaseResponse.json} +0 -0
- /package/json-schema/{BulkRequest.json → api/BulkRequest.json} +0 -0
- /package/json-schema/{BulkResponse.json → api/BulkResponse.json} +0 -0
- /package/json-schema/{CreateRequest.json → api/CreateRequest.json} +0 -0
- /package/json-schema/{DeleteResponse.json → api/DeleteResponse.json} +0 -0
- /package/json-schema/{ExportRequest.json → api/ExportRequest.json} +0 -0
- /package/json-schema/{ListRecordResponse.json → api/ListRecordResponse.json} +0 -0
- /package/json-schema/{ModificationResult.json → api/ModificationResult.json} +0 -0
- /package/json-schema/{RecordData.json → api/RecordData.json} +0 -0
- /package/json-schema/{SingleRecordResponse.json → api/SingleRecordResponse.json} +0 -0
- /package/json-schema/{UpdateRequest.json → api/UpdateRequest.json} +0 -0
- /package/json-schema/{Address.json → data/Address.json} +0 -0
- /package/json-schema/{AggregationFunction.json → data/AggregationFunction.json} +0 -0
- /package/json-schema/{AggregationNode.json → data/AggregationNode.json} +0 -0
- /package/json-schema/{AsyncValidation.json → data/AsyncValidation.json} +0 -0
- /package/json-schema/{ComparisonOperator.json → data/ComparisonOperator.json} +0 -0
- /package/json-schema/{ConditionalValidation.json → data/ConditionalValidation.json} +0 -0
- /package/json-schema/{CrossFieldValidation.json → data/CrossFieldValidation.json} +0 -0
- /package/json-schema/{CustomValidator.json → data/CustomValidator.json} +0 -0
- /package/json-schema/{Dataset.json → data/Dataset.json} +0 -0
- /package/json-schema/{DatasetMode.json → data/DatasetMode.json} +0 -0
- /package/json-schema/{EmailAlertAction.json → data/EmailAlertAction.json} +0 -0
- /package/json-schema/{EqualityOperator.json → data/EqualityOperator.json} +0 -0
- /package/json-schema/{FieldMapping.json → data/FieldMapping.json} +0 -0
- /package/json-schema/{FieldNode.json → data/FieldNode.json} +0 -0
- /package/json-schema/{FieldOperators.json → data/FieldOperators.json} +0 -0
- /package/json-schema/{FieldPermission.json → data/FieldPermission.json} +0 -0
- /package/json-schema/{FieldUpdateAction.json → data/FieldUpdateAction.json} +0 -0
- /package/json-schema/{FilterCondition.json → data/FilterCondition.json} +0 -0
- /package/json-schema/{FilterNode.json → data/FilterNode.json} +0 -0
- /package/json-schema/{FilterOperator.json → data/FilterOperator.json} +0 -0
- /package/json-schema/{Flow.json → data/Flow.json} +0 -0
- /package/json-schema/{FlowEdge.json → data/FlowEdge.json} +0 -0
- /package/json-schema/{FlowNode.json → data/FlowNode.json} +0 -0
- /package/json-schema/{FlowNodeAction.json → data/FlowNodeAction.json} +0 -0
- /package/json-schema/{FlowVariable.json → data/FlowVariable.json} +0 -0
- /package/json-schema/{FormatValidation.json → data/FormatValidation.json} +0 -0
- /package/json-schema/{Index.json → data/Index.json} +0 -0
- /package/json-schema/{JoinNode.json → data/JoinNode.json} +0 -0
- /package/json-schema/{JoinType.json → data/JoinType.json} +0 -0
- /package/json-schema/{LocationCoordinates.json → data/LocationCoordinates.json} +0 -0
- /package/json-schema/{LogicOperator.json → data/LogicOperator.json} +0 -0
- /package/json-schema/{Mapping.json → data/Mapping.json} +0 -0
- /package/json-schema/{NormalizedFilter.json → data/NormalizedFilter.json} +0 -0
- /package/json-schema/{OWDModel.json → data/OWDModel.json} +0 -0
- /package/json-schema/{ObjectCapabilities.json → data/ObjectCapabilities.json} +0 -0
- /package/json-schema/{ObjectPermission.json → data/ObjectPermission.json} +0 -0
- /package/json-schema/{PermissionSet.json → data/PermissionSet.json} +0 -0
- /package/json-schema/{Query.json → data/Query.json} +0 -0
- /package/json-schema/{QueryFilter.json → data/QueryFilter.json} +0 -0
- /package/json-schema/{RangeOperator.json → data/RangeOperator.json} +0 -0
- /package/json-schema/{ScriptValidation.json → data/ScriptValidation.json} +0 -0
- /package/json-schema/{SelectOption.json → data/SelectOption.json} +0 -0
- /package/json-schema/{SetOperator.json → data/SetOperator.json} +0 -0
- /package/json-schema/{SharingLevel.json → data/SharingLevel.json} +0 -0
- /package/json-schema/{SharingRule.json → data/SharingRule.json} +0 -0
- /package/json-schema/{SharingRuleType.json → data/SharingRuleType.json} +0 -0
- /package/json-schema/{SortNode.json → data/SortNode.json} +0 -0
- /package/json-schema/{SpecialOperator.json → data/SpecialOperator.json} +0 -0
- /package/json-schema/{StateMachineValidation.json → data/StateMachineValidation.json} +0 -0
- /package/json-schema/{StringOperator.json → data/StringOperator.json} +0 -0
- /package/json-schema/{TransformType.json → data/TransformType.json} +0 -0
- /package/json-schema/{Trigger.json → data/Trigger.json} +0 -0
- /package/json-schema/{TriggerAction.json → data/TriggerAction.json} +0 -0
- /package/json-schema/{TriggerContext.json → data/TriggerContext.json} +0 -0
- /package/json-schema/{TriggerTiming.json → data/TriggerTiming.json} +0 -0
- /package/json-schema/{UniquenessValidation.json → data/UniquenessValidation.json} +0 -0
- /package/json-schema/{ValidationRule.json → data/ValidationRule.json} +0 -0
- /package/json-schema/{WindowFunction.json → data/WindowFunction.json} +0 -0
- /package/json-schema/{WindowFunctionNode.json → data/WindowFunctionNode.json} +0 -0
- /package/json-schema/{WindowSpec.json → data/WindowSpec.json} +0 -0
- /package/json-schema/{WorkflowTriggerType.json → data/WorkflowTriggerType.json} +0 -0
- /package/json-schema/{Account.json → system/Account.json} +0 -0
- /package/json-schema/{AccountLinkingConfig.json → system/AccountLinkingConfig.json} +0 -0
- /package/json-schema/{ApiCapabilities.json → system/ApiCapabilities.json} +0 -0
- /package/json-schema/{ApiEndpoint.json → system/ApiEndpoint.json} +0 -0
- /package/json-schema/{ApiMapping.json → system/ApiMapping.json} +0 -0
- /package/json-schema/{ApiRoutes.json → system/ApiRoutes.json} +0 -0
- /package/json-schema/{AuditPolicy.json → system/AuditPolicy.json} +0 -0
- /package/json-schema/{AuthConfig.json → system/AuthConfig.json} +0 -0
- /package/json-schema/{AuthPluginConfig.json → system/AuthPluginConfig.json} +0 -0
- /package/json-schema/{AuthStrategy.json → system/AuthStrategy.json} +0 -0
- /package/json-schema/{CSRFConfig.json → system/CSRFConfig.json} +0 -0
- /package/json-schema/{DatabaseAdapter.json → system/DatabaseAdapter.json} +0 -0
- /package/json-schema/{DatabaseMapping.json → system/DatabaseMapping.json} +0 -0
- /package/json-schema/{Datasource.json → system/Datasource.json} +0 -0
- /package/json-schema/{DatasourceCapabilities.json → system/DatasourceCapabilities.json} +0 -0
- /package/json-schema/{Discovery.json → system/Discovery.json} +0 -0
- /package/json-schema/{DriverCapabilities.json → system/DriverCapabilities.json} +0 -0
- /package/json-schema/{DriverDefinition.json → system/DriverDefinition.json} +0 -0
- /package/json-schema/{DriverInterface.json → system/DriverInterface.json} +0 -0
- /package/json-schema/{DriverOptions.json → system/DriverOptions.json} +0 -0
- /package/json-schema/{DriverType.json → system/DriverType.json} +0 -0
- /package/json-schema/{EmailPasswordConfig.json → system/EmailPasswordConfig.json} +0 -0
- /package/json-schema/{EnterpriseAuthConfig.json → system/EnterpriseAuthConfig.json} +0 -0
- /package/json-schema/{Feature.json → system/Feature.json} +0 -0
- /package/json-schema/{HttpMethod.json → system/HttpMethod.json} +0 -0
- /package/json-schema/{I18nContext.json → system/I18nContext.json} +0 -0
- /package/json-schema/{Invitation.json → system/Invitation.json} +0 -0
- /package/json-schema/{InvitationStatus.json → system/InvitationStatus.json} +0 -0
- /package/json-schema/{LDAPConfig.json → system/LDAPConfig.json} +0 -0
- /package/json-schema/{License.json → system/License.json} +0 -0
- /package/json-schema/{Locale.json → system/Locale.json} +0 -0
- /package/json-schema/{Logger.json → system/Logger.json} +0 -0
- /package/json-schema/{MagicLinkConfig.json → system/MagicLinkConfig.json} +0 -0
- /package/json-schema/{Manifest.json → system/Manifest.json} +0 -0
- /package/json-schema/{Member.json → system/Member.json} +0 -0
- /package/json-schema/{MetricType.json → system/MetricType.json} +0 -0
- /package/json-schema/{NetworkPolicy.json → system/NetworkPolicy.json} +0 -0
- /package/json-schema/{OAuthProvider.json → system/OAuthProvider.json} +0 -0
- /package/json-schema/{OIDCConfig.json → system/OIDCConfig.json} +0 -0
- /package/json-schema/{ObjectQLClient.json → system/ObjectQLClient.json} +0 -0
- /package/json-schema/{Organization.json → system/Organization.json} +0 -0
- /package/json-schema/{PasskeyConfig.json → system/PasskeyConfig.json} +0 -0
- /package/json-schema/{PasswordPolicy.json → system/PasswordPolicy.json} +0 -0
- /package/json-schema/{Plan.json → system/Plan.json} +0 -0
- /package/json-schema/{Plugin.json → system/Plugin.json} +0 -0
- /package/json-schema/{PluginContext.json → system/PluginContext.json} +0 -0
- /package/json-schema/{PluginLifecycle.json → system/PluginLifecycle.json} +0 -0
- /package/json-schema/{Policy.json → system/Policy.json} +0 -0
- /package/json-schema/{RateLimit.json → system/RateLimit.json} +0 -0
- /package/json-schema/{RateLimitConfig.json → system/RateLimitConfig.json} +0 -0
- /package/json-schema/{Role.json → system/Role.json} +0 -0
- /package/json-schema/{Router.json → system/Router.json} +0 -0
- /package/json-schema/{SAMLConfig.json → system/SAMLConfig.json} +0 -0
- /package/json-schema/{Scheduler.json → system/Scheduler.json} +0 -0
- /package/json-schema/{ScopedStorage.json → system/ScopedStorage.json} +0 -0
- /package/json-schema/{Session.json → system/Session.json} +0 -0
- /package/json-schema/{SessionConfig.json → system/SessionConfig.json} +0 -0
- /package/json-schema/{SessionPolicy.json → system/SessionPolicy.json} +0 -0
- /package/json-schema/{StandardAuthProvider.json → system/StandardAuthProvider.json} +0 -0
- /package/json-schema/{SystemAPI.json → system/SystemAPI.json} +0 -0
- /package/json-schema/{Territory.json → system/Territory.json} +0 -0
- /package/json-schema/{TerritoryModel.json → system/TerritoryModel.json} +0 -0
- /package/json-schema/{TerritoryType.json → system/TerritoryType.json} +0 -0
- /package/json-schema/{TranslationBundle.json → system/TranslationBundle.json} +0 -0
- /package/json-schema/{TranslationData.json → system/TranslationData.json} +0 -0
- /package/json-schema/{TwoFactorConfig.json → system/TwoFactorConfig.json} +0 -0
- /package/json-schema/{User.json → system/User.json} +0 -0
- /package/json-schema/{UserFieldMapping.json → system/UserFieldMapping.json} +0 -0
- /package/json-schema/{VerificationToken.json → system/VerificationToken.json} +0 -0
- /package/json-schema/{Webhook.json → system/Webhook.json} +0 -0
- /package/json-schema/{WebhookReceiver.json → system/WebhookReceiver.json} +0 -0
- /package/json-schema/{WebhookTriggerType.json → system/WebhookTriggerType.json} +0 -0
- /package/json-schema/{Animation.json → ui/Animation.json} +0 -0
- /package/json-schema/{App.json → ui/App.json} +0 -0
- /package/json-schema/{AppBranding.json → ui/AppBranding.json} +0 -0
- /package/json-schema/{BorderRadius.json → ui/BorderRadius.json} +0 -0
- /package/json-schema/{Breakpoints.json → ui/Breakpoints.json} +0 -0
- /package/json-schema/{CalendarConfig.json → ui/CalendarConfig.json} +0 -0
- /package/json-schema/{ChartType.json → ui/ChartType.json} +0 -0
- /package/json-schema/{ColorPalette.json → ui/ColorPalette.json} +0 -0
- /package/json-schema/{Dashboard.json → ui/Dashboard.json} +0 -0
- /package/json-schema/{DashboardNavItem.json → ui/DashboardNavItem.json} +0 -0
- /package/json-schema/{DashboardWidget.json → ui/DashboardWidget.json} +0 -0
- /package/json-schema/{GanttConfig.json → ui/GanttConfig.json} +0 -0
- /package/json-schema/{GroupNavItem.json → ui/GroupNavItem.json} +0 -0
- /package/json-schema/{KanbanConfig.json → ui/KanbanConfig.json} +0 -0
- /package/json-schema/{NavigationItem.json → ui/NavigationItem.json} +0 -0
- /package/json-schema/{ObjectNavItem.json → ui/ObjectNavItem.json} +0 -0
- /package/json-schema/{Page.json → ui/Page.json} +0 -0
- /package/json-schema/{PageComponent.json → ui/PageComponent.json} +0 -0
- /package/json-schema/{PageNavItem.json → ui/PageNavItem.json} +0 -0
- /package/json-schema/{PageRegion.json → ui/PageRegion.json} +0 -0
- /package/json-schema/{Report.json → ui/Report.json} +0 -0
- /package/json-schema/{ReportChart.json → ui/ReportChart.json} +0 -0
- /package/json-schema/{ReportColumn.json → ui/ReportColumn.json} +0 -0
- /package/json-schema/{ReportGrouping.json → ui/ReportGrouping.json} +0 -0
- /package/json-schema/{ReportType.json → ui/ReportType.json} +0 -0
- /package/json-schema/{Shadow.json → ui/Shadow.json} +0 -0
- /package/json-schema/{Spacing.json → ui/Spacing.json} +0 -0
- /package/json-schema/{Theme.json → ui/Theme.json} +0 -0
- /package/json-schema/{ThemeMode.json → ui/ThemeMode.json} +0 -0
- /package/json-schema/{Typography.json → ui/Typography.json} +0 -0
- /package/json-schema/{UrlNavItem.json → ui/UrlNavItem.json} +0 -0
- /package/json-schema/{ZIndex.json → ui/ZIndex.json} +0 -0
|
@@ -184,6 +184,7 @@ export declare const ModelConfigSchema: z.ZodObject<{
|
|
|
184
184
|
recommendedFor: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
185
185
|
}, "strip", z.ZodTypeAny, {
|
|
186
186
|
name: string;
|
|
187
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
187
188
|
id: string;
|
|
188
189
|
version: string;
|
|
189
190
|
capabilities: {
|
|
@@ -195,7 +196,6 @@ export declare const ModelConfigSchema: z.ZodObject<{
|
|
|
195
196
|
codeGeneration: boolean;
|
|
196
197
|
reasoning: boolean;
|
|
197
198
|
};
|
|
198
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
199
199
|
limits: {
|
|
200
200
|
maxTokens: number;
|
|
201
201
|
contextWindow: number;
|
|
@@ -207,19 +207,20 @@ export declare const ModelConfigSchema: z.ZodObject<{
|
|
|
207
207
|
};
|
|
208
208
|
deprecated: boolean;
|
|
209
209
|
description?: string | undefined;
|
|
210
|
+
region?: string | undefined;
|
|
211
|
+
endpoint?: string | undefined;
|
|
212
|
+
apiKey?: string | undefined;
|
|
210
213
|
pricing?: {
|
|
211
214
|
currency: string;
|
|
212
215
|
inputCostPer1kTokens?: number | undefined;
|
|
213
216
|
outputCostPer1kTokens?: number | undefined;
|
|
214
217
|
embeddingCostPer1kTokens?: number | undefined;
|
|
215
218
|
} | undefined;
|
|
216
|
-
endpoint?: string | undefined;
|
|
217
|
-
apiKey?: string | undefined;
|
|
218
|
-
region?: string | undefined;
|
|
219
219
|
tags?: string[] | undefined;
|
|
220
220
|
recommendedFor?: string[] | undefined;
|
|
221
221
|
}, {
|
|
222
222
|
name: string;
|
|
223
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
223
224
|
id: string;
|
|
224
225
|
version: string;
|
|
225
226
|
capabilities: {
|
|
@@ -231,7 +232,6 @@ export declare const ModelConfigSchema: z.ZodObject<{
|
|
|
231
232
|
codeGeneration?: boolean | undefined;
|
|
232
233
|
reasoning?: boolean | undefined;
|
|
233
234
|
};
|
|
234
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
235
235
|
limits: {
|
|
236
236
|
maxTokens: number;
|
|
237
237
|
contextWindow: number;
|
|
@@ -242,15 +242,15 @@ export declare const ModelConfigSchema: z.ZodObject<{
|
|
|
242
242
|
maxOutputTokens?: number | undefined;
|
|
243
243
|
};
|
|
244
244
|
description?: string | undefined;
|
|
245
|
+
region?: string | undefined;
|
|
246
|
+
endpoint?: string | undefined;
|
|
247
|
+
apiKey?: string | undefined;
|
|
245
248
|
pricing?: {
|
|
246
249
|
currency?: string | undefined;
|
|
247
250
|
inputCostPer1kTokens?: number | undefined;
|
|
248
251
|
outputCostPer1kTokens?: number | undefined;
|
|
249
252
|
embeddingCostPer1kTokens?: number | undefined;
|
|
250
253
|
} | undefined;
|
|
251
|
-
endpoint?: string | undefined;
|
|
252
|
-
apiKey?: string | undefined;
|
|
253
|
-
region?: string | undefined;
|
|
254
254
|
tags?: string[] | undefined;
|
|
255
255
|
deprecated?: boolean | undefined;
|
|
256
256
|
recommendedFor?: string[] | undefined;
|
|
@@ -554,6 +554,7 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
554
554
|
recommendedFor: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
555
555
|
}, "strip", z.ZodTypeAny, {
|
|
556
556
|
name: string;
|
|
557
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
557
558
|
id: string;
|
|
558
559
|
version: string;
|
|
559
560
|
capabilities: {
|
|
@@ -565,7 +566,6 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
565
566
|
codeGeneration: boolean;
|
|
566
567
|
reasoning: boolean;
|
|
567
568
|
};
|
|
568
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
569
569
|
limits: {
|
|
570
570
|
maxTokens: number;
|
|
571
571
|
contextWindow: number;
|
|
@@ -577,19 +577,20 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
577
577
|
};
|
|
578
578
|
deprecated: boolean;
|
|
579
579
|
description?: string | undefined;
|
|
580
|
+
region?: string | undefined;
|
|
581
|
+
endpoint?: string | undefined;
|
|
582
|
+
apiKey?: string | undefined;
|
|
580
583
|
pricing?: {
|
|
581
584
|
currency: string;
|
|
582
585
|
inputCostPer1kTokens?: number | undefined;
|
|
583
586
|
outputCostPer1kTokens?: number | undefined;
|
|
584
587
|
embeddingCostPer1kTokens?: number | undefined;
|
|
585
588
|
} | undefined;
|
|
586
|
-
endpoint?: string | undefined;
|
|
587
|
-
apiKey?: string | undefined;
|
|
588
|
-
region?: string | undefined;
|
|
589
589
|
tags?: string[] | undefined;
|
|
590
590
|
recommendedFor?: string[] | undefined;
|
|
591
591
|
}, {
|
|
592
592
|
name: string;
|
|
593
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
593
594
|
id: string;
|
|
594
595
|
version: string;
|
|
595
596
|
capabilities: {
|
|
@@ -601,7 +602,6 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
601
602
|
codeGeneration?: boolean | undefined;
|
|
602
603
|
reasoning?: boolean | undefined;
|
|
603
604
|
};
|
|
604
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
605
605
|
limits: {
|
|
606
606
|
maxTokens: number;
|
|
607
607
|
contextWindow: number;
|
|
@@ -612,15 +612,15 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
612
612
|
maxOutputTokens?: number | undefined;
|
|
613
613
|
};
|
|
614
614
|
description?: string | undefined;
|
|
615
|
+
region?: string | undefined;
|
|
616
|
+
endpoint?: string | undefined;
|
|
617
|
+
apiKey?: string | undefined;
|
|
615
618
|
pricing?: {
|
|
616
619
|
currency?: string | undefined;
|
|
617
620
|
inputCostPer1kTokens?: number | undefined;
|
|
618
621
|
outputCostPer1kTokens?: number | undefined;
|
|
619
622
|
embeddingCostPer1kTokens?: number | undefined;
|
|
620
623
|
} | undefined;
|
|
621
|
-
endpoint?: string | undefined;
|
|
622
|
-
apiKey?: string | undefined;
|
|
623
|
-
region?: string | undefined;
|
|
624
624
|
tags?: string[] | undefined;
|
|
625
625
|
deprecated?: boolean | undefined;
|
|
626
626
|
recommendedFor?: string[] | undefined;
|
|
@@ -646,8 +646,10 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
646
646
|
}>>;
|
|
647
647
|
}, "strip", z.ZodTypeAny, {
|
|
648
648
|
status: "active" | "disabled" | "deprecated" | "experimental";
|
|
649
|
+
priority: number;
|
|
649
650
|
model: {
|
|
650
651
|
name: string;
|
|
652
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
651
653
|
id: string;
|
|
652
654
|
version: string;
|
|
653
655
|
capabilities: {
|
|
@@ -659,7 +661,6 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
659
661
|
codeGeneration: boolean;
|
|
660
662
|
reasoning: boolean;
|
|
661
663
|
};
|
|
662
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
663
664
|
limits: {
|
|
664
665
|
maxTokens: number;
|
|
665
666
|
contextWindow: number;
|
|
@@ -671,19 +672,18 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
671
672
|
};
|
|
672
673
|
deprecated: boolean;
|
|
673
674
|
description?: string | undefined;
|
|
675
|
+
region?: string | undefined;
|
|
676
|
+
endpoint?: string | undefined;
|
|
677
|
+
apiKey?: string | undefined;
|
|
674
678
|
pricing?: {
|
|
675
679
|
currency: string;
|
|
676
680
|
inputCostPer1kTokens?: number | undefined;
|
|
677
681
|
outputCostPer1kTokens?: number | undefined;
|
|
678
682
|
embeddingCostPer1kTokens?: number | undefined;
|
|
679
683
|
} | undefined;
|
|
680
|
-
endpoint?: string | undefined;
|
|
681
|
-
apiKey?: string | undefined;
|
|
682
|
-
region?: string | undefined;
|
|
683
684
|
tags?: string[] | undefined;
|
|
684
685
|
recommendedFor?: string[] | undefined;
|
|
685
686
|
};
|
|
686
|
-
priority: number;
|
|
687
687
|
fallbackModels?: string[] | undefined;
|
|
688
688
|
healthCheck?: {
|
|
689
689
|
status: "unknown" | "healthy" | "unhealthy";
|
|
@@ -694,6 +694,7 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
694
694
|
}, {
|
|
695
695
|
model: {
|
|
696
696
|
name: string;
|
|
697
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
697
698
|
id: string;
|
|
698
699
|
version: string;
|
|
699
700
|
capabilities: {
|
|
@@ -705,7 +706,6 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
705
706
|
codeGeneration?: boolean | undefined;
|
|
706
707
|
reasoning?: boolean | undefined;
|
|
707
708
|
};
|
|
708
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
709
709
|
limits: {
|
|
710
710
|
maxTokens: number;
|
|
711
711
|
contextWindow: number;
|
|
@@ -716,15 +716,15 @@ export declare const ModelRegistryEntrySchema: z.ZodObject<{
|
|
|
716
716
|
maxOutputTokens?: number | undefined;
|
|
717
717
|
};
|
|
718
718
|
description?: string | undefined;
|
|
719
|
+
region?: string | undefined;
|
|
720
|
+
endpoint?: string | undefined;
|
|
721
|
+
apiKey?: string | undefined;
|
|
719
722
|
pricing?: {
|
|
720
723
|
currency?: string | undefined;
|
|
721
724
|
inputCostPer1kTokens?: number | undefined;
|
|
722
725
|
outputCostPer1kTokens?: number | undefined;
|
|
723
726
|
embeddingCostPer1kTokens?: number | undefined;
|
|
724
727
|
} | undefined;
|
|
725
|
-
endpoint?: string | undefined;
|
|
726
|
-
apiKey?: string | undefined;
|
|
727
|
-
region?: string | undefined;
|
|
728
728
|
tags?: string[] | undefined;
|
|
729
729
|
deprecated?: boolean | undefined;
|
|
730
730
|
recommendedFor?: string[] | undefined;
|
|
@@ -836,6 +836,7 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
836
836
|
recommendedFor: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
837
837
|
}, "strip", z.ZodTypeAny, {
|
|
838
838
|
name: string;
|
|
839
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
839
840
|
id: string;
|
|
840
841
|
version: string;
|
|
841
842
|
capabilities: {
|
|
@@ -847,7 +848,6 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
847
848
|
codeGeneration: boolean;
|
|
848
849
|
reasoning: boolean;
|
|
849
850
|
};
|
|
850
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
851
851
|
limits: {
|
|
852
852
|
maxTokens: number;
|
|
853
853
|
contextWindow: number;
|
|
@@ -859,19 +859,20 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
859
859
|
};
|
|
860
860
|
deprecated: boolean;
|
|
861
861
|
description?: string | undefined;
|
|
862
|
+
region?: string | undefined;
|
|
863
|
+
endpoint?: string | undefined;
|
|
864
|
+
apiKey?: string | undefined;
|
|
862
865
|
pricing?: {
|
|
863
866
|
currency: string;
|
|
864
867
|
inputCostPer1kTokens?: number | undefined;
|
|
865
868
|
outputCostPer1kTokens?: number | undefined;
|
|
866
869
|
embeddingCostPer1kTokens?: number | undefined;
|
|
867
870
|
} | undefined;
|
|
868
|
-
endpoint?: string | undefined;
|
|
869
|
-
apiKey?: string | undefined;
|
|
870
|
-
region?: string | undefined;
|
|
871
871
|
tags?: string[] | undefined;
|
|
872
872
|
recommendedFor?: string[] | undefined;
|
|
873
873
|
}, {
|
|
874
874
|
name: string;
|
|
875
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
875
876
|
id: string;
|
|
876
877
|
version: string;
|
|
877
878
|
capabilities: {
|
|
@@ -883,7 +884,6 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
883
884
|
codeGeneration?: boolean | undefined;
|
|
884
885
|
reasoning?: boolean | undefined;
|
|
885
886
|
};
|
|
886
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
887
887
|
limits: {
|
|
888
888
|
maxTokens: number;
|
|
889
889
|
contextWindow: number;
|
|
@@ -894,15 +894,15 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
894
894
|
maxOutputTokens?: number | undefined;
|
|
895
895
|
};
|
|
896
896
|
description?: string | undefined;
|
|
897
|
+
region?: string | undefined;
|
|
898
|
+
endpoint?: string | undefined;
|
|
899
|
+
apiKey?: string | undefined;
|
|
897
900
|
pricing?: {
|
|
898
901
|
currency?: string | undefined;
|
|
899
902
|
inputCostPer1kTokens?: number | undefined;
|
|
900
903
|
outputCostPer1kTokens?: number | undefined;
|
|
901
904
|
embeddingCostPer1kTokens?: number | undefined;
|
|
902
905
|
} | undefined;
|
|
903
|
-
endpoint?: string | undefined;
|
|
904
|
-
apiKey?: string | undefined;
|
|
905
|
-
region?: string | undefined;
|
|
906
906
|
tags?: string[] | undefined;
|
|
907
907
|
deprecated?: boolean | undefined;
|
|
908
908
|
recommendedFor?: string[] | undefined;
|
|
@@ -928,8 +928,10 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
928
928
|
}>>;
|
|
929
929
|
}, "strip", z.ZodTypeAny, {
|
|
930
930
|
status: "active" | "disabled" | "deprecated" | "experimental";
|
|
931
|
+
priority: number;
|
|
931
932
|
model: {
|
|
932
933
|
name: string;
|
|
934
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
933
935
|
id: string;
|
|
934
936
|
version: string;
|
|
935
937
|
capabilities: {
|
|
@@ -941,7 +943,6 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
941
943
|
codeGeneration: boolean;
|
|
942
944
|
reasoning: boolean;
|
|
943
945
|
};
|
|
944
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
945
946
|
limits: {
|
|
946
947
|
maxTokens: number;
|
|
947
948
|
contextWindow: number;
|
|
@@ -953,19 +954,18 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
953
954
|
};
|
|
954
955
|
deprecated: boolean;
|
|
955
956
|
description?: string | undefined;
|
|
957
|
+
region?: string | undefined;
|
|
958
|
+
endpoint?: string | undefined;
|
|
959
|
+
apiKey?: string | undefined;
|
|
956
960
|
pricing?: {
|
|
957
961
|
currency: string;
|
|
958
962
|
inputCostPer1kTokens?: number | undefined;
|
|
959
963
|
outputCostPer1kTokens?: number | undefined;
|
|
960
964
|
embeddingCostPer1kTokens?: number | undefined;
|
|
961
965
|
} | undefined;
|
|
962
|
-
endpoint?: string | undefined;
|
|
963
|
-
apiKey?: string | undefined;
|
|
964
|
-
region?: string | undefined;
|
|
965
966
|
tags?: string[] | undefined;
|
|
966
967
|
recommendedFor?: string[] | undefined;
|
|
967
968
|
};
|
|
968
|
-
priority: number;
|
|
969
969
|
fallbackModels?: string[] | undefined;
|
|
970
970
|
healthCheck?: {
|
|
971
971
|
status: "unknown" | "healthy" | "unhealthy";
|
|
@@ -976,6 +976,7 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
976
976
|
}, {
|
|
977
977
|
model: {
|
|
978
978
|
name: string;
|
|
979
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
979
980
|
id: string;
|
|
980
981
|
version: string;
|
|
981
982
|
capabilities: {
|
|
@@ -987,7 +988,6 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
987
988
|
codeGeneration?: boolean | undefined;
|
|
988
989
|
reasoning?: boolean | undefined;
|
|
989
990
|
};
|
|
990
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
991
991
|
limits: {
|
|
992
992
|
maxTokens: number;
|
|
993
993
|
contextWindow: number;
|
|
@@ -998,15 +998,15 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
998
998
|
maxOutputTokens?: number | undefined;
|
|
999
999
|
};
|
|
1000
1000
|
description?: string | undefined;
|
|
1001
|
+
region?: string | undefined;
|
|
1002
|
+
endpoint?: string | undefined;
|
|
1003
|
+
apiKey?: string | undefined;
|
|
1001
1004
|
pricing?: {
|
|
1002
1005
|
currency?: string | undefined;
|
|
1003
1006
|
inputCostPer1kTokens?: number | undefined;
|
|
1004
1007
|
outputCostPer1kTokens?: number | undefined;
|
|
1005
1008
|
embeddingCostPer1kTokens?: number | undefined;
|
|
1006
1009
|
} | undefined;
|
|
1007
|
-
endpoint?: string | undefined;
|
|
1008
|
-
apiKey?: string | undefined;
|
|
1009
|
-
region?: string | undefined;
|
|
1010
1010
|
tags?: string[] | undefined;
|
|
1011
1011
|
deprecated?: boolean | undefined;
|
|
1012
1012
|
recommendedFor?: string[] | undefined;
|
|
@@ -1178,8 +1178,10 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
1178
1178
|
name: string;
|
|
1179
1179
|
models: Record<string, {
|
|
1180
1180
|
status: "active" | "disabled" | "deprecated" | "experimental";
|
|
1181
|
+
priority: number;
|
|
1181
1182
|
model: {
|
|
1182
1183
|
name: string;
|
|
1184
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
1183
1185
|
id: string;
|
|
1184
1186
|
version: string;
|
|
1185
1187
|
capabilities: {
|
|
@@ -1191,7 +1193,6 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
1191
1193
|
codeGeneration: boolean;
|
|
1192
1194
|
reasoning: boolean;
|
|
1193
1195
|
};
|
|
1194
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
1195
1196
|
limits: {
|
|
1196
1197
|
maxTokens: number;
|
|
1197
1198
|
contextWindow: number;
|
|
@@ -1203,19 +1204,18 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
1203
1204
|
};
|
|
1204
1205
|
deprecated: boolean;
|
|
1205
1206
|
description?: string | undefined;
|
|
1207
|
+
region?: string | undefined;
|
|
1208
|
+
endpoint?: string | undefined;
|
|
1209
|
+
apiKey?: string | undefined;
|
|
1206
1210
|
pricing?: {
|
|
1207
1211
|
currency: string;
|
|
1208
1212
|
inputCostPer1kTokens?: number | undefined;
|
|
1209
1213
|
outputCostPer1kTokens?: number | undefined;
|
|
1210
1214
|
embeddingCostPer1kTokens?: number | undefined;
|
|
1211
1215
|
} | undefined;
|
|
1212
|
-
endpoint?: string | undefined;
|
|
1213
|
-
apiKey?: string | undefined;
|
|
1214
|
-
region?: string | undefined;
|
|
1215
1216
|
tags?: string[] | undefined;
|
|
1216
1217
|
recommendedFor?: string[] | undefined;
|
|
1217
1218
|
};
|
|
1218
|
-
priority: number;
|
|
1219
1219
|
fallbackModels?: string[] | undefined;
|
|
1220
1220
|
healthCheck?: {
|
|
1221
1221
|
status: "unknown" | "healthy" | "unhealthy";
|
|
@@ -1267,6 +1267,7 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
1267
1267
|
models: Record<string, {
|
|
1268
1268
|
model: {
|
|
1269
1269
|
name: string;
|
|
1270
|
+
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
1270
1271
|
id: string;
|
|
1271
1272
|
version: string;
|
|
1272
1273
|
capabilities: {
|
|
@@ -1278,7 +1279,6 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
1278
1279
|
codeGeneration?: boolean | undefined;
|
|
1279
1280
|
reasoning?: boolean | undefined;
|
|
1280
1281
|
};
|
|
1281
|
-
provider: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface";
|
|
1282
1282
|
limits: {
|
|
1283
1283
|
maxTokens: number;
|
|
1284
1284
|
contextWindow: number;
|
|
@@ -1289,15 +1289,15 @@ export declare const ModelRegistrySchema: z.ZodObject<{
|
|
|
1289
1289
|
maxOutputTokens?: number | undefined;
|
|
1290
1290
|
};
|
|
1291
1291
|
description?: string | undefined;
|
|
1292
|
+
region?: string | undefined;
|
|
1293
|
+
endpoint?: string | undefined;
|
|
1294
|
+
apiKey?: string | undefined;
|
|
1292
1295
|
pricing?: {
|
|
1293
1296
|
currency?: string | undefined;
|
|
1294
1297
|
inputCostPer1kTokens?: number | undefined;
|
|
1295
1298
|
outputCostPer1kTokens?: number | undefined;
|
|
1296
1299
|
embeddingCostPer1kTokens?: number | undefined;
|
|
1297
1300
|
} | undefined;
|
|
1298
|
-
endpoint?: string | undefined;
|
|
1299
|
-
apiKey?: string | undefined;
|
|
1300
|
-
region?: string | undefined;
|
|
1301
1301
|
tags?: string[] | undefined;
|
|
1302
1302
|
deprecated?: boolean | undefined;
|
|
1303
1303
|
recommendedFor?: string[] | undefined;
|
|
@@ -1363,14 +1363,14 @@ export declare const ModelSelectionCriteriaSchema: z.ZodObject<{
|
|
|
1363
1363
|
excludeDeprecated: z.ZodDefault<z.ZodBoolean>;
|
|
1364
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1365
1365
|
excludeDeprecated: boolean;
|
|
1366
|
-
capabilities?: string[] | undefined;
|
|
1367
1366
|
provider?: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface" | undefined;
|
|
1367
|
+
capabilities?: string[] | undefined;
|
|
1368
1368
|
tags?: string[] | undefined;
|
|
1369
1369
|
maxCostPer1kTokens?: number | undefined;
|
|
1370
1370
|
minContextWindow?: number | undefined;
|
|
1371
1371
|
}, {
|
|
1372
|
-
capabilities?: string[] | undefined;
|
|
1373
1372
|
provider?: "custom" | "google" | "openai" | "azure_openai" | "anthropic" | "local" | "cohere" | "huggingface" | undefined;
|
|
1373
|
+
capabilities?: string[] | undefined;
|
|
1374
1374
|
tags?: string[] | undefined;
|
|
1375
1375
|
maxCostPer1kTokens?: number | undefined;
|
|
1376
1376
|
minContextWindow?: number | undefined;
|
package/dist/ai/nlq.zod.d.ts
CHANGED
|
@@ -112,12 +112,12 @@ export declare const QueryContextSchema: z.ZodObject<{
|
|
|
112
112
|
timestamp: z.ZodString;
|
|
113
113
|
intent: z.ZodOptional<z.ZodEnum<["select", "aggregate", "filter", "sort", "compare", "trend", "insight", "create", "update", "delete"]>>;
|
|
114
114
|
}, "strip", z.ZodTypeAny, {
|
|
115
|
-
query: string;
|
|
116
115
|
timestamp: string;
|
|
116
|
+
query: string;
|
|
117
117
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
118
118
|
}, {
|
|
119
|
-
query: string;
|
|
120
119
|
timestamp: string;
|
|
120
|
+
query: string;
|
|
121
121
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
122
122
|
}>, "many">>;
|
|
123
123
|
/** Preferences */
|
|
@@ -130,8 +130,8 @@ export declare const QueryContextSchema: z.ZodObject<{
|
|
|
130
130
|
defaultLimit: number;
|
|
131
131
|
userId?: string | undefined;
|
|
132
132
|
conversationHistory?: {
|
|
133
|
-
query: string;
|
|
134
133
|
timestamp: string;
|
|
134
|
+
query: string;
|
|
135
135
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
userRole?: string | undefined;
|
|
@@ -142,8 +142,8 @@ export declare const QueryContextSchema: z.ZodObject<{
|
|
|
142
142
|
locale?: string | undefined;
|
|
143
143
|
timezone?: string | undefined;
|
|
144
144
|
conversationHistory?: {
|
|
145
|
-
query: string;
|
|
146
145
|
timestamp: string;
|
|
146
|
+
query: string;
|
|
147
147
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
148
148
|
}[] | undefined;
|
|
149
149
|
userRole?: string | undefined;
|
|
@@ -377,12 +377,12 @@ export declare const NLQRequestSchema: z.ZodObject<{
|
|
|
377
377
|
timestamp: z.ZodString;
|
|
378
378
|
intent: z.ZodOptional<z.ZodEnum<["select", "aggregate", "filter", "sort", "compare", "trend", "insight", "create", "update", "delete"]>>;
|
|
379
379
|
}, "strip", z.ZodTypeAny, {
|
|
380
|
-
query: string;
|
|
381
380
|
timestamp: string;
|
|
381
|
+
query: string;
|
|
382
382
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
383
383
|
}, {
|
|
384
|
-
query: string;
|
|
385
384
|
timestamp: string;
|
|
385
|
+
query: string;
|
|
386
386
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
387
387
|
}>, "many">>;
|
|
388
388
|
/** Preferences */
|
|
@@ -395,8 +395,8 @@ export declare const NLQRequestSchema: z.ZodObject<{
|
|
|
395
395
|
defaultLimit: number;
|
|
396
396
|
userId?: string | undefined;
|
|
397
397
|
conversationHistory?: {
|
|
398
|
-
query: string;
|
|
399
398
|
timestamp: string;
|
|
399
|
+
query: string;
|
|
400
400
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
401
401
|
}[] | undefined;
|
|
402
402
|
userRole?: string | undefined;
|
|
@@ -407,8 +407,8 @@ export declare const NLQRequestSchema: z.ZodObject<{
|
|
|
407
407
|
locale?: string | undefined;
|
|
408
408
|
timezone?: string | undefined;
|
|
409
409
|
conversationHistory?: {
|
|
410
|
-
query: string;
|
|
411
410
|
timestamp: string;
|
|
411
|
+
query: string;
|
|
412
412
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
413
413
|
}[] | undefined;
|
|
414
414
|
userRole?: string | undefined;
|
|
@@ -435,8 +435,8 @@ export declare const NLQRequestSchema: z.ZodObject<{
|
|
|
435
435
|
defaultLimit: number;
|
|
436
436
|
userId?: string | undefined;
|
|
437
437
|
conversationHistory?: {
|
|
438
|
-
query: string;
|
|
439
438
|
timestamp: string;
|
|
439
|
+
query: string;
|
|
440
440
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
441
441
|
}[] | undefined;
|
|
442
442
|
userRole?: string | undefined;
|
|
@@ -451,8 +451,8 @@ export declare const NLQRequestSchema: z.ZodObject<{
|
|
|
451
451
|
locale?: string | undefined;
|
|
452
452
|
timezone?: string | undefined;
|
|
453
453
|
conversationHistory?: {
|
|
454
|
-
query: string;
|
|
455
454
|
timestamp: string;
|
|
455
|
+
query: string;
|
|
456
456
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
457
457
|
}[] | undefined;
|
|
458
458
|
userRole?: string | undefined;
|
|
@@ -800,12 +800,12 @@ export declare const NLQTrainingExampleSchema: z.ZodObject<{
|
|
|
800
800
|
timestamp: z.ZodString;
|
|
801
801
|
intent: z.ZodOptional<z.ZodEnum<["select", "aggregate", "filter", "sort", "compare", "trend", "insight", "create", "update", "delete"]>>;
|
|
802
802
|
}, "strip", z.ZodTypeAny, {
|
|
803
|
-
query: string;
|
|
804
803
|
timestamp: string;
|
|
804
|
+
query: string;
|
|
805
805
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
806
806
|
}, {
|
|
807
|
-
query: string;
|
|
808
807
|
timestamp: string;
|
|
808
|
+
query: string;
|
|
809
809
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
810
810
|
}>, "many">>;
|
|
811
811
|
/** Preferences */
|
|
@@ -818,8 +818,8 @@ export declare const NLQTrainingExampleSchema: z.ZodObject<{
|
|
|
818
818
|
defaultLimit: number;
|
|
819
819
|
userId?: string | undefined;
|
|
820
820
|
conversationHistory?: {
|
|
821
|
-
query: string;
|
|
822
821
|
timestamp: string;
|
|
822
|
+
query: string;
|
|
823
823
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
824
824
|
}[] | undefined;
|
|
825
825
|
userRole?: string | undefined;
|
|
@@ -830,8 +830,8 @@ export declare const NLQTrainingExampleSchema: z.ZodObject<{
|
|
|
830
830
|
locale?: string | undefined;
|
|
831
831
|
timezone?: string | undefined;
|
|
832
832
|
conversationHistory?: {
|
|
833
|
-
query: string;
|
|
834
833
|
timestamp: string;
|
|
834
|
+
query: string;
|
|
835
835
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
836
836
|
}[] | undefined;
|
|
837
837
|
userRole?: string | undefined;
|
|
@@ -850,37 +850,35 @@ export declare const NLQTrainingExampleSchema: z.ZodObject<{
|
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
851
|
query: string;
|
|
852
852
|
expectedIntent: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight";
|
|
853
|
-
tags?: string[] | undefined;
|
|
854
|
-
category?: string | undefined;
|
|
855
853
|
context?: {
|
|
856
854
|
locale: string;
|
|
857
855
|
timezone: string;
|
|
858
856
|
defaultLimit: number;
|
|
859
857
|
userId?: string | undefined;
|
|
860
858
|
conversationHistory?: {
|
|
861
|
-
query: string;
|
|
862
859
|
timestamp: string;
|
|
860
|
+
query: string;
|
|
863
861
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
864
862
|
}[] | undefined;
|
|
865
863
|
userRole?: string | undefined;
|
|
866
864
|
currentObject?: string | undefined;
|
|
867
865
|
currentRecordId?: string | undefined;
|
|
868
866
|
} | undefined;
|
|
867
|
+
tags?: string[] | undefined;
|
|
868
|
+
category?: string | undefined;
|
|
869
869
|
expectedObject?: string | undefined;
|
|
870
870
|
expectedAST?: any;
|
|
871
871
|
notes?: string | undefined;
|
|
872
872
|
}, {
|
|
873
873
|
query: string;
|
|
874
874
|
expectedIntent: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight";
|
|
875
|
-
tags?: string[] | undefined;
|
|
876
|
-
category?: string | undefined;
|
|
877
875
|
context?: {
|
|
878
876
|
userId?: string | undefined;
|
|
879
877
|
locale?: string | undefined;
|
|
880
878
|
timezone?: string | undefined;
|
|
881
879
|
conversationHistory?: {
|
|
882
|
-
query: string;
|
|
883
880
|
timestamp: string;
|
|
881
|
+
query: string;
|
|
884
882
|
intent?: "select" | "sort" | "filter" | "create" | "update" | "delete" | "aggregate" | "compare" | "trend" | "insight" | undefined;
|
|
885
883
|
}[] | undefined;
|
|
886
884
|
userRole?: string | undefined;
|
|
@@ -888,6 +886,8 @@ export declare const NLQTrainingExampleSchema: z.ZodObject<{
|
|
|
888
886
|
currentRecordId?: string | undefined;
|
|
889
887
|
defaultLimit?: number | undefined;
|
|
890
888
|
} | undefined;
|
|
889
|
+
tags?: string[] | undefined;
|
|
890
|
+
category?: string | undefined;
|
|
891
891
|
expectedObject?: string | undefined;
|
|
892
892
|
expectedAST?: any;
|
|
893
893
|
notes?: string | undefined;
|
|
@@ -982,13 +982,13 @@ export declare const NLQAnalyticsSchema: z.ZodObject<{
|
|
|
982
982
|
confidence: z.ZodNumber;
|
|
983
983
|
timestamp: z.ZodString;
|
|
984
984
|
}, "strip", z.ZodTypeAny, {
|
|
985
|
+
timestamp: string;
|
|
985
986
|
query: string;
|
|
986
987
|
confidence: number;
|
|
987
|
-
timestamp: string;
|
|
988
988
|
}, {
|
|
989
|
+
timestamp: string;
|
|
989
990
|
query: string;
|
|
990
991
|
confidence: number;
|
|
991
|
-
timestamp: string;
|
|
992
992
|
}>, "many">;
|
|
993
993
|
/** Timeframe */
|
|
994
994
|
startDate: z.ZodString;
|
|
@@ -1008,9 +1008,9 @@ export declare const NLQAnalyticsSchema: z.ZodObject<{
|
|
|
1008
1008
|
}[];
|
|
1009
1009
|
averageParseTime: number;
|
|
1010
1010
|
lowConfidenceQueries: {
|
|
1011
|
+
timestamp: string;
|
|
1011
1012
|
query: string;
|
|
1012
1013
|
confidence: number;
|
|
1013
|
-
timestamp: string;
|
|
1014
1014
|
}[];
|
|
1015
1015
|
averageExecutionTime?: number | undefined;
|
|
1016
1016
|
}, {
|
|
@@ -1028,9 +1028,9 @@ export declare const NLQAnalyticsSchema: z.ZodObject<{
|
|
|
1028
1028
|
}[];
|
|
1029
1029
|
averageParseTime: number;
|
|
1030
1030
|
lowConfidenceQueries: {
|
|
1031
|
+
timestamp: string;
|
|
1031
1032
|
query: string;
|
|
1032
1033
|
confidence: number;
|
|
1033
|
-
timestamp: string;
|
|
1034
1034
|
}[];
|
|
1035
1035
|
averageExecutionTime?: number | undefined;
|
|
1036
1036
|
}>;
|