@asgardeo/browser 0.2.7 → 0.2.9
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/dist/__legacy__/http-client/helpers/decorators.d.ts +1 -1
- package/dist/__legacy__/models/http-client.d.ts +2 -2
- package/dist/cjs/index.js +49 -52
- package/dist/cjs/index.js.map +4 -4
- package/dist/index.js +34 -44
- package/dist/index.js.map +4 -4
- package/dist/utils/http.d.ts +3 -14
- package/dist/web.worker.d.ts +2 -2
- package/package.json +3 -3
package/dist/utils/http.d.ts
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
* specific language governing permissions and limitations
|
|
16
16
|
* under the License.
|
|
17
17
|
*/
|
|
18
|
+
import { AsgardeoSPAClient } from '../__legacy__/client';
|
|
18
19
|
/**
|
|
19
20
|
* HTTP utility for making requests using the AsgardeoSPAClient instance.
|
|
20
21
|
*
|
|
@@ -22,19 +23,7 @@
|
|
|
22
23
|
* This utility provides methods to make single or multiple HTTP requests.
|
|
23
24
|
*/
|
|
24
25
|
declare const http: {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
*
|
|
28
|
-
* @param config - The HTTP request configuration object.
|
|
29
|
-
* @returns A promise resolving to the HTTP response.
|
|
30
|
-
*/
|
|
31
|
-
request: any;
|
|
32
|
-
/**
|
|
33
|
-
* Makes multiple HTTP requests in parallel using the AsgardeoSPAClient instance.
|
|
34
|
-
*
|
|
35
|
-
* @param configs - An array of HTTP request configuration objects.
|
|
36
|
-
* @returns A promise resolving to an array of HTTP responses.
|
|
37
|
-
*/
|
|
38
|
-
requestAll: any;
|
|
26
|
+
request: typeof AsgardeoSPAClient.prototype.httpRequest;
|
|
27
|
+
requestAll: typeof AsgardeoSPAClient.prototype.httpRequestAll;
|
|
39
28
|
};
|
|
40
29
|
export default http;
|
package/dist/web.worker.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
|
|
3
3
|
*
|
|
4
|
-
* WSO2
|
|
4
|
+
* WSO2 LLC. licenses this file to you under the Apache License,
|
|
5
5
|
* Version 2.0 (the "License"); you may not use this file except
|
|
6
6
|
* in compliance with the License.
|
|
7
7
|
* You may obtain a copy of the License at
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asgardeo/browser",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "Browser-specific implementation of Asgardeo JavaScript SDK.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"asgardeo",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"vitest": "3.1.3"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"axios": "
|
|
52
|
+
"axios": "1.13.5",
|
|
53
53
|
"base64url": "3.0.1",
|
|
54
54
|
"buffer": "6.0.3",
|
|
55
55
|
"core-js": "3.42.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"randombytes": "2.1.0",
|
|
62
62
|
"stream-browserify": "3.0.0",
|
|
63
63
|
"tslib": "2.8.1",
|
|
64
|
-
"@asgardeo/javascript": "0.7.
|
|
64
|
+
"@asgardeo/javascript": "0.7.2"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|