@convex-dev/workpool 0.2.19 → 0.3.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.
Files changed (61) hide show
  1. package/README.md +77 -68
  2. package/dist/client/index.d.ts +7 -8
  3. package/dist/client/index.d.ts.map +1 -1
  4. package/dist/client/index.js +2 -8
  5. package/dist/client/index.js.map +1 -1
  6. package/dist/client/utils.d.ts +1 -8
  7. package/dist/client/utils.d.ts.map +1 -1
  8. package/dist/client/utils.js.map +1 -1
  9. package/dist/component/_generated/api.d.ts +27 -124
  10. package/dist/component/_generated/api.d.ts.map +1 -1
  11. package/dist/component/_generated/api.js +10 -1
  12. package/dist/component/_generated/api.js.map +1 -1
  13. package/dist/component/_generated/component.d.ts +98 -0
  14. package/dist/component/_generated/component.d.ts.map +1 -0
  15. package/dist/component/_generated/component.js +11 -0
  16. package/dist/component/_generated/component.js.map +1 -0
  17. package/dist/component/_generated/dataModel.d.ts +4 -18
  18. package/dist/component/_generated/dataModel.d.ts.map +1 -0
  19. package/dist/component/_generated/dataModel.js +11 -0
  20. package/dist/component/_generated/dataModel.js.map +1 -0
  21. package/dist/component/_generated/server.d.ts +10 -38
  22. package/dist/component/_generated/server.d.ts.map +1 -1
  23. package/dist/component/_generated/server.js +9 -5
  24. package/dist/component/_generated/server.js.map +1 -1
  25. package/dist/component/danger.d.ts +2 -2
  26. package/dist/component/lib.d.ts +9 -9
  27. package/dist/component/schema.d.ts +15 -15
  28. package/dist/component/shared.d.ts +4 -3
  29. package/dist/component/shared.d.ts.map +1 -1
  30. package/dist/component/shared.js +6 -0
  31. package/dist/component/shared.js.map +1 -1
  32. package/dist/component/stats.d.ts +2 -2
  33. package/dist/component/worker.d.ts +3 -3
  34. package/package.json +32 -30
  35. package/src/client/index.ts +23 -29
  36. package/src/client/utils.ts +3 -32
  37. package/src/component/README.md +6 -6
  38. package/src/component/_generated/api.ts +70 -0
  39. package/src/component/_generated/component.ts +117 -0
  40. package/src/component/_generated/{server.d.ts → server.ts} +33 -21
  41. package/src/component/complete.test.ts +1 -1
  42. package/src/component/complete.ts +6 -6
  43. package/src/component/danger.ts +3 -3
  44. package/src/component/kick.test.ts +5 -5
  45. package/src/component/kick.ts +6 -6
  46. package/src/component/lib.test.ts +3 -3
  47. package/src/component/lib.ts +8 -8
  48. package/src/component/logging.ts +2 -2
  49. package/src/component/loop.test.ts +9 -9
  50. package/src/component/loop.ts +33 -33
  51. package/src/component/recovery.test.ts +7 -7
  52. package/src/component/recovery.ts +2 -2
  53. package/src/component/schema.ts +2 -2
  54. package/src/component/shared.ts +11 -5
  55. package/src/component/stats.test.ts +3 -3
  56. package/src/component/stats.ts +6 -6
  57. package/src/test.ts +10 -3
  58. package/src/component/_generated/api.d.ts +0 -151
  59. package/src/component/_generated/api.js +0 -23
  60. package/src/component/_generated/server.js +0 -90
  61. /package/src/component/_generated/{dataModel.d.ts → dataModel.ts} +0 -0
package/README.md CHANGED
@@ -8,7 +8,8 @@ This Convex component pools actions and mutations to restrict parallel requests.
8
8
 
9
9
  - Configure multiple pools with different parallelism.
10
10
  - Retry failed actions (with backoff and jitter) for
11
- [idempotent actions](#idempotency), fully configurable (respecting parallelism).
11
+ [idempotent actions](#idempotency), fully configurable (respecting
12
+ parallelism).
12
13
  - An `onComplete` callback so you can build durable, reliable workflows. Called
13
14
  when the work is finished, whether it succeeded, failed, or was canceled.
14
15
 
@@ -53,15 +54,15 @@ export const downloadLatestWeather = mutation({
53
54
 
54
55
  ### Retry management
55
56
 
56
- Imagine that the payment processor is a 3rd party API, and they temporarily have an
57
- outage. Now imagine you implement your own action retrying logic for your busy app.
58
- You'll find very quickly that your entire backend is overwhelmed with retrying actions.
59
- This could bog down live traffic with background work, and/or cause you to exceed
60
- rate limits with the payment provider.
57
+ Imagine that the payment processor is a 3rd party API, and they temporarily have
58
+ an outage. Now imagine you implement your own action retrying logic for your
59
+ busy app. You'll find very quickly that your entire backend is overwhelmed with
60
+ retrying actions. This could bog down live traffic with background work, and/or
61
+ cause you to exceed rate limits with the payment provider.
61
62
 
62
- Creating an upper bound on how much work will be done in parallel is a good way to
63
- mitigate this risk. Actions that are currently backing off awaiting retry will not tie
64
- up a thread in the workpool.
63
+ Creating an upper bound on how much work will be done in parallel is a good way
64
+ to mitigate this risk. Actions that are currently backing off awaiting retry
65
+ will not tie up a thread in the workpool.
65
66
 
66
67
  ### Completion handling
67
68
 
@@ -70,9 +71,9 @@ you can account for temporary failures, while avoiding a "stampeding herd"
70
71
  during third party outages.
71
72
 
72
73
  With the `onComplete` callback, you can define how to proceed after each step,
73
- whether that enqueues another job to the workpool, updates the database, etc.
74
- It will always be called, whether the work was successful, failed, or was
75
- canceled. See [below](#options-for-enqueueing-work) for more info.
74
+ whether that enqueues another job to the workpool, updates the database, etc. It
75
+ will always be called, whether the work was successful, failed, or was canceled.
76
+ See [below](#options-for-enqueueing-work) for more info.
76
77
 
77
78
  Example:
78
79
 
@@ -102,7 +103,7 @@ const sendEmailReliablyWithRetries = mutation({
102
103
 
103
104
  export const emailSent = internalMutation({
104
105
  args: vOnCompleteValidator(
105
- v.object({ emailType: v.string(), userId: v.id("users") })
106
+ v.object({ emailType: v.string(), userId: v.id("users") }),
106
107
  ),
107
108
  handler: async (ctx, { workId, context, result }) => {
108
109
  if (result.kind === "canceled") return;
@@ -121,7 +122,7 @@ export const emailSent = internalMutation({
121
122
  retry: { maxAttempts: 10, initialBackoffMs: 250, base: 2 }, // custom
122
123
  onComplete: internal.email.handleEmailStatus,
123
124
  context: { emailLogId },
124
- }
125
+ },
125
126
  );
126
127
  }
127
128
  },
@@ -129,12 +130,12 @@ export const emailSent = internalMutation({
129
130
  ```
130
131
 
131
132
  Note: the `onComplete` handler runs in a different transaction than the job
132
- enqueued. If you want to run it in the same transaction, you can do that work
133
- at the end of the enqueued function, before returning. This is generally faster
134
- and more typesafe when handling the "success" case.
133
+ enqueued. If you want to run it in the same transaction, you can do that work at
134
+ the end of the enqueued function, before returning. This is generally faster and
135
+ more typesafe when handling the "success" case.
135
136
 
136
- You can also use this equivalent helper to define an `onComplete` mutation.
137
- Note the `DataModel` type parameter, if you want ctx.db to be type safe.
137
+ You can also use this equivalent helper to define an `onComplete` mutation. Note
138
+ the `DataModel` type parameter, if you want ctx.db to be type safe.
138
139
 
139
140
  ```ts
140
141
  export const emailSent = pool.defineOnComplete<DataModel>({
@@ -147,19 +148,20 @@ export const emailSent = pool.defineOnComplete<DataModel>({
147
148
 
148
149
  ### Idempotency
149
150
 
150
- Idempotent actions are actions that can be run multiple times safely. This typically
151
- means they don't cause any side effects that would be a problem if executed twice or more.
151
+ Idempotent actions are actions that can be run multiple times safely. This
152
+ typically means they don't cause any side effects that would be a problem if
153
+ executed twice or more.
152
154
 
153
- As an example of an unsafe, non-idempotent action, consider an action that charges
154
- a user's credit card without providing a unique transaction id to the payment
155
- processor. The first time the action is run, imagine that the API call succeeds to the
156
- payment provider, but then the action throws an exception before the transaction is marked
157
- finished in our Convex database. If the action is run twice, the user may be
158
- double charged for the transaction!
155
+ As an example of an unsafe, non-idempotent action, consider an action that
156
+ charges a user's credit card without providing a unique transaction id to the
157
+ payment processor. The first time the action is run, imagine that the API call
158
+ succeeds to the payment provider, but then the action throws an exception before
159
+ the transaction is marked finished in our Convex database. If the action is run
160
+ twice, the user may be double charged for the transaction!
159
161
 
160
- If we alter this action to provide a consistent transaction id to the payment provider, they
161
- can simply NOOP the second payment attempt. The this makes the action idempotent, and
162
- it can safely be retried.
162
+ If we alter this action to provide a consistent transaction id to the payment
163
+ provider, they can simply NOOP the second payment attempt. The this makes the
164
+ action idempotent, and it can safely be retried.
163
165
 
164
166
  If you're creating complex workflows with many steps involving 3rd party APIs:
165
167
 
@@ -169,12 +171,12 @@ If you're creating complex workflows with many steps involving 3rd party APIs:
169
171
  ### Reducing database write conflicts (aka OCC errors)
170
172
 
171
173
  With limited parallelism, you can reduce
172
- [write conflicts](https://docs.convex.dev/error#1)
173
- from mutations that read and write the same data.
174
+ [write conflicts](https://docs.convex.dev/error#1) from mutations that read and
175
+ write the same data.
174
176
 
175
- Consider this action that calls a mutation to increment a singleton counter.
176
- By calling the mutation on a workpool with `maxParallelism: 1`, it will never
177
- throw an error due to conflicts with parallel mutations.
177
+ Consider this action that calls a mutation to increment a singleton counter. By
178
+ calling the mutation on a workpool with `maxParallelism: 1`, it will never throw
179
+ an error due to conflicts with parallel mutations.
178
180
 
179
181
  ```ts
180
182
  const counterPool = new Workpool(components.counterWorkpool, {
@@ -200,16 +202,16 @@ export const increment = internalMutation({
200
202
  ```
201
203
 
202
204
  Effectively, Workpool runs async functions similar to
203
- `ctx.scheduler.runAfter(0, ...)`, but it limits the number of functions that
204
- can run in parallel.
205
+ `ctx.scheduler.runAfter(0, ...)`, but it limits the number of functions that can
206
+ run in parallel.
205
207
 
206
208
  ## Reactive status of asynchronous work
207
209
 
208
210
  The workpool stores the status of each function in the database, and thanks to
209
211
  Convex's reactive queries, you can read it in a query to power a reactive UI.
210
212
 
211
- By default, it will keep the status for 1 day but you can change this with
212
- the `statusTtl` option to `Workpool`.
213
+ By default, it will keep the status for 1 day but you can change this with the
214
+ `statusTtl` option to `Workpool`.
213
215
 
214
216
  To keep the status forever, set `statusTtl: Number.POSITIVE_INFINITY`.
215
217
 
@@ -230,8 +232,10 @@ export const getStatus = query({
230
232
 
231
233
  The status will be one of:
232
234
 
233
- - `{ kind: "pending"; previousAttempts: number }`: The function has not started yet.
234
- - `{ kind: "running"; previousAttempts: number }`: The function is currently running.
235
+ - `{ kind: "pending"; previousAttempts: number }`: The function has not started
236
+ yet.
237
+ - `{ kind: "running"; previousAttempts: number }`: The function is currently
238
+ running.
235
239
  - `{ kind: "finished" }`: The function has succeeded, failed, or been canceled.
236
240
 
237
241
  To get the result of your function, you can either write to the database from
@@ -242,11 +246,12 @@ within your function, call or schedule another function from there, or use the
242
246
 
243
247
  ### Pre-requisite: Convex
244
248
 
245
- You'll need an existing Convex project to use the component.
246
- Convex is a hosted backend platform, including a database, serverless functions,
247
- and a ton more you can learn about [here](https://docs.convex.dev/get-started).
249
+ You'll need an existing Convex project to use the component. Convex is a hosted
250
+ backend platform, including a database, serverless functions, and a ton more you
251
+ can learn about [here](https://docs.convex.dev/get-started).
248
252
 
249
- Run `npm create convex` or follow any of the [quickstarts](https://docs.convex.dev/home) to set one up.
253
+ Run `npm create convex` or follow any of the
254
+ [quickstarts](https://docs.convex.dev/home) to set one up.
250
255
 
251
256
  ### Install the component
252
257
 
@@ -264,7 +269,7 @@ npm install @convex-dev/workpool
264
269
  ```ts
265
270
  // convex/convex.config.ts
266
271
  import { defineApp } from "convex/server";
267
- import workpool from "@convex-dev/workpool/convex.config";
272
+ import workpool from "@convex-dev/workpool/convex.config.js";
268
273
 
269
274
  const app = defineApp();
270
275
  app.use(workpool, { name: "emailWorkpool" });
@@ -279,7 +284,8 @@ See example usage in [example.ts](./example/convex/example.ts).
279
284
  Check out the [docstrings](./src/client/index.ts), but notable options include:
280
285
 
281
286
  - `maxParallelism`: How many actions/mutations can run at once within this pool.
282
- Avoid exceeding 100 on Pro, 20 on the free plan, across all workpools and workflows.
287
+ Avoid exceeding 100 on Pro, 20 on the free plan, across all workpools and
288
+ workflows.
283
289
  - `retryActionsByDefault`: Whether to retry actions that fail by default.
284
290
  - `defaultRetryBehavior`: The default retry behavior for enqueued actions.
285
291
 
@@ -287,11 +293,12 @@ You can override the retry behavior per-call with the `retry` option.
287
293
 
288
294
  ### Options for enqueueing work
289
295
 
290
- See the [docstrings](./src/client/index.ts) for more details, but notable options include:
296
+ See the [docstrings](./src/client/index.ts) for more details, but notable
297
+ options include:
291
298
 
292
- - `retry`: Whether to retry the action if it fails. Overrides defaults.
293
- If it's set to `true`, it will use the `defaultRetryBehavior`.
294
- If it's set to a custom config, it will use that (and do retries).
299
+ - `retry`: Whether to retry the action if it fails. Overrides defaults. If it's
300
+ set to `true`, it will use the `defaultRetryBehavior`. If it's set to a custom
301
+ config, it will use that (and do retries).
295
302
  - `onComplete`: A mutation to run after the function finishes.
296
303
  - `context`: Any data you want to pass to the `onComplete` mutation.
297
304
  - `runAt` and `runAfter`: Similar to `ctx.scheduler.run*`, allows you to
@@ -305,8 +312,8 @@ The retry options work like this:
305
312
  - If it fails, it will wait _around_ `initialBackoffMs` and then try again.
306
313
  - Each subsequent retry waits `initialBackoffMs * base^<retryNumber - 1>`.
307
314
  - The standard base is 2.
308
- - The actual wait time uses "jitter" to avoid all retries happening at once
309
- if they all fail at the same time.
315
+ - The actual wait time uses "jitter" to avoid all retries happening at once if
316
+ they all fail at the same time.
310
317
 
311
318
  You can override the retry behavior per-call with the `retry` option.
312
319
 
@@ -315,8 +322,8 @@ You can override the retry behavior per-call with the `retry` option.
315
322
  The benefit of Workpool is that it won't fall over if there are many jobs
316
323
  scheduled at once, and it allows you to throttle low-priority jobs.
317
324
 
318
- However, Workpool has some overhead and can slow down your workload compared
319
- to using `ctx.scheduler` directly.
325
+ However, Workpool has some overhead and can slow down your workload compared to
326
+ using `ctx.scheduler` directly.
320
327
 
321
328
  Since each Workpool has some overhead -- each runs several functions to
322
329
  coordinate its work -- don't create too many of them.
@@ -330,17 +337,18 @@ alternatives to Workpool:
330
337
  - In particular, an action calling `ctx.runAction` has more overhead than just
331
338
  calling the action's handler directly.
332
339
 
333
- See [best practices](https://docs.convex.dev/production/best-practices) for more.
340
+ See [best practices](https://docs.convex.dev/production/best-practices) for
341
+ more.
334
342
 
335
343
  ### Batching
336
344
 
337
- If you're enqueuing a lot of work, you can use `enqueueActionBatch` to enqueue
338
- a batch of actions at once, or the equivalents for queries or mutations.
345
+ If you're enqueuing a lot of work, you can use `enqueueActionBatch` to enqueue a
346
+ batch of actions at once, or the equivalents for queries or mutations.
339
347
 
340
348
  This helps in two ways:
341
349
 
342
- 1. It reduces the number of calls to the component, which reduces overhead
343
- as each component call runs in a fresh container (for strong isolation).
350
+ 1. It reduces the number of calls to the component, which reduces overhead as
351
+ each component call runs in a fresh container (for strong isolation).
344
352
  2. When called from an action, it reduces the number of mutations that might
345
353
  conflict with each other, especially if they were being called in parallel.
346
354
 
@@ -372,9 +380,9 @@ This will avoid starting or retrying, but will not stop in-progress work.
372
380
  ## Monitoring the workpool
373
381
 
374
382
  If you want to know the status of your workpool, here are some queries to use
375
- for [Axiom](https://axiom.co/docs/send-data/convex).
376
- Just replace `your-dataset` with your dataset's name (which is also
377
- what you enter in the log streaming configuration in the Convex dashboard).
383
+ for [Axiom](https://axiom.co/docs/send-data/convex). Just replace `your-dataset`
384
+ with your dataset's name (which is also what you enter in the log streaming
385
+ configuration in the Convex dashboard).
378
386
 
379
387
  Note: these are optimized for monitors. For dashboards, you might want to change
380
388
  `bin(_time, X)` to `bin_auto(_time)`.
@@ -397,7 +405,8 @@ max for 1 minute intervals (which is roughly how often the report is generated).
397
405
 
398
406
  ### Are functions failing (after retries)
399
407
 
400
- Reports the overall average failure rate per registered workpool in 5 minute intervals.
408
+ Reports the overall average failure rate per registered workpool in 5 minute
409
+ intervals.
401
410
 
402
411
  ```txt
403
412
  ['your-dataset']
@@ -427,8 +436,8 @@ Note: to get this data, set the workpool `logLevel` to `"INFO"` (or `"DEBUG"`).
427
436
 
428
437
  ### Is there a big delay between being enqueued and starting
429
438
 
430
- Reports the average time between enqueueing work and it actually starting.
431
- Note: to get this data, set the workpool `logLevel` to `"INFO"` (or `"DEBUG"`).
439
+ Reports the average time between enqueueing work and it actually starting. Note:
440
+ to get this data, set the workpool `logLevel` to `"INFO"` (or `"DEBUG"`).
432
441
 
433
442
  ```txt
434
443
  ['your-dataset']
@@ -443,8 +452,8 @@ Note: to get this data, set the workpool `logLevel` to `"INFO"` (or `"DEBUG"`).
443
452
  While similar to the backlog size, this is a more concrete value, since the
444
453
  events in the backlog may take variable amounts of time. This is a more user-
445
454
  visible metric, though it is a "lagging" indicator - this will be high when the
446
- backlog was large enough to delay the processing of an entry. So alerting on
447
- the backlog size will give you a faster indicator, while this is a metric of the
455
+ backlog was large enough to delay the processing of an entry. So alerting on the
456
+ backlog size will give you a faster indicator, while this is a metric of the
448
457
  severity of the incident.
449
458
 
450
459
  <!-- END: Include on https://convex.dev/components -->
@@ -1,9 +1,9 @@
1
1
  import { type DefaultFunctionArgs, type FunctionReference, type FunctionType, type FunctionVisibility, type GenericDataModel, type GenericMutationCtx, type RegisteredMutation } from "convex/server";
2
2
  import { type Infer, type Validator, type VAny, type VString } from "convex/values";
3
- import type { Mounts } from "../component/_generated/api.js";
3
+ import type { ComponentApi } from "../component/_generated/component.js";
4
4
  import { type LogLevel } from "../component/logging.js";
5
- import { type RetryBehavior, type RunResult, type Status, vResultValidator } from "../component/shared.js";
6
- import { type RunMutationCtx, type RunQueryCtx, type UseApi } from "./utils.js";
5
+ import { DEFAULT_RETRY_BEHAVIOR, type RetryBehavior, type RunResult, type Status, vResultValidator } from "../component/shared.js";
6
+ import { type RunMutationCtx, type RunQueryCtx } from "./utils.js";
7
7
  export { logLevel as vLogLevel, type LogLevel } from "../component/logging.js";
8
8
  export { retryBehavior as vRetryBehavior } from "../component/shared.js";
9
9
  export { vResultValidator, type RetryBehavior, type RunResult };
@@ -11,7 +11,7 @@ export type WorkId = string & {
11
11
  __isWorkId: true;
12
12
  };
13
13
  export declare const vWorkIdValidator: VString<WorkId>;
14
- export {
14
+ export { DEFAULT_RETRY_BEHAVIOR,
15
15
  /** @deprecated Use `vResultValidator` instead. */
16
16
  vResultValidator as resultValidator,
17
17
  /** @deprecated Use `vWorkIdValidator` instead. */
@@ -60,8 +60,7 @@ export declare const vOnComplete: import("convex/values").VObject<{
60
60
  }, "required", "context" | `context.${string}` | "workId" | "result" | "result.kind" | "result.returnValue" | `result.returnValue.${string}` | "result.error">;
61
61
  /** @deprecated Use `vOnCompleteArgs()` instead. */
62
62
  export declare const vOnCompleteValidator: typeof vOnCompleteArgs;
63
- export declare const DEFAULT_RETRY_BEHAVIOR: RetryBehavior;
64
- export type WorkpoolComponent = UseApi<Mounts>;
63
+ export type WorkpoolComponent = ComponentApi;
65
64
  export declare class Workpool {
66
65
  component: WorkpoolComponent;
67
66
  options: WorkpoolOptions;
@@ -418,12 +417,12 @@ export type OnCompleteArgs = {
418
417
  */
419
418
  result: RunResult;
420
419
  };
421
- export declare function enqueueBatch<FnType extends FunctionType, Args extends DefaultFunctionArgs, ReturnType>(component: UseApi<Mounts>, ctx: RunMutationCtx, fnType: FnType, fn: FunctionReference<FnType, FunctionVisibility, Args, ReturnType>, fnArgsArray: Array<Args>, options: EnqueueOptions & {
420
+ export declare function enqueueBatch<FnType extends FunctionType, Args extends DefaultFunctionArgs, ReturnType>(component: WorkpoolComponent, ctx: RunMutationCtx, fnType: FnType, fn: FunctionReference<FnType, FunctionVisibility, Args, ReturnType>, fnArgsArray: Array<Args>, options: EnqueueOptions & {
422
421
  retryBehavior?: RetryBehavior;
423
422
  maxParallelism?: number;
424
423
  logLevel?: LogLevel;
425
424
  }): Promise<WorkId[]>;
426
- export declare function enqueue<FnType extends FunctionType, Args extends DefaultFunctionArgs, ReturnType>(component: UseApi<Mounts>, ctx: RunMutationCtx, fnType: FnType, fn: FunctionReference<FnType, FunctionVisibility, Args, ReturnType>, fnArgs: Args, options: EnqueueOptions & {
425
+ export declare function enqueue<FnType extends FunctionType, Args extends DefaultFunctionArgs, ReturnType>(component: WorkpoolComponent, ctx: RunMutationCtx, fnType: FnType, fn: FunctionReference<FnType, FunctionVisibility, Args, ReturnType>, fnArgs: Args, options: EnqueueOptions & {
427
426
  retryBehavior?: RetryBehavior;
428
427
  maxParallelism?: number;
429
428
  logLevel?: LogLevel;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"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"}
@@ -1,13 +1,13 @@
1
1
  import { createFunctionHandle, internalMutationGeneric, } from "convex/server";
2
2
  import { v, } from "convex/values";
3
3
  import { DEFAULT_LOG_LEVEL } from "../component/logging.js";
4
- import { DEFAULT_MAX_PARALLELISM, vResultValidator, } from "../component/shared.js";
4
+ import { DEFAULT_MAX_PARALLELISM, DEFAULT_RETRY_BEHAVIOR, vResultValidator, } from "../component/shared.js";
5
5
  import { safeFunctionName, } from "./utils.js";
6
6
  export { logLevel as vLogLevel } from "../component/logging.js";
7
7
  export { retryBehavior as vRetryBehavior } from "../component/shared.js";
8
8
  export { vResultValidator };
9
9
  export const vWorkIdValidator = v.string();
10
- export {
10
+ export { DEFAULT_RETRY_BEHAVIOR,
11
11
  /** @deprecated Use `vResultValidator` instead. */
12
12
  vResultValidator as resultValidator,
13
13
  /** @deprecated Use `vWorkIdValidator` instead. */
@@ -16,12 +16,6 @@ vWorkIdValidator as workIdValidator, };
16
16
  export const vOnComplete = vOnCompleteArgs(v.any());
17
17
  /** @deprecated Use `vOnCompleteArgs()` instead. */
18
18
  export const vOnCompleteValidator = vOnCompleteArgs;
19
- // Attempts will run with delay [0, 250, 500, 1000, 2000] (ms)
20
- export const DEFAULT_RETRY_BEHAVIOR = {
21
- maxAttempts: 5,
22
- initialBackoffMs: 250,
23
- base: 2,
24
- };
25
19
  export class Workpool {
26
20
  component;
27
21
  options;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/client/index.ts"],"names":[],"mappings":"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"}
@@ -1,16 +1,9 @@
1
- import { type Expand, type FunctionArgs, type FunctionReference, type FunctionReturnType, type FunctionType, type FunctionVisibility } from "convex/server";
2
- import type { GenericId } from "convex/values";
1
+ import { type FunctionArgs, type FunctionReference, type FunctionReturnType, type FunctionType, type FunctionVisibility } from "convex/server";
3
2
  export type RunQueryCtx = {
4
3
  runQuery: <Query extends FunctionReference<"query", "internal">>(query: Query, args: FunctionArgs<Query>) => Promise<FunctionReturnType<Query>>;
5
4
  };
6
5
  export type RunMutationCtx = RunQueryCtx & {
7
6
  runMutation: <Mutation extends FunctionReference<"mutation", "internal">>(mutation: Mutation, args: FunctionArgs<Mutation>) => Promise<FunctionReturnType<Mutation>>;
8
7
  };
9
- export type OpaqueIds<T> = T extends GenericId<infer _T> ? string : T extends (infer U)[] ? OpaqueIds<U>[] : T extends object ? {
10
- [K in keyof T]: OpaqueIds<T[K]>;
11
- } : T;
12
- export type UseApi<API> = Expand<{
13
- [mod in keyof API]: API[mod] extends FunctionReference<infer FType, "public", infer FArgs, infer FReturnType, infer FComponentPath> ? FunctionReference<FType, "internal", OpaqueIds<FArgs>, OpaqueIds<FReturnType>, FComponentPath> : UseApi<API[mod]>;
14
- }>;
15
8
  export declare function safeFunctionName(f: FunctionReference<FunctionType, FunctionVisibility>): any;
16
9
  //# sourceMappingURL=utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/client/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,MAAM,EACX,KAAK,YAAY,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,YAAY,EACjB,KAAK,kBAAkB,EAGxB,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAI/C,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,EAAE,CAAC,KAAK,SAAS,iBAAiB,CAAC,OAAO,EAAE,UAAU,CAAC,EAC7D,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,YAAY,CAAC,KAAK,CAAC,KACtB,OAAO,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC;CACzC,CAAC;AACF,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG;IACzC,WAAW,EAAE,CAAC,QAAQ,SAAS,iBAAiB,CAAC,UAAU,EAAE,UAAU,CAAC,EACtE,QAAQ,EAAE,QAAQ,EAClB,IAAI,EAAE,YAAY,CAAC,QAAQ,CAAC,KACzB,OAAO,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,SAAS,CAAC,CAAC,IACrB,CAAC,SAAS,SAAS,CAAC,MAAM,EAAE,CAAC,GACzB,MAAM,GACN,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,GACnB,SAAS,CAAC,CAAC,CAAC,EAAE,GACd,CAAC,SAAS,MAAM,GACd;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GACnC,CAAC,CAAC;AAEZ,MAAM,MAAM,MAAM,CAAC,GAAG,IAAI,MAAM,CAAC;KAC9B,GAAG,IAAI,MAAM,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,SAAS,iBAAiB,CACpD,MAAM,KAAK,EACX,QAAQ,EACR,MAAM,KAAK,EACX,MAAM,WAAW,EACjB,MAAM,cAAc,CACrB,GACG,iBAAiB,CACf,KAAK,EACL,UAAU,EACV,SAAS,CAAC,KAAK,CAAC,EAChB,SAAS,CAAC,WAAW,CAAC,EACtB,cAAc,CACf,GACD,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CACrB,CAAC,CAAC;AAEH,wBAAgB,gBAAgB,CAC9B,CAAC,EAAE,iBAAiB,CAAC,YAAY,EAAE,kBAAkB,CAAC,OASvD"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/client/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,YAAY,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,YAAY,EACjB,KAAK,kBAAkB,EAGxB,MAAM,eAAe,CAAC;AAIvB,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,EAAE,CAAC,KAAK,SAAS,iBAAiB,CAAC,OAAO,EAAE,UAAU,CAAC,EAC7D,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,YAAY,CAAC,KAAK,CAAC,KACtB,OAAO,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC;CACzC,CAAC;AACF,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG;IACzC,WAAW,EAAE,CAAC,QAAQ,SAAS,iBAAiB,CAAC,UAAU,EAAE,UAAU,CAAC,EACtE,QAAQ,EAAE,QAAQ,EAClB,IAAI,EAAE,YAAY,CAAC,QAAQ,CAAC,KACzB,OAAO,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,CAAC;CAC5C,CAAC;AAEF,wBAAgB,gBAAgB,CAC9B,CAAC,EAAE,iBAAiB,CAAC,YAAY,EAAE,kBAAkB,CAAC,OASvD"}
@@ -1 +1 @@
1
- {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/client/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAOL,kBAAkB,EAClB,eAAe,GAChB,MAAM,eAAe,CAAC;AA6CvB,MAAM,UAAU,gBAAgB,CAC9B,CAAsD;IAEtD,MAAM,OAAO,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC;IACtC,OAAO,CACL,OAAO,CAAC,IAAI;QACZ,OAAO,CAAC,SAAS;QACjB,OAAO,CAAC,cAAc;QACtB,eAAe,CAAC,CAAC,CAAC,CACnB,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/client/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,kBAAkB,EAClB,eAAe,GAChB,MAAM,eAAe,CAAC;AAiBvB,MAAM,UAAU,gBAAgB,CAC9B,CAAsD;IAEtD,MAAM,OAAO,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC;IACtC,OAAO,CACL,OAAO,CAAC,IAAI;QACZ,OAAO,CAAC,SAAS;QACjB,OAAO,CAAC,cAAc;QACtB,eAAe,CAAC,CAAC,CAAC,CACnB,CAAC;AACJ,CAAC"}
@@ -1,4 +1,3 @@
1
- /* eslint-disable */
2
1
  /**
3
2
  * Generated `api` utility.
4
3
  *
@@ -7,7 +6,6 @@
7
6
  * To regenerate, run `npx convex dev`.
8
7
  * @module
9
8
  */
10
-
11
9
  import type * as complete from "../complete.js";
12
10
  import type * as crons from "../crons.js";
13
11
  import type * as danger from "../danger.js";
@@ -19,133 +17,38 @@ import type * as recovery from "../recovery.js";
19
17
  import type * as shared from "../shared.js";
20
18
  import type * as stats from "../stats.js";
21
19
  import type * as worker from "../worker.js";
22
-
23
- import type {
24
- ApiFromModules,
25
- FilterApi,
26
- FunctionReference,
27
- } from "convex/server";
28
-
20
+ import type { ApiFromModules, FilterApi, FunctionReference } from "convex/server";
21
+ declare const fullApi: ApiFromModules<{
22
+ complete: typeof complete;
23
+ crons: typeof crons;
24
+ danger: typeof danger;
25
+ kick: typeof kick;
26
+ lib: typeof lib;
27
+ logging: typeof logging;
28
+ loop: typeof loop;
29
+ recovery: typeof recovery;
30
+ shared: typeof shared;
31
+ stats: typeof stats;
32
+ worker: typeof worker;
33
+ }>;
29
34
  /**
30
- * A utility for referencing Convex functions in your app's API.
35
+ * A utility for referencing Convex functions in your app's public API.
31
36
  *
32
37
  * Usage:
33
38
  * ```js
34
39
  * const myFunctionReference = api.myModule.myFunction;
35
40
  * ```
36
41
  */
37
- declare const fullApi: ApiFromModules<{
38
- complete: typeof complete;
39
- crons: typeof crons;
40
- danger: typeof danger;
41
- kick: typeof kick;
42
- lib: typeof lib;
43
- logging: typeof logging;
44
- loop: typeof loop;
45
- recovery: typeof recovery;
46
- shared: typeof shared;
47
- stats: typeof stats;
48
- worker: typeof worker;
49
- }>;
50
- export type Mounts = {
51
- lib: {
52
- cancel: FunctionReference<
53
- "mutation",
54
- "public",
55
- {
56
- id: string;
57
- logLevel: "DEBUG" | "TRACE" | "INFO" | "REPORT" | "WARN" | "ERROR";
58
- },
59
- any
60
- >;
61
- cancelAll: FunctionReference<
62
- "mutation",
63
- "public",
64
- {
65
- before?: number;
66
- limit?: number;
67
- logLevel: "DEBUG" | "TRACE" | "INFO" | "REPORT" | "WARN" | "ERROR";
68
- },
69
- any
70
- >;
71
- enqueue: FunctionReference<
72
- "mutation",
73
- "public",
74
- {
75
- config: {
76
- logLevel: "DEBUG" | "TRACE" | "INFO" | "REPORT" | "WARN" | "ERROR";
77
- maxParallelism: number;
78
- };
79
- fnArgs: any;
80
- fnHandle: string;
81
- fnName: string;
82
- fnType: "action" | "mutation" | "query";
83
- onComplete?: { context?: any; fnHandle: string };
84
- retryBehavior?: {
85
- base: number;
86
- initialBackoffMs: number;
87
- maxAttempts: number;
88
- };
89
- runAt: number;
90
- },
91
- string
92
- >;
93
- enqueueBatch: FunctionReference<
94
- "mutation",
95
- "public",
96
- {
97
- config: {
98
- logLevel: "DEBUG" | "TRACE" | "INFO" | "REPORT" | "WARN" | "ERROR";
99
- maxParallelism: number;
100
- };
101
- items: Array<{
102
- fnArgs: any;
103
- fnHandle: string;
104
- fnName: string;
105
- fnType: "action" | "mutation" | "query";
106
- onComplete?: { context?: any; fnHandle: string };
107
- retryBehavior?: {
108
- base: number;
109
- initialBackoffMs: number;
110
- maxAttempts: number;
111
- };
112
- runAt: number;
113
- }>;
114
- },
115
- Array<string>
116
- >;
117
- status: FunctionReference<
118
- "query",
119
- "public",
120
- { id: string },
121
- | { previousAttempts: number; state: "pending" }
122
- | { previousAttempts: number; state: "running" }
123
- | { state: "finished" }
124
- >;
125
- statusBatch: FunctionReference<
126
- "query",
127
- "public",
128
- { ids: Array<string> },
129
- Array<
130
- | { previousAttempts: number; state: "pending" }
131
- | { previousAttempts: number; state: "running" }
132
- | { state: "finished" }
133
- >
134
- >;
135
- };
136
- };
137
- // For now fullApiWithMounts is only fullApi which provides
138
- // jump-to-definition in component client code.
139
- // Use Mounts for the same type without the inference.
140
- declare const fullApiWithMounts: typeof fullApi;
141
-
142
- export declare const api: FilterApi<
143
- typeof fullApiWithMounts,
144
- FunctionReference<any, "public">
145
- >;
146
- export declare const internal: FilterApi<
147
- typeof fullApiWithMounts,
148
- FunctionReference<any, "internal">
149
- >;
150
-
42
+ export declare const api: FilterApi<typeof fullApi, FunctionReference<any, "public">>;
43
+ /**
44
+ * A utility for referencing Convex functions in your app's internal API.
45
+ *
46
+ * Usage:
47
+ * ```js
48
+ * const myFunctionReference = internal.myModule.myFunction;
49
+ * ```
50
+ */
51
+ export declare const internal: FilterApi<typeof fullApi, FunctionReference<any, "internal">>;
151
52
  export declare const components: {};
53
+ export {};
54
+ //# sourceMappingURL=api.d.ts.map