@serwist/core 8.4.4 → 9.0.0-preview.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 (117) hide show
  1. package/dist/_private/Deferred.d.ts +1 -0
  2. package/dist/_private/Deferred.d.ts.map +1 -0
  3. package/dist/_private/SerwistError.d.ts +1 -0
  4. package/dist/_private/SerwistError.d.ts.map +1 -0
  5. package/dist/_private/assert.d.ts +1 -0
  6. package/dist/_private/assert.d.ts.map +1 -0
  7. package/dist/_private/cacheMatchIgnoreParams.d.ts +1 -0
  8. package/dist/_private/cacheMatchIgnoreParams.d.ts.map +1 -0
  9. package/dist/_private/cacheNames.d.ts +1 -0
  10. package/dist/_private/cacheNames.d.ts.map +1 -0
  11. package/dist/_private/canConstructReadableStream.d.ts +1 -0
  12. package/dist/_private/canConstructReadableStream.d.ts.map +1 -0
  13. package/dist/_private/canConstructResponseFromBodyStream.d.ts +1 -0
  14. package/dist/_private/canConstructResponseFromBodyStream.d.ts.map +1 -0
  15. package/dist/_private/dontWaitFor.d.ts +1 -0
  16. package/dist/_private/dontWaitFor.d.ts.map +1 -0
  17. package/dist/_private/executeQuotaErrorCallbacks.d.ts +1 -0
  18. package/dist/_private/executeQuotaErrorCallbacks.d.ts.map +1 -0
  19. package/dist/_private/getFriendlyURL.d.ts +1 -0
  20. package/dist/_private/getFriendlyURL.d.ts.map +1 -0
  21. package/dist/_private/logger.d.ts +1 -0
  22. package/dist/_private/logger.d.ts.map +1 -0
  23. package/dist/_private/resultingClientExists.d.ts +1 -0
  24. package/dist/_private/resultingClientExists.d.ts.map +1 -0
  25. package/dist/_private/timeout.d.ts +1 -0
  26. package/dist/_private/timeout.d.ts.map +1 -0
  27. package/dist/_private/waitUntil.d.ts +1 -0
  28. package/dist/_private/waitUntil.d.ts.map +1 -0
  29. package/dist/cacheNames.d.ts +1 -0
  30. package/dist/cacheNames.d.ts.map +1 -0
  31. package/dist/{quotaErrorCallbacks.js → chunks/quotaErrorCallbacks.js} +9 -77
  32. package/dist/clientsClaim.d.ts +1 -0
  33. package/dist/clientsClaim.d.ts.map +1 -0
  34. package/dist/copyResponse.d.ts +1 -0
  35. package/dist/copyResponse.d.ts.map +1 -0
  36. package/dist/index.d.ts +1 -0
  37. package/dist/index.d.ts.map +1 -0
  38. package/dist/index.internal.d.ts +1 -0
  39. package/dist/index.internal.d.ts.map +1 -0
  40. package/dist/index.internal.js +14 -123
  41. package/dist/index.js +5 -60
  42. package/dist/models/messages/messageGenerator.d.ts +1 -0
  43. package/dist/models/messages/messageGenerator.d.ts.map +1 -0
  44. package/dist/models/messages/messages.d.ts +1 -0
  45. package/dist/models/messages/messages.d.ts.map +1 -0
  46. package/dist/models/pluginEvents.d.ts +1 -0
  47. package/dist/models/pluginEvents.d.ts.map +1 -0
  48. package/dist/models/quotaErrorCallbacks.d.ts +1 -0
  49. package/dist/models/quotaErrorCallbacks.d.ts.map +1 -0
  50. package/dist/registerQuotaErrorCallback.d.ts +1 -0
  51. package/dist/registerQuotaErrorCallback.d.ts.map +1 -0
  52. package/dist/setCacheNameDetails.d.ts +1 -0
  53. package/dist/setCacheNameDetails.d.ts.map +1 -0
  54. package/dist/types.d.ts +1 -0
  55. package/dist/types.d.ts.map +1 -0
  56. package/dist/utils/pluginUtils.d.ts +1 -0
  57. package/dist/utils/pluginUtils.d.ts.map +1 -0
  58. package/dist/utils/welcome.d.ts +1 -0
  59. package/dist/utils/welcome.d.ts.map +1 -0
  60. package/package.json +18 -22
  61. package/src/_private/Deferred.ts +33 -0
  62. package/src/_private/SerwistError.ts +42 -0
  63. package/src/_private/assert.ts +89 -0
  64. package/src/_private/cacheMatchIgnoreParams.ts +54 -0
  65. package/src/_private/cacheNames.ts +87 -0
  66. package/src/_private/canConstructReadableStream.ts +34 -0
  67. package/src/_private/canConstructResponseFromBodyStream.ts +37 -0
  68. package/src/_private/dontWaitFor.ts +16 -0
  69. package/src/_private/executeQuotaErrorCallbacks.ts +35 -0
  70. package/src/_private/getFriendlyURL.ts +16 -0
  71. package/src/_private/logger.ts +92 -0
  72. package/src/_private/resultingClientExists.ts +58 -0
  73. package/src/_private/timeout.ts +19 -0
  74. package/src/_private/waitUntil.ts +23 -0
  75. package/src/cacheNames.ts +41 -0
  76. package/src/clientsClaim.ts +20 -0
  77. package/src/copyResponse.ts +62 -0
  78. package/{dist/index.internal.d.cts → src/index.internal.ts} +19 -1
  79. package/{dist/index.d.cts → src/index.ts} +9 -0
  80. package/src/models/messages/messageGenerator.ts +28 -0
  81. package/src/models/messages/messages.ts +231 -0
  82. package/src/models/pluginEvents.ts +17 -0
  83. package/src/models/quotaErrorCallbacks.ts +13 -0
  84. package/src/registerQuotaErrorCallback.ts +36 -0
  85. package/src/setCacheNameDetails.ts +55 -0
  86. package/src/types.ts +315 -0
  87. package/src/utils/pluginUtils.ts +15 -0
  88. package/src/utils/welcome.ts +25 -0
  89. package/dist/_private/Deferred.d.cts +0 -18
  90. package/dist/_private/SerwistError.d.cts +0 -23
  91. package/dist/_private/assert.d.cts +0 -10
  92. package/dist/_private/cacheMatchIgnoreParams.d.cts +0 -14
  93. package/dist/_private/cacheNames.d.cts +0 -39
  94. package/dist/_private/canConstructReadableStream.d.cts +0 -11
  95. package/dist/_private/canConstructResponseFromBodyStream.d.cts +0 -10
  96. package/dist/_private/dontWaitFor.d.cts +0 -6
  97. package/dist/_private/executeQuotaErrorCallbacks.d.cts +0 -8
  98. package/dist/_private/getFriendlyURL.d.cts +0 -2
  99. package/dist/_private/logger.d.cts +0 -10
  100. package/dist/_private/resultingClientExists.d.cts +0 -11
  101. package/dist/_private/timeout.d.cts +0 -9
  102. package/dist/_private/waitUntil.d.cts +0 -11
  103. package/dist/cacheNames.d.cts +0 -20
  104. package/dist/clientsClaim.d.cts +0 -6
  105. package/dist/copyResponse.d.cts +0 -20
  106. package/dist/index.cjs +0 -153
  107. package/dist/index.internal.cjs +0 -243
  108. package/dist/models/messages/messageGenerator.d.cts +0 -1
  109. package/dist/models/messages/messages.d.cts +0 -8
  110. package/dist/models/pluginEvents.d.cts +0 -9
  111. package/dist/models/quotaErrorCallbacks.d.cts +0 -2
  112. package/dist/quotaErrorCallbacks.cjs +0 -432
  113. package/dist/registerQuotaErrorCallback.d.cts +0 -8
  114. package/dist/setCacheNameDetails.d.cts +0 -9
  115. package/dist/types.d.cts +0 -272
  116. package/dist/utils/pluginUtils.d.cts +0 -4
  117. package/dist/utils/welcome.d.cts +0 -1
@@ -1,20 +0,0 @@
1
- /**
2
- * Get the current cache names and prefix/suffix used by Workbox.
3
- *
4
- * `cacheNames.precache` is used for precached assets,
5
- * `cacheNames.googleAnalytics` is used by `@serwist/google-analytics` to
6
- * store `analytics.js`, and `cacheNames.runtime` is used for everything else.
7
- *
8
- * `cacheNames.prefix` can be used to retrieve just the current prefix value.
9
- * `cacheNames.suffix` can be used to retrieve just the current suffix value.
10
- *
11
- * @returns An object with `precache`, `runtime`, `prefix`, and `googleAnalytics` properties.
12
- */
13
- declare const cacheNames: {
14
- readonly googleAnalytics: string;
15
- readonly precache: string;
16
- readonly prefix: string;
17
- readonly runtime: string;
18
- readonly suffix: string;
19
- };
20
- export { cacheNames };
@@ -1,6 +0,0 @@
1
- /**
2
- * Claim any currently available clients once the service worker
3
- * becomes active. This is normally used in conjunction with `skipWaiting()`.
4
- */
5
- declare function clientsClaim(): void;
6
- export { clientsClaim };
@@ -1,20 +0,0 @@
1
- /**
2
- * Allows developers to copy a response and modify its `headers`, `status`,
3
- * or `statusText` values (the values settable via a
4
- * [`ResponseInit`](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#Syntax)
5
- * object in the constructor).
6
- * To modify these values, pass a function as the second argument. That
7
- * function will be invoked with a single object with the response properties
8
- * `{headers, status, statusText}`. The return value of this function will
9
- * be used as the `ResponseInit` for the new `Response`. To change the values
10
- * either modify the passed parameter(s) and return it, or return a totally
11
- * new object.
12
- *
13
- * This method is intentionally limited to same-origin responses, regardless of
14
- * whether CORS was used or not.
15
- *
16
- * @param response
17
- * @param modifier
18
- */
19
- declare function copyResponse(response: Response, modifier?: (responseInit: ResponseInit) => ResponseInit): Promise<Response>;
20
- export { copyResponse };
package/dist/index.cjs DELETED
@@ -1,153 +0,0 @@
1
- 'use strict';
2
-
3
- var quotaErrorCallbacks = require('./quotaErrorCallbacks.cjs');
4
-
5
- /**
6
- * Get the current cache names and prefix/suffix used by Workbox.
7
- *
8
- * `cacheNames.precache` is used for precached assets,
9
- * `cacheNames.googleAnalytics` is used by `@serwist/google-analytics` to
10
- * store `analytics.js`, and `cacheNames.runtime` is used for everything else.
11
- *
12
- * `cacheNames.prefix` can be used to retrieve just the current prefix value.
13
- * `cacheNames.suffix` can be used to retrieve just the current suffix value.
14
- *
15
- * @returns An object with `precache`, `runtime`, `prefix`, and `googleAnalytics` properties.
16
- */ const cacheNames = {
17
- get googleAnalytics () {
18
- return quotaErrorCallbacks.cacheNames.getGoogleAnalyticsName();
19
- },
20
- get precache () {
21
- return quotaErrorCallbacks.cacheNames.getPrecacheName();
22
- },
23
- get prefix () {
24
- return quotaErrorCallbacks.cacheNames.getPrefix();
25
- },
26
- get runtime () {
27
- return quotaErrorCallbacks.cacheNames.getRuntimeName();
28
- },
29
- get suffix () {
30
- return quotaErrorCallbacks.cacheNames.getSuffix();
31
- }
32
- };
33
-
34
- /*
35
- Copyright 2019 Google LLC
36
-
37
- Use of this source code is governed by an MIT-style
38
- license that can be found in the LICENSE file or at
39
- https://opensource.org/licenses/MIT.
40
- */ // Give TypeScript the correct global.
41
- /**
42
- * Claim any currently available clients once the service worker
43
- * becomes active. This is normally used in conjunction with `skipWaiting()`.
44
- */ function clientsClaim() {
45
- self.addEventListener("activate", ()=>self.clients.claim());
46
- }
47
-
48
- /**
49
- * Allows developers to copy a response and modify its `headers`, `status`,
50
- * or `statusText` values (the values settable via a
51
- * [`ResponseInit`](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#Syntax)
52
- * object in the constructor).
53
- * To modify these values, pass a function as the second argument. That
54
- * function will be invoked with a single object with the response properties
55
- * `{headers, status, statusText}`. The return value of this function will
56
- * be used as the `ResponseInit` for the new `Response`. To change the values
57
- * either modify the passed parameter(s) and return it, or return a totally
58
- * new object.
59
- *
60
- * This method is intentionally limited to same-origin responses, regardless of
61
- * whether CORS was used or not.
62
- *
63
- * @param response
64
- * @param modifier
65
- */ async function copyResponse(response, modifier) {
66
- let origin = null;
67
- // If response.url isn't set, assume it's cross-origin and keep origin null.
68
- if (response.url) {
69
- const responseURL = new URL(response.url);
70
- origin = responseURL.origin;
71
- }
72
- if (origin !== self.location.origin) {
73
- throw new quotaErrorCallbacks.SerwistError("cross-origin-copy-response", {
74
- origin
75
- });
76
- }
77
- const clonedResponse = response.clone();
78
- // Create a fresh `ResponseInit` object by cloning the headers.
79
- const responseInit = {
80
- headers: new Headers(clonedResponse.headers),
81
- status: clonedResponse.status,
82
- statusText: clonedResponse.statusText
83
- };
84
- // Apply any user modifications.
85
- const modifiedResponseInit = modifier ? modifier(responseInit) : responseInit;
86
- // Create the new response from the body stream and `ResponseInit`
87
- // modifications. Note: not all browsers support the Response.body stream,
88
- // so fall back to reading the entire body into memory as a blob.
89
- const body = quotaErrorCallbacks.canConstructResponseFromBodyStream() ? clonedResponse.body : await clonedResponse.blob();
90
- return new Response(body, modifiedResponseInit);
91
- }
92
-
93
- /**
94
- * Adds a function to the set of quotaErrorCallbacks that will be executed if
95
- * there's a quota error.
96
- *
97
- * @param callback
98
- */ // biome-ignore lint/complexity/noBannedTypes: Can't change Function type
99
- function registerQuotaErrorCallback(callback) {
100
- if (process.env.NODE_ENV !== "production") {
101
- quotaErrorCallbacks.finalAssertExports.isType(callback, "function", {
102
- moduleName: "@serwist/core",
103
- funcName: "register",
104
- paramName: "callback"
105
- });
106
- }
107
- quotaErrorCallbacks.quotaErrorCallbacks.add(callback);
108
- if (process.env.NODE_ENV !== "production") {
109
- quotaErrorCallbacks.logger.log("Registered a callback to respond to quota errors.", callback);
110
- }
111
- }
112
-
113
- /**
114
- * Modifies the default cache names used by the Serwist packages.
115
- * Cache names are generated as `<prefix>-<Cache Name>-<suffix>`.
116
- *
117
- * @param details
118
- */ function setCacheNameDetails(details) {
119
- if (process.env.NODE_ENV !== "production") {
120
- for (const key of Object.keys(details)){
121
- quotaErrorCallbacks.finalAssertExports.isType(details[key], "string", {
122
- moduleName: "@serwist/core",
123
- funcName: "setCacheNameDetails",
124
- paramName: `details.${key}`
125
- });
126
- }
127
- if (details.precache?.length === 0) {
128
- throw new quotaErrorCallbacks.SerwistError("invalid-cache-name", {
129
- cacheNameId: "precache",
130
- value: details.precache
131
- });
132
- }
133
- if (details.runtime?.length === 0) {
134
- throw new quotaErrorCallbacks.SerwistError("invalid-cache-name", {
135
- cacheNameId: "runtime",
136
- value: details.runtime
137
- });
138
- }
139
- if (details.googleAnalytics?.length === 0) {
140
- throw new quotaErrorCallbacks.SerwistError("invalid-cache-name", {
141
- cacheNameId: "googleAnalytics",
142
- value: details.googleAnalytics
143
- });
144
- }
145
- }
146
- quotaErrorCallbacks.cacheNames.updateDetails(details);
147
- }
148
-
149
- exports.cacheNames = cacheNames;
150
- exports.clientsClaim = clientsClaim;
151
- exports.copyResponse = copyResponse;
152
- exports.registerQuotaErrorCallback = registerQuotaErrorCallback;
153
- exports.setCacheNameDetails = setCacheNameDetails;
@@ -1,243 +0,0 @@
1
- 'use strict';
2
-
3
- var quotaErrorCallbacks = require('./quotaErrorCallbacks.cjs');
4
-
5
- /*
6
- Copyright 2018 Google LLC
7
-
8
- Use of this source code is governed by an MIT-style
9
- license that can be found in the LICENSE file or at
10
- https://opensource.org/licenses/MIT.
11
- */ /**
12
- * The Deferred class composes Promises in a way that allows for them to be
13
- * resolved or rejected from outside the constructor. In most cases promises
14
- * should be used directly, but Deferreds can be necessary when the logic to
15
- * resolve a promise must be separate.
16
- *
17
- * @private
18
- */ class Deferred {
19
- promise;
20
- resolve;
21
- reject;
22
- /**
23
- * Creates a promise and exposes its resolve and reject functions as methods.
24
- */ constructor(){
25
- this.promise = new Promise((resolve, reject)=>{
26
- this.resolve = resolve;
27
- this.reject = reject;
28
- });
29
- }
30
- }
31
-
32
- /*
33
- Copyright 2020 Google LLC
34
- Use of this source code is governed by an MIT-style
35
- license that can be found in the LICENSE file or at
36
- https://opensource.org/licenses/MIT.
37
- */ function stripParams(fullURL, ignoreParams) {
38
- const strippedURL = new URL(fullURL);
39
- for (const param of ignoreParams){
40
- strippedURL.searchParams.delete(param);
41
- }
42
- return strippedURL.href;
43
- }
44
- /**
45
- * Matches an item in the cache, ignoring specific URL params. This is similar
46
- * to the `ignoreSearch` option, but it allows you to ignore just specific
47
- * params (while continuing to match on the others).
48
- *
49
- * @private
50
- * @param cache
51
- * @param request
52
- * @param matchOptions
53
- * @param ignoreParams
54
- * @returns
55
- */ async function cacheMatchIgnoreParams(cache, request, ignoreParams, matchOptions) {
56
- const strippedRequestURL = stripParams(request.url, ignoreParams);
57
- // If the request doesn't include any ignored params, match as normal.
58
- if (request.url === strippedRequestURL) {
59
- return cache.match(request, matchOptions);
60
- }
61
- // Otherwise, match by comparing keys
62
- const keysOptions = {
63
- ...matchOptions,
64
- ignoreSearch: true
65
- };
66
- const cacheKeys = await cache.keys(request, keysOptions);
67
- for (const cacheKey of cacheKeys){
68
- const strippedCacheKeyURL = stripParams(cacheKey.url, ignoreParams);
69
- if (strippedRequestURL === strippedCacheKeyURL) {
70
- return cache.match(cacheKey, matchOptions);
71
- }
72
- }
73
- return;
74
- }
75
-
76
- /*
77
- Copyright 2019 Google LLC
78
-
79
- Use of this source code is governed by an MIT-style
80
- license that can be found in the LICENSE file or at
81
- https://opensource.org/licenses/MIT.
82
- */ let supportStatus;
83
- /**
84
- * A utility function that determines whether the current browser supports
85
- * constructing a [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/ReadableStream)
86
- * object.
87
- *
88
- * @returns `true`, if the current browser can successfully construct a `ReadableStream`, `false` otherwise.
89
- *
90
- * @private
91
- */ function canConstructReadableStream() {
92
- if (supportStatus === undefined) {
93
- // See https://github.com/GoogleChrome/workbox/issues/1473
94
- try {
95
- new ReadableStream({
96
- start () {}
97
- });
98
- supportStatus = true;
99
- } catch (error) {
100
- supportStatus = false;
101
- }
102
- }
103
- return supportStatus;
104
- }
105
-
106
- /*
107
- Copyright 2019 Google LLC
108
- Use of this source code is governed by an MIT-style
109
- license that can be found in the LICENSE file or at
110
- https://opensource.org/licenses/MIT.
111
- */ /**
112
- * A helper function that prevents a promise from being flagged as unused.
113
- *
114
- * @private
115
- **/ function dontWaitFor(promise) {
116
- // Effective no-op.
117
- void promise.then(()=>{});
118
- }
119
-
120
- /**
121
- * Runs all of the callback functions, one at a time sequentially, in the order
122
- * in which they were registered.
123
- *
124
- * @private
125
- */ async function executeQuotaErrorCallbacks() {
126
- if (process.env.NODE_ENV !== "production") {
127
- quotaErrorCallbacks.logger.log(`About to run ${quotaErrorCallbacks.quotaErrorCallbacks.size} callbacks to clean up caches.`);
128
- }
129
- for (const callback of quotaErrorCallbacks.quotaErrorCallbacks){
130
- await callback();
131
- if (process.env.NODE_ENV !== "production") {
132
- quotaErrorCallbacks.logger.log(callback, "is complete.");
133
- }
134
- }
135
- if (process.env.NODE_ENV !== "production") {
136
- quotaErrorCallbacks.logger.log("Finished running callbacks.");
137
- }
138
- }
139
-
140
- /*
141
- Copyright 2018 Google LLC
142
-
143
- Use of this source code is governed by an MIT-style
144
- license that can be found in the LICENSE file or at
145
- https://opensource.org/licenses/MIT.
146
- */ const getFriendlyURL = (url)=>{
147
- const urlObj = new URL(String(url), location.href);
148
- // See https://github.com/GoogleChrome/workbox/issues/2323
149
- // We want to include everything, except for the origin if it's same-origin.
150
- return urlObj.href.replace(new RegExp(`^${location.origin}`), "");
151
- };
152
-
153
- /*
154
- Copyright 2019 Google LLC
155
- Use of this source code is governed by an MIT-style
156
- license that can be found in the LICENSE file or at
157
- https://opensource.org/licenses/MIT.
158
- */ /**
159
- * Returns a promise that resolves and the passed number of milliseconds.
160
- * This utility is an async/await-friendly version of `setTimeout`.
161
- *
162
- * @param ms
163
- * @returns
164
- * @private
165
- */ function timeout(ms) {
166
- return new Promise((resolve)=>setTimeout(resolve, ms));
167
- }
168
-
169
- const MAX_RETRY_TIME = 2000;
170
- /**
171
- * Returns a promise that resolves to a window client matching the passed
172
- * `resultingClientId`. For browsers that don't support `resultingClientId`
173
- * or if waiting for the resulting client to apper takes too long, resolve to
174
- * `undefined`.
175
- *
176
- * @param resultingClientId
177
- * @returns
178
- * @private
179
- */ async function resultingClientExists(resultingClientId) {
180
- if (!resultingClientId) {
181
- return;
182
- }
183
- let existingWindows = await self.clients.matchAll({
184
- type: "window"
185
- });
186
- const existingWindowIds = new Set(existingWindows.map((w)=>w.id));
187
- let resultingWindow = undefined;
188
- const startTime = performance.now();
189
- // Only wait up to `MAX_RETRY_TIME` to find a matching client.
190
- while(performance.now() - startTime < MAX_RETRY_TIME){
191
- existingWindows = await self.clients.matchAll({
192
- type: "window"
193
- });
194
- resultingWindow = existingWindows.find((w)=>{
195
- if (resultingClientId) {
196
- // If we have a `resultingClientId`, we can match on that.
197
- return w.id === resultingClientId;
198
- }
199
- // Otherwise match on finding a window not in `existingWindowIds`.
200
- return !existingWindowIds.has(w.id);
201
- });
202
- if (resultingWindow) {
203
- break;
204
- }
205
- // Sleep for 100ms and retry.
206
- await timeout(100);
207
- }
208
- return resultingWindow;
209
- }
210
-
211
- /*
212
- Copyright 2020 Google LLC
213
- Use of this source code is governed by an MIT-style
214
- license that can be found in the LICENSE file or at
215
- https://opensource.org/licenses/MIT.
216
- */ /**
217
- * A utility method that makes it easier to use `event.waitUntil` with
218
- * async functions and return the result.
219
- *
220
- * @param event
221
- * @param asyncFn
222
- * @returns
223
- * @private
224
- */ function waitUntil(event, asyncFn) {
225
- const returnPromise = asyncFn();
226
- event.waitUntil(returnPromise);
227
- return returnPromise;
228
- }
229
-
230
- exports.SerwistError = quotaErrorCallbacks.SerwistError;
231
- exports.assert = quotaErrorCallbacks.finalAssertExports;
232
- exports.canConstructResponseFromBodyStream = quotaErrorCallbacks.canConstructResponseFromBodyStream;
233
- exports.logger = quotaErrorCallbacks.logger;
234
- exports.privateCacheNames = quotaErrorCallbacks.cacheNames;
235
- exports.Deferred = Deferred;
236
- exports.cacheMatchIgnoreParams = cacheMatchIgnoreParams;
237
- exports.canConstructReadableStream = canConstructReadableStream;
238
- exports.dontWaitFor = dontWaitFor;
239
- exports.executeQuotaErrorCallbacks = executeQuotaErrorCallbacks;
240
- exports.getFriendlyURL = getFriendlyURL;
241
- exports.resultingClientExists = resultingClientExists;
242
- exports.timeout = timeout;
243
- exports.waitUntil = waitUntil;
@@ -1 +0,0 @@
1
- export declare const messageGenerator: ((code: string, ...args: any[]) => string) | ((code: string, details?: {}) => string);
@@ -1,8 +0,0 @@
1
- interface LoggableObject {
2
- [key: string]: string | number;
3
- }
4
- interface MessageMap {
5
- [messageID: string]: (param: LoggableObject) => string;
6
- }
7
- export declare const messages: MessageMap;
8
- export {};
@@ -1,9 +0,0 @@
1
- export declare enum pluginEvents {
2
- CACHE_DID_UPDATE = "cacheDidUpdate",
3
- CACHE_KEY_WILL_BE_USED = "cacheKeyWillBeUsed",
4
- CACHE_WILL_UPDATE = "cacheWillUpdate",
5
- CACHED_RESPONSE_WILL_BE_USED = "cachedResponseWillBeUsed",
6
- FETCH_DID_FAIL = "fetchDidFail",
7
- FETCH_DID_SUCCEED = "fetchDidSucceed",
8
- REQUEST_WILL_FETCH = "requestWillFetch"
9
- }
@@ -1,2 +0,0 @@
1
- declare const quotaErrorCallbacks: Set<Function>;
2
- export { quotaErrorCallbacks };