wirejs-resources 0.1.90-async-api → 0.1.91-async-api

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.
@@ -2,6 +2,7 @@ import type { FileService } from "./services/file";
2
2
  import type { AuthenticationService } from "./services/authentication";
3
3
  import type { Secret } from "./resources/secret";
4
4
  import type { RealtimeService } from "./services/realtime";
5
+ import type { BackgroundJob } from "./resources/background-job";
5
6
  /**
6
7
  * Used by hosting providers to provide service overrides.
7
8
  */
@@ -11,4 +12,5 @@ export declare const overrides: {
11
12
  FileService?: typeof FileService;
12
13
  Secret?: typeof Secret;
13
14
  RealtimeService?: typeof RealtimeService;
15
+ BackgroundJob?: typeof BackgroundJob;
14
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-resources",
3
- "version": "0.1.90-async-api",
3
+ "version": "0.1.91-async-api",
4
4
  "description": "Basic services and server-side resources for wirejs apps",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",