@lunora/codegen 0.0.0 → 1.0.0-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/LICENSE.md +105 -0
  2. package/README.md +117 -9
  3. package/__assets__/package-og.svg +14 -0
  4. package/dist/index.d.mts +1562 -0
  5. package/dist/index.d.ts +1562 -0
  6. package/dist/index.mjs +29 -0
  7. package/dist/packem_shared/CONTAINERS_FILENAME-DlP6YM_Q.mjs +224 -0
  8. package/dist/packem_shared/CodegenDiagnosticError-DeblMkzO.mjs +23 -0
  9. package/dist/packem_shared/GENERATED_HEADER-BiFXNUvo.mjs +2692 -0
  10. package/dist/packem_shared/LUNORA_ERROR_CODES-CySpQPD3.mjs +61 -0
  11. package/dist/packem_shared/OPENRPC_VERSION-B4i9Qp3v.mjs +60 -0
  12. package/dist/packem_shared/SCHEMA_SNAPSHOT_FILENAME-Bvv7qa_u.mjs +939 -0
  13. package/dist/packem_shared/SCHEMA_SNAPSHOT_VERSION-wWGP2_5E.mjs +245 -0
  14. package/dist/packem_shared/WORKFLOWS_FILENAME-D62dcBGg.mjs +84 -0
  15. package/dist/packem_shared/buildOpenApiDocument-Cu3mZl-8.mjs +183 -0
  16. package/dist/packem_shared/discover-ast-CT6BgBr4.mjs +13 -0
  17. package/dist/packem_shared/discoverAuthApiCalls-CoirYbg6.mjs +62 -0
  18. package/dist/packem_shared/discoverCrons-Cev7RRAf.mjs +257 -0
  19. package/dist/packem_shared/discoverFunctions-BWMczzBx.mjs +465 -0
  20. package/dist/packem_shared/discoverHttpRoutes-CfP6cMzt.mjs +131 -0
  21. package/dist/packem_shared/discoverInserts-C7zxXkUf.mjs +61 -0
  22. package/dist/packem_shared/discoverMaskProcedures-Cm81kwrb.mjs +217 -0
  23. package/dist/packem_shared/discoverMigrations-Bi5nJ0mJ.mjs +97 -0
  24. package/dist/packem_shared/discoverNondeterministicCalls-C4M8AXmQ.mjs +122 -0
  25. package/dist/packem_shared/discoverQueries-B0wGT-xe.mjs +62 -0
  26. package/dist/packem_shared/discoverR2sqlCalls-BVNMd428.mjs +80 -0
  27. package/dist/packem_shared/discoverRlsMetadata-BS9GOGC5.mjs +280 -0
  28. package/dist/packem_shared/discoverSchema-BnWHHJ4T.mjs +822 -0
  29. package/dist/packem_shared/discoverStorageRulesMetadata-Da8BKXcI.mjs +97 -0
  30. package/dist/packem_shared/emitApp-KfMaKXWe.mjs +603 -0
  31. package/dist/packem_shared/formatAdvisories-8NIv1k0I.mjs +69 -0
  32. package/dist/packem_shared/parse-validator-Cabb60UV.mjs +133 -0
  33. package/dist/packem_shared/paths-BRd6JHuF.mjs +11 -0
  34. package/dist/packem_shared/schemaFromIr-DTYsLBaA.mjs +57 -0
  35. package/package.json +45 -17
@@ -0,0 +1,61 @@
1
+ import { jsonSchemaFromNode, objectSchemaFromNodes } from '@lunora/values';
2
+
3
+ const literalConst = (literalValue) => {
4
+ if (literalValue === void 0) {
5
+ return {};
6
+ }
7
+ const trimmed = literalValue.trim();
8
+ if (trimmed === "true") {
9
+ return { const: true };
10
+ }
11
+ if (trimmed === "false") {
12
+ return { const: false };
13
+ }
14
+ if (trimmed === "null") {
15
+ return { const: null, type: "null" };
16
+ }
17
+ if (trimmed.startsWith('"') && trimmed.endsWith('"') || trimmed.startsWith("'") && trimmed.endsWith("'")) {
18
+ return { const: trimmed.slice(1, -1), type: "string" };
19
+ }
20
+ const asNumber = Number(trimmed);
21
+ if (!Number.isNaN(asNumber)) {
22
+ return { const: asNumber };
23
+ }
24
+ return { const: trimmed };
25
+ };
26
+ const irReader = {
27
+ constraints: () => void 0,
28
+ inner: (validator) => validator.inner,
29
+ isNullable: (validator) => validator.column?.notNull === false,
30
+ // `ValidatorIR.kind` is a loose `string` (build-time AST); narrow it to the
31
+ // shared reader's `ValidatorKind`. Unknown kinds fall through the mapper's
32
+ // `default` branch to an empty schema, exactly as before.
33
+ kind: (validator) => validator.kind,
34
+ literalSchema: (validator) => literalConst(validator.literalValue),
35
+ members: (validator) => validator.members ?? [],
36
+ shape: (validator) => validator.shape ?? {},
37
+ tableName: (validator) => validator.tableName,
38
+ valueChild: (validator) => validator.valueType
39
+ };
40
+ const validatorIrToJsonSchema = (validator) => jsonSchemaFromNode(validator, irReader);
41
+ const objectSchema = (shape) => objectSchemaFromNodes(shape, irReader);
42
+ const argsObjectSchema = (args) => objectSchema(args);
43
+ const LUNORA_ERROR_CODES = [
44
+ "BAD_REQUEST",
45
+ "CONFLICT",
46
+ "COUNT_RLS_UNSUPPORTED",
47
+ "FORBIDDEN",
48
+ "FUNCTION_NOT_FOUND",
49
+ "INTERNAL",
50
+ "INTERNAL_SERVER_ERROR",
51
+ "METHOD_NOT_ALLOWED",
52
+ "NOT_FOUND",
53
+ "NOT_IMPLEMENTED",
54
+ "PAYLOAD_TOO_LARGE",
55
+ "TOO_MANY_REQUESTS",
56
+ "UNAUTHORIZED",
57
+ "UNPROCESSABLE",
58
+ "VALIDATION_ERROR"
59
+ ];
60
+
61
+ export { LUNORA_ERROR_CODES, argsObjectSchema, literalConst, objectSchema, validatorIrToJsonSchema };
@@ -0,0 +1,60 @@
1
+ import { GENERATED_HEADER } from './GENERATED_HEADER-BiFXNUvo.mjs';
2
+ import { s as sanitizeNamespace } from './paths-BRd6JHuF.mjs';
3
+ import { argsObjectSchema, LUNORA_ERROR_CODES } from './LUNORA_ERROR_CODES-CySpQPD3.mjs';
4
+
5
+ const OPENRPC_VERSION = "1.3.2";
6
+ const inferredResultSchema = () => {
7
+ return { description: "Result is TS-inferred from the function's return type (no `.output()` declared); best-effort — any JSON." };
8
+ };
9
+ const rpcMethod = (definition) => {
10
+ const namespace = sanitizeNamespace(definition.filePath);
11
+ const functionPath = `${namespace}:${definition.exportName}`;
12
+ return {
13
+ description: `Invoke the \`${definition.kind}\` \`${functionPath}\` over the Lunora RPC envelope (POST /_lunora/rpc, body \`{ "functionPath": "${functionPath}", "args": { … } }\`).`,
14
+ errors: LUNORA_ERROR_CODES.map((code, index) => {
15
+ return { code: -32e3 - index, data: { code }, message: code };
16
+ }),
17
+ name: functionPath,
18
+ params: [
19
+ {
20
+ description: "The function's argument object (the RPC envelope's `args`).",
21
+ name: "args",
22
+ // A function with no declared args still takes an (empty) args
23
+ // object; `required` reflects whether the function declares any
24
+ // arguments at all.
25
+ required: Object.keys(definition.args).length > 0,
26
+ schema: argsObjectSchema(definition.args)
27
+ }
28
+ ],
29
+ result: {
30
+ name: "result",
31
+ schema: inferredResultSchema()
32
+ },
33
+ summary: `${definition.kind}: ${functionPath}`,
34
+ "x-lunora-function-kind": definition.kind,
35
+ // OpenRPC has no first-class tag grouping; surface the file namespace as
36
+ // an `x-tags` extension so tooling can group methods by source file.
37
+ "x-tags": [{ name: namespace }]
38
+ };
39
+ };
40
+ const buildOpenRpcDocument = (input) => {
41
+ const version = input.version ?? "0.0.0";
42
+ const rpcFunctions = input.functions.filter((definition) => definition.visibility !== "internal" && definition.kind !== "stream");
43
+ const methods = rpcFunctions.map((definition) => rpcMethod(definition)).toSorted((a, b) => a.name.localeCompare(b.name));
44
+ const document = {
45
+ info: {
46
+ description: "Auto-generated from @lunora/values-typed functions by @lunora/codegen. Do not edit — run `lunora codegen` to regenerate.",
47
+ title: "Lunora RPC",
48
+ version
49
+ },
50
+ methods,
51
+ openrpc: OPENRPC_VERSION
52
+ };
53
+ return document;
54
+ };
55
+ const emitOpenRpc = (input) => `${JSON.stringify(buildOpenRpcDocument(input), void 0, 2)}
56
+ `;
57
+ const emitOpenRpcModule = (document_) => `${GENERATED_HEADER}export const openRpcSpec: Record<string, unknown> = ${JSON.stringify(document_, void 0, 4)};
58
+ `;
59
+
60
+ export { OPENRPC_VERSION, buildOpenRpcDocument, emitOpenRpc, emitOpenRpcModule };