@mettlecast/domain-cdk-packer 0.2.12 → 0.2.13
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/registry.d.ts +5 -0
- package/package.json +1 -1
package/dist/registry.d.ts
CHANGED
|
@@ -69,6 +69,11 @@ export interface ApiRegistryEntry extends BaseRegistryEntry {
|
|
|
69
69
|
responseSchema?: SchemaSnapshot;
|
|
70
70
|
/** Per-version request/response schema snapshots. */
|
|
71
71
|
versions?: ApiVersionSnapshot[];
|
|
72
|
+
/** Example request/response payloads for documentation (no runtime impact). */
|
|
73
|
+
examples?: {
|
|
74
|
+
request?: Record<string, unknown>;
|
|
75
|
+
response?: Record<string, unknown>;
|
|
76
|
+
};
|
|
72
77
|
}
|
|
73
78
|
/**
|
|
74
79
|
* Webhook registry entry for webhook handlers.
|