@wix/monitoring-types 0.10.0 → 0.11.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
@@ -174,6 +174,15 @@ interface AppMonitoringSentryConfig {
174
174
  dsn: string;
175
175
  };
176
176
  }
177
+ /**
178
+ * Represents the Panorama configuration for app's monitoring.
179
+ */
180
+ interface AppMonitoringPanoramaConfig {
181
+ /**
182
+ * The type of monitoring provider.
183
+ */
184
+ type: 'PANORAMA';
185
+ }
177
186
  interface AppMonitoringUnknownConfig {
178
187
  type: 'UNKNOWN_PROVIDER';
179
188
  }
@@ -182,6 +191,6 @@ interface AppMonitoringUnknownConfig {
182
191
  * The configuration includes the type of monitoring provider and its options.
183
192
  * Currently, only Sentry is supported as a monitoring provider.
184
193
  */
185
- type AppMonitoringConfig = AppMonitoringSentryConfig | AppMonitoringUnknownConfig;
194
+ type AppMonitoringConfig = AppMonitoringSentryConfig | AppMonitoringPanoramaConfig | AppMonitoringUnknownConfig;
186
195
 
187
- export type { AppMonitoringConfig, AppMonitoringSentryConfig, AppMonitoringUnknownConfig, Breadcrumb, CaptureContext, Context, Contexts, EndSpanOptions, EventContexts, EventData, EventTags, HostMonitoringContext, ManualSpan, MonitoringClient, Primitive, Span, SpanContextData, SpanOptions, Tags };
196
+ export type { AppMonitoringConfig, AppMonitoringPanoramaConfig, AppMonitoringSentryConfig, AppMonitoringUnknownConfig, Breadcrumb, CaptureContext, Context, Contexts, EndSpanOptions, EventContexts, EventData, EventTags, HostMonitoringContext, ManualSpan, MonitoringClient, Primitive, Span, SpanContextData, SpanOptions, Tags };
package/build/index.d.ts CHANGED
@@ -174,6 +174,15 @@ interface AppMonitoringSentryConfig {
174
174
  dsn: string;
175
175
  };
176
176
  }
177
+ /**
178
+ * Represents the Panorama configuration for app's monitoring.
179
+ */
180
+ interface AppMonitoringPanoramaConfig {
181
+ /**
182
+ * The type of monitoring provider.
183
+ */
184
+ type: 'PANORAMA';
185
+ }
177
186
  interface AppMonitoringUnknownConfig {
178
187
  type: 'UNKNOWN_PROVIDER';
179
188
  }
@@ -182,6 +191,6 @@ interface AppMonitoringUnknownConfig {
182
191
  * The configuration includes the type of monitoring provider and its options.
183
192
  * Currently, only Sentry is supported as a monitoring provider.
184
193
  */
185
- type AppMonitoringConfig = AppMonitoringSentryConfig | AppMonitoringUnknownConfig;
194
+ type AppMonitoringConfig = AppMonitoringSentryConfig | AppMonitoringPanoramaConfig | AppMonitoringUnknownConfig;
186
195
 
187
- export type { AppMonitoringConfig, AppMonitoringSentryConfig, AppMonitoringUnknownConfig, Breadcrumb, CaptureContext, Context, Contexts, EndSpanOptions, EventContexts, EventData, EventTags, HostMonitoringContext, ManualSpan, MonitoringClient, Primitive, Span, SpanContextData, SpanOptions, Tags };
196
+ export type { AppMonitoringConfig, AppMonitoringPanoramaConfig, AppMonitoringSentryConfig, AppMonitoringUnknownConfig, Breadcrumb, CaptureContext, Context, Contexts, EndSpanOptions, EventContexts, EventData, EventTags, HostMonitoringContext, ManualSpan, MonitoringClient, Primitive, Span, SpanContextData, SpanOptions, Tags };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/monitoring-types",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "license": "UNLICENSED",
5
5
  "author": {
6
6
  "name": "Gili Shohat",
@@ -53,5 +53,5 @@
53
53
  ]
54
54
  }
55
55
  },
56
- "falconPackageHash": "49a1d3fec1a95572eb4b0cd7588b3cfd544a1da040cefaf91eaf9fa2"
56
+ "falconPackageHash": "bd7ab85ab0ea7b3081acd419ee43dfd3742c18e6bdc1f9bf7e4326bc"
57
57
  }