@paradigma-inc/flywheel 0.1.115 → 0.1.134
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/README.md +67 -10
- package/package.json +14 -6
- package/skills/flywheel/SKILL.md +9 -6
- package/skills/flywheel/example-workflows/organizing-exploring-and-iterating-on-a-research-topic.md +38 -46
- package/skills/flywheel/example-workflows/reproducing-papers-on-a-budget.md +34 -36
- package/skills/flywheel/getting-started/flywheel-quickstart.md +2 -5
- package/skills/flywheel/references/INTERFACES.md +2 -2
- package/skills/flywheel/references/experiment-design-protocol.md +32 -25
- package/skills/flywheel/references/flywheel-cli-tool-map.md +120 -76
- package/skills/flywheel/references/flywheel-mcp-tool-map.md +42 -32
- package/skills/flywheel/setting-up-flywheel/claude-code-cli-installation.md +1 -1
- package/skills/flywheel/setting-up-flywheel/codex-cli-installation.md +1 -1
- package/skills/flywheel/setting-up-flywheel/installation-overview.md +2 -6
- package/skills/flywheel/setting-up-flywheel/other-hosts-installation.md +45 -25
- package/skills/flywheel/setting-up-flywheel/updating-flywheel-mcp.md +34 -11
- package/skills/flywheel-auto/SKILL.md +40 -23
- package/skills/flywheel-auto/evals/evals.json +1 -1
- package/skills/flywheel-auto/references/INTERFACES.md +2 -2
- package/skills/flywheel-auto/references/experiment-design-protocol.md +31 -23
- package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-auto/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-lookahead/SKILL.md +47 -28
- package/skills/flywheel-lookahead/agents/openai.yaml +1 -1
- package/skills/flywheel-lookahead/evals/evals.json +6 -6
- package/skills/flywheel-lookahead/references/INTERFACES.md +2 -2
- package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-prove/SKILL.md +2 -2
- package/skills/flywheel-prove/references/workflow.md +21 -2
- package/skills/flywheel-reproduce/SKILL.md +39 -19
- package/skills/flywheel-reproduce/evals/evals.json +1 -1
- package/skills/flywheel-reproduce/references/INTERFACES.md +2 -2
- package/skills/flywheel-reproduce/references/experiment-design-protocol.md +31 -23
- package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-to-graph/SKILL.md +37 -17
- package/skills/flywheel-to-graph/references/INTERFACES.md +2 -2
- package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-tree/references/workflow.md +6 -37
- package/src/cli.mjs +1145 -1141
- package/src/mcp-writer.mjs +413 -435
- package/src/public-command-metadata.mjs +28 -5
- package/src/runtime/delegate.mjs +2 -19
- package/src/runtime/required-runtime-commands.json +80 -28
- package/src/runtime/runtime-config.mjs +39 -60
- package/src/runtime/vendor/flywheel-cli-dist/auth/credentials.js +330 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/credentials.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js +90 -139
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.js +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/secure-write.js +116 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/secure-write.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js +248 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js +65 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-revoke-api-key.js +17 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-revoke-api-key.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.js +3 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-clear.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-clear.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-set.js +29 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.js +46 -10
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.js +17 -40
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-resources.js +305 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-resources.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-support.js +72 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-support.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation.js +286 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-metadata.js +30 -5
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-metadata.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.js +27 -12
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-commit-replay.js +284 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-commit-replay.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-graph.js +169 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-graph.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-lineage-list.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-lineage-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-repository-snapshot.js +227 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-repository-snapshot.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js +21 -51
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/node-create-schema.js +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/node-create-schema.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.js +11 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.js +38 -45
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.js +14 -17
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.js +13 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.js +34 -3
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.js +9 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/hosted.js +76 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/hosted.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.js +4 -138
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.js +8 -13
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/repository.js +362 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/repository.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js +45 -183
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-edit.js +47 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-edit.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-operation.js +181 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-operation.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-output.js +163 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-output.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-projection.js +79 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-projection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-selection.js +80 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-selection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/retired-command-names.js +78 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/retired-command-names.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/usage-spec.js +3 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/usage-spec.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/config/index.js +5 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/index.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/io.js +139 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/io.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/migration.js +299 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/migration.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/model.js +214 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/model.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/path.js +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/path.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/credential-output.js +29 -0
- package/src/runtime/vendor/flywheel-cli-dist/credential-output.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/errors.js +1 -16
- package/src/runtime/vendor/flywheel-cli-dist/errors.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.js +3 -3
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.js +19 -9
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.js +33 -4
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js +322 -304
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.js +1 -21
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.js +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/adapter.js +244 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/adapter.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/errors.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/errors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/history.js +35 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/history.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/invariants.js +42 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/invariants.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/artifact-properties.js +179 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/artifact-properties.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/commits.js +152 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/commits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/constants.js +71 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/constants.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/encoding.js +73 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/encoding.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/imported-artifact-properties.js +82 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/imported-artifact-properties.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/operations.js +345 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/operations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/tags.js +57 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/tags.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/conflicts.js +149 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/conflicts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/context.js +115 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/context.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/keys.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/keys.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/pull.js +159 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/pull.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/replay.js +346 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/replay.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/resolve.js +37 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/resolve.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/inverses.js +203 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/inverses.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/plan.js +207 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/plan.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/tag-inverses.js +109 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/tag-inverses.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/commit.js +61 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/commit.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/projection.js +46 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/projection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/revert.js +203 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/revert.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/staging.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/staging.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/writes.js +188 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/writes.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/cursors.js +54 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/cursors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/local-pull.js +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/local-pull.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync-models.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync-models.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/native.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/native.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/state.js +129 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/state.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/writer-lock.js +277 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/writer-lock.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/bootstrap.js +183 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/bootstrap.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/context.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/context.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/dispatch.js +121 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/dispatch.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/doctor.js +16 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/doctor.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/identity.js +72 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/identity.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/conflicts.js +59 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/conflicts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/core.js +125 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/core.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/history.js +129 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/history.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/index.js +31 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/index.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/maintenance.js +49 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/maintenance.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/projections.js +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/projections.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/shared.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/shared.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/platform.js +18 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/platform.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/projection.js +125 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/projection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/clone.js +37 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/clone.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/pull.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/pull.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/purge.js +58 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/purge.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/push.js +118 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/push.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/transport.js +277 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/transport.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/apply.js +132 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/apply.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/archive.js +372 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/archive.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/backup.js +210 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/backup.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/restore.js +278 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/restore.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/retained-directory.js +192 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/retained-directory.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/commits.js +114 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/commits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/contract.js +65 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/contract.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics-worker.js +145 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics-worker.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics.js +218 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/gc.js +71 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/gc.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/history-validation.js +298 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/history-validation.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/latest-values.js +121 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/latest-values.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrate.js +69 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrate.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/provenance.js +49 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/provenance.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/steps.js +424 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/steps.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/versions.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/versions.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/001_initial.sql +319 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/002_staged_latest_values.sql +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/003_remove_cli_editing_lease.sql +21 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/004_hosted_association.sql +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/005_artifact_properties.sql +68 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/objects.js +410 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/objects.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/apply.js +77 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/apply.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/artifacts.js +240 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/artifacts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/nodes.js +127 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/nodes.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/relations.js +107 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/relations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/rules.js +80 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/rules.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/tags.js +219 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/tags.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/hosted.js +164 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/hosted.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/read.js +20 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/read.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/replace.js +41 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/replace.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/schema.js +22 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/schema.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/validate.js +188 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/validate.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot.js +5 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/connection.js +214 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/connection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/errors.js +4 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/errors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/rows.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/rows.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/schema.js +38 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/schema.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/store.js +284 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/store.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/verify.js +133 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/verify.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync-commits.js +98 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync-commits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync.js +161 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace-state.js +97 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace-state.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace.js +69 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/main.js +651 -376
- package/src/runtime/vendor/flywheel-cli-dist/main.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/output/format.js +18 -11
- package/src/runtime/vendor/flywheel-cli-dist/output/format.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/darwin-x64/node.napi.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-arm64/node.napi.glibc.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-arm64/node.napi.musl.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/src/runtime/vendor/manifest.json +246 -257
- package/src/setup/command.mjs +5 -0
- package/src/setup/io/patchers/json.mjs +1 -1
- package/src/setup/io/patchers/toml.mjs +3 -1
- package/src/setup/io/patchers/yaml.mjs +1 -1
- package/src/setup/modes/cli.mjs +76 -7
- package/src/setup/modes/mcp-command.mjs +802 -793
- package/src/setup/modes/mcp.mjs +7 -3
- package/src/setup/shared/prior-mode-detect.mjs +18 -21
- package/src/setup/test-seams.mjs +25 -0
- package/src/setup-auth.mjs +76 -10
- package/src/toml-lines.mjs +52 -0
- package/src/unified-cli.mjs +31 -16
- package/skills/flywheel-llm-proof-paper/scripts/__pycache__/check_paper.cpython-312.pyc +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/active-key-id.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/baseurl.d.ts +0 -35
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.d.ts +0 -34
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.js +0 -92
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/fingerprint.d.ts +0 -5
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.d.ts +0 -4
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js +0 -31
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.d.ts +0 -24
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.d.ts +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.js +0 -150
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.d.ts +0 -27
- package/src/runtime/vendor/flywheel-cli-dist/commands/_admin-auth.d.ts +0 -27
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.d.ts +0 -32
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.js +0 -213
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.d.ts +0 -35
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/_secret-param.d.ts +0 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-file-out.d.ts +0 -39
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-writer.d.ts +0 -34
- package/src/runtime/vendor/flywheel-cli-dist/commands/_wait-polling.d.ts +0 -50
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-detach.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-add.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-remove.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-set-primary.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-preview.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-proof.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-compute-policy-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-compute-policy-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-graphs-export-stream.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-graphs-export.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-graphs-list.d.ts +0 -4
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-nodes-audit-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.d.ts +0 -13
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-list.d.ts +0 -18
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-rotate.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-expire.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-heartbeat.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.js +0 -22
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.js +0 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.js +0 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.js +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.js +0 -5
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.js +0 -30
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-mode.d.ts +0 -4
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/blobs-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-revoke.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-snapshot.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-acquire.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-budgets.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-connection.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-funding.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-request-approval.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-options.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release-all.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-status.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-balance.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-billing-portal.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-purchase.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral-claim.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscribe.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscription.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-transactions.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-usage.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/destructive-confirmation.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/enums.d.ts +0 -22
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.d.ts +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-launch.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-terminate.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-history.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-subgraph.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-pdf.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-render-pdf.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-stream.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/feedback-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/files-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-disconnect.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-link.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-refresh-repos.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-status.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/handler-factory.d.ts +0 -22
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-format.d.ts +0 -31
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-metadata.d.ts +0 -36
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.d.ts +0 -17
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-delete.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-runs-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-delete.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-set-enabled.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/import-subgraph.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.d.ts +0 -23
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-remove.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-status.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-remove.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/machines-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.js +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.js +0 -10
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.js +0 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.js +0 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.js +0 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.js +0 -16
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.js +0 -11
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-files.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.js +0 -33
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.js +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-ancestry.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-summary.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-tree.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-resolve-slug.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-get.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set-bulk.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-summaries.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-acquire.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-heartbeat.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-release.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/account.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.d.ts +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/api-keys.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/approval.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js +0 -140
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/budgets.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/compute.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/credits.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/env.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/executions.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/export.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/github.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/hooks.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/integrations.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/resources.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/sharing.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.js +0 -98
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/updates.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.d.ts +0 -27
- package/src/runtime/vendor/flywheel-cli-dist/commands/remote-artifacts-refresh.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/remote-artifacts-resolve.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.js +0 -25
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.js +0 -25
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.js +0 -11
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.js +0 -28
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.d.ts +0 -30
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide-all-active.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/usage-spec.d.ts +0 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.d.ts +0 -11
- package/src/runtime/vendor/flywheel-cli-dist/errors.d.ts +0 -86
- package/src/runtime/vendor/flywheel-cli-dist/exit-codes.d.ts +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/generatedFeedbackContract.d.ts +0 -41
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.d.ts +0 -13
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.d.ts +0 -26
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.d.ts +0 -17
- package/src/runtime/vendor/flywheel-cli-dist/http/client.d.ts +0 -91
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.d.ts +0 -5
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.d.ts +0 -18
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.d.ts +0 -30
- package/src/runtime/vendor/flywheel-cli-dist/main.d.ts +0 -33
- package/src/runtime/vendor/flywheel-cli-dist/output/format.d.ts +0 -9
- package/src/runtime/vendor/flywheel-cli-dist/runtime-entry.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/version.d.ts +0 -3
- package/src/secure-write.mjs +0 -43
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
PRAGMA foreign_keys = ON;
|
|
2
|
+
PRAGMA application_id = 0x46574442;
|
|
3
|
+
PRAGMA user_version = 5;
|
|
4
|
+
|
|
5
|
+
CREATE TABLE repository_metadata (
|
|
6
|
+
repository_id TEXT PRIMARY KEY NOT NULL,
|
|
7
|
+
client_id TEXT NOT NULL,
|
|
8
|
+
format_id TEXT NOT NULL CHECK (format_id = 'flywheel.repository.v1'),
|
|
9
|
+
created_at TEXT NOT NULL
|
|
10
|
+
);
|
|
11
|
+
|
|
12
|
+
CREATE TABLE repository_commits (
|
|
13
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
14
|
+
commit_id TEXT NOT NULL CHECK (length(commit_id) = 71 AND substr(commit_id, 1, 7) = 'sha256:' AND substr(commit_id, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
15
|
+
canonical_bytes BLOB NOT NULL,
|
|
16
|
+
latest_values_bytes BLOB NOT NULL DEFAULT X'5b5d',
|
|
17
|
+
committed_at TEXT NOT NULL,
|
|
18
|
+
PRIMARY KEY (repository_id, commit_id)
|
|
19
|
+
);
|
|
20
|
+
CREATE INDEX ix_repository_commits_repository_committed_at ON repository_commits (repository_id, committed_at, commit_id);
|
|
21
|
+
|
|
22
|
+
CREATE TABLE repository_commit_parents (
|
|
23
|
+
repository_id TEXT NOT NULL,
|
|
24
|
+
commit_id TEXT NOT NULL,
|
|
25
|
+
parent_commit_id TEXT NOT NULL,
|
|
26
|
+
parent_position INTEGER NOT NULL CHECK (parent_position >= 0),
|
|
27
|
+
PRIMARY KEY (repository_id, commit_id, parent_commit_id),
|
|
28
|
+
UNIQUE (repository_id, commit_id, parent_position),
|
|
29
|
+
FOREIGN KEY (repository_id, commit_id) REFERENCES repository_commits(repository_id, commit_id),
|
|
30
|
+
FOREIGN KEY (repository_id, parent_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
CREATE TABLE repository_operations (
|
|
34
|
+
repository_id TEXT NOT NULL,
|
|
35
|
+
commit_id TEXT NOT NULL,
|
|
36
|
+
operation_id TEXT NOT NULL,
|
|
37
|
+
operation_position INTEGER NOT NULL CHECK (operation_position >= 0),
|
|
38
|
+
canonical_bytes BLOB NOT NULL,
|
|
39
|
+
PRIMARY KEY (repository_id, operation_id),
|
|
40
|
+
UNIQUE (repository_id, commit_id, operation_position),
|
|
41
|
+
FOREIGN KEY (repository_id, commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
42
|
+
);
|
|
43
|
+
CREATE INDEX ix_repository_operations_repository_commit_position ON repository_operations (repository_id, commit_id, operation_position);
|
|
44
|
+
|
|
45
|
+
CREATE TABLE repository_nodes (
|
|
46
|
+
repository_id TEXT NOT NULL,
|
|
47
|
+
node_id TEXT NOT NULL,
|
|
48
|
+
lifecycle_state TEXT NOT NULL CHECK (lifecycle_state IN ('live', 'tombstoned', 'purged')),
|
|
49
|
+
created_by_commit_id TEXT NOT NULL,
|
|
50
|
+
lifecycle_commit_id TEXT NOT NULL,
|
|
51
|
+
PRIMARY KEY (repository_id, node_id),
|
|
52
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id),
|
|
53
|
+
FOREIGN KEY (repository_id, lifecycle_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
54
|
+
);
|
|
55
|
+
CREATE INDEX ix_repository_nodes_repository_lifecycle ON repository_nodes (repository_id, lifecycle_state, node_id);
|
|
56
|
+
|
|
57
|
+
CREATE TABLE repository_node_latest_values (
|
|
58
|
+
repository_id TEXT NOT NULL,
|
|
59
|
+
node_id TEXT NOT NULL,
|
|
60
|
+
title TEXT,
|
|
61
|
+
slug_name TEXT,
|
|
62
|
+
summary TEXT,
|
|
63
|
+
content TEXT,
|
|
64
|
+
origin_host TEXT,
|
|
65
|
+
external_transcript_ref TEXT,
|
|
66
|
+
title_digest TEXT NOT NULL,
|
|
67
|
+
slug_name_digest TEXT NOT NULL,
|
|
68
|
+
summary_digest TEXT NOT NULL,
|
|
69
|
+
content_digest TEXT NOT NULL,
|
|
70
|
+
origin_host_digest TEXT NOT NULL,
|
|
71
|
+
external_transcript_ref_digest TEXT NOT NULL,
|
|
72
|
+
updated_by_commit_id TEXT NOT NULL,
|
|
73
|
+
PRIMARY KEY (repository_id, node_id),
|
|
74
|
+
FOREIGN KEY (repository_id, node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
75
|
+
FOREIGN KEY (repository_id, updated_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
CREATE TABLE repository_tag_definitions (
|
|
79
|
+
repository_id TEXT NOT NULL,
|
|
80
|
+
scope_node_id TEXT NOT NULL,
|
|
81
|
+
tag_id TEXT NOT NULL,
|
|
82
|
+
name TEXT NOT NULL,
|
|
83
|
+
bg_color TEXT NOT NULL,
|
|
84
|
+
text_color TEXT NOT NULL,
|
|
85
|
+
one_only INTEGER NOT NULL CHECK (one_only IN (0, 1)),
|
|
86
|
+
track_history INTEGER NOT NULL CHECK (track_history IN (0, 1)),
|
|
87
|
+
history_of_tag_id TEXT,
|
|
88
|
+
history_index INTEGER CHECK (history_index IS NULL OR history_index > 0),
|
|
89
|
+
history_next_index INTEGER NOT NULL CHECK (history_next_index > 0),
|
|
90
|
+
state TEXT NOT NULL CHECK (state IN ('active', 'retired')),
|
|
91
|
+
updated_by_commit_id TEXT NOT NULL,
|
|
92
|
+
PRIMARY KEY (repository_id, scope_node_id, tag_id),
|
|
93
|
+
CHECK (track_history = 0 OR one_only = 1),
|
|
94
|
+
FOREIGN KEY (repository_id, scope_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
95
|
+
FOREIGN KEY (repository_id, updated_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
96
|
+
);
|
|
97
|
+
|
|
98
|
+
CREATE TABLE repository_tag_assignments (
|
|
99
|
+
repository_id TEXT NOT NULL,
|
|
100
|
+
scope_node_id TEXT NOT NULL,
|
|
101
|
+
tag_id TEXT NOT NULL,
|
|
102
|
+
node_id TEXT NOT NULL,
|
|
103
|
+
assigned_by_commit_id TEXT NOT NULL,
|
|
104
|
+
PRIMARY KEY (repository_id, scope_node_id, tag_id, node_id),
|
|
105
|
+
FOREIGN KEY (repository_id, scope_node_id, tag_id) REFERENCES repository_tag_definitions(repository_id, scope_node_id, tag_id),
|
|
106
|
+
FOREIGN KEY (repository_id, node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
107
|
+
FOREIGN KEY (repository_id, assigned_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
108
|
+
);
|
|
109
|
+
CREATE INDEX ix_repository_tag_assignments_repository_node ON repository_tag_assignments (repository_id, node_id, tag_id);
|
|
110
|
+
|
|
111
|
+
CREATE TABLE repository_tag_history (
|
|
112
|
+
repository_id TEXT NOT NULL,
|
|
113
|
+
scope_node_id TEXT NOT NULL,
|
|
114
|
+
base_tag_id TEXT NOT NULL,
|
|
115
|
+
history_index INTEGER NOT NULL CHECK (history_index > 0),
|
|
116
|
+
history_tag_id TEXT NOT NULL,
|
|
117
|
+
previous_node_id TEXT NOT NULL,
|
|
118
|
+
superseded_by_node_id TEXT NOT NULL,
|
|
119
|
+
superseded_at TEXT NOT NULL,
|
|
120
|
+
reverted_by_operation_id TEXT,
|
|
121
|
+
PRIMARY KEY (repository_id, scope_node_id, base_tag_id, history_index),
|
|
122
|
+
UNIQUE (repository_id, history_tag_id),
|
|
123
|
+
CHECK (previous_node_id <> superseded_by_node_id),
|
|
124
|
+
FOREIGN KEY (repository_id, scope_node_id, base_tag_id) REFERENCES repository_tag_definitions(repository_id, scope_node_id, tag_id),
|
|
125
|
+
FOREIGN KEY (repository_id, previous_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
126
|
+
FOREIGN KEY (repository_id, superseded_by_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
127
|
+
FOREIGN KEY (repository_id, reverted_by_operation_id) REFERENCES repository_operations(repository_id, operation_id)
|
|
128
|
+
);
|
|
129
|
+
CREATE INDEX ix_repository_tag_history_repository_base_index ON repository_tag_history (repository_id, base_tag_id, history_index);
|
|
130
|
+
|
|
131
|
+
CREATE TABLE repository_artifacts (
|
|
132
|
+
repository_id TEXT NOT NULL,
|
|
133
|
+
artifact_id TEXT NOT NULL,
|
|
134
|
+
object_digest TEXT NOT NULL CHECK (length(object_digest) = 71 AND substr(object_digest, 1, 7) = 'sha256:' AND substr(object_digest, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
135
|
+
properties TEXT NOT NULL,
|
|
136
|
+
properties_digest TEXT NOT NULL CHECK (length(properties_digest) = 71 AND substr(properties_digest, 1, 7) = 'sha256:' AND substr(properties_digest, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
137
|
+
created_by_commit_id TEXT NOT NULL,
|
|
138
|
+
PRIMARY KEY (repository_id, artifact_id),
|
|
139
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
140
|
+
);
|
|
141
|
+
|
|
142
|
+
CREATE TABLE repository_artifact_references (
|
|
143
|
+
repository_id TEXT NOT NULL,
|
|
144
|
+
artifact_id TEXT NOT NULL,
|
|
145
|
+
owner_kind TEXT NOT NULL CHECK (owner_kind IN ('node', 'edge')),
|
|
146
|
+
owner_id TEXT NOT NULL,
|
|
147
|
+
node_owner_id TEXT,
|
|
148
|
+
edge_owner_id TEXT,
|
|
149
|
+
reference_order INTEGER NOT NULL CHECK (reference_order >= 0),
|
|
150
|
+
attached_by_commit_id TEXT NOT NULL,
|
|
151
|
+
PRIMARY KEY (repository_id, artifact_id, owner_kind, owner_id),
|
|
152
|
+
CHECK (
|
|
153
|
+
(owner_kind = 'node' AND node_owner_id IS NOT NULL AND owner_id = node_owner_id AND edge_owner_id IS NULL)
|
|
154
|
+
OR (owner_kind = 'edge' AND edge_owner_id IS NOT NULL AND owner_id = edge_owner_id AND node_owner_id IS NULL)
|
|
155
|
+
),
|
|
156
|
+
FOREIGN KEY (repository_id, artifact_id) REFERENCES repository_artifacts(repository_id, artifact_id),
|
|
157
|
+
FOREIGN KEY (repository_id, node_owner_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
158
|
+
FOREIGN KEY (repository_id, edge_owner_id) REFERENCES repository_semantic_edges(repository_id, edge_id),
|
|
159
|
+
FOREIGN KEY (repository_id, attached_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
160
|
+
);
|
|
161
|
+
CREATE INDEX ix_repository_artifact_references_repository_owner ON repository_artifact_references (repository_id, owner_kind, owner_id, reference_order, artifact_id);
|
|
162
|
+
|
|
163
|
+
CREATE TABLE repository_object_manifests (
|
|
164
|
+
repository_id TEXT NOT NULL,
|
|
165
|
+
manifest_digest TEXT NOT NULL,
|
|
166
|
+
object_digest TEXT NOT NULL CHECK (length(object_digest) = 71 AND substr(object_digest, 1, 7) = 'sha256:' AND substr(object_digest, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
167
|
+
object_size INTEGER NOT NULL CHECK (object_size >= 0 AND object_size <= 10485760),
|
|
168
|
+
state TEXT NOT NULL CHECK (state IN ('local', 'remote_only', 'durable', 'reclaimable')),
|
|
169
|
+
PRIMARY KEY (repository_id, manifest_digest, object_digest),
|
|
170
|
+
FOREIGN KEY (repository_id) REFERENCES repository_metadata(repository_id)
|
|
171
|
+
);
|
|
172
|
+
|
|
173
|
+
CREATE TABLE repository_heads (
|
|
174
|
+
repository_id TEXT PRIMARY KEY NOT NULL REFERENCES repository_metadata(repository_id),
|
|
175
|
+
workspace_head_commit_id TEXT,
|
|
176
|
+
remote_tracking_commit_id TEXT,
|
|
177
|
+
updated_at TEXT NOT NULL,
|
|
178
|
+
FOREIGN KEY (repository_id, workspace_head_commit_id) REFERENCES repository_commits(repository_id, commit_id),
|
|
179
|
+
FOREIGN KEY (repository_id, remote_tracking_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
180
|
+
);
|
|
181
|
+
|
|
182
|
+
CREATE TABLE repository_hosted_associations (
|
|
183
|
+
repository_id TEXT PRIMARY KEY NOT NULL REFERENCES repository_metadata(repository_id),
|
|
184
|
+
service_url TEXT NOT NULL,
|
|
185
|
+
profile_name TEXT NOT NULL,
|
|
186
|
+
attached_at TEXT NOT NULL
|
|
187
|
+
);
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
CREATE TABLE repository_staging (
|
|
191
|
+
repository_id TEXT PRIMARY KEY NOT NULL REFERENCES repository_metadata(repository_id),
|
|
192
|
+
state TEXT NOT NULL CHECK (state IN ('open', 'prepared', 'aborted')),
|
|
193
|
+
staging_digest TEXT NOT NULL,
|
|
194
|
+
operations_bytes BLOB NOT NULL,
|
|
195
|
+
latest_values_bytes BLOB NOT NULL,
|
|
196
|
+
updated_at TEXT NOT NULL
|
|
197
|
+
);
|
|
198
|
+
|
|
199
|
+
CREATE TABLE repository_conflicts (
|
|
200
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
201
|
+
conflict_id TEXT NOT NULL,
|
|
202
|
+
rebase_id TEXT NOT NULL,
|
|
203
|
+
state TEXT NOT NULL CHECK (state IN ('open', 'resolved', 'aborted')),
|
|
204
|
+
canonical_bytes BLOB NOT NULL,
|
|
205
|
+
PRIMARY KEY (repository_id, conflict_id),
|
|
206
|
+
FOREIGN KEY (repository_id, rebase_id)
|
|
207
|
+
REFERENCES repository_rebase_state(repository_id, rebase_id)
|
|
208
|
+
);
|
|
209
|
+
|
|
210
|
+
CREATE TABLE repository_rebase_state (
|
|
211
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
212
|
+
rebase_id TEXT NOT NULL,
|
|
213
|
+
state TEXT NOT NULL CHECK (state IN ('open', 'resolving', 'continued', 'aborted')),
|
|
214
|
+
base_commit_id TEXT NOT NULL,
|
|
215
|
+
pending_resolution_digest TEXT,
|
|
216
|
+
PRIMARY KEY (repository_id, rebase_id),
|
|
217
|
+
FOREIGN KEY (repository_id, base_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
218
|
+
);
|
|
219
|
+
|
|
220
|
+
CREATE TABLE repository_sync_state (
|
|
221
|
+
repository_id TEXT PRIMARY KEY NOT NULL REFERENCES repository_metadata(repository_id),
|
|
222
|
+
remote_tracking_commit_id TEXT,
|
|
223
|
+
last_published_sequence INTEGER NOT NULL CHECK (last_published_sequence >= 0),
|
|
224
|
+
last_sync_manifest_digest TEXT,
|
|
225
|
+
object_mode TEXT NOT NULL CHECK (object_mode IN ('lazy', 'all')),
|
|
226
|
+
updated_at TEXT NOT NULL,
|
|
227
|
+
FOREIGN KEY (repository_id, remote_tracking_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
228
|
+
);
|
|
229
|
+
CREATE INDEX ix_repository_sync_state_repository_sequence ON repository_sync_state (repository_id, last_published_sequence);
|
|
230
|
+
|
|
231
|
+
CREATE TABLE repository_object_availability (
|
|
232
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
233
|
+
digest TEXT NOT NULL CHECK (length(digest) = 71 AND substr(digest, 1, 7) = 'sha256:' AND substr(digest, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
234
|
+
availability TEXT NOT NULL CHECK (availability IN ('local', 'remote_only')),
|
|
235
|
+
PRIMARY KEY (repository_id, digest)
|
|
236
|
+
);
|
|
237
|
+
|
|
238
|
+
CREATE TABLE repository_projection_checkpoints (
|
|
239
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
240
|
+
projection_name TEXT NOT NULL,
|
|
241
|
+
at_commit_id TEXT NOT NULL,
|
|
242
|
+
projection_digest TEXT NOT NULL,
|
|
243
|
+
PRIMARY KEY (repository_id, projection_name),
|
|
244
|
+
FOREIGN KEY (repository_id, at_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
245
|
+
);
|
|
246
|
+
|
|
247
|
+
CREATE TABLE repository_lineage (
|
|
248
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
249
|
+
parent_node_id TEXT NOT NULL,
|
|
250
|
+
child_node_id TEXT NOT NULL,
|
|
251
|
+
created_by_commit_id TEXT NOT NULL,
|
|
252
|
+
PRIMARY KEY (repository_id, parent_node_id, child_node_id),
|
|
253
|
+
CHECK (parent_node_id <> child_node_id),
|
|
254
|
+
FOREIGN KEY (repository_id, parent_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
255
|
+
FOREIGN KEY (repository_id, child_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
256
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
257
|
+
);
|
|
258
|
+
CREATE INDEX ix_repository_lineage_repository_child ON repository_lineage (repository_id, child_node_id, parent_node_id);
|
|
259
|
+
|
|
260
|
+
CREATE TABLE repository_containments (
|
|
261
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
262
|
+
containment_id TEXT NOT NULL,
|
|
263
|
+
container_node_id TEXT NOT NULL,
|
|
264
|
+
child_node_id TEXT NOT NULL,
|
|
265
|
+
relation_digest TEXT NOT NULL,
|
|
266
|
+
ordinal INTEGER CHECK (ordinal >= 0),
|
|
267
|
+
source_artifact_id TEXT,
|
|
268
|
+
created_by_commit_id TEXT NOT NULL,
|
|
269
|
+
PRIMARY KEY (repository_id, containment_id),
|
|
270
|
+
UNIQUE (repository_id, child_node_id),
|
|
271
|
+
CHECK (container_node_id <> child_node_id),
|
|
272
|
+
FOREIGN KEY (repository_id, container_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
273
|
+
FOREIGN KEY (repository_id, child_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
274
|
+
FOREIGN KEY (repository_id, source_artifact_id) REFERENCES repository_artifacts(repository_id, artifact_id),
|
|
275
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
276
|
+
);
|
|
277
|
+
CREATE INDEX ix_repository_containments_repository_container ON repository_containments (repository_id, container_node_id, containment_id);
|
|
278
|
+
|
|
279
|
+
CREATE TABLE repository_semantic_edges (
|
|
280
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
281
|
+
edge_id TEXT NOT NULL,
|
|
282
|
+
graph_node_id TEXT NOT NULL,
|
|
283
|
+
source_node_id TEXT NOT NULL,
|
|
284
|
+
target_node_id TEXT NOT NULL,
|
|
285
|
+
relation_digest TEXT NOT NULL,
|
|
286
|
+
content TEXT,
|
|
287
|
+
content_digest TEXT NOT NULL,
|
|
288
|
+
created_by_commit_id TEXT NOT NULL,
|
|
289
|
+
updated_by_commit_id TEXT NOT NULL,
|
|
290
|
+
PRIMARY KEY (repository_id, edge_id),
|
|
291
|
+
CHECK (source_node_id <> target_node_id),
|
|
292
|
+
FOREIGN KEY (repository_id, graph_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
293
|
+
FOREIGN KEY (repository_id, source_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
294
|
+
FOREIGN KEY (repository_id, target_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
295
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id),
|
|
296
|
+
FOREIGN KEY (repository_id, updated_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
297
|
+
);
|
|
298
|
+
CREATE INDEX ix_repository_semantic_edges_repository_graph ON repository_semantic_edges (repository_id, graph_node_id, edge_id);
|
|
299
|
+
|
|
300
|
+
CREATE TABLE repository_abandoned_commits (
|
|
301
|
+
repository_id TEXT NOT NULL,
|
|
302
|
+
commit_id TEXT NOT NULL,
|
|
303
|
+
abandoned_at TEXT NOT NULL,
|
|
304
|
+
retention_reason TEXT NOT NULL,
|
|
305
|
+
PRIMARY KEY (repository_id, commit_id),
|
|
306
|
+
FOREIGN KEY (repository_id, commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
307
|
+
);
|
|
308
|
+
|
|
309
|
+
CREATE TABLE repository_gc_roots (
|
|
310
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
311
|
+
root_kind TEXT NOT NULL CHECK (root_kind IN ('latest_value', 'artifact_reference', 'artifact_history', 'staging', 'unpublished_commit', 'abandoned_commit', 'conflict', 'pending_upload', 'pending_download', 'remote_tracking_sync', 'tombstone', 'backup_manifest', 'clone_manifest', 'pull_manifest')),
|
|
312
|
+
root_id TEXT NOT NULL,
|
|
313
|
+
digest TEXT NOT NULL,
|
|
314
|
+
|
|
315
|
+
PRIMARY KEY (repository_id, root_kind, root_id, digest)
|
|
316
|
+
);
|
|
317
|
+
CREATE INDEX ix_repository_gc_roots_repository_digest ON repository_gc_roots (repository_id, digest);
|
|
318
|
+
|
|
319
|
+
PRAGMA user_version = 5;
|
package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/002_staged_latest_values.sql
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
ALTER TABLE repository_staging
|
|
2
|
+
ADD COLUMN latest_values_bytes BLOB NOT NULL DEFAULT X'5b5d';
|
|
3
|
+
ALTER TABLE repository_sync_state
|
|
4
|
+
ADD COLUMN object_mode TEXT NOT NULL DEFAULT 'lazy'
|
|
5
|
+
CHECK (object_mode IN ('lazy', 'all'));
|
|
6
|
+
ALTER TABLE repository_commits
|
|
7
|
+
ADD COLUMN latest_values_bytes BLOB NOT NULL DEFAULT X'5b5d';
|
|
8
|
+
PRAGMA user_version = 2;
|
package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/003_remove_cli_editing_lease.sql
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
DROP TABLE IF EXISTS repository_editing_leases;
|
|
2
|
+
|
|
3
|
+
CREATE TABLE repository_staging_v3 (
|
|
4
|
+
repository_id TEXT PRIMARY KEY NOT NULL REFERENCES repository_metadata(repository_id),
|
|
5
|
+
state TEXT NOT NULL CHECK (state IN ('open', 'prepared', 'aborted')),
|
|
6
|
+
staging_digest TEXT NOT NULL,
|
|
7
|
+
operations_bytes BLOB NOT NULL,
|
|
8
|
+
latest_values_bytes BLOB NOT NULL,
|
|
9
|
+
updated_at TEXT NOT NULL
|
|
10
|
+
);
|
|
11
|
+
|
|
12
|
+
INSERT INTO repository_staging_v3 (
|
|
13
|
+
repository_id, state, staging_digest, operations_bytes, latest_values_bytes, updated_at
|
|
14
|
+
)
|
|
15
|
+
SELECT repository_id, state, staging_digest, operations_bytes, latest_values_bytes, updated_at
|
|
16
|
+
FROM repository_staging;
|
|
17
|
+
|
|
18
|
+
DROP TABLE repository_staging;
|
|
19
|
+
ALTER TABLE repository_staging_v3 RENAME TO repository_staging;
|
|
20
|
+
|
|
21
|
+
PRAGMA user_version = 3;
|
package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/005_artifact_properties.sql
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
CREATE TABLE repository_artifacts_v5 (
|
|
2
|
+
repository_id TEXT NOT NULL,
|
|
3
|
+
artifact_id TEXT NOT NULL,
|
|
4
|
+
object_digest TEXT NOT NULL CHECK (length(object_digest) = 71 AND substr(object_digest, 1, 7) = 'sha256:' AND substr(object_digest, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
5
|
+
properties TEXT NOT NULL,
|
|
6
|
+
properties_digest TEXT NOT NULL CHECK (length(properties_digest) = 71 AND substr(properties_digest, 1, 7) = 'sha256:' AND substr(properties_digest, 8) NOT GLOB '*[^0-9a-f]*'),
|
|
7
|
+
created_by_commit_id TEXT NOT NULL,
|
|
8
|
+
PRIMARY KEY (repository_id, artifact_id),
|
|
9
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
10
|
+
);
|
|
11
|
+
CREATE TABLE repository_artifact_references_v5 (
|
|
12
|
+
repository_id TEXT NOT NULL,
|
|
13
|
+
artifact_id TEXT NOT NULL,
|
|
14
|
+
owner_kind TEXT NOT NULL CHECK (owner_kind IN ('node', 'edge')),
|
|
15
|
+
owner_id TEXT NOT NULL,
|
|
16
|
+
node_owner_id TEXT,
|
|
17
|
+
edge_owner_id TEXT,
|
|
18
|
+
reference_order INTEGER NOT NULL CHECK (reference_order >= 0),
|
|
19
|
+
attached_by_commit_id TEXT NOT NULL,
|
|
20
|
+
PRIMARY KEY (repository_id, artifact_id, owner_kind, owner_id),
|
|
21
|
+
CHECK ((owner_kind = 'node' AND node_owner_id IS NOT NULL AND owner_id = node_owner_id AND edge_owner_id IS NULL) OR (owner_kind = 'edge' AND edge_owner_id IS NOT NULL AND owner_id = edge_owner_id AND node_owner_id IS NULL)),
|
|
22
|
+
FOREIGN KEY (repository_id, artifact_id) REFERENCES repository_artifacts_v5(repository_id, artifact_id),
|
|
23
|
+
FOREIGN KEY (repository_id, node_owner_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
24
|
+
FOREIGN KEY (repository_id, edge_owner_id) REFERENCES repository_semantic_edges(repository_id, edge_id),
|
|
25
|
+
FOREIGN KEY (repository_id, attached_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
26
|
+
);
|
|
27
|
+
CREATE TABLE repository_gc_roots_v5 (
|
|
28
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
29
|
+
root_kind TEXT NOT NULL CHECK (root_kind IN ('latest_value', 'artifact_reference', 'artifact_history', 'staging', 'unpublished_commit', 'abandoned_commit', 'conflict', 'pending_upload', 'pending_download', 'remote_tracking_sync', 'tombstone', 'backup_manifest', 'clone_manifest', 'pull_manifest')),
|
|
30
|
+
root_id TEXT NOT NULL,
|
|
31
|
+
digest TEXT NOT NULL,
|
|
32
|
+
PRIMARY KEY (repository_id, root_kind, root_id, digest)
|
|
33
|
+
);
|
|
34
|
+
CREATE TABLE repository_containments_v5 (
|
|
35
|
+
repository_id TEXT NOT NULL REFERENCES repository_metadata(repository_id),
|
|
36
|
+
containment_id TEXT NOT NULL,
|
|
37
|
+
container_node_id TEXT NOT NULL,
|
|
38
|
+
child_node_id TEXT NOT NULL,
|
|
39
|
+
relation_digest TEXT NOT NULL,
|
|
40
|
+
ordinal INTEGER CHECK (ordinal >= 0),
|
|
41
|
+
source_artifact_id TEXT,
|
|
42
|
+
created_by_commit_id TEXT NOT NULL,
|
|
43
|
+
PRIMARY KEY (repository_id, containment_id),
|
|
44
|
+
UNIQUE (repository_id, child_node_id),
|
|
45
|
+
CHECK (container_node_id <> child_node_id),
|
|
46
|
+
FOREIGN KEY (repository_id, container_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
47
|
+
FOREIGN KEY (repository_id, child_node_id) REFERENCES repository_nodes(repository_id, node_id),
|
|
48
|
+
FOREIGN KEY (repository_id, source_artifact_id) REFERENCES repository_artifacts_v5(repository_id, artifact_id),
|
|
49
|
+
FOREIGN KEY (repository_id, created_by_commit_id) REFERENCES repository_commits(repository_id, commit_id)
|
|
50
|
+
);
|
|
51
|
+
CREATE INDEX ix_repository_artifact_references_v5_repository_owner ON repository_artifact_references_v5 (repository_id, owner_kind, owner_id, reference_order, artifact_id);
|
|
52
|
+
CREATE INDEX ix_repository_gc_roots_v5_repository_digest ON repository_gc_roots_v5 (repository_id, digest);
|
|
53
|
+
CREATE INDEX ix_repository_containments_v5_repository_container ON repository_containments_v5 (repository_id, container_node_id, containment_id);
|
|
54
|
+
DROP TABLE repository_artifact_references;
|
|
55
|
+
DROP TABLE repository_containments;
|
|
56
|
+
DROP TABLE repository_artifacts;
|
|
57
|
+
DROP TABLE repository_gc_roots;
|
|
58
|
+
ALTER TABLE repository_artifacts_v5 RENAME TO repository_artifacts;
|
|
59
|
+
ALTER TABLE repository_artifact_references_v5 RENAME TO repository_artifact_references;
|
|
60
|
+
ALTER TABLE repository_gc_roots_v5 RENAME TO repository_gc_roots;
|
|
61
|
+
ALTER TABLE repository_containments_v5 RENAME TO repository_containments;
|
|
62
|
+
DROP INDEX ix_repository_artifact_references_v5_repository_owner;
|
|
63
|
+
DROP INDEX ix_repository_gc_roots_v5_repository_digest;
|
|
64
|
+
DROP INDEX ix_repository_containments_v5_repository_container;
|
|
65
|
+
CREATE INDEX ix_repository_artifact_references_repository_owner ON repository_artifact_references (repository_id, owner_kind, owner_id, reference_order, artifact_id);
|
|
66
|
+
CREATE INDEX ix_repository_gc_roots_repository_digest ON repository_gc_roots (repository_id, digest);
|
|
67
|
+
CREATE INDEX ix_repository_containments_repository_container ON repository_containments (repository_id, container_node_id, containment_id);
|
|
68
|
+
PRAGMA user_version = 5;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { readFileSync } from "node:fs";
|
|
2
|
+
export const migrationNames = [
|
|
3
|
+
"001_initial.sql",
|
|
4
|
+
"002_staged_latest_values.sql",
|
|
5
|
+
"003_remove_cli_editing_lease.sql",
|
|
6
|
+
"004_hosted_association.sql",
|
|
7
|
+
"005_artifact_properties.sql",
|
|
8
|
+
];
|
|
9
|
+
export function loadMigration(name) {
|
|
10
|
+
return readFileSync(new URL(`./migrations/${name}`, import.meta.url), "utf8");
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=migrations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"migrations.js","sourceRoot":"","sources":["../../../src/local/store/migrations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,iBAAiB;IACjB,8BAA8B;IAC9B,kCAAkC;IAClC,4BAA4B;IAC5B,6BAA6B;CACrB,CAAC;AAIX,MAAM,UAAU,aAAa,CAAC,IAAmB;IAC/C,OAAO,YAAY,CAAC,IAAI,GAAG,CAAC,gBAAgB,IAAI,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC;AAChF,CAAC"}
|