{"version":3,"sources":["../../src/functions-v1-editor-function-editor-functions.schemas.ts"],"sourcesContent":["import * as z from 'zod';\n\nexport const InvokeEditorFunctionRequest = z.object({\n  functionId: z\n    .string()\n    .describe('Id of the function requested to be invoked')\n    .regex(\n      /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/,\n      'Must be a valid GUID'\n    ),\n});\nexport const InvokeEditorFunctionResponse = z.object({\n  output: z\n    .record(z.string(), z.any())\n    .describe(\n      'The result data returned by the executed Editor Function. Structure depends on the specific function implementation.'\n    )\n    .optional()\n    .nullable(),\n});\n"],"mappings":";AAAA,YAAY,OAAO;AAEZ,IAAM,8BAAgC,SAAO;AAAA,EAClD,YACG,SAAO,EACP,SAAS,4CAA4C,EACrD;AAAA,IACC;AAAA,IACA;AAAA,EACF;AACJ,CAAC;AACM,IAAM,+BAAiC,SAAO;AAAA,EACnD,QACG,SAAS,SAAO,GAAK,MAAI,CAAC,EAC1B;AAAA,IACC;AAAA,EACF,EACC,SAAS,EACT,SAAS;AACd,CAAC;","names":[]}