@saasmakers/shared 0.1.12 → 0.1.13

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,6 +1,8 @@
1
- type Environment = 'development' | 'production' | 'test'
2
-
3
- type LogLevel = 'debug' | 'error' | 'info' | 'warn'
1
+ interface Emoji {
2
+ character: string
3
+ id: string
4
+ keywords: Record<Locale, [string, ...string[]]>
5
+ }
4
6
 
5
7
  type EmojiCategory
6
8
  = | 'activity'
@@ -14,11 +16,9 @@ type EmojiCategory
14
16
  | 'symbol'
15
17
  | 'travel'
16
18
 
17
- interface Emoji {
18
- character: string
19
- id: string
20
- keywords: Record<Locale, [string, ...string[]]>
21
- }
19
+ type Environment = 'development' | 'production' | 'test'
20
+
21
+ type LogLevel = 'debug' | 'error' | 'info' | 'warn'
22
22
 
23
23
  declare const emojis: {
24
24
  category: EmojiCategory;
package/dist/index.d.mts CHANGED
@@ -1,6 +1,8 @@
1
- type Environment = 'development' | 'production' | 'test'
2
-
3
- type LogLevel = 'debug' | 'error' | 'info' | 'warn'
1
+ interface Emoji {
2
+ character: string
3
+ id: string
4
+ keywords: Record<Locale, [string, ...string[]]>
5
+ }
4
6
 
5
7
  type EmojiCategory
6
8
  = | 'activity'
@@ -14,11 +16,9 @@ type EmojiCategory
14
16
  | 'symbol'
15
17
  | 'travel'
16
18
 
17
- interface Emoji {
18
- character: string
19
- id: string
20
- keywords: Record<Locale, [string, ...string[]]>
21
- }
19
+ type Environment = 'development' | 'production' | 'test'
20
+
21
+ type LogLevel = 'debug' | 'error' | 'info' | 'warn'
22
22
 
23
23
  declare const emojis: {
24
24
  category: EmojiCategory;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,8 @@
1
- type Environment = 'development' | 'production' | 'test'
2
-
3
- type LogLevel = 'debug' | 'error' | 'info' | 'warn'
1
+ interface Emoji {
2
+ character: string
3
+ id: string
4
+ keywords: Record<Locale, [string, ...string[]]>
5
+ }
4
6
 
5
7
  type EmojiCategory
6
8
  = | 'activity'
@@ -14,11 +16,9 @@ type EmojiCategory
14
16
  | 'symbol'
15
17
  | 'travel'
16
18
 
17
- interface Emoji {
18
- character: string
19
- id: string
20
- keywords: Record<Locale, [string, ...string[]]>
21
- }
19
+ type Environment = 'development' | 'production' | 'test'
20
+
21
+ type LogLevel = 'debug' | 'error' | 'info' | 'warn'
22
22
 
23
23
  declare const emojis: {
24
24
  category: EmojiCategory;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/shared",
3
3
  "type": "module",
4
- "version": "0.1.12",
4
+ "version": "0.1.13",
5
5
  "private": false,
6
6
  "description": "Shared data and types for SaaS Makers projects",
7
7
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "devDependencies": {
29
29
  "typescript": "5.9.3",
30
- "@saasmakers/config": "0.1.20"
30
+ "@saasmakers/config": "0.1.21"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "unbuild",