Sign In

@expofp/schema

Package Overview
Dependencies
Maintainers
6
Versions
24
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.18.1
to
3.19.0
+1
-0
dist/lib/config-defaults.d.ts

@@ -89,2 +89,3 @@ /**

enableExperimentalMaplibre: undefined;
enableExperimentalOutdoorMarkers: false;
customSetKiosk: string;

@@ -91,0 +92,0 @@ hideBoothBadges: false;

@@ -96,2 +96,3 @@ /**

enableExperimentalMaplibre: undefined,
enableExperimentalOutdoorMarkers: false,
customSetKiosk: '',

@@ -98,0 +99,0 @@ hideBoothBadges: false,

@@ -278,2 +278,3 @@ import * as z from 'zod';

enableExperimentalMaplibre: true,
enableExperimentalOutdoorMarkers: true,
intents: true,

@@ -323,2 +324,3 @@ consent: true,

enableExperimentalMaplibre: true,
enableExperimentalOutdoorMarkers: true,
debugMode: true,

@@ -325,0 +327,0 @@ debugPattern: true,

@@ -9,2 +9,3 @@ import * as z from 'zod';

enableExperimentalMaplibre: z.ZodOptional<z.ZodBoolean>;
enableExperimentalOutdoorMarkers: z.ZodOptional<z.ZodBoolean>;
customSetKiosk: z.ZodOptional<z.ZodString>;

@@ -11,0 +12,0 @@ hideBoothBadges: z.ZodOptional<z.ZodBoolean>;

@@ -10,2 +10,13 @@ import * as z from 'zod';

enableExperimentalMaplibre: z.boolean().optional(),
/**
* Enable experimental outdoor PoI markers: booths on an `Outdoor*` layer
* leave the renderer scene and draw as fixed-size native MapLibre markers
* with clustering.
*
* Unset or `false` disables the feature outright — Outdoor layers then
* render like any other layer, exactly as they did before it existed. Unlike
* `enableExperimentalMaplibre` this is NOT tri-state: no drawing field opts a
* plan in, so there is nothing for `undefined` to defer to.
*/
enableExperimentalOutdoorMarkers: z.boolean().optional(),
/** Custom `setkiosk` phrase. */

@@ -12,0 +23,0 @@ customSetKiosk: z.string().optional(),

@@ -10,4 +10,5 @@ import * as z from 'zod';

parentId: z.ZodOptional<z.ZodNumber>;
iconUrl: z.ZodOptional<z.ZodString>;
}, z.core.$loose>;
export type RawPoiType = z.infer<typeof RawPoiTypeSchema>;
//# sourceMappingURL=poi-types.d.ts.map

@@ -10,2 +10,4 @@ import * as z from 'zod';

parentId: z.number().optional(),
/** Icon shown for this type; overrides the built-in glyph. */
iconUrl: z.string().optional(),
});
+2
-2
{
"name": "@expofp/schema",
"version": "3.18.1",
"version": "3.19.0",
"type": "module",

@@ -28,3 +28,3 @@ "description": "ExpoFP SDK internal: expo data schemas and types",

"devDependencies": {
"@expofp/utils": "3.18.1"
"@expofp/utils": "3.19.0"
},

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

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