endform 0.68.0 → 0.70.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.
Files changed (2) hide show
  1. package/lib/index.d.ts +17 -0
  2. package/package.json +5 -5
package/lib/index.d.ts CHANGED
@@ -160,6 +160,23 @@ export interface EndformConfig {
160
160
  * @see https://endform.dev/docs/reference/endform-config-ts#extrahttpheaders
161
161
  */
162
162
  extraHttpHeaders?: Record<string, string>;
163
+ /**
164
+ * External OTLP traces endpoint for Playwright OpenTelemetry traces emitted
165
+ * by remote runners.
166
+ *
167
+ * Trace propagation becomes enabled when this parameter is set.
168
+ *
169
+ * @example "https://api.eu1.honeycomb.io/v1/traces"
170
+ *
171
+ * For more information: https://github.com/endformdev/playwright-opentelemetry
172
+ */
173
+ otlpEndpoint?: string;
174
+ /**
175
+ * Headers sent with external OTLP trace exports from remote runners.
176
+ *
177
+ * @example { "x-honeycomb-team": process.env.HONEYCOMB_API_KEY! }
178
+ */
179
+ otlpHeaders?: Record<string, string>;
163
180
  /**
164
181
  * Concurrency limits for a suite run. Each item has a `scope`, optional
165
182
  * `label`, and `limit`. Running tests must satisfy all applicable limits.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "endform",
3
- "version": "0.68.0",
3
+ "version": "0.70.0",
4
4
  "description": "Endform CLI",
5
5
  "license": "UNLICENSED",
6
6
  "repository": "https://github.com/endformdev/npm",
@@ -21,9 +21,9 @@
21
21
  }
22
22
  },
23
23
  "optionalDependencies": {
24
- "endform-darwin-arm64": "0.68.0",
25
- "endform-darwin-x86": "0.68.0",
26
- "endform-linux-arm64": "0.68.0",
27
- "endform-linux-x86": "0.68.0"
24
+ "endform-darwin-arm64": "0.70.0",
25
+ "endform-darwin-x86": "0.70.0",
26
+ "endform-linux-arm64": "0.70.0",
27
+ "endform-linux-x86": "0.70.0"
28
28
  }
29
29
  }