@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.
|
@@ -551,7 +551,7 @@ export interface paths {
|
|
|
551
551
|
};
|
|
552
552
|
get?: never;
|
|
553
553
|
put?: never;
|
|
554
|
-
/** @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. */
|
|
554
|
+
/** @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. */
|
|
555
555
|
post: operations["connectAppConnection"];
|
|
556
556
|
delete?: never;
|
|
557
557
|
options?: never;
|
|
@@ -585,7 +585,7 @@ export interface paths {
|
|
|
585
585
|
};
|
|
586
586
|
get?: never;
|
|
587
587
|
put?: never;
|
|
588
|
-
/** @description Get a redirect URL to connect an app through OAuth2.0 */
|
|
588
|
+
/** @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/. */
|
|
589
589
|
post: operations["connectConnection"];
|
|
590
590
|
delete?: never;
|
|
591
591
|
options?: never;
|
|
@@ -672,7 +672,7 @@ export interface paths {
|
|
|
672
672
|
};
|
|
673
673
|
get?: never;
|
|
674
674
|
put?: never;
|
|
675
|
-
/** @description Reconnect an existing app connection. The built-in API app preserves its existing server-generated identity. */
|
|
675
|
+
/** @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. */
|
|
676
676
|
post: operations["reconnectAppConnection"];
|
|
677
677
|
delete?: never;
|
|
678
678
|
options?: never;
|
|
@@ -14917,10 +14917,7 @@ export interface operations {
|
|
|
14917
14917
|
content: {
|
|
14918
14918
|
"application/json": {
|
|
14919
14919
|
appId: string;
|
|
14920
|
-
/**
|
|
14921
|
-
* Format: uri
|
|
14922
|
-
* @default https://portal.vrplatform.app
|
|
14923
|
-
*/
|
|
14920
|
+
/** Format: uri */
|
|
14924
14921
|
redirectTo?: string;
|
|
14925
14922
|
};
|
|
14926
14923
|
};
|