lightnet 4.0.4 → 4.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # lightnet
2
2
 
3
+ ## 4.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#376](https://github.com/LightNetDev/LightNet/pull/376) [`f652369`](https://github.com/LightNetDev/LightNet/commit/f652369745ab9886f71dc1daefd8020b700eadca) Thanks [@smn-cds](https://github.com/smn-cds)! - Fix exported Language type.
8
+
3
9
  ## 4.0.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "LightNet makes it easy to run your own digital media library.",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
- "version": "4.0.4",
6
+ "version": "4.0.5",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/LightNetDev/lightnet",
@@ -235,7 +235,7 @@ export const extendedConfigSchema = configSchema.transform((config, ctx) => {
235
235
  })
236
236
 
237
237
  export type Link = z.input<typeof linkSchema>
238
- export type Language = z.output<typeof languageSchema>
238
+ export type Language = z.input<typeof languageSchema>
239
239
 
240
240
  export type LightnetConfig = z.input<typeof configSchema>
241
241
  export type ExtendedLightnetConfig = z.output<typeof extendedConfigSchema>