wenum 2.6.0 → 2.6.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.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/interest/interestByCategory/languages.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -253,6 +253,7 @@ const ALL_LEISURE_INTERESTS = [
|
|
|
253
253
|
//#region src/interest/interestByCategory/languages.ts
|
|
254
254
|
const ALL_LANGUAGES_INTERESTS = [
|
|
255
255
|
"arabic",
|
|
256
|
+
"chinese",
|
|
256
257
|
"dutch",
|
|
257
258
|
"english",
|
|
258
259
|
"french",
|
|
@@ -264,7 +265,6 @@ const ALL_LANGUAGES_INTERESTS = [
|
|
|
264
265
|
"japanese",
|
|
265
266
|
"korean",
|
|
266
267
|
"malay",
|
|
267
|
-
"mandarin",
|
|
268
268
|
"portuguese",
|
|
269
269
|
"russian",
|
|
270
270
|
"spanish",
|
package/dist/index.d.cts
CHANGED
|
@@ -253,7 +253,7 @@ type LeisureInterestType = 'walking' | 'movie' | 'concert' | 'dining' | 'shoppin
|
|
|
253
253
|
declare const ALL_LEISURE_INTERESTS: LeisureInterestType[];
|
|
254
254
|
//#endregion
|
|
255
255
|
//#region src/interest/interestByCategory/languages.d.ts
|
|
256
|
-
type LanguagesInterestType = 'arabic' | 'dutch' | 'english' | 'french' | 'german' | 'greek' | 'hindi' | 'indonesian' | 'italian' | 'japanese' | 'korean' | 'malay' | '
|
|
256
|
+
type LanguagesInterestType = 'arabic' | 'chinese' | 'dutch' | 'english' | 'french' | 'german' | 'greek' | 'hindi' | 'indonesian' | 'italian' | 'japanese' | 'korean' | 'malay' | 'portuguese' | 'russian' | 'spanish' | 'swedish' | 'thai' | 'turkish' | 'vietnamese';
|
|
257
257
|
declare const ALL_LANGUAGES_INTERESTS: LanguagesInterestType[];
|
|
258
258
|
//#endregion
|
|
259
259
|
//#region src/interest/interestByCategory/interest.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -253,7 +253,7 @@ type LeisureInterestType = 'walking' | 'movie' | 'concert' | 'dining' | 'shoppin
|
|
|
253
253
|
declare const ALL_LEISURE_INTERESTS: LeisureInterestType[];
|
|
254
254
|
//#endregion
|
|
255
255
|
//#region src/interest/interestByCategory/languages.d.ts
|
|
256
|
-
type LanguagesInterestType = 'arabic' | 'dutch' | 'english' | 'french' | 'german' | 'greek' | 'hindi' | 'indonesian' | 'italian' | 'japanese' | 'korean' | 'malay' | '
|
|
256
|
+
type LanguagesInterestType = 'arabic' | 'chinese' | 'dutch' | 'english' | 'french' | 'german' | 'greek' | 'hindi' | 'indonesian' | 'italian' | 'japanese' | 'korean' | 'malay' | 'portuguese' | 'russian' | 'spanish' | 'swedish' | 'thai' | 'turkish' | 'vietnamese';
|
|
257
257
|
declare const ALL_LANGUAGES_INTERESTS: LanguagesInterestType[];
|
|
258
258
|
//#endregion
|
|
259
259
|
//#region src/interest/interestByCategory/interest.d.ts
|
package/dist/index.mjs
CHANGED
|
@@ -252,6 +252,7 @@ const ALL_LEISURE_INTERESTS = [
|
|
|
252
252
|
//#region src/interest/interestByCategory/languages.ts
|
|
253
253
|
const ALL_LANGUAGES_INTERESTS = [
|
|
254
254
|
"arabic",
|
|
255
|
+
"chinese",
|
|
255
256
|
"dutch",
|
|
256
257
|
"english",
|
|
257
258
|
"french",
|
|
@@ -263,7 +264,6 @@ const ALL_LANGUAGES_INTERESTS = [
|
|
|
263
264
|
"japanese",
|
|
264
265
|
"korean",
|
|
265
266
|
"malay",
|
|
266
|
-
"mandarin",
|
|
267
267
|
"portuguese",
|
|
268
268
|
"russian",
|
|
269
269
|
"spanish",
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export type LanguagesInterestType =
|
|
2
2
|
| 'arabic'
|
|
3
|
+
| 'chinese'
|
|
3
4
|
| 'dutch'
|
|
4
5
|
| 'english'
|
|
5
6
|
| 'french'
|
|
@@ -11,7 +12,6 @@ export type LanguagesInterestType =
|
|
|
11
12
|
| 'japanese'
|
|
12
13
|
| 'korean'
|
|
13
14
|
| 'malay'
|
|
14
|
-
| 'mandarin'
|
|
15
15
|
| 'portuguese'
|
|
16
16
|
| 'russian'
|
|
17
17
|
| 'spanish'
|
|
@@ -23,6 +23,7 @@ export type LanguagesInterestType =
|
|
|
23
23
|
|
|
24
24
|
export const ALL_LANGUAGES_INTERESTS: LanguagesInterestType[] = [
|
|
25
25
|
'arabic',
|
|
26
|
+
'chinese',
|
|
26
27
|
'dutch',
|
|
27
28
|
'english',
|
|
28
29
|
'french',
|
|
@@ -34,7 +35,6 @@ export const ALL_LANGUAGES_INTERESTS: LanguagesInterestType[] = [
|
|
|
34
35
|
'japanese',
|
|
35
36
|
'korean',
|
|
36
37
|
'malay',
|
|
37
|
-
'mandarin',
|
|
38
38
|
'portuguese',
|
|
39
39
|
'russian',
|
|
40
40
|
'spanish',
|