skalpel 2.0.22 → 2.0.23
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/cli/index.js +11 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/proxy-runner.js +65 -14
- package/dist/cli/proxy-runner.js.map +1 -1
- package/dist/index.cjs +65 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +65 -14
- package/dist/index.js.map +1 -1
- package/dist/proxy/index.cjs +65 -14
- package/dist/proxy/index.cjs.map +1 -1
- package/dist/proxy/index.js +65 -14
- package/dist/proxy/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -105,6 +105,14 @@ var init_fetch_error = __esm({
|
|
|
105
105
|
}
|
|
106
106
|
});
|
|
107
107
|
|
|
108
|
+
// src/proxy/trace-context.ts
|
|
109
|
+
import { randomBytes } from "crypto";
|
|
110
|
+
var init_trace_context = __esm({
|
|
111
|
+
"src/proxy/trace-context.ts"() {
|
|
112
|
+
"use strict";
|
|
113
|
+
}
|
|
114
|
+
});
|
|
115
|
+
|
|
108
116
|
// src/proxy/streaming.ts
|
|
109
117
|
var HOP_BY_HOP, STRIP_HEADERS;
|
|
110
118
|
var init_streaming = __esm({
|
|
@@ -115,6 +123,7 @@ var init_streaming = __esm({
|
|
|
115
123
|
init_envelope();
|
|
116
124
|
init_recovery();
|
|
117
125
|
init_fetch_error();
|
|
126
|
+
init_trace_context();
|
|
118
127
|
HOP_BY_HOP = /* @__PURE__ */ new Set([
|
|
119
128
|
"connection",
|
|
120
129
|
"keep-alive",
|
|
@@ -143,6 +152,7 @@ var init_ws_client = __esm({
|
|
|
143
152
|
"src/proxy/ws-client.ts"() {
|
|
144
153
|
"use strict";
|
|
145
154
|
init_codex_oauth();
|
|
155
|
+
init_trace_context();
|
|
146
156
|
H1_HTTPS_AGENT = new https.Agent({
|
|
147
157
|
ALPNProtocols: ["http/1.1"],
|
|
148
158
|
keepAlive: true
|
|
@@ -162,6 +172,7 @@ var init_handler = __esm({
|
|
|
162
172
|
init_codex_oauth();
|
|
163
173
|
init_recovery();
|
|
164
174
|
init_fetch_error();
|
|
175
|
+
init_trace_context();
|
|
165
176
|
}
|
|
166
177
|
});
|
|
167
178
|
|