chore: regenerate models from upstream schemas #24
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "automated/regenerate-models"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Automated regeneration of extension models from upstream provider schemas.
Schema Sources
Review Notes
model/are auto-generated — review themanifest.yamldiffs for version changesf849e60de3e0e1ac8756Code Review
Blocking Issues
None.
Observations
This is a scheduled "regenerate models from upstream schemas" PR (Forgejo Actions bot commit). All changed files are under
model/— the codegen pipeline was run against updated upstream schemas; the pipeline source itself (codegen/) did not need to change because only the provider schemas changed, not the generation logic. This is the third legitimate pattern beyond the two listed in CLAUDE.md (pipeline-source change + regen, and version-bump-only). All files carry the standard auto-generated banner and follow the repo's conventions.Verified for the changed files:
.tsmodel files (// Auto-generated extension model for … Do not edit manually.) and allmanifest.yamlfiles (# Auto-generated manifest. Re-generate with the appropriate deno task.).model/aws/resiliencehubv2/:deno.lockis committed ✓;deno.jsonpins all three dependencies to exact versions (zod@4.3.6,@aws-sdk/client-cloudcontrol@3.1021.0,fast-json-patch@3.1.1) ✓; model files useexport const model = { … }(named export, no default export) ✓.anytypes: only in generated code, gated by// deno-lint-ignore-file no-explicit-any✓..replace(/[\/\\]/g, "_").replace(/\.\./g, "_").replace(/\0/g, "")) prevents path-traversal ✓.2026.06.03.1✓.Suggestions
None.