🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@expofp/schema

Package Overview
Dependencies
Maintainers
6
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expofp/schema - npm Package Compare versions

Comparing version
3.13.2
to
3.13.3
+0
-10
dist/lib/flags.d.ts

@@ -8,17 +8,7 @@ import * as z from 'zod';

export declare const FlagsSchema: z.ZodObject<{
/** Enable experimental MapLibre GL JS support. */
enableExperimentalMaplibre: z.ZodOptional<z.ZodBoolean>;
/** Custom `setkiosk` phrase. */
customSetKiosk: z.ZodOptional<z.ZodString>;
/** Hide booth number badges. */
hideBoothBadges: z.ZodOptional<z.ZodBoolean>;
/**
* Enable live bus/transport routing on the floor plan.
*
* Disabled by default: most plans have no transit routes, and probing for
* them issues an extra HTTP request on every load. Set to `true` only for
* plans that actually provide bus routes.
*/
busRoutes: z.ZodOptional<z.ZodBoolean>;
}, z.core.$loose>;
//# sourceMappingURL=flags.d.ts.map

@@ -23,6 +23,2 @@ import * as z from 'zod';

maxZoom: z.ZodOptional<z.ZodNumber>;
/**
* Converter format version (`"5.0"`); gates v5+ runtime features. Distinct
* from the numeric `__fpVersion`.
*/
fpVer: z.ZodOptional<z.ZodString>;

@@ -51,3 +47,2 @@ }, z.core.$loose>;

y2: z.ZodNumber;
/** Rotation — present on layer viewboxes. */
angle: z.ZodOptional<z.ZodNumber>;

@@ -71,3 +66,2 @@ }, z.core.$loose>;

y2: z.ZodNumber;
/** Rotation — present on layer viewboxes. */
angle: z.ZodOptional<z.ZodNumber>;

@@ -80,3 +74,2 @@ }, z.core.$loose>>>;

y2: z.ZodNumber;
/** Rotation — present on layer viewboxes. */
angle: z.ZodOptional<z.ZodNumber>;

@@ -92,11 +85,3 @@ }, z.core.$loose>>>;

export declare const FpSvgLayerJsSchema: z.ZodObject<{
/**
* The layer's SVG document (newer layer files emit it only as the
* `__fp<layerName>` alias; the loader folds it back here — see the module
* doc). Tagged `svgAsset`: its `<image>` hrefs are `svg-images/…` asset
* paths — made absolute when the payload resolves, localized when an
* offline copy is serialized.
*/
__fp: z.ZodOptional<z.ZodString>;
/** Triangulated meshes by `data-index` (newer files: folded from the alias). */
__fpPaths: z.ZodOptional<z.ZodArray<z.ZodObject<{

@@ -152,6 +137,2 @@ positions: z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodOptional<z.ZodNumber>], null>>;

maxZoom: z.ZodOptional<z.ZodNumber>;
/**
* Converter format version (`"5.0"`); gates v5+ runtime features. Distinct
* from the numeric `__fpVersion`.
*/
fpVer: z.ZodOptional<z.ZodString>;

@@ -162,3 +143,2 @@ }, z.core.$loose>>;

}, z.core.$loose>>;
/** Numeric data-format version (e.g. `6`). Distinct from `fpVer`. */
__fpVersion: z.ZodOptional<z.ZodNumber>;

@@ -180,11 +160,3 @@ }, z.core.$loose>;

export declare const FpSvgJsSchema: z.ZodObject<{
/**
* The layer's SVG document (newer layer files emit it only as the
* `__fp<layerName>` alias; the loader folds it back here — see the module
* doc). Tagged `svgAsset`: its `<image>` hrefs are `svg-images/…` asset
* paths — made absolute when the payload resolves, localized when an
* offline copy is serialized.
*/
__fp: z.ZodOptional<z.ZodString>;
/** Triangulated meshes by `data-index` (newer files: folded from the alias). */
__fpPaths: z.ZodOptional<z.ZodArray<z.ZodObject<{

@@ -240,6 +212,2 @@ positions: z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodOptional<z.ZodNumber>], null>>;

maxZoom: z.ZodOptional<z.ZodNumber>;
/**
* Converter format version (`"5.0"`); gates v5+ runtime features. Distinct
* from the numeric `__fpVersion`.
*/
fpVer: z.ZodOptional<z.ZodString>;

@@ -250,5 +218,3 @@ }, z.core.$loose>>;

}, z.core.$loose>>;
/** Numeric data-format version (e.g. `6`). Distinct from `fpVer`. */
__fpVersion: z.ZodOptional<z.ZodNumber>;
/** Plan is still generating server-side: stub payload, poll again later. */
__fpPending: z.ZodOptional<z.ZodBoolean>;

@@ -272,3 +238,2 @@ __viewbox: z.ZodOptional<z.ZodObject<{

y2: z.ZodNumber;
/** Rotation — present on layer viewboxes. */
angle: z.ZodOptional<z.ZodNumber>;

@@ -281,3 +246,2 @@ }, z.core.$loose>>>;

y2: z.ZodNumber;
/** Rotation — present on layer viewboxes. */
angle: z.ZodOptional<z.ZodNumber>;

@@ -287,8 +251,3 @@ }, z.core.$loose>>>;

}, z.core.$loose>>>;
/**
* Numeric `LayersMode` enum (0 Default/single-floor, 1 Separated, 2
* Radio/multi-floor, 3 CheckBox — `store/LayerStore.ts`).
*/
__fpLayersMode: z.ZodOptional<z.ZodNumber>;
/** `name` of the layer whose drawing this file carries. */
__fpDefaultLayer: z.ZodOptional<z.ZodString>;

@@ -295,0 +254,0 @@ }, z.core.$loose>;

@@ -33,9 +33,5 @@ import * as z from 'zod';

weight: z.ZodOptional<z.ZodNumber>;
/** A virtual (floor-transition) link rather than a physical path segment. */
virtual: z.ZodOptional<z.ZodBoolean>;
/** Excluded when routing accessible-only. */
unaccessible: z.ZodOptional<z.ZodBoolean>;
/** One-way edge: no reverse link in oriented mode. */
unidirection: z.ZodOptional<z.ZodBoolean>;
/** Custom cost for virtual links ("Virtual length" in the designer). */
virtualLength: z.ZodOptional<z.ZodNumber>;

@@ -57,9 +53,5 @@ }, z.core.$loose>;

weight: z.ZodOptional<z.ZodNumber>;
/** A virtual (floor-transition) link rather than a physical path segment. */
virtual: z.ZodOptional<z.ZodBoolean>;
/** Excluded when routing accessible-only. */
unaccessible: z.ZodOptional<z.ZodBoolean>;
/** One-way edge: no reverse link in oriented mode. */
unidirection: z.ZodOptional<z.ZodBoolean>;
/** Custom cost for virtual links ("Virtual length" in the designer). */
virtualLength: z.ZodOptional<z.ZodNumber>;

@@ -89,9 +81,5 @@ }, z.core.$loose>>>;

weight: z.ZodOptional<z.ZodNumber>;
/** A virtual (floor-transition) link rather than a physical path segment. */
virtual: z.ZodOptional<z.ZodBoolean>;
/** Excluded when routing accessible-only. */
unaccessible: z.ZodOptional<z.ZodBoolean>;
/** One-way edge: no reverse link in oriented mode. */
unidirection: z.ZodOptional<z.ZodBoolean>;
/** Custom cost for virtual links ("Virtual length" in the designer). */
virtualLength: z.ZodOptional<z.ZodNumber>;

@@ -98,0 +86,0 @@ }, z.core.$loose>>>;

+3
-3
{
"name": "@expofp/schema",
"version": "3.13.2",
"version": "3.13.3",
"type": "module",

@@ -25,6 +25,6 @@ "description": "ExpoFP SDK internal: expo data schemas and types",

"tslib": "^2.3.0",
"zod": "4.3.5"
"zod": "4.4.3"
},
"devDependencies": {
"@expofp/utils": "3.13.2"
"@expofp/utils": "3.13.3"
},

@@ -31,0 +31,0 @@ "files": [

Sorry, the diff of this file is too big to display