@saasmakers/shared 0.1.0 → 0.1.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.d.cts CHANGED
@@ -1,11 +1,21 @@
1
- interface Emoji {
1
+ interface Emoji$1 {
2
2
  id: string
3
3
  keywords: Record<Locale, [string, ...string[]]>
4
4
  }
5
5
 
6
6
  declare const emojis: {
7
7
  category: string;
8
- emojis: Emoji[];
8
+ emojis: Emoji$1[];
9
9
  }[];
10
10
 
11
+ type Environment = 'development' | 'production' | 'test'
12
+
13
+ type LogLevel = 'debug' | 'error' | 'info' | 'warn'
14
+
15
+ interface Emoji {
16
+ id: string
17
+ keywords: Record<Locale, [string, ...string[]]>
18
+ }
19
+
11
20
  export { emojis };
21
+ export type { Emoji, Environment, LogLevel };
package/dist/index.d.mts CHANGED
@@ -1,11 +1,21 @@
1
- interface Emoji {
1
+ interface Emoji$1 {
2
2
  id: string
3
3
  keywords: Record<Locale, [string, ...string[]]>
4
4
  }
5
5
 
6
6
  declare const emojis: {
7
7
  category: string;
8
- emojis: Emoji[];
8
+ emojis: Emoji$1[];
9
9
  }[];
10
10
 
11
+ type Environment = 'development' | 'production' | 'test'
12
+
13
+ type LogLevel = 'debug' | 'error' | 'info' | 'warn'
14
+
15
+ interface Emoji {
16
+ id: string
17
+ keywords: Record<Locale, [string, ...string[]]>
18
+ }
19
+
11
20
  export { emojis };
21
+ export type { Emoji, Environment, LogLevel };
package/dist/index.d.ts CHANGED
@@ -1,11 +1,21 @@
1
- interface Emoji {
1
+ interface Emoji$1 {
2
2
  id: string
3
3
  keywords: Record<Locale, [string, ...string[]]>
4
4
  }
5
5
 
6
6
  declare const emojis: {
7
7
  category: string;
8
- emojis: Emoji[];
8
+ emojis: Emoji$1[];
9
9
  }[];
10
10
 
11
+ type Environment = 'development' | 'production' | 'test'
12
+
13
+ type LogLevel = 'debug' | 'error' | 'info' | 'warn'
14
+
15
+ interface Emoji {
16
+ id: string
17
+ keywords: Record<Locale, [string, ...string[]]>
18
+ }
19
+
11
20
  export { emojis };
21
+ export type { Emoji, Environment, LogLevel };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/shared",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "private": false,
6
6
  "description": "Shared data and types for SaaS Makers projects",
7
7
  "license": "MIT",