@saasmakers/shared 0.2.3 → 0.2.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/dist/index.cjs +27428 -3702
- package/dist/index.d.cts +39 -3
- package/dist/index.d.mts +39 -3
- package/dist/index.d.ts +39 -3
- package/dist/index.mjs +27428 -3702
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -23,6 +23,12 @@ declare const EmojiSchema: z.ZodObject<{
|
|
|
23
23
|
it: "it";
|
|
24
24
|
ja: "ja";
|
|
25
25
|
ko: "ko";
|
|
26
|
+
nl: "nl";
|
|
27
|
+
pl: "pl";
|
|
28
|
+
pt: "pt";
|
|
29
|
+
"pt-BR": "pt-BR";
|
|
30
|
+
id: "id";
|
|
31
|
+
vi: "vi";
|
|
26
32
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
27
33
|
}, z.core.$strip>;
|
|
28
34
|
declare const EmojiGroupSchema: z.ZodObject<{
|
|
@@ -49,6 +55,12 @@ declare const EmojiGroupSchema: z.ZodObject<{
|
|
|
49
55
|
it: "it";
|
|
50
56
|
ja: "ja";
|
|
51
57
|
ko: "ko";
|
|
58
|
+
nl: "nl";
|
|
59
|
+
pl: "pl";
|
|
60
|
+
pt: "pt";
|
|
61
|
+
"pt-BR": "pt-BR";
|
|
62
|
+
id: "id";
|
|
63
|
+
vi: "vi";
|
|
52
64
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
53
65
|
}, z.core.$strip>>;
|
|
54
66
|
}, z.core.$strip>;
|
|
@@ -76,6 +88,12 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
|
|
|
76
88
|
it: "it";
|
|
77
89
|
ja: "ja";
|
|
78
90
|
ko: "ko";
|
|
91
|
+
nl: "nl";
|
|
92
|
+
pl: "pl";
|
|
93
|
+
pt: "pt";
|
|
94
|
+
"pt-BR": "pt-BR";
|
|
95
|
+
id: "id";
|
|
96
|
+
vi: "vi";
|
|
79
97
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
80
98
|
}, z.core.$strip>>;
|
|
81
99
|
}, z.core.$strip>;
|
|
@@ -98,6 +116,12 @@ declare const LocaleSchema: z.ZodEnum<{
|
|
|
98
116
|
it: "it";
|
|
99
117
|
ja: "ja";
|
|
100
118
|
ko: "ko";
|
|
119
|
+
nl: "nl";
|
|
120
|
+
pl: "pl";
|
|
121
|
+
pt: "pt";
|
|
122
|
+
"pt-BR": "pt-BR";
|
|
123
|
+
id: "id";
|
|
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,18 +149,24 @@ 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>;
|
|
125
161
|
declare const LogLevelSchema: z.ZodEnum<{
|
|
126
|
-
error: "error";
|
|
127
162
|
debug: "debug";
|
|
163
|
+
error: "error";
|
|
128
164
|
info: "info";
|
|
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")[];
|
|
133
|
-
declare const logLevels: ("
|
|
168
|
+
declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko" | "nl" | "pl" | "pt" | "pt-BR" | "id" | "vi")[];
|
|
169
|
+
declare const logLevels: ("debug" | "error" | "info" | "warn")[];
|
|
134
170
|
type CountryName = z.infer<typeof CountryNameSchema>;
|
|
135
171
|
type CountrySeed = z.infer<typeof CountrySeedSchema>;
|
|
136
172
|
type Environment = z.infer<typeof EnvironmentSchema>;
|
package/dist/index.d.mts
CHANGED
|
@@ -23,6 +23,12 @@ declare const EmojiSchema: z.ZodObject<{
|
|
|
23
23
|
it: "it";
|
|
24
24
|
ja: "ja";
|
|
25
25
|
ko: "ko";
|
|
26
|
+
nl: "nl";
|
|
27
|
+
pl: "pl";
|
|
28
|
+
pt: "pt";
|
|
29
|
+
"pt-BR": "pt-BR";
|
|
30
|
+
id: "id";
|
|
31
|
+
vi: "vi";
|
|
26
32
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
27
33
|
}, z.core.$strip>;
|
|
28
34
|
declare const EmojiGroupSchema: z.ZodObject<{
|
|
@@ -49,6 +55,12 @@ declare const EmojiGroupSchema: z.ZodObject<{
|
|
|
49
55
|
it: "it";
|
|
50
56
|
ja: "ja";
|
|
51
57
|
ko: "ko";
|
|
58
|
+
nl: "nl";
|
|
59
|
+
pl: "pl";
|
|
60
|
+
pt: "pt";
|
|
61
|
+
"pt-BR": "pt-BR";
|
|
62
|
+
id: "id";
|
|
63
|
+
vi: "vi";
|
|
52
64
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
53
65
|
}, z.core.$strip>>;
|
|
54
66
|
}, z.core.$strip>;
|
|
@@ -76,6 +88,12 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
|
|
|
76
88
|
it: "it";
|
|
77
89
|
ja: "ja";
|
|
78
90
|
ko: "ko";
|
|
91
|
+
nl: "nl";
|
|
92
|
+
pl: "pl";
|
|
93
|
+
pt: "pt";
|
|
94
|
+
"pt-BR": "pt-BR";
|
|
95
|
+
id: "id";
|
|
96
|
+
vi: "vi";
|
|
79
97
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
80
98
|
}, z.core.$strip>>;
|
|
81
99
|
}, z.core.$strip>;
|
|
@@ -98,6 +116,12 @@ declare const LocaleSchema: z.ZodEnum<{
|
|
|
98
116
|
it: "it";
|
|
99
117
|
ja: "ja";
|
|
100
118
|
ko: "ko";
|
|
119
|
+
nl: "nl";
|
|
120
|
+
pl: "pl";
|
|
121
|
+
pt: "pt";
|
|
122
|
+
"pt-BR": "pt-BR";
|
|
123
|
+
id: "id";
|
|
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,18 +149,24 @@ 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>;
|
|
125
161
|
declare const LogLevelSchema: z.ZodEnum<{
|
|
126
|
-
error: "error";
|
|
127
162
|
debug: "debug";
|
|
163
|
+
error: "error";
|
|
128
164
|
info: "info";
|
|
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")[];
|
|
133
|
-
declare const logLevels: ("
|
|
168
|
+
declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko" | "nl" | "pl" | "pt" | "pt-BR" | "id" | "vi")[];
|
|
169
|
+
declare const logLevels: ("debug" | "error" | "info" | "warn")[];
|
|
134
170
|
type CountryName = z.infer<typeof CountryNameSchema>;
|
|
135
171
|
type CountrySeed = z.infer<typeof CountrySeedSchema>;
|
|
136
172
|
type Environment = z.infer<typeof EnvironmentSchema>;
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,12 @@ declare const EmojiSchema: z.ZodObject<{
|
|
|
23
23
|
it: "it";
|
|
24
24
|
ja: "ja";
|
|
25
25
|
ko: "ko";
|
|
26
|
+
nl: "nl";
|
|
27
|
+
pl: "pl";
|
|
28
|
+
pt: "pt";
|
|
29
|
+
"pt-BR": "pt-BR";
|
|
30
|
+
id: "id";
|
|
31
|
+
vi: "vi";
|
|
26
32
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
27
33
|
}, z.core.$strip>;
|
|
28
34
|
declare const EmojiGroupSchema: z.ZodObject<{
|
|
@@ -49,6 +55,12 @@ declare const EmojiGroupSchema: z.ZodObject<{
|
|
|
49
55
|
it: "it";
|
|
50
56
|
ja: "ja";
|
|
51
57
|
ko: "ko";
|
|
58
|
+
nl: "nl";
|
|
59
|
+
pl: "pl";
|
|
60
|
+
pt: "pt";
|
|
61
|
+
"pt-BR": "pt-BR";
|
|
62
|
+
id: "id";
|
|
63
|
+
vi: "vi";
|
|
52
64
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
53
65
|
}, z.core.$strip>>;
|
|
54
66
|
}, z.core.$strip>;
|
|
@@ -76,6 +88,12 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
|
|
|
76
88
|
it: "it";
|
|
77
89
|
ja: "ja";
|
|
78
90
|
ko: "ko";
|
|
91
|
+
nl: "nl";
|
|
92
|
+
pl: "pl";
|
|
93
|
+
pt: "pt";
|
|
94
|
+
"pt-BR": "pt-BR";
|
|
95
|
+
id: "id";
|
|
96
|
+
vi: "vi";
|
|
79
97
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
80
98
|
}, z.core.$strip>>;
|
|
81
99
|
}, z.core.$strip>;
|
|
@@ -98,6 +116,12 @@ declare const LocaleSchema: z.ZodEnum<{
|
|
|
98
116
|
it: "it";
|
|
99
117
|
ja: "ja";
|
|
100
118
|
ko: "ko";
|
|
119
|
+
nl: "nl";
|
|
120
|
+
pl: "pl";
|
|
121
|
+
pt: "pt";
|
|
122
|
+
"pt-BR": "pt-BR";
|
|
123
|
+
id: "id";
|
|
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,18 +149,24 @@ 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>;
|
|
125
161
|
declare const LogLevelSchema: z.ZodEnum<{
|
|
126
|
-
error: "error";
|
|
127
162
|
debug: "debug";
|
|
163
|
+
error: "error";
|
|
128
164
|
info: "info";
|
|
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")[];
|
|
133
|
-
declare const logLevels: ("
|
|
168
|
+
declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko" | "nl" | "pl" | "pt" | "pt-BR" | "id" | "vi")[];
|
|
169
|
+
declare const logLevels: ("debug" | "error" | "info" | "warn")[];
|
|
134
170
|
type CountryName = z.infer<typeof CountryNameSchema>;
|
|
135
171
|
type CountrySeed = z.infer<typeof CountrySeedSchema>;
|
|
136
172
|
type Environment = z.infer<typeof EnvironmentSchema>;
|