@azure/identity-broker 1.1.1-alpha.20241125.1 → 1.1.1-alpha.20241126.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/identity-broker",
3
- "version": "1.1.1-alpha.20241125.1",
3
+ "version": "1.1.1-alpha.20241126.1",
4
4
  "sdk-type": "client",
5
5
  "description": "A native plugin for Azure Identity credentials to enable broker authentication such as WAM",
6
6
  "main": "./dist/commonjs/index.js",
@@ -1,26 +0,0 @@
1
- import type { IdentityPlugin } from '@azure/identity';
2
-
3
- /**
4
- * A plugin that provides WAM Integration for `@azure/identity`
5
- * credentials. The plugin API is compatible with `@azure/identity` versions
6
- * 4.0.0 and later. Load this plugin using the `useIdentityPlugin`
7
- * function, imported from `@azure/identity`.
8
- *
9
- * Example:
10
- *
11
- * ```ts snippet:using_plugins
12
- * import { useIdentityPlugin, InteractiveBrowserCredential } from "@azure/identity";
13
- * import { nativeBrokerPlugin } from "@azure/identity-broker";
14
- *
15
- * useIdentityPlugin(nativeBrokerPlugin);
16
- * const credential = new InteractiveBrowserCredential({
17
- * brokerOptions: {
18
- * enabled: true,
19
- * parentWindowHandle: new Uint8Array(0), // This should be a handle to the parent window
20
- * },
21
- * });
22
- * ```
23
- */
24
- export declare const nativeBrokerPlugin: IdentityPlugin;
25
-
26
- export { }