- Add missing GraphQL mutations: retryJob, updateAsset, deleteAsset - Add UpdateAssetRequest and DeleteResult to schema source of truth - Move Lambda callback endpoint to main.py (only REST endpoint) - Remove REST routes, pydantic schemas, and deps - Remove pydantic target from modelgen.json - Update architecture diagrams and documentation
26 lines
555 B
JSON
26 lines
555 B
JSON
{
|
|
"schema": "schema/models",
|
|
"targets": [
|
|
{
|
|
"target": "django",
|
|
"output": "mpr/media_assets/models.py",
|
|
"include": ["dataclasses", "enums"]
|
|
},
|
|
{
|
|
"target": "graphene",
|
|
"output": "api/schema/graphql.py",
|
|
"include": ["dataclasses", "enums", "api"]
|
|
},
|
|
{
|
|
"target": "typescript",
|
|
"output": "ui/timeline/src/types.ts",
|
|
"include": ["dataclasses", "enums", "api"]
|
|
},
|
|
{
|
|
"target": "protobuf",
|
|
"output": "rpc/protos/worker.proto",
|
|
"include": ["grpc"]
|
|
}
|
|
]
|
|
}
|