@basemaps/cli 8.7.0 → 8.9.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.
@@ -89,6 +89,19 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
89
89
  verbose: boolean;
90
90
  extraVerbose: boolean;
91
91
  };
92
+ } | {
93
+ command: "charts";
94
+ args: {
95
+ source: URL | undefined;
96
+ target: URL;
97
+ tileMatrix: string;
98
+ cutline: URL;
99
+ backup: URL;
100
+ bufferPixels: number;
101
+ paths: URL[];
102
+ verbose: boolean;
103
+ extraVerbose: boolean;
104
+ };
92
105
  };
93
106
  } | {
94
107
  command: "vector";
@@ -222,6 +235,19 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
222
235
  verbose: boolean;
223
236
  extraVerbose: boolean;
224
237
  };
238
+ } | {
239
+ command: "charts";
240
+ args: {
241
+ source: URL | undefined;
242
+ target: URL;
243
+ tileMatrix: string;
244
+ cutline: URL;
245
+ backup: URL;
246
+ bufferPixels: number;
247
+ paths: URL[];
248
+ verbose: boolean;
249
+ extraVerbose: boolean;
250
+ };
225
251
  };
226
252
  } | {
227
253
  command: "vector";
@@ -294,6 +320,9 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
294
320
  } | {
295
321
  command: "topo";
296
322
  value: Promise<void>;
323
+ } | {
324
+ command: "charts";
325
+ value: Promise<void>;
297
326
  };
298
327
  } | {
299
328
  command: "vector";
@@ -340,6 +369,9 @@ export declare const Cli: Partial<import("cmd-ts/dist/cjs/argparser.js").Registe
340
369
  } | {
341
370
  command: "topo";
342
371
  value: Promise<void>;
372
+ } | {
373
+ command: "charts";
374
+ value: Promise<void>;
343
375
  };
344
376
  } | {
345
377
  command: "vector";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basemaps/cli",
3
- "version": "8.7.0",
3
+ "version": "8.9.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -41,10 +41,10 @@
41
41
  "node": ">=16.0.0"
42
42
  },
43
43
  "dependencies": {
44
- "@basemaps/cli-config": "^8.6.0",
45
- "@basemaps/cli-raster": "^8.6.0",
46
- "@basemaps/cli-vector": "^8.7.0",
47
- "@basemaps/shared": "^8.6.0",
44
+ "@basemaps/cli-config": "^8.9.0",
45
+ "@basemaps/cli-raster": "^8.9.0",
46
+ "@basemaps/cli-vector": "^8.9.0",
47
+ "@basemaps/shared": "^8.9.0",
48
48
  "cmd-ts": "^0.13.0"
49
49
  },
50
50
  "publishConfig": {
@@ -53,5 +53,5 @@
53
53
  "files": [
54
54
  "build/"
55
55
  ],
56
- "gitHead": "3e06a16cf523dbbe0e7935afaae909d022425819"
56
+ "gitHead": "55cd25b9f2c402fde88fcef9c43cec3f8eca9e60"
57
57
  }