@prosopo/procaptcha-frictionless 2.6.4 → 2.6.5
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 +12 -0
- package/dist/cjs/detectorLoader.cjs +23 -2
- package/package.json +4 -4
- package/dist/cjs/detector/dist/index.cjs +0 -1795
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @prosopo/procaptcha-frictionless
|
|
2
2
|
|
|
3
|
+
## 2.6.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5656b0c: Adding cypress tests for invisible
|
|
8
|
+
- 5656b0c: Adding all client examples to bundle example
|
|
9
|
+
- Updated dependencies [5656b0c]
|
|
10
|
+
- Updated dependencies [5656b0c]
|
|
11
|
+
- @prosopo/procaptcha-react@2.6.5
|
|
12
|
+
- @prosopo/procaptcha-pow@2.6.5
|
|
13
|
+
- @prosopo/detector@2.6.1
|
|
14
|
+
|
|
3
15
|
## 2.6.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
+
for (let key of __getOwnPropNames(from))
|
|
11
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
12
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
}
|
|
14
|
+
return to;
|
|
15
|
+
};
|
|
16
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
19
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
|
+
mod
|
|
23
|
+
));
|
|
2
24
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const
|
|
4
|
-
const DetectorLoader = async () => (await Promise.resolve().then(() => /* @__PURE__ */ _interopNamespaceDefaultOnly(require("./detector/dist/index.cjs")))).default;
|
|
25
|
+
const DetectorLoader = async () => (await import("@prosopo/detector")).default;
|
|
5
26
|
exports.DetectorLoader = DetectorLoader;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/procaptcha-frictionless",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.5",
|
|
4
4
|
"author": "PROSOPO LIMITED <info@prosopo.io>",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"> 0.5%, last 2 versions, not dead"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@prosopo/detector": "2.6.
|
|
31
|
+
"@prosopo/detector": "2.6.1",
|
|
32
32
|
"@prosopo/locale": "2.6.0",
|
|
33
|
-
"@prosopo/procaptcha-pow": "2.6.
|
|
34
|
-
"@prosopo/procaptcha-react": "2.6.
|
|
33
|
+
"@prosopo/procaptcha-pow": "2.6.5",
|
|
34
|
+
"@prosopo/procaptcha-react": "2.6.5",
|
|
35
35
|
"@prosopo/types": "2.7.0",
|
|
36
36
|
"@prosopo/widget-skeleton": "2.6.0",
|
|
37
37
|
"express": "4.21.2",
|