@prosopo/detector 2.6.1 → 3.0.3
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 +43 -0
- package/dist/index.d.ts +17 -4
- package/dist/index.js +15 -1114
- package/package.json +19 -15
- package/vite.cjs.config.ts +3 -4
- package/{src/index.d.ts → vite.esm.config.ts} +6 -4
- package/vite.test.config.ts +32 -0
- package/dist/cjs/index.cjs +0 -1784
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/src/index.js +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @prosopo/detector
|
|
2
2
|
|
|
3
|
+
## 3.0.3
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- 828066d: remove empty test npm scripts, add missing npm test scripts
|
|
7
|
+
- 91bbe87: configure typecheck before bundle for vue packages
|
|
8
|
+
- 91bbe87: make typecheck script always recompile
|
|
9
|
+
- Updated dependencies [828066d]
|
|
10
|
+
- Updated dependencies [91bbe87]
|
|
11
|
+
- Updated dependencies [3ef4fd2]
|
|
12
|
+
- Updated dependencies [91bbe87]
|
|
13
|
+
- Updated dependencies [346e092]
|
|
14
|
+
- Updated dependencies [5d36e05]
|
|
15
|
+
- @prosopo/config@3.1.3
|
|
16
|
+
|
|
17
|
+
## 3.0.2
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- eb71691: configure typecheck before bundle for vue packages
|
|
21
|
+
- eb71691: make typecheck script always recompile
|
|
22
|
+
- Updated dependencies [eb71691]
|
|
23
|
+
- Updated dependencies [eb71691]
|
|
24
|
+
- @prosopo/config@3.1.2
|
|
25
|
+
|
|
26
|
+
## 3.0.1
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 2f0c830: Remove node-fetch
|
|
30
|
+
- 93d5e50: ensure packages have @prosopo/config as dep for vite configs
|
|
31
|
+
- 3573f0b: fix npm scripts bundle command
|
|
32
|
+
- 3573f0b: build using vite, typecheck using tsc
|
|
33
|
+
- efd8102: Add tests for unwrap error helper
|
|
34
|
+
- 3573f0b: standardise all vite based npm scripts for bundling
|
|
35
|
+
- Updated dependencies [3573f0b]
|
|
36
|
+
- Updated dependencies [3573f0b]
|
|
37
|
+
- Updated dependencies [3573f0b]
|
|
38
|
+
- Updated dependencies [2d0dd8a]
|
|
39
|
+
- @prosopo/config@3.1.1
|
|
40
|
+
|
|
41
|
+
## 3.0.0
|
|
42
|
+
### Major Changes
|
|
43
|
+
|
|
44
|
+
- 64b5bcd: Access Controls
|
|
45
|
+
|
|
3
46
|
## 2.6.1
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// Copyright 2021-2025 Prosopo (UK) Ltd.
|
|
2
|
+
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
|
|
15
|
+
export function detect(): Promise<{
|
|
16
|
+
token: string;
|
|
4
17
|
}>;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|