@useparagon/connect 2.1.2 → 2.1.4-experimental.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.
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
12
|
+
* Released under the MIT License.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*!
|
|
16
|
+
* isobject <https://github.com/jonschlinkert/isobject>
|
|
17
|
+
*
|
|
18
|
+
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
19
|
+
* Released under the MIT License.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/*!
|
|
23
|
+
* shallow-clone <https://github.com/jonschlinkert/shallow-clone>
|
|
24
|
+
*
|
|
25
|
+
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
26
|
+
* Released under the MIT License.
|
|
27
|
+
*/
|
|
28
|
+
|
|
1
29
|
/*! *****************************************************************************
|
|
2
30
|
Copyright (c) Microsoft Corporation.
|
|
3
31
|
|
|
@@ -12,3 +40,5 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
12
40
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
13
41
|
PERFORMANCE OF THIS SOFTWARE.
|
|
14
42
|
***************************************************************************** */
|
|
43
|
+
|
|
44
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function cloneDeep<T>(obj: T): T;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useparagon/connect",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-experimental.1",
|
|
4
4
|
"description": "Embed integrations into your app with the Paragon SDK",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"typecheck": "tsc -p tsconfig.json"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
+
"clone-deep": "^4.0.1",
|
|
33
34
|
"hash.js": "^1.1.7",
|
|
34
35
|
"jwt-decode": "^3.1.2",
|
|
35
36
|
"react": "^17.0.2",
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
"@babel/preset-react": "^7.12.5",
|
|
42
43
|
"@testing-library/jest-dom": "^5.14.1",
|
|
43
44
|
"@testing-library/react": "^12.1.0",
|
|
45
|
+
"@types/clone-deep": "^4.0.4",
|
|
44
46
|
"@types/gapi": "^0.0.47",
|
|
45
47
|
"@types/google.picker": "^0.0.42",
|
|
46
48
|
"@types/jest": "^29.5.1",
|