@types/coveragejson 1.0.0 → 2.0.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.
- coveragejson/README.md +1 -1
- coveragejson/index.d.ts +4 -5
- coveragejson/package.json +3 -3
coveragejson/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for coveragejson (https://www.ogc.org/sta
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/coveragejson.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 18 Mar 2026 18:18:24 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
coveragejson/index.d.ts
CHANGED
|
@@ -88,7 +88,6 @@ export interface ObservedProperty {
|
|
|
88
88
|
description?: I18N;
|
|
89
89
|
/**MUST be a non-empty array of category objects */
|
|
90
90
|
categories?: [Category, ...Category[]];
|
|
91
|
-
categoryEnconding?: CategoryEncoding;
|
|
92
91
|
}
|
|
93
92
|
|
|
94
93
|
/**
|
|
@@ -452,7 +451,7 @@ export interface Coverage<D extends Domain = Domain> {
|
|
|
452
451
|
}
|
|
453
452
|
|
|
454
453
|
export interface Ranges {
|
|
455
|
-
[key: string]: NdArray;
|
|
454
|
+
[key: string]: NdArray | string;
|
|
456
455
|
}
|
|
457
456
|
|
|
458
457
|
/**
|
|
@@ -511,7 +510,7 @@ export interface Grid extends DomainObject {
|
|
|
511
510
|
axes: {
|
|
512
511
|
x: { values: number[] } | RegularlySpacedAxis;
|
|
513
512
|
y: { values: number[] } | RegularlySpacedAxis;
|
|
514
|
-
z?: { values: number[] };
|
|
513
|
+
z?: { values: number[] } | RegularlySpacedAxis;
|
|
515
514
|
t?: { values: string[] };
|
|
516
515
|
};
|
|
517
516
|
}
|
|
@@ -526,7 +525,7 @@ export interface VerticalProfile extends DomainObject {
|
|
|
526
525
|
x: { values: [number] };
|
|
527
526
|
// eslint-disable-next-line @definitelytyped/no-single-element-tuple-type
|
|
528
527
|
y: { values: [number] };
|
|
529
|
-
z: { values: number[] };
|
|
528
|
+
z: { values: number[] } | RegularlySpacedAxis;
|
|
530
529
|
// eslint-disable-next-line @definitelytyped/no-single-element-tuple-type
|
|
531
530
|
t?: { values: [string] };
|
|
532
531
|
};
|
|
@@ -638,7 +637,7 @@ export interface Section extends DomainObject {
|
|
|
638
637
|
coordinates: ["t", "x", "y"];
|
|
639
638
|
values: [string, number, number][];
|
|
640
639
|
};
|
|
641
|
-
z: { values: number[] };
|
|
640
|
+
z: { values: number[] } | RegularlySpacedAxis;
|
|
642
641
|
};
|
|
643
642
|
}
|
|
644
643
|
|
coveragejson/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/coveragejson",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "TypeScript definitions for coveragejson",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/coveragejson",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"scripts": {},
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"peerDependencies": {},
|
|
24
|
-
"typesPublisherContentHash": "
|
|
25
|
-
"typeScriptVersion": "5.
|
|
24
|
+
"typesPublisherContentHash": "0ad484783f87412eb87b08b2400f529cb852e1af7ccfc1622ceef3a6035c1e47",
|
|
25
|
+
"typeScriptVersion": "5.2",
|
|
26
26
|
"nonNpm": true
|
|
27
27
|
}
|