@wix/monitoring-types 0.11.0 → 0.12.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 +11 -0
- package/build/index.d.ts +11 -0
- package/package.json +3 -3
package/build/index.d.mts
CHANGED
|
@@ -182,6 +182,17 @@ interface AppMonitoringPanoramaConfig {
|
|
|
182
182
|
* The type of monitoring provider.
|
|
183
183
|
*/
|
|
184
184
|
type: 'PANORAMA';
|
|
185
|
+
/**
|
|
186
|
+
* The options for the Panorama monitoring provider.
|
|
187
|
+
*/
|
|
188
|
+
panoramaOptions: {
|
|
189
|
+
sentry: {
|
|
190
|
+
/**
|
|
191
|
+
* The Data Source Name (DSN) for Sentry.
|
|
192
|
+
*/
|
|
193
|
+
dsn: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
185
196
|
}
|
|
186
197
|
interface AppMonitoringUnknownConfig {
|
|
187
198
|
type: 'UNKNOWN_PROVIDER';
|
package/build/index.d.ts
CHANGED
|
@@ -182,6 +182,17 @@ interface AppMonitoringPanoramaConfig {
|
|
|
182
182
|
* The type of monitoring provider.
|
|
183
183
|
*/
|
|
184
184
|
type: 'PANORAMA';
|
|
185
|
+
/**
|
|
186
|
+
* The options for the Panorama monitoring provider.
|
|
187
|
+
*/
|
|
188
|
+
panoramaOptions: {
|
|
189
|
+
sentry: {
|
|
190
|
+
/**
|
|
191
|
+
* The Data Source Name (DSN) for Sentry.
|
|
192
|
+
*/
|
|
193
|
+
dsn: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
185
196
|
}
|
|
186
197
|
interface AppMonitoringUnknownConfig {
|
|
187
198
|
type: 'UNKNOWN_PROVIDER';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/monitoring-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Gili Shohat",
|
|
@@ -33,7 +33,7 @@
|
|
|
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.40.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": "67f74b6bb8ee11c3a85acb726056b84837533baa980b83b44704fe03"
|
|
57
57
|
}
|