@serwist/background-sync 9.0.0-preview.12 → 9.0.0-preview.13

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.
@@ -11,6 +11,7 @@ export declare class BackgroundSyncPlugin implements SerwistPlugin {
11
11
  * documentation for parameter details.
12
12
  * @param options See the `@serwist/background-sync.Queue`
13
13
  * documentation for parameter details.
14
+ * @see https://serwist.pages.dev/docs/background-sync/queue
14
15
  */
15
16
  constructor(name: string, options?: QueueOptions);
16
17
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"BackgroundSyncPlugin.d.ts","sourceRoot":"","sources":["../src/BackgroundSyncPlugin.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,yBAAyB,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE9E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAG/C;;;GAGG;AACH,qBAAa,oBAAqB,YAAW,aAAa;IACxD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAQ;IAE/B;;;;;OAKG;gBACS,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY;IAIhD;;;OAGG;IACG,YAAY,CAAC,EAAE,OAAO,EAAE,EAAE,yBAAyB;CAG1D"}
1
+ {"version":3,"file":"BackgroundSyncPlugin.d.ts","sourceRoot":"","sources":["../src/BackgroundSyncPlugin.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,yBAAyB,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE9E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAG/C;;;GAGG;AACH,qBAAa,oBAAqB,YAAW,aAAa;IACxD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAQ;IAE/B;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY;IAIhD;;;OAGG;IACG,YAAY,CAAC,EAAE,OAAO,EAAE,EAAE,yBAAyB;CAG1D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serwist/background-sync",
3
- "version": "9.0.0-preview.12",
3
+ "version": "9.0.0-preview.13",
4
4
  "type": "module",
5
5
  "description": "A module that queues failed requests and uses the Background Synchronization API to replay them when the network is available",
6
6
  "files": [
@@ -31,13 +31,13 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "idb": "8.0.0",
34
- "@serwist/core": "9.0.0-preview.12"
34
+ "@serwist/core": "9.0.0-preview.13"
35
35
  },
36
36
  "devDependencies": {
37
37
  "cross-env": "7.0.3",
38
- "rollup": "4.9.6",
39
- "typescript": "5.4.0-dev.20240206",
40
- "@serwist/constants": "9.0.0-preview.12"
38
+ "rollup": "4.12.0",
39
+ "typescript": "5.5.0-dev.20240304",
40
+ "@serwist/constants": "9.0.0-preview.13"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "typescript": ">=5.0.0"
@@ -23,6 +23,7 @@ export class BackgroundSyncPlugin implements SerwistPlugin {
23
23
  * documentation for parameter details.
24
24
  * @param options See the `@serwist/background-sync.Queue`
25
25
  * documentation for parameter details.
26
+ * @see https://serwist.pages.dev/docs/background-sync/queue
26
27
  */
27
28
  constructor(name: string, options?: QueueOptions) {
28
29
  this._queue = new Queue(name, options);