wenum 1.87.0 → 1.87.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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +13 -1
- package/dist/index.mjs +13 -1
- package/package.json +1 -1
- package/src/interest/interestByCategory/music.ts +26 -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 = 'guitar' | '
|
|
187
|
+
type MusicInterestType = 'singing' | 'guitar' | 'piano' | 'violin' | 'cello' | 'bass' | 'drum' | 'saxophone' | 'flute' | 'harp' | 'keytar' | 'trombone' | 'tuba' | 'clarita';
|
|
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 = 'guitar' | '
|
|
187
|
+
type MusicInterestType = 'singing' | 'guitar' | 'piano' | 'violin' | 'cello' | 'bass' | 'drum' | 'saxophone' | 'flute' | 'harp' | 'keytar' | 'trombone' | 'tuba' | 'clarita';
|
|
188
188
|
declare const ALL_MUSIC_INTERESTS: MusicInterestType[];
|
|
189
189
|
|
|
190
190
|
type PetsInterestType = 'dog' | 'cat';
|
package/dist/index.js
CHANGED
|
@@ -234,8 +234,20 @@ var ALL_CARDGAMES_INTERESTS = [
|
|
|
234
234
|
|
|
235
235
|
// src/interest/interestByCategory/music.ts
|
|
236
236
|
var ALL_MUSIC_INTERESTS = [
|
|
237
|
+
"singing",
|
|
237
238
|
"guitar",
|
|
238
|
-
"
|
|
239
|
+
"piano",
|
|
240
|
+
"violin",
|
|
241
|
+
"cello",
|
|
242
|
+
"bass",
|
|
243
|
+
"drum",
|
|
244
|
+
"saxophone",
|
|
245
|
+
"flute",
|
|
246
|
+
"harp",
|
|
247
|
+
"keytar",
|
|
248
|
+
"trombone",
|
|
249
|
+
"tuba",
|
|
250
|
+
"clarita"
|
|
239
251
|
];
|
|
240
252
|
|
|
241
253
|
// src/interest/interestByCategory/pets.ts
|
package/dist/index.mjs
CHANGED
|
@@ -170,8 +170,20 @@ var ALL_CARDGAMES_INTERESTS = [
|
|
|
170
170
|
|
|
171
171
|
// src/interest/interestByCategory/music.ts
|
|
172
172
|
var ALL_MUSIC_INTERESTS = [
|
|
173
|
+
"singing",
|
|
173
174
|
"guitar",
|
|
174
|
-
"
|
|
175
|
+
"piano",
|
|
176
|
+
"violin",
|
|
177
|
+
"cello",
|
|
178
|
+
"bass",
|
|
179
|
+
"drum",
|
|
180
|
+
"saxophone",
|
|
181
|
+
"flute",
|
|
182
|
+
"harp",
|
|
183
|
+
"keytar",
|
|
184
|
+
"trombone",
|
|
185
|
+
"tuba",
|
|
186
|
+
"clarita"
|
|
175
187
|
];
|
|
176
188
|
|
|
177
189
|
// src/interest/interestByCategory/pets.ts
|
package/package.json
CHANGED
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
export type MusicInterestType =
|
|
2
|
-
| 'guitar'
|
|
3
2
|
| 'singing'
|
|
3
|
+
| 'guitar'
|
|
4
|
+
| 'piano'
|
|
5
|
+
| 'violin'
|
|
6
|
+
| 'cello'
|
|
7
|
+
| 'bass'
|
|
8
|
+
| 'drum'
|
|
9
|
+
| 'saxophone'
|
|
10
|
+
| 'flute'
|
|
11
|
+
| 'harp'
|
|
12
|
+
| 'keytar'
|
|
13
|
+
| 'trombone'
|
|
14
|
+
| 'tuba'
|
|
15
|
+
| 'clarita'
|
|
4
16
|
;
|
|
5
17
|
|
|
6
18
|
export const ALL_MUSIC_INTERESTS: MusicInterestType[] = [
|
|
7
|
-
'guitar',
|
|
8
19
|
'singing',
|
|
20
|
+
'guitar',
|
|
21
|
+
'piano',
|
|
22
|
+
'violin',
|
|
23
|
+
'cello',
|
|
24
|
+
'bass',
|
|
25
|
+
'drum',
|
|
26
|
+
'saxophone',
|
|
27
|
+
'flute',
|
|
28
|
+
'harp',
|
|
29
|
+
'keytar',
|
|
30
|
+
'trombone',
|
|
31
|
+
'tuba',
|
|
32
|
+
'clarita',
|
|
9
33
|
];
|