@saasmakers/shared 0.2.0 → 0.2.1
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 +3702 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +3702 -1
- package/package.json +12 -11
package/dist/index.d.cts
CHANGED
|
@@ -20,6 +20,7 @@ declare const EmojiSchema: z.ZodObject<{
|
|
|
20
20
|
en: "en";
|
|
21
21
|
es: "es";
|
|
22
22
|
fr: "fr";
|
|
23
|
+
it: "it";
|
|
23
24
|
ja: "ja";
|
|
24
25
|
ko: "ko";
|
|
25
26
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -45,6 +46,7 @@ declare const EmojiGroupSchema: z.ZodObject<{
|
|
|
45
46
|
en: "en";
|
|
46
47
|
es: "es";
|
|
47
48
|
fr: "fr";
|
|
49
|
+
it: "it";
|
|
48
50
|
ja: "ja";
|
|
49
51
|
ko: "ko";
|
|
50
52
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -71,6 +73,7 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
|
|
|
71
73
|
en: "en";
|
|
72
74
|
es: "es";
|
|
73
75
|
fr: "fr";
|
|
76
|
+
it: "it";
|
|
74
77
|
ja: "ja";
|
|
75
78
|
ko: "ko";
|
|
76
79
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -92,6 +95,7 @@ declare const LocaleSchema: z.ZodEnum<{
|
|
|
92
95
|
en: "en";
|
|
93
96
|
es: "es";
|
|
94
97
|
fr: "fr";
|
|
98
|
+
it: "it";
|
|
95
99
|
ja: "ja";
|
|
96
100
|
ko: "ko";
|
|
97
101
|
}>;
|
|
@@ -102,7 +106,7 @@ declare const LogLevelSchema: z.ZodEnum<{
|
|
|
102
106
|
warn: "warn";
|
|
103
107
|
}>;
|
|
104
108
|
declare const environments: ("development" | "production" | "test")[];
|
|
105
|
-
declare const locales: ("de" | "en" | "es" | "fr" | "ja" | "ko")[];
|
|
109
|
+
declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko")[];
|
|
106
110
|
declare const logLevels: ("debug" | "error" | "info" | "warn")[];
|
|
107
111
|
type Environment = z.infer<typeof EnvironmentSchema>;
|
|
108
112
|
type Locale = z.infer<typeof LocaleSchema>;
|
package/dist/index.d.mts
CHANGED
|
@@ -20,6 +20,7 @@ declare const EmojiSchema: z.ZodObject<{
|
|
|
20
20
|
en: "en";
|
|
21
21
|
es: "es";
|
|
22
22
|
fr: "fr";
|
|
23
|
+
it: "it";
|
|
23
24
|
ja: "ja";
|
|
24
25
|
ko: "ko";
|
|
25
26
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -45,6 +46,7 @@ declare const EmojiGroupSchema: z.ZodObject<{
|
|
|
45
46
|
en: "en";
|
|
46
47
|
es: "es";
|
|
47
48
|
fr: "fr";
|
|
49
|
+
it: "it";
|
|
48
50
|
ja: "ja";
|
|
49
51
|
ko: "ko";
|
|
50
52
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -71,6 +73,7 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
|
|
|
71
73
|
en: "en";
|
|
72
74
|
es: "es";
|
|
73
75
|
fr: "fr";
|
|
76
|
+
it: "it";
|
|
74
77
|
ja: "ja";
|
|
75
78
|
ko: "ko";
|
|
76
79
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -92,6 +95,7 @@ declare const LocaleSchema: z.ZodEnum<{
|
|
|
92
95
|
en: "en";
|
|
93
96
|
es: "es";
|
|
94
97
|
fr: "fr";
|
|
98
|
+
it: "it";
|
|
95
99
|
ja: "ja";
|
|
96
100
|
ko: "ko";
|
|
97
101
|
}>;
|
|
@@ -102,7 +106,7 @@ declare const LogLevelSchema: z.ZodEnum<{
|
|
|
102
106
|
warn: "warn";
|
|
103
107
|
}>;
|
|
104
108
|
declare const environments: ("development" | "production" | "test")[];
|
|
105
|
-
declare const locales: ("de" | "en" | "es" | "fr" | "ja" | "ko")[];
|
|
109
|
+
declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko")[];
|
|
106
110
|
declare const logLevels: ("debug" | "error" | "info" | "warn")[];
|
|
107
111
|
type Environment = z.infer<typeof EnvironmentSchema>;
|
|
108
112
|
type Locale = z.infer<typeof LocaleSchema>;
|
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ declare const EmojiSchema: z.ZodObject<{
|
|
|
20
20
|
en: "en";
|
|
21
21
|
es: "es";
|
|
22
22
|
fr: "fr";
|
|
23
|
+
it: "it";
|
|
23
24
|
ja: "ja";
|
|
24
25
|
ko: "ko";
|
|
25
26
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -45,6 +46,7 @@ declare const EmojiGroupSchema: z.ZodObject<{
|
|
|
45
46
|
en: "en";
|
|
46
47
|
es: "es";
|
|
47
48
|
fr: "fr";
|
|
49
|
+
it: "it";
|
|
48
50
|
ja: "ja";
|
|
49
51
|
ko: "ko";
|
|
50
52
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -71,6 +73,7 @@ declare const EmojiGroupSeedSchema: z.ZodObject<{
|
|
|
71
73
|
en: "en";
|
|
72
74
|
es: "es";
|
|
73
75
|
fr: "fr";
|
|
76
|
+
it: "it";
|
|
74
77
|
ja: "ja";
|
|
75
78
|
ko: "ko";
|
|
76
79
|
}>, z.ZodTuple<[z.ZodString], z.ZodString>>;
|
|
@@ -92,6 +95,7 @@ declare const LocaleSchema: z.ZodEnum<{
|
|
|
92
95
|
en: "en";
|
|
93
96
|
es: "es";
|
|
94
97
|
fr: "fr";
|
|
98
|
+
it: "it";
|
|
95
99
|
ja: "ja";
|
|
96
100
|
ko: "ko";
|
|
97
101
|
}>;
|
|
@@ -102,7 +106,7 @@ declare const LogLevelSchema: z.ZodEnum<{
|
|
|
102
106
|
warn: "warn";
|
|
103
107
|
}>;
|
|
104
108
|
declare const environments: ("development" | "production" | "test")[];
|
|
105
|
-
declare const locales: ("de" | "en" | "es" | "fr" | "ja" | "ko")[];
|
|
109
|
+
declare const locales: ("de" | "en" | "es" | "fr" | "it" | "ja" | "ko")[];
|
|
106
110
|
declare const logLevels: ("debug" | "error" | "info" | "warn")[];
|
|
107
111
|
type Environment = z.infer<typeof EnvironmentSchema>;
|
|
108
112
|
type Locale = z.infer<typeof LocaleSchema>;
|