diff --git a/pr_body.md b/pr_body.md index 6244ba9..8a2e21c 100644 --- a/pr_body.md +++ b/pr_body.md @@ -4,18 +4,11 @@ This PR contains automated updates to the Proxmox API specifications. ### PVE API Changes -- Endpoints: 410 → 428 (+18) +- Endpoints: 428 → 428 (+0) - File sizes: - JSON: 3.2M - YAML: 2.4M -### PBS API Changes - -- Endpoints: 239 → 240 (+1) -- File sizes: - - JSON: 1.8M - - YAML: 1.3M - ### Validation Status ✅ All specifications pass OpenAPI 3.0.3 validation @@ -30,4 +23,4 @@ This PR contains automated updates to the Proxmox API specifications. 3. Merge to update the API specifications --- -*Generated automatically by GitHub Actions on 2025-12-07 02:44:32 UTC* +*Generated automatically by GitHub Actions on 2025-12-28 02:51:13 UTC* diff --git a/proxmox-virtual-environment/apidoc.js b/proxmox-virtual-environment/apidoc.js index 277fbc3..49307d0 100644 --- a/proxmox-virtual-environment/apidoc.js +++ b/proxmox-virtual-environment/apidoc.js @@ -65237,7 +65237,21 @@ Ext.onReady(function () { usage += cliUsageRenderer(method, endpoint); } - let sections = [ + let sections = []; + + if (info.unstable) { + sections.push({ + title: 'Unstable', + html: `
+ + This API endpoint is marked as unstable. All information on this + page is subject to change, including input parameters, return values + and permissions. +
`, + }); + } + + sections.push( { title: 'Description', html: Ext.htmlEncode(info.description), @@ -65248,7 +65262,7 @@ Ext.onReady(function () { html: usage, bodyPadding: 10, }, - ]; + ); if (info.parameters && info.parameters.properties) { let pstore = Ext.create('Ext.data.Store', { @@ -65420,10 +65434,12 @@ Ext.onReady(function () { xtype: 'panel', title: 'Returns: ' + rtype, items: [ - info.returns.description ? { - html: Ext.htmlEncode(info.returns.description), - bodyPadding: '5px 10px 5px 10px', - } : {}, + info.returns.description + ? { + html: Ext.htmlEncode(info.returns.description), + bodyPadding: '5px 10px 5px 10px', + } + : {}, { xtype: 'gridpanel', features: [groupingFeature], @@ -65469,12 +65485,14 @@ Ext.onReady(function () { text: 'Show RAW', handler: function (btn) { rawSection.setVisible(!rawSection.isVisible()); - btn.setText(rawSection.isVisible() ? 'Hide RAW' : 'Show RAW'); + btn.setText( + rawSection.isVisible() ? 'Hide RAW' : 'Show RAW', + ); }, }, ], - } - ] + }, + ], }); sections.push(rawSection);