wenum 1.52.0 → 1.53.0

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
@@ -255,7 +255,7 @@ declare enum SubjectType {
255
255
  Reply = 4
256
256
  }
257
257
 
258
- type CategoryType = 'sports' | 'pets' | 'cardgames' | 'boardgames' | 'music' | 'travel' | 'dancing' | 'language' | 'food' | 'drinks' | 'photography' | '';
258
+ type CategoryType = '1_sports' | '2_pets' | '3_cardgames' | 'boardgames' | 'music' | 'travel' | 'dancing' | 'language' | 'food' | 'drinks' | 'photography' | '';
259
259
 
260
260
  type CardGamesInterestType = 'texasholdem' | 'omaha' | 'blackjack';
261
261
 
@@ -322,7 +322,7 @@ declare const ATTRIBUTE_LABEL_UOI: Partial<Record<CategoryType, any>>;
322
322
 
323
323
  type AttributeTypeUoi = AttributeTypeUoiSports;
324
324
 
325
- type AttributeTypeCollectionPets = 'breed' | 'father' | 'mother' | 'gender' | 'height' | 'weight' | 'children';
325
+ type AttributeTypeCollectionPets = 'dob' | 'breed' | 'father' | 'mother' | 'gender' | 'height' | 'weight' | 'children';
326
326
 
327
327
  declare const ATTRIBUTE_LABEL_COLLECTION_PETS: Record<AttributeTypeCollectionPets, string>;
328
328
 
package/dist/index.d.ts CHANGED
@@ -255,7 +255,7 @@ declare enum SubjectType {
255
255
  Reply = 4
256
256
  }
257
257
 
258
- type CategoryType = 'sports' | 'pets' | 'cardgames' | 'boardgames' | 'music' | 'travel' | 'dancing' | 'language' | 'food' | 'drinks' | 'photography' | '';
258
+ type CategoryType = '1_sports' | '2_pets' | '3_cardgames' | 'boardgames' | 'music' | 'travel' | 'dancing' | 'language' | 'food' | 'drinks' | 'photography' | '';
259
259
 
260
260
  type CardGamesInterestType = 'texasholdem' | 'omaha' | 'blackjack';
261
261
 
@@ -322,7 +322,7 @@ declare const ATTRIBUTE_LABEL_UOI: Partial<Record<CategoryType, any>>;
322
322
 
323
323
  type AttributeTypeUoi = AttributeTypeUoiSports;
324
324
 
325
- type AttributeTypeCollectionPets = 'breed' | 'father' | 'mother' | 'gender' | 'height' | 'weight' | 'children';
325
+ type AttributeTypeCollectionPets = 'dob' | 'breed' | 'father' | 'mother' | 'gender' | 'height' | 'weight' | 'children';
326
326
 
327
327
  declare const ATTRIBUTE_LABEL_COLLECTION_PETS: Record<AttributeTypeCollectionPets, string>;
328
328
 
package/dist/index.js CHANGED
@@ -577,7 +577,7 @@ var ATTRIBUTE_LABEL_UOI_SPORTS = {
577
577
 
578
578
  // src/meta/uoi/label.ts
579
579
  var ATTRIBUTE_LABEL_UOI = {
580
- sports: ATTRIBUTE_LABEL_UOI_SPORTS
580
+ "1_sports": ATTRIBUTE_LABEL_UOI_SPORTS
581
581
  };
582
582
 
583
583
  // src/meta/collection/pets/label.ts
@@ -588,12 +588,13 @@ var ATTRIBUTE_LABEL_COLLECTION_PETS = {
588
588
  gender: "Gender",
589
589
  height: "Height",
590
590
  weight: "Weight",
591
- children: "Children"
591
+ children: "Children",
592
+ dob: "Date of Birth"
592
593
  };
593
594
 
594
595
  // src/meta/collection/label.ts
595
596
  var ATTRIBUTE_LABEL_COLLECTION = {
596
- pets: ATTRIBUTE_LABEL_COLLECTION_PETS
597
+ "2_pets": ATTRIBUTE_LABEL_COLLECTION_PETS
597
598
  };
598
599
 
599
600
  // src/meta/label.ts
package/dist/index.mjs CHANGED
@@ -500,7 +500,7 @@ var ATTRIBUTE_LABEL_UOI_SPORTS = {
500
500
 
501
501
  // src/meta/uoi/label.ts
502
502
  var ATTRIBUTE_LABEL_UOI = {
503
- sports: ATTRIBUTE_LABEL_UOI_SPORTS
503
+ "1_sports": ATTRIBUTE_LABEL_UOI_SPORTS
504
504
  };
505
505
 
506
506
  // src/meta/collection/pets/label.ts
@@ -511,12 +511,13 @@ var ATTRIBUTE_LABEL_COLLECTION_PETS = {
511
511
  gender: "Gender",
512
512
  height: "Height",
513
513
  weight: "Weight",
514
- children: "Children"
514
+ children: "Children",
515
+ dob: "Date of Birth"
515
516
  };
516
517
 
517
518
  // src/meta/collection/label.ts
518
519
  var ATTRIBUTE_LABEL_COLLECTION = {
519
- pets: ATTRIBUTE_LABEL_COLLECTION_PETS
520
+ "2_pets": ATTRIBUTE_LABEL_COLLECTION_PETS
520
521
  };
521
522
 
522
523
  // src/meta/label.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.52.0",
3
+ "version": "1.53.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,7 @@
1
1
  export type CategoryType =
2
- | 'sports'
3
- | 'pets'
4
- | 'cardgames'
2
+ | '1_sports'
3
+ | '2_pets'
4
+ | '3_cardgames'
5
5
  | 'boardgames'
6
6
  | 'music'
7
7
  | 'travel'
@@ -2,5 +2,5 @@ import { CategoryType } from 'src/interest';
2
2
  import { ATTRIBUTE_LABEL_COLLECTION_PETS } from './pets';
3
3
 
4
4
  export const ATTRIBUTE_LABEL_COLLECTION: Partial<Record<CategoryType, any>> = {
5
- pets: ATTRIBUTE_LABEL_COLLECTION_PETS
5
+ '2_pets': ATTRIBUTE_LABEL_COLLECTION_PETS
6
6
  };
@@ -7,5 +7,6 @@ export const ATTRIBUTE_LABEL_COLLECTION_PETS: Record<AttributeTypeCollectionPets
7
7
  gender: 'Gender',
8
8
  height: 'Height',
9
9
  weight: 'Weight',
10
- children: 'Children'
10
+ children: 'Children',
11
+ dob: 'Date of Birth',
11
12
  };
@@ -1,4 +1,4 @@
1
- export type AttributeTypeCollectionPets =
1
+ export type AttributeTypeCollectionPets = 'dob'
2
2
  | 'breed'
3
3
  | 'father'
4
4
  | 'mother'
@@ -2,5 +2,5 @@ import { CategoryType } from 'src/interest';
2
2
  import { ATTRIBUTE_LABEL_UOI_SPORTS } from './sports';
3
3
 
4
4
  export const ATTRIBUTE_LABEL_UOI: Partial<Record<CategoryType, any>> = {
5
- sports: ATTRIBUTE_LABEL_UOI_SPORTS,
5
+ '1_sports': ATTRIBUTE_LABEL_UOI_SPORTS,
6
6
  };