@aims-api/aims-node
Advanced tools
Comparing version 0.0.25 to 0.0.26
# @aims-api/aims-node | ||
## 0.0.26 | ||
### Patch Changes | ||
- 692af28: add artists popularity and featuring | ||
## 0.0.25 | ||
@@ -4,0 +10,0 @@ |
@@ -26,2 +26,4 @@ import { AxiosInstance } from 'axios'; | ||
on_tour: z.ZodNullable<z.ZodBoolean>; | ||
popularity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>; | ||
featuring: z.ZodOptional<z.ZodNullable<z.ZodAny>>; | ||
}, "strip", z.ZodTypeAny, { | ||
@@ -44,2 +46,4 @@ owner: string | null; | ||
socials?: any; | ||
popularity?: number | null | undefined; | ||
featuring?: any; | ||
}, { | ||
@@ -62,2 +66,4 @@ owner: string | null; | ||
socials?: any; | ||
popularity?: number | null | undefined; | ||
featuring?: any; | ||
}>, "many">>; | ||
@@ -137,2 +143,4 @@ albums: z.ZodOptional<z.ZodArray<z.ZodObject<{ | ||
socials?: any; | ||
popularity?: number | null | undefined; | ||
featuring?: any; | ||
}[] | undefined; | ||
@@ -176,2 +184,4 @@ albums?: { | ||
socials?: any; | ||
popularity?: number | null | undefined; | ||
featuring?: any; | ||
}[] | undefined; | ||
@@ -457,2 +467,4 @@ albums?: { | ||
socials?: any; | ||
popularity?: number | null | undefined; | ||
featuring?: any; | ||
}[] | undefined; | ||
@@ -551,2 +563,4 @@ albums?: { | ||
socials?: any; | ||
popularity?: number | null | undefined; | ||
featuring?: any; | ||
}[] | undefined; | ||
@@ -553,0 +567,0 @@ albums?: { |
@@ -79,2 +79,4 @@ "use strict"; | ||
on_tour: zod_1.z.boolean().nullable(), | ||
popularity: zod_1.z.optional(zod_1.z.number().nullable()), | ||
featuring: zod_1.z.optional(zod_1.z.any().nullable()), | ||
}); | ||
@@ -81,0 +83,0 @@ const albumSchema = zod_1.z.object({ |
{ | ||
"name": "@aims-api/aims-node", | ||
"version": "0.0.25", | ||
"version": "0.0.26", | ||
"license": "UNLICENSED", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/aims-api/aims-node", |
Sorry, the diff of this file is not supported yet
365521
7410