@saasmakers/shared 0.2.3 → 0.2.4

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/dist/index.d.cts CHANGED
@@ -16,6 +16,7 @@ declare const EmojiSchema: z.ZodObject<{
16
16
  character: z.ZodString;
17
17
  id: z.ZodString;
18
18
  keywords: z.ZodRecord<z.ZodEnum<{
19
+ id: "id";
19
20
  de: "de";
20
21
  en: "en";
21
22
  es: "es";
@@ -23,6 +24,11 @@ declare const EmojiSchema: z.ZodObject<{
23
24
  it: "it";
24
25
  ja: "ja";
25
26
  ko: "ko";
27
+ nl: "nl";
28
+ pl: "pl";
29
+ pt: "pt";
30
+ "pt-BR": "pt-BR";
31
+ vi: "vi";
26
32
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
27
33
  }, z.core.$strip>;
28
34
  declare const EmojiGroupSchema: z.ZodObject<{
@@ -42,6 +48,7 @@ declare const EmojiGroupSchema: z.ZodObject<{
42
48
  character: z.ZodString;
43
49
  id: z.ZodString;
44
50
  keywords: z.ZodRecord<z.ZodEnum<{
51
+ id: "id";
45
52
  de: "de";
46
53
  en: "en";
47
54
  es: "es";
@@ -49,6 +56,11 @@ declare const EmojiGroupSchema: z.ZodObject<{
49
56
  it: "it";
50
57
  ja: "ja";
51
58
  ko: "ko";
59
+ nl: "nl";
60
+ pl: "pl";
61
+ pt: "pt";
62
+ "pt-BR": "pt-BR";
63
+ vi: "vi";
52
64
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
53
65
  }, z.core.$strip>>;
54
66
  }, z.core.$strip>;
@@ -69,6 +81,7 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
69
81
  character: z.ZodString;
70
82
  id: z.ZodString;
71
83
  keywords: z.ZodRecord<z.ZodEnum<{
84
+ id: "id";
72
85
  de: "de";
73
86
  en: "en";
74
87
  es: "es";
@@ -76,6 +89,11 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
76
89
  it: "it";
77
90
  ja: "ja";
78
91
  ko: "ko";
92
+ nl: "nl";
93
+ pl: "pl";
94
+ pt: "pt";
95
+ "pt-BR": "pt-BR";
96
+ vi: "vi";
79
97
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
80
98
  }, z.core.$strip>>;
81
99
  }, z.core.$strip>;
@@ -91,6 +109,7 @@ declare const EnvironmentSchema: z.ZodEnum<{
91
109
  test: "test";
92
110
  }>;
93
111
  declare const LocaleSchema: z.ZodEnum<{
112
+ id: "id";
94
113
  de: "de";
95
114
  en: "en";
96
115
  es: "es";
@@ -98,6 +117,11 @@ declare const LocaleSchema: z.ZodEnum<{
98
117
  it: "it";
99
118
  ja: "ja";
100
119
  ko: "ko";
120
+ nl: "nl";
121
+ pl: "pl";
122
+ pt: "pt";
123
+ "pt-BR": "pt-BR";
124
+ vi: "vi";
101
125
  }>;
102
126
  declare const CountryNameSchema: z.ZodObject<{
103
127
  de: z.ZodString;
@@ -107,6 +131,12 @@ declare const CountryNameSchema: z.ZodObject<{
107
131
  it: z.ZodString;
108
132
  ja: z.ZodString;
109
133
  ko: z.ZodString;
134
+ nl: z.ZodString;
135
+ pl: z.ZodString;
136
+ pt: z.ZodString;
137
+ 'pt-BR': z.ZodString;
138
+ id: z.ZodString;
139
+ vi: z.ZodString;
110
140
  native: z.ZodArray<z.ZodString>;
111
141
  }, z.core.$strip>;
112
142
  declare const CountrySeedSchema: z.ZodObject<{
@@ -119,6 +149,12 @@ declare const CountrySeedSchema: z.ZodObject<{
119
149
  it: z.ZodString;
120
150
  ja: z.ZodString;
121
151
  ko: z.ZodString;
152
+ nl: z.ZodString;
153
+ pl: z.ZodString;
154
+ pt: z.ZodString;
155
+ 'pt-BR': z.ZodString;
156
+ id: z.ZodString;
157
+ vi: z.ZodString;
122
158
  native: z.ZodArray<z.ZodString>;
123
159
  }, z.core.$strip>;
124
160
  }, z.core.$strip>;
@@ -129,7 +165,7 @@ declare const LogLevelSchema: z.ZodEnum<{
129
165
  warn: "warn";
130
166
  }>;
131
167
  declare const environments: ("development" | "production" | "test")[];
132
- declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko")[];
168
+ declare const locales: ("id" | "de" | "en" | "es" | "fr" | "it" | "ja" | "ko" | "nl" | "pl" | "pt" | "pt-BR" | "vi")[];
133
169
  declare const logLevels: ("error" | "debug" | "info" | "warn")[];
134
170
  type CountryName = z.infer<typeof CountryNameSchema>;
135
171
  type CountrySeed = z.infer<typeof CountrySeedSchema>;
package/dist/index.d.mts CHANGED
@@ -16,6 +16,7 @@ declare const EmojiSchema: z.ZodObject<{
16
16
  character: z.ZodString;
17
17
  id: z.ZodString;
18
18
  keywords: z.ZodRecord<z.ZodEnum<{
19
+ id: "id";
19
20
  de: "de";
20
21
  en: "en";
21
22
  es: "es";
@@ -23,6 +24,11 @@ declare const EmojiSchema: z.ZodObject<{
23
24
  it: "it";
24
25
  ja: "ja";
25
26
  ko: "ko";
27
+ nl: "nl";
28
+ pl: "pl";
29
+ pt: "pt";
30
+ "pt-BR": "pt-BR";
31
+ vi: "vi";
26
32
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
27
33
  }, z.core.$strip>;
28
34
  declare const EmojiGroupSchema: z.ZodObject<{
@@ -42,6 +48,7 @@ declare const EmojiGroupSchema: z.ZodObject<{
42
48
  character: z.ZodString;
43
49
  id: z.ZodString;
44
50
  keywords: z.ZodRecord<z.ZodEnum<{
51
+ id: "id";
45
52
  de: "de";
46
53
  en: "en";
47
54
  es: "es";
@@ -49,6 +56,11 @@ declare const EmojiGroupSchema: z.ZodObject<{
49
56
  it: "it";
50
57
  ja: "ja";
51
58
  ko: "ko";
59
+ nl: "nl";
60
+ pl: "pl";
61
+ pt: "pt";
62
+ "pt-BR": "pt-BR";
63
+ vi: "vi";
52
64
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
53
65
  }, z.core.$strip>>;
54
66
  }, z.core.$strip>;
@@ -69,6 +81,7 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
69
81
  character: z.ZodString;
70
82
  id: z.ZodString;
71
83
  keywords: z.ZodRecord<z.ZodEnum<{
84
+ id: "id";
72
85
  de: "de";
73
86
  en: "en";
74
87
  es: "es";
@@ -76,6 +89,11 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
76
89
  it: "it";
77
90
  ja: "ja";
78
91
  ko: "ko";
92
+ nl: "nl";
93
+ pl: "pl";
94
+ pt: "pt";
95
+ "pt-BR": "pt-BR";
96
+ vi: "vi";
79
97
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
80
98
  }, z.core.$strip>>;
81
99
  }, z.core.$strip>;
@@ -91,6 +109,7 @@ declare const EnvironmentSchema: z.ZodEnum<{
91
109
  test: "test";
92
110
  }>;
93
111
  declare const LocaleSchema: z.ZodEnum<{
112
+ id: "id";
94
113
  de: "de";
95
114
  en: "en";
96
115
  es: "es";
@@ -98,6 +117,11 @@ declare const LocaleSchema: z.ZodEnum<{
98
117
  it: "it";
99
118
  ja: "ja";
100
119
  ko: "ko";
120
+ nl: "nl";
121
+ pl: "pl";
122
+ pt: "pt";
123
+ "pt-BR": "pt-BR";
124
+ vi: "vi";
101
125
  }>;
102
126
  declare const CountryNameSchema: z.ZodObject<{
103
127
  de: z.ZodString;
@@ -107,6 +131,12 @@ declare const CountryNameSchema: z.ZodObject<{
107
131
  it: z.ZodString;
108
132
  ja: z.ZodString;
109
133
  ko: z.ZodString;
134
+ nl: z.ZodString;
135
+ pl: z.ZodString;
136
+ pt: z.ZodString;
137
+ 'pt-BR': z.ZodString;
138
+ id: z.ZodString;
139
+ vi: z.ZodString;
110
140
  native: z.ZodArray<z.ZodString>;
111
141
  }, z.core.$strip>;
112
142
  declare const CountrySeedSchema: z.ZodObject<{
@@ -119,6 +149,12 @@ declare const CountrySeedSchema: z.ZodObject<{
119
149
  it: z.ZodString;
120
150
  ja: z.ZodString;
121
151
  ko: z.ZodString;
152
+ nl: z.ZodString;
153
+ pl: z.ZodString;
154
+ pt: z.ZodString;
155
+ 'pt-BR': z.ZodString;
156
+ id: z.ZodString;
157
+ vi: z.ZodString;
122
158
  native: z.ZodArray<z.ZodString>;
123
159
  }, z.core.$strip>;
124
160
  }, z.core.$strip>;
@@ -129,7 +165,7 @@ declare const LogLevelSchema: z.ZodEnum<{
129
165
  warn: "warn";
130
166
  }>;
131
167
  declare const environments: ("development" | "production" | "test")[];
132
- declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko")[];
168
+ declare const locales: ("id" | "de" | "en" | "es" | "fr" | "it" | "ja" | "ko" | "nl" | "pl" | "pt" | "pt-BR" | "vi")[];
133
169
  declare const logLevels: ("error" | "debug" | "info" | "warn")[];
134
170
  type CountryName = z.infer<typeof CountryNameSchema>;
135
171
  type CountrySeed = z.infer<typeof CountrySeedSchema>;
package/dist/index.d.ts CHANGED
@@ -16,6 +16,7 @@ declare const EmojiSchema: z.ZodObject<{
16
16
  character: z.ZodString;
17
17
  id: z.ZodString;
18
18
  keywords: z.ZodRecord<z.ZodEnum<{
19
+ id: "id";
19
20
  de: "de";
20
21
  en: "en";
21
22
  es: "es";
@@ -23,6 +24,11 @@ declare const EmojiSchema: z.ZodObject<{
23
24
  it: "it";
24
25
  ja: "ja";
25
26
  ko: "ko";
27
+ nl: "nl";
28
+ pl: "pl";
29
+ pt: "pt";
30
+ "pt-BR": "pt-BR";
31
+ vi: "vi";
26
32
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
27
33
  }, z.core.$strip>;
28
34
  declare const EmojiGroupSchema: z.ZodObject<{
@@ -42,6 +48,7 @@ declare const EmojiGroupSchema: z.ZodObject<{
42
48
  character: z.ZodString;
43
49
  id: z.ZodString;
44
50
  keywords: z.ZodRecord<z.ZodEnum<{
51
+ id: "id";
45
52
  de: "de";
46
53
  en: "en";
47
54
  es: "es";
@@ -49,6 +56,11 @@ declare const EmojiGroupSchema: z.ZodObject<{
49
56
  it: "it";
50
57
  ja: "ja";
51
58
  ko: "ko";
59
+ nl: "nl";
60
+ pl: "pl";
61
+ pt: "pt";
62
+ "pt-BR": "pt-BR";
63
+ vi: "vi";
52
64
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
53
65
  }, z.core.$strip>>;
54
66
  }, z.core.$strip>;
@@ -69,6 +81,7 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
69
81
  character: z.ZodString;
70
82
  id: z.ZodString;
71
83
  keywords: z.ZodRecord<z.ZodEnum<{
84
+ id: "id";
72
85
  de: "de";
73
86
  en: "en";
74
87
  es: "es";
@@ -76,6 +89,11 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
76
89
  it: "it";
77
90
  ja: "ja";
78
91
  ko: "ko";
92
+ nl: "nl";
93
+ pl: "pl";
94
+ pt: "pt";
95
+ "pt-BR": "pt-BR";
96
+ vi: "vi";
79
97
  }>, z.ZodTuple<[z.ZodString], z.ZodString>>;
80
98
  }, z.core.$strip>>;
81
99
  }, z.core.$strip>;
@@ -91,6 +109,7 @@ declare const EnvironmentSchema: z.ZodEnum<{
91
109
  test: "test";
92
110
  }>;
93
111
  declare const LocaleSchema: z.ZodEnum<{
112
+ id: "id";
94
113
  de: "de";
95
114
  en: "en";
96
115
  es: "es";
@@ -98,6 +117,11 @@ declare const LocaleSchema: z.ZodEnum<{
98
117
  it: "it";
99
118
  ja: "ja";
100
119
  ko: "ko";
120
+ nl: "nl";
121
+ pl: "pl";
122
+ pt: "pt";
123
+ "pt-BR": "pt-BR";
124
+ vi: "vi";
101
125
  }>;
102
126
  declare const CountryNameSchema: z.ZodObject<{
103
127
  de: z.ZodString;
@@ -107,6 +131,12 @@ declare const CountryNameSchema: z.ZodObject<{
107
131
  it: z.ZodString;
108
132
  ja: z.ZodString;
109
133
  ko: z.ZodString;
134
+ nl: z.ZodString;
135
+ pl: z.ZodString;
136
+ pt: z.ZodString;
137
+ 'pt-BR': z.ZodString;
138
+ id: z.ZodString;
139
+ vi: z.ZodString;
110
140
  native: z.ZodArray<z.ZodString>;
111
141
  }, z.core.$strip>;
112
142
  declare const CountrySeedSchema: z.ZodObject<{
@@ -119,6 +149,12 @@ declare const CountrySeedSchema: z.ZodObject<{
119
149
  it: z.ZodString;
120
150
  ja: z.ZodString;
121
151
  ko: z.ZodString;
152
+ nl: z.ZodString;
153
+ pl: z.ZodString;
154
+ pt: z.ZodString;
155
+ 'pt-BR': z.ZodString;
156
+ id: z.ZodString;
157
+ vi: z.ZodString;
122
158
  native: z.ZodArray<z.ZodString>;
123
159
  }, z.core.$strip>;
124
160
  }, z.core.$strip>;
@@ -129,7 +165,7 @@ declare const LogLevelSchema: z.ZodEnum<{
129
165
  warn: "warn";
130
166
  }>;
131
167
  declare const environments: ("development" | "production" | "test")[];
132
- declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko")[];
168
+ declare const locales: ("id" | "de" | "en" | "es" | "fr" | "it" | "ja" | "ko" | "nl" | "pl" | "pt" | "pt-BR" | "vi")[];
133
169
  declare const logLevels: ("error" | "debug" | "info" | "warn")[];
134
170
  type CountryName = z.infer<typeof CountryNameSchema>;
135
171
  type CountrySeed = z.infer<typeof CountrySeedSchema>;