openskidata-format 6.0.0 → 7.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.
package/dist/SkiArea.d.ts CHANGED
@@ -47,6 +47,7 @@ export type SkiAreaProperties = SkiAreaSummaryProperties & {
47
47
  runConvention: RunDifficultyConvention;
48
48
  websites: string[];
49
49
  wikidataID: string | null;
50
+ places: Place[];
50
51
  };
51
52
  export type SkiAreaSummaryProperties = {
52
53
  type: FeatureType.SkiArea;
@@ -54,7 +55,6 @@ export type SkiAreaSummaryProperties = {
54
55
  name: string | null;
55
56
  activities: SkiAreaActivity[];
56
57
  status: Status | null;
57
- places: Place[];
58
58
  };
59
59
  export declare enum SkiAreaActivity {
60
60
  Downhill = "downhill",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openskidata-format",
3
- "version": "6.0.0",
3
+ "version": "7.0.0",
4
4
  "description": "Data format for OpenSkiMap.org",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/SkiArea.ts CHANGED
@@ -57,6 +57,7 @@ export type SkiAreaProperties = SkiAreaSummaryProperties & {
57
57
  runConvention: RunDifficultyConvention
58
58
  websites: string[]
59
59
  wikidataID: string | null
60
+ places: Place[]
60
61
  }
61
62
 
62
63
  export type SkiAreaSummaryProperties = {
@@ -65,7 +66,6 @@ export type SkiAreaSummaryProperties = {
65
66
  name: string | null
66
67
  activities: SkiAreaActivity[]
67
68
  status: Status | null
68
- places: Place[]
69
69
  }
70
70
 
71
71
  export enum SkiAreaActivity {