@jackhayes/util-types 0.0.45 → 0.0.46

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.
@@ -15,7 +15,6 @@ export declare const project: z.ZodObject<{
15
15
  createdAt: z.ZodString;
16
16
  updatedAt: z.ZodString;
17
17
  originalLanguage: z.ZodOptional<z.ZodEnum<{
18
- id: "id";
19
18
  af: "af";
20
19
  am: "am";
21
20
  ar: "ar";
@@ -38,6 +37,7 @@ export declare const project: z.ZodObject<{
38
37
  hi: "hi";
39
38
  hr: "hr";
40
39
  hu: "hu";
40
+ id: "id";
41
41
  is: "is";
42
42
  it: "it";
43
43
  ja: "ja";
@@ -45,6 +45,7 @@ export declare const project: z.ZodObject<{
45
45
  la: "la";
46
46
  lb: "lb";
47
47
  mk: "mk";
48
+ ml: "ml";
48
49
  mr: "mr";
49
50
  ms: "ms";
50
51
  mt: "mt";
@@ -372,7 +373,6 @@ export declare const projectWithCreators: z.ZodObject<{
372
373
  createdAt: z.ZodString;
373
374
  updatedAt: z.ZodString;
374
375
  originalLanguage: z.ZodOptional<z.ZodEnum<{
375
- id: "id";
376
376
  af: "af";
377
377
  am: "am";
378
378
  ar: "ar";
@@ -395,6 +395,7 @@ export declare const projectWithCreators: z.ZodObject<{
395
395
  hi: "hi";
396
396
  hr: "hr";
397
397
  hu: "hu";
398
+ id: "id";
398
399
  is: "is";
399
400
  it: "it";
400
401
  ja: "ja";
@@ -402,6 +403,7 @@ export declare const projectWithCreators: z.ZodObject<{
402
403
  la: "la";
403
404
  lb: "lb";
404
405
  mk: "mk";
406
+ ml: "ml";
405
407
  mr: "mr";
406
408
  ms: "ms";
407
409
  mt: "mt";
@@ -1,6 +1,5 @@
1
1
  import { z } from 'zod';
2
2
  export declare const languageCode: z.ZodEnum<{
3
- id: "id";
4
3
  af: "af";
5
4
  am: "am";
6
5
  ar: "ar";
@@ -23,6 +22,7 @@ export declare const languageCode: z.ZodEnum<{
23
22
  hi: "hi";
24
23
  hr: "hr";
25
24
  hu: "hu";
25
+ id: "id";
26
26
  is: "is";
27
27
  it: "it";
28
28
  ja: "ja";
@@ -30,6 +30,7 @@ export declare const languageCode: z.ZodEnum<{
30
30
  la: "la";
31
31
  lb: "lb";
32
32
  mk: "mk";
33
+ ml: "ml";
33
34
  mr: "mr";
34
35
  ms: "ms";
35
36
  mt: "mt";
@@ -30,6 +30,7 @@ export const languageCode = z.enum([
30
30
  'la', // Latin
31
31
  'lb', // Luxembourgish
32
32
  'mk', // Macedonian
33
+ 'ml', // Malayalam
33
34
  'mr', // Marathi
34
35
  'ms', // Malay
35
36
  'mt', // Maltese
@@ -84,6 +85,7 @@ export const languageNames = {
84
85
  la: 'Latin',
85
86
  lb: 'Luxembourgish',
86
87
  mk: 'Macedonian',
88
+ ml: 'Malayalam',
87
89
  mr: 'Marathi',
88
90
  ms: 'Malay',
89
91
  mt: 'Maltese',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jackhayes/util-types",
3
- "version": "0.0.45",
3
+ "version": "0.0.46",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "sideEffects": false,