Skip to content

Commit 94d6545

Browse files
yoshi-automationsofisl
authored andcommitted
fix(healthcare): update the API
#### healthcare:v1beta1 The following keys were changed: - resources.projects.resources.locations.resources.datasets.resources.fhirStores.resources.fhir.methods.Patient-everything.parameters._type.description #### healthcare:v1 The following keys were changed: - resources.projects.resources.locations.resources.datasets.resources.fhirStores.resources.fhir.methods.Patient-everything.parameters._type.description
1 parent edf3a2b commit 94d6545

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

discovery/healthcare-v1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2969,7 +2969,7 @@
29692969
"type": "string"
29702970
},
29712971
"_type": {
2972-
"description": "String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned.",
2972+
"description": "String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. Specifying multiple `_type` parameters isn't supported. For example, the result of `_type=Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter` instead.",
29732973
"location": "query",
29742974
"type": "string"
29752975
},
@@ -4078,7 +4078,7 @@
40784078
}
40794079
}
40804080
},
4081-
"revision": "20230207",
4081+
"revision": "20230310",
40824082
"rootUrl": "https://healthcare.googleapis.com/",
40834083
"schemas": {
40844084
"ActivateConsentRequest": {

discovery/healthcare-v1beta1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3624,7 +3624,7 @@
36243624
"type": "string"
36253625
},
36263626
"_type": {
3627-
"description": "String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned.",
3627+
"description": "String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. Specifying multiple `_type` parameters isn't supported. For example, the result of `_type=Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter` instead.",
36283628
"location": "query",
36293629
"type": "string"
36303630
},
@@ -4890,7 +4890,7 @@
48904890
}
48914891
}
48924892
},
4893-
"revision": "20230223",
4893+
"revision": "20230310",
48944894
"rootUrl": "https://healthcare.googleapis.com/",
48954895
"schemas": {
48964896
"Action": {

src/apis/healthcare/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16972,7 +16972,7 @@ export namespace healthcare_v1 {
1697216972
* _page_token: 'placeholder-value',
1697316973
* // If provided, only resources updated after this time are returned. The time uses the format YYYY-MM-DDThh:mm:ss.sss+zz:zz. For example, `2015-02-07T13:28:17.239+02:00` or `2017-01-01T00:00:00Z`. The time must be specified to the second and include a time zone.
1697416974
* _since: 'placeholder-value',
16975-
* // String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned.
16975+
* // String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. Specifying multiple `_type` parameters isn't supported. For example, the result of `_type=Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter` instead.
1697616976
* _type: 'placeholder-value',
1697716977
* });
1697816978
* console.log(res.data);
@@ -18145,7 +18145,7 @@ export namespace healthcare_v1 {
1814518145
*/
1814618146
_since?: string;
1814718147
/**
18148-
* String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned.
18148+
* String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. Specifying multiple `_type` parameters isn't supported. For example, the result of `_type=Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter` instead.
1814918149
*/
1815018150
_type?: string;
1815118151
}

src/apis/healthcare/v1beta1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21137,7 +21137,7 @@ export namespace healthcare_v1beta1 {
2113721137
* _page_token: 'placeholder-value',
2113821138
* // If provided, only resources updated after this time are returned. The time uses the format YYYY-MM-DDThh:mm:ss.sss+zz:zz. For example, `2015-02-07T13:28:17.239+02:00` or `2017-01-01T00:00:00Z`. The time must be specified to the second and include a time zone.
2113921139
* _since: 'placeholder-value',
21140-
* // String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned.
21140+
* // String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. Specifying multiple `_type` parameters isn't supported. For example, the result of `_type=Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter` instead.
2114121141
* _type: 'placeholder-value',
2114221142
* });
2114321143
* console.log(res.data);
@@ -22412,7 +22412,7 @@ export namespace healthcare_v1beta1 {
2241222412
*/
2241322413
_since?: string;
2241422414
/**
22415-
* String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned.
22415+
* String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. Specifying multiple `_type` parameters isn't supported. For example, the result of `_type=Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter` instead.
2241622416
*/
2241722417
_type?: string;
2241822418
}

0 commit comments

Comments
 (0)