fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-18 23:43:40 +01:00
parent 18cbf8693f
commit 88351db20f
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiclient.xyz/hetznercloud',
version: '1.0.15',
version: '1.0.16',
description: 'an unofficial api client for the hetzner cloud api'
}

View File

@ -11,7 +11,7 @@ export class HetznerAccount {
return HetznerServer.getServers(this);
}
public async getServerByLabel(labelArg: string, labelObject: plugins.tsclass.typeFestOwn.SecondArgument<typeof HetznerServer.getServersByLabel>) {
public async getServersByLabel(labelArg: string, labelObject: plugins.tsclass.typeFestOwn.SecondArgument<typeof HetznerServer.getServersByLabel>) {
return HetznerServer.getServersByLabel(this, labelObject);
}