Skip to content

Commit 4da4418

Browse files
yoshi-automationsofisl
authored andcommitted
fix(airquality): update the API
#### airquality:v1 The following keys were changed: - schemas.Concentration.properties.value.description - schemas.Pollutant.properties.code.description - schemas.Pollutant.properties.fullName.description
1 parent 29f33eb commit 4da4418

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

discovery/airquality-v1.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
}
251251
}
252252
},
253-
"revision": "20240625",
253+
"revision": "20240901",
254254
"rootUrl": "https://airquality.googleapis.com/",
255255
"schemas": {
256256
"AdditionalInfo": {
@@ -350,7 +350,7 @@
350350
"type": "string"
351351
},
352352
"value": {
353-
"description": "Value of pollutant concentration.",
353+
"description": "Value of the pollutant concentration.",
354354
"format": "float",
355355
"type": "number"
356356
}
@@ -849,7 +849,7 @@
849849
"description": "Additional information about the pollutant."
850850
},
851851
"code": {
852-
"description": "The pollutant's code name. For example: \"so2\". A list of all available codes could be found [here](/maps/documentation/air-quality/pollutants#reported_pollutants).",
852+
"description": "The pollutant's code name (for example, \"so2\"). For a list of supported pollutant codes, see [Reported pollutants](/maps/documentation/air-quality/pollutants#reported_pollutants).",
853853
"type": "string"
854854
},
855855
"concentration": {
@@ -861,7 +861,7 @@
861861
"type": "string"
862862
},
863863
"fullName": {
864-
"description": "The pollutant's full name. For chemical compounds, this is the IUPAC name. Example: \"Sulfur Dioxide\". For more information about the IUPAC names table, see https://iupac.org/what-we-do/periodic-table-of-elements/",
864+
"description": "The pollutant's full name. For chemical compounds, this is the IUPAC name. Example: \"Sulfur Dioxide\". For more information about the IUPAC names table, see https://iupac.org/what-we-do/periodic-table-of-elements/.",
865865
"type": "string"
866866
}
867867
},

src/apis/airquality/v1.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export namespace airquality_v1 {
206206
*/
207207
units?: string | null;
208208
/**
209-
* Value of pollutant concentration.
209+
* Value of the pollutant concentration.
210210
*/
211211
value?: number | null;
212212
}
@@ -526,7 +526,7 @@ export namespace airquality_v1 {
526526
*/
527527
additionalInfo?: Schema$AdditionalInfo;
528528
/**
529-
* The pollutant's code name. For example: "so2". A list of all available codes could be found [here](/maps/documentation/air-quality/pollutants#reported_pollutants).
529+
* The pollutant's code name (for example, "so2"). For a list of supported pollutant codes, see [Reported pollutants](/maps/documentation/air-quality/pollutants#reported_pollutants).
530530
*/
531531
code?: string | null;
532532
/**
@@ -538,7 +538,7 @@ export namespace airquality_v1 {
538538
*/
539539
displayName?: string | null;
540540
/**
541-
* The pollutant's full name. For chemical compounds, this is the IUPAC name. Example: "Sulfur Dioxide". For more information about the IUPAC names table, see https://iupac.org/what-we-do/periodic-table-of-elements/
541+
* The pollutant's full name. For chemical compounds, this is the IUPAC name. Example: "Sulfur Dioxide". For more information about the IUPAC names table, see https://iupac.org/what-we-do/periodic-table-of-elements/.
542542
*/
543543
fullName?: string | null;
544544
}

0 commit comments

Comments
 (0)