@xcpcio/core 0.66.2 → 0.68.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.cjs CHANGED
@@ -851,6 +851,9 @@ function createTeam(teamJSON) {
851
851
  {
852
852
  const tt = teamJSON;
853
853
  for (const key of Object.keys(tt)) {
854
+ if (key === "missing_photo") {
855
+ continue;
856
+ }
854
857
  if (tt[key] === 1 || tt[key] === true) {
855
858
  t.group.push(key);
856
859
  }
package/dist/index.mjs CHANGED
@@ -820,6 +820,9 @@ function createTeam(teamJSON) {
820
820
  {
821
821
  const tt = teamJSON;
822
822
  for (const key of Object.keys(tt)) {
823
+ if (key === "missing_photo") {
824
+ continue;
825
+ }
823
826
  if (tt[key] === 1 || tt[key] === true) {
824
827
  t.group.push(key);
825
828
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xcpcio/core",
3
3
  "type": "module",
4
- "version": "0.66.2",
4
+ "version": "0.68.0",
5
5
  "description": "The core library for XCPCIO",
6
6
  "author": "Dup4 <hi@dup4.com>",
7
7
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "papaparse": "^5.5.3",
43
43
  "string-width": "^8.1.0",
44
44
  "xlsx-js-style": "^1.2.0",
45
- "@xcpcio/types": "0.66.2"
45
+ "@xcpcio/types": "0.68.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@babel/types": "^7.28.4",