@takeshape/schema 12.1.1 → 12.1.4
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/agents.d.ts +62 -0
- package/dist/agents.js +346 -0
- package/dist/api-version.d.ts +5 -0
- package/dist/api-version.js +17 -0
- package/dist/auth-schemas.d.ts +144 -0
- package/dist/auth-schemas.js +7 -0
- package/dist/auth-utils.d.ts +19 -0
- package/dist/auth-utils.js +26 -0
- package/dist/builtin-schema.d.ts +18 -0
- package/dist/builtin-schema.js +710 -0
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/dist/content-schema-transform.d.ts +35 -0
- package/dist/content-schema-transform.js +162 -0
- package/dist/create-input-schema.d.ts +9 -0
- package/dist/create-input-schema.js +68 -0
- package/dist/enum.d.ts +2 -0
- package/dist/enum.js +9 -0
- package/dist/flatten-templates.d.ts +2 -0
- package/dist/flatten-templates.js +20 -0
- package/dist/get-is-leaf.d.ts +3 -0
- package/dist/get-is-leaf.js +56 -0
- package/dist/index.d.ts +64 -0
- package/dist/index.js +61 -0
- package/dist/interfaces.d.ts +14 -0
- package/dist/interfaces.js +86 -0
- package/dist/layers/layers.d.ts +26 -0
- package/dist/layers/layers.js +301 -0
- package/dist/layers/refs.d.ts +102 -0
- package/dist/layers/refs.js +220 -0
- package/dist/layers/type-utils.d.ts +59 -0
- package/dist/layers/type-utils.js +118 -0
- package/dist/layers/visitor.d.ts +5 -0
- package/dist/layers/visitor.js +38 -0
- package/dist/migration/index.d.ts +79 -0
- package/dist/migration/index.js +110 -0
- package/dist/migration/to/v3.0.0.d.ts +4 -0
- package/dist/migration/to/v3.0.0.js +212 -0
- package/dist/migration/to/v3.1.0.d.ts +4 -0
- package/dist/migration/to/v3.1.0.js +194 -0
- package/dist/migration/to/v3.10.0.d.ts +4 -0
- package/dist/migration/to/v3.10.0.js +67 -0
- package/dist/migration/to/v3.11.0.d.ts +4 -0
- package/dist/migration/to/v3.11.0.js +85 -0
- package/dist/migration/to/v3.12.3.d.ts +4 -0
- package/dist/migration/to/v3.12.3.js +87 -0
- package/dist/migration/to/v3.13.0.d.ts +4 -0
- package/dist/migration/to/v3.13.0.js +17 -0
- package/dist/migration/to/v3.17.0.d.ts +4 -0
- package/dist/migration/to/v3.17.0.js +22 -0
- package/dist/migration/to/v3.18.0.d.ts +4 -0
- package/dist/migration/to/v3.18.0.js +64 -0
- package/dist/migration/to/v3.18.1.d.ts +4 -0
- package/dist/migration/to/v3.18.1.js +12 -0
- package/dist/migration/to/v3.18.2.d.ts +4 -0
- package/dist/migration/to/v3.18.2.js +19 -0
- package/dist/migration/to/v3.20.0.d.ts +4 -0
- package/dist/migration/to/v3.20.0.js +24 -0
- package/dist/migration/to/v3.22.0.d.ts +4 -0
- package/dist/migration/to/v3.22.0.js +25 -0
- package/dist/migration/to/v3.24.0.d.ts +4 -0
- package/dist/migration/to/v3.24.0.js +11 -0
- package/dist/migration/to/v3.25.0.d.ts +4 -0
- package/dist/migration/to/v3.25.0.js +11 -0
- package/dist/migration/to/v3.3.0.d.ts +4 -0
- package/dist/migration/to/v3.3.0.js +13 -0
- package/dist/migration/to/v3.31.0.d.ts +4 -0
- package/dist/migration/to/v3.31.0.js +38 -0
- package/dist/migration/to/v3.32.0.d.ts +4 -0
- package/dist/migration/to/v3.32.0.js +59 -0
- package/dist/migration/to/v3.34.0.d.ts +6 -0
- package/dist/migration/to/v3.34.0.js +111 -0
- package/dist/migration/to/v3.36.0.d.ts +4 -0
- package/dist/migration/to/v3.36.0.js +22 -0
- package/dist/migration/to/v3.39.0.d.ts +4 -0
- package/dist/migration/to/v3.39.0.js +45 -0
- package/dist/migration/to/v3.40.0.d.ts +4 -0
- package/dist/migration/to/v3.40.0.js +26 -0
- package/dist/migration/to/v3.46.0.d.ts +4 -0
- package/dist/migration/to/v3.46.0.js +35 -0
- package/dist/migration/to/v3.57.0.d.ts +4 -0
- package/dist/migration/to/v3.57.0.js +18 -0
- package/dist/migration/to/v3.60.0.d.ts +4 -0
- package/dist/migration/to/v3.60.0.js +129 -0
- package/dist/migration/to/v3.9.0.d.ts +4 -0
- package/dist/migration/to/v3.9.0.js +79 -0
- package/dist/migration/types.d.ts +26 -0
- package/dist/migration/types.js +3 -0
- package/dist/migration/utils.d.ts +2 -0
- package/dist/migration/utils.js +6 -0
- package/dist/mocks.d.ts +14 -0
- package/dist/mocks.js +58 -0
- package/dist/models/agent.d.ts +3 -0
- package/dist/models/agent.js +73 -0
- package/dist/models/project-schema.d.ts +28 -0
- package/dist/models/project-schema.js +186 -0
- package/dist/models/query.d.ts +3 -0
- package/dist/models/query.js +46 -0
- package/dist/models/runtime-schema.d.ts +9 -0
- package/dist/models/runtime-schema.js +20 -0
- package/dist/models/shape.d.ts +4 -0
- package/dist/models/shape.js +36 -0
- package/dist/models/tool.d.ts +4 -0
- package/dist/models/tool.js +147 -0
- package/dist/models/types.d.ts +97 -0
- package/dist/models/types.js +1 -0
- package/dist/models/user-schema.d.ts +7 -0
- package/dist/models/user-schema.js +9 -0
- package/dist/patterns.d.ts +12 -0
- package/dist/patterns.js +1 -0
- package/dist/project-schema/index.d.ts +229 -0
- package/dist/project-schema/index.js +89 -0
- package/dist/project-schema/latest.d.ts +2762 -0
- package/dist/project-schema/latest.js +7 -0
- package/dist/project-schema/migrate.d.ts +4 -0
- package/dist/project-schema/migrate.js +236 -0
- package/dist/project-schema/v1.0.0.d.ts +299 -0
- package/dist/project-schema/v1.0.0.js +7 -0
- package/dist/project-schema/v3.0.0.d.ts +478 -0
- package/dist/project-schema/v3.0.0.js +7 -0
- package/dist/project-schema/v3.1.0.d.ts +621 -0
- package/dist/project-schema/v3.1.0.js +7 -0
- package/dist/project-schema/v3.10.0.d.ts +1201 -0
- package/dist/project-schema/v3.10.0.js +7 -0
- package/dist/project-schema/v3.11.0.d.ts +1210 -0
- package/dist/project-schema/v3.11.0.js +7 -0
- package/dist/project-schema/v3.12.0.d.ts +1214 -0
- package/dist/project-schema/v3.12.0.js +7 -0
- package/dist/project-schema/v3.12.1.d.ts +1273 -0
- package/dist/project-schema/v3.12.1.js +7 -0
- package/dist/project-schema/v3.12.2.d.ts +1283 -0
- package/dist/project-schema/v3.12.2.js +7 -0
- package/dist/project-schema/v3.12.3.d.ts +1306 -0
- package/dist/project-schema/v3.12.3.js +7 -0
- package/dist/project-schema/v3.13.0.d.ts +1317 -0
- package/dist/project-schema/v3.13.0.js +7 -0
- package/dist/project-schema/v3.13.1.d.ts +1412 -0
- package/dist/project-schema/v3.13.1.js +7 -0
- package/dist/project-schema/v3.14.0.d.ts +1436 -0
- package/dist/project-schema/v3.14.0.js +7 -0
- package/dist/project-schema/v3.15.0.d.ts +1458 -0
- package/dist/project-schema/v3.15.0.js +7 -0
- package/dist/project-schema/v3.16.0.d.ts +1470 -0
- package/dist/project-schema/v3.16.0.js +7 -0
- package/dist/project-schema/v3.17.0.d.ts +1467 -0
- package/dist/project-schema/v3.17.0.js +7 -0
- package/dist/project-schema/v3.17.1.d.ts +1468 -0
- package/dist/project-schema/v3.17.1.js +7 -0
- package/dist/project-schema/v3.18.0.d.ts +1333 -0
- package/dist/project-schema/v3.18.0.js +7 -0
- package/dist/project-schema/v3.18.1.d.ts +1332 -0
- package/dist/project-schema/v3.18.1.js +7 -0
- package/dist/project-schema/v3.18.2.d.ts +1332 -0
- package/dist/project-schema/v3.18.2.js +7 -0
- package/dist/project-schema/v3.19.0.d.ts +1336 -0
- package/dist/project-schema/v3.19.0.js +7 -0
- package/dist/project-schema/v3.2.0.d.ts +632 -0
- package/dist/project-schema/v3.2.0.js +7 -0
- package/dist/project-schema/v3.20.0.d.ts +1336 -0
- package/dist/project-schema/v3.20.0.js +7 -0
- package/dist/project-schema/v3.21.0.d.ts +1338 -0
- package/dist/project-schema/v3.21.0.js +7 -0
- package/dist/project-schema/v3.22.0.d.ts +1344 -0
- package/dist/project-schema/v3.22.0.js +7 -0
- package/dist/project-schema/v3.23.0.d.ts +1376 -0
- package/dist/project-schema/v3.23.0.js +7 -0
- package/dist/project-schema/v3.24.0.d.ts +1364 -0
- package/dist/project-schema/v3.24.0.js +7 -0
- package/dist/project-schema/v3.25.0.d.ts +1363 -0
- package/dist/project-schema/v3.25.0.js +7 -0
- package/dist/project-schema/v3.26.0.d.ts +1388 -0
- package/dist/project-schema/v3.26.0.js +7 -0
- package/dist/project-schema/v3.27.0.d.ts +1397 -0
- package/dist/project-schema/v3.27.0.js +7 -0
- package/dist/project-schema/v3.28.0.d.ts +1416 -0
- package/dist/project-schema/v3.28.0.js +7 -0
- package/dist/project-schema/v3.29.0.d.ts +1423 -0
- package/dist/project-schema/v3.29.0.js +7 -0
- package/dist/project-schema/v3.3.0.d.ts +632 -0
- package/dist/project-schema/v3.3.0.js +7 -0
- package/dist/project-schema/v3.30.0.d.ts +1416 -0
- package/dist/project-schema/v3.30.0.js +7 -0
- package/dist/project-schema/v3.31.0.d.ts +1448 -0
- package/dist/project-schema/v3.31.0.js +7 -0
- package/dist/project-schema/v3.32.0.d.ts +1439 -0
- package/dist/project-schema/v3.32.0.js +7 -0
- package/dist/project-schema/v3.33.0.d.ts +1445 -0
- package/dist/project-schema/v3.33.0.js +7 -0
- package/dist/project-schema/v3.34.0.d.ts +1445 -0
- package/dist/project-schema/v3.34.0.js +7 -0
- package/dist/project-schema/v3.35.0.d.ts +1464 -0
- package/dist/project-schema/v3.35.0.js +7 -0
- package/dist/project-schema/v3.36.0.d.ts +1470 -0
- package/dist/project-schema/v3.36.0.js +7 -0
- package/dist/project-schema/v3.37.0.d.ts +1522 -0
- package/dist/project-schema/v3.37.0.js +7 -0
- package/dist/project-schema/v3.38.0.d.ts +1522 -0
- package/dist/project-schema/v3.38.0.js +7 -0
- package/dist/project-schema/v3.39.0.d.ts +1529 -0
- package/dist/project-schema/v3.39.0.js +7 -0
- package/dist/project-schema/v3.4.0.d.ts +624 -0
- package/dist/project-schema/v3.4.0.js +7 -0
- package/dist/project-schema/v3.40.0.d.ts +1530 -0
- package/dist/project-schema/v3.40.0.js +7 -0
- package/dist/project-schema/v3.41.0.d.ts +1530 -0
- package/dist/project-schema/v3.41.0.js +7 -0
- package/dist/project-schema/v3.42.0.d.ts +1534 -0
- package/dist/project-schema/v3.42.0.js +7 -0
- package/dist/project-schema/v3.43.0.d.ts +1536 -0
- package/dist/project-schema/v3.43.0.js +7 -0
- package/dist/project-schema/v3.44.0.d.ts +1621 -0
- package/dist/project-schema/v3.44.0.js +7 -0
- package/dist/project-schema/v3.45.0.d.ts +1650 -0
- package/dist/project-schema/v3.45.0.js +7 -0
- package/dist/project-schema/v3.46.0.d.ts +1703 -0
- package/dist/project-schema/v3.46.0.js +7 -0
- package/dist/project-schema/v3.47.0.d.ts +1736 -0
- package/dist/project-schema/v3.47.0.js +7 -0
- package/dist/project-schema/v3.48.0.d.ts +2208 -0
- package/dist/project-schema/v3.48.0.js +7 -0
- package/dist/project-schema/v3.49.0.d.ts +2217 -0
- package/dist/project-schema/v3.49.0.js +7 -0
- package/dist/project-schema/v3.5.0.d.ts +649 -0
- package/dist/project-schema/v3.5.0.js +7 -0
- package/dist/project-schema/v3.5.1.d.ts +649 -0
- package/dist/project-schema/v3.5.1.js +7 -0
- package/dist/project-schema/v3.50.0.d.ts +2269 -0
- package/dist/project-schema/v3.50.0.js +7 -0
- package/dist/project-schema/v3.51.0.d.ts +2269 -0
- package/dist/project-schema/v3.51.0.js +7 -0
- package/dist/project-schema/v3.52.0.d.ts +2269 -0
- package/dist/project-schema/v3.52.0.js +7 -0
- package/dist/project-schema/v3.53.0.d.ts +2350 -0
- package/dist/project-schema/v3.53.0.js +7 -0
- package/dist/project-schema/v3.54.0.d.ts +2369 -0
- package/dist/project-schema/v3.54.0.js +7 -0
- package/dist/project-schema/v3.55.0.d.ts +2369 -0
- package/dist/project-schema/v3.55.0.js +7 -0
- package/dist/project-schema/v3.56.0.d.ts +2405 -0
- package/dist/project-schema/v3.56.0.js +7 -0
- package/dist/project-schema/v3.57.0.d.ts +2601 -0
- package/dist/project-schema/v3.57.0.js +7 -0
- package/dist/project-schema/v3.58.0.d.ts +2601 -0
- package/dist/project-schema/v3.58.0.js +7 -0
- package/dist/project-schema/v3.59.0.d.ts +2650 -0
- package/dist/project-schema/v3.59.0.js +7 -0
- package/dist/project-schema/v3.6.0.d.ts +658 -0
- package/dist/project-schema/v3.6.0.js +7 -0
- package/dist/project-schema/v3.60.0.d.ts +2678 -0
- package/dist/project-schema/v3.60.0.js +7 -0
- package/dist/project-schema/v3.61.0.d.ts +2678 -0
- package/dist/project-schema/v3.61.0.js +7 -0
- package/dist/project-schema/v3.62.0.d.ts +2693 -0
- package/dist/project-schema/v3.62.0.js +7 -0
- package/dist/project-schema/v3.63.0.d.ts +2701 -0
- package/dist/project-schema/v3.63.0.js +7 -0
- package/dist/project-schema/v3.64.0.d.ts +2710 -0
- package/dist/project-schema/v3.64.0.js +7 -0
- package/dist/project-schema/v3.65.0.d.ts +2762 -0
- package/dist/project-schema/v3.65.0.js +7 -0
- package/dist/project-schema/v3.7.0.d.ts +961 -0
- package/dist/project-schema/v3.7.0.js +7 -0
- package/dist/project-schema/v3.8.0.d.ts +979 -0
- package/dist/project-schema/v3.8.0.js +7 -0
- package/dist/project-schema/v3.9.0.d.ts +1178 -0
- package/dist/project-schema/v3.9.0.js +7 -0
- package/dist/project-schema/v4.0.0.d.ts +1328 -0
- package/dist/project-schema/v4.0.0.js +7 -0
- package/dist/refs.d.ts +220 -0
- package/dist/refs.js +648 -0
- package/dist/relationships.d.ts +40 -0
- package/dist/relationships.js +302 -0
- package/dist/resolvers/ai/abort-agent-message-args.d.ts +16 -0
- package/dist/resolvers/ai/abort-agent-message-args.js +13 -0
- package/dist/resolvers/ai/abort-agent-message-response.d.ts +39 -0
- package/dist/resolvers/ai/abort-agent-message-response.js +19 -0
- package/dist/resolvers/ai/agent-attachment.d.ts +27 -0
- package/dist/resolvers/ai/agent-attachment.js +22 -0
- package/dist/resolvers/ai/agent-chat-args.d.ts +62 -0
- package/dist/resolvers/ai/agent-chat-args.js +30 -0
- package/dist/resolvers/ai/agent-chat-payload.d.ts +35 -0
- package/dist/resolvers/ai/agent-chat-payload.js +26 -0
- package/dist/resolvers/ai/agent-chat-response.d.ts +366 -0
- package/dist/resolvers/ai/agent-chat-response.js +21 -0
- package/dist/resolvers/ai/agent-generate-args.d.ts +62 -0
- package/dist/resolvers/ai/agent-generate-args.js +30 -0
- package/dist/resolvers/ai/agent-message-input.d.ts +73 -0
- package/dist/resolvers/ai/agent-message-input.js +39 -0
- package/dist/resolvers/ai/agent-message-output.d.ts +169 -0
- package/dist/resolvers/ai/agent-message-output.js +77 -0
- package/dist/resolvers/ai/agent-message-payload.d.ts +849 -0
- package/dist/resolvers/ai/agent-message-payload.js +167 -0
- package/dist/resolvers/ai/agent-run-mode.d.ts +8 -0
- package/dist/resolvers/ai/agent-run-mode.js +9 -0
- package/dist/resolvers/ai/agent-session-payload.d.ts +840 -0
- package/dist/resolvers/ai/agent-session-payload.js +218 -0
- package/dist/resolvers/ai/ai-usage-item.d.ts +70 -0
- package/dist/resolvers/ai/ai-usage-item.js +70 -0
- package/dist/resolvers/ai/create-agent-session-response.d.ts +276 -0
- package/dist/resolvers/ai/create-agent-session-response.js +9 -0
- package/dist/resolvers/ai/embedding-search.d.ts +54 -0
- package/dist/resolvers/ai/embedding-search.js +46 -0
- package/dist/resolvers/ai/get-agent-message-args.d.ts +16 -0
- package/dist/resolvers/ai/get-agent-message-args.js +13 -0
- package/dist/resolvers/ai/get-agent-message-response.d.ts +1253 -0
- package/dist/resolvers/ai/get-agent-message-response.js +79 -0
- package/dist/resolvers/ai/inspect-agent-args.d.ts +16 -0
- package/dist/resolvers/ai/inspect-agent-args.js +13 -0
- package/dist/resolvers/ai/inspect-agent-response.d.ts +631 -0
- package/dist/resolvers/ai/inspect-agent-response.js +48 -0
- package/dist/resolvers/ai/send-agent-feedback-args.d.ts +52 -0
- package/dist/resolvers/ai/send-agent-feedback-args.js +16 -0
- package/dist/resolvers/ai/send-agent-message-args.d.ts +48 -0
- package/dist/resolvers/ai/send-agent-message-args.js +36 -0
- package/dist/resolvers/ai/send-agent-message-response.d.ts +432 -0
- package/dist/resolvers/ai/send-agent-message-response.js +51 -0
- package/dist/resolvers/ai/types.d.ts +8 -0
- package/dist/resolvers/ai/types.js +1 -0
- package/dist/resolvers/takeshape/assets/asset-image-meta.d.ts +79 -0
- package/dist/resolvers/takeshape/assets/asset-image-meta.js +98 -0
- package/dist/resolvers/takeshape/assets/asset-image-params.d.ts +901 -0
- package/dist/resolvers/takeshape/assets/asset-image-params.js +726 -0
- package/dist/resolvers/takeshape/assets/asset-image.d.ts +17 -0
- package/dist/resolvers/takeshape/assets/asset-image.js +15 -0
- package/dist/resolvers/takeshape/assets/asset.d.ts +125 -0
- package/dist/resolvers/takeshape/assets/asset.js +107 -0
- package/dist/resolvers/takeshape/assets/constants.d.ts +11 -0
- package/dist/resolvers/takeshape/assets/constants.js +11 -0
- package/dist/resolvers/takeshape/builtins/constants.d.ts +1 -0
- package/dist/resolvers/takeshape/builtins/constants.js +1 -0
- package/dist/runtime-schema.d.ts +6 -0
- package/dist/runtime-schema.js +85 -0
- package/dist/scalars.d.ts +2 -0
- package/dist/scalars.js +4 -0
- package/dist/schema-transform.d.ts +19 -0
- package/dist/schema-transform.js +74 -0
- package/dist/schema-util.d.ts +266 -0
- package/dist/schema-util.js +1127 -0
- package/dist/schemas/auth-schemas.json +400 -0
- package/dist/schemas/index.d.ts +4 -0
- package/dist/schemas/index.js +182 -0
- package/dist/schemas/project-schema/experimental-2025-07.json +1297 -0
- package/dist/schemas/project-schema/latest.d.ts +245 -0
- package/dist/schemas/project-schema/latest.js +25 -0
- package/dist/schemas/project-schema/latest.json +5109 -0
- package/dist/schemas/project-schema/meta-schema-v1.0.0.json +193 -0
- package/dist/schemas/project-schema/meta-schema-v3.0.0.json +608 -0
- package/dist/schemas/project-schema/meta-schema-v3.1.0.json +608 -0
- package/dist/schemas/project-schema/meta-schema-v3.2.0.json +612 -0
- package/dist/schemas/project-schema/meta-schema-v3.3.0.json +612 -0
- package/dist/schemas/project-schema/meta-schema-v3.4.0.json +637 -0
- package/dist/schemas/project-schema/meta-schema-v3.5.0.json +626 -0
- package/dist/schemas/project-schema/meta-schema-v3.5.1.json +626 -0
- package/dist/schemas/project-schema/meta-schema-v3.6.0.json +629 -0
- package/dist/schemas/project-schema/meta-schema-v3.7.0.json +1137 -0
- package/dist/schemas/project-schema/meta-schema-v3.8.0.json +1137 -0
- package/dist/schemas/project-schema/meta-schema-v3.9.0.json +1477 -0
- package/dist/schemas/project-schema/v1.0.0.json +321 -0
- package/dist/schemas/project-schema/v3.0.0.json +414 -0
- package/dist/schemas/project-schema/v3.1.0.json +572 -0
- package/dist/schemas/project-schema/v3.10.0.json +2097 -0
- package/dist/schemas/project-schema/v3.11.0.json +2141 -0
- package/dist/schemas/project-schema/v3.12.0.json +2144 -0
- package/dist/schemas/project-schema/v3.12.1.json +2282 -0
- package/dist/schemas/project-schema/v3.12.2.json +2304 -0
- package/dist/schemas/project-schema/v3.12.3.json +2357 -0
- package/dist/schemas/project-schema/v3.13.0.json +2377 -0
- package/dist/schemas/project-schema/v3.14.0.json +2385 -0
- package/dist/schemas/project-schema/v3.15.0.json +2365 -0
- package/dist/schemas/project-schema/v3.16.0.json +2373 -0
- package/dist/schemas/project-schema/v3.17.0.json +2378 -0
- package/dist/schemas/project-schema/v3.17.1.json +2380 -0
- package/dist/schemas/project-schema/v3.18.0.json +2356 -0
- package/dist/schemas/project-schema/v3.18.1.json +2357 -0
- package/dist/schemas/project-schema/v3.18.2.json +2357 -0
- package/dist/schemas/project-schema/v3.19.0.json +2369 -0
- package/dist/schemas/project-schema/v3.2.0.json +580 -0
- package/dist/schemas/project-schema/v3.20.0.json +2369 -0
- package/dist/schemas/project-schema/v3.21.0.json +2376 -0
- package/dist/schemas/project-schema/v3.22.0.json +2381 -0
- package/dist/schemas/project-schema/v3.23.0.json +2456 -0
- package/dist/schemas/project-schema/v3.24.0.json +2556 -0
- package/dist/schemas/project-schema/v3.25.0.json +2552 -0
- package/dist/schemas/project-schema/v3.26.0.json +2599 -0
- package/dist/schemas/project-schema/v3.27.0.json +2611 -0
- package/dist/schemas/project-schema/v3.28.0.json +2656 -0
- package/dist/schemas/project-schema/v3.29.0.json +2670 -0
- package/dist/schemas/project-schema/v3.3.0.json +581 -0
- package/dist/schemas/project-schema/v3.30.0.json +2656 -0
- package/dist/schemas/project-schema/v3.31.0.json +2714 -0
- package/dist/schemas/project-schema/v3.32.0.json +2708 -0
- package/dist/schemas/project-schema/v3.33.0.json +2715 -0
- package/dist/schemas/project-schema/v3.34.0.json +2715 -0
- package/dist/schemas/project-schema/v3.35.0.json +2748 -0
- package/dist/schemas/project-schema/v3.36.0.json +2756 -0
- package/dist/schemas/project-schema/v3.37.0.json +2821 -0
- package/dist/schemas/project-schema/v3.38.0.json +2819 -0
- package/dist/schemas/project-schema/v3.39.0.json +2827 -0
- package/dist/schemas/project-schema/v3.4.0.json +571 -0
- package/dist/schemas/project-schema/v3.40.0.json +2830 -0
- package/dist/schemas/project-schema/v3.41.0.json +2830 -0
- package/dist/schemas/project-schema/v3.42.0.json +2835 -0
- package/dist/schemas/project-schema/v3.43.0.json +2841 -0
- package/dist/schemas/project-schema/v3.44.0.json +3013 -0
- package/dist/schemas/project-schema/v3.45.0.json +3064 -0
- package/dist/schemas/project-schema/v3.46.0.json +3136 -0
- package/dist/schemas/project-schema/v3.47.0.json +3189 -0
- package/dist/schemas/project-schema/v3.48.0.json +3196 -0
- package/dist/schemas/project-schema/v3.49.0.json +3239 -0
- package/dist/schemas/project-schema/v3.5.0.json +571 -0
- package/dist/schemas/project-schema/v3.5.1.json +571 -0
- package/dist/schemas/project-schema/v3.50.0.json +3320 -0
- package/dist/schemas/project-schema/v3.51.0.json +3326 -0
- package/dist/schemas/project-schema/v3.52.0.json +3326 -0
- package/dist/schemas/project-schema/v3.53.0.json +3476 -0
- package/dist/schemas/project-schema/v3.54.0.json +3512 -0
- package/dist/schemas/project-schema/v3.55.0.json +3515 -0
- package/dist/schemas/project-schema/v3.56.0.json +3530 -0
- package/dist/schemas/project-schema/v3.57.0.json +4815 -0
- package/dist/schemas/project-schema/v3.58.0.json +4815 -0
- package/dist/schemas/project-schema/v3.59.0.json +4912 -0
- package/dist/schemas/project-schema/v3.6.0.json +587 -0
- package/dist/schemas/project-schema/v3.60.0.json +4974 -0
- package/dist/schemas/project-schema/v3.61.0.json +4974 -0
- package/dist/schemas/project-schema/v3.62.0.json +5007 -0
- package/dist/schemas/project-schema/v3.63.0.json +5020 -0
- package/dist/schemas/project-schema/v3.64.0.json +5032 -0
- package/dist/schemas/project-schema/v3.65.0.json +5109 -0
- package/dist/schemas/project-schema/v3.7.0.json +587 -0
- package/dist/schemas/project-schema/v3.8.0.json +604 -0
- package/dist/schemas/project-schema/v3.9.0.json +604 -0
- package/dist/schemas/project-schema/v4.0.0.json +2316 -0
- package/dist/schemas/project-schema.json +232 -0
- package/dist/service-dependencies.d.ts +13 -0
- package/dist/service-dependencies.js +165 -0
- package/dist/services/services.d.ts +31 -0
- package/dist/services/services.js +145 -0
- package/dist/services/types.d.ts +11 -0
- package/dist/services/types.js +1 -0
- package/dist/services/util.d.ts +16 -0
- package/dist/services/util.js +36 -0
- package/dist/shape-paths.d.ts +7 -0
- package/dist/shape-paths.js +40 -0
- package/dist/taxonomies.d.ts +15 -0
- package/dist/taxonomies.js +24 -0
- package/dist/template-shapes/index.d.ts +7 -0
- package/dist/template-shapes/index.js +33 -0
- package/dist/template-shapes/names.d.ts +10 -0
- package/dist/template-shapes/names.js +21 -0
- package/dist/template-shapes/templates.d.ts +32 -0
- package/dist/template-shapes/templates.js +316 -0
- package/dist/template-shapes/types.d.ts +15 -0
- package/dist/template-shapes/types.js +7 -0
- package/dist/template-shapes/where.d.ts +37 -0
- package/dist/template-shapes/where.js +415 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.js +2 -0
- package/dist/types/transforms.d.ts +15 -0
- package/dist/types/transforms.js +1 -0
- package/dist/types/types.d.ts +206 -0
- package/dist/types/types.js +10 -0
- package/dist/types/utils.d.ts +112 -0
- package/dist/types/utils.js +269 -0
- package/dist/unions.d.ts +14 -0
- package/dist/unions.js +77 -0
- package/dist/util/agent-utils.d.ts +2 -0
- package/dist/util/agent-utils.js +7 -0
- package/dist/util/api-indexing.d.ts +9 -0
- package/dist/util/api-indexing.js +57 -0
- package/dist/util/coerce-value.d.ts +9 -0
- package/dist/util/coerce-value.js +32 -0
- package/dist/util/detect-cycles.d.ts +7 -0
- package/dist/util/detect-cycles.js +45 -0
- package/dist/util/expressions.d.ts +34 -0
- package/dist/util/expressions.js +350 -0
- package/dist/util/find-shape-at-path.d.ts +21 -0
- package/dist/util/find-shape-at-path.js +53 -0
- package/dist/util/form-config.d.ts +11 -0
- package/dist/util/form-config.js +62 -0
- package/dist/util/get-conflicting-properties.d.ts +6 -0
- package/dist/util/get-conflicting-properties.js +55 -0
- package/dist/util/get-return-shape.d.ts +4 -0
- package/dist/util/get-return-shape.js +30 -0
- package/dist/util/graphql-string.d.ts +6 -0
- package/dist/util/graphql-string.js +75 -0
- package/dist/util/has-arg.d.ts +6 -0
- package/dist/util/has-arg.js +25 -0
- package/dist/util/is-asset-property.d.ts +3 -0
- package/dist/util/is-asset-property.js +11 -0
- package/dist/util/merge.d.ts +17 -0
- package/dist/util/merge.js +278 -0
- package/dist/util/patch-schema.d.ts +13 -0
- package/dist/util/patch-schema.js +89 -0
- package/dist/util/query-field-path.d.ts +9 -0
- package/dist/util/query-field-path.js +23 -0
- package/dist/util/shapes.d.ts +5 -0
- package/dist/util/shapes.js +22 -0
- package/dist/util/tools.d.ts +10 -0
- package/dist/util/tools.js +39 -0
- package/dist/validate/ai.d.ts +6 -0
- package/dist/validate/ai.js +221 -0
- package/dist/validate/errors.d.ts +3 -0
- package/dist/validate/errors.js +20 -0
- package/dist/validate/types.d.ts +43 -0
- package/dist/validate/types.js +1 -0
- package/dist/validate/util.d.ts +9 -0
- package/dist/validate/util.js +62 -0
- package/dist/validate/validate.d.ts +41 -0
- package/dist/validate/validate.js +1042 -0
- package/dist/versions.d.ts +4 -0
- package/dist/versions.js +4 -0
- package/dist/workflows.d.ts +14 -0
- package/dist/workflows.js +66 -0
- package/package.json +6 -6
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { serializePropertyRef } from "../refs.js";
|
|
2
|
+
import { createShape, shapeToPropertySchema } from "../schema-util.js";
|
|
3
|
+
import { getVariablesSchema } from "../util/graphql-string.js";
|
|
4
|
+
import { pickObjectSchema } from "../util/merge.js";
|
|
5
|
+
const defaultParameters = {
|
|
6
|
+
type: 'object',
|
|
7
|
+
properties: {}
|
|
8
|
+
};
|
|
9
|
+
Object.freeze(defaultParameters);
|
|
10
|
+
class ToolImpl {
|
|
11
|
+
#schema;
|
|
12
|
+
#tool;
|
|
13
|
+
#ref;
|
|
14
|
+
#execution;
|
|
15
|
+
constructor(parent, ref, json) {
|
|
16
|
+
this.#schema = parent;
|
|
17
|
+
this.#ref = ref;
|
|
18
|
+
this.#tool = json;
|
|
19
|
+
if (this.#tool.execution.type === 'remote') {
|
|
20
|
+
this.#execution = new ToolExecutionRemoteImpl(this.#schema, this.#tool.execution);
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
this.#execution = new ToolExecutionGraphQLImpl(this.#schema, this.#tool.execution);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
get name() {
|
|
27
|
+
return this.#tool.name;
|
|
28
|
+
}
|
|
29
|
+
get description() {
|
|
30
|
+
if (this.#tool.description) {
|
|
31
|
+
return this.#tool.description;
|
|
32
|
+
}
|
|
33
|
+
if (this.#execution.type === 'graphql') {
|
|
34
|
+
return this.#execution.getQueryDescription();
|
|
35
|
+
}
|
|
36
|
+
return undefined;
|
|
37
|
+
}
|
|
38
|
+
get json() {
|
|
39
|
+
return this.#tool;
|
|
40
|
+
}
|
|
41
|
+
get execution() {
|
|
42
|
+
return this.#execution;
|
|
43
|
+
}
|
|
44
|
+
get ref() {
|
|
45
|
+
return serializePropertyRef(this.#ref);
|
|
46
|
+
}
|
|
47
|
+
get refItem() {
|
|
48
|
+
return this.#ref;
|
|
49
|
+
}
|
|
50
|
+
get parametersSchema() {
|
|
51
|
+
if (this.#execution.type === 'graphql') {
|
|
52
|
+
const getQueryArgSchemaResult = this.#execution.getQueryArgSchema();
|
|
53
|
+
return getQueryArgSchemaResult?.argsSchema ?? defaultParameters;
|
|
54
|
+
}
|
|
55
|
+
return defaultParameters;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
class ToolExecutionGraphQLImpl {
|
|
59
|
+
#schema;
|
|
60
|
+
#execution;
|
|
61
|
+
type;
|
|
62
|
+
constructor(schema, execution) {
|
|
63
|
+
this.#schema = schema;
|
|
64
|
+
this.#execution = execution;
|
|
65
|
+
this.type = 'graphql';
|
|
66
|
+
}
|
|
67
|
+
get optimizeResponse() {
|
|
68
|
+
return this.#execution.optimizeResponse;
|
|
69
|
+
}
|
|
70
|
+
getGraphQLParams(queryGenerator) {
|
|
71
|
+
const { query } = this.#execution;
|
|
72
|
+
const source = typeof query === 'string'
|
|
73
|
+
? query
|
|
74
|
+
: queryGenerator(this.#schema, {
|
|
75
|
+
selectionSet: query.selectionSet,
|
|
76
|
+
query: this.#schema.ensureQuery(query.ref)
|
|
77
|
+
});
|
|
78
|
+
return { source: source };
|
|
79
|
+
}
|
|
80
|
+
getQueryArgSchema() {
|
|
81
|
+
const { query } = this.#execution;
|
|
82
|
+
if (typeof query === 'string') {
|
|
83
|
+
const result = getVariablesSchema(this.#schema, query);
|
|
84
|
+
if (!result) {
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
return result;
|
|
88
|
+
}
|
|
89
|
+
let { argsSchema, argsAreFromShape } = this.#schema.ensureQuery(query.ref);
|
|
90
|
+
if (argsSchema && query.args) {
|
|
91
|
+
argsSchema = pickObjectSchema(argsSchema, query.args);
|
|
92
|
+
}
|
|
93
|
+
const argSchemaResult = argsSchema && shapeToPropertySchema(this.#schema.json, createShape('Args', argsSchema));
|
|
94
|
+
if (argSchemaResult) {
|
|
95
|
+
return {
|
|
96
|
+
argsSchema: argSchemaResult,
|
|
97
|
+
argsAreFromShape
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
getQueryDescription() {
|
|
102
|
+
const { query } = this.#execution;
|
|
103
|
+
if (typeof query === 'object') {
|
|
104
|
+
return this.#schema.ensureQuery(query.ref).json.description;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
class ToolExecutionRemoteImpl {
|
|
109
|
+
#schema;
|
|
110
|
+
#execution;
|
|
111
|
+
type;
|
|
112
|
+
constructor(schema, execution) {
|
|
113
|
+
this.#schema = schema;
|
|
114
|
+
this.#execution = execution;
|
|
115
|
+
this.type = 'remote';
|
|
116
|
+
}
|
|
117
|
+
get service() {
|
|
118
|
+
return this.#execution.service;
|
|
119
|
+
}
|
|
120
|
+
get toolName() {
|
|
121
|
+
return this.#execution.toolName;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export function createTool(parent, ref, entry) {
|
|
125
|
+
return new ToolImpl(parent, ref, entry);
|
|
126
|
+
}
|
|
127
|
+
// class ToolExecutionMemoryImpl implements ToolExecutionMemory {
|
|
128
|
+
// #schema: ProjectSchema;
|
|
129
|
+
// #execution: ToolExecutionMemoryJSON;
|
|
130
|
+
// type: 'memory';
|
|
131
|
+
// getArgSchema() {
|
|
132
|
+
// const args = this.#execution.args;
|
|
133
|
+
// if (!args) {
|
|
134
|
+
// return undefined;
|
|
135
|
+
// }
|
|
136
|
+
// const argsShape = this.#schema.getShape(args);
|
|
137
|
+
// if (!argsShape) {
|
|
138
|
+
// return undefined;
|
|
139
|
+
// }
|
|
140
|
+
// return shapeToPropertySchema(this.#schema.json, argsShape.json) as ObjectSchema;
|
|
141
|
+
// }
|
|
142
|
+
// constructor(schema: ProjectSchema, execution: ToolExecutionMemoryJSON) {
|
|
143
|
+
// this.#schema = schema;
|
|
144
|
+
// this.#execution = execution;
|
|
145
|
+
// this.type = 'memory';
|
|
146
|
+
// }
|
|
147
|
+
// }
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import type { Logger } from '@takeshape/logger';
|
|
2
|
+
import type { AgentAPIInput, AgentAPIMutationInput, AgentJSON, AgentStart, AgentState, HistoryStrategyMap, ObjectSchema, ProjectSchemaJSON, PropertySchema, QueryJSON, ShapeJSON, ToolJSON } from '../project-schema/index.ts';
|
|
3
|
+
import type { PropertyRefItem, RefItem } from '../refs.ts';
|
|
4
|
+
export interface GetShapeOptions {
|
|
5
|
+
includeAllBuiltIns?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export interface ProjectSchema {
|
|
8
|
+
getShape(shapeRef: string, options?: GetShapeOptions): Shape | undefined;
|
|
9
|
+
ensureShape(shapeRef: string, options?: GetShapeOptions): Shape;
|
|
10
|
+
getQuery(queryRef: string): Query | undefined;
|
|
11
|
+
ensureQuery(queryRef: string): Query;
|
|
12
|
+
getLocalQueries(): Query[];
|
|
13
|
+
getLocalMutations(): Query[];
|
|
14
|
+
dereferenceSchema(propertySchema: PropertySchema): PropertySchema;
|
|
15
|
+
dereferenceObjectSchema(propertySchema: PropertySchema): ObjectSchema;
|
|
16
|
+
getAgent(name: string): Agent | undefined;
|
|
17
|
+
ensureAgent(name: string): Agent;
|
|
18
|
+
getAgents(): Agent[];
|
|
19
|
+
getTool(name: string): Tool | undefined;
|
|
20
|
+
ensureTool(name: string): Tool;
|
|
21
|
+
getTools(): Tool[];
|
|
22
|
+
getShapeContextVariables(shapeName: string): Record<string, string> | undefined;
|
|
23
|
+
json: ProjectSchemaJSON;
|
|
24
|
+
}
|
|
25
|
+
export interface Shape {
|
|
26
|
+
name: string;
|
|
27
|
+
ref: string;
|
|
28
|
+
refItem: RefItem;
|
|
29
|
+
json: ShapeJSON;
|
|
30
|
+
getObjectSchema(): ObjectSchema | undefined;
|
|
31
|
+
}
|
|
32
|
+
export interface Query {
|
|
33
|
+
name: string;
|
|
34
|
+
type: 'query' | 'mutation';
|
|
35
|
+
ref: string;
|
|
36
|
+
argsSchema: ObjectSchema | undefined;
|
|
37
|
+
argsAreFromShape: boolean;
|
|
38
|
+
json: QueryJSON;
|
|
39
|
+
returnShape: Shape | undefined;
|
|
40
|
+
}
|
|
41
|
+
export interface Agent {
|
|
42
|
+
name: string;
|
|
43
|
+
json: AgentJSON;
|
|
44
|
+
title: string | undefined;
|
|
45
|
+
description: string | undefined;
|
|
46
|
+
disabled: boolean | undefined;
|
|
47
|
+
systemPrompt: string | undefined;
|
|
48
|
+
sessionMemoryShape: Shape | undefined;
|
|
49
|
+
historyStrategies: HistoryStrategyMap | undefined;
|
|
50
|
+
isProtectionEnabled: boolean;
|
|
51
|
+
apiInputs: AgentAPIInput[];
|
|
52
|
+
startState: AgentStart;
|
|
53
|
+
getState(stateId: string): AgentState | undefined;
|
|
54
|
+
ensureState(stateId: string): AgentState;
|
|
55
|
+
getQueries(): Query[];
|
|
56
|
+
getMutations(): Query[];
|
|
57
|
+
getInputConfig(inputName: string): AgentAPIMutationInput | undefined;
|
|
58
|
+
}
|
|
59
|
+
export type GetParametersSchemaOptions = {
|
|
60
|
+
enableOpenAIFormat?: boolean;
|
|
61
|
+
logger?: Logger;
|
|
62
|
+
};
|
|
63
|
+
export interface Tool {
|
|
64
|
+
name: string;
|
|
65
|
+
description?: string;
|
|
66
|
+
ref: string;
|
|
67
|
+
refItem: PropertyRefItem;
|
|
68
|
+
json: ToolJSON;
|
|
69
|
+
execution: ToolExecution;
|
|
70
|
+
parametersSchema: ObjectSchema;
|
|
71
|
+
}
|
|
72
|
+
type QueryGeneratorParams = {
|
|
73
|
+
query: Query;
|
|
74
|
+
selectionSet?: string;
|
|
75
|
+
};
|
|
76
|
+
export type QueryGenerator = (schema: ProjectSchema, params: QueryGeneratorParams) => string;
|
|
77
|
+
export interface ToolExecutionGraphQL {
|
|
78
|
+
type: 'graphql';
|
|
79
|
+
optimizeResponse?: {
|
|
80
|
+
compactPagination?: boolean;
|
|
81
|
+
};
|
|
82
|
+
getGraphQLParams(queryGenerator: QueryGenerator): {
|
|
83
|
+
source: string;
|
|
84
|
+
};
|
|
85
|
+
getQueryArgSchema(): {
|
|
86
|
+
argsSchema: ObjectSchema;
|
|
87
|
+
argsAreFromShape: boolean;
|
|
88
|
+
} | undefined;
|
|
89
|
+
getQueryDescription(): string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export interface ToolExecutionRemote {
|
|
92
|
+
type: 'remote';
|
|
93
|
+
service: string;
|
|
94
|
+
toolName: string;
|
|
95
|
+
}
|
|
96
|
+
export type ToolExecution = ToolExecutionGraphQL | ToolExecutionRemote;
|
|
97
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ProjectSchemaJSON } from '../project-schema/index.ts';
|
|
2
|
+
import type { ServiceLayers } from '../types/types.ts';
|
|
3
|
+
import { ProjectSchemaImpl } from './project-schema.ts';
|
|
4
|
+
export declare class UserSchema extends ProjectSchemaImpl {
|
|
5
|
+
private constructor();
|
|
6
|
+
static fromJson(runtimeSchema: ProjectSchemaJSON, layers: ServiceLayers): UserSchema;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ProjectSchemaImpl } from "./project-schema.js";
|
|
2
|
+
export class UserSchema extends ProjectSchemaImpl {
|
|
3
|
+
constructor(userSchema, layers = {}) {
|
|
4
|
+
super(userSchema, layers);
|
|
5
|
+
}
|
|
6
|
+
static fromJson(runtimeSchema, layers) {
|
|
7
|
+
return new UserSchema(runtimeSchema, layers);
|
|
8
|
+
}
|
|
9
|
+
}
|
package/dist/patterns.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
export type * from './latest.ts';
|
|
2
|
+
export type * from './v1.0.0.ts';
|
|
3
|
+
export type * from './v3.0.0.ts';
|
|
4
|
+
export type * from './v3.1.0.ts';
|
|
5
|
+
export type * from './v3.2.0.ts';
|
|
6
|
+
export type * from './v3.3.0.ts';
|
|
7
|
+
export type * from './v3.4.0.ts';
|
|
8
|
+
export type * from './v3.5.0.ts';
|
|
9
|
+
export type * from './v3.5.1.ts';
|
|
10
|
+
export type * from './v3.6.0.ts';
|
|
11
|
+
export type * from './v3.7.0.ts';
|
|
12
|
+
export type * from './v3.8.0.ts';
|
|
13
|
+
export type * from './v3.9.0.ts';
|
|
14
|
+
export type * from './v3.10.0.ts';
|
|
15
|
+
export type * from './v3.11.0.ts';
|
|
16
|
+
export type * from './v3.12.0.ts';
|
|
17
|
+
export type * from './v3.12.1.ts';
|
|
18
|
+
export type * from './v3.12.2.ts';
|
|
19
|
+
export type * from './v3.12.3.ts';
|
|
20
|
+
export type * from './v3.13.0.ts';
|
|
21
|
+
export type * from './v3.14.0.ts';
|
|
22
|
+
export type * from './v3.15.0.ts';
|
|
23
|
+
export type * from './v3.16.0.ts';
|
|
24
|
+
export type * from './v3.17.0.ts';
|
|
25
|
+
export type * from './v3.17.1.ts';
|
|
26
|
+
export type * from './v3.18.0.ts';
|
|
27
|
+
export type * from './v3.18.1.ts';
|
|
28
|
+
export type * from './v3.18.2.ts';
|
|
29
|
+
export type * from './v3.19.0.ts';
|
|
30
|
+
export type * from './v3.20.0.ts';
|
|
31
|
+
export type * from './v3.21.0.ts';
|
|
32
|
+
export type * from './v3.22.0.ts';
|
|
33
|
+
export type * from './v3.23.0.ts';
|
|
34
|
+
export type * from './v3.24.0.ts';
|
|
35
|
+
export type * from './v3.25.0.ts';
|
|
36
|
+
export type * from './v3.26.0.ts';
|
|
37
|
+
export type * from './v3.27.0.ts';
|
|
38
|
+
export type * from './v3.28.0.ts';
|
|
39
|
+
export type * from './v3.29.0.ts';
|
|
40
|
+
export type * from './v3.30.0.ts';
|
|
41
|
+
export type * from './v3.31.0.ts';
|
|
42
|
+
export type * from './v3.32.0.ts';
|
|
43
|
+
export type * from './v3.33.0.ts';
|
|
44
|
+
export type * from './v3.34.0.ts';
|
|
45
|
+
export type * from './v3.35.0.ts';
|
|
46
|
+
export type * from './v3.36.0.ts';
|
|
47
|
+
export type * from './v3.37.0.ts';
|
|
48
|
+
export type * from './v3.38.0.ts';
|
|
49
|
+
export type * from './v3.39.0.ts';
|
|
50
|
+
export type * from './v3.40.0.ts';
|
|
51
|
+
export type * from './v3.41.0.ts';
|
|
52
|
+
export type * from './v3.42.0.ts';
|
|
53
|
+
export type * from './v3.43.0.ts';
|
|
54
|
+
export type * from './v3.44.0.ts';
|
|
55
|
+
export type * from './v3.45.0.ts';
|
|
56
|
+
export type * from './v3.46.0.ts';
|
|
57
|
+
export type * from './v3.47.0.ts';
|
|
58
|
+
export type * from './v3.48.0.ts';
|
|
59
|
+
export type * from './v3.49.0.ts';
|
|
60
|
+
export type * from './v3.50.0.ts';
|
|
61
|
+
export type * from './v3.51.0.ts';
|
|
62
|
+
export type * from './v3.52.0.ts';
|
|
63
|
+
export type * from './v3.53.0.ts';
|
|
64
|
+
export type * from './v3.54.0.ts';
|
|
65
|
+
export type * from './v3.55.0.ts';
|
|
66
|
+
export type * from './v3.56.0.ts';
|
|
67
|
+
export type * from './v3.57.0.ts';
|
|
68
|
+
export type * from './v3.58.0.ts';
|
|
69
|
+
export type * from './v3.59.0.ts';
|
|
70
|
+
export type * from './v3.60.0.ts';
|
|
71
|
+
export type * from './v3.61.0.ts';
|
|
72
|
+
export type * from './v3.62.0.ts';
|
|
73
|
+
export type * from './v3.63.0.ts';
|
|
74
|
+
export type * from './v3.64.0.ts';
|
|
75
|
+
export type * from './v3.65.0.ts';
|
|
76
|
+
export type * from './v4.0.0.ts';
|
|
77
|
+
import { ProjectSchemaJSONV1_0_0 } from './v1.0.0.ts';
|
|
78
|
+
import { ProjectSchemaJSONV3_0_0 } from './v3.0.0.ts';
|
|
79
|
+
import { ProjectSchemaJSONV3_1_0 } from './v3.1.0.ts';
|
|
80
|
+
import { ProjectSchemaJSONV3_2_0 } from './v3.2.0.ts';
|
|
81
|
+
import { ProjectSchemaJSONV3_3_0 } from './v3.3.0.ts';
|
|
82
|
+
import { ProjectSchemaJSONV3_4_0 } from './v3.4.0.ts';
|
|
83
|
+
import { ProjectSchemaJSONV3_5_0 } from './v3.5.0.ts';
|
|
84
|
+
import { ProjectSchemaJSONV3_5_1 } from './v3.5.1.ts';
|
|
85
|
+
import { ProjectSchemaJSONV3_6_0 } from './v3.6.0.ts';
|
|
86
|
+
import { ProjectSchemaJSONV3_7_0 } from './v3.7.0.ts';
|
|
87
|
+
import { ProjectSchemaJSONV3_8_0 } from './v3.8.0.ts';
|
|
88
|
+
import { ProjectSchemaJSONV3_9_0 } from './v3.9.0.ts';
|
|
89
|
+
import { ProjectSchemaJSONV3_10_0 } from './v3.10.0.ts';
|
|
90
|
+
import { ProjectSchemaJSONV3_11_0 } from './v3.11.0.ts';
|
|
91
|
+
import { ProjectSchemaJSONV3_12_0 } from './v3.12.0.ts';
|
|
92
|
+
import { ProjectSchemaJSONV3_12_1 } from './v3.12.1.ts';
|
|
93
|
+
import { ProjectSchemaJSONV3_12_2 } from './v3.12.2.ts';
|
|
94
|
+
import { ProjectSchemaJSONV3_12_3 } from './v3.12.3.ts';
|
|
95
|
+
import { ProjectSchemaJSONV3_13_0 } from './v3.13.0.ts';
|
|
96
|
+
import { ProjectSchemaJSONV3_14_0 } from './v3.14.0.ts';
|
|
97
|
+
import { ProjectSchemaJSONV3_15_0 } from './v3.15.0.ts';
|
|
98
|
+
import { ProjectSchemaJSONV3_16_0 } from './v3.16.0.ts';
|
|
99
|
+
import { ProjectSchemaJSONV3_17_0 } from './v3.17.0.ts';
|
|
100
|
+
import { ProjectSchemaJSONV3_17_1 } from './v3.17.1.ts';
|
|
101
|
+
import { ProjectSchemaJSONV3_18_0 } from './v3.18.0.ts';
|
|
102
|
+
import { ProjectSchemaJSONV3_18_1 } from './v3.18.1.ts';
|
|
103
|
+
import { ProjectSchemaJSONV3_18_2 } from './v3.18.2.ts';
|
|
104
|
+
import { ProjectSchemaJSONV3_19_0 } from './v3.19.0.ts';
|
|
105
|
+
import { ProjectSchemaJSONV3_20_0 } from './v3.20.0.ts';
|
|
106
|
+
import { ProjectSchemaJSONV3_21_0 } from './v3.21.0.ts';
|
|
107
|
+
import { ProjectSchemaJSONV3_22_0 } from './v3.22.0.ts';
|
|
108
|
+
import { ProjectSchemaJSONV3_23_0 } from './v3.23.0.ts';
|
|
109
|
+
import { ProjectSchemaJSONV3_24_0 } from './v3.24.0.ts';
|
|
110
|
+
import { ProjectSchemaJSONV3_25_0 } from './v3.25.0.ts';
|
|
111
|
+
import { ProjectSchemaJSONV3_26_0 } from './v3.26.0.ts';
|
|
112
|
+
import { ProjectSchemaJSONV3_27_0 } from './v3.27.0.ts';
|
|
113
|
+
import { ProjectSchemaJSONV3_28_0 } from './v3.28.0.ts';
|
|
114
|
+
import { ProjectSchemaJSONV3_29_0 } from './v3.29.0.ts';
|
|
115
|
+
import { ProjectSchemaJSONV3_30_0 } from './v3.30.0.ts';
|
|
116
|
+
import { ProjectSchemaJSONV3_31_0 } from './v3.31.0.ts';
|
|
117
|
+
import { ProjectSchemaJSONV3_32_0 } from './v3.32.0.ts';
|
|
118
|
+
import { ProjectSchemaJSONV3_33_0 } from './v3.33.0.ts';
|
|
119
|
+
import { ProjectSchemaJSONV3_34_0 } from './v3.34.0.ts';
|
|
120
|
+
import { ProjectSchemaJSONV3_35_0 } from './v3.35.0.ts';
|
|
121
|
+
import { ProjectSchemaJSONV3_36_0 } from './v3.36.0.ts';
|
|
122
|
+
import { ProjectSchemaJSONV3_37_0 } from './v3.37.0.ts';
|
|
123
|
+
import { ProjectSchemaJSONV3_38_0 } from './v3.38.0.ts';
|
|
124
|
+
import { ProjectSchemaJSONV3_39_0 } from './v3.39.0.ts';
|
|
125
|
+
import { ProjectSchemaJSONV3_40_0 } from './v3.40.0.ts';
|
|
126
|
+
import { ProjectSchemaJSONV3_41_0 } from './v3.41.0.ts';
|
|
127
|
+
import { ProjectSchemaJSONV3_42_0 } from './v3.42.0.ts';
|
|
128
|
+
import { ProjectSchemaJSONV3_43_0 } from './v3.43.0.ts';
|
|
129
|
+
import { ProjectSchemaJSONV3_44_0 } from './v3.44.0.ts';
|
|
130
|
+
import { ProjectSchemaJSONV3_45_0 } from './v3.45.0.ts';
|
|
131
|
+
import { ProjectSchemaJSONV3_46_0 } from './v3.46.0.ts';
|
|
132
|
+
import { ProjectSchemaJSONV3_47_0 } from './v3.47.0.ts';
|
|
133
|
+
import { ProjectSchemaJSONV3_48_0 } from './v3.48.0.ts';
|
|
134
|
+
import { ProjectSchemaJSONV3_49_0 } from './v3.49.0.ts';
|
|
135
|
+
import { ProjectSchemaJSONV3_50_0 } from './v3.50.0.ts';
|
|
136
|
+
import { ProjectSchemaJSONV3_51_0 } from './v3.51.0.ts';
|
|
137
|
+
import { ProjectSchemaJSONV3_52_0 } from './v3.52.0.ts';
|
|
138
|
+
import { ProjectSchemaJSONV3_53_0 } from './v3.53.0.ts';
|
|
139
|
+
import { ProjectSchemaJSONV3_54_0 } from './v3.54.0.ts';
|
|
140
|
+
import { ProjectSchemaJSONV3_55_0 } from './v3.55.0.ts';
|
|
141
|
+
import { ProjectSchemaJSONV3_56_0 } from './v3.56.0.ts';
|
|
142
|
+
import { ProjectSchemaJSONV3_57_0 } from './v3.57.0.ts';
|
|
143
|
+
import { ProjectSchemaJSONV3_58_0 } from './v3.58.0.ts';
|
|
144
|
+
import { ProjectSchemaJSONV3_59_0 } from './v3.59.0.ts';
|
|
145
|
+
import { ProjectSchemaJSONV3_60_0 } from './v3.60.0.ts';
|
|
146
|
+
import { ProjectSchemaJSONV3_61_0 } from './v3.61.0.ts';
|
|
147
|
+
import { ProjectSchemaJSONV3_62_0 } from './v3.62.0.ts';
|
|
148
|
+
import { ProjectSchemaJSONV3_63_0 } from './v3.63.0.ts';
|
|
149
|
+
import { ProjectSchemaJSONV3_64_0 } from './v3.64.0.ts';
|
|
150
|
+
import { ProjectSchemaJSONV3_65_0 } from './v3.65.0.ts';
|
|
151
|
+
import { ProjectSchemaJSONV4_0_0 } from './v4.0.0.ts';
|
|
152
|
+
import { ProjectSchemaJSON } from './latest.ts';
|
|
153
|
+
export type AnyProjectSchemaJSON = ProjectSchemaJSONV1_0_0 | ProjectSchemaJSONV3_0_0 | ProjectSchemaJSONV3_1_0 | ProjectSchemaJSONV3_2_0 | ProjectSchemaJSONV3_3_0 | ProjectSchemaJSONV3_4_0 | ProjectSchemaJSONV3_5_0 | ProjectSchemaJSONV3_5_1 | ProjectSchemaJSONV3_6_0 | ProjectSchemaJSONV3_7_0 | ProjectSchemaJSONV3_8_0 | ProjectSchemaJSONV3_9_0 | ProjectSchemaJSONV3_10_0 | ProjectSchemaJSONV3_11_0 | ProjectSchemaJSONV3_12_0 | ProjectSchemaJSONV3_12_1 | ProjectSchemaJSONV3_12_2 | ProjectSchemaJSONV3_12_3 | ProjectSchemaJSONV3_13_0 | ProjectSchemaJSONV3_14_0 | ProjectSchemaJSONV3_15_0 | ProjectSchemaJSONV3_16_0 | ProjectSchemaJSONV3_17_0 | ProjectSchemaJSONV3_17_1 | ProjectSchemaJSONV3_18_0 | ProjectSchemaJSONV3_18_1 | ProjectSchemaJSONV3_18_2 | ProjectSchemaJSONV3_19_0 | ProjectSchemaJSONV3_20_0 | ProjectSchemaJSONV3_21_0 | ProjectSchemaJSONV3_22_0 | ProjectSchemaJSONV3_23_0 | ProjectSchemaJSONV3_24_0 | ProjectSchemaJSONV3_25_0 | ProjectSchemaJSONV3_26_0 | ProjectSchemaJSONV3_27_0 | ProjectSchemaJSONV3_28_0 | ProjectSchemaJSONV3_29_0 | ProjectSchemaJSONV3_30_0 | ProjectSchemaJSONV3_31_0 | ProjectSchemaJSONV3_32_0 | ProjectSchemaJSONV3_33_0 | ProjectSchemaJSONV3_34_0 | ProjectSchemaJSONV3_35_0 | ProjectSchemaJSONV3_36_0 | ProjectSchemaJSONV3_37_0 | ProjectSchemaJSONV3_38_0 | ProjectSchemaJSONV3_39_0 | ProjectSchemaJSONV3_40_0 | ProjectSchemaJSONV3_41_0 | ProjectSchemaJSONV3_42_0 | ProjectSchemaJSONV3_43_0 | ProjectSchemaJSONV3_44_0 | ProjectSchemaJSONV3_45_0 | ProjectSchemaJSONV3_46_0 | ProjectSchemaJSONV3_47_0 | ProjectSchemaJSONV3_48_0 | ProjectSchemaJSONV3_49_0 | ProjectSchemaJSONV3_50_0 | ProjectSchemaJSONV3_51_0 | ProjectSchemaJSONV3_52_0 | ProjectSchemaJSONV3_53_0 | ProjectSchemaJSONV3_54_0 | ProjectSchemaJSONV3_55_0 | ProjectSchemaJSONV3_56_0 | ProjectSchemaJSONV3_57_0 | ProjectSchemaJSONV3_58_0 | ProjectSchemaJSONV3_59_0 | ProjectSchemaJSONV3_60_0 | ProjectSchemaJSONV3_61_0 | ProjectSchemaJSONV3_62_0 | ProjectSchemaJSONV3_63_0 | ProjectSchemaJSONV3_64_0 | ProjectSchemaJSONV3_65_0 | ProjectSchemaJSONV4_0_0 | ProjectSchemaJSON;
|
|
154
|
+
export declare const isProjectSchemaJSONV1_0_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV1_0_0;
|
|
155
|
+
export declare const isProjectSchemaJSONV3_0_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_0_0;
|
|
156
|
+
export declare const isProjectSchemaJSONV3_1_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_1_0;
|
|
157
|
+
export declare const isProjectSchemaJSONV3_2_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_2_0;
|
|
158
|
+
export declare const isProjectSchemaJSONV3_3_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_3_0;
|
|
159
|
+
export declare const isProjectSchemaJSONV3_4_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_4_0;
|
|
160
|
+
export declare const isProjectSchemaJSONV3_5_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_5_0;
|
|
161
|
+
export declare const isProjectSchemaJSONV3_5_1: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_5_1;
|
|
162
|
+
export declare const isProjectSchemaJSONV3_6_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_6_0;
|
|
163
|
+
export declare const isProjectSchemaJSONV3_7_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_7_0;
|
|
164
|
+
export declare const isProjectSchemaJSONV3_8_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_8_0;
|
|
165
|
+
export declare const isProjectSchemaJSONV3_9_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_9_0;
|
|
166
|
+
export declare const isProjectSchemaJSONV3_10_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_10_0;
|
|
167
|
+
export declare const isProjectSchemaJSONV3_11_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_11_0;
|
|
168
|
+
export declare const isProjectSchemaJSONV3_12_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_12_0;
|
|
169
|
+
export declare const isProjectSchemaJSONV3_12_1: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_12_1;
|
|
170
|
+
export declare const isProjectSchemaJSONV3_12_2: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_12_2;
|
|
171
|
+
export declare const isProjectSchemaJSONV3_12_3: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_12_3;
|
|
172
|
+
export declare const isProjectSchemaJSONV3_13_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_13_0;
|
|
173
|
+
export declare const isProjectSchemaJSONV3_14_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_14_0;
|
|
174
|
+
export declare const isProjectSchemaJSONV3_15_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_15_0;
|
|
175
|
+
export declare const isProjectSchemaJSONV3_16_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_16_0;
|
|
176
|
+
export declare const isProjectSchemaJSONV3_17_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_17_0;
|
|
177
|
+
export declare const isProjectSchemaJSONV3_17_1: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_17_1;
|
|
178
|
+
export declare const isProjectSchemaJSONV3_18_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_18_0;
|
|
179
|
+
export declare const isProjectSchemaJSONV3_18_1: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_18_1;
|
|
180
|
+
export declare const isProjectSchemaJSONV3_18_2: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_18_2;
|
|
181
|
+
export declare const isProjectSchemaJSONV3_19_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_19_0;
|
|
182
|
+
export declare const isProjectSchemaJSONV3_20_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_20_0;
|
|
183
|
+
export declare const isProjectSchemaJSONV3_21_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_21_0;
|
|
184
|
+
export declare const isProjectSchemaJSONV3_22_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_22_0;
|
|
185
|
+
export declare const isProjectSchemaJSONV3_23_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_23_0;
|
|
186
|
+
export declare const isProjectSchemaJSONV3_24_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_24_0;
|
|
187
|
+
export declare const isProjectSchemaJSONV3_25_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_25_0;
|
|
188
|
+
export declare const isProjectSchemaJSONV3_26_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_26_0;
|
|
189
|
+
export declare const isProjectSchemaJSONV3_27_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_27_0;
|
|
190
|
+
export declare const isProjectSchemaJSONV3_28_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_28_0;
|
|
191
|
+
export declare const isProjectSchemaJSONV3_29_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_29_0;
|
|
192
|
+
export declare const isProjectSchemaJSONV3_30_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_30_0;
|
|
193
|
+
export declare const isProjectSchemaJSONV3_31_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_31_0;
|
|
194
|
+
export declare const isProjectSchemaJSONV3_32_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_32_0;
|
|
195
|
+
export declare const isProjectSchemaJSONV3_33_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_33_0;
|
|
196
|
+
export declare const isProjectSchemaJSONV3_34_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_34_0;
|
|
197
|
+
export declare const isProjectSchemaJSONV3_35_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_35_0;
|
|
198
|
+
export declare const isProjectSchemaJSONV3_36_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_36_0;
|
|
199
|
+
export declare const isProjectSchemaJSONV3_37_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_37_0;
|
|
200
|
+
export declare const isProjectSchemaJSONV3_38_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_38_0;
|
|
201
|
+
export declare const isProjectSchemaJSONV3_39_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_39_0;
|
|
202
|
+
export declare const isProjectSchemaJSONV3_40_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_40_0;
|
|
203
|
+
export declare const isProjectSchemaJSONV3_41_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_41_0;
|
|
204
|
+
export declare const isProjectSchemaJSONV3_42_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_42_0;
|
|
205
|
+
export declare const isProjectSchemaJSONV3_43_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_43_0;
|
|
206
|
+
export declare const isProjectSchemaJSONV3_44_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_44_0;
|
|
207
|
+
export declare const isProjectSchemaJSONV3_45_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_45_0;
|
|
208
|
+
export declare const isProjectSchemaJSONV3_46_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_46_0;
|
|
209
|
+
export declare const isProjectSchemaJSONV3_47_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_47_0;
|
|
210
|
+
export declare const isProjectSchemaJSONV3_48_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_48_0;
|
|
211
|
+
export declare const isProjectSchemaJSONV3_49_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_49_0;
|
|
212
|
+
export declare const isProjectSchemaJSONV3_50_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_50_0;
|
|
213
|
+
export declare const isProjectSchemaJSONV3_51_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_51_0;
|
|
214
|
+
export declare const isProjectSchemaJSONV3_52_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_52_0;
|
|
215
|
+
export declare const isProjectSchemaJSONV3_53_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_53_0;
|
|
216
|
+
export declare const isProjectSchemaJSONV3_54_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_54_0;
|
|
217
|
+
export declare const isProjectSchemaJSONV3_55_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_55_0;
|
|
218
|
+
export declare const isProjectSchemaJSONV3_56_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_56_0;
|
|
219
|
+
export declare const isProjectSchemaJSONV3_57_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_57_0;
|
|
220
|
+
export declare const isProjectSchemaJSONV3_58_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_58_0;
|
|
221
|
+
export declare const isProjectSchemaJSONV3_59_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_59_0;
|
|
222
|
+
export declare const isProjectSchemaJSONV3_60_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_60_0;
|
|
223
|
+
export declare const isProjectSchemaJSONV3_61_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_61_0;
|
|
224
|
+
export declare const isProjectSchemaJSONV3_62_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_62_0;
|
|
225
|
+
export declare const isProjectSchemaJSONV3_63_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_63_0;
|
|
226
|
+
export declare const isProjectSchemaJSONV3_64_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_64_0;
|
|
227
|
+
export declare const isProjectSchemaJSONV3_65_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV3_65_0;
|
|
228
|
+
export declare const isLatestProjectSchemaJSON: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSON;
|
|
229
|
+
export declare const isProjectSchemaJSONV4_0_0: (projectSchema: AnyProjectSchemaJSON) => projectSchema is ProjectSchemaJSONV4_0_0;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
// Schema type utilities
|
|
2
|
+
function createVersionPredicate(expectedVersion) {
|
|
3
|
+
return (projectSchema) => {
|
|
4
|
+
let { schemaVersion } = projectSchema;
|
|
5
|
+
if (!schemaVersion || schemaVersion === '1') {
|
|
6
|
+
schemaVersion = '1.0.0';
|
|
7
|
+
}
|
|
8
|
+
if (schemaVersion === '3') {
|
|
9
|
+
schemaVersion = '3.0.0';
|
|
10
|
+
}
|
|
11
|
+
return Boolean(expectedVersion && schemaVersion && expectedVersion === schemaVersion);
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export const isProjectSchemaJSONV1_0_0 = createVersionPredicate('1.0.0');
|
|
15
|
+
export const isProjectSchemaJSONV3_0_0 = createVersionPredicate('3.0.0');
|
|
16
|
+
export const isProjectSchemaJSONV3_1_0 = createVersionPredicate('3.1.0');
|
|
17
|
+
export const isProjectSchemaJSONV3_2_0 = createVersionPredicate('3.2.0');
|
|
18
|
+
export const isProjectSchemaJSONV3_3_0 = createVersionPredicate('3.3.0');
|
|
19
|
+
export const isProjectSchemaJSONV3_4_0 = createVersionPredicate('3.4.0');
|
|
20
|
+
export const isProjectSchemaJSONV3_5_0 = createVersionPredicate('3.5.0');
|
|
21
|
+
export const isProjectSchemaJSONV3_5_1 = createVersionPredicate('3.5.1');
|
|
22
|
+
export const isProjectSchemaJSONV3_6_0 = createVersionPredicate('3.6.0');
|
|
23
|
+
export const isProjectSchemaJSONV3_7_0 = createVersionPredicate('3.7.0');
|
|
24
|
+
export const isProjectSchemaJSONV3_8_0 = createVersionPredicate('3.8.0');
|
|
25
|
+
export const isProjectSchemaJSONV3_9_0 = createVersionPredicate('3.9.0');
|
|
26
|
+
export const isProjectSchemaJSONV3_10_0 = createVersionPredicate('3.10.0');
|
|
27
|
+
export const isProjectSchemaJSONV3_11_0 = createVersionPredicate('3.11.0');
|
|
28
|
+
export const isProjectSchemaJSONV3_12_0 = createVersionPredicate('3.12.0');
|
|
29
|
+
export const isProjectSchemaJSONV3_12_1 = createVersionPredicate('3.12.1');
|
|
30
|
+
export const isProjectSchemaJSONV3_12_2 = createVersionPredicate('3.12.2');
|
|
31
|
+
export const isProjectSchemaJSONV3_12_3 = createVersionPredicate('3.12.3');
|
|
32
|
+
export const isProjectSchemaJSONV3_13_0 = createVersionPredicate('3.13.0');
|
|
33
|
+
export const isProjectSchemaJSONV3_14_0 = createVersionPredicate('3.14.0');
|
|
34
|
+
export const isProjectSchemaJSONV3_15_0 = createVersionPredicate('3.15.0');
|
|
35
|
+
export const isProjectSchemaJSONV3_16_0 = createVersionPredicate('3.16.0');
|
|
36
|
+
export const isProjectSchemaJSONV3_17_0 = createVersionPredicate('3.17.0');
|
|
37
|
+
export const isProjectSchemaJSONV3_17_1 = createVersionPredicate('3.17.1');
|
|
38
|
+
export const isProjectSchemaJSONV3_18_0 = createVersionPredicate('3.18.0');
|
|
39
|
+
export const isProjectSchemaJSONV3_18_1 = createVersionPredicate('3.18.1');
|
|
40
|
+
export const isProjectSchemaJSONV3_18_2 = createVersionPredicate('3.18.2');
|
|
41
|
+
export const isProjectSchemaJSONV3_19_0 = createVersionPredicate('3.19.0');
|
|
42
|
+
export const isProjectSchemaJSONV3_20_0 = createVersionPredicate('3.20.0');
|
|
43
|
+
export const isProjectSchemaJSONV3_21_0 = createVersionPredicate('3.21.0');
|
|
44
|
+
export const isProjectSchemaJSONV3_22_0 = createVersionPredicate('3.22.0');
|
|
45
|
+
export const isProjectSchemaJSONV3_23_0 = createVersionPredicate('3.23.0');
|
|
46
|
+
export const isProjectSchemaJSONV3_24_0 = createVersionPredicate('3.24.0');
|
|
47
|
+
export const isProjectSchemaJSONV3_25_0 = createVersionPredicate('3.25.0');
|
|
48
|
+
export const isProjectSchemaJSONV3_26_0 = createVersionPredicate('3.26.0');
|
|
49
|
+
export const isProjectSchemaJSONV3_27_0 = createVersionPredicate('3.27.0');
|
|
50
|
+
export const isProjectSchemaJSONV3_28_0 = createVersionPredicate('3.28.0');
|
|
51
|
+
export const isProjectSchemaJSONV3_29_0 = createVersionPredicate('3.29.0');
|
|
52
|
+
export const isProjectSchemaJSONV3_30_0 = createVersionPredicate('3.30.0');
|
|
53
|
+
export const isProjectSchemaJSONV3_31_0 = createVersionPredicate('3.31.0');
|
|
54
|
+
export const isProjectSchemaJSONV3_32_0 = createVersionPredicate('3.32.0');
|
|
55
|
+
export const isProjectSchemaJSONV3_33_0 = createVersionPredicate('3.33.0');
|
|
56
|
+
export const isProjectSchemaJSONV3_34_0 = createVersionPredicate('3.34.0');
|
|
57
|
+
export const isProjectSchemaJSONV3_35_0 = createVersionPredicate('3.35.0');
|
|
58
|
+
export const isProjectSchemaJSONV3_36_0 = createVersionPredicate('3.36.0');
|
|
59
|
+
export const isProjectSchemaJSONV3_37_0 = createVersionPredicate('3.37.0');
|
|
60
|
+
export const isProjectSchemaJSONV3_38_0 = createVersionPredicate('3.38.0');
|
|
61
|
+
export const isProjectSchemaJSONV3_39_0 = createVersionPredicate('3.39.0');
|
|
62
|
+
export const isProjectSchemaJSONV3_40_0 = createVersionPredicate('3.40.0');
|
|
63
|
+
export const isProjectSchemaJSONV3_41_0 = createVersionPredicate('3.41.0');
|
|
64
|
+
export const isProjectSchemaJSONV3_42_0 = createVersionPredicate('3.42.0');
|
|
65
|
+
export const isProjectSchemaJSONV3_43_0 = createVersionPredicate('3.43.0');
|
|
66
|
+
export const isProjectSchemaJSONV3_44_0 = createVersionPredicate('3.44.0');
|
|
67
|
+
export const isProjectSchemaJSONV3_45_0 = createVersionPredicate('3.45.0');
|
|
68
|
+
export const isProjectSchemaJSONV3_46_0 = createVersionPredicate('3.46.0');
|
|
69
|
+
export const isProjectSchemaJSONV3_47_0 = createVersionPredicate('3.47.0');
|
|
70
|
+
export const isProjectSchemaJSONV3_48_0 = createVersionPredicate('3.48.0');
|
|
71
|
+
export const isProjectSchemaJSONV3_49_0 = createVersionPredicate('3.49.0');
|
|
72
|
+
export const isProjectSchemaJSONV3_50_0 = createVersionPredicate('3.50.0');
|
|
73
|
+
export const isProjectSchemaJSONV3_51_0 = createVersionPredicate('3.51.0');
|
|
74
|
+
export const isProjectSchemaJSONV3_52_0 = createVersionPredicate('3.52.0');
|
|
75
|
+
export const isProjectSchemaJSONV3_53_0 = createVersionPredicate('3.53.0');
|
|
76
|
+
export const isProjectSchemaJSONV3_54_0 = createVersionPredicate('3.54.0');
|
|
77
|
+
export const isProjectSchemaJSONV3_55_0 = createVersionPredicate('3.55.0');
|
|
78
|
+
export const isProjectSchemaJSONV3_56_0 = createVersionPredicate('3.56.0');
|
|
79
|
+
export const isProjectSchemaJSONV3_57_0 = createVersionPredicate('3.57.0');
|
|
80
|
+
export const isProjectSchemaJSONV3_58_0 = createVersionPredicate('3.58.0');
|
|
81
|
+
export const isProjectSchemaJSONV3_59_0 = createVersionPredicate('3.59.0');
|
|
82
|
+
export const isProjectSchemaJSONV3_60_0 = createVersionPredicate('3.60.0');
|
|
83
|
+
export const isProjectSchemaJSONV3_61_0 = createVersionPredicate('3.61.0');
|
|
84
|
+
export const isProjectSchemaJSONV3_62_0 = createVersionPredicate('3.62.0');
|
|
85
|
+
export const isProjectSchemaJSONV3_63_0 = createVersionPredicate('3.63.0');
|
|
86
|
+
export const isProjectSchemaJSONV3_64_0 = createVersionPredicate('3.64.0');
|
|
87
|
+
export const isProjectSchemaJSONV3_65_0 = createVersionPredicate('3.65.0');
|
|
88
|
+
export const isLatestProjectSchemaJSON = createVersionPredicate('3.65.0');
|
|
89
|
+
export const isProjectSchemaJSONV4_0_0 = createVersionPredicate('4.0.0');
|