UNPKG

convex

Version:

Client for the Convex Cloud

86 lines (85 loc) 3.58 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var componentDefinition_exports = {}; __export(componentDefinition_exports, { componentArgument: () => componentArgument, componentArgumentValidator: () => componentArgumentValidator, componentDefinitionMetadata: () => componentDefinitionMetadata, componentDefinitionType: () => componentDefinitionType, componentExports: () => componentExports, componentInstantiation: () => componentInstantiation, evaluatedComponentDefinition: () => evaluatedComponentDefinition }); module.exports = __toCommonJS(componentDefinition_exports); var import_zod = require("zod"); var import_paths = require("./paths.js"); var import_types = require("./types.js"); var import_modules = require("./modules.js"); const componentArgumentValidator = import_zod.z.object({ type: import_zod.z.literal("value"), // Validator serialized to JSON. value: import_zod.z.string() }); const componentDefinitionType = import_zod.z.union([ import_zod.z.object({ type: import_zod.z.literal("app") }), import_zod.z.object({ type: import_zod.z.literal("childComponent"), name: import_types.identifier, args: import_zod.z.array(import_zod.z.tuple([import_types.identifier, componentArgumentValidator])) }) ]); const componentArgument = import_zod.z.object({ type: import_zod.z.literal("value"), // Value serialized to JSON. value: import_zod.z.string() }); const componentInstantiation = import_zod.z.object({ name: import_types.identifier, path: import_paths.componentDefinitionPath, args: import_zod.z.nullable(import_zod.z.array(import_zod.z.tuple([import_types.identifier, componentArgument]))) }); const componentExports = import_zod.z.lazy( () => import_zod.z.union([ import_zod.z.object({ type: import_zod.z.literal("leaf"), leaf: import_types.reference }), import_zod.z.object({ type: import_zod.z.literal("branch"), branch: import_zod.z.array(import_zod.z.tuple([import_types.identifier, componentExports])) }) ]) ); const componentDefinitionMetadata = import_zod.z.object({ path: import_paths.componentDefinitionPath, definitionType: componentDefinitionType, childComponents: import_zod.z.array(componentInstantiation), httpMounts: import_zod.z.record(import_zod.z.string(), import_types.reference), exports: import_zod.z.object({ type: import_zod.z.literal("branch"), branch: import_zod.z.array(import_zod.z.tuple([import_types.identifier, componentExports])) }) }); const evaluatedComponentDefinition = import_zod.z.object({ definition: componentDefinitionMetadata, schema: import_zod.z.any(), functions: import_zod.z.record(import_paths.canonicalizedModulePath, import_modules.analyzedModule), udfConfig: import_modules.udfConfig }); //# sourceMappingURL=componentDefinition.js.map