@vrplatform/api 1.3.1-stage.4841 → 1.3.1-stage.4843

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.4841",
6
+ "version": "1.3.1-stage.4843",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2189,7 +2189,7 @@ export interface paths {
2189
2189
  */
2190
2190
  get: operations["getMe"];
2191
2191
  /**
2192
- * @description Update the authenticated user's first and/or last name. Values are trimmed, persisted synchronously, and returned in the same user shape as GET /me.
2192
+ * @description Update the authenticated user's first and/or last name and/or set lastSeen to the server's current time. Names are trimmed, changes are persisted synchronously to the control plane, and the existing GET /me user shape is returned.
2193
2193
  *
2194
2194
  * Required scope: self:write
2195
2195
  */
@@ -54280,6 +54280,8 @@ export interface operations {
54280
54280
  "application/json": {
54281
54281
  firstName?: string;
54282
54282
  lastName?: string;
54283
+ /** @constant */
54284
+ touchLastSeen?: true;
54283
54285
  };
54284
54286
  };
54285
54287
  };