fraim-hub 2.0.293 → 2.0.295
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.
|
@@ -41,8 +41,14 @@ async function runMandatoryDesktopUpdateCheckOnce(options) {
|
|
|
41
41
|
return { action: 'download-failed', availableVersion, error: message };
|
|
42
42
|
}
|
|
43
43
|
try {
|
|
44
|
-
logger.info(`[fraim] desktop update ${availableVersion ?? 'unknown'} downloaded; installing`);
|
|
45
|
-
|
|
44
|
+
logger.info(`[fraim] desktop update ${availableVersion ?? 'unknown'} downloaded; installing silently`);
|
|
45
|
+
// Issue #1415 (follow-up): silent, not the interactive NSIS wizard - a native rebuild is not
|
|
46
|
+
// rare on this codebase (most Hub-owned changes trigger one), so an assisted install prompt
|
|
47
|
+
// here directly undercuts #1415's actual goal: the app updating itself seamlessly, with no
|
|
48
|
+
// action required. `oneClick: false` in the NSIS config still governs a user's own first,
|
|
49
|
+
// manual install from the website - that's a separate, deliberate choice and untouched here.
|
|
50
|
+
// electron-builder's NSIS installers support a silent `/S` apply regardless of that setting.
|
|
51
|
+
updater.quitAndInstall(true, true);
|
|
46
52
|
return { action: 'installing', availableVersion };
|
|
47
53
|
}
|
|
48
54
|
catch (error) {
|
|
@@ -99,7 +99,7 @@ exports.PERSONA_CAPABILITY_BUNDLES = {
|
|
|
99
99
|
personaKey: 'cela',
|
|
100
100
|
bundleId: 'persona-cela-core',
|
|
101
101
|
catalogMetadata: buildCatalogMetadata('cela', ['contract-review-analysis', 'nda-creation', 'saas-contract-package-creation']),
|
|
102
|
-
protectedJobs: ['contract-review-analysis', 'nda-creation', 'saas-contract-package-creation', 'trademark-registration-management', 'provisional-patent-application-creation', 'opensign-cloud-esign-dispatch', 'w9-creation', 'entity-type-selection', 'state-incorporation-filing', 'business-tax-registration', 'ein-application', 'cap-table-construction', 'founder-and-equity-agreements', 'ip-assignment-agreement-creation', 'employment-structure-decision'],
|
|
102
|
+
protectedJobs: ['contract-review-analysis', 'nda-creation', 'saas-contract-package-creation', 'trademark-registration-management', 'provisional-patent-application-creation', 'opensign-cloud-esign-dispatch', 'w9-creation', 'entity-type-selection', 'state-incorporation-filing', 'business-annual-report-filing', 'business-tax-registration', 'ein-application', 'cap-table-construction', 'founder-and-equity-agreements', 'ip-assignment-agreement-creation', 'employment-structure-decision'],
|
|
103
103
|
protectedAliases: ['legal', 'counsel'],
|
|
104
104
|
defaultHireMode: 'job',
|
|
105
105
|
lockCopy: 'Hire CELiA to unlock legal workflow support for this request.'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fraim-hub",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.295",
|
|
4
4
|
"description": "FRAIM Hub local companion package.",
|
|
5
5
|
"author": "Sid Mathur <sid.mathur@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/mathursrus/FRAIM#readme",
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
"electron-updater": "^6.8.9",
|
|
212
212
|
"express": "^5.2.1",
|
|
213
213
|
"extract-zip": "^2.0.1",
|
|
214
|
-
"fraim": "2.0.
|
|
214
|
+
"fraim": "2.0.295",
|
|
215
215
|
"mongodb": "^7.0.0",
|
|
216
216
|
"node-cron": "4.2.1",
|
|
217
217
|
"node-edge-tts": "^1.2.10",
|