fix(deps): upgrade core tooling dependencies and adapt Docker client internals for compatibility

This commit is contained in:
2026-03-28 05:39:48 +00:00
parent 1923837225
commit 645e1fd4a9
19 changed files with 5861 additions and 7164 deletions

View File

@@ -72,12 +72,12 @@ export class DockerSecret extends DockerResource {
}
// INSTANCE PROPERTIES
public ID: string;
public Spec: {
public ID!: string;
public Spec!: {
Name: string;
Labels: interfaces.TLabels;
};
public Version: {
public Version!: {
Index: string;
};
@@ -101,7 +101,6 @@ export class DockerSecret extends DockerResource {
* Updates a secret
*/
public async update(contentArg: string) {
const route = `/secrets/${this.ID}/update?=version=${this.Version.Index}`;
const response = await this.dockerHost.request(
'POST',
`/secrets/${this.ID}/update?version=${this.Version.Index}`,