inngest 4.2.5 → 4.2.6
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/CHANGELOG.md +8 -0
- package/api/api.cjs +1 -1
- package/api/api.js +1 -1
- package/components/Inngest.cjs +1 -1
- package/components/Inngest.js +1 -1
- package/components/InngestCommHandler.cjs +60 -28
- package/components/InngestCommHandler.cjs.map +1 -1
- package/components/InngestCommHandler.d.cts.map +1 -1
- package/components/InngestCommHandler.d.ts.map +1 -1
- package/components/InngestCommHandler.js +60 -28
- package/components/InngestCommHandler.js.map +1 -1
- package/helpers/consts.cjs +1 -0
- package/helpers/consts.cjs.map +1 -1
- package/helpers/consts.d.cts +1 -0
- package/helpers/consts.d.cts.map +1 -1
- package/helpers/consts.d.ts +1 -0
- package/helpers/consts.d.ts.map +1 -1
- package/helpers/consts.js +1 -0
- package/helpers/consts.js.map +1 -1
- package/helpers/env.cjs +2 -1
- package/helpers/env.cjs.map +1 -1
- package/helpers/env.js +2 -1
- package/helpers/env.js.map +1 -1
- package/helpers/net.cjs +3 -2
- package/helpers/net.cjs.map +1 -1
- package/helpers/net.js +3 -2
- package/helpers/net.js.map +1 -1
- package/helpers/strings.cjs +5 -1
- package/helpers/strings.cjs.map +1 -1
- package/helpers/strings.js +5 -2
- package/helpers/strings.js.map +1 -1
- package/package.json +1 -1
- package/types.d.cts +14 -14
- package/types.d.ts +14 -14
- package/version.cjs +1 -1
- package/version.cjs.map +1 -1
- package/version.d.cts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
package/types.d.cts
CHANGED
|
@@ -1204,11 +1204,11 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1204
1204
|
type: z.ZodUnion<[z.ZodLiteral<"http">, z.ZodLiteral<"ws">]>;
|
|
1205
1205
|
url: z.ZodString;
|
|
1206
1206
|
}, "strict", z.ZodTypeAny, {
|
|
1207
|
-
type: "http" | "ws";
|
|
1208
1207
|
url: string;
|
|
1209
|
-
}, {
|
|
1210
1208
|
type: "http" | "ws";
|
|
1209
|
+
}, {
|
|
1211
1210
|
url: string;
|
|
1211
|
+
type: "http" | "ws";
|
|
1212
1212
|
}>;
|
|
1213
1213
|
retries: z.ZodOptional<z.ZodObject<{
|
|
1214
1214
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1221,8 +1221,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1221
1221
|
name: string;
|
|
1222
1222
|
id: string;
|
|
1223
1223
|
runtime: {
|
|
1224
|
-
type: "http" | "ws";
|
|
1225
1224
|
url: string;
|
|
1225
|
+
type: "http" | "ws";
|
|
1226
1226
|
};
|
|
1227
1227
|
retries?: {
|
|
1228
1228
|
attempts?: number | undefined;
|
|
@@ -1231,8 +1231,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1231
1231
|
name: string;
|
|
1232
1232
|
id: string;
|
|
1233
1233
|
runtime: {
|
|
1234
|
-
type: "http" | "ws";
|
|
1235
1234
|
url: string;
|
|
1235
|
+
type: "http" | "ws";
|
|
1236
1236
|
};
|
|
1237
1237
|
retries?: {
|
|
1238
1238
|
attempts?: number | undefined;
|
|
@@ -1344,15 +1344,15 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1344
1344
|
}, "strict", z.ZodTypeAny, {
|
|
1345
1345
|
limit: number;
|
|
1346
1346
|
key?: string | undefined;
|
|
1347
|
-
scope?: "
|
|
1347
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1348
1348
|
}, {
|
|
1349
1349
|
limit: number;
|
|
1350
1350
|
key?: string | undefined;
|
|
1351
|
-
scope?: "
|
|
1351
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1352
1352
|
}>, ConcurrencyOption, {
|
|
1353
1353
|
limit: number;
|
|
1354
1354
|
key?: string | undefined;
|
|
1355
|
-
scope?: "
|
|
1355
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1356
1356
|
}>, z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1357
1357
|
limit: z.ZodNumber;
|
|
1358
1358
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -1360,15 +1360,15 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1360
1360
|
}, "strict", z.ZodTypeAny, {
|
|
1361
1361
|
limit: number;
|
|
1362
1362
|
key?: string | undefined;
|
|
1363
|
-
scope?: "
|
|
1363
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1364
1364
|
}, {
|
|
1365
1365
|
limit: number;
|
|
1366
1366
|
key?: string | undefined;
|
|
1367
|
-
scope?: "
|
|
1367
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1368
1368
|
}>, ConcurrencyOption, {
|
|
1369
1369
|
limit: number;
|
|
1370
1370
|
key?: string | undefined;
|
|
1371
|
-
scope?: "
|
|
1371
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1372
1372
|
}>, "many">]>>;
|
|
1373
1373
|
}, "strict", z.ZodTypeAny, {
|
|
1374
1374
|
id: string;
|
|
@@ -1383,8 +1383,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1383
1383
|
name: string;
|
|
1384
1384
|
id: string;
|
|
1385
1385
|
runtime: {
|
|
1386
|
-
type: "http" | "ws";
|
|
1387
1386
|
url: string;
|
|
1387
|
+
type: "http" | "ws";
|
|
1388
1388
|
};
|
|
1389
1389
|
retries?: {
|
|
1390
1390
|
attempts?: number | undefined;
|
|
@@ -1444,8 +1444,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1444
1444
|
name: string;
|
|
1445
1445
|
id: string;
|
|
1446
1446
|
runtime: {
|
|
1447
|
-
type: "http" | "ws";
|
|
1448
1447
|
url: string;
|
|
1448
|
+
type: "http" | "ws";
|
|
1449
1449
|
};
|
|
1450
1450
|
retries?: {
|
|
1451
1451
|
attempts?: number | undefined;
|
|
@@ -1494,11 +1494,11 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1494
1494
|
concurrency?: number | {
|
|
1495
1495
|
limit: number;
|
|
1496
1496
|
key?: string | undefined;
|
|
1497
|
-
scope?: "
|
|
1497
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1498
1498
|
} | {
|
|
1499
1499
|
limit: number;
|
|
1500
1500
|
key?: string | undefined;
|
|
1501
|
-
scope?: "
|
|
1501
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1502
1502
|
}[] | undefined;
|
|
1503
1503
|
}>;
|
|
1504
1504
|
/**
|
package/types.d.ts
CHANGED
|
@@ -1204,11 +1204,11 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1204
1204
|
type: z.ZodUnion<[z.ZodLiteral<"http">, z.ZodLiteral<"ws">]>;
|
|
1205
1205
|
url: z.ZodString;
|
|
1206
1206
|
}, "strict", z.ZodTypeAny, {
|
|
1207
|
-
type: "http" | "ws";
|
|
1208
1207
|
url: string;
|
|
1209
|
-
}, {
|
|
1210
1208
|
type: "http" | "ws";
|
|
1209
|
+
}, {
|
|
1211
1210
|
url: string;
|
|
1211
|
+
type: "http" | "ws";
|
|
1212
1212
|
}>;
|
|
1213
1213
|
retries: z.ZodOptional<z.ZodObject<{
|
|
1214
1214
|
attempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1221,8 +1221,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1221
1221
|
name: string;
|
|
1222
1222
|
id: string;
|
|
1223
1223
|
runtime: {
|
|
1224
|
-
type: "http" | "ws";
|
|
1225
1224
|
url: string;
|
|
1225
|
+
type: "http" | "ws";
|
|
1226
1226
|
};
|
|
1227
1227
|
retries?: {
|
|
1228
1228
|
attempts?: number | undefined;
|
|
@@ -1231,8 +1231,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1231
1231
|
name: string;
|
|
1232
1232
|
id: string;
|
|
1233
1233
|
runtime: {
|
|
1234
|
-
type: "http" | "ws";
|
|
1235
1234
|
url: string;
|
|
1235
|
+
type: "http" | "ws";
|
|
1236
1236
|
};
|
|
1237
1237
|
retries?: {
|
|
1238
1238
|
attempts?: number | undefined;
|
|
@@ -1344,15 +1344,15 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1344
1344
|
}, "strict", z.ZodTypeAny, {
|
|
1345
1345
|
limit: number;
|
|
1346
1346
|
key?: string | undefined;
|
|
1347
|
-
scope?: "
|
|
1347
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1348
1348
|
}, {
|
|
1349
1349
|
limit: number;
|
|
1350
1350
|
key?: string | undefined;
|
|
1351
|
-
scope?: "
|
|
1351
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1352
1352
|
}>, ConcurrencyOption, {
|
|
1353
1353
|
limit: number;
|
|
1354
1354
|
key?: string | undefined;
|
|
1355
|
-
scope?: "
|
|
1355
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1356
1356
|
}>, z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1357
1357
|
limit: z.ZodNumber;
|
|
1358
1358
|
key: z.ZodOptional<z.ZodString>;
|
|
@@ -1360,15 +1360,15 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1360
1360
|
}, "strict", z.ZodTypeAny, {
|
|
1361
1361
|
limit: number;
|
|
1362
1362
|
key?: string | undefined;
|
|
1363
|
-
scope?: "
|
|
1363
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1364
1364
|
}, {
|
|
1365
1365
|
limit: number;
|
|
1366
1366
|
key?: string | undefined;
|
|
1367
|
-
scope?: "
|
|
1367
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1368
1368
|
}>, ConcurrencyOption, {
|
|
1369
1369
|
limit: number;
|
|
1370
1370
|
key?: string | undefined;
|
|
1371
|
-
scope?: "
|
|
1371
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1372
1372
|
}>, "many">]>>;
|
|
1373
1373
|
}, "strict", z.ZodTypeAny, {
|
|
1374
1374
|
id: string;
|
|
@@ -1383,8 +1383,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1383
1383
|
name: string;
|
|
1384
1384
|
id: string;
|
|
1385
1385
|
runtime: {
|
|
1386
|
-
type: "http" | "ws";
|
|
1387
1386
|
url: string;
|
|
1387
|
+
type: "http" | "ws";
|
|
1388
1388
|
};
|
|
1389
1389
|
retries?: {
|
|
1390
1390
|
attempts?: number | undefined;
|
|
@@ -1444,8 +1444,8 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1444
1444
|
name: string;
|
|
1445
1445
|
id: string;
|
|
1446
1446
|
runtime: {
|
|
1447
|
-
type: "http" | "ws";
|
|
1448
1447
|
url: string;
|
|
1448
|
+
type: "http" | "ws";
|
|
1449
1449
|
};
|
|
1450
1450
|
retries?: {
|
|
1451
1451
|
attempts?: number | undefined;
|
|
@@ -1494,11 +1494,11 @@ declare const functionConfigSchema: z.ZodObject<{
|
|
|
1494
1494
|
concurrency?: number | {
|
|
1495
1495
|
limit: number;
|
|
1496
1496
|
key?: string | undefined;
|
|
1497
|
-
scope?: "
|
|
1497
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1498
1498
|
} | {
|
|
1499
1499
|
limit: number;
|
|
1500
1500
|
key?: string | undefined;
|
|
1501
|
-
scope?: "
|
|
1501
|
+
scope?: "env" | "fn" | "account" | undefined;
|
|
1502
1502
|
}[] | undefined;
|
|
1503
1503
|
}>;
|
|
1504
1504
|
/**
|
package/version.cjs
CHANGED
package/version.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.cjs","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Generated by genversion.\nexport const version = \"4.2.
|
|
1
|
+
{"version":3,"file":"version.cjs","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Generated by genversion.\nexport const version = \"4.2.6\";\n"],"mappings":";;AACA,MAAa,UAAU"}
|
package/version.d.cts
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED
package/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Generated by genversion.\nexport const version = \"4.2.
|
|
1
|
+
{"version":3,"file":"version.js","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Generated by genversion.\nexport const version = \"4.2.6\";\n"],"mappings":";AACA,MAAa,UAAU"}
|