@compass-labs/api-sdk 2.2.34 → 2.2.35
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/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/examples/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/examples/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/examples/node_modules/@types/node/README.md +1 -1
- package/examples/node_modules/@types/node/net.d.ts +21 -2
- package/examples/node_modules/@types/node/package.json +3 -3
- package/examples/node_modules/@types/node/stream/web.d.ts +5 -5
- package/examples/node_modules/@types/node/stream.d.ts +27 -4
- package/examples/node_modules/esbuild/bin/esbuild +1 -1
- package/examples/node_modules/esbuild/lib/main.js +9 -9
- package/examples/node_modules/esbuild/package.json +27 -27
- package/examples/package-lock.json +110 -110
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
|
@@ -32,7 +32,7 @@ export declare const SDK_METADATA: {
|
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "0.0.1";
|
|
34
34
|
readonly sdkVersion: "2.0.0";
|
|
35
|
-
readonly genVersion: "2.879.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.
|
|
35
|
+
readonly genVersion: "2.879.6";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.6 0.0.1 @compass-labs/api-sdk";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -32,7 +32,7 @@ exports.SDK_METADATA = {
|
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "0.0.1",
|
|
34
34
|
sdkVersion: "2.0.0",
|
|
35
|
-
genVersion: "2.879.
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.
|
|
35
|
+
genVersion: "2.879.6",
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.6 0.0.1 @compass-labs/api-sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/dist/esm/lib/config.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ export declare const SDK_METADATA: {
|
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "0.0.1";
|
|
34
34
|
readonly sdkVersion: "2.0.0";
|
|
35
|
-
readonly genVersion: "2.879.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.
|
|
35
|
+
readonly genVersion: "2.879.6";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.6 0.0.1 @compass-labs/api-sdk";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -28,7 +28,7 @@ export const SDK_METADATA = {
|
|
|
28
28
|
language: "typescript",
|
|
29
29
|
openapiDocVersion: "0.0.1",
|
|
30
30
|
sdkVersion: "2.0.0",
|
|
31
|
-
genVersion: "2.879.
|
|
32
|
-
userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.
|
|
31
|
+
genVersion: "2.879.6",
|
|
32
|
+
userAgent: "speakeasy-sdk/typescript 2.0.0 2.879.6 0.0.1 @compass-labs/api-sdk",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
|
Binary file
|
|
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v20.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Fri,
|
|
11
|
+
* Last updated: Fri, 03 Apr 2026 11:14:41 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
|
@@ -111,9 +111,14 @@ declare module "net" {
|
|
|
111
111
|
* See `Writable` stream `write()` method for more
|
|
112
112
|
* information.
|
|
113
113
|
* @since v0.1.90
|
|
114
|
-
* @param [encoding='utf8'] Only used when data is `string`.
|
|
115
114
|
*/
|
|
116
115
|
write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;
|
|
116
|
+
/**
|
|
117
|
+
* Sends data on the socket, with an explicit encoding for string data.
|
|
118
|
+
* @see {@link Socket.write} for full details.
|
|
119
|
+
* @since v0.1.90
|
|
120
|
+
* @param [encoding='utf8'] Only used when data is `string`.
|
|
121
|
+
*/
|
|
117
122
|
write(str: Uint8Array | string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;
|
|
118
123
|
/**
|
|
119
124
|
* Initiate a connection on a given socket.
|
|
@@ -353,12 +358,26 @@ declare module "net" {
|
|
|
353
358
|
*
|
|
354
359
|
* See `writable.end()` for further details.
|
|
355
360
|
* @since v0.1.90
|
|
356
|
-
* @param [encoding='utf8'] Only used when data is `string`.
|
|
357
361
|
* @param callback Optional callback for when the socket is finished.
|
|
358
362
|
* @return The socket itself.
|
|
359
363
|
*/
|
|
360
364
|
end(callback?: () => void): this;
|
|
365
|
+
/**
|
|
366
|
+
* Half-closes the socket, with one final chunk of data.
|
|
367
|
+
* @see {@link Socket.end} for full details.
|
|
368
|
+
* @since v0.1.90
|
|
369
|
+
* @param callback Optional callback for when the socket is finished.
|
|
370
|
+
* @return The socket itself.
|
|
371
|
+
*/
|
|
361
372
|
end(buffer: Uint8Array | string, callback?: () => void): this;
|
|
373
|
+
/**
|
|
374
|
+
* Half-closes the socket, with one final chunk of data.
|
|
375
|
+
* @see {@link Socket.end} for full details.
|
|
376
|
+
* @since v0.1.90
|
|
377
|
+
* @param [encoding='utf8'] Only used when data is `string`.
|
|
378
|
+
* @param callback Optional callback for when the socket is finished.
|
|
379
|
+
* @return The socket itself.
|
|
380
|
+
*/
|
|
362
381
|
end(str: Uint8Array | string, encoding?: BufferEncoding, callback?: () => void): this;
|
|
363
382
|
/**
|
|
364
383
|
* events.EventEmitter
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "20.19.
|
|
3
|
+
"version": "20.19.39",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -135,6 +135,6 @@
|
|
|
135
135
|
"undici-types": "~6.21.0"
|
|
136
136
|
},
|
|
137
137
|
"peerDependencies": {},
|
|
138
|
-
"typesPublisherContentHash": "
|
|
139
|
-
"typeScriptVersion": "5.
|
|
138
|
+
"typesPublisherContentHash": "871323d2249864178e2cf14d45e1136232baed800bb0184748818383371a02fb",
|
|
139
|
+
"typeScriptVersion": "5.3"
|
|
140
140
|
}
|
|
@@ -109,7 +109,7 @@ declare module "stream/web" {
|
|
|
109
109
|
}
|
|
110
110
|
interface ReadableStreamReadDoneResult<T> {
|
|
111
111
|
done: true;
|
|
112
|
-
value
|
|
112
|
+
value: T | undefined;
|
|
113
113
|
}
|
|
114
114
|
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
|
|
115
115
|
interface ReadableByteStreamControllerCallback {
|
|
@@ -251,7 +251,7 @@ declare module "stream/web" {
|
|
|
251
251
|
interface ReadableStreamDefaultController<R = any> {
|
|
252
252
|
readonly desiredSize: number | null;
|
|
253
253
|
close(): void;
|
|
254
|
-
enqueue(chunk
|
|
254
|
+
enqueue(chunk: R): void;
|
|
255
255
|
error(e?: any): void;
|
|
256
256
|
}
|
|
257
257
|
const ReadableStreamDefaultController: {
|
|
@@ -279,7 +279,7 @@ declare module "stream/web" {
|
|
|
279
279
|
};
|
|
280
280
|
interface TransformStreamDefaultController<O = any> {
|
|
281
281
|
readonly desiredSize: number | null;
|
|
282
|
-
enqueue(chunk
|
|
282
|
+
enqueue(chunk: O): void;
|
|
283
283
|
error(reason?: any): void;
|
|
284
284
|
terminate(): void;
|
|
285
285
|
}
|
|
@@ -315,7 +315,7 @@ declare module "stream/web" {
|
|
|
315
315
|
abort(reason?: any): Promise<void>;
|
|
316
316
|
close(): Promise<void>;
|
|
317
317
|
releaseLock(): void;
|
|
318
|
-
write(chunk
|
|
318
|
+
write(chunk: W): Promise<void>;
|
|
319
319
|
}
|
|
320
320
|
const WritableStreamDefaultWriter: {
|
|
321
321
|
prototype: WritableStreamDefaultWriter;
|
|
@@ -339,7 +339,7 @@ declare module "stream/web" {
|
|
|
339
339
|
size?: QueuingStrategySize<T>;
|
|
340
340
|
}
|
|
341
341
|
interface QueuingStrategySize<T = any> {
|
|
342
|
-
(chunk
|
|
342
|
+
(chunk: T): number;
|
|
343
343
|
}
|
|
344
344
|
interface QueuingStrategyInit {
|
|
345
345
|
/**
|
|
@@ -865,11 +865,20 @@ declare module "stream" {
|
|
|
865
865
|
* @since v0.9.4
|
|
866
866
|
* @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a {string}, {Buffer},
|
|
867
867
|
* {TypedArray} or {DataView}. For object mode streams, `chunk` may be any JavaScript value other than `null`.
|
|
868
|
-
* @param [encoding='utf8'] The encoding, if `chunk` is a string.
|
|
869
868
|
* @param callback Callback for when this chunk of data is flushed.
|
|
870
869
|
* @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.
|
|
871
870
|
*/
|
|
872
871
|
write(chunk: any, callback?: (error: Error | null | undefined) => void): boolean;
|
|
872
|
+
/**
|
|
873
|
+
* Writes data to the stream, with an explicit encoding for string data.
|
|
874
|
+
* @see {@link Writable.write} for full details.
|
|
875
|
+
* @since v0.9.4
|
|
876
|
+
* @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a {string}, {Buffer},
|
|
877
|
+
* {TypedArray} or {DataView}. For object mode streams, `chunk` may be any JavaScript value other than `null`.
|
|
878
|
+
* @param encoding The encoding, if `chunk` is a string.
|
|
879
|
+
* @param callback Callback for when this chunk of data is flushed.
|
|
880
|
+
* @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.
|
|
881
|
+
*/
|
|
873
882
|
write(chunk: any, encoding: BufferEncoding, callback?: (error: Error | null | undefined) => void): boolean;
|
|
874
883
|
/**
|
|
875
884
|
* The `writable.setDefaultEncoding()` method sets the default `encoding` for a `Writable` stream.
|
|
@@ -894,13 +903,27 @@ declare module "stream" {
|
|
|
894
903
|
* // Writing more now is not allowed!
|
|
895
904
|
* ```
|
|
896
905
|
* @since v0.9.4
|
|
906
|
+
* @param cb Callback for when the stream is finished.
|
|
907
|
+
*/
|
|
908
|
+
end(cb?: () => void): this;
|
|
909
|
+
/**
|
|
910
|
+
* Signals that no more data will be written, with one final chunk of data.
|
|
911
|
+
* @see {@link Writable.end} for full details.
|
|
912
|
+
* @since v0.9.4
|
|
897
913
|
* @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a {string}, {Buffer},
|
|
898
914
|
* {TypedArray} or {DataView}. For object mode streams, `chunk` may be any JavaScript value other than `null`.
|
|
899
|
-
* @param
|
|
900
|
-
* @param callback Callback for when the stream is finished.
|
|
915
|
+
* @param cb Callback for when the stream is finished.
|
|
901
916
|
*/
|
|
902
|
-
end(cb?: () => void): this;
|
|
903
917
|
end(chunk: any, cb?: () => void): this;
|
|
918
|
+
/**
|
|
919
|
+
* Signals that no more data will be written, with one final chunk of data.
|
|
920
|
+
* @see {@link Writable.end} for full details.
|
|
921
|
+
* @since v0.9.4
|
|
922
|
+
* @param chunk Optional data to write. For streams not operating in object mode, `chunk` must be a {string}, {Buffer},
|
|
923
|
+
* {TypedArray} or {DataView}. For object mode streams, `chunk` may be any JavaScript value other than `null`.
|
|
924
|
+
* @param encoding The encoding if `chunk` is a string
|
|
925
|
+
* @param cb Callback for when the stream is finished.
|
|
926
|
+
*/
|
|
904
927
|
end(chunk: any, encoding: BufferEncoding, cb?: () => void): this;
|
|
905
928
|
/**
|
|
906
929
|
* The `writable.cork()` method forces all written data to be buffered in memory.
|
|
@@ -201,7 +201,7 @@ for your current platform.`);
|
|
|
201
201
|
"node_modules",
|
|
202
202
|
".cache",
|
|
203
203
|
"esbuild",
|
|
204
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.27.
|
|
204
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.27.7"}-${path.basename(subpath)}`
|
|
205
205
|
);
|
|
206
206
|
if (!fs.existsSync(binTargetPath)) {
|
|
207
207
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
|
@@ -924,8 +924,8 @@ function createChannel(streamIn) {
|
|
|
924
924
|
if (isFirstPacket) {
|
|
925
925
|
isFirstPacket = false;
|
|
926
926
|
let binaryVersion = String.fromCharCode(...bytes);
|
|
927
|
-
if (binaryVersion !== "0.27.
|
|
928
|
-
throw new Error(`Cannot start service: Host version "${"0.27.
|
|
927
|
+
if (binaryVersion !== "0.27.7") {
|
|
928
|
+
throw new Error(`Cannot start service: Host version "${"0.27.7"}" does not match binary version ${quote(binaryVersion)}`);
|
|
929
929
|
}
|
|
930
930
|
return;
|
|
931
931
|
}
|
|
@@ -1199,7 +1199,7 @@ function buildOrContextImpl(callName, buildKey, sendRequest, sendResponse, refs,
|
|
|
1199
1199
|
const originalErrors = result.errors.slice();
|
|
1200
1200
|
const originalWarnings = result.warnings.slice();
|
|
1201
1201
|
if (response.outputFiles) result.outputFiles = response.outputFiles.map(convertOutputFiles);
|
|
1202
|
-
if (response.metafile) result.metafile = parseJSON(response.metafile);
|
|
1202
|
+
if (response.metafile && response.metafile.length) result.metafile = parseJSON(response.metafile);
|
|
1203
1203
|
if (response.mangleCache) result.mangleCache = response.mangleCache;
|
|
1204
1204
|
if (response.writeToStdout !== void 0) console.log(decodeUTF8(response.writeToStdout).replace(/\n$/, ""));
|
|
1205
1205
|
runOnEndCallbacks(result, (onEndErrors, onEndWarnings) => {
|
|
@@ -2060,7 +2060,7 @@ for your current platform.`);
|
|
|
2060
2060
|
"node_modules",
|
|
2061
2061
|
".cache",
|
|
2062
2062
|
"esbuild",
|
|
2063
|
-
`pnpapi-${pkg.replace("/", "-")}-${"0.27.
|
|
2063
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.27.7"}-${path.basename(subpath)}`
|
|
2064
2064
|
);
|
|
2065
2065
|
if (!fs.existsSync(binTargetPath)) {
|
|
2066
2066
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
|
@@ -2095,7 +2095,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
|
2095
2095
|
}
|
|
2096
2096
|
}
|
|
2097
2097
|
var _a;
|
|
2098
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.27.
|
|
2098
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.27.7";
|
|
2099
2099
|
var esbuildCommandAndArgs = () => {
|
|
2100
2100
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
|
2101
2101
|
throw new Error(
|
|
@@ -2162,7 +2162,7 @@ var fsAsync = {
|
|
|
2162
2162
|
}
|
|
2163
2163
|
}
|
|
2164
2164
|
};
|
|
2165
|
-
var version = "0.27.
|
|
2165
|
+
var version = "0.27.7";
|
|
2166
2166
|
var build = (options) => ensureServiceIsRunning().build(options);
|
|
2167
2167
|
var context = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
|
|
2168
2168
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
|
@@ -2265,7 +2265,7 @@ var stopService;
|
|
|
2265
2265
|
var ensureServiceIsRunning = () => {
|
|
2266
2266
|
if (longLivedService) return longLivedService;
|
|
2267
2267
|
let [command, args] = esbuildCommandAndArgs();
|
|
2268
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.27.
|
|
2268
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.27.7"}`, "--ping"), {
|
|
2269
2269
|
windowsHide: true,
|
|
2270
2270
|
stdio: ["pipe", "pipe", "inherit"],
|
|
2271
2271
|
cwd: defaultWD
|
|
@@ -2369,7 +2369,7 @@ var runServiceSync = (callback) => {
|
|
|
2369
2369
|
esbuild: node_exports
|
|
2370
2370
|
});
|
|
2371
2371
|
callback(service);
|
|
2372
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.27.
|
|
2372
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.27.7"}`), {
|
|
2373
2373
|
cwd: defaultWD,
|
|
2374
2374
|
windowsHide: true,
|
|
2375
2375
|
input: stdin,
|
|
@@ -2389,7 +2389,7 @@ var workerThreadService = null;
|
|
|
2389
2389
|
var startWorkerThreadService = (worker_threads2) => {
|
|
2390
2390
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
|
2391
2391
|
let worker = new worker_threads2.Worker(__filename, {
|
|
2392
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.27.
|
|
2392
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.27.7" },
|
|
2393
2393
|
transferList: [workerPort],
|
|
2394
2394
|
// From node's documentation: https://nodejs.org/api/worker_threads.html
|
|
2395
2395
|
//
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "esbuild",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.7",
|
|
4
4
|
"description": "An extremely fast JavaScript and CSS bundler and minifier.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,32 +18,32 @@
|
|
|
18
18
|
"esbuild": "bin/esbuild"
|
|
19
19
|
},
|
|
20
20
|
"optionalDependencies": {
|
|
21
|
-
"@esbuild/aix-ppc64": "0.27.
|
|
22
|
-
"@esbuild/android-arm": "0.27.
|
|
23
|
-
"@esbuild/android-arm64": "0.27.
|
|
24
|
-
"@esbuild/android-x64": "0.27.
|
|
25
|
-
"@esbuild/darwin-arm64": "0.27.
|
|
26
|
-
"@esbuild/darwin-x64": "0.27.
|
|
27
|
-
"@esbuild/freebsd-arm64": "0.27.
|
|
28
|
-
"@esbuild/freebsd-x64": "0.27.
|
|
29
|
-
"@esbuild/linux-arm": "0.27.
|
|
30
|
-
"@esbuild/linux-arm64": "0.27.
|
|
31
|
-
"@esbuild/linux-ia32": "0.27.
|
|
32
|
-
"@esbuild/linux-loong64": "0.27.
|
|
33
|
-
"@esbuild/linux-mips64el": "0.27.
|
|
34
|
-
"@esbuild/linux-ppc64": "0.27.
|
|
35
|
-
"@esbuild/linux-riscv64": "0.27.
|
|
36
|
-
"@esbuild/linux-s390x": "0.27.
|
|
37
|
-
"@esbuild/linux-x64": "0.27.
|
|
38
|
-
"@esbuild/netbsd-arm64": "0.27.
|
|
39
|
-
"@esbuild/netbsd-x64": "0.27.
|
|
40
|
-
"@esbuild/openbsd-arm64": "0.27.
|
|
41
|
-
"@esbuild/openbsd-x64": "0.27.
|
|
42
|
-
"@esbuild/openharmony-arm64": "0.27.
|
|
43
|
-
"@esbuild/sunos-x64": "0.27.
|
|
44
|
-
"@esbuild/win32-arm64": "0.27.
|
|
45
|
-
"@esbuild/win32-ia32": "0.27.
|
|
46
|
-
"@esbuild/win32-x64": "0.27.
|
|
21
|
+
"@esbuild/aix-ppc64": "0.27.7",
|
|
22
|
+
"@esbuild/android-arm": "0.27.7",
|
|
23
|
+
"@esbuild/android-arm64": "0.27.7",
|
|
24
|
+
"@esbuild/android-x64": "0.27.7",
|
|
25
|
+
"@esbuild/darwin-arm64": "0.27.7",
|
|
26
|
+
"@esbuild/darwin-x64": "0.27.7",
|
|
27
|
+
"@esbuild/freebsd-arm64": "0.27.7",
|
|
28
|
+
"@esbuild/freebsd-x64": "0.27.7",
|
|
29
|
+
"@esbuild/linux-arm": "0.27.7",
|
|
30
|
+
"@esbuild/linux-arm64": "0.27.7",
|
|
31
|
+
"@esbuild/linux-ia32": "0.27.7",
|
|
32
|
+
"@esbuild/linux-loong64": "0.27.7",
|
|
33
|
+
"@esbuild/linux-mips64el": "0.27.7",
|
|
34
|
+
"@esbuild/linux-ppc64": "0.27.7",
|
|
35
|
+
"@esbuild/linux-riscv64": "0.27.7",
|
|
36
|
+
"@esbuild/linux-s390x": "0.27.7",
|
|
37
|
+
"@esbuild/linux-x64": "0.27.7",
|
|
38
|
+
"@esbuild/netbsd-arm64": "0.27.7",
|
|
39
|
+
"@esbuild/netbsd-x64": "0.27.7",
|
|
40
|
+
"@esbuild/openbsd-arm64": "0.27.7",
|
|
41
|
+
"@esbuild/openbsd-x64": "0.27.7",
|
|
42
|
+
"@esbuild/openharmony-arm64": "0.27.7",
|
|
43
|
+
"@esbuild/sunos-x64": "0.27.7",
|
|
44
|
+
"@esbuild/win32-arm64": "0.27.7",
|
|
45
|
+
"@esbuild/win32-ia32": "0.27.7",
|
|
46
|
+
"@esbuild/win32-x64": "0.27.7"
|
|
47
47
|
},
|
|
48
48
|
"license": "MIT"
|
|
49
49
|
}
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"link": true
|
|
37
37
|
},
|
|
38
38
|
"node_modules/@esbuild/aix-ppc64": {
|
|
39
|
-
"version": "0.27.
|
|
40
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.
|
|
41
|
-
"integrity": "sha512-
|
|
39
|
+
"version": "0.27.7",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
|
|
41
|
+
"integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
|
|
42
42
|
"cpu": [
|
|
43
43
|
"ppc64"
|
|
44
44
|
],
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"node_modules/@esbuild/android-arm": {
|
|
56
|
-
"version": "0.27.
|
|
57
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.
|
|
58
|
-
"integrity": "sha512-
|
|
56
|
+
"version": "0.27.7",
|
|
57
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
|
|
58
|
+
"integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
|
|
59
59
|
"cpu": [
|
|
60
60
|
"arm"
|
|
61
61
|
],
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"node_modules/@esbuild/android-arm64": {
|
|
73
|
-
"version": "0.27.
|
|
74
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.
|
|
75
|
-
"integrity": "sha512-
|
|
73
|
+
"version": "0.27.7",
|
|
74
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
|
|
75
|
+
"integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
|
|
76
76
|
"cpu": [
|
|
77
77
|
"arm64"
|
|
78
78
|
],
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"node_modules/@esbuild/android-x64": {
|
|
90
|
-
"version": "0.27.
|
|
91
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.
|
|
92
|
-
"integrity": "sha512-
|
|
90
|
+
"version": "0.27.7",
|
|
91
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
|
|
92
|
+
"integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
|
|
93
93
|
"cpu": [
|
|
94
94
|
"x64"
|
|
95
95
|
],
|
|
@@ -104,9 +104,9 @@
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"node_modules/@esbuild/darwin-arm64": {
|
|
107
|
-
"version": "0.27.
|
|
108
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.
|
|
109
|
-
"integrity": "sha512-
|
|
107
|
+
"version": "0.27.7",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
|
|
109
|
+
"integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
|
|
110
110
|
"cpu": [
|
|
111
111
|
"arm64"
|
|
112
112
|
],
|
|
@@ -121,9 +121,9 @@
|
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"node_modules/@esbuild/darwin-x64": {
|
|
124
|
-
"version": "0.27.
|
|
125
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.
|
|
126
|
-
"integrity": "sha512-
|
|
124
|
+
"version": "0.27.7",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
|
|
126
|
+
"integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
|
|
127
127
|
"cpu": [
|
|
128
128
|
"x64"
|
|
129
129
|
],
|
|
@@ -138,9 +138,9 @@
|
|
|
138
138
|
}
|
|
139
139
|
},
|
|
140
140
|
"node_modules/@esbuild/freebsd-arm64": {
|
|
141
|
-
"version": "0.27.
|
|
142
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.
|
|
143
|
-
"integrity": "sha512-
|
|
141
|
+
"version": "0.27.7",
|
|
142
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
|
|
143
|
+
"integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
|
|
144
144
|
"cpu": [
|
|
145
145
|
"arm64"
|
|
146
146
|
],
|
|
@@ -155,9 +155,9 @@
|
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
157
|
"node_modules/@esbuild/freebsd-x64": {
|
|
158
|
-
"version": "0.27.
|
|
159
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.
|
|
160
|
-
"integrity": "sha512-
|
|
158
|
+
"version": "0.27.7",
|
|
159
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
|
|
160
|
+
"integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
|
|
161
161
|
"cpu": [
|
|
162
162
|
"x64"
|
|
163
163
|
],
|
|
@@ -172,9 +172,9 @@
|
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
174
|
"node_modules/@esbuild/linux-arm": {
|
|
175
|
-
"version": "0.27.
|
|
176
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.
|
|
177
|
-
"integrity": "sha512-
|
|
175
|
+
"version": "0.27.7",
|
|
176
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
|
|
177
|
+
"integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
|
|
178
178
|
"cpu": [
|
|
179
179
|
"arm"
|
|
180
180
|
],
|
|
@@ -189,9 +189,9 @@
|
|
|
189
189
|
}
|
|
190
190
|
},
|
|
191
191
|
"node_modules/@esbuild/linux-arm64": {
|
|
192
|
-
"version": "0.27.
|
|
193
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.
|
|
194
|
-
"integrity": "sha512-
|
|
192
|
+
"version": "0.27.7",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
|
|
194
|
+
"integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
|
|
195
195
|
"cpu": [
|
|
196
196
|
"arm64"
|
|
197
197
|
],
|
|
@@ -206,9 +206,9 @@
|
|
|
206
206
|
}
|
|
207
207
|
},
|
|
208
208
|
"node_modules/@esbuild/linux-ia32": {
|
|
209
|
-
"version": "0.27.
|
|
210
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.
|
|
211
|
-
"integrity": "sha512-
|
|
209
|
+
"version": "0.27.7",
|
|
210
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
|
|
211
|
+
"integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
|
|
212
212
|
"cpu": [
|
|
213
213
|
"ia32"
|
|
214
214
|
],
|
|
@@ -223,9 +223,9 @@
|
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
225
|
"node_modules/@esbuild/linux-loong64": {
|
|
226
|
-
"version": "0.27.
|
|
227
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.
|
|
228
|
-
"integrity": "sha512-
|
|
226
|
+
"version": "0.27.7",
|
|
227
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
|
|
228
|
+
"integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
|
|
229
229
|
"cpu": [
|
|
230
230
|
"loong64"
|
|
231
231
|
],
|
|
@@ -240,9 +240,9 @@
|
|
|
240
240
|
}
|
|
241
241
|
},
|
|
242
242
|
"node_modules/@esbuild/linux-mips64el": {
|
|
243
|
-
"version": "0.27.
|
|
244
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.
|
|
245
|
-
"integrity": "sha512-
|
|
243
|
+
"version": "0.27.7",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
|
|
245
|
+
"integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
|
|
246
246
|
"cpu": [
|
|
247
247
|
"mips64el"
|
|
248
248
|
],
|
|
@@ -257,9 +257,9 @@
|
|
|
257
257
|
}
|
|
258
258
|
},
|
|
259
259
|
"node_modules/@esbuild/linux-ppc64": {
|
|
260
|
-
"version": "0.27.
|
|
261
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.
|
|
262
|
-
"integrity": "sha512-
|
|
260
|
+
"version": "0.27.7",
|
|
261
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
|
|
262
|
+
"integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
|
|
263
263
|
"cpu": [
|
|
264
264
|
"ppc64"
|
|
265
265
|
],
|
|
@@ -274,9 +274,9 @@
|
|
|
274
274
|
}
|
|
275
275
|
},
|
|
276
276
|
"node_modules/@esbuild/linux-riscv64": {
|
|
277
|
-
"version": "0.27.
|
|
278
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.
|
|
279
|
-
"integrity": "sha512-
|
|
277
|
+
"version": "0.27.7",
|
|
278
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
|
|
279
|
+
"integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
|
|
280
280
|
"cpu": [
|
|
281
281
|
"riscv64"
|
|
282
282
|
],
|
|
@@ -291,9 +291,9 @@
|
|
|
291
291
|
}
|
|
292
292
|
},
|
|
293
293
|
"node_modules/@esbuild/linux-s390x": {
|
|
294
|
-
"version": "0.27.
|
|
295
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.
|
|
296
|
-
"integrity": "sha512
|
|
294
|
+
"version": "0.27.7",
|
|
295
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
|
|
296
|
+
"integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
|
|
297
297
|
"cpu": [
|
|
298
298
|
"s390x"
|
|
299
299
|
],
|
|
@@ -308,9 +308,9 @@
|
|
|
308
308
|
}
|
|
309
309
|
},
|
|
310
310
|
"node_modules/@esbuild/linux-x64": {
|
|
311
|
-
"version": "0.27.
|
|
312
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.
|
|
313
|
-
"integrity": "sha512-
|
|
311
|
+
"version": "0.27.7",
|
|
312
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
|
|
313
|
+
"integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
|
|
314
314
|
"cpu": [
|
|
315
315
|
"x64"
|
|
316
316
|
],
|
|
@@ -325,9 +325,9 @@
|
|
|
325
325
|
}
|
|
326
326
|
},
|
|
327
327
|
"node_modules/@esbuild/netbsd-arm64": {
|
|
328
|
-
"version": "0.27.
|
|
329
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.
|
|
330
|
-
"integrity": "sha512-
|
|
328
|
+
"version": "0.27.7",
|
|
329
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
|
|
330
|
+
"integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
|
|
331
331
|
"cpu": [
|
|
332
332
|
"arm64"
|
|
333
333
|
],
|
|
@@ -342,9 +342,9 @@
|
|
|
342
342
|
}
|
|
343
343
|
},
|
|
344
344
|
"node_modules/@esbuild/netbsd-x64": {
|
|
345
|
-
"version": "0.27.
|
|
346
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.
|
|
347
|
-
"integrity": "sha512-
|
|
345
|
+
"version": "0.27.7",
|
|
346
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
|
|
347
|
+
"integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
|
|
348
348
|
"cpu": [
|
|
349
349
|
"x64"
|
|
350
350
|
],
|
|
@@ -359,9 +359,9 @@
|
|
|
359
359
|
}
|
|
360
360
|
},
|
|
361
361
|
"node_modules/@esbuild/openbsd-arm64": {
|
|
362
|
-
"version": "0.27.
|
|
363
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.
|
|
364
|
-
"integrity": "sha512-
|
|
362
|
+
"version": "0.27.7",
|
|
363
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
|
|
364
|
+
"integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
|
|
365
365
|
"cpu": [
|
|
366
366
|
"arm64"
|
|
367
367
|
],
|
|
@@ -376,9 +376,9 @@
|
|
|
376
376
|
}
|
|
377
377
|
},
|
|
378
378
|
"node_modules/@esbuild/openbsd-x64": {
|
|
379
|
-
"version": "0.27.
|
|
380
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.
|
|
381
|
-
"integrity": "sha512
|
|
379
|
+
"version": "0.27.7",
|
|
380
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
|
|
381
|
+
"integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
|
|
382
382
|
"cpu": [
|
|
383
383
|
"x64"
|
|
384
384
|
],
|
|
@@ -393,9 +393,9 @@
|
|
|
393
393
|
}
|
|
394
394
|
},
|
|
395
395
|
"node_modules/@esbuild/openharmony-arm64": {
|
|
396
|
-
"version": "0.27.
|
|
397
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.
|
|
398
|
-
"integrity": "sha512
|
|
396
|
+
"version": "0.27.7",
|
|
397
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
|
|
398
|
+
"integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
|
|
399
399
|
"cpu": [
|
|
400
400
|
"arm64"
|
|
401
401
|
],
|
|
@@ -410,9 +410,9 @@
|
|
|
410
410
|
}
|
|
411
411
|
},
|
|
412
412
|
"node_modules/@esbuild/sunos-x64": {
|
|
413
|
-
"version": "0.27.
|
|
414
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.
|
|
415
|
-
"integrity": "sha512
|
|
413
|
+
"version": "0.27.7",
|
|
414
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
|
|
415
|
+
"integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
|
|
416
416
|
"cpu": [
|
|
417
417
|
"x64"
|
|
418
418
|
],
|
|
@@ -427,9 +427,9 @@
|
|
|
427
427
|
}
|
|
428
428
|
},
|
|
429
429
|
"node_modules/@esbuild/win32-arm64": {
|
|
430
|
-
"version": "0.27.
|
|
431
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.
|
|
432
|
-
"integrity": "sha512-
|
|
430
|
+
"version": "0.27.7",
|
|
431
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
|
|
432
|
+
"integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
|
|
433
433
|
"cpu": [
|
|
434
434
|
"arm64"
|
|
435
435
|
],
|
|
@@ -444,9 +444,9 @@
|
|
|
444
444
|
}
|
|
445
445
|
},
|
|
446
446
|
"node_modules/@esbuild/win32-ia32": {
|
|
447
|
-
"version": "0.27.
|
|
448
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.
|
|
449
|
-
"integrity": "sha512-
|
|
447
|
+
"version": "0.27.7",
|
|
448
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
|
|
449
|
+
"integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
|
|
450
450
|
"cpu": [
|
|
451
451
|
"ia32"
|
|
452
452
|
],
|
|
@@ -461,9 +461,9 @@
|
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
463
|
"node_modules/@esbuild/win32-x64": {
|
|
464
|
-
"version": "0.27.
|
|
465
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.
|
|
466
|
-
"integrity": "sha512
|
|
464
|
+
"version": "0.27.7",
|
|
465
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
|
|
466
|
+
"integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
|
|
467
467
|
"cpu": [
|
|
468
468
|
"x64"
|
|
469
469
|
],
|
|
@@ -478,9 +478,9 @@
|
|
|
478
478
|
}
|
|
479
479
|
},
|
|
480
480
|
"node_modules/@types/node": {
|
|
481
|
-
"version": "20.19.
|
|
482
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.
|
|
483
|
-
"integrity": "sha512-
|
|
481
|
+
"version": "20.19.39",
|
|
482
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.39.tgz",
|
|
483
|
+
"integrity": "sha512-orrrD74MBUyK8jOAD/r0+lfa1I2MO6I+vAkmAWzMYbCcgrN4lCrmK52gRFQq/JRxfYPfonkr4b0jcY7Olqdqbw==",
|
|
484
484
|
"dev": true,
|
|
485
485
|
"license": "MIT",
|
|
486
486
|
"dependencies": {
|
|
@@ -501,9 +501,9 @@
|
|
|
501
501
|
}
|
|
502
502
|
},
|
|
503
503
|
"node_modules/esbuild": {
|
|
504
|
-
"version": "0.27.
|
|
505
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.
|
|
506
|
-
"integrity": "sha512-
|
|
504
|
+
"version": "0.27.7",
|
|
505
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
|
|
506
|
+
"integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
|
|
507
507
|
"dev": true,
|
|
508
508
|
"hasInstallScript": true,
|
|
509
509
|
"license": "MIT",
|
|
@@ -514,32 +514,32 @@
|
|
|
514
514
|
"node": ">=18"
|
|
515
515
|
},
|
|
516
516
|
"optionalDependencies": {
|
|
517
|
-
"@esbuild/aix-ppc64": "0.27.
|
|
518
|
-
"@esbuild/android-arm": "0.27.
|
|
519
|
-
"@esbuild/android-arm64": "0.27.
|
|
520
|
-
"@esbuild/android-x64": "0.27.
|
|
521
|
-
"@esbuild/darwin-arm64": "0.27.
|
|
522
|
-
"@esbuild/darwin-x64": "0.27.
|
|
523
|
-
"@esbuild/freebsd-arm64": "0.27.
|
|
524
|
-
"@esbuild/freebsd-x64": "0.27.
|
|
525
|
-
"@esbuild/linux-arm": "0.27.
|
|
526
|
-
"@esbuild/linux-arm64": "0.27.
|
|
527
|
-
"@esbuild/linux-ia32": "0.27.
|
|
528
|
-
"@esbuild/linux-loong64": "0.27.
|
|
529
|
-
"@esbuild/linux-mips64el": "0.27.
|
|
530
|
-
"@esbuild/linux-ppc64": "0.27.
|
|
531
|
-
"@esbuild/linux-riscv64": "0.27.
|
|
532
|
-
"@esbuild/linux-s390x": "0.27.
|
|
533
|
-
"@esbuild/linux-x64": "0.27.
|
|
534
|
-
"@esbuild/netbsd-arm64": "0.27.
|
|
535
|
-
"@esbuild/netbsd-x64": "0.27.
|
|
536
|
-
"@esbuild/openbsd-arm64": "0.27.
|
|
537
|
-
"@esbuild/openbsd-x64": "0.27.
|
|
538
|
-
"@esbuild/openharmony-arm64": "0.27.
|
|
539
|
-
"@esbuild/sunos-x64": "0.27.
|
|
540
|
-
"@esbuild/win32-arm64": "0.27.
|
|
541
|
-
"@esbuild/win32-ia32": "0.27.
|
|
542
|
-
"@esbuild/win32-x64": "0.27.
|
|
517
|
+
"@esbuild/aix-ppc64": "0.27.7",
|
|
518
|
+
"@esbuild/android-arm": "0.27.7",
|
|
519
|
+
"@esbuild/android-arm64": "0.27.7",
|
|
520
|
+
"@esbuild/android-x64": "0.27.7",
|
|
521
|
+
"@esbuild/darwin-arm64": "0.27.7",
|
|
522
|
+
"@esbuild/darwin-x64": "0.27.7",
|
|
523
|
+
"@esbuild/freebsd-arm64": "0.27.7",
|
|
524
|
+
"@esbuild/freebsd-x64": "0.27.7",
|
|
525
|
+
"@esbuild/linux-arm": "0.27.7",
|
|
526
|
+
"@esbuild/linux-arm64": "0.27.7",
|
|
527
|
+
"@esbuild/linux-ia32": "0.27.7",
|
|
528
|
+
"@esbuild/linux-loong64": "0.27.7",
|
|
529
|
+
"@esbuild/linux-mips64el": "0.27.7",
|
|
530
|
+
"@esbuild/linux-ppc64": "0.27.7",
|
|
531
|
+
"@esbuild/linux-riscv64": "0.27.7",
|
|
532
|
+
"@esbuild/linux-s390x": "0.27.7",
|
|
533
|
+
"@esbuild/linux-x64": "0.27.7",
|
|
534
|
+
"@esbuild/netbsd-arm64": "0.27.7",
|
|
535
|
+
"@esbuild/netbsd-x64": "0.27.7",
|
|
536
|
+
"@esbuild/openbsd-arm64": "0.27.7",
|
|
537
|
+
"@esbuild/openbsd-x64": "0.27.7",
|
|
538
|
+
"@esbuild/openharmony-arm64": "0.27.7",
|
|
539
|
+
"@esbuild/sunos-x64": "0.27.7",
|
|
540
|
+
"@esbuild/win32-arm64": "0.27.7",
|
|
541
|
+
"@esbuild/win32-ia32": "0.27.7",
|
|
542
|
+
"@esbuild/win32-x64": "0.27.7"
|
|
543
543
|
}
|
|
544
544
|
},
|
|
545
545
|
"node_modules/fsevents": {
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -62,7 +62,7 @@ export const SDK_METADATA = {
|
|
|
62
62
|
language: "typescript",
|
|
63
63
|
openapiDocVersion: "0.0.1",
|
|
64
64
|
sdkVersion: "2.0.0",
|
|
65
|
-
genVersion: "2.879.
|
|
65
|
+
genVersion: "2.879.6",
|
|
66
66
|
userAgent:
|
|
67
|
-
"speakeasy-sdk/typescript 2.0.0 2.879.
|
|
67
|
+
"speakeasy-sdk/typescript 2.0.0 2.879.6 0.0.1 @compass-labs/api-sdk",
|
|
68
68
|
} as const;
|