@interopio/otel 0.1.7 → 0.1.8
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/insights.d.ts +21 -20
- package/package.json +1 -1
package/insights.d.ts
CHANGED
|
@@ -2130,27 +2130,28 @@ export namespace IOInsights {
|
|
|
2130
2130
|
applicationName?: string;
|
|
2131
2131
|
|
|
2132
2132
|
/**
|
|
2133
|
-
*
|
|
2134
|
-
*
|
|
2135
|
-
* @default false
|
|
2136
|
-
*/
|
|
2137
|
-
useSSOAuth?: boolean;
|
|
2138
|
-
|
|
2139
|
-
/**
|
|
2140
|
-
* If `true`, send the entire SSO authorization information to the backend in the `auth` header.
|
|
2141
|
-
*
|
|
2142
|
-
* @default false
|
|
2133
|
+
* Settings for injecting the io.Connect SSO login information into OpenTelemetry export requests when the platform is configured to use the Electron networking stack.
|
|
2143
2134
|
*/
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2135
|
+
ssoAuth?: {
|
|
2136
|
+
/**
|
|
2137
|
+
* If `true`, will instruct the platform to use the io.Connect SSO login information when making OpenTelemetry export requests. This only applies to OpenTelemetry exports performed after SSO completes.
|
|
2138
|
+
*
|
|
2139
|
+
* @default false
|
|
2140
|
+
*/
|
|
2141
|
+
enabled?: boolean;
|
|
2142
|
+
/**
|
|
2143
|
+
* If `true`, will use a custom `auth` header to send the entire io.Connect SSO authorization object as a JSON string.
|
|
2144
|
+
*
|
|
2145
|
+
* @default false
|
|
2146
|
+
*/
|
|
2147
|
+
useAuthHeader?: boolean;
|
|
2148
|
+
/**
|
|
2149
|
+
* If `true`, will use the io.Connect SSO token as-is. If `false`, "Bearer " will be prepended to the token if it lacks the prefix.
|
|
2150
|
+
*
|
|
2151
|
+
* @default true
|
|
2152
|
+
*/
|
|
2153
|
+
useRawToken?: boolean;
|
|
2154
|
+
};
|
|
2154
2155
|
|
|
2155
2156
|
/**
|
|
2156
2157
|
* Suppress double initialization warnings from the OTEL SDK.
|