@vercel/introspection 0.0.4 → 0.0.5
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 +2 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -53302,7 +53302,7 @@ var require_dist$1 = /* @__PURE__ */ __commonJS$1({ "../build-utils/dist/index.j
|
|
|
53302
53302
|
}
|
|
53303
53303
|
var Lambda = class {
|
|
53304
53304
|
constructor(opts) {
|
|
53305
|
-
const { handler, runtime, runtimeLanguage, maxDuration, architecture, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, supportsWrapper, supportsResponseStreaming, experimentalResponseStreaming, operationType, framework, experimentalTriggers, supportsCancellation } = opts;
|
|
53305
|
+
const { handler, runtime, runtimeLanguage, maxDuration, architecture, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, supportsWrapper, supportsResponseStreaming, experimentalResponseStreaming, operationType, framework, experimentalTriggers, supportsCancellation, shouldDisableAutomaticFetchInstrumentation } = opts;
|
|
53306
53306
|
if ("files" in opts) (0, import_assert4.default)(typeof opts.files === "object", "\"files\" must be an object");
|
|
53307
53307
|
if ("zipBuffer" in opts) (0, import_assert4.default)(Buffer.isBuffer(opts.zipBuffer), "\"zipBuffer\" must be a Buffer");
|
|
53308
53308
|
(0, import_assert4.default)(typeof handler === "string", "\"handler\" is not a string");
|
|
@@ -53374,6 +53374,7 @@ var require_dist$1 = /* @__PURE__ */ __commonJS$1({ "../build-utils/dist/index.j
|
|
|
53374
53374
|
this.experimentalAllowBundling = "experimentalAllowBundling" in opts ? opts.experimentalAllowBundling : void 0;
|
|
53375
53375
|
this.experimentalTriggers = experimentalTriggers;
|
|
53376
53376
|
this.supportsCancellation = supportsCancellation;
|
|
53377
|
+
this.shouldDisableAutomaticFetchInstrumentation = shouldDisableAutomaticFetchInstrumentation;
|
|
53377
53378
|
}
|
|
53378
53379
|
async createZip() {
|
|
53379
53380
|
let { zipBuffer } = this;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/introspection",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://vercel.com/docs",
|
|
6
6
|
"type": "module",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"@types/fs-extra": "11",
|
|
34
34
|
"@types/jest": "27.5.1",
|
|
35
35
|
"@vercel/static-config": "3.1.2",
|
|
36
|
-
"@vercel/nft": "1.1.
|
|
36
|
+
"@vercel/nft": "1.1.1",
|
|
37
37
|
"@types/node": "22",
|
|
38
38
|
"fs-extra": "11.1.0",
|
|
39
|
-
"@vercel/build-utils": "13.2.
|
|
39
|
+
"@vercel/build-utils": "13.2.2",
|
|
40
40
|
"execa": "3.2.0",
|
|
41
41
|
"hono": "4.10.1",
|
|
42
42
|
"jest-junit": "16.0.0",
|