pg-boss 7.2.0 → 7.2.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-boss",
3
- "version": "7.2.0",
3
+ "version": "7.2.1",
4
4
  "description": "Queueing jobs in Node.js using PostgreSQL like a boss",
5
5
  "main": "./src/index.js",
6
6
  "engines": {
package/types.d.ts CHANGED
@@ -102,6 +102,7 @@ declare namespace PgBoss {
102
102
  interface JobFetchOptions {
103
103
  teamSize?: number;
104
104
  teamConcurrency?: number;
105
+ teamRefill?: boolean;
105
106
  batchSize?: number;
106
107
  includeMetadata?: boolean;
107
108
  }