Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions pr_body.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,11 @@

### 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
Expand All @@ -30,4 +23,4 @@
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*

Check notice on line 26 in pr_body.md

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

pr_body.md#L26

Emphasis used instead of a heading
36 changes: 27 additions & 9 deletions proxmox-virtual-environment/apidoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -65237,7 +65237,21 @@ Ext.onReady(function () {
usage += cliUsageRenderer(method, endpoint);
}

let sections = [
let sections = [];

if (info.unstable) {
sections.push({
title: 'Unstable',
html: `<div class="proxmox-warning-row" style="padding: 10px;">
<i class="fa fa-exclamation-triangle" aria-hidden="true"></i>
This API endpoint is marked as unstable. All information on this
page is subject to change, including input parameters, return values
and permissions.
</div>`,
});
}

sections.push(
{
title: 'Description',
html: Ext.htmlEncode(info.description),
Expand All @@ -65248,7 +65262,7 @@ Ext.onReady(function () {
html: usage,
bodyPadding: 10,
},
];
);

if (info.parameters && info.parameters.properties) {
let pstore = Ext.create('Ext.data.Store', {
Expand Down Expand Up @@ -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],
Expand Down Expand Up @@ -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);
Expand Down