@striae-org/striae 5.4.4 → 5.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@striae-org/striae",
3
- "version": "5.4.4",
3
+ "version": "5.4.5",
4
4
  "private": false,
5
5
  "description": "Striae is a specialized, cloud-native platform designed to streamline forensic firearms identification by providing an intuitive environment for digital comparison image annotation, authenticated confirmations, and automated report generation.",
6
6
  "license": "Apache-2.0",
@@ -100,18 +100,18 @@
100
100
  "deploy-workers:user": "cd workers/user-worker && npm run deploy"
101
101
  },
102
102
  "dependencies": {
103
- "@react-router/cloudflare": "^7.13.2",
103
+ "@react-router/cloudflare": "^7.14.0",
104
104
  "firebase": "^12.11.0",
105
105
  "isbot": "^5.1.37",
106
106
  "jszip": "^3.10.1",
107
107
  "qrcode": "^1.5.4",
108
108
  "react": "^19.2.4",
109
109
  "react-dom": "^19.2.4",
110
- "react-router": "^7.13.2"
110
+ "react-router": "^7.14.0"
111
111
  },
112
112
  "devDependencies": {
113
- "@react-router/dev": "^7.13.2",
114
- "@react-router/fs-routes": "^7.13.2",
113
+ "@react-router/dev": "^7.14.0",
114
+ "@react-router/fs-routes": "^7.14.0",
115
115
  "@types/qrcode": "^1.5.6",
116
116
  "@types/react": "^19.2.14",
117
117
  "@types/react-dom": "^19.2.3",
@@ -139,4 +139,4 @@
139
139
  "node": ">=20.0.0"
140
140
  },
141
141
  "packageManager": "npm@11.11.0"
142
- }
142
+ }
@@ -41,7 +41,7 @@ try {
41
41
  {
42
42
  state: 'ENABLED',
43
43
  totpProviderConfig: {
44
- adjacentIntervals: 5,
44
+ adjacentIntervals: 0,
45
45
  },
46
46
  },
47
47
  ],
@@ -49,7 +49,7 @@ try {
49
49
  });
50
50
 
51
51
  console.log('✅ TOTP MFA provider enabled successfully.');
52
- console.log(' adjacentIntervals: 5 (allows ±2.5 minutes clock skew)');
52
+ console.log(' adjacentIntervals: 0 (accepts only the current TOTP interval; no adjacent interval tolerance)');
53
53
  } catch (err) {
54
54
  console.error('\n❌ Failed to enable TOTP MFA provider:');
55
55
  console.error(err?.message ?? err);
@@ -7,7 +7,7 @@
7
7
  "name": "AUDIT_WORKER_NAME",
8
8
  "account_id": "ACCOUNT_ID",
9
9
  "main": "src/audit-worker.ts",
10
- "compatibility_date": "2026-04-02",
10
+ "compatibility_date": "2026-04-03",
11
11
  "compatibility_flags": [
12
12
  "nodejs_compat"
13
13
  ],
@@ -5,7 +5,7 @@
5
5
  "name": "DATA_WORKER_NAME",
6
6
  "account_id": "ACCOUNT_ID",
7
7
  "main": "src/data-worker.ts",
8
- "compatibility_date": "2026-04-02",
8
+ "compatibility_date": "2026-04-03",
9
9
  "compatibility_flags": [
10
10
  "nodejs_compat"
11
11
  ],
@@ -2,7 +2,7 @@
2
2
  "name": "IMAGES_WORKER_NAME",
3
3
  "account_id": "ACCOUNT_ID",
4
4
  "main": "src/image-worker.ts",
5
- "compatibility_date": "2026-04-02",
5
+ "compatibility_date": "2026-04-03",
6
6
  "compatibility_flags": [
7
7
  "nodejs_compat"
8
8
  ],
@@ -2,7 +2,7 @@
2
2
  "name": "PDF_WORKER_NAME",
3
3
  "account_id": "ACCOUNT_ID",
4
4
  "main": "src/pdf-worker.ts",
5
- "compatibility_date": "2026-04-02",
5
+ "compatibility_date": "2026-04-03",
6
6
  "compatibility_flags": [
7
7
  "nodejs_compat"
8
8
  ],
@@ -2,7 +2,7 @@
2
2
  "name": "USER_WORKER_NAME",
3
3
  "account_id": "ACCOUNT_ID",
4
4
  "main": "src/user-worker.ts",
5
- "compatibility_date": "2026-04-02",
5
+ "compatibility_date": "2026-04-03",
6
6
  "compatibility_flags": [
7
7
  "nodejs_compat"
8
8
  ],
@@ -1,6 +1,6 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "PAGES_PROJECT_NAME"
3
- compatibility_date = "2026-04-02"
3
+ compatibility_date = "2026-04-03"
4
4
  compatibility_flags = ["nodejs_compat"]
5
5
  pages_build_output_dir = "./build/client"
6
6