DTO mode
create/update
Create and update share one JSON-safe envelope.
Admin widget builder
F033 freezes the create/update DTO and typed error mapping while direct persistence remains dry-run and fail-closed.
DTO mode
create/update
dryRun
TRUE
Save disabled assert
PASS
Errors
5
This freezes the request/response/error shape that future F037 can use behind a feature flag. It does not call `POST /api/admin/widget-instances` or `PATCH /api/admin/widget-instances/:id`.
{
"schemaVersion": "kline.admin-widget-config.v1",
"mode": "create",
"draft": {
"widgetType": "advanced-kline-chart",
"config": {
"widgetId": "demo-advanced-kline",
"widgetType": "advanced-kline-chart",
"publicKey": "pk_demo_local_only",
"symbol": {
"id": "BINANCE:BTCUSDT",
"ticker": "BINANCE:BTCUSDT",
"displayName": "Bitcoin / Tether",
"exchange": "BINANCE",
"provider": "binance-public-demo",
"pricePrecision": 2,
"volumePrecision": 6,
"currency": "USDT",
"timezone": "UTC"
},
"interval": "1h",
"allowedIntervals": [
"1m",
"5m",
"15m",
"30m",
"1h",
"4h",
"1d"
],
"theme": "dark",
"locale": "fa",
"features": {
"toolbar": true,
"indicators": true,
"drawings": true,
"realtime": true,
"snapshot": true,
"objectTree": true
}
},
"chartStyle": "candle",
"appliedAt": 1784097188367
},
"parentContainer": {
"width": 1180,
"minHeight": 620,
"height": 620,
"display": "block"
},
"idempotencyKey": "kline_create_am08a2",
"dryRun": true,
"requestedAt": 1784097188367
}{
"schemaVersion": "kline.admin-widget-config.v1",
"mode": "update",
"draft": {
"widgetType": "advanced-kline-chart",
"config": {
"widgetId": "demo-advanced-kline",
"widgetType": "advanced-kline-chart",
"publicKey": "pk_demo_local_only",
"symbol": {
"id": "BINANCE:BTCUSDT",
"ticker": "BINANCE:BTCUSDT",
"displayName": "Bitcoin / Tether",
"exchange": "BINANCE",
"provider": "binance-public-demo",
"pricePrecision": 2,
"volumePrecision": 6,
"currency": "USDT",
"timezone": "UTC"
},
"interval": "1h",
"allowedIntervals": [
"1m",
"5m",
"15m",
"30m",
"1h",
"4h",
"1d"
],
"theme": "dark",
"locale": "fa",
"features": {
"toolbar": true,
"indicators": true,
"drawings": true,
"realtime": true,
"snapshot": true,
"objectTree": true
}
},
"chartStyle": "candle",
"appliedAt": 1784097188367
},
"widgetInstanceId": "00000000-0000-4000-8000-000000000031",
"parentContainer": {
"width": 1180,
"minHeight": 620,
"height": 620,
"display": "block"
},
"expectedRevision": 3,
"idempotencyKey": "kline_update_47fw0n",
"dryRun": true,
"requestedAt": 1784097188367
}HTTP 401
ADMIN_UNAUTHENTICATED
HTTP 403
WIDGET_TENANT_MISMATCH
HTTP 409
WIDGET_SAVE_CONFLICT
HTTP 422
WIDGET_CONFIG_INVALID
HTTP n/a
WIDGET_SAVE_NOT_ENABLED