@dmdata/telegram-json-types 1.0.9-jschema.0 → 1.1.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.
Files changed (74) hide show
  1. package/README.md +44 -3
  2. package/dist/build.js +22 -11
  3. package/dist/config.d.ts +2 -1
  4. package/dist/config.js +3 -2
  5. package/dist/jschema/earthquake-counts_1.0.0.json +1 -0
  6. package/dist/jschema/earthquake-explanation_1.0.0.json +1 -0
  7. package/dist/jschema/earthquake-hypocenter-update_1.0.0.json +1 -0
  8. package/dist/jschema/earthquake-information_1.0.0.json +1 -0
  9. package/dist/jschema/earthquake-information_1.1.0.json +1 -0
  10. package/dist/jschema/earthquake-nankai_1.0.0.json +1 -0
  11. package/dist/jschema/eew-information_1.0.0.json +1 -0
  12. package/dist/jschema/tsunami-information_1.0.0.json +1 -0
  13. package/dist/jschema/volcano-information_1.0.0.json +1 -0
  14. package/dist/jschema/weather-early_1.0.0.json +1 -0
  15. package/dist/jschema/weather-impact-society_1.0.0.json +1 -0
  16. package/dist/jschema/weather-information_1.0.0.json +1 -0
  17. package/dist/jschema/weather-landslide_1.0.0.json +1 -0
  18. package/dist/jschema/weather-river-flood_1.0.0.json +1 -0
  19. package/dist/jschema/weather-tornado_1.0.0.json +1 -0
  20. package/dist/jschema/weather-typhoon_1.0.0.json +1 -0
  21. package/dist/jschema/weather-warning_1.0.0.json +1 -0
  22. package/dist/jschema-load.d.ts +1 -1
  23. package/dist/jschema-load.js +12 -6
  24. package/index.d.ts +2 -2
  25. package/jest.config.ts +202 -0
  26. package/package.json +29 -21
  27. package/test/sample-schema-check.test.ts +54 -0
  28. package/tsconfig.json +28 -15
  29. package/types/component/code-name.ts +4 -0
  30. package/types/{schema/component → component}/coordinate.d.ts +2 -2
  31. package/types/{schema/component → component}/earthquake.d.ts +0 -0
  32. package/types/{schema/component → component}/unit-value.d.ts +13 -13
  33. package/types/index.d.ts +35 -4
  34. package/types/schema/earthquake-counts/1.0.0.d.ts +69 -0
  35. package/types/schema/earthquake-counts/index.d.ts +7 -0
  36. package/types/schema/earthquake-explanation/1.0.0.d.ts +57 -0
  37. package/types/schema/earthquake-explanation/index.d.ts +7 -0
  38. package/types/schema/earthquake-hypocenter-update/1.0.0.d.ts +53 -0
  39. package/types/schema/earthquake-hypocenter-update/index.d.ts +7 -0
  40. package/types/schema/earthquake-information/1.0.0.d.ts +159 -0
  41. package/types/schema/{earthquake-information.d.ts → earthquake-information/1.1.0.d.ts} +206 -181
  42. package/types/schema/earthquake-information/index.d.ts +9 -0
  43. package/types/schema/earthquake-nankai/1.0.0.d.ts +86 -0
  44. package/types/schema/earthquake-nankai/index.d.ts +7 -0
  45. package/types/schema/{eew-information.d.ts → eew-information/1.0.0.d.ts} +42 -39
  46. package/types/schema/eew-information/index.d.ts +7 -0
  47. package/types/schema/{tsunami-information.d.ts → tsunami-information/1.0.0.d.ts} +262 -230
  48. package/types/schema/tsunami-information/index.d.ts +7 -0
  49. package/types/schema/volcano-information/1.0.0.d.ts +450 -0
  50. package/types/schema/volcano-information/index.d.ts +7 -0
  51. package/types/schema/weather-early/1.0.0.d.ts +135 -0
  52. package/types/schema/weather-early/index.d.ts +7 -0
  53. package/types/schema/weather-impact-society/1.0.0.d.ts +140 -0
  54. package/types/schema/weather-impact-society/index.d.ts +7 -0
  55. package/types/schema/weather-information/1.0.0.d.ts +30 -0
  56. package/types/schema/weather-information/index.d.ts +7 -0
  57. package/types/schema/weather-landslide/1.0.0.d.ts +51 -0
  58. package/types/schema/weather-landslide/index.d.ts +7 -0
  59. package/types/schema/weather-river-flood/1.0.0.d.ts +188 -0
  60. package/types/schema/weather-river-flood/index.d.ts +7 -0
  61. package/types/schema/weather-tornado/1.0.0.d.ts +51 -0
  62. package/types/schema/weather-tornado/index.d.ts +7 -0
  63. package/types/schema/{weather-typhoon.d.ts → weather-typhoon/1.0.0.d.ts} +26 -13
  64. package/types/schema/weather-typhoon/index.d.ts +7 -0
  65. package/types/schema/weather-warning/1.0.0.d.ts +212 -0
  66. package/types/schema/weather-warning/index.d.ts +7 -0
  67. package/dist/jschema/earthquake-information.json +0 -1778
  68. package/dist/jschema/eew-information.json +0 -2742
  69. package/dist/jschema/tsunami-information.json +0 -3891
  70. package/dist/jschema/weather-typhoon.json +0 -4969
  71. package/jschema/build.ts +0 -56
  72. package/jschema/config.ts +0 -4
  73. package/jschema/jschema-load.ts +0 -26
  74. package/tsconfig.jschema.json +0 -16
@@ -0,0 +1,140 @@
1
+ import { TelegramJSONMain } from '@t/main';
2
+ import { CodeName } from '@t/component/code-name';
3
+
4
+ export namespace WeatherImpactSociety {
5
+ export interface Schema {
6
+ type: 'weather-impact-society';
7
+ version: '1.0.0';
8
+ }
9
+
10
+ export interface Target extends CodeName {
11
+ }
12
+
13
+ export interface TargetTimeDateTime {
14
+ value: string;
15
+ validFormat: string;
16
+ }
17
+
18
+ export interface TargetTime {
19
+ dateTime: TargetTimeDateTime;
20
+ duration?: string;
21
+ }
22
+
23
+ export interface MainTextZone extends CodeName {
24
+ }
25
+
26
+ export interface MainTextPrefecture extends CodeName {
27
+ }
28
+
29
+ export interface MainText {
30
+ text: string;
31
+ zones?: MainTextZone[];
32
+ prefectures?: MainTextPrefecture[];
33
+ }
34
+
35
+ export interface StatisticPeriodDateTime {
36
+ value: string;
37
+ validFormat?: string;
38
+ }
39
+
40
+ export interface StatisticPeriod {
41
+ dateTime: StatisticPeriodDateTime;
42
+ duration: string;
43
+ name: string;
44
+ }
45
+
46
+ export interface StatisticStationObservedValue {
47
+ type: string;
48
+ unit: string;
49
+ value: string | null;
50
+ condition?: string;
51
+ }
52
+
53
+ export interface StatisticStation extends CodeName {
54
+ type: '天候の状況(速報値)';
55
+ observedValues: StatisticStationObservedValue[];
56
+ }
57
+
58
+ export interface Statistic {
59
+ type: '気象官署及び特別地域気象観測所' | 'アメダス';
60
+ period: StatisticPeriod;
61
+ text?: string;
62
+ stations: StatisticStation[];
63
+ }
64
+
65
+ export interface SeasonZoneEventDataDate {
66
+ value: string;
67
+ dubious: '頃';
68
+ }
69
+
70
+ export interface SeasonZoneEventData {
71
+ date?: SeasonZoneEventDataDate;
72
+ normal: SeasonZoneEventDataDate;
73
+ lastYear?: SeasonZoneEventDataDate;
74
+ remark?: string;
75
+ }
76
+
77
+ export interface SeasonZone extends CodeName {
78
+ type: '梅雨入り' | '梅雨明け';
79
+ eventData: SeasonZoneEventData;
80
+ }
81
+
82
+ export interface Season {
83
+ type: '梅雨';
84
+ zones: SeasonZone[];
85
+ }
86
+
87
+ export interface PublicBody {
88
+ notice?: string;
89
+ target: Target;
90
+ targetTime: TargetTime;
91
+ mainTexts: MainText [];
92
+ statistics?: Statistic[];
93
+ comment?: string;
94
+ }
95
+
96
+ export interface PublicBodyZone extends PublicBody {
97
+ mainTexts: Required<Omit<MainText, 'prefectures'>>[];
98
+ }
99
+
100
+ export interface PublicBodyPrefecture extends PublicBody {
101
+ mainTexts: Required<Omit<MainText, 'zones'>>[];
102
+ }
103
+
104
+ export interface PublicBodyZoneSeason extends PublicBodyZone {
105
+ season: Season;
106
+ }
107
+
108
+
109
+ export interface Public extends TelegramJSONMain {
110
+ _schema: Schema;
111
+ type: '全般天候情報' | '地方天候情報' | '府県天候情報';
112
+ title: string;
113
+ infoType: '発表' | '訂正' | '取消';
114
+ targetDateTimeDubious: never;
115
+ targetDuration: never;
116
+ validDateTime: string;
117
+ eventId: string;
118
+ serialNo: string;
119
+ infoKind: '天候情報';
120
+ body: PublicBody;
121
+ }
122
+
123
+ export interface PublicZone extends Public {
124
+ type: '全般天候情報' | '地方天候情報';
125
+ body: PublicBodyZone;
126
+ }
127
+
128
+ export interface PublicPrefecture extends Public {
129
+ type: '府県天候情報';
130
+ body: PublicBodyPrefecture;
131
+ }
132
+
133
+ export interface PublicZoneSeason extends PublicZone {
134
+ type: '地方天候情報';
135
+ validDateTime: never;
136
+ body: PublicBodyZoneSeason;
137
+ }
138
+
139
+ export type Main = PublicZone | PublicPrefecture | PublicZoneSeason;
140
+ }
@@ -0,0 +1,7 @@
1
+ import { WeatherImpactSociety as v1_0_0 } from './1.0.0';
2
+
3
+
4
+ export {
5
+ v1_0_0 as Latest,
6
+ v1_0_0
7
+ };
@@ -0,0 +1,30 @@
1
+ import { TelegramJSONMain } from '@t/main';
2
+
3
+ export namespace WeatherInformation {
4
+ export interface Schema {
5
+ type: 'weather-information';
6
+ version: '1.0.0';
7
+ }
8
+
9
+ export interface PublicBody {
10
+ target: never;
11
+ notice: string | null;
12
+ comment: string;
13
+ }
14
+
15
+ export interface PublicEvent extends TelegramJSONMain {
16
+ _schema: Schema;
17
+ type: '全般台風情報' | '全般台風情報(定型)' | '全般台風情報(詳細)' | '全般スモッグ気象情報' | 'スモッグ気象情報' | '地方高温注意情報' | '府県高温注意情報' | '熱中症警戒アラート' | '全般潮位情報' | '地方潮位情報' | '府県潮位情報' | '全般気象情報' | '地方気象情報' | '府県気象情報';
18
+ title: string;
19
+ infoType: '発表' | '訂正' | '取消';
20
+ targetDateTimeDubious: never;
21
+ targetDuration: never;
22
+ validDateTime: never;
23
+ eventId: string;
24
+ serialNo: string | null;
25
+ infoKind: '同一現象用平文情報';
26
+ body: PublicBody;
27
+ }
28
+
29
+ export type Main = PublicEvent;
30
+ }
@@ -0,0 +1,7 @@
1
+ import { WeatherInformation as v1_0_0 } from './1.0.0';
2
+
3
+
4
+ export {
5
+ v1_0_0 as Latest,
6
+ v1_0_0
7
+ };
@@ -0,0 +1,51 @@
1
+ import { TelegramJSONMain } from '@t/main';
2
+ import { CodeName } from '@t/component/code-name';
3
+
4
+ export namespace WeatherLandslide {
5
+ export interface Schema {
6
+ type: 'weather-landslide';
7
+ version: '1.0.0';
8
+ }
9
+
10
+
11
+ export interface Target extends CodeName {
12
+ }
13
+
14
+ export interface CityKind extends CodeName {
15
+ code: '3' | '1' | '0';
16
+ name: '警戒' | '解除' | 'なし';
17
+ status: '発表' | '継続' | '解除' | 'なし';
18
+ }
19
+
20
+ export interface City extends CodeName {
21
+ kinds: [CityKind];
22
+ }
23
+
24
+ export interface Office {
25
+ type: '都道府県' | '気象庁';
26
+ name: string;
27
+ contact: string;
28
+ }
29
+
30
+ export interface PublicBody {
31
+ target: Target;
32
+ cities: City[];
33
+ offices: Office[];
34
+ }
35
+
36
+ export interface PublicEvent extends TelegramJSONMain {
37
+ _schema: Schema;
38
+ type: '土砂災害警戒情報';
39
+ title: string;
40
+ infoType: '発表';
41
+ targetDateTimeDubious: never;
42
+ targetDuration: never;
43
+ validDateTime: never;
44
+ eventId: string;
45
+ serialNo: string;
46
+ infoKind: '土砂災害警戒情報';
47
+ body: PublicBody;
48
+ }
49
+
50
+ export type Main = PublicEvent;
51
+ }
@@ -0,0 +1,7 @@
1
+ import { WeatherLandslide as v1_0_0 } from './1.0.0';
2
+
3
+
4
+ export {
5
+ v1_0_0 as Latest,
6
+ v1_0_0
7
+ };
@@ -0,0 +1,188 @@
1
+ import { TelegramJSONMain } from '@t/main';
2
+ import { CodeName } from '@t/component/code-name';
3
+
4
+ export namespace WeatherRiverFlood {
5
+ export interface Schema {
6
+ type: 'weather-river-flood';
7
+ version: '1.0.0';
8
+ }
9
+
10
+ export interface TargetKind extends CodeName {
11
+ condition: string;
12
+ }
13
+
14
+ export interface Target extends CodeName {
15
+ kind: TargetKind;
16
+ }
17
+
18
+ export interface MainTextRiver extends CodeName {
19
+ }
20
+
21
+ export interface MainTextStation extends CodeName {
22
+ location: string;
23
+ }
24
+
25
+ export interface MainText {
26
+ text: string;
27
+ rivers: MainTextRiver[];
28
+ stations: MainTextStation[];
29
+ }
30
+
31
+ export interface SuppositionKind extends CodeName {
32
+ }
33
+
34
+ export interface SuppositionDistrictPrefecture extends CodeName {
35
+ }
36
+
37
+ export interface SuppositionDistrictCity extends CodeName {
38
+ }
39
+
40
+ export interface SuppositionDistrict {
41
+ code?: string;
42
+ name: string;
43
+ prefecture: SuppositionDistrictPrefecture;
44
+ city: SuppositionDistrictCity;
45
+ district: string;
46
+ }
47
+
48
+ export interface Supposition {
49
+ type: '浸水想定地区' | '浸水想定地区(氾濫発生情報)';
50
+ description: string;
51
+ kind: SuppositionKind;
52
+ districts: SuppositionDistrict[];
53
+ }
54
+
55
+ export interface RainfallTimeSeriesTimeDefine {
56
+ timeId: string;
57
+ dateTime: string;
58
+ duration: string;
59
+ name: string;
60
+ }
61
+
62
+ export interface RainfallTimeSeriesItemForecast {
63
+ refId: string;
64
+ unit: string;
65
+ value: string | null;
66
+ }
67
+
68
+ export interface RainfallTimeSeriesItem {
69
+ name: string;
70
+ forecasts: RainfallTimeSeriesItemForecast [];
71
+ }
72
+
73
+ export interface RainfallTimeSeries {
74
+ timeDefines: RainfallTimeSeriesTimeDefine[];
75
+ items: RainfallTimeSeriesItem[];
76
+ }
77
+
78
+ export interface Rainfall {
79
+ dateTime: string;
80
+ text: string;
81
+ timeSeries: RainfallTimeSeries[];
82
+ }
83
+
84
+ export interface WaterLevelTimeSeriesTimeDefine {
85
+ timeId: string;
86
+ dateTime: string;
87
+ name: string;
88
+ }
89
+
90
+ export interface WaterLevelTimeSeriesItemForecast {
91
+ refId: string;
92
+ unit: string;
93
+ value: string | null;
94
+ level: string | null;
95
+ condition?: string;
96
+ }
97
+
98
+ export interface WaterLevelTimeSeriesItem extends CodeName {
99
+ location: string;
100
+ type: '水位' | '水量';
101
+ forecasts: WaterLevelTimeSeriesItemForecast [];
102
+ }
103
+
104
+ export interface WaterLevelTimeSeries {
105
+ timeDefines: WaterLevelTimeSeriesTimeDefine[];
106
+ items: WaterLevelTimeSeriesItem[];
107
+ }
108
+
109
+ export interface WaterLevel {
110
+ timeSeries: WaterLevelTimeSeries[];
111
+ }
112
+
113
+ export interface FloodedWaterAssumptionsAttainmentTime {
114
+ value: string;
115
+ dubious: '頃';
116
+ }
117
+
118
+ export interface FloodedWaterAssumptionsAttainmentDeepestTime {
119
+ value: string;
120
+ dubious: '頃';
121
+ }
122
+
123
+ export interface FloodedWaterAssumptionsFloodDepth {
124
+ from: string | null;
125
+ to: string | null;
126
+ }
127
+
128
+ export interface FloodedWaterAssumptions {
129
+ district: string;
130
+ attainmentTime: FloodedWaterAssumptionsAttainmentTime;
131
+ attainmentDeepestTime: FloodedWaterAssumptionsAttainmentDeepestTime;
132
+ floodDepth: FloodedWaterAssumptionsFloodDepth;
133
+ }
134
+
135
+ export interface FloodedWater extends CodeName {
136
+ dateTime: string;
137
+ text: string;
138
+ assumptions: FloodedWaterAssumptions[];
139
+ }
140
+
141
+ export interface Office extends CodeName {
142
+ type: '水位関係' | '気象関係';
143
+ contact: string;
144
+ url: string;
145
+ }
146
+
147
+ export interface ReferenceCriterion {
148
+ type: string;
149
+ unit: string;
150
+ value: string | null;
151
+ condition: '有効' | '無効';
152
+ }
153
+
154
+ export interface Reference extends CodeName {
155
+ location: string;
156
+ district: string;
157
+ sections: string[];
158
+ criteria: ReferenceCriterion[];
159
+ }
160
+
161
+ export interface PublicBody {
162
+ notice?: string;
163
+ target: Target;
164
+ mainTexts?: MainText[];
165
+ supposition?: Supposition;
166
+ rainfall?: Rainfall;
167
+ waterLevel?: WaterLevel;
168
+ floodedWaters?: FloodedWater[];
169
+ offices?: Office[];
170
+ reference?: Reference[];
171
+ }
172
+
173
+ export interface Public extends TelegramJSONMain {
174
+ _schema: Schema;
175
+ type: '指定河川洪水予報';
176
+ title: string;
177
+ infoType: '発表' | '訂正' | '取消';
178
+ targetDateTimeDubious: never;
179
+ targetDuration: never;
180
+ validDateTime: never;
181
+ eventId: string;
182
+ serialNo: string;
183
+ infoKind: '指定河川洪水予報';
184
+ body: PublicBody;
185
+ }
186
+
187
+ export type Main = Public;
188
+ }
@@ -0,0 +1,7 @@
1
+ import { WeatherRiverFlood as v1_0_0 } from './1.0.0';
2
+
3
+
4
+ export {
5
+ v1_0_0 as Latest,
6
+ v1_0_0
7
+ };
@@ -0,0 +1,51 @@
1
+ import { TelegramJSONMain } from '@t/main';
2
+ import { CodeName } from '@t/component/code-name';
3
+
4
+ export namespace WeatherTornado {
5
+ export interface Schema {
6
+ type: 'weather-tornado';
7
+ version: '1.0.0';
8
+ }
9
+
10
+ export interface Witness extends CodeName {
11
+ }
12
+
13
+ export interface TargetKind extends CodeName {
14
+ code: '1' | '0';
15
+ name: '竜巻注意情報' | 'なし';
16
+ status: '発表' | 'なし';
17
+ }
18
+
19
+ export interface Target extends CodeName {
20
+ kinds: [TargetKind];
21
+ }
22
+
23
+ export interface Region extends Target {
24
+ }
25
+
26
+ export interface City extends Target {
27
+ }
28
+
29
+ export interface PublicBody {
30
+ witnesses?: Witness[];
31
+ targets: Target[];
32
+ regions: Region[];
33
+ cities: City[];
34
+ }
35
+
36
+ export interface PublicEvent extends TelegramJSONMain {
37
+ _schema: Schema;
38
+ type: '竜巻注意情報(目撃情報付き)';
39
+ title: string;
40
+ infoType: '発表' | '訂正';
41
+ targetDateTimeDubious: never;
42
+ targetDuration: never;
43
+ validDateTime: string;
44
+ eventId: null;
45
+ serialNo: string;
46
+ infoKind: '竜巻注意情報';
47
+ body: PublicBody;
48
+ }
49
+
50
+ export type Main = PublicEvent;
51
+ }
@@ -0,0 +1,7 @@
1
+ import { WeatherTornado as v1_0_0 } from './1.0.0';
2
+
3
+
4
+ export {
5
+ v1_0_0 as Latest,
6
+ v1_0_0
7
+ };
@@ -1,6 +1,6 @@
1
- import { TelegramJSONMain } from '../main';
2
- import { Coordinate } from './component/coordinate';
3
- import { UnitValue, UnitValueNotNull } from './component/unit-value';
1
+ import { TelegramJSONMain } from '@t/main';
2
+ import { Coordinate } from '@t/component/coordinate';
3
+ import { UnitValueNotNull } from '@t/component/unit-value';
4
4
 
5
5
  export namespace WeatherTyphoon {
6
6
  export interface Schema {
@@ -18,11 +18,11 @@ export namespace WeatherTyphoon {
18
18
 
19
19
  export interface Axis {
20
20
  direction: Direction;
21
- radius: UnitValue;
21
+ radius: UnitValueNotNull;
22
22
  }
23
23
 
24
24
  export interface RealStateClassification {
25
- category: 'TD' | 'TY' | 'STS' | 'Hurricane' | 'Tropical Storm' | 'LOW' | null;
25
+ category: 'TD' | 'TY' | 'TS' | 'STS' | 'Hurricane' | 'Tropical Storm' | 'LOW' | null;
26
26
  name: '熱帯低気圧' | '台風' | 'ハリケーン' | '発達した熱帯低気圧' | '温帯低気圧' | null;
27
27
  area: '大型' | '超大型' | null;
28
28
  intensity: '強い' | '非常に強い' | '猛烈な' | null;
@@ -30,12 +30,23 @@ export namespace WeatherTyphoon {
30
30
 
31
31
  export type ForecastClassification = Omit<RealStateClassification, 'area'>;
32
32
 
33
+ export type RealStateCenterSpeed = {
34
+ type: '移動速度';
35
+ unit: 'km/h';
36
+ } & ({
37
+ value: string;
38
+ condition: never;
39
+ } | {
40
+ value: null;
41
+ condition: 'ゆっくり' | 'ほとんど停滞';
42
+ })
43
+
33
44
  export interface RealStateCenter {
34
45
  coordinate: Coordinate;
35
- location: string;
46
+ location: string | null;
36
47
  direction: Direction;
37
- speed: UnitValue;
38
- pressure: UnitValueNotNull;
48
+ speed: RealStateCenterSpeed;
49
+ pressure: UnitValueNotNull<'中心気圧', 'hPa'>;
39
50
  }
40
51
 
41
52
  export type ForecastCenter = {
@@ -43,7 +54,7 @@ export namespace WeatherTyphoon {
43
54
  basePoint: Coordinate;
44
55
  axes: Axis[];
45
56
  };
46
- } & Omit<RealStateCenter, 'location'>;
57
+ } & Omit<RealStateCenter, 'coordinate'>;
47
58
 
48
59
  export interface RealStateWindArea {
49
60
  strong: Axis[];
@@ -51,8 +62,8 @@ export namespace WeatherTyphoon {
51
62
  }
52
63
 
53
64
  export interface RealStateWind {
54
- average: UnitValue;
55
- instantaneous: UnitValue;
65
+ average: UnitValueNotNull<'最大風速', 'm/s', '中心付近' | '中心付近を除く' | 'なし' | never>;
66
+ instantaneous: UnitValueNotNull<'最大瞬間風速', 'm/s'>;
56
67
  area: RealStateWindArea;
57
68
  }
58
69
 
@@ -61,8 +72,8 @@ export namespace WeatherTyphoon {
61
72
  }
62
73
 
63
74
  export interface ForecastWind {
64
- average: UnitValue;
65
- instantaneous: UnitValue;
75
+ average: UnitValueNotNull<'最大風速', 'm/s', '中心付近' | '中心付近を除く' | 'なし' | never>;
76
+ instantaneous: UnitValueNotNull<'最大瞬間風速', 'm/s'>;
66
77
  area: ForecastWindArea;
67
78
  }
68
79
 
@@ -108,7 +119,9 @@ export namespace WeatherTyphoon {
108
119
  _schema: Schema;
109
120
  type: '台風解析・予報情報(5日予報)(H30)' | '台風解析・予報情報(5日予報)' | '台風解析・予報情報(3日予報)';
110
121
  title: '台風解析・予報情報';
122
+ targetDateTimeDubious: never;
111
123
  targetDuration: string;
124
+ validDateTime: never;
112
125
  infoKind: '台風解析・予報情報(5日予報)' | '台風解析・予報情報(3日予報)';
113
126
  eventId: string;
114
127
  serialNo: string;
@@ -0,0 +1,7 @@
1
+ import { WeatherTyphoon as v1_0_0 } from './1.0.0';
2
+
3
+
4
+ export {
5
+ v1_0_0 as Latest,
6
+ v1_0_0
7
+ };