wenum 1.88.1 → 1.88.2

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.mts CHANGED
@@ -184,7 +184,7 @@ declare const ALL_INTEREST_CATEGORIES: Exclude<CategoryType, ''>[];
184
184
  type CardGamesInterestType = 'texasholdem' | 'omaha' | 'blackjack';
185
185
  declare const ALL_CARDGAMES_INTERESTS: CardGamesInterestType[];
186
186
 
187
- type MusicInterestType = 'singing' | 'guitar' | 'piano' | 'violin' | 'cello' | 'bass' | 'drum' | 'saxophone' | 'flute' | 'harp' | 'keytar' | 'trombone' | 'tuba' | 'clarita';
187
+ type MusicInterestType = 'singing' | 'guitar' | 'piano' | 'violin' | 'cello' | 'bass' | 'drum' | 'saxophone' | 'flute' | 'harp' | 'keytar' | 'trombone' | 'tuba' | 'clarinet';
188
188
  declare const ALL_MUSIC_INTERESTS: MusicInterestType[];
189
189
 
190
190
  type PetsInterestType = 'dog' | 'cat';
package/dist/index.d.ts CHANGED
@@ -184,7 +184,7 @@ declare const ALL_INTEREST_CATEGORIES: Exclude<CategoryType, ''>[];
184
184
  type CardGamesInterestType = 'texasholdem' | 'omaha' | 'blackjack';
185
185
  declare const ALL_CARDGAMES_INTERESTS: CardGamesInterestType[];
186
186
 
187
- type MusicInterestType = 'singing' | 'guitar' | 'piano' | 'violin' | 'cello' | 'bass' | 'drum' | 'saxophone' | 'flute' | 'harp' | 'keytar' | 'trombone' | 'tuba' | 'clarita';
187
+ type MusicInterestType = 'singing' | 'guitar' | 'piano' | 'violin' | 'cello' | 'bass' | 'drum' | 'saxophone' | 'flute' | 'harp' | 'keytar' | 'trombone' | 'tuba' | 'clarinet';
188
188
  declare const ALL_MUSIC_INTERESTS: MusicInterestType[];
189
189
 
190
190
  type PetsInterestType = 'dog' | 'cat';
package/dist/index.js CHANGED
@@ -249,7 +249,7 @@ var ALL_MUSIC_INTERESTS = [
249
249
  "keytar",
250
250
  "trombone",
251
251
  "tuba",
252
- "clarita"
252
+ "clarinet"
253
253
  ];
254
254
 
255
255
  // src/interest/interestByCategory/pets.ts
package/dist/index.mjs CHANGED
@@ -184,7 +184,7 @@ var ALL_MUSIC_INTERESTS = [
184
184
  "keytar",
185
185
  "trombone",
186
186
  "tuba",
187
- "clarita"
187
+ "clarinet"
188
188
  ];
189
189
 
190
190
  // src/interest/interestByCategory/pets.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.88.1",
3
+ "version": "1.88.2",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@ export type MusicInterestType =
12
12
  | 'keytar'
13
13
  | 'trombone'
14
14
  | 'tuba'
15
- | 'clarita'
15
+ | 'clarinet'
16
16
  ;
17
17
 
18
18
  export const ALL_MUSIC_INTERESTS: MusicInterestType[] = [
@@ -29,5 +29,5 @@ export const ALL_MUSIC_INTERESTS: MusicInterestType[] = [
29
29
  'keytar',
30
30
  'trombone',
31
31
  'tuba',
32
- 'clarita',
32
+ 'clarinet',
33
33
  ];