@htmlbricks/hb-auth-social-login-button 0.60.10 → 0.60.11

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/manifest.json CHANGED
@@ -65,7 +65,8 @@
65
65
  "facebook",
66
66
  "google",
67
67
  "gitlab",
68
- "github"
68
+ "github",
69
+ "authentik"
69
70
  ],
70
71
  "type": "string"
71
72
  }
@@ -87,6 +88,9 @@
87
88
  "provider": {
88
89
  "additionalProperties": false,
89
90
  "properties": {
91
+ "auth_server_url": {
92
+ "type": "string"
93
+ },
90
94
  "name": {
91
95
  "$ref": "#/definitions/IProvider"
92
96
  },
@@ -136,7 +140,8 @@
136
140
  "facebook",
137
141
  "google",
138
142
  "gitlab",
139
- "github"
143
+ "github",
144
+ "authentik"
140
145
  ],
141
146
  "type": "string"
142
147
  }
@@ -272,5 +277,5 @@
272
277
  },
273
278
  "iifePath": "main.iife.js",
274
279
  "repoName": "@htmlbricks/hb-auth-social-login-button",
275
- "version": "0.60.10"
280
+ "version": "0.60.11"
276
281
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-auth-social-login-button",
3
- "version": "0.60.10",
3
+ "version": "0.60.11",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [
@@ -14,6 +14,9 @@
14
14
  "provider": {
15
15
  "additionalProperties": false,
16
16
  "properties": {
17
+ "auth_server_url": {
18
+ "type": "string"
19
+ },
17
20
  "name": {
18
21
  "$ref": "#/definitions/IProvider"
19
22
  },
@@ -63,7 +66,8 @@
63
66
  "facebook",
64
67
  "google",
65
68
  "gitlab",
66
- "github"
69
+ "github",
70
+ "authentik"
67
71
  ],
68
72
  "type": "string"
69
73
  }
@@ -1,4 +1,4 @@
1
- type IProvider = "facebook" | "google" | "gitlab" | "github";
1
+ type IProvider = "facebook" | "google" | "gitlab" | "github" | "authentik";
2
2
 
3
3
  export type Component = {
4
4
  id?: string;
@@ -14,6 +14,7 @@ export type Component = {
14
14
  client_id: string;
15
15
  scope: string;
16
16
  };
17
+ auth_server_url?: string;
17
18
  } | undefined;
18
19
  };
19
20
 
@@ -63,7 +63,8 @@
63
63
  "facebook",
64
64
  "google",
65
65
  "gitlab",
66
- "github"
66
+ "github",
67
+ "authentik"
67
68
  ],
68
69
  "type": "string"
69
70
  }