feat(api-client): Add static method getImageById for Image class in api-client

This commit is contained in:
2024-11-18 19:52:15 +01:00
parent db89d86242
commit 7477704905
5 changed files with 24 additions and 2 deletions

View File

@@ -157,6 +157,9 @@ export class CloudlyApiClient {
public images = {
// Images
getImageById: async (imageIdArg: string) => {
return Image.getImageById(this, imageIdArg);
},
getImages: async () => {
return Image.getImages(this);
},