@wix/monitoring-types 0.11.0 → 0.13.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 CHANGED
@@ -182,6 +182,22 @@ 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
+ project: {
196
+ groupId: string;
197
+ artifactId: string;
198
+ fingerprint: string;
199
+ };
200
+ };
185
201
  }
186
202
  interface AppMonitoringUnknownConfig {
187
203
  type: 'UNKNOWN_PROVIDER';
package/build/index.d.ts CHANGED
@@ -182,6 +182,22 @@ 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
+ project: {
196
+ groupId: string;
197
+ artifactId: string;
198
+ fingerprint: string;
199
+ };
200
+ };
185
201
  }
186
202
  interface AppMonitoringUnknownConfig {
187
203
  type: 'UNKNOWN_PROVIDER';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/monitoring-types",
3
- "version": "0.11.0",
3
+ "version": "0.13.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.30",
32
+ "@types/node": "^20.17.32",
33
33
  "eslint": "^8.57.1",
34
34
  "eslint-config-sdk": "0.0.0",
35
35
  "tsup": "^8.4.0",
36
- "type-fest": "^4.39.1",
36
+ "type-fest": "^4.40.1",
37
37
  "typescript": "^5.8.3"
38
38
  },
39
39
  "eslintConfig": {
@@ -53,5 +53,5 @@
53
53
  ]
54
54
  }
55
55
  },
56
- "falconPackageHash": "bd7ab85ab0ea7b3081acd419ee43dfd3742c18e6bdc1f9bf7e4326bc"
56
+ "falconPackageHash": "92349f56e0da8126cd312097cd563b6ef1c7cb2f567cedcbec3d9694"
57
57
  }