@tramvai/pwa-recipes 2.150.0 → 2.150.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.
@@ -3,3 +3,4 @@ import type { ApplicationAssetsCacheOptions } from './types';
3
3
  * reference - https://github.com/GoogleChrome/workbox/blob/v7/packages/workbox-recipes/src/googleFontsCache.ts
4
4
  */
5
5
  export declare function cacheApplicationFonts({ precacheManifest, maxEntries, maxAgeSeconds, strategy: Strategy, }?: ApplicationAssetsCacheOptions): void;
6
+ //# sourceMappingURL=cache-application-fonts.d.ts.map
@@ -3,3 +3,4 @@ import type { ApplicationAssetsCacheOptions } from './types';
3
3
  * reference - https://github.com/GoogleChrome/workbox/blob/v7/packages/workbox-recipes/src/imageCache.ts
4
4
  */
5
5
  export declare function cacheApplicationImages({ precacheManifest, maxEntries, maxAgeSeconds, strategy: Strategy, }?: ApplicationAssetsCacheOptions): void;
6
+ //# sourceMappingURL=cache-application-images.d.ts.map
@@ -5,3 +5,4 @@ import type { ApplicationAssetsCacheOptions } from './types';
5
5
  export declare function cacheApplicationPages({ precacheManifest, maxEntries, maxAgeSeconds, networkTimeoutSeconds, strategy: Strategy, }?: ApplicationAssetsCacheOptions & {
6
6
  networkTimeoutSeconds?: number;
7
7
  }): void;
8
+ //# sourceMappingURL=cache-application-pages.d.ts.map
@@ -3,3 +3,4 @@ import type { ApplicationAssetsCacheOptions } from './types';
3
3
  * reference - https://github.com/GoogleChrome/workbox/blob/v7/packages/workbox-recipes/src/staticResourceCache.ts
4
4
  */
5
5
  export declare function cacheApplicationStaticAssets({ precacheManifest, maxEntries, maxAgeSeconds, strategy: Strategy, }?: ApplicationAssetsCacheOptions): void;
6
+ //# sourceMappingURL=cache-application-static-assets.d.ts.map
package/lib/cache.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export declare const createCacheKey: (key: string) => string;
2
+ //# sourceMappingURL=cache.d.ts.map
package/lib/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from './cache-application-static-assets';
6
6
  export * from './cache-application-images';
7
7
  export * from './cache-application-fonts';
8
8
  export * from './cache-application-pages';
9
+ //# sourceMappingURL=index.d.ts.map
package/lib/routing.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export declare const isApplicationAsset: (request: Request) => boolean;
2
2
  export declare const isApplicationScope: (request: Request) => boolean;
3
+ //# sourceMappingURL=routing.d.ts.map
package/lib/types.d.ts CHANGED
@@ -15,3 +15,4 @@ export interface WarmStrategyCacheOptions {
15
15
  strategy: Strategy;
16
16
  }
17
17
  export type ResourcesTypes = 'script' | 'style' | 'image' | 'font' | 'manifest' | 'html';
18
+ //# sourceMappingURL=types.d.ts.map
@@ -4,3 +4,4 @@ import type { ResourcesTypes, WarmStrategyCacheOptions } from './types';
4
4
  */
5
5
  export declare function warmStrategyCache(options: WarmStrategyCacheOptions): void;
6
6
  export declare function matchResourceType(type: ResourcesTypes, path: string): boolean;
7
+ //# sourceMappingURL=warm-strategy-cache.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/pwa-recipes",
3
- "version": "2.150.0",
3
+ "version": "2.150.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.es.js",