@vrplatform/api 1.3.1-4567 → 1.3.1-4599

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-4567",
6
+ "version": "1.3.1-4599",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -552,7 +552,7 @@ export interface paths {
552
552
  };
553
553
  get?: never;
554
554
  put?: never;
555
- /** @description Connect an app and create the connection. Provider integrations must return stable account identity. The built-in API app receives server-generated connection identity. */
555
+ /** @description Connect an app and create the connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. The legacy production /callback path is normalized to /callback/. Provider integrations must return stable account identity. The built-in API app receives server-generated connection identity. */
556
556
  post: operations["connectAppConnection"];
557
557
  delete?: never;
558
558
  options?: never;
@@ -586,7 +586,7 @@ export interface paths {
586
586
  };
587
587
  get?: never;
588
588
  put?: never;
589
- /** @description Get a redirect URL to connect an app through OAuth2.0 */
589
+ /** @description Get a redirect URL to connect an app through OAuth2.0. Defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. Normalizes the legacy production /callback path to /callback/. */
590
590
  post: operations["connectConnection"];
591
591
  delete?: never;
592
592
  options?: never;
@@ -673,7 +673,7 @@ export interface paths {
673
673
  };
674
674
  get?: never;
675
675
  put?: never;
676
- /** @description Reconnect an existing app connection. The built-in API app preserves its existing server-generated identity. */
676
+ /** @description Reconnect an existing app connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. The legacy production /callback path is normalized to /callback/. The built-in API app preserves its existing server-generated identity. */
677
677
  post: operations["reconnectAppConnection"];
678
678
  delete?: never;
679
679
  options?: never;
@@ -14918,10 +14918,7 @@ export interface operations {
14918
14918
  content: {
14919
14919
  "application/json": {
14920
14920
  appId: string;
14921
- /**
14922
- * Format: uri
14923
- * @default https://portal.vrplatform.app
14924
- */
14921
+ /** Format: uri */
14925
14922
  redirectTo?: string;
14926
14923
  };
14927
14924
  };