@microsoft/fabric-embedded-host 1.32.0 → 1.33.0-beta.1

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.
@@ -44,8 +44,8 @@ export declare class BridgeError extends SdkError {
44
44
  * 4. Resolves with the `result` on success or rejects with a
45
45
  * {@link BridgeError} on error/timeout.
46
46
  *
47
- * @typeParam TPayload Shape of the request payload.
48
- * @typeParam TResult Shape of the successful response result.
47
+ * @typeParam TPayload - Shape of the request payload.
48
+ * @typeParam TResult - Shape of the successful response result.
49
49
  */
50
50
  export declare function sendBridgeRequest<TPayload, TResult>(options: BridgeRequestOptions<TPayload>): Promise<TResult>;
51
51
  //# sourceMappingURL=postMessageBridge.d.ts.map
@@ -25,8 +25,8 @@ export class BridgeError extends SdkError {
25
25
  * 4. Resolves with the `result` on success or rejects with a
26
26
  * {@link BridgeError} on error/timeout.
27
27
  *
28
- * @typeParam TPayload Shape of the request payload.
29
- * @typeParam TResult Shape of the successful response result.
28
+ * @typeParam TPayload - Shape of the request payload.
29
+ * @typeParam TResult - Shape of the successful response result.
30
30
  */
31
31
  export function sendBridgeRequest(options) {
32
32
  const { target, channel, kind, payload, targetOrigin = '*', timeoutMs = DEFAULT_TIMEOUT_MS, } = options;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/fabric-embedded-host",
3
- "version": "1.32.0",
3
+ "version": "1.33.0-beta.1",
4
4
  "description": "Shared postMessage bridge protocol and embedded mode detection for Rayfin SDKs hosted inside Fabric iframes",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "type": "module",
14
14
  "dependencies": {
15
- "@microsoft/rayfin-lib": "1.32.0"
15
+ "@microsoft/rayfin-lib": "1.33.0-beta.1"
16
16
  },
17
17
  "devDependencies": {
18
18
  "typescript": "^5.8.3",