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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/interest/interestByCategory/music.ts +2 -2
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' | '
|
|
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' | '
|
|
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
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ export type MusicInterestType =
|
|
|
12
12
|
| 'keytar'
|
|
13
13
|
| 'trombone'
|
|
14
14
|
| 'tuba'
|
|
15
|
-
| '
|
|
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
|
-
'
|
|
32
|
+
'clarinet',
|
|
33
33
|
];
|