inngest 3.52.7 → 3.53.0

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/types.d.cts CHANGED
@@ -1169,11 +1169,11 @@ declare const functionConfigSchema: z.ZodObject<{
1169
1169
  type: z.ZodUnion<[z.ZodLiteral<"http">, z.ZodLiteral<"ws">]>;
1170
1170
  url: z.ZodString;
1171
1171
  }, "strict", z.ZodTypeAny, {
1172
- url: string;
1173
1172
  type: "http" | "ws";
1174
- }, {
1175
1173
  url: string;
1174
+ }, {
1176
1175
  type: "http" | "ws";
1176
+ url: string;
1177
1177
  }>;
1178
1178
  retries: z.ZodOptional<z.ZodObject<{
1179
1179
  attempts: z.ZodOptional<z.ZodNumber>;
@@ -1186,8 +1186,8 @@ declare const functionConfigSchema: z.ZodObject<{
1186
1186
  name: string;
1187
1187
  id: string;
1188
1188
  runtime: {
1189
- url: string;
1190
1189
  type: "http" | "ws";
1190
+ url: string;
1191
1191
  };
1192
1192
  retries?: {
1193
1193
  attempts?: number | undefined;
@@ -1196,8 +1196,8 @@ declare const functionConfigSchema: z.ZodObject<{
1196
1196
  name: string;
1197
1197
  id: string;
1198
1198
  runtime: {
1199
- url: string;
1200
1199
  type: "http" | "ws";
1200
+ url: string;
1201
1201
  };
1202
1202
  retries?: {
1203
1203
  attempts?: number | undefined;
@@ -1309,15 +1309,15 @@ declare const functionConfigSchema: z.ZodObject<{
1309
1309
  }, "strict", z.ZodTypeAny, {
1310
1310
  limit: number;
1311
1311
  key?: string | undefined;
1312
- scope?: "env" | "fn" | "account" | undefined;
1312
+ scope?: "fn" | "env" | "account" | undefined;
1313
1313
  }, {
1314
1314
  limit: number;
1315
1315
  key?: string | undefined;
1316
- scope?: "env" | "fn" | "account" | undefined;
1316
+ scope?: "fn" | "env" | "account" | undefined;
1317
1317
  }>, ConcurrencyOption, {
1318
1318
  limit: number;
1319
1319
  key?: string | undefined;
1320
- scope?: "env" | "fn" | "account" | undefined;
1320
+ scope?: "fn" | "env" | "account" | undefined;
1321
1321
  }>, z.ZodArray<z.ZodEffects<z.ZodObject<{
1322
1322
  limit: z.ZodNumber;
1323
1323
  key: z.ZodOptional<z.ZodString>;
@@ -1325,15 +1325,15 @@ declare const functionConfigSchema: z.ZodObject<{
1325
1325
  }, "strict", z.ZodTypeAny, {
1326
1326
  limit: number;
1327
1327
  key?: string | undefined;
1328
- scope?: "env" | "fn" | "account" | undefined;
1328
+ scope?: "fn" | "env" | "account" | undefined;
1329
1329
  }, {
1330
1330
  limit: number;
1331
1331
  key?: string | undefined;
1332
- scope?: "env" | "fn" | "account" | undefined;
1332
+ scope?: "fn" | "env" | "account" | undefined;
1333
1333
  }>, ConcurrencyOption, {
1334
1334
  limit: number;
1335
1335
  key?: string | undefined;
1336
- scope?: "env" | "fn" | "account" | undefined;
1336
+ scope?: "fn" | "env" | "account" | undefined;
1337
1337
  }>, "many">]>>;
1338
1338
  }, "strict", z.ZodTypeAny, {
1339
1339
  id: string;
@@ -1347,8 +1347,8 @@ declare const functionConfigSchema: z.ZodObject<{
1347
1347
  name: string;
1348
1348
  id: string;
1349
1349
  runtime: {
1350
- url: string;
1351
1350
  type: "http" | "ws";
1351
+ url: string;
1352
1352
  };
1353
1353
  retries?: {
1354
1354
  attempts?: number | undefined;
@@ -1407,8 +1407,8 @@ declare const functionConfigSchema: z.ZodObject<{
1407
1407
  name: string;
1408
1408
  id: string;
1409
1409
  runtime: {
1410
- url: string;
1411
1410
  type: "http" | "ws";
1411
+ url: string;
1412
1412
  };
1413
1413
  retries?: {
1414
1414
  attempts?: number | undefined;
@@ -1457,11 +1457,11 @@ declare const functionConfigSchema: z.ZodObject<{
1457
1457
  concurrency?: number | {
1458
1458
  limit: number;
1459
1459
  key?: string | undefined;
1460
- scope?: "env" | "fn" | "account" | undefined;
1460
+ scope?: "fn" | "env" | "account" | undefined;
1461
1461
  } | {
1462
1462
  limit: number;
1463
1463
  key?: string | undefined;
1464
- scope?: "env" | "fn" | "account" | undefined;
1464
+ scope?: "fn" | "env" | "account" | undefined;
1465
1465
  }[] | undefined;
1466
1466
  }>;
1467
1467
  /**
package/types.d.ts CHANGED
@@ -1169,11 +1169,11 @@ declare const functionConfigSchema: z.ZodObject<{
1169
1169
  type: z.ZodUnion<[z.ZodLiteral<"http">, z.ZodLiteral<"ws">]>;
1170
1170
  url: z.ZodString;
1171
1171
  }, "strict", z.ZodTypeAny, {
1172
- url: string;
1173
1172
  type: "http" | "ws";
1174
- }, {
1175
1173
  url: string;
1174
+ }, {
1176
1175
  type: "http" | "ws";
1176
+ url: string;
1177
1177
  }>;
1178
1178
  retries: z.ZodOptional<z.ZodObject<{
1179
1179
  attempts: z.ZodOptional<z.ZodNumber>;
@@ -1186,8 +1186,8 @@ declare const functionConfigSchema: z.ZodObject<{
1186
1186
  name: string;
1187
1187
  id: string;
1188
1188
  runtime: {
1189
- url: string;
1190
1189
  type: "http" | "ws";
1190
+ url: string;
1191
1191
  };
1192
1192
  retries?: {
1193
1193
  attempts?: number | undefined;
@@ -1196,8 +1196,8 @@ declare const functionConfigSchema: z.ZodObject<{
1196
1196
  name: string;
1197
1197
  id: string;
1198
1198
  runtime: {
1199
- url: string;
1200
1199
  type: "http" | "ws";
1200
+ url: string;
1201
1201
  };
1202
1202
  retries?: {
1203
1203
  attempts?: number | undefined;
@@ -1309,15 +1309,15 @@ declare const functionConfigSchema: z.ZodObject<{
1309
1309
  }, "strict", z.ZodTypeAny, {
1310
1310
  limit: number;
1311
1311
  key?: string | undefined;
1312
- scope?: "env" | "fn" | "account" | undefined;
1312
+ scope?: "fn" | "env" | "account" | undefined;
1313
1313
  }, {
1314
1314
  limit: number;
1315
1315
  key?: string | undefined;
1316
- scope?: "env" | "fn" | "account" | undefined;
1316
+ scope?: "fn" | "env" | "account" | undefined;
1317
1317
  }>, ConcurrencyOption, {
1318
1318
  limit: number;
1319
1319
  key?: string | undefined;
1320
- scope?: "env" | "fn" | "account" | undefined;
1320
+ scope?: "fn" | "env" | "account" | undefined;
1321
1321
  }>, z.ZodArray<z.ZodEffects<z.ZodObject<{
1322
1322
  limit: z.ZodNumber;
1323
1323
  key: z.ZodOptional<z.ZodString>;
@@ -1325,15 +1325,15 @@ declare const functionConfigSchema: z.ZodObject<{
1325
1325
  }, "strict", z.ZodTypeAny, {
1326
1326
  limit: number;
1327
1327
  key?: string | undefined;
1328
- scope?: "env" | "fn" | "account" | undefined;
1328
+ scope?: "fn" | "env" | "account" | undefined;
1329
1329
  }, {
1330
1330
  limit: number;
1331
1331
  key?: string | undefined;
1332
- scope?: "env" | "fn" | "account" | undefined;
1332
+ scope?: "fn" | "env" | "account" | undefined;
1333
1333
  }>, ConcurrencyOption, {
1334
1334
  limit: number;
1335
1335
  key?: string | undefined;
1336
- scope?: "env" | "fn" | "account" | undefined;
1336
+ scope?: "fn" | "env" | "account" | undefined;
1337
1337
  }>, "many">]>>;
1338
1338
  }, "strict", z.ZodTypeAny, {
1339
1339
  id: string;
@@ -1347,8 +1347,8 @@ declare const functionConfigSchema: z.ZodObject<{
1347
1347
  name: string;
1348
1348
  id: string;
1349
1349
  runtime: {
1350
- url: string;
1351
1350
  type: "http" | "ws";
1351
+ url: string;
1352
1352
  };
1353
1353
  retries?: {
1354
1354
  attempts?: number | undefined;
@@ -1407,8 +1407,8 @@ declare const functionConfigSchema: z.ZodObject<{
1407
1407
  name: string;
1408
1408
  id: string;
1409
1409
  runtime: {
1410
- url: string;
1411
1410
  type: "http" | "ws";
1411
+ url: string;
1412
1412
  };
1413
1413
  retries?: {
1414
1414
  attempts?: number | undefined;
@@ -1457,11 +1457,11 @@ declare const functionConfigSchema: z.ZodObject<{
1457
1457
  concurrency?: number | {
1458
1458
  limit: number;
1459
1459
  key?: string | undefined;
1460
- scope?: "env" | "fn" | "account" | undefined;
1460
+ scope?: "fn" | "env" | "account" | undefined;
1461
1461
  } | {
1462
1462
  limit: number;
1463
1463
  key?: string | undefined;
1464
- scope?: "env" | "fn" | "account" | undefined;
1464
+ scope?: "fn" | "env" | "account" | undefined;
1465
1465
  }[] | undefined;
1466
1466
  }>;
1467
1467
  /**
package/version.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  //#region src/version.ts
3
- const version = "3.52.7";
3
+ const version = "3.53.0";
4
4
 
5
5
  //#endregion
6
6
  exports.version = version;
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 = \"3.52.7\";\n"],"mappings":";;AACA,MAAa,UAAU"}
1
+ {"version":3,"file":"version.cjs","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Generated by genversion.\nexport const version = \"3.53.0\";\n"],"mappings":";;AACA,MAAa,UAAU"}
package/version.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  //#region src/version.d.ts
2
- declare const version = "3.52.7";
2
+ declare const version = "3.53.0";
3
3
  //#endregion
4
4
  export { version };
5
5
  //# sourceMappingURL=version.d.cts.map
package/version.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  //#region src/version.d.ts
2
- declare const version = "3.52.7";
2
+ declare const version = "3.53.0";
3
3
  //#endregion
4
4
  export { version };
5
5
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  //#region src/version.ts
2
- const version = "3.52.7";
2
+ const version = "3.53.0";
3
3
 
4
4
  //#endregion
5
5
  export { version };
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 = \"3.52.7\";\n"],"mappings":";AACA,MAAa,UAAU"}
1
+ {"version":3,"file":"version.js","names":[],"sources":["../src/version.ts"],"sourcesContent":["// Generated by genversion.\nexport const version = \"3.53.0\";\n"],"mappings":";AACA,MAAa,UAAU"}