@wix/monitoring-types 0.12.0 → 0.14.0
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/build/index.d.mts +6 -1
- package/build/index.d.ts +6 -1
- package/package.json +4 -4
package/build/index.d.mts
CHANGED
|
@@ -186,12 +186,17 @@ interface AppMonitoringPanoramaConfig {
|
|
|
186
186
|
* The options for the Panorama monitoring provider.
|
|
187
187
|
*/
|
|
188
188
|
panoramaOptions: {
|
|
189
|
-
sentry
|
|
189
|
+
sentry?: {
|
|
190
190
|
/**
|
|
191
191
|
* The Data Source Name (DSN) for Sentry.
|
|
192
192
|
*/
|
|
193
193
|
dsn: string;
|
|
194
194
|
};
|
|
195
|
+
project: {
|
|
196
|
+
groupId: string;
|
|
197
|
+
artifactId: string;
|
|
198
|
+
fingerprint: string;
|
|
199
|
+
};
|
|
195
200
|
};
|
|
196
201
|
}
|
|
197
202
|
interface AppMonitoringUnknownConfig {
|
package/build/index.d.ts
CHANGED
|
@@ -186,12 +186,17 @@ interface AppMonitoringPanoramaConfig {
|
|
|
186
186
|
* The options for the Panorama monitoring provider.
|
|
187
187
|
*/
|
|
188
188
|
panoramaOptions: {
|
|
189
|
-
sentry
|
|
189
|
+
sentry?: {
|
|
190
190
|
/**
|
|
191
191
|
* The Data Source Name (DSN) for Sentry.
|
|
192
192
|
*/
|
|
193
193
|
dsn: string;
|
|
194
194
|
};
|
|
195
|
+
project: {
|
|
196
|
+
groupId: string;
|
|
197
|
+
artifactId: string;
|
|
198
|
+
fingerprint: string;
|
|
199
|
+
};
|
|
195
200
|
};
|
|
196
201
|
}
|
|
197
202
|
interface AppMonitoringUnknownConfig {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/monitoring-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Gili Shohat",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"*.{js,ts}": "yarn lint"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "^20.17.
|
|
32
|
+
"@types/node": "^20.17.46",
|
|
33
33
|
"eslint": "^8.57.1",
|
|
34
34
|
"eslint-config-sdk": "0.0.0",
|
|
35
35
|
"tsup": "^8.4.0",
|
|
36
|
-
"type-fest": "^4.
|
|
36
|
+
"type-fest": "^4.41.0",
|
|
37
37
|
"typescript": "^5.8.3"
|
|
38
38
|
},
|
|
39
39
|
"eslintConfig": {
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
]
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"falconPackageHash": "
|
|
56
|
+
"falconPackageHash": "132162fdbf9b135c54208b24f32956f02081adeec77bd1fae334b4a1"
|
|
57
57
|
}
|