@elasticdash/core 0.0.5 → 0.0.7

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/dist/index.mjs CHANGED
@@ -135,7 +135,7 @@ var Logger = class {
135
135
  */
136
136
  formatMessage(level, message) {
137
137
  const timestamp = this.config.enableTimestamp ? (/* @__PURE__ */ new Date()).toISOString() : "";
138
- const prefix = this.config.prefix || "[Langfuse SDK]";
138
+ const prefix = this.config.prefix || "[ElasticDash SDK]";
139
139
  const parts = [timestamp, prefix, `[${level}]`, message].filter(Boolean);
140
140
  return parts.join(" ");
141
141
  }
@@ -253,7 +253,7 @@ var resetGlobalLogger = () => {
253
253
  // package.json
254
254
  var package_default = {
255
255
  name: "@elasticdash/core",
256
- version: "0.0.5",
256
+ version: "0.0.7",
257
257
  description: "Core functions and utilities for ElasticDash packages",
258
258
  type: "module",
259
259
  sideEffects: false,
@@ -294,47 +294,47 @@ var package_default = {
294
294
  };
295
295
 
296
296
  // src/constants.ts
297
- var ELASTICDASH_TRACER_NAME = "langfuse-sdk";
297
+ var ELASTICDASH_TRACER_NAME = "elasticdash-sdk";
298
298
  var ELASTICDASH_SDK_VERSION = package_default.version;
299
299
  var ELASTICDASH_SDK_NAME = "javascript";
300
300
  var ELASTICDASH_SDK_EXPERIMENT_ENVIRONMENT = "sdk-experiment";
301
301
  var LangfuseOtelSpanAttributes = /* @__PURE__ */ ((LangfuseOtelSpanAttributes2) => {
302
- LangfuseOtelSpanAttributes2["TRACE_NAME"] = "langfuse.trace.name";
302
+ LangfuseOtelSpanAttributes2["TRACE_NAME"] = "elasticdash.trace.name";
303
303
  LangfuseOtelSpanAttributes2["TRACE_USER_ID"] = "user.id";
304
304
  LangfuseOtelSpanAttributes2["TRACE_SESSION_ID"] = "session.id";
305
- LangfuseOtelSpanAttributes2["TRACE_TAGS"] = "langfuse.trace.tags";
306
- LangfuseOtelSpanAttributes2["TRACE_PUBLIC"] = "langfuse.trace.public";
307
- LangfuseOtelSpanAttributes2["TRACE_METADATA"] = "langfuse.trace.metadata";
308
- LangfuseOtelSpanAttributes2["TRACE_INPUT"] = "langfuse.trace.input";
309
- LangfuseOtelSpanAttributes2["TRACE_OUTPUT"] = "langfuse.trace.output";
310
- LangfuseOtelSpanAttributes2["OBSERVATION_TYPE"] = "langfuse.observation.type";
311
- LangfuseOtelSpanAttributes2["OBSERVATION_METADATA"] = "langfuse.observation.metadata";
312
- LangfuseOtelSpanAttributes2["OBSERVATION_LEVEL"] = "langfuse.observation.level";
313
- LangfuseOtelSpanAttributes2["OBSERVATION_STATUS_MESSAGE"] = "langfuse.observation.status_message";
314
- LangfuseOtelSpanAttributes2["OBSERVATION_INPUT"] = "langfuse.observation.input";
315
- LangfuseOtelSpanAttributes2["OBSERVATION_OUTPUT"] = "langfuse.observation.output";
316
- LangfuseOtelSpanAttributes2["OBSERVATION_COMPLETION_START_TIME"] = "langfuse.observation.completion_start_time";
317
- LangfuseOtelSpanAttributes2["OBSERVATION_MODEL"] = "langfuse.observation.model.name";
318
- LangfuseOtelSpanAttributes2["OBSERVATION_MODEL_PARAMETERS"] = "langfuse.observation.model.parameters";
319
- LangfuseOtelSpanAttributes2["OBSERVATION_USAGE_DETAILS"] = "langfuse.observation.usage_details";
320
- LangfuseOtelSpanAttributes2["OBSERVATION_COST_DETAILS"] = "langfuse.observation.cost_details";
321
- LangfuseOtelSpanAttributes2["OBSERVATION_PROMPT_NAME"] = "langfuse.observation.prompt.name";
322
- LangfuseOtelSpanAttributes2["OBSERVATION_PROMPT_VERSION"] = "langfuse.observation.prompt.version";
323
- LangfuseOtelSpanAttributes2["ENVIRONMENT"] = "langfuse.environment";
324
- LangfuseOtelSpanAttributes2["RELEASE"] = "langfuse.release";
325
- LangfuseOtelSpanAttributes2["VERSION"] = "langfuse.version";
326
- LangfuseOtelSpanAttributes2["AS_ROOT"] = "langfuse.internal.as_root";
327
- LangfuseOtelSpanAttributes2["EXPERIMENT_ID"] = "langfuse.experiment.id";
328
- LangfuseOtelSpanAttributes2["EXPERIMENT_NAME"] = "langfuse.experiment.name";
329
- LangfuseOtelSpanAttributes2["EXPERIMENT_DESCRIPTION"] = "langfuse.experiment.description";
330
- LangfuseOtelSpanAttributes2["EXPERIMENT_METADATA"] = "langfuse.experiment.metadata";
331
- LangfuseOtelSpanAttributes2["EXPERIMENT_DATASET_ID"] = "langfuse.experiment.dataset.id";
332
- LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_ID"] = "langfuse.experiment.item.id";
333
- LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_EXPECTED_OUTPUT"] = "langfuse.experiment.item.expected_output";
334
- LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_METADATA"] = "langfuse.experiment.item.metadata";
335
- LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_ROOT_OBSERVATION_ID"] = "langfuse.experiment.item.root_observation_id";
336
- LangfuseOtelSpanAttributes2["TRACE_COMPAT_USER_ID"] = "langfuse.user.id";
337
- LangfuseOtelSpanAttributes2["TRACE_COMPAT_SESSION_ID"] = "langfuse.session.id";
305
+ LangfuseOtelSpanAttributes2["TRACE_TAGS"] = "elasticdash.trace.tags";
306
+ LangfuseOtelSpanAttributes2["TRACE_PUBLIC"] = "elasticdash.trace.public";
307
+ LangfuseOtelSpanAttributes2["TRACE_METADATA"] = "elasticdash.trace.metadata";
308
+ LangfuseOtelSpanAttributes2["TRACE_INPUT"] = "elasticdash.trace.input";
309
+ LangfuseOtelSpanAttributes2["TRACE_OUTPUT"] = "elasticdash.trace.output";
310
+ LangfuseOtelSpanAttributes2["OBSERVATION_TYPE"] = "elasticdash.observation.type";
311
+ LangfuseOtelSpanAttributes2["OBSERVATION_METADATA"] = "elasticdash.observation.metadata";
312
+ LangfuseOtelSpanAttributes2["OBSERVATION_LEVEL"] = "elasticdash.observation.level";
313
+ LangfuseOtelSpanAttributes2["OBSERVATION_STATUS_MESSAGE"] = "elasticdash.observation.status_message";
314
+ LangfuseOtelSpanAttributes2["OBSERVATION_INPUT"] = "elasticdash.observation.input";
315
+ LangfuseOtelSpanAttributes2["OBSERVATION_OUTPUT"] = "elasticdash.observation.output";
316
+ LangfuseOtelSpanAttributes2["OBSERVATION_COMPLETION_START_TIME"] = "elasticdash.observation.completion_start_time";
317
+ LangfuseOtelSpanAttributes2["OBSERVATION_MODEL"] = "elasticdash.observation.model.name";
318
+ LangfuseOtelSpanAttributes2["OBSERVATION_MODEL_PARAMETERS"] = "elasticdash.observation.model.parameters";
319
+ LangfuseOtelSpanAttributes2["OBSERVATION_USAGE_DETAILS"] = "elasticdash.observation.usage_details";
320
+ LangfuseOtelSpanAttributes2["OBSERVATION_COST_DETAILS"] = "elasticdash.observation.cost_details";
321
+ LangfuseOtelSpanAttributes2["OBSERVATION_PROMPT_NAME"] = "elasticdash.observation.prompt.name";
322
+ LangfuseOtelSpanAttributes2["OBSERVATION_PROMPT_VERSION"] = "elasticdash.observation.prompt.version";
323
+ LangfuseOtelSpanAttributes2["ENVIRONMENT"] = "elasticdash.environment";
324
+ LangfuseOtelSpanAttributes2["RELEASE"] = "elasticdash.release";
325
+ LangfuseOtelSpanAttributes2["VERSION"] = "elasticdash.version";
326
+ LangfuseOtelSpanAttributes2["AS_ROOT"] = "elasticdash.internal.as_root";
327
+ LangfuseOtelSpanAttributes2["EXPERIMENT_ID"] = "elasticdash.experiment.id";
328
+ LangfuseOtelSpanAttributes2["EXPERIMENT_NAME"] = "elasticdash.experiment.name";
329
+ LangfuseOtelSpanAttributes2["EXPERIMENT_DESCRIPTION"] = "elasticdash.experiment.description";
330
+ LangfuseOtelSpanAttributes2["EXPERIMENT_METADATA"] = "elasticdash.experiment.metadata";
331
+ LangfuseOtelSpanAttributes2["EXPERIMENT_DATASET_ID"] = "elasticdash.experiment.dataset.id";
332
+ LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_ID"] = "elasticdash.experiment.item.id";
333
+ LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_EXPECTED_OUTPUT"] = "elasticdash.experiment.item.expected_output";
334
+ LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_METADATA"] = "elasticdash.experiment.item.metadata";
335
+ LangfuseOtelSpanAttributes2["EXPERIMENT_ITEM_ROOT_OBSERVATION_ID"] = "elasticdash.experiment.item.root_observation_id";
336
+ LangfuseOtelSpanAttributes2["TRACE_COMPAT_USER_ID"] = "elasticdash.user.id";
337
+ LangfuseOtelSpanAttributes2["TRACE_COMPAT_SESSION_ID"] = "elasticdash.session.id";
338
338
  return LangfuseOtelSpanAttributes2;
339
339
  })(LangfuseOtelSpanAttributes || {});
340
340
 
@@ -1575,9 +1575,9 @@ var AnnotationQueues = class {
1575
1575
  (_a2 = this._options) == null ? void 0 : _a2.headers,
1576
1576
  mergeOnlyDefinedHeaders({
1577
1577
  Authorization: await this._getAuthorizationHeader(),
1578
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1579
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1580
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1578
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1579
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1580
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1581
1581
  }),
1582
1582
  requestOptions == null ? void 0 : requestOptions.headers
1583
1583
  );
@@ -1682,9 +1682,9 @@ var AnnotationQueues = class {
1682
1682
  (_a2 = this._options) == null ? void 0 : _a2.headers,
1683
1683
  mergeOnlyDefinedHeaders({
1684
1684
  Authorization: await this._getAuthorizationHeader(),
1685
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1686
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1687
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1685
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1686
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1687
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1688
1688
  }),
1689
1689
  requestOptions == null ? void 0 : requestOptions.headers
1690
1690
  );
@@ -1788,9 +1788,9 @@ var AnnotationQueues = class {
1788
1788
  (_a2 = this._options) == null ? void 0 : _a2.headers,
1789
1789
  mergeOnlyDefinedHeaders({
1790
1790
  Authorization: await this._getAuthorizationHeader(),
1791
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1792
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1793
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1791
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1792
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1793
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1794
1794
  }),
1795
1795
  requestOptions == null ? void 0 : requestOptions.headers
1796
1796
  );
@@ -1903,9 +1903,9 @@ var AnnotationQueues = class {
1903
1903
  (_a2 = this._options) == null ? void 0 : _a2.headers,
1904
1904
  mergeOnlyDefinedHeaders({
1905
1905
  Authorization: await this._getAuthorizationHeader(),
1906
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1907
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1908
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1906
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
1907
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
1908
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
1909
1909
  }),
1910
1910
  requestOptions == null ? void 0 : requestOptions.headers
1911
1911
  );
@@ -2007,9 +2007,9 @@ var AnnotationQueues = class {
2007
2007
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2008
2008
  mergeOnlyDefinedHeaders({
2009
2009
  Authorization: await this._getAuthorizationHeader(),
2010
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2011
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2012
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2010
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2011
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2012
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2013
2013
  }),
2014
2014
  requestOptions == null ? void 0 : requestOptions.headers
2015
2015
  );
@@ -2115,9 +2115,9 @@ var AnnotationQueues = class {
2115
2115
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2116
2116
  mergeOnlyDefinedHeaders({
2117
2117
  Authorization: await this._getAuthorizationHeader(),
2118
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2119
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2120
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2118
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2119
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2120
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2121
2121
  }),
2122
2122
  requestOptions == null ? void 0 : requestOptions.headers
2123
2123
  );
@@ -2225,9 +2225,9 @@ var AnnotationQueues = class {
2225
2225
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2226
2226
  mergeOnlyDefinedHeaders({
2227
2227
  Authorization: await this._getAuthorizationHeader(),
2228
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2229
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2230
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2228
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2229
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2230
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2231
2231
  }),
2232
2232
  requestOptions == null ? void 0 : requestOptions.headers
2233
2233
  );
@@ -2332,9 +2332,9 @@ var AnnotationQueues = class {
2332
2332
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2333
2333
  mergeOnlyDefinedHeaders({
2334
2334
  Authorization: await this._getAuthorizationHeader(),
2335
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2336
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2337
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2335
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2336
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2337
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2338
2338
  }),
2339
2339
  requestOptions == null ? void 0 : requestOptions.headers
2340
2340
  );
@@ -2438,9 +2438,9 @@ var AnnotationQueues = class {
2438
2438
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2439
2439
  mergeOnlyDefinedHeaders({
2440
2440
  Authorization: await this._getAuthorizationHeader(),
2441
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2442
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2443
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2441
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2442
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2443
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2444
2444
  }),
2445
2445
  requestOptions == null ? void 0 : requestOptions.headers
2446
2446
  );
@@ -2547,9 +2547,9 @@ var AnnotationQueues = class {
2547
2547
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2548
2548
  mergeOnlyDefinedHeaders({
2549
2549
  Authorization: await this._getAuthorizationHeader(),
2550
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2551
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2552
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2550
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2551
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2552
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2553
2553
  }),
2554
2554
  requestOptions == null ? void 0 : requestOptions.headers
2555
2555
  );
@@ -2670,9 +2670,9 @@ var BlobStorageIntegrations = class {
2670
2670
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2671
2671
  mergeOnlyDefinedHeaders({
2672
2672
  Authorization: await this._getAuthorizationHeader(),
2673
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2674
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2675
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2673
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2674
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2675
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2676
2676
  }),
2677
2677
  requestOptions == null ? void 0 : requestOptions.headers
2678
2678
  );
@@ -2788,9 +2788,9 @@ var BlobStorageIntegrations = class {
2788
2788
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2789
2789
  mergeOnlyDefinedHeaders({
2790
2790
  Authorization: await this._getAuthorizationHeader(),
2791
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2792
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2793
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2791
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2792
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2793
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2794
2794
  }),
2795
2795
  requestOptions == null ? void 0 : requestOptions.headers
2796
2796
  );
@@ -2894,9 +2894,9 @@ var BlobStorageIntegrations = class {
2894
2894
  (_a2 = this._options) == null ? void 0 : _a2.headers,
2895
2895
  mergeOnlyDefinedHeaders({
2896
2896
  Authorization: await this._getAuthorizationHeader(),
2897
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2898
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2899
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2897
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
2898
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
2899
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
2900
2900
  }),
2901
2901
  requestOptions == null ? void 0 : requestOptions.headers
2902
2902
  );
@@ -3021,9 +3021,9 @@ var Comments = class {
3021
3021
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3022
3022
  mergeOnlyDefinedHeaders({
3023
3023
  Authorization: await this._getAuthorizationHeader(),
3024
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3025
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3026
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3024
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3025
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3026
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3027
3027
  }),
3028
3028
  requestOptions == null ? void 0 : requestOptions.headers
3029
3029
  );
@@ -3144,9 +3144,9 @@ var Comments = class {
3144
3144
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3145
3145
  mergeOnlyDefinedHeaders({
3146
3146
  Authorization: await this._getAuthorizationHeader(),
3147
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3148
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3149
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3147
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3148
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3149
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3150
3150
  }),
3151
3151
  requestOptions == null ? void 0 : requestOptions.headers
3152
3152
  );
@@ -3224,7 +3224,7 @@ var Comments = class {
3224
3224
  /**
3225
3225
  * Get a comment by id
3226
3226
  *
3227
- * @param {string} commentId - The unique langfuse identifier of a comment
3227
+ * @param {string} commentId - The unique elasticdash identifier of a comment
3228
3228
  * @param {Comments.RequestOptions} requestOptions - Request-specific configuration.
3229
3229
  *
3230
3230
  * @throws {@link LangfuseAPI.Error}
@@ -3247,9 +3247,9 @@ var Comments = class {
3247
3247
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3248
3248
  mergeOnlyDefinedHeaders({
3249
3249
  Authorization: await this._getAuthorizationHeader(),
3250
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3251
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3252
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3250
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3251
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3252
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3253
3253
  }),
3254
3254
  requestOptions == null ? void 0 : requestOptions.headers
3255
3255
  );
@@ -3377,9 +3377,9 @@ var DatasetItems = class {
3377
3377
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3378
3378
  mergeOnlyDefinedHeaders({
3379
3379
  Authorization: await this._getAuthorizationHeader(),
3380
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3381
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3382
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3380
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3381
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3382
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3383
3383
  }),
3384
3384
  requestOptions == null ? void 0 : requestOptions.headers
3385
3385
  );
@@ -3481,9 +3481,9 @@ var DatasetItems = class {
3481
3481
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3482
3482
  mergeOnlyDefinedHeaders({
3483
3483
  Authorization: await this._getAuthorizationHeader(),
3484
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3485
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3486
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3484
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3485
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3486
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3487
3487
  }),
3488
3488
  requestOptions == null ? void 0 : requestOptions.headers
3489
3489
  );
@@ -3601,9 +3601,9 @@ var DatasetItems = class {
3601
3601
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3602
3602
  mergeOnlyDefinedHeaders({
3603
3603
  Authorization: await this._getAuthorizationHeader(),
3604
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3605
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3606
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3604
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3605
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3606
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3607
3607
  }),
3608
3608
  requestOptions == null ? void 0 : requestOptions.headers
3609
3609
  );
@@ -3704,9 +3704,9 @@ var DatasetItems = class {
3704
3704
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3705
3705
  mergeOnlyDefinedHeaders({
3706
3706
  Authorization: await this._getAuthorizationHeader(),
3707
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3708
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3709
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3707
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3708
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3709
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3710
3710
  }),
3711
3711
  requestOptions == null ? void 0 : requestOptions.headers
3712
3712
  );
@@ -3832,9 +3832,9 @@ var DatasetRunItems = class {
3832
3832
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3833
3833
  mergeOnlyDefinedHeaders({
3834
3834
  Authorization: await this._getAuthorizationHeader(),
3835
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3836
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3837
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3835
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3836
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3837
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3838
3838
  }),
3839
3839
  requestOptions == null ? void 0 : requestOptions.headers
3840
3840
  );
@@ -3951,9 +3951,9 @@ var DatasetRunItems = class {
3951
3951
  (_a2 = this._options) == null ? void 0 : _a2.headers,
3952
3952
  mergeOnlyDefinedHeaders({
3953
3953
  Authorization: await this._getAuthorizationHeader(),
3954
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3955
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3956
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3954
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
3955
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
3956
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
3957
3957
  }),
3958
3958
  requestOptions == null ? void 0 : requestOptions.headers
3959
3959
  );
@@ -4080,9 +4080,9 @@ var Datasets = class {
4080
4080
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4081
4081
  mergeOnlyDefinedHeaders({
4082
4082
  Authorization: await this._getAuthorizationHeader(),
4083
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4084
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4085
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4083
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4084
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4085
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4086
4086
  }),
4087
4087
  requestOptions == null ? void 0 : requestOptions.headers
4088
4088
  );
@@ -4183,9 +4183,9 @@ var Datasets = class {
4183
4183
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4184
4184
  mergeOnlyDefinedHeaders({
4185
4185
  Authorization: await this._getAuthorizationHeader(),
4186
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4187
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4188
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4186
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4187
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4188
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4189
4189
  }),
4190
4190
  requestOptions == null ? void 0 : requestOptions.headers
4191
4191
  );
@@ -4292,9 +4292,9 @@ var Datasets = class {
4292
4292
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4293
4293
  mergeOnlyDefinedHeaders({
4294
4294
  Authorization: await this._getAuthorizationHeader(),
4295
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4296
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4297
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4295
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4296
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4297
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4298
4298
  }),
4299
4299
  requestOptions == null ? void 0 : requestOptions.headers
4300
4300
  );
@@ -4399,9 +4399,9 @@ var Datasets = class {
4399
4399
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4400
4400
  mergeOnlyDefinedHeaders({
4401
4401
  Authorization: await this._getAuthorizationHeader(),
4402
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4403
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4404
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4402
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4403
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4404
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4405
4405
  }),
4406
4406
  requestOptions == null ? void 0 : requestOptions.headers
4407
4407
  );
@@ -4503,9 +4503,9 @@ var Datasets = class {
4503
4503
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4504
4504
  mergeOnlyDefinedHeaders({
4505
4505
  Authorization: await this._getAuthorizationHeader(),
4506
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4507
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4508
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4506
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4507
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4508
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4509
4509
  }),
4510
4510
  requestOptions == null ? void 0 : requestOptions.headers
4511
4511
  );
@@ -4615,9 +4615,9 @@ var Datasets = class {
4615
4615
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4616
4616
  mergeOnlyDefinedHeaders({
4617
4617
  Authorization: await this._getAuthorizationHeader(),
4618
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4619
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4620
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4618
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4619
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4620
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4621
4621
  }),
4622
4622
  requestOptions == null ? void 0 : requestOptions.headers
4623
4623
  );
@@ -4734,9 +4734,9 @@ var Health = class {
4734
4734
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4735
4735
  mergeOnlyDefinedHeaders({
4736
4736
  Authorization: await this._getAuthorizationHeader(),
4737
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4738
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4739
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4737
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4738
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4739
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4740
4740
  }),
4741
4741
  requestOptions == null ? void 0 : requestOptions.headers
4742
4742
  );
@@ -4832,19 +4832,19 @@ var Ingestion = class {
4832
4832
  this._options = _options;
4833
4833
  }
4834
4834
  /**
4835
- * **Legacy endpoint for batch ingestion for Langfuse Observability.**
4835
+ * **Legacy endpoint for batch ingestion for ElasticDash Observability.**
4836
4836
  *
4837
- * -> Please use the OpenTelemetry endpoint (`/api/public/otel/v1/traces`). Learn more: https://langfuse.com/integrations/native/opentelemetry
4837
+ * -> Please use the OpenTelemetry endpoint (`/api/public/otel/v1/traces`). Learn more: https://elasticdash.com/integrations/native/opentelemetry
4838
4838
  *
4839
4839
  * Within each batch, there can be multiple events.
4840
4840
  * Each event has a type, an id, a timestamp, metadata and a body.
4841
4841
  * Internally, we refer to this as the "event envelope" as it tells us something about the event but not the trace.
4842
4842
  * We use the event id within this envelope to deduplicate messages to avoid processing the same event twice, i.e. the event id should be unique per request.
4843
- * The event.body.id is the ID of the actual trace and will be used for updates and will be visible within the Langfuse App.
4843
+ * The event.body.id is the ID of the actual trace and will be used for updates and will be visible within the ElasticDash App.
4844
4844
  * I.e. if you want to update a trace, you'd use the same body id, but separate event IDs.
4845
4845
  *
4846
4846
  * Notes:
4847
- * - Introduction to data model: https://langfuse.com/docs/observability/data-model
4847
+ * - Introduction to data model: https://elasticdash.com/docs/observability/data-model
4848
4848
  * - Batch sizes are limited to 3.5 MB in total. You need to adjust the number of events per batch accordingly.
4849
4849
  * - The API does not return a 4xx status code for input errors. Instead, it responds with a 207 status code, which includes a list of the encountered errors.
4850
4850
  *
@@ -4923,9 +4923,9 @@ var Ingestion = class {
4923
4923
  (_a2 = this._options) == null ? void 0 : _a2.headers,
4924
4924
  mergeOnlyDefinedHeaders({
4925
4925
  Authorization: await this._getAuthorizationHeader(),
4926
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4927
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4928
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4926
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
4927
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
4928
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
4929
4929
  }),
4930
4930
  requestOptions == null ? void 0 : requestOptions.headers
4931
4931
  );
@@ -5055,9 +5055,9 @@ var LlmConnections = class {
5055
5055
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5056
5056
  mergeOnlyDefinedHeaders({
5057
5057
  Authorization: await this._getAuthorizationHeader(),
5058
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5059
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5060
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5058
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5059
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5060
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5061
5061
  }),
5062
5062
  requestOptions == null ? void 0 : requestOptions.headers
5063
5063
  );
@@ -5167,9 +5167,9 @@ var LlmConnections = class {
5167
5167
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5168
5168
  mergeOnlyDefinedHeaders({
5169
5169
  Authorization: await this._getAuthorizationHeader(),
5170
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5171
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5172
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5170
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5171
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5172
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5173
5173
  }),
5174
5174
  requestOptions == null ? void 0 : requestOptions.headers
5175
5175
  );
@@ -5268,7 +5268,7 @@ var Media = class {
5268
5268
  /**
5269
5269
  * Get a media record
5270
5270
  *
5271
- * @param {string} mediaId - The unique langfuse identifier of a media record
5271
+ * @param {string} mediaId - The unique elasticdash identifier of a media record
5272
5272
  * @param {Media.RequestOptions} requestOptions - Request-specific configuration.
5273
5273
  *
5274
5274
  * @throws {@link LangfuseAPI.Error}
@@ -5291,9 +5291,9 @@ var Media = class {
5291
5291
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5292
5292
  mergeOnlyDefinedHeaders({
5293
5293
  Authorization: await this._getAuthorizationHeader(),
5294
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5295
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5296
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5294
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5295
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5296
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5297
5297
  }),
5298
5298
  requestOptions == null ? void 0 : requestOptions.headers
5299
5299
  );
@@ -5371,7 +5371,7 @@ var Media = class {
5371
5371
  /**
5372
5372
  * Patch a media record
5373
5373
  *
5374
- * @param {string} mediaId - The unique langfuse identifier of a media record
5374
+ * @param {string} mediaId - The unique elasticdash identifier of a media record
5375
5375
  * @param {LangfuseAPI.PatchMediaBody} request
5376
5376
  * @param {Media.RequestOptions} requestOptions - Request-specific configuration.
5377
5377
  *
@@ -5400,9 +5400,9 @@ var Media = class {
5400
5400
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5401
5401
  mergeOnlyDefinedHeaders({
5402
5402
  Authorization: await this._getAuthorizationHeader(),
5403
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5404
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5405
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5403
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5404
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5405
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5406
5406
  }),
5407
5407
  requestOptions == null ? void 0 : requestOptions.headers
5408
5408
  );
@@ -5510,9 +5510,9 @@ var Media = class {
5510
5510
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5511
5511
  mergeOnlyDefinedHeaders({
5512
5512
  Authorization: await this._getAuthorizationHeader(),
5513
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5514
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5515
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5513
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5514
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5515
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5516
5516
  }),
5517
5517
  requestOptions == null ? void 0 : requestOptions.headers
5518
5518
  );
@@ -5609,7 +5609,7 @@ var MetricsV2 = class {
5609
5609
  this._options = _options;
5610
5610
  }
5611
5611
  /**
5612
- * Get metrics from the Langfuse project using a query object. V2 endpoint with optimized performance.
5612
+ * Get metrics from the ElasticDash project using a query object. V2 endpoint with optimized performance.
5613
5613
  *
5614
5614
  * ## V2 Differences
5615
5615
  * - Supports `observations`, `scores-numeric`, and `scores-categorical` views only (traces view not supported)
@@ -5617,7 +5617,7 @@ var MetricsV2 = class {
5617
5617
  * - Backwards-compatible: traceName, traceRelease, traceVersion dimensions are still available on observations view
5618
5618
  * - High cardinality dimensions are not supported and will return a 400 error (see below)
5619
5619
  *
5620
- * For more details, see the [Metrics API documentation](https://langfuse.com/docs/metrics/features/metrics-api).
5620
+ * For more details, see the [Metrics API documentation](https://elasticdash.com/docs/metrics/features/metrics-api).
5621
5621
  *
5622
5622
  * ## Available Views
5623
5623
  *
@@ -5739,9 +5739,9 @@ var MetricsV2 = class {
5739
5739
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5740
5740
  mergeOnlyDefinedHeaders({
5741
5741
  Authorization: await this._getAuthorizationHeader(),
5742
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5743
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5744
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5742
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5743
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5744
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5745
5745
  }),
5746
5746
  requestOptions == null ? void 0 : requestOptions.headers
5747
5747
  );
@@ -5835,11 +5835,11 @@ var Metrics = class {
5835
5835
  this._options = _options;
5836
5836
  }
5837
5837
  /**
5838
- * Get metrics from the Langfuse project using a query object.
5838
+ * Get metrics from the ElasticDash project using a query object.
5839
5839
  *
5840
5840
  * Consider using the [v2 metrics endpoint](/api-reference#tag/metricsv2/GET/api/public/v2/metrics) for better performance.
5841
5841
  *
5842
- * For more details, see the [Metrics API documentation](https://langfuse.com/docs/metrics/features/metrics-api).
5842
+ * For more details, see the [Metrics API documentation](https://elasticdash.com/docs/metrics/features/metrics-api).
5843
5843
  *
5844
5844
  * @param {LangfuseAPI.GetMetricsRequest} request
5845
5845
  * @param {Metrics.RequestOptions} requestOptions - Request-specific configuration.
@@ -5869,9 +5869,9 @@ var Metrics = class {
5869
5869
  (_a2 = this._options) == null ? void 0 : _a2.headers,
5870
5870
  mergeOnlyDefinedHeaders({
5871
5871
  Authorization: await this._getAuthorizationHeader(),
5872
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5873
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5874
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5872
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
5873
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
5874
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
5875
5875
  }),
5876
5876
  requestOptions == null ? void 0 : requestOptions.headers
5877
5877
  );
@@ -6001,9 +6001,9 @@ var Models = class {
6001
6001
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6002
6002
  mergeOnlyDefinedHeaders({
6003
6003
  Authorization: await this._getAuthorizationHeader(),
6004
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6005
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6006
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6004
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6005
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6006
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6007
6007
  }),
6008
6008
  requestOptions == null ? void 0 : requestOptions.headers
6009
6009
  );
@@ -6115,9 +6115,9 @@ var Models = class {
6115
6115
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6116
6116
  mergeOnlyDefinedHeaders({
6117
6117
  Authorization: await this._getAuthorizationHeader(),
6118
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6119
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6120
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6118
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6119
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6120
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6121
6121
  }),
6122
6122
  requestOptions == null ? void 0 : requestOptions.headers
6123
6123
  );
@@ -6216,9 +6216,9 @@ var Models = class {
6216
6216
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6217
6217
  mergeOnlyDefinedHeaders({
6218
6218
  Authorization: await this._getAuthorizationHeader(),
6219
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6220
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6221
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6219
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6220
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6221
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6222
6222
  }),
6223
6223
  requestOptions == null ? void 0 : requestOptions.headers
6224
6224
  );
@@ -6294,7 +6294,7 @@ var Models = class {
6294
6294
  }
6295
6295
  }
6296
6296
  /**
6297
- * Delete a model. Cannot delete models managed by Langfuse. You can create your own definition with the same modelName to override the definition though.
6297
+ * Delete a model. Cannot delete models managed by ElasticDash. You can create your own definition with the same modelName to override the definition though.
6298
6298
  *
6299
6299
  * @param {string} id
6300
6300
  * @param {Models.RequestOptions} requestOptions - Request-specific configuration.
@@ -6319,9 +6319,9 @@ var Models = class {
6319
6319
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6320
6320
  mergeOnlyDefinedHeaders({
6321
6321
  Authorization: await this._getAuthorizationHeader(),
6322
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6323
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6324
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6322
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6323
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6324
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6325
6325
  }),
6326
6326
  requestOptions == null ? void 0 : requestOptions.headers
6327
6327
  );
@@ -6531,9 +6531,9 @@ var ObservationsV2 = class {
6531
6531
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6532
6532
  mergeOnlyDefinedHeaders({
6533
6533
  Authorization: await this._getAuthorizationHeader(),
6534
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6535
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6536
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6534
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6535
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6536
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6537
6537
  }),
6538
6538
  requestOptions == null ? void 0 : requestOptions.headers
6539
6539
  );
@@ -6629,7 +6629,7 @@ var Observations = class {
6629
6629
  /**
6630
6630
  * Get a observation
6631
6631
  *
6632
- * @param {string} observationId - The unique langfuse identifier of an observation, can be an event, span or generation
6632
+ * @param {string} observationId - The unique elasticdash identifier of an observation, can be an event, span or generation
6633
6633
  * @param {Observations.RequestOptions} requestOptions - Request-specific configuration.
6634
6634
  *
6635
6635
  * @throws {@link LangfuseAPI.Error}
@@ -6652,9 +6652,9 @@ var Observations = class {
6652
6652
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6653
6653
  mergeOnlyDefinedHeaders({
6654
6654
  Authorization: await this._getAuthorizationHeader(),
6655
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6656
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6657
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6655
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6656
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6657
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6658
6658
  }),
6659
6659
  requestOptions == null ? void 0 : requestOptions.headers
6660
6660
  );
@@ -6816,9 +6816,9 @@ var Observations = class {
6816
6816
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6817
6817
  mergeOnlyDefinedHeaders({
6818
6818
  Authorization: await this._getAuthorizationHeader(),
6819
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6820
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6821
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6819
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6820
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6821
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6822
6822
  }),
6823
6823
  requestOptions == null ? void 0 : requestOptions.headers
6824
6824
  );
@@ -6914,7 +6914,7 @@ var Opentelemetry = class {
6914
6914
  /**
6915
6915
  * **OpenTelemetry Traces Ingestion Endpoint**
6916
6916
  *
6917
- * This endpoint implements the OTLP/HTTP specification for trace ingestion, providing native OpenTelemetry integration for Langfuse Observability.
6917
+ * This endpoint implements the OTLP/HTTP specification for trace ingestion, providing native OpenTelemetry integration for ElasticDash Observability.
6918
6918
  *
6919
6919
  * **Supported Formats:**
6920
6920
  * - Binary Protobuf: `Content-Type: application/x-protobuf`
@@ -6926,8 +6926,8 @@ var Opentelemetry = class {
6926
6926
  * - Implements `ExportTraceServiceRequest` message format
6927
6927
  *
6928
6928
  * **Documentation:**
6929
- * - Integration guide: https://langfuse.com/integrations/native/opentelemetry
6930
- * - Data model: https://langfuse.com/docs/observability/data-model
6929
+ * - Integration guide: https://elasticdash.com/integrations/native/opentelemetry
6930
+ * - Data model: https://elasticdash.com/docs/observability/data-model
6931
6931
  *
6932
6932
  * @param {LangfuseAPI.OtelTraceRequest} request
6933
6933
  * @param {Opentelemetry.RequestOptions} requestOptions - Request-specific configuration.
@@ -6956,7 +6956,7 @@ var Opentelemetry = class {
6956
6956
  * },
6957
6957
  * scopeSpans: [{
6958
6958
  * scope: {
6959
- * name: "langfuse-sdk",
6959
+ * name: "elasticdash-sdk",
6960
6960
  * version: "2.60.3"
6961
6961
  * },
6962
6962
  * spans: [{
@@ -6967,7 +6967,7 @@ var Opentelemetry = class {
6967
6967
  * startTimeUnixNano: "1747872000000000000",
6968
6968
  * endTimeUnixNano: "1747872001000000000",
6969
6969
  * attributes: [{
6970
- * key: "langfuse.observation.type",
6970
+ * key: "elasticdash.observation.type",
6971
6971
  * value: {
6972
6972
  * stringValue: "generation"
6973
6973
  * }
@@ -6989,9 +6989,9 @@ var Opentelemetry = class {
6989
6989
  (_a2 = this._options) == null ? void 0 : _a2.headers,
6990
6990
  mergeOnlyDefinedHeaders({
6991
6991
  Authorization: await this._getAuthorizationHeader(),
6992
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6993
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6994
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6992
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
6993
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
6994
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
6995
6995
  }),
6996
6996
  requestOptions == null ? void 0 : requestOptions.headers
6997
6997
  );
@@ -7112,9 +7112,9 @@ var Organizations = class {
7112
7112
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7113
7113
  mergeOnlyDefinedHeaders({
7114
7114
  Authorization: await this._getAuthorizationHeader(),
7115
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7116
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7117
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7115
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7116
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7117
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7118
7118
  }),
7119
7119
  requestOptions == null ? void 0 : requestOptions.headers
7120
7120
  );
@@ -7218,9 +7218,9 @@ var Organizations = class {
7218
7218
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7219
7219
  mergeOnlyDefinedHeaders({
7220
7220
  Authorization: await this._getAuthorizationHeader(),
7221
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7222
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7223
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7221
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7222
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7223
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7224
7224
  }),
7225
7225
  requestOptions == null ? void 0 : requestOptions.headers
7226
7226
  );
@@ -7326,9 +7326,9 @@ var Organizations = class {
7326
7326
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7327
7327
  mergeOnlyDefinedHeaders({
7328
7328
  Authorization: await this._getAuthorizationHeader(),
7329
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7330
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7331
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7329
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7330
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7331
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7332
7332
  }),
7333
7333
  requestOptions == null ? void 0 : requestOptions.headers
7334
7334
  );
@@ -7432,9 +7432,9 @@ var Organizations = class {
7432
7432
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7433
7433
  mergeOnlyDefinedHeaders({
7434
7434
  Authorization: await this._getAuthorizationHeader(),
7435
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7436
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7437
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7435
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7436
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7437
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7438
7438
  }),
7439
7439
  requestOptions == null ? void 0 : requestOptions.headers
7440
7440
  );
@@ -7539,9 +7539,9 @@ var Organizations = class {
7539
7539
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7540
7540
  mergeOnlyDefinedHeaders({
7541
7541
  Authorization: await this._getAuthorizationHeader(),
7542
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7543
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7544
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7542
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7543
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7544
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7545
7545
  }),
7546
7546
  requestOptions == null ? void 0 : requestOptions.headers
7547
7547
  );
@@ -7648,9 +7648,9 @@ var Organizations = class {
7648
7648
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7649
7649
  mergeOnlyDefinedHeaders({
7650
7650
  Authorization: await this._getAuthorizationHeader(),
7651
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7652
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7653
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7651
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7652
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7653
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7654
7654
  }),
7655
7655
  requestOptions == null ? void 0 : requestOptions.headers
7656
7656
  );
@@ -7753,9 +7753,9 @@ var Organizations = class {
7753
7753
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7754
7754
  mergeOnlyDefinedHeaders({
7755
7755
  Authorization: await this._getAuthorizationHeader(),
7756
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7757
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7758
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7756
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7757
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7758
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7759
7759
  }),
7760
7760
  requestOptions == null ? void 0 : requestOptions.headers
7761
7761
  );
@@ -7855,9 +7855,9 @@ var Organizations = class {
7855
7855
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7856
7856
  mergeOnlyDefinedHeaders({
7857
7857
  Authorization: await this._getAuthorizationHeader(),
7858
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7859
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7860
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7858
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7859
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7860
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7861
7861
  }),
7862
7862
  requestOptions == null ? void 0 : requestOptions.headers
7863
7863
  );
@@ -7973,9 +7973,9 @@ var Projects = class {
7973
7973
  (_a2 = this._options) == null ? void 0 : _a2.headers,
7974
7974
  mergeOnlyDefinedHeaders({
7975
7975
  Authorization: await this._getAuthorizationHeader(),
7976
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7977
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7978
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7976
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
7977
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
7978
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
7979
7979
  }),
7980
7980
  requestOptions == null ? void 0 : requestOptions.headers
7981
7981
  );
@@ -8080,9 +8080,9 @@ var Projects = class {
8080
8080
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8081
8081
  mergeOnlyDefinedHeaders({
8082
8082
  Authorization: await this._getAuthorizationHeader(),
8083
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8084
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8085
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8083
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8084
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8085
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8086
8086
  }),
8087
8087
  requestOptions == null ? void 0 : requestOptions.headers
8088
8088
  );
@@ -8191,9 +8191,9 @@ var Projects = class {
8191
8191
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8192
8192
  mergeOnlyDefinedHeaders({
8193
8193
  Authorization: await this._getAuthorizationHeader(),
8194
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8195
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8196
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8194
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8195
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8196
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8197
8197
  }),
8198
8198
  requestOptions == null ? void 0 : requestOptions.headers
8199
8199
  );
@@ -8297,9 +8297,9 @@ var Projects = class {
8297
8297
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8298
8298
  mergeOnlyDefinedHeaders({
8299
8299
  Authorization: await this._getAuthorizationHeader(),
8300
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8301
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8302
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8300
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8301
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8302
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8303
8303
  }),
8304
8304
  requestOptions == null ? void 0 : requestOptions.headers
8305
8305
  );
@@ -8400,9 +8400,9 @@ var Projects = class {
8400
8400
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8401
8401
  mergeOnlyDefinedHeaders({
8402
8402
  Authorization: await this._getAuthorizationHeader(),
8403
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8404
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8405
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8403
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8404
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8405
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8406
8406
  }),
8407
8407
  requestOptions == null ? void 0 : requestOptions.headers
8408
8408
  );
@@ -8508,9 +8508,9 @@ var Projects = class {
8508
8508
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8509
8509
  mergeOnlyDefinedHeaders({
8510
8510
  Authorization: await this._getAuthorizationHeader(),
8511
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8512
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8513
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8511
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8512
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8513
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8514
8514
  }),
8515
8515
  requestOptions == null ? void 0 : requestOptions.headers
8516
8516
  );
@@ -8615,9 +8615,9 @@ var Projects = class {
8615
8615
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8616
8616
  mergeOnlyDefinedHeaders({
8617
8617
  Authorization: await this._getAuthorizationHeader(),
8618
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8619
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8620
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8618
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8619
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8620
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8621
8621
  }),
8622
8622
  requestOptions == null ? void 0 : requestOptions.headers
8623
8623
  );
@@ -8741,9 +8741,9 @@ var PromptVersion = class {
8741
8741
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8742
8742
  mergeOnlyDefinedHeaders({
8743
8743
  Authorization: await this._getAuthorizationHeader(),
8744
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8745
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8746
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8744
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8745
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8746
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8747
8747
  }),
8748
8748
  requestOptions == null ? void 0 : requestOptions.headers
8749
8749
  );
@@ -8875,9 +8875,9 @@ var Prompts = class {
8875
8875
  (_a2 = this._options) == null ? void 0 : _a2.headers,
8876
8876
  mergeOnlyDefinedHeaders({
8877
8877
  Authorization: await this._getAuthorizationHeader(),
8878
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8879
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8880
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8878
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
8879
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
8880
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
8881
8881
  }),
8882
8882
  requestOptions == null ? void 0 : requestOptions.headers
8883
8883
  );
@@ -9001,9 +9001,9 @@ var Prompts = class {
9001
9001
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9002
9002
  mergeOnlyDefinedHeaders({
9003
9003
  Authorization: await this._getAuthorizationHeader(),
9004
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9005
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9006
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9004
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9005
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9006
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9007
9007
  }),
9008
9008
  requestOptions == null ? void 0 : requestOptions.headers
9009
9009
  );
@@ -9120,9 +9120,9 @@ var Prompts = class {
9120
9120
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9121
9121
  mergeOnlyDefinedHeaders({
9122
9122
  Authorization: await this._getAuthorizationHeader(),
9123
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9124
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9125
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9123
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9124
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9125
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9126
9126
  }),
9127
9127
  requestOptions == null ? void 0 : requestOptions.headers
9128
9128
  );
@@ -9235,9 +9235,9 @@ var Prompts = class {
9235
9235
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9236
9236
  mergeOnlyDefinedHeaders({
9237
9237
  Authorization: await this._getAuthorizationHeader(),
9238
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9239
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9240
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9238
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9239
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9240
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9241
9241
  }),
9242
9242
  requestOptions == null ? void 0 : requestOptions.headers
9243
9243
  );
@@ -9352,9 +9352,9 @@ var Scim = class {
9352
9352
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9353
9353
  mergeOnlyDefinedHeaders({
9354
9354
  Authorization: await this._getAuthorizationHeader(),
9355
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9356
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9357
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9355
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9356
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9357
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9358
9358
  }),
9359
9359
  requestOptions == null ? void 0 : requestOptions.headers
9360
9360
  );
@@ -9454,9 +9454,9 @@ var Scim = class {
9454
9454
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9455
9455
  mergeOnlyDefinedHeaders({
9456
9456
  Authorization: await this._getAuthorizationHeader(),
9457
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9458
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9459
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9457
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9458
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9459
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9460
9460
  }),
9461
9461
  requestOptions == null ? void 0 : requestOptions.headers
9462
9462
  );
@@ -9556,9 +9556,9 @@ var Scim = class {
9556
9556
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9557
9557
  mergeOnlyDefinedHeaders({
9558
9558
  Authorization: await this._getAuthorizationHeader(),
9559
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9560
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9561
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9559
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9560
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9561
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9562
9562
  }),
9563
9563
  requestOptions == null ? void 0 : requestOptions.headers
9564
9564
  );
@@ -9670,9 +9670,9 @@ var Scim = class {
9670
9670
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9671
9671
  mergeOnlyDefinedHeaders({
9672
9672
  Authorization: await this._getAuthorizationHeader(),
9673
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9674
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9675
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9673
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9674
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9675
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9676
9676
  }),
9677
9677
  requestOptions == null ? void 0 : requestOptions.headers
9678
9678
  );
@@ -9781,9 +9781,9 @@ var Scim = class {
9781
9781
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9782
9782
  mergeOnlyDefinedHeaders({
9783
9783
  Authorization: await this._getAuthorizationHeader(),
9784
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9785
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9786
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9784
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9785
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9786
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9787
9787
  }),
9788
9788
  requestOptions == null ? void 0 : requestOptions.headers
9789
9789
  );
@@ -9887,9 +9887,9 @@ var Scim = class {
9887
9887
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9888
9888
  mergeOnlyDefinedHeaders({
9889
9889
  Authorization: await this._getAuthorizationHeader(),
9890
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9891
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9892
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9890
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9891
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9892
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9893
9893
  }),
9894
9894
  requestOptions == null ? void 0 : requestOptions.headers
9895
9895
  );
@@ -9990,9 +9990,9 @@ var Scim = class {
9990
9990
  (_a2 = this._options) == null ? void 0 : _a2.headers,
9991
9991
  mergeOnlyDefinedHeaders({
9992
9992
  Authorization: await this._getAuthorizationHeader(),
9993
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9994
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9995
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9993
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
9994
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
9995
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
9996
9996
  }),
9997
9997
  requestOptions == null ? void 0 : requestOptions.headers
9998
9998
  );
@@ -10118,9 +10118,9 @@ var ScoreConfigs = class {
10118
10118
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10119
10119
  mergeOnlyDefinedHeaders({
10120
10120
  Authorization: await this._getAuthorizationHeader(),
10121
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10122
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10123
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10121
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10122
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10123
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10124
10124
  }),
10125
10125
  requestOptions == null ? void 0 : requestOptions.headers
10126
10126
  );
@@ -10232,9 +10232,9 @@ var ScoreConfigs = class {
10232
10232
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10233
10233
  mergeOnlyDefinedHeaders({
10234
10234
  Authorization: await this._getAuthorizationHeader(),
10235
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10236
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10237
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10235
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10236
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10237
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10238
10238
  }),
10239
10239
  requestOptions == null ? void 0 : requestOptions.headers
10240
10240
  );
@@ -10312,7 +10312,7 @@ var ScoreConfigs = class {
10312
10312
  /**
10313
10313
  * Get a score config
10314
10314
  *
10315
- * @param {string} configId - The unique langfuse identifier of a score config
10315
+ * @param {string} configId - The unique elasticdash identifier of a score config
10316
10316
  * @param {ScoreConfigs.RequestOptions} requestOptions - Request-specific configuration.
10317
10317
  *
10318
10318
  * @throws {@link LangfuseAPI.Error}
@@ -10335,9 +10335,9 @@ var ScoreConfigs = class {
10335
10335
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10336
10336
  mergeOnlyDefinedHeaders({
10337
10337
  Authorization: await this._getAuthorizationHeader(),
10338
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10339
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10340
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10338
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10339
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10340
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10341
10341
  }),
10342
10342
  requestOptions == null ? void 0 : requestOptions.headers
10343
10343
  );
@@ -10415,7 +10415,7 @@ var ScoreConfigs = class {
10415
10415
  /**
10416
10416
  * Update a score config
10417
10417
  *
10418
- * @param {string} configId - The unique langfuse identifier of a score config
10418
+ * @param {string} configId - The unique elasticdash identifier of a score config
10419
10419
  * @param {LangfuseAPI.UpdateScoreConfigRequest} request
10420
10420
  * @param {ScoreConfigs.RequestOptions} requestOptions - Request-specific configuration.
10421
10421
  *
@@ -10446,9 +10446,9 @@ var ScoreConfigs = class {
10446
10446
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10447
10447
  mergeOnlyDefinedHeaders({
10448
10448
  Authorization: await this._getAuthorizationHeader(),
10449
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10450
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10451
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10449
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10450
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10451
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10452
10452
  }),
10453
10453
  requestOptions == null ? void 0 : requestOptions.headers
10454
10454
  );
@@ -10657,9 +10657,9 @@ var ScoreV2 = class {
10657
10657
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10658
10658
  mergeOnlyDefinedHeaders({
10659
10659
  Authorization: await this._getAuthorizationHeader(),
10660
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10661
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10662
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10660
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10661
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10662
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10663
10663
  }),
10664
10664
  requestOptions == null ? void 0 : requestOptions.headers
10665
10665
  );
@@ -10737,7 +10737,7 @@ var ScoreV2 = class {
10737
10737
  /**
10738
10738
  * Get a score (supports both trace and session scores)
10739
10739
  *
10740
- * @param {string} scoreId - The unique langfuse identifier of a score
10740
+ * @param {string} scoreId - The unique elasticdash identifier of a score
10741
10741
  * @param {ScoreV2.RequestOptions} requestOptions - Request-specific configuration.
10742
10742
  *
10743
10743
  * @throws {@link LangfuseAPI.Error}
@@ -10760,9 +10760,9 @@ var ScoreV2 = class {
10760
10760
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10761
10761
  mergeOnlyDefinedHeaders({
10762
10762
  Authorization: await this._getAuthorizationHeader(),
10763
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10764
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10765
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10763
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10764
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10765
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10766
10766
  }),
10767
10767
  requestOptions == null ? void 0 : requestOptions.headers
10768
10768
  );
@@ -10895,9 +10895,9 @@ var Score = class {
10895
10895
  (_a2 = this._options) == null ? void 0 : _a2.headers,
10896
10896
  mergeOnlyDefinedHeaders({
10897
10897
  Authorization: await this._getAuthorizationHeader(),
10898
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10899
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10900
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10898
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
10899
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
10900
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
10901
10901
  }),
10902
10902
  requestOptions == null ? void 0 : requestOptions.headers
10903
10903
  );
@@ -10978,7 +10978,7 @@ var Score = class {
10978
10978
  /**
10979
10979
  * Delete a score (supports both trace and session scores)
10980
10980
  *
10981
- * @param {string} scoreId - The unique langfuse identifier of a score
10981
+ * @param {string} scoreId - The unique elasticdash identifier of a score
10982
10982
  * @param {Score.RequestOptions} requestOptions - Request-specific configuration.
10983
10983
  *
10984
10984
  * @throws {@link LangfuseAPI.Error}
@@ -11001,9 +11001,9 @@ var Score = class {
11001
11001
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11002
11002
  mergeOnlyDefinedHeaders({
11003
11003
  Authorization: await this._getAuthorizationHeader(),
11004
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11005
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11006
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11004
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11005
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11006
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11007
11007
  }),
11008
11008
  requestOptions == null ? void 0 : requestOptions.headers
11009
11009
  );
@@ -11140,9 +11140,9 @@ var Sessions = class {
11140
11140
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11141
11141
  mergeOnlyDefinedHeaders({
11142
11142
  Authorization: await this._getAuthorizationHeader(),
11143
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11144
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11145
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11143
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11144
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11145
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11146
11146
  }),
11147
11147
  requestOptions == null ? void 0 : requestOptions.headers
11148
11148
  );
@@ -11243,9 +11243,9 @@ var Sessions = class {
11243
11243
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11244
11244
  mergeOnlyDefinedHeaders({
11245
11245
  Authorization: await this._getAuthorizationHeader(),
11246
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11247
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11248
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11246
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11247
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11248
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11249
11249
  }),
11250
11250
  requestOptions == null ? void 0 : requestOptions.headers
11251
11251
  );
@@ -11341,7 +11341,7 @@ var Trace = class {
11341
11341
  /**
11342
11342
  * Get a specific trace
11343
11343
  *
11344
- * @param {string} traceId - The unique langfuse identifier of a trace
11344
+ * @param {string} traceId - The unique elasticdash identifier of a trace
11345
11345
  * @param {Trace.RequestOptions} requestOptions - Request-specific configuration.
11346
11346
  *
11347
11347
  * @throws {@link LangfuseAPI.Error}
@@ -11364,9 +11364,9 @@ var Trace = class {
11364
11364
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11365
11365
  mergeOnlyDefinedHeaders({
11366
11366
  Authorization: await this._getAuthorizationHeader(),
11367
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11368
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11369
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11367
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11368
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11369
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11370
11370
  }),
11371
11371
  requestOptions == null ? void 0 : requestOptions.headers
11372
11372
  );
@@ -11444,7 +11444,7 @@ var Trace = class {
11444
11444
  /**
11445
11445
  * Delete a specific trace
11446
11446
  *
11447
- * @param {string} traceId - The unique langfuse identifier of the trace to delete
11447
+ * @param {string} traceId - The unique elasticdash identifier of the trace to delete
11448
11448
  * @param {Trace.RequestOptions} requestOptions - Request-specific configuration.
11449
11449
  *
11450
11450
  * @throws {@link LangfuseAPI.Error}
@@ -11467,9 +11467,9 @@ var Trace = class {
11467
11467
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11468
11468
  mergeOnlyDefinedHeaders({
11469
11469
  Authorization: await this._getAuthorizationHeader(),
11470
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11471
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11472
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11470
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11471
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11472
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11473
11473
  }),
11474
11474
  requestOptions == null ? void 0 : requestOptions.headers
11475
11475
  );
@@ -11637,9 +11637,9 @@ var Trace = class {
11637
11637
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11638
11638
  mergeOnlyDefinedHeaders({
11639
11639
  Authorization: await this._getAuthorizationHeader(),
11640
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11641
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11642
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11640
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11641
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11642
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11643
11643
  }),
11644
11644
  requestOptions == null ? void 0 : requestOptions.headers
11645
11645
  );
@@ -11742,9 +11742,9 @@ var Trace = class {
11742
11742
  (_a2 = this._options) == null ? void 0 : _a2.headers,
11743
11743
  mergeOnlyDefinedHeaders({
11744
11744
  Authorization: await this._getAuthorizationHeader(),
11745
- "X-Langfuse-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11746
- "X-Langfuse-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11747
- "X-Langfuse-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11745
+ "X-ElasticDash-Sdk-Name": (_c = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkName) != null ? _c : (_b = this._options) == null ? void 0 : _b.xLangfuseSdkName,
11746
+ "X-ElasticDash-Sdk-Version": (_e = requestOptions == null ? void 0 : requestOptions.xLangfuseSdkVersion) != null ? _e : (_d = this._options) == null ? void 0 : _d.xLangfuseSdkVersion,
11747
+ "X-ElasticDash-Public-Key": (_g = requestOptions == null ? void 0 : requestOptions.xLangfusePublicKey) != null ? _g : (_f = this._options) == null ? void 0 : _f.xLangfusePublicKey
11748
11748
  }),
11749
11749
  requestOptions == null ? void 0 : requestOptions.headers
11750
11750
  );
@@ -11842,9 +11842,9 @@ var LangfuseAPIClient = class {
11842
11842
  ..._options,
11843
11843
  headers: mergeHeaders(
11844
11844
  {
11845
- "X-Langfuse-Sdk-Name": _options == null ? void 0 : _options.xLangfuseSdkName,
11846
- "X-Langfuse-Sdk-Version": _options == null ? void 0 : _options.xLangfuseSdkVersion,
11847
- "X-Langfuse-Public-Key": _options == null ? void 0 : _options.xLangfusePublicKey
11845
+ "X-ElasticDash-Sdk-Name": _options == null ? void 0 : _options.xLangfuseSdkName,
11846
+ "X-ElasticDash-Sdk-Version": _options == null ? void 0 : _options.xLangfuseSdkVersion,
11847
+ "X-ElasticDash-Public-Key": _options == null ? void 0 : _options.xLangfusePublicKey
11848
11848
  },
11849
11849
  _options == null ? void 0 : _options.headers
11850
11850
  )
@@ -12067,7 +12067,7 @@ var LangfuseMedia = class {
12067
12067
  return bytesToBase64(new Uint8Array(hash));
12068
12068
  } catch (error) {
12069
12069
  getGlobalLogger().warn(
12070
- "[Langfuse] Failed to generate SHA-256 hash for media content:",
12070
+ "[ElasticDash] Failed to generate SHA-256 hash for media content:",
12071
12071
  error
12072
12072
  );
12073
12073
  return void 0;
@@ -12078,7 +12078,7 @@ var LangfuseMedia = class {
12078
12078
  *
12079
12079
  * The tag format is: `@@@langfuseMedia:type=<contentType>|id=<mediaId>|source=<source>@@@`
12080
12080
  * This tag can be embedded in trace attributes and will be replaced with actual
12081
- * media content when the trace is viewed in Langfuse.
12081
+ * media content when the trace is viewed in ElasticDash.
12082
12082
  *
12083
12083
  * @returns The media reference tag, or null if required data is missing
12084
12084
  *
@@ -12317,7 +12317,7 @@ function getPropagatedAttributesFromContext(context) {
12317
12317
  const metadata = context.getValue(LangfuseOtelContextKeys["metadata"]);
12318
12318
  if (metadata && typeof metadata === "object" && metadata !== null) {
12319
12319
  for (const [k, v] of Object.entries(metadata)) {
12320
- const spanKey = `${"langfuse.trace.metadata" /* TRACE_METADATA */}.${k}`;
12320
+ const spanKey = `${"elasticdash.trace.metadata" /* TRACE_METADATA */}.${k}`;
12321
12321
  propagatedAttributes[spanKey] = String(v);
12322
12322
  }
12323
12323
  }
@@ -12330,7 +12330,7 @@ function getPropagatedAttributesFromContext(context) {
12330
12330
  }
12331
12331
  }
12332
12332
  if (propagatedAttributes[getSpanKeyForPropagatedKey("experimentItemRootObservationId")]) {
12333
- propagatedAttributes["langfuse.environment" /* ENVIRONMENT */] = ELASTICDASH_SDK_EXPERIMENT_ENVIRONMENT;
12333
+ propagatedAttributes["elasticdash.environment" /* ENVIRONMENT */] = ELASTICDASH_SDK_EXPERIMENT_ENVIRONMENT;
12334
12334
  }
12335
12335
  return propagatedAttributes;
12336
12336
  }
@@ -12351,7 +12351,7 @@ function setPropagatedAttribute(params) {
12351
12351
  if (key === "metadata") {
12352
12352
  for (const [k, v] of Object.entries(mergedMetadata)) {
12353
12353
  span.setAttribute(
12354
- `${"langfuse.trace.metadata" /* TRACE_METADATA */}.${k}`,
12354
+ `${"elasticdash.trace.metadata" /* TRACE_METADATA */}.${k}`,
12355
12355
  v
12356
12356
  );
12357
12357
  }
@@ -12426,27 +12426,27 @@ function getSpanKeyForPropagatedKey(key) {
12426
12426
  case "sessionId":
12427
12427
  return "session.id" /* TRACE_SESSION_ID */;
12428
12428
  case "version":
12429
- return "langfuse.version" /* VERSION */;
12429
+ return "elasticdash.version" /* VERSION */;
12430
12430
  case "traceName":
12431
- return "langfuse.trace.name" /* TRACE_NAME */;
12431
+ return "elasticdash.trace.name" /* TRACE_NAME */;
12432
12432
  case "metadata":
12433
- return "langfuse.trace.metadata" /* TRACE_METADATA */;
12433
+ return "elasticdash.trace.metadata" /* TRACE_METADATA */;
12434
12434
  case "tags":
12435
- return "langfuse.trace.tags" /* TRACE_TAGS */;
12435
+ return "elasticdash.trace.tags" /* TRACE_TAGS */;
12436
12436
  case "experimentId":
12437
- return "langfuse.experiment.id" /* EXPERIMENT_ID */;
12437
+ return "elasticdash.experiment.id" /* EXPERIMENT_ID */;
12438
12438
  case "experimentName":
12439
- return "langfuse.experiment.name" /* EXPERIMENT_NAME */;
12439
+ return "elasticdash.experiment.name" /* EXPERIMENT_NAME */;
12440
12440
  case "experimentMetadata":
12441
- return "langfuse.experiment.metadata" /* EXPERIMENT_METADATA */;
12441
+ return "elasticdash.experiment.metadata" /* EXPERIMENT_METADATA */;
12442
12442
  case "experimentDatasetId":
12443
- return "langfuse.experiment.dataset.id" /* EXPERIMENT_DATASET_ID */;
12443
+ return "elasticdash.experiment.dataset.id" /* EXPERIMENT_DATASET_ID */;
12444
12444
  case "experimentItemId":
12445
- return "langfuse.experiment.item.id" /* EXPERIMENT_ITEM_ID */;
12445
+ return "elasticdash.experiment.item.id" /* EXPERIMENT_ITEM_ID */;
12446
12446
  case "experimentItemMetadata":
12447
- return "langfuse.experiment.item.metadata" /* EXPERIMENT_ITEM_METADATA */;
12447
+ return "elasticdash.experiment.item.metadata" /* EXPERIMENT_ITEM_METADATA */;
12448
12448
  case "experimentItemRootObservationId":
12449
- return "langfuse.experiment.item.root_observation_id" /* EXPERIMENT_ITEM_ROOT_OBSERVATION_ID */;
12449
+ return "elasticdash.experiment.item.root_observation_id" /* EXPERIMENT_ITEM_ROOT_OBSERVATION_ID */;
12450
12450
  default: {
12451
12451
  const fallback = key;
12452
12452
  throw Error("Unhandled propagated key", fallback);
@@ -12492,7 +12492,7 @@ function getSpanKeyFromBaggageKey(baggageKey) {
12492
12492
  const suffix = baggageKey.slice(ELASTICDASH_BAGGAGE_PREFIX.length);
12493
12493
  if (suffix.startsWith("metadata_")) {
12494
12494
  const metadataKey = suffix.slice("metadata_".length);
12495
- return `${"langfuse.trace.metadata" /* TRACE_METADATA */}.${metadataKey}`;
12495
+ return `${"elasticdash.trace.metadata" /* TRACE_METADATA */}.${metadataKey}`;
12496
12496
  }
12497
12497
  switch (suffix) {
12498
12498
  case "user_id":