@basemaps/config-loader 7.5.0 → 7.7.0

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,3 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
1
  import { LogType } from '@basemaps/shared';
3
2
  import { FileInfo } from '@chunkd/fs';
4
3
  import { ConfigImageryTiff } from './tiff.config.js';
@@ -1,4 +1,3 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
1
  import { ConfigImagery, ConfigImageryOverview, ConfigProvider, ConfigProviderMemory, ConfigTileSet, ConfigVectorStyle } from '@basemaps/config';
3
2
  import { TileMatrixSet } from '@basemaps/geo';
4
3
  import { Tiff } from '@basemaps/shared';
@@ -8,6 +8,7 @@ export declare const zStyleJson: z.ZodObject<{
8
8
  glyphs: z.ZodOptional<z.ZodString>;
9
9
  sources: z.ZodUnknown;
10
10
  layers: z.ZodArray<z.ZodUnknown, "many">;
11
+ sky: z.ZodUnknown;
11
12
  }, "strip", z.ZodTypeAny, {
12
13
  name: string;
13
14
  id: string;
@@ -17,6 +18,7 @@ export declare const zStyleJson: z.ZodObject<{
17
18
  sprite?: string | undefined;
18
19
  glyphs?: string | undefined;
19
20
  sources?: unknown;
21
+ sky?: unknown;
20
22
  }, {
21
23
  name: string;
22
24
  id: string;
@@ -26,5 +28,6 @@ export declare const zStyleJson: z.ZodObject<{
26
28
  sprite?: string | undefined;
27
29
  glyphs?: string | undefined;
28
30
  sources?: unknown;
31
+ sky?: unknown;
29
32
  }>;
30
33
  export type StyleJsonConfigSchema = z.infer<typeof zStyleJson>;
@@ -9,5 +9,6 @@ export const zStyleJson = z.object({
9
9
  sources: z.unknown(),
10
10
  // TODO it would be good to actually validate all the styles
11
11
  layers: z.array(z.unknown()),
12
+ sky: z.unknown(),
12
13
  });
13
14
  //# sourceMappingURL=parse.style.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"parse.style.js","sourceRoot":"","sources":["../../src/json/parse.style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IAEpB,4DAA4D;IAC5D,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAC7B,CAAC,CAAC"}
1
+ {"version":3,"file":"parse.style.js","sourceRoot":"","sources":["../../src/json/parse.style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IAEpB,4DAA4D;IAC5D,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IAC5B,GAAG,EAAE,CAAC,CAAC,OAAO,EAAE;CACjB,CAAC,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
1
  import { ConfigImagery, ConfigProviderMemory, ConfigTileSetRaster, ImageryBandType } from '@basemaps/config';
3
2
  import { BoundingBox, EpsgCode, NamedBounds } from '@basemaps/geo';
4
3
  import { Tiff } from '@basemaps/shared';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basemaps/config-loader",
3
- "version": "7.5.0",
3
+ "version": "7.7.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/linz/basemaps.git",
@@ -28,9 +28,9 @@
28
28
  "build/"
29
29
  ],
30
30
  "dependencies": {
31
- "@basemaps/config": "^7.5.0",
31
+ "@basemaps/config": "^7.7.0",
32
32
  "@basemaps/geo": "^7.5.0",
33
- "@basemaps/shared": "^7.5.0"
33
+ "@basemaps/shared": "^7.7.0"
34
34
  },
35
- "gitHead": "6563870f6d1a848a81e9275df30e64146ff782c7"
35
+ "gitHead": "c8752c8791d1e2bab45f52cb10dc2d7df3c2a5a2"
36
36
  }