wenum 1.24.1 → 1.24.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 CHANGED
@@ -325,7 +325,8 @@ declare enum AttributeTypeCollectionPets {
325
325
  Mother = 3,
326
326
  Gender = 4,
327
327
  Height = 5,
328
- Weight = 6
328
+ Weight = 6,
329
+ Children = 7
329
330
  }
330
331
 
331
332
  type AttributeTypeCollection = AttributeTypeCollectionPets;
package/dist/index.d.ts CHANGED
@@ -325,7 +325,8 @@ declare enum AttributeTypeCollectionPets {
325
325
  Mother = 3,
326
326
  Gender = 4,
327
327
  Height = 5,
328
- Weight = 6
328
+ Weight = 6,
329
+ Children = 7
329
330
  }
330
331
 
331
332
  type AttributeTypeCollection = AttributeTypeCollectionPets;
package/dist/index.js CHANGED
@@ -457,6 +457,7 @@ var AttributeTypeCollectionPets = /* @__PURE__ */ ((AttributeTypeCollectionPets2
457
457
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Gender"] = 4] = "Gender";
458
458
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Height"] = 5] = "Height";
459
459
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Weight"] = 6] = "Weight";
460
+ AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Children"] = 7] = "Children";
460
461
  return AttributeTypeCollectionPets2;
461
462
  })(AttributeTypeCollectionPets || {});
462
463
 
package/dist/index.mjs CHANGED
@@ -386,6 +386,7 @@ var AttributeTypeCollectionPets = /* @__PURE__ */ ((AttributeTypeCollectionPets2
386
386
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Gender"] = 4] = "Gender";
387
387
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Height"] = 5] = "Height";
388
388
  AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Weight"] = 6] = "Weight";
389
+ AttributeTypeCollectionPets2[AttributeTypeCollectionPets2["Children"] = 7] = "Children";
389
390
  return AttributeTypeCollectionPets2;
390
391
  })(AttributeTypeCollectionPets || {});
391
392
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.24.1",
3
+ "version": "1.24.2",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -6,4 +6,5 @@ export enum AttributeTypeCollectionPets {
6
6
  Gender,
7
7
  Height,
8
8
  Weight,
9
+ Children,
9
10
  }