@saasmakers/shared 0.1.9 → 0.1.11

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
@@ -2,13 +2,26 @@ type Environment = 'development' | 'production' | 'test'
2
2
 
3
3
  type LogLevel = 'debug' | 'error' | 'info' | 'warn'
4
4
 
5
+ type EmojiCategory
6
+ = | 'activity'
7
+ | 'diversity'
8
+ | 'flags'
9
+ | 'food'
10
+ | 'nature'
11
+ | 'objects'
12
+ | 'people'
13
+ | 'regional'
14
+ | 'symbol'
15
+ | 'travel'
16
+
5
17
  interface Emoji {
18
+ character: string
6
19
  id: string
7
20
  keywords: Record<Locale, [string, ...string[]]>
8
21
  }
9
22
 
10
23
  declare const emojis: {
11
- category: string;
24
+ category: EmojiCategory;
12
25
  emojis: Emoji[];
13
26
  }[];
14
27
 
@@ -24,4 +37,4 @@ type IsEqual<A, B>
24
37
  : false
25
38
 
26
39
  export { emojis, environments, logLevels };
27
- export type { Assert, Emoji, Environment, IsEqual, LogLevel };
40
+ export type { Assert, Emoji, EmojiCategory, Environment, IsEqual, LogLevel };
package/dist/index.d.mts CHANGED
@@ -2,13 +2,26 @@ type Environment = 'development' | 'production' | 'test'
2
2
 
3
3
  type LogLevel = 'debug' | 'error' | 'info' | 'warn'
4
4
 
5
+ type EmojiCategory
6
+ = | 'activity'
7
+ | 'diversity'
8
+ | 'flags'
9
+ | 'food'
10
+ | 'nature'
11
+ | 'objects'
12
+ | 'people'
13
+ | 'regional'
14
+ | 'symbol'
15
+ | 'travel'
16
+
5
17
  interface Emoji {
18
+ character: string
6
19
  id: string
7
20
  keywords: Record<Locale, [string, ...string[]]>
8
21
  }
9
22
 
10
23
  declare const emojis: {
11
- category: string;
24
+ category: EmojiCategory;
12
25
  emojis: Emoji[];
13
26
  }[];
14
27
 
@@ -24,4 +37,4 @@ type IsEqual<A, B>
24
37
  : false
25
38
 
26
39
  export { emojis, environments, logLevels };
27
- export type { Assert, Emoji, Environment, IsEqual, LogLevel };
40
+ export type { Assert, Emoji, EmojiCategory, Environment, IsEqual, LogLevel };
package/dist/index.d.ts CHANGED
@@ -2,13 +2,26 @@ type Environment = 'development' | 'production' | 'test'
2
2
 
3
3
  type LogLevel = 'debug' | 'error' | 'info' | 'warn'
4
4
 
5
+ type EmojiCategory
6
+ = | 'activity'
7
+ | 'diversity'
8
+ | 'flags'
9
+ | 'food'
10
+ | 'nature'
11
+ | 'objects'
12
+ | 'people'
13
+ | 'regional'
14
+ | 'symbol'
15
+ | 'travel'
16
+
5
17
  interface Emoji {
18
+ character: string
6
19
  id: string
7
20
  keywords: Record<Locale, [string, ...string[]]>
8
21
  }
9
22
 
10
23
  declare const emojis: {
11
- category: string;
24
+ category: EmojiCategory;
12
25
  emojis: Emoji[];
13
26
  }[];
14
27
 
@@ -24,4 +37,4 @@ type IsEqual<A, B>
24
37
  : false
25
38
 
26
39
  export { emojis, environments, logLevels };
27
- export type { Assert, Emoji, Environment, IsEqual, LogLevel };
40
+ export type { Assert, Emoji, EmojiCategory, Environment, IsEqual, LogLevel };