@atlaskit/outbound-auth-flow-client 3.3.1 → 3.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/outbound-auth-flow-client
2
2
 
3
+ ## 3.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
8
+
3
9
  ## 3.3.1
4
10
 
5
11
  ### Patch Changes
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/outbound-auth-flow-client",
3
- "version": "3.3.1"
3
+ "version": "3.3.2"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/outbound-auth-flow-client",
3
- "version": "3.3.1"
3
+ "version": "3.3.2"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/outbound-auth-flow-client",
3
- "version": "3.3.1"
3
+ "version": "3.3.2"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/outbound-auth-flow-client",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Front-end library for starting outbound auth flows",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -27,7 +27,7 @@
27
27
  "devDependencies": {
28
28
  "@atlaskit/docs": "*",
29
29
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
30
- "typescript": "4.2.4"
30
+ "typescript": "4.3.5"
31
31
  },
32
32
  "keywords": [
33
33
  "fabric",
package/report.api.md ADDED
@@ -0,0 +1,31 @@
1
+ ## API Report File for "@atlaskit/outbound-auth-flow-client".
2
+
3
+ > Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
6
+
7
+ ```ts
8
+ export declare function auth(
9
+ startUrl: string,
10
+ windowFeatures?: string,
11
+ ): Promise<void>;
12
+
13
+ export declare class AuthError extends Error {
14
+ readonly message: string;
15
+ readonly type?: AuthErrorType | undefined;
16
+ constructor(message: string, type?: AuthErrorType | undefined);
17
+ }
18
+
19
+ declare type AuthErrorType =
20
+ | 'auth_window_closed'
21
+ | 'invalid_request'
22
+ | 'unauthorized_client'
23
+ | 'access_denied'
24
+ | 'unsupported_response_type'
25
+ | 'invalid_scope'
26
+ | 'server_error'
27
+ | 'temporarily_unavailable'
28
+ | 'authclientoauth2.autherror';
29
+
30
+ export {};
31
+ ```