wenum 1.52.0 → 1.52.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 CHANGED
@@ -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
@@ -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
@@ -588,7 +588,8 @@ 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
package/dist/index.mjs CHANGED
@@ -511,7 +511,8 @@ 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.52.0",
3
+ "version": "1.52.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -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'