@vrplatform/api 1.3.1-stage.4255 → 1.3.1-stage.4259

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.4255",
6
+ "version": "1.3.1-stage.4259",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -22704,6 +22704,8 @@ export interface operations {
22704
22704
  * @enum {string}
22705
22705
  */
22706
22706
  role?: "admin" | "user" | "owner";
22707
+ /** @enum {string} */
22708
+ status?: "active" | "inactive" | "unconfirmed";
22707
22709
  };
22708
22710
  };
22709
22711
  };
@@ -22725,6 +22727,7 @@ export interface operations {
22725
22727
  /** Format: uuid */
22726
22728
  tenantId: string;
22727
22729
  role: string | null;
22730
+ status: string | null;
22728
22731
  }[];
22729
22732
  };
22730
22733
  };
@@ -22872,6 +22875,8 @@ export interface operations {
22872
22875
  * @enum {string}
22873
22876
  */
22874
22877
  role?: "admin" | "user" | "owner";
22878
+ /** @enum {string} */
22879
+ status?: "active" | "inactive" | "unconfirmed";
22875
22880
  };
22876
22881
  };
22877
22882
  };
@@ -22893,6 +22898,7 @@ export interface operations {
22893
22898
  /** Format: uuid */
22894
22899
  tenantId: string;
22895
22900
  role: string | null;
22901
+ status: string | null;
22896
22902
  }[];
22897
22903
  };
22898
22904
  };