@openfin/node-adapter 42.100.77 → 42.100.82
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/out/node-adapter.js +10 -10
- package/package.json +2 -2
- package/resources/darwin/OpenFinRVM.app/Contents/CodeResources +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/Info.plist +2 -2
- package/resources/darwin/OpenFinRVM.app/Contents/MacOS/OpenFinRVM +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/_CodeSignature/CodeResources +0 -9
- package/resources/win/x64/OpenFinRVM.exe +0 -0
- package/resources/win/{OpenFinRVM.exe → x86/OpenFinRVM.exe} +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/Info.plist +0 -29
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/MacOS/FinLinksHandler +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/PkgInfo +0 -1
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/Resources/OpenFinRVM.icns +0 -0
- package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/_CodeSignature/CodeResources +0 -128
package/out/node-adapter.js
CHANGED
@@ -2217,7 +2217,7 @@ function requireInstance$2 () {
|
|
2217
2217
|
* @experimental
|
2218
2218
|
*/
|
2219
2219
|
this.getParentLayout = async () => {
|
2220
|
-
this.wire.sendAction('view-get-parent-layout'
|
2220
|
+
this.wire.sendAction('view-get-parent-layout').catch(() => {
|
2221
2221
|
// don't expose
|
2222
2222
|
});
|
2223
2223
|
return this.fin.Platform.Layout.getLayoutByViewIdentity(this.identity);
|
@@ -3679,7 +3679,7 @@ function requireInstance () {
|
|
3679
3679
|
super(wire, identity, 'window');
|
3680
3680
|
}
|
3681
3681
|
async createWindow(options) {
|
3682
|
-
this.wire.sendAction('window-create-window'
|
3682
|
+
this.wire.sendAction('window-create-window').catch((e) => {
|
3683
3683
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
3684
3684
|
});
|
3685
3685
|
const CONSTRUCTOR_CB_TOPIC = 'fire-constructor-callback';
|
@@ -4124,7 +4124,7 @@ function requireInstance () {
|
|
4124
4124
|
* @experimental
|
4125
4125
|
*/
|
4126
4126
|
async getLayout(layoutIdentity) {
|
4127
|
-
this.wire.sendAction('window-get-layout'
|
4127
|
+
this.wire.sendAction('window-get-layout').catch((e) => {
|
4128
4128
|
// don't expose
|
4129
4129
|
});
|
4130
4130
|
const opts = await this.getOptions();
|
@@ -4175,7 +4175,7 @@ function requireInstance () {
|
|
4175
4175
|
* ```
|
4176
4176
|
*/
|
4177
4177
|
getParentApplication() {
|
4178
|
-
this.wire.sendAction('window-get-parent-application'
|
4178
|
+
this.wire.sendAction('window-get-parent-application').catch((e) => {
|
4179
4179
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
4180
4180
|
});
|
4181
4181
|
return Promise.resolve(new application_1.Application(this.wire, this.identity));
|
@@ -4200,7 +4200,7 @@ function requireInstance () {
|
|
4200
4200
|
* ```
|
4201
4201
|
*/
|
4202
4202
|
getParentWindow() {
|
4203
|
-
this.wire.sendAction('window-get-parent-window'
|
4203
|
+
this.wire.sendAction('window-get-parent-window').catch((e) => {
|
4204
4204
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
4205
4205
|
});
|
4206
4206
|
return Promise.resolve(new application_1.Application(this.wire, this.identity)).then((app) => app.getWindow());
|
@@ -4306,7 +4306,7 @@ function requireInstance () {
|
|
4306
4306
|
* ```
|
4307
4307
|
*/
|
4308
4308
|
getWebWindow() {
|
4309
|
-
this.wire.sendAction('window-get-web-window'
|
4309
|
+
this.wire.sendAction('window-get-web-window').catch((e) => {
|
4310
4310
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
4311
4311
|
});
|
4312
4312
|
return this.wire.environment.getWebWindow(this.identity);
|
@@ -4322,7 +4322,7 @@ function requireInstance () {
|
|
4322
4322
|
* ```
|
4323
4323
|
*/
|
4324
4324
|
isMainWindow() {
|
4325
|
-
this.wire.sendAction('window-is-main-window'
|
4325
|
+
this.wire.sendAction('window-is-main-window').catch((e) => {
|
4326
4326
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
4327
4327
|
});
|
4328
4328
|
return this.me.uuid === this.me.name;
|
@@ -4843,7 +4843,7 @@ function requireInstance () {
|
|
4843
4843
|
* ```
|
4844
4844
|
*/
|
4845
4845
|
async dispatchPopupResult(data) {
|
4846
|
-
this.wire.sendAction('window-dispatch-popup-result'
|
4846
|
+
this.wire.sendAction('window-dispatch-popup-result').catch((e) => {
|
4847
4847
|
// we do not want to expose this error, just continue if this analytics-only call fails
|
4848
4848
|
});
|
4849
4849
|
await this.wire.sendAction('dispatch-popup-result', { data, ...this.identity });
|
@@ -17340,7 +17340,7 @@ const getRvmLocalPath = () => {
|
|
17340
17340
|
case 'darwin':
|
17341
17341
|
return path__namespace.resolve(__dirname, '..', 'resources', 'darwin', 'OpenFinRVM.app', 'Contents', 'MacOS', 'OpenFinRVM');
|
17342
17342
|
case 'win32':
|
17343
|
-
return path__namespace.resolve(__dirname, '..', 'resources', 'win', 'OpenFinRVM.exe');
|
17343
|
+
return path__namespace.resolve(__dirname, '..', 'resources', 'win', os__namespace.arch() === 'x64' ? 'x64' : 'x86', 'OpenFinRVM.exe');
|
17344
17344
|
default:
|
17345
17345
|
throw new Error(`Unsupported platform: ${process.platform}`);
|
17346
17346
|
}
|
@@ -17759,7 +17759,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
|
|
17759
17759
|
};
|
17760
17760
|
}
|
17761
17761
|
getAdapterVersionSync() {
|
17762
|
-
return "42.100.
|
17762
|
+
return "42.100.82";
|
17763
17763
|
}
|
17764
17764
|
observeBounds(element, onChange) {
|
17765
17765
|
throw new Error('Method not implemented.');
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@openfin/node-adapter",
|
3
|
-
"version": "42.100.
|
3
|
+
"version": "42.100.82",
|
4
4
|
"description": "See README.md",
|
5
5
|
"main": "out/node-adapter.js",
|
6
6
|
"types": "out/node-adapter.d.ts",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"author": "OpenFin",
|
25
25
|
"dependencies": {
|
26
26
|
"@types/node": "^20.14.2",
|
27
|
-
"@openfin/core": "42.100.
|
27
|
+
"@openfin/core": "42.100.82",
|
28
28
|
"lodash": "^4.17.21",
|
29
29
|
"ws": "^7.3.0"
|
30
30
|
}
|
Binary file
|
@@ -11,11 +11,11 @@
|
|
11
11
|
<key>CFBundlePackageType</key>
|
12
12
|
<string>APPL</string>
|
13
13
|
<key>CFBundleShortVersionString</key>
|
14
|
-
<string>
|
14
|
+
<string>17.0.0.26</string>
|
15
15
|
<key>CFBundleSignature</key>
|
16
16
|
<string>ORVM</string>
|
17
17
|
<key>CFBundleVersion</key>
|
18
|
-
<string>
|
18
|
+
<string>17.0.0.26</string>
|
19
19
|
<key>LSUIElement</key>
|
20
20
|
<true/>
|
21
21
|
<key>NSAppTransportSecurity</key>
|
Binary file
|
@@ -11,15 +11,6 @@
|
|
11
11
|
</dict>
|
12
12
|
<key>files2</key>
|
13
13
|
<dict>
|
14
|
-
<key>Helpers/FinLinksHandler.app</key>
|
15
|
-
<dict>
|
16
|
-
<key>cdhash</key>
|
17
|
-
<data>
|
18
|
-
/Hb64aWF/Isx7Chu1El7wKSeBuo=
|
19
|
-
</data>
|
20
|
-
<key>requirement</key>
|
21
|
-
<string>identifier "com.openfin.finlinks-handler" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = W2JK4V99Y5</string>
|
22
|
-
</dict>
|
23
14
|
<key>Resources/OpenFinRVM.icns</key>
|
24
15
|
<dict>
|
25
16
|
<key>hash2</key>
|
Binary file
|
Binary file
|
package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/Info.plist
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>CFBundleExecutable</key>
|
6
|
-
<string>FinLinksHandler</string>
|
7
|
-
<key>CFBundleIconFile</key>
|
8
|
-
<string>OpenFinRVM.icns</string>
|
9
|
-
<key>CFBundleIdentifier</key>
|
10
|
-
<string>com.openfin.finlinks-handler</string>
|
11
|
-
<key>CFBundlePackageType</key>
|
12
|
-
<string>APPL</string>
|
13
|
-
<key>CFBundleShortVersionString</key>
|
14
|
-
<string>15.1.0.2</string>
|
15
|
-
<key>CFBundleSignature</key>
|
16
|
-
<string>????</string>
|
17
|
-
<key>CFBundleVersion</key>
|
18
|
-
<string>15.1.0.2</string>
|
19
|
-
<key>LSUIElement</key>
|
20
|
-
<true/>
|
21
|
-
<key>NSAppTransportSecurity</key>
|
22
|
-
<dict>
|
23
|
-
<key>NSAllowsArbitraryLoads</key>
|
24
|
-
<true/>
|
25
|
-
</dict>
|
26
|
-
<key>NSPrincipalClass</key>
|
27
|
-
<string>NSApplication</string>
|
28
|
-
</dict>
|
29
|
-
</plist>
|
Binary file
|
package/resources/darwin/OpenFinRVM.app/Contents/Helpers/FinLinksHandler.app/Contents/PkgInfo
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
APPL????
|
Binary file
|
@@ -1,128 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>files</key>
|
6
|
-
<dict>
|
7
|
-
<key>Resources/OpenFinRVM.icns</key>
|
8
|
-
<data>
|
9
|
-
OkFM5wBM4S7KH7yYnlUkPsPsdGk=
|
10
|
-
</data>
|
11
|
-
</dict>
|
12
|
-
<key>files2</key>
|
13
|
-
<dict>
|
14
|
-
<key>Resources/OpenFinRVM.icns</key>
|
15
|
-
<dict>
|
16
|
-
<key>hash2</key>
|
17
|
-
<data>
|
18
|
-
48bxSAgKqrHi6EIlBIJ0dIer87rudMsa3btXTRn99UM=
|
19
|
-
</data>
|
20
|
-
</dict>
|
21
|
-
</dict>
|
22
|
-
<key>rules</key>
|
23
|
-
<dict>
|
24
|
-
<key>^Resources/</key>
|
25
|
-
<true/>
|
26
|
-
<key>^Resources/.*\.lproj/</key>
|
27
|
-
<dict>
|
28
|
-
<key>optional</key>
|
29
|
-
<true/>
|
30
|
-
<key>weight</key>
|
31
|
-
<real>1000</real>
|
32
|
-
</dict>
|
33
|
-
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
34
|
-
<dict>
|
35
|
-
<key>omit</key>
|
36
|
-
<true/>
|
37
|
-
<key>weight</key>
|
38
|
-
<real>1100</real>
|
39
|
-
</dict>
|
40
|
-
<key>^Resources/Base\.lproj/</key>
|
41
|
-
<dict>
|
42
|
-
<key>weight</key>
|
43
|
-
<real>1010</real>
|
44
|
-
</dict>
|
45
|
-
<key>^version.plist$</key>
|
46
|
-
<true/>
|
47
|
-
</dict>
|
48
|
-
<key>rules2</key>
|
49
|
-
<dict>
|
50
|
-
<key>.*\.dSYM($|/)</key>
|
51
|
-
<dict>
|
52
|
-
<key>weight</key>
|
53
|
-
<real>11</real>
|
54
|
-
</dict>
|
55
|
-
<key>^(.*/)?\.DS_Store$</key>
|
56
|
-
<dict>
|
57
|
-
<key>omit</key>
|
58
|
-
<true/>
|
59
|
-
<key>weight</key>
|
60
|
-
<real>2000</real>
|
61
|
-
</dict>
|
62
|
-
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
|
63
|
-
<dict>
|
64
|
-
<key>nested</key>
|
65
|
-
<true/>
|
66
|
-
<key>weight</key>
|
67
|
-
<real>10</real>
|
68
|
-
</dict>
|
69
|
-
<key>^.*</key>
|
70
|
-
<true/>
|
71
|
-
<key>^Info\.plist$</key>
|
72
|
-
<dict>
|
73
|
-
<key>omit</key>
|
74
|
-
<true/>
|
75
|
-
<key>weight</key>
|
76
|
-
<real>20</real>
|
77
|
-
</dict>
|
78
|
-
<key>^PkgInfo$</key>
|
79
|
-
<dict>
|
80
|
-
<key>omit</key>
|
81
|
-
<true/>
|
82
|
-
<key>weight</key>
|
83
|
-
<real>20</real>
|
84
|
-
</dict>
|
85
|
-
<key>^Resources/</key>
|
86
|
-
<dict>
|
87
|
-
<key>weight</key>
|
88
|
-
<real>20</real>
|
89
|
-
</dict>
|
90
|
-
<key>^Resources/.*\.lproj/</key>
|
91
|
-
<dict>
|
92
|
-
<key>optional</key>
|
93
|
-
<true/>
|
94
|
-
<key>weight</key>
|
95
|
-
<real>1000</real>
|
96
|
-
</dict>
|
97
|
-
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
98
|
-
<dict>
|
99
|
-
<key>omit</key>
|
100
|
-
<true/>
|
101
|
-
<key>weight</key>
|
102
|
-
<real>1100</real>
|
103
|
-
</dict>
|
104
|
-
<key>^Resources/Base\.lproj/</key>
|
105
|
-
<dict>
|
106
|
-
<key>weight</key>
|
107
|
-
<real>1010</real>
|
108
|
-
</dict>
|
109
|
-
<key>^[^/]+$</key>
|
110
|
-
<dict>
|
111
|
-
<key>nested</key>
|
112
|
-
<true/>
|
113
|
-
<key>weight</key>
|
114
|
-
<real>10</real>
|
115
|
-
</dict>
|
116
|
-
<key>^embedded\.provisionprofile$</key>
|
117
|
-
<dict>
|
118
|
-
<key>weight</key>
|
119
|
-
<real>20</real>
|
120
|
-
</dict>
|
121
|
-
<key>^version\.plist$</key>
|
122
|
-
<dict>
|
123
|
-
<key>weight</key>
|
124
|
-
<real>20</real>
|
125
|
-
</dict>
|
126
|
-
</dict>
|
127
|
-
</dict>
|
128
|
-
</plist>
|