@objectstack/spec 0.3.0 → 0.3.1
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/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/package.json +12 -12
- package/json-schema/AuthenticationConfig.json +0 -601
- package/json-schema/AuthenticationProvider.json +0 -617
- package/json-schema/MenuItem.json +0 -28
- 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/{FormSection.json → ui/FormSection.json} +0 -0
- /package/json-schema/{FormView.json → ui/FormView.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/{ListView.json → ui/ListView.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/{View.json → ui/View.json} +0 -0
- /package/json-schema/{ZIndex.json → ui/ZIndex.json} +0 -0
package/dist/data/field.zod.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
/**
|
|
3
3
|
* Field Type Enum
|
|
4
4
|
*/
|
|
5
|
-
export declare const FieldType: z.ZodEnum<["text", "textarea", "email", "url", "phone", "password", "markdown", "html", "richtext", "number", "currency", "percent", "date", "datetime", "time", "boolean", "select", "lookup", "master_detail", "image", "file", "avatar", "formula", "summary", "autonumber", "location", "address", "code", "color", "rating", "signature"]>;
|
|
5
|
+
export declare const FieldType: z.ZodEnum<["text", "textarea", "email", "url", "phone", "password", "markdown", "html", "richtext", "number", "currency", "percent", "date", "datetime", "time", "boolean", "select", "lookup", "master_detail", "image", "file", "avatar", "formula", "summary", "autonumber", "location", "geolocation", "address", "code", "color", "rating", "slider", "signature", "qrcode"]>;
|
|
6
6
|
export type FieldType = z.infer<typeof FieldType>;
|
|
7
7
|
/**
|
|
8
8
|
* Select Option Schema
|
|
@@ -79,7 +79,7 @@ export declare const FieldSchema: z.ZodObject<{
|
|
|
79
79
|
/** Identity */
|
|
80
80
|
name: z.ZodOptional<z.ZodString>;
|
|
81
81
|
label: z.ZodOptional<z.ZodString>;
|
|
82
|
-
type: z.ZodEnum<["text", "textarea", "email", "url", "phone", "password", "markdown", "html", "richtext", "number", "currency", "percent", "date", "datetime", "time", "boolean", "select", "lookup", "master_detail", "image", "file", "avatar", "formula", "summary", "autonumber", "location", "address", "code", "color", "rating", "signature"]>;
|
|
82
|
+
type: z.ZodEnum<["text", "textarea", "email", "url", "phone", "password", "markdown", "html", "richtext", "number", "currency", "percent", "date", "datetime", "time", "boolean", "select", "lookup", "master_detail", "image", "file", "avatar", "formula", "summary", "autonumber", "location", "geolocation", "address", "code", "color", "rating", "slider", "signature", "qrcode"]>;
|
|
83
83
|
description: z.ZodOptional<z.ZodString>;
|
|
84
84
|
format: z.ZodOptional<z.ZodString>;
|
|
85
85
|
/** Database Constraints */
|
|
@@ -146,6 +146,13 @@ export declare const FieldSchema: z.ZodObject<{
|
|
|
146
146
|
colorFormat: z.ZodOptional<z.ZodEnum<["hex", "rgb", "rgba", "hsl"]>>;
|
|
147
147
|
allowAlpha: z.ZodOptional<z.ZodBoolean>;
|
|
148
148
|
presetColors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
149
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
150
|
+
showValue: z.ZodOptional<z.ZodBoolean>;
|
|
151
|
+
marks: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
152
|
+
barcodeFormat: z.ZodOptional<z.ZodEnum<["qr", "ean13", "ean8", "code128", "code39", "upca", "upce"]>>;
|
|
153
|
+
qrErrorCorrection: z.ZodOptional<z.ZodEnum<["L", "M", "Q", "H"]>>;
|
|
154
|
+
displayValue: z.ZodOptional<z.ZodBoolean>;
|
|
155
|
+
allowScanning: z.ZodOptional<z.ZodBoolean>;
|
|
149
156
|
/** Security & Visibility */
|
|
150
157
|
hidden: z.ZodDefault<z.ZodBoolean>;
|
|
151
158
|
readonly: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -154,7 +161,7 @@ export declare const FieldSchema: z.ZodObject<{
|
|
|
154
161
|
index: z.ZodDefault<z.ZodBoolean>;
|
|
155
162
|
externalId: z.ZodDefault<z.ZodBoolean>;
|
|
156
163
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
type: "number" | "boolean" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "date" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "signature";
|
|
164
|
+
type: "number" | "boolean" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "date" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "geolocation" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode";
|
|
158
165
|
required: boolean;
|
|
159
166
|
searchable: boolean;
|
|
160
167
|
multiple: boolean;
|
|
@@ -203,8 +210,15 @@ export declare const FieldSchema: z.ZodObject<{
|
|
|
203
210
|
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
204
211
|
allowAlpha?: boolean | undefined;
|
|
205
212
|
presetColors?: string[] | undefined;
|
|
213
|
+
step?: number | undefined;
|
|
214
|
+
showValue?: boolean | undefined;
|
|
215
|
+
marks?: Record<string, string> | undefined;
|
|
216
|
+
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
217
|
+
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
218
|
+
displayValue?: boolean | undefined;
|
|
219
|
+
allowScanning?: boolean | undefined;
|
|
206
220
|
}, {
|
|
207
|
-
type: "number" | "boolean" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "date" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "address" | "code" | "color" | "rating" | "signature";
|
|
221
|
+
type: "number" | "boolean" | "text" | "textarea" | "email" | "url" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "date" | "datetime" | "time" | "select" | "lookup" | "master_detail" | "image" | "file" | "avatar" | "formula" | "summary" | "autonumber" | "location" | "geolocation" | "address" | "code" | "color" | "rating" | "slider" | "signature" | "qrcode";
|
|
208
222
|
formula?: string | undefined;
|
|
209
223
|
options?: {
|
|
210
224
|
value: string;
|
|
@@ -248,6 +262,13 @@ export declare const FieldSchema: z.ZodObject<{
|
|
|
248
262
|
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
249
263
|
allowAlpha?: boolean | undefined;
|
|
250
264
|
presetColors?: string[] | undefined;
|
|
265
|
+
step?: number | undefined;
|
|
266
|
+
showValue?: boolean | undefined;
|
|
267
|
+
marks?: Record<string, string> | undefined;
|
|
268
|
+
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
269
|
+
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
270
|
+
displayValue?: boolean | undefined;
|
|
271
|
+
allowScanning?: boolean | undefined;
|
|
251
272
|
hidden?: boolean | undefined;
|
|
252
273
|
readonly?: boolean | undefined;
|
|
253
274
|
encryption?: boolean | undefined;
|
|
@@ -307,6 +328,13 @@ export declare const Field: {
|
|
|
307
328
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
308
329
|
readonly allowAlpha?: boolean | undefined;
|
|
309
330
|
readonly presetColors?: string[] | undefined;
|
|
331
|
+
readonly step?: number | undefined;
|
|
332
|
+
readonly showValue?: boolean | undefined;
|
|
333
|
+
readonly marks?: Record<string, string> | undefined;
|
|
334
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
335
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
336
|
+
readonly displayValue?: boolean | undefined;
|
|
337
|
+
readonly allowScanning?: boolean | undefined;
|
|
310
338
|
readonly hidden?: boolean | undefined;
|
|
311
339
|
readonly readonly?: boolean | undefined;
|
|
312
340
|
readonly encryption?: boolean | undefined;
|
|
@@ -358,6 +386,13 @@ export declare const Field: {
|
|
|
358
386
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
359
387
|
readonly allowAlpha?: boolean | undefined;
|
|
360
388
|
readonly presetColors?: string[] | undefined;
|
|
389
|
+
readonly step?: number | undefined;
|
|
390
|
+
readonly showValue?: boolean | undefined;
|
|
391
|
+
readonly marks?: Record<string, string> | undefined;
|
|
392
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
393
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
394
|
+
readonly displayValue?: boolean | undefined;
|
|
395
|
+
readonly allowScanning?: boolean | undefined;
|
|
361
396
|
readonly hidden?: boolean | undefined;
|
|
362
397
|
readonly readonly?: boolean | undefined;
|
|
363
398
|
readonly encryption?: boolean | undefined;
|
|
@@ -409,6 +444,13 @@ export declare const Field: {
|
|
|
409
444
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
410
445
|
readonly allowAlpha?: boolean | undefined;
|
|
411
446
|
readonly presetColors?: string[] | undefined;
|
|
447
|
+
readonly step?: number | undefined;
|
|
448
|
+
readonly showValue?: boolean | undefined;
|
|
449
|
+
readonly marks?: Record<string, string> | undefined;
|
|
450
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
451
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
452
|
+
readonly displayValue?: boolean | undefined;
|
|
453
|
+
readonly allowScanning?: boolean | undefined;
|
|
412
454
|
readonly hidden?: boolean | undefined;
|
|
413
455
|
readonly readonly?: boolean | undefined;
|
|
414
456
|
readonly encryption?: boolean | undefined;
|
|
@@ -460,6 +502,13 @@ export declare const Field: {
|
|
|
460
502
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
461
503
|
readonly allowAlpha?: boolean | undefined;
|
|
462
504
|
readonly presetColors?: string[] | undefined;
|
|
505
|
+
readonly step?: number | undefined;
|
|
506
|
+
readonly showValue?: boolean | undefined;
|
|
507
|
+
readonly marks?: Record<string, string> | undefined;
|
|
508
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
509
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
510
|
+
readonly displayValue?: boolean | undefined;
|
|
511
|
+
readonly allowScanning?: boolean | undefined;
|
|
463
512
|
readonly hidden?: boolean | undefined;
|
|
464
513
|
readonly readonly?: boolean | undefined;
|
|
465
514
|
readonly encryption?: boolean | undefined;
|
|
@@ -511,6 +560,13 @@ export declare const Field: {
|
|
|
511
560
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
512
561
|
readonly allowAlpha?: boolean | undefined;
|
|
513
562
|
readonly presetColors?: string[] | undefined;
|
|
563
|
+
readonly step?: number | undefined;
|
|
564
|
+
readonly showValue?: boolean | undefined;
|
|
565
|
+
readonly marks?: Record<string, string> | undefined;
|
|
566
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
567
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
568
|
+
readonly displayValue?: boolean | undefined;
|
|
569
|
+
readonly allowScanning?: boolean | undefined;
|
|
514
570
|
readonly hidden?: boolean | undefined;
|
|
515
571
|
readonly readonly?: boolean | undefined;
|
|
516
572
|
readonly encryption?: boolean | undefined;
|
|
@@ -562,6 +618,13 @@ export declare const Field: {
|
|
|
562
618
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
563
619
|
readonly allowAlpha?: boolean | undefined;
|
|
564
620
|
readonly presetColors?: string[] | undefined;
|
|
621
|
+
readonly step?: number | undefined;
|
|
622
|
+
readonly showValue?: boolean | undefined;
|
|
623
|
+
readonly marks?: Record<string, string> | undefined;
|
|
624
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
625
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
626
|
+
readonly displayValue?: boolean | undefined;
|
|
627
|
+
readonly allowScanning?: boolean | undefined;
|
|
565
628
|
readonly hidden?: boolean | undefined;
|
|
566
629
|
readonly readonly?: boolean | undefined;
|
|
567
630
|
readonly encryption?: boolean | undefined;
|
|
@@ -613,6 +676,13 @@ export declare const Field: {
|
|
|
613
676
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
614
677
|
readonly allowAlpha?: boolean | undefined;
|
|
615
678
|
readonly presetColors?: string[] | undefined;
|
|
679
|
+
readonly step?: number | undefined;
|
|
680
|
+
readonly showValue?: boolean | undefined;
|
|
681
|
+
readonly marks?: Record<string, string> | undefined;
|
|
682
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
683
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
684
|
+
readonly displayValue?: boolean | undefined;
|
|
685
|
+
readonly allowScanning?: boolean | undefined;
|
|
616
686
|
readonly hidden?: boolean | undefined;
|
|
617
687
|
readonly readonly?: boolean | undefined;
|
|
618
688
|
readonly encryption?: boolean | undefined;
|
|
@@ -664,6 +734,13 @@ export declare const Field: {
|
|
|
664
734
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
665
735
|
readonly allowAlpha?: boolean | undefined;
|
|
666
736
|
readonly presetColors?: string[] | undefined;
|
|
737
|
+
readonly step?: number | undefined;
|
|
738
|
+
readonly showValue?: boolean | undefined;
|
|
739
|
+
readonly marks?: Record<string, string> | undefined;
|
|
740
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
741
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
742
|
+
readonly displayValue?: boolean | undefined;
|
|
743
|
+
readonly allowScanning?: boolean | undefined;
|
|
667
744
|
readonly hidden?: boolean | undefined;
|
|
668
745
|
readonly readonly?: boolean | undefined;
|
|
669
746
|
readonly encryption?: boolean | undefined;
|
|
@@ -715,6 +792,13 @@ export declare const Field: {
|
|
|
715
792
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
716
793
|
readonly allowAlpha?: boolean | undefined;
|
|
717
794
|
readonly presetColors?: string[] | undefined;
|
|
795
|
+
readonly step?: number | undefined;
|
|
796
|
+
readonly showValue?: boolean | undefined;
|
|
797
|
+
readonly marks?: Record<string, string> | undefined;
|
|
798
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
799
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
800
|
+
readonly displayValue?: boolean | undefined;
|
|
801
|
+
readonly allowScanning?: boolean | undefined;
|
|
718
802
|
readonly hidden?: boolean | undefined;
|
|
719
803
|
readonly readonly?: boolean | undefined;
|
|
720
804
|
readonly encryption?: boolean | undefined;
|
|
@@ -766,6 +850,13 @@ export declare const Field: {
|
|
|
766
850
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
767
851
|
readonly allowAlpha?: boolean | undefined;
|
|
768
852
|
readonly presetColors?: string[] | undefined;
|
|
853
|
+
readonly step?: number | undefined;
|
|
854
|
+
readonly showValue?: boolean | undefined;
|
|
855
|
+
readonly marks?: Record<string, string> | undefined;
|
|
856
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
857
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
858
|
+
readonly displayValue?: boolean | undefined;
|
|
859
|
+
readonly allowScanning?: boolean | undefined;
|
|
769
860
|
readonly hidden?: boolean | undefined;
|
|
770
861
|
readonly readonly?: boolean | undefined;
|
|
771
862
|
readonly encryption?: boolean | undefined;
|
|
@@ -817,6 +908,13 @@ export declare const Field: {
|
|
|
817
908
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
818
909
|
readonly allowAlpha?: boolean | undefined;
|
|
819
910
|
readonly presetColors?: string[] | undefined;
|
|
911
|
+
readonly step?: number | undefined;
|
|
912
|
+
readonly showValue?: boolean | undefined;
|
|
913
|
+
readonly marks?: Record<string, string> | undefined;
|
|
914
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
915
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
916
|
+
readonly displayValue?: boolean | undefined;
|
|
917
|
+
readonly allowScanning?: boolean | undefined;
|
|
820
918
|
readonly hidden?: boolean | undefined;
|
|
821
919
|
readonly readonly?: boolean | undefined;
|
|
822
920
|
readonly encryption?: boolean | undefined;
|
|
@@ -868,6 +966,13 @@ export declare const Field: {
|
|
|
868
966
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
869
967
|
readonly allowAlpha?: boolean | undefined;
|
|
870
968
|
readonly presetColors?: string[] | undefined;
|
|
969
|
+
readonly step?: number | undefined;
|
|
970
|
+
readonly showValue?: boolean | undefined;
|
|
971
|
+
readonly marks?: Record<string, string> | undefined;
|
|
972
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
973
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
974
|
+
readonly displayValue?: boolean | undefined;
|
|
975
|
+
readonly allowScanning?: boolean | undefined;
|
|
871
976
|
readonly hidden?: boolean | undefined;
|
|
872
977
|
readonly readonly?: boolean | undefined;
|
|
873
978
|
readonly encryption?: boolean | undefined;
|
|
@@ -919,6 +1024,13 @@ export declare const Field: {
|
|
|
919
1024
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
920
1025
|
readonly allowAlpha?: boolean | undefined;
|
|
921
1026
|
readonly presetColors?: string[] | undefined;
|
|
1027
|
+
readonly step?: number | undefined;
|
|
1028
|
+
readonly showValue?: boolean | undefined;
|
|
1029
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1030
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1031
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1032
|
+
readonly displayValue?: boolean | undefined;
|
|
1033
|
+
readonly allowScanning?: boolean | undefined;
|
|
922
1034
|
readonly hidden?: boolean | undefined;
|
|
923
1035
|
readonly readonly?: boolean | undefined;
|
|
924
1036
|
readonly encryption?: boolean | undefined;
|
|
@@ -970,6 +1082,13 @@ export declare const Field: {
|
|
|
970
1082
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
971
1083
|
readonly allowAlpha?: boolean | undefined;
|
|
972
1084
|
readonly presetColors?: string[] | undefined;
|
|
1085
|
+
readonly step?: number | undefined;
|
|
1086
|
+
readonly showValue?: boolean | undefined;
|
|
1087
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1088
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1089
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1090
|
+
readonly displayValue?: boolean | undefined;
|
|
1091
|
+
readonly allowScanning?: boolean | undefined;
|
|
973
1092
|
readonly hidden?: boolean | undefined;
|
|
974
1093
|
readonly readonly?: boolean | undefined;
|
|
975
1094
|
readonly encryption?: boolean | undefined;
|
|
@@ -1021,6 +1140,13 @@ export declare const Field: {
|
|
|
1021
1140
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1022
1141
|
readonly allowAlpha?: boolean | undefined;
|
|
1023
1142
|
readonly presetColors?: string[] | undefined;
|
|
1143
|
+
readonly step?: number | undefined;
|
|
1144
|
+
readonly showValue?: boolean | undefined;
|
|
1145
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1146
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1147
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1148
|
+
readonly displayValue?: boolean | undefined;
|
|
1149
|
+
readonly allowScanning?: boolean | undefined;
|
|
1024
1150
|
readonly hidden?: boolean | undefined;
|
|
1025
1151
|
readonly readonly?: boolean | undefined;
|
|
1026
1152
|
readonly encryption?: boolean | undefined;
|
|
@@ -1072,6 +1198,13 @@ export declare const Field: {
|
|
|
1072
1198
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1073
1199
|
readonly allowAlpha?: boolean | undefined;
|
|
1074
1200
|
readonly presetColors?: string[] | undefined;
|
|
1201
|
+
readonly step?: number | undefined;
|
|
1202
|
+
readonly showValue?: boolean | undefined;
|
|
1203
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1204
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1205
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1206
|
+
readonly displayValue?: boolean | undefined;
|
|
1207
|
+
readonly allowScanning?: boolean | undefined;
|
|
1075
1208
|
readonly hidden?: boolean | undefined;
|
|
1076
1209
|
readonly readonly?: boolean | undefined;
|
|
1077
1210
|
readonly encryption?: boolean | undefined;
|
|
@@ -1123,6 +1256,13 @@ export declare const Field: {
|
|
|
1123
1256
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1124
1257
|
readonly allowAlpha?: boolean | undefined;
|
|
1125
1258
|
readonly presetColors?: string[] | undefined;
|
|
1259
|
+
readonly step?: number | undefined;
|
|
1260
|
+
readonly showValue?: boolean | undefined;
|
|
1261
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1262
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1263
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1264
|
+
readonly displayValue?: boolean | undefined;
|
|
1265
|
+
readonly allowScanning?: boolean | undefined;
|
|
1126
1266
|
readonly hidden?: boolean | undefined;
|
|
1127
1267
|
readonly readonly?: boolean | undefined;
|
|
1128
1268
|
readonly encryption?: boolean | undefined;
|
|
@@ -1174,6 +1314,13 @@ export declare const Field: {
|
|
|
1174
1314
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1175
1315
|
readonly allowAlpha?: boolean | undefined;
|
|
1176
1316
|
readonly presetColors?: string[] | undefined;
|
|
1317
|
+
readonly step?: number | undefined;
|
|
1318
|
+
readonly showValue?: boolean | undefined;
|
|
1319
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1320
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1321
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1322
|
+
readonly displayValue?: boolean | undefined;
|
|
1323
|
+
readonly allowScanning?: boolean | undefined;
|
|
1177
1324
|
readonly hidden?: boolean | undefined;
|
|
1178
1325
|
readonly readonly?: boolean | undefined;
|
|
1179
1326
|
readonly encryption?: boolean | undefined;
|
|
@@ -1225,6 +1372,13 @@ export declare const Field: {
|
|
|
1225
1372
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1226
1373
|
readonly allowAlpha?: boolean | undefined;
|
|
1227
1374
|
readonly presetColors?: string[] | undefined;
|
|
1375
|
+
readonly step?: number | undefined;
|
|
1376
|
+
readonly showValue?: boolean | undefined;
|
|
1377
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1378
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1379
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1380
|
+
readonly displayValue?: boolean | undefined;
|
|
1381
|
+
readonly allowScanning?: boolean | undefined;
|
|
1228
1382
|
readonly hidden?: boolean | undefined;
|
|
1229
1383
|
readonly readonly?: boolean | undefined;
|
|
1230
1384
|
readonly encryption?: boolean | undefined;
|
|
@@ -1276,6 +1430,13 @@ export declare const Field: {
|
|
|
1276
1430
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1277
1431
|
readonly allowAlpha?: boolean | undefined;
|
|
1278
1432
|
readonly presetColors?: string[] | undefined;
|
|
1433
|
+
readonly step?: number | undefined;
|
|
1434
|
+
readonly showValue?: boolean | undefined;
|
|
1435
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1436
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1437
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1438
|
+
readonly displayValue?: boolean | undefined;
|
|
1439
|
+
readonly allowScanning?: boolean | undefined;
|
|
1279
1440
|
readonly hidden?: boolean | undefined;
|
|
1280
1441
|
readonly readonly?: boolean | undefined;
|
|
1281
1442
|
readonly encryption?: boolean | undefined;
|
|
@@ -1338,6 +1499,13 @@ export declare const Field: {
|
|
|
1338
1499
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1339
1500
|
readonly allowAlpha?: boolean | undefined;
|
|
1340
1501
|
readonly presetColors?: string[] | undefined;
|
|
1502
|
+
readonly step?: number | undefined;
|
|
1503
|
+
readonly showValue?: boolean | undefined;
|
|
1504
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1505
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1506
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1507
|
+
readonly displayValue?: boolean | undefined;
|
|
1508
|
+
readonly allowScanning?: boolean | undefined;
|
|
1341
1509
|
readonly hidden?: boolean | undefined;
|
|
1342
1510
|
readonly readonly?: boolean | undefined;
|
|
1343
1511
|
readonly encryption?: boolean | undefined;
|
|
@@ -1389,6 +1557,13 @@ export declare const Field: {
|
|
|
1389
1557
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1390
1558
|
readonly allowAlpha?: boolean | undefined;
|
|
1391
1559
|
readonly presetColors?: string[] | undefined;
|
|
1560
|
+
readonly step?: number | undefined;
|
|
1561
|
+
readonly showValue?: boolean | undefined;
|
|
1562
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1563
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1564
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1565
|
+
readonly displayValue?: boolean | undefined;
|
|
1566
|
+
readonly allowScanning?: boolean | undefined;
|
|
1392
1567
|
readonly hidden?: boolean | undefined;
|
|
1393
1568
|
readonly readonly?: boolean | undefined;
|
|
1394
1569
|
readonly encryption?: boolean | undefined;
|
|
@@ -1440,6 +1615,13 @@ export declare const Field: {
|
|
|
1440
1615
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1441
1616
|
readonly allowAlpha?: boolean | undefined;
|
|
1442
1617
|
readonly presetColors?: string[] | undefined;
|
|
1618
|
+
readonly step?: number | undefined;
|
|
1619
|
+
readonly showValue?: boolean | undefined;
|
|
1620
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1621
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1622
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1623
|
+
readonly displayValue?: boolean | undefined;
|
|
1624
|
+
readonly allowScanning?: boolean | undefined;
|
|
1443
1625
|
readonly hidden?: boolean | undefined;
|
|
1444
1626
|
readonly readonly?: boolean | undefined;
|
|
1445
1627
|
readonly encryption?: boolean | undefined;
|
|
@@ -1491,6 +1673,13 @@ export declare const Field: {
|
|
|
1491
1673
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1492
1674
|
readonly allowAlpha?: boolean | undefined;
|
|
1493
1675
|
readonly presetColors?: string[] | undefined;
|
|
1676
|
+
readonly step?: number | undefined;
|
|
1677
|
+
readonly showValue?: boolean | undefined;
|
|
1678
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1679
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1680
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1681
|
+
readonly displayValue?: boolean | undefined;
|
|
1682
|
+
readonly allowScanning?: boolean | undefined;
|
|
1494
1683
|
readonly hidden?: boolean | undefined;
|
|
1495
1684
|
readonly readonly?: boolean | undefined;
|
|
1496
1685
|
readonly encryption?: boolean | undefined;
|
|
@@ -1542,6 +1731,13 @@ export declare const Field: {
|
|
|
1542
1731
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1543
1732
|
readonly allowAlpha?: boolean | undefined;
|
|
1544
1733
|
readonly presetColors?: string[] | undefined;
|
|
1734
|
+
readonly step?: number | undefined;
|
|
1735
|
+
readonly showValue?: boolean | undefined;
|
|
1736
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1737
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1738
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1739
|
+
readonly displayValue?: boolean | undefined;
|
|
1740
|
+
readonly allowScanning?: boolean | undefined;
|
|
1545
1741
|
readonly hidden?: boolean | undefined;
|
|
1546
1742
|
readonly readonly?: boolean | undefined;
|
|
1547
1743
|
readonly encryption?: boolean | undefined;
|
|
@@ -1593,6 +1789,13 @@ export declare const Field: {
|
|
|
1593
1789
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1594
1790
|
readonly allowAlpha?: boolean | undefined;
|
|
1595
1791
|
readonly presetColors?: string[] | undefined;
|
|
1792
|
+
readonly step?: number | undefined;
|
|
1793
|
+
readonly showValue?: boolean | undefined;
|
|
1794
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1795
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1796
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1797
|
+
readonly displayValue?: boolean | undefined;
|
|
1798
|
+
readonly allowScanning?: boolean | undefined;
|
|
1596
1799
|
readonly hidden?: boolean | undefined;
|
|
1597
1800
|
readonly readonly?: boolean | undefined;
|
|
1598
1801
|
readonly encryption?: boolean | undefined;
|
|
@@ -1644,6 +1847,13 @@ export declare const Field: {
|
|
|
1644
1847
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1645
1848
|
readonly allowAlpha?: boolean | undefined;
|
|
1646
1849
|
readonly presetColors?: string[] | undefined;
|
|
1850
|
+
readonly step?: number | undefined;
|
|
1851
|
+
readonly showValue?: boolean | undefined;
|
|
1852
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1853
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1854
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1855
|
+
readonly displayValue?: boolean | undefined;
|
|
1856
|
+
readonly allowScanning?: boolean | undefined;
|
|
1647
1857
|
readonly hidden?: boolean | undefined;
|
|
1648
1858
|
readonly readonly?: boolean | undefined;
|
|
1649
1859
|
readonly encryption?: boolean | undefined;
|
|
@@ -1695,6 +1905,13 @@ export declare const Field: {
|
|
|
1695
1905
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1696
1906
|
readonly allowAlpha?: boolean | undefined;
|
|
1697
1907
|
readonly presetColors?: string[] | undefined;
|
|
1908
|
+
readonly step?: number | undefined;
|
|
1909
|
+
readonly showValue?: boolean | undefined;
|
|
1910
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1911
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1912
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1913
|
+
readonly displayValue?: boolean | undefined;
|
|
1914
|
+
readonly allowScanning?: boolean | undefined;
|
|
1698
1915
|
readonly hidden?: boolean | undefined;
|
|
1699
1916
|
readonly readonly?: boolean | undefined;
|
|
1700
1917
|
readonly encryption?: boolean | undefined;
|
|
@@ -1746,6 +1963,13 @@ export declare const Field: {
|
|
|
1746
1963
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1747
1964
|
readonly allowAlpha?: boolean | undefined;
|
|
1748
1965
|
readonly presetColors?: string[] | undefined;
|
|
1966
|
+
readonly step?: number | undefined;
|
|
1967
|
+
readonly showValue?: boolean | undefined;
|
|
1968
|
+
readonly marks?: Record<string, string> | undefined;
|
|
1969
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1970
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1971
|
+
readonly displayValue?: boolean | undefined;
|
|
1972
|
+
readonly allowScanning?: boolean | undefined;
|
|
1749
1973
|
readonly hidden?: boolean | undefined;
|
|
1750
1974
|
readonly readonly?: boolean | undefined;
|
|
1751
1975
|
readonly encryption?: boolean | undefined;
|
|
@@ -1797,6 +2021,13 @@ export declare const Field: {
|
|
|
1797
2021
|
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1798
2022
|
readonly allowAlpha?: boolean | undefined;
|
|
1799
2023
|
readonly presetColors?: string[] | undefined;
|
|
2024
|
+
readonly step?: number | undefined;
|
|
2025
|
+
readonly showValue?: boolean | undefined;
|
|
2026
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2027
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2028
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2029
|
+
readonly displayValue?: boolean | undefined;
|
|
2030
|
+
readonly allowScanning?: boolean | undefined;
|
|
1800
2031
|
readonly hidden?: boolean | undefined;
|
|
1801
2032
|
readonly readonly?: boolean | undefined;
|
|
1802
2033
|
readonly encryption?: boolean | undefined;
|
|
@@ -1804,5 +2035,179 @@ export declare const Field: {
|
|
|
1804
2035
|
readonly externalId?: boolean | undefined;
|
|
1805
2036
|
readonly type: "signature";
|
|
1806
2037
|
};
|
|
2038
|
+
slider: (config?: FieldInput) => {
|
|
2039
|
+
readonly formula?: string | undefined;
|
|
2040
|
+
readonly options?: {
|
|
2041
|
+
value: string;
|
|
2042
|
+
label: string;
|
|
2043
|
+
color?: string | undefined;
|
|
2044
|
+
default?: boolean | undefined;
|
|
2045
|
+
}[] | undefined;
|
|
2046
|
+
readonly label?: string | undefined;
|
|
2047
|
+
readonly name?: string | undefined;
|
|
2048
|
+
readonly description?: string | undefined;
|
|
2049
|
+
readonly format?: string | undefined;
|
|
2050
|
+
readonly required?: boolean | undefined;
|
|
2051
|
+
readonly searchable?: boolean | undefined;
|
|
2052
|
+
readonly multiple?: boolean | undefined;
|
|
2053
|
+
readonly unique?: boolean | undefined;
|
|
2054
|
+
readonly defaultValue?: any;
|
|
2055
|
+
readonly maxLength?: number | undefined;
|
|
2056
|
+
readonly minLength?: number | undefined;
|
|
2057
|
+
readonly precision?: number | undefined;
|
|
2058
|
+
readonly scale?: number | undefined;
|
|
2059
|
+
readonly min?: number | undefined;
|
|
2060
|
+
readonly max?: number | undefined;
|
|
2061
|
+
readonly reference?: string | undefined;
|
|
2062
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2063
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2064
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2065
|
+
readonly expression?: string | undefined;
|
|
2066
|
+
readonly summaryOperations?: {
|
|
2067
|
+
object: string;
|
|
2068
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2069
|
+
field: string;
|
|
2070
|
+
} | undefined;
|
|
2071
|
+
readonly language?: string | undefined;
|
|
2072
|
+
readonly theme?: string | undefined;
|
|
2073
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2074
|
+
readonly maxRating?: number | undefined;
|
|
2075
|
+
readonly allowHalf?: boolean | undefined;
|
|
2076
|
+
readonly displayMap?: boolean | undefined;
|
|
2077
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2078
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2079
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2080
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2081
|
+
readonly presetColors?: string[] | undefined;
|
|
2082
|
+
readonly step?: number | undefined;
|
|
2083
|
+
readonly showValue?: boolean | undefined;
|
|
2084
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2085
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2086
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2087
|
+
readonly displayValue?: boolean | undefined;
|
|
2088
|
+
readonly allowScanning?: boolean | undefined;
|
|
2089
|
+
readonly hidden?: boolean | undefined;
|
|
2090
|
+
readonly readonly?: boolean | undefined;
|
|
2091
|
+
readonly encryption?: boolean | undefined;
|
|
2092
|
+
readonly index?: boolean | undefined;
|
|
2093
|
+
readonly externalId?: boolean | undefined;
|
|
2094
|
+
readonly type: "slider";
|
|
2095
|
+
};
|
|
2096
|
+
qrcode: (config?: FieldInput) => {
|
|
2097
|
+
readonly formula?: string | undefined;
|
|
2098
|
+
readonly options?: {
|
|
2099
|
+
value: string;
|
|
2100
|
+
label: string;
|
|
2101
|
+
color?: string | undefined;
|
|
2102
|
+
default?: boolean | undefined;
|
|
2103
|
+
}[] | undefined;
|
|
2104
|
+
readonly label?: string | undefined;
|
|
2105
|
+
readonly name?: string | undefined;
|
|
2106
|
+
readonly description?: string | undefined;
|
|
2107
|
+
readonly format?: string | undefined;
|
|
2108
|
+
readonly required?: boolean | undefined;
|
|
2109
|
+
readonly searchable?: boolean | undefined;
|
|
2110
|
+
readonly multiple?: boolean | undefined;
|
|
2111
|
+
readonly unique?: boolean | undefined;
|
|
2112
|
+
readonly defaultValue?: any;
|
|
2113
|
+
readonly maxLength?: number | undefined;
|
|
2114
|
+
readonly minLength?: number | undefined;
|
|
2115
|
+
readonly precision?: number | undefined;
|
|
2116
|
+
readonly scale?: number | undefined;
|
|
2117
|
+
readonly min?: number | undefined;
|
|
2118
|
+
readonly max?: number | undefined;
|
|
2119
|
+
readonly reference?: string | undefined;
|
|
2120
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2121
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2122
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2123
|
+
readonly expression?: string | undefined;
|
|
2124
|
+
readonly summaryOperations?: {
|
|
2125
|
+
object: string;
|
|
2126
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2127
|
+
field: string;
|
|
2128
|
+
} | undefined;
|
|
2129
|
+
readonly language?: string | undefined;
|
|
2130
|
+
readonly theme?: string | undefined;
|
|
2131
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2132
|
+
readonly maxRating?: number | undefined;
|
|
2133
|
+
readonly allowHalf?: boolean | undefined;
|
|
2134
|
+
readonly displayMap?: boolean | undefined;
|
|
2135
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2136
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2137
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2138
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2139
|
+
readonly presetColors?: string[] | undefined;
|
|
2140
|
+
readonly step?: number | undefined;
|
|
2141
|
+
readonly showValue?: boolean | undefined;
|
|
2142
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2143
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2144
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2145
|
+
readonly displayValue?: boolean | undefined;
|
|
2146
|
+
readonly allowScanning?: boolean | undefined;
|
|
2147
|
+
readonly hidden?: boolean | undefined;
|
|
2148
|
+
readonly readonly?: boolean | undefined;
|
|
2149
|
+
readonly encryption?: boolean | undefined;
|
|
2150
|
+
readonly index?: boolean | undefined;
|
|
2151
|
+
readonly externalId?: boolean | undefined;
|
|
2152
|
+
readonly type: "qrcode";
|
|
2153
|
+
};
|
|
2154
|
+
geolocation: (config?: FieldInput) => {
|
|
2155
|
+
readonly formula?: string | undefined;
|
|
2156
|
+
readonly options?: {
|
|
2157
|
+
value: string;
|
|
2158
|
+
label: string;
|
|
2159
|
+
color?: string | undefined;
|
|
2160
|
+
default?: boolean | undefined;
|
|
2161
|
+
}[] | undefined;
|
|
2162
|
+
readonly label?: string | undefined;
|
|
2163
|
+
readonly name?: string | undefined;
|
|
2164
|
+
readonly description?: string | undefined;
|
|
2165
|
+
readonly format?: string | undefined;
|
|
2166
|
+
readonly required?: boolean | undefined;
|
|
2167
|
+
readonly searchable?: boolean | undefined;
|
|
2168
|
+
readonly multiple?: boolean | undefined;
|
|
2169
|
+
readonly unique?: boolean | undefined;
|
|
2170
|
+
readonly defaultValue?: any;
|
|
2171
|
+
readonly maxLength?: number | undefined;
|
|
2172
|
+
readonly minLength?: number | undefined;
|
|
2173
|
+
readonly precision?: number | undefined;
|
|
2174
|
+
readonly scale?: number | undefined;
|
|
2175
|
+
readonly min?: number | undefined;
|
|
2176
|
+
readonly max?: number | undefined;
|
|
2177
|
+
readonly reference?: string | undefined;
|
|
2178
|
+
readonly referenceFilters?: string[] | undefined;
|
|
2179
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2180
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2181
|
+
readonly expression?: string | undefined;
|
|
2182
|
+
readonly summaryOperations?: {
|
|
2183
|
+
object: string;
|
|
2184
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2185
|
+
field: string;
|
|
2186
|
+
} | undefined;
|
|
2187
|
+
readonly language?: string | undefined;
|
|
2188
|
+
readonly theme?: string | undefined;
|
|
2189
|
+
readonly lineNumbers?: boolean | undefined;
|
|
2190
|
+
readonly maxRating?: number | undefined;
|
|
2191
|
+
readonly allowHalf?: boolean | undefined;
|
|
2192
|
+
readonly displayMap?: boolean | undefined;
|
|
2193
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
2194
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2195
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2196
|
+
readonly allowAlpha?: boolean | undefined;
|
|
2197
|
+
readonly presetColors?: string[] | undefined;
|
|
2198
|
+
readonly step?: number | undefined;
|
|
2199
|
+
readonly showValue?: boolean | undefined;
|
|
2200
|
+
readonly marks?: Record<string, string> | undefined;
|
|
2201
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2202
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2203
|
+
readonly displayValue?: boolean | undefined;
|
|
2204
|
+
readonly allowScanning?: boolean | undefined;
|
|
2205
|
+
readonly hidden?: boolean | undefined;
|
|
2206
|
+
readonly readonly?: boolean | undefined;
|
|
2207
|
+
readonly encryption?: boolean | undefined;
|
|
2208
|
+
readonly index?: boolean | undefined;
|
|
2209
|
+
readonly externalId?: boolean | undefined;
|
|
2210
|
+
readonly type: "geolocation";
|
|
2211
|
+
};
|
|
1807
2212
|
};
|
|
1808
2213
|
//# sourceMappingURL=field.zod.d.ts.map
|