@expofp/offline 3.7.6 → 3.7.8

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.
@@ -1,4 +1,4 @@
1
- import type { LocalData } from './types.js';
1
+ import { type LocalData } from './types.js';
2
2
  export declare function dataToFiles(data: AsyncIterable<LocalData>, options?: {
3
3
  signal?: AbortSignal;
4
4
  }): AsyncIterable<{
@@ -1,4 +1,4 @@
1
- import type { Manifest, Ref } from '@expofp/data';
2
- import type { OfflineOptions } from './types.js';
1
+ import { type Manifest, type Ref } from '@expofp/data';
2
+ import { type OfflineOptions } from './types.js';
3
3
  export declare function downloadOfflineZip(manifest: Manifest | Ref<Manifest>, options: OfflineOptions): Promise<void>;
4
4
  //# sourceMappingURL=download-offline-zip.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { Manifest } from '@expofp/data';
2
- import type { LocalData } from './types.js';
1
+ import { type Manifest } from '@expofp/data';
2
+ import { type LocalData } from './types.js';
3
3
  export declare function generateOfflineDataLegacy(manifest: Manifest, options: {
4
4
  signal?: AbortSignal;
5
5
  }): AsyncIterable<LocalData>;
@@ -1,5 +1,5 @@
1
- import type { Manifest, Ref } from '@expofp/data';
2
- import type { LocalData, OfflineOptions } from './types.js';
1
+ import { type Manifest, type Ref } from '@expofp/data';
2
+ import { type LocalData, type OfflineOptions } from './types.js';
3
3
  export declare function generateOfflineData(inputManifest: Manifest | Ref<Manifest>, options: OfflineOptions): AsyncIterable<LocalData, void>;
4
4
  /** Build a complete offline ZIP archive from a manifest. */
5
5
  export declare function buildOfflineZip(manifest: Manifest | Ref<Manifest>, options: OfflineOptions): Promise<Blob>;
@@ -1,6 +1,6 @@
1
- import type { Manifest } from '@expofp/data';
1
+ import { type Manifest } from '@expofp/data';
2
2
  import type { MaplibreOptions } from '@expofp/floorplan';
3
- import type { LocalData, OfflineMapOptions } from './types.js';
3
+ import { type LocalData, type OfflineMapOptions } from './types.js';
4
4
  type FpSvgContext = Record<string, unknown>;
5
5
  export type ValidatedOfflineMapOptions = OfflineMapOptions & {
6
6
  mapSource: string;
@@ -1,4 +1,4 @@
1
- import type { LocalDataFetch } from './types.js';
1
+ import { type LocalDataFetch } from './types.js';
2
2
  export declare function generateRuntimeFilesData(runtimeBaseUrl: string): AsyncGenerator<LocalDataFetch, {
3
3
  entry: string;
4
4
  }, void>;
@@ -1,4 +1,4 @@
1
- import type { LocalDataFetch } from './types.js';
1
+ import { type LocalDataFetch } from './types.js';
2
2
  export declare function offlinizeAssetUrl(url: URL, variants?: string[]): Promise<{
3
3
  url: string;
4
4
  assets: LocalDataFetch[];
@@ -1,4 +1,4 @@
1
- import type { LocalData } from './types.js';
1
+ import { type LocalData } from './types.js';
2
2
  export declare function offlinizeAssetsInPlace(data: unknown, opts: {
3
3
  legacyDataUrlBase?: string;
4
4
  signal?: AbortSignal;
@@ -1,4 +1,4 @@
1
- import type { LocalDataFetch } from './types.js';
1
+ import { type LocalDataFetch } from './types.js';
2
2
  export declare function offlinizeCssAssetText(css: string): Promise<{
3
3
  css: string;
4
4
  assets: LocalDataFetch[];
@@ -1,4 +1,4 @@
1
- import type { Manifest, Ref } from '@expofp/data';
2
- import type { OfflineOptions } from './types.js';
1
+ import { type Manifest, type Ref } from '@expofp/data';
2
+ import { type OfflineOptions } from './types.js';
3
3
  export declare function saveOfflineZip(manifest: Manifest | Ref<Manifest>, path: string, options: OfflineOptions): Promise<void>;
4
4
  //# sourceMappingURL=save-offline-zip.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expofp/offline",
3
- "version": "3.7.6",
3
+ "version": "3.7.8",
4
4
  "type": "module",
5
5
  "description": "CLI tool for creating offline copies of ExpoFP floor plans",
6
6
  "homepage": "https://developer.expofp.com/",
@@ -31,9 +31,9 @@
31
31
  "dependencies": {
32
32
  "debug": "^4.4.3",
33
33
  "tslib": "^2.3.0",
34
- "@expofp/data": "3.7.6",
35
- "@expofp/resolve": "3.7.6",
36
- "@expofp/utils": "3.7.6",
37
- "@expofp/floorplan": "3.7.6"
34
+ "@expofp/data": "3.7.8",
35
+ "@expofp/floorplan": "3.7.8",
36
+ "@expofp/resolve": "3.7.8",
37
+ "@expofp/utils": "3.7.8"
38
38
  }
39
39
  }