Skip to content

Commit d017101

Browse files
authored
Merge pull request #27 from valpackett/master
fix build
2 parents 9a7e16a + b961f48 commit d017101

File tree

458 files changed

+2091
-14332
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

458 files changed

+2091
-14332
lines changed

android/.openapi-generator/FILES

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ docs/SearchRestaurants200ResponseRestaurantsInnerAddress.md
148148
docs/SearchRestaurants200ResponseRestaurantsInnerLocalHours.md
149149
docs/SearchRestaurants200ResponseRestaurantsInnerLocalHoursOperational.md
150150
docs/SearchResult.md
151-
docs/SearchResultDataPointsInner.md
152151
docs/SearchSiteContent200Response.md
153152
docs/SummarizeRecipe200Response.md
154153
docs/TalkToChatbot200Response.md
@@ -317,7 +316,6 @@ src/main/java/com/spoonacular/client/model/SearchRestaurants200ResponseRestauran
317316
src/main/java/com/spoonacular/client/model/SearchRestaurants200ResponseRestaurantsInnerLocalHours.java
318317
src/main/java/com/spoonacular/client/model/SearchRestaurants200ResponseRestaurantsInnerLocalHoursOperational.java
319318
src/main/java/com/spoonacular/client/model/SearchResult.java
320-
src/main/java/com/spoonacular/client/model/SearchResultDataPointsInner.java
321319
src/main/java/com/spoonacular/client/model/SearchSiteContent200Response.java
322320
src/main/java/com/spoonacular/client/model/SummarizeRecipe200Response.java
323321
src/main/java/com/spoonacular/client/model/TalkToChatbot200Response.java

android/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ Class | Method | HTTP request | Description
328328
- [SearchRestaurants200ResponseRestaurantsInnerLocalHours](docs/SearchRestaurants200ResponseRestaurantsInnerLocalHours.md)
329329
- [SearchRestaurants200ResponseRestaurantsInnerLocalHoursOperational](docs/SearchRestaurants200ResponseRestaurantsInnerLocalHoursOperational.md)
330330
- [SearchResult](docs/SearchResult.md)
331-
- [SearchResultDataPointsInner](docs/SearchResultDataPointsInner.md)
332331
- [SearchSiteContent200Response](docs/SearchSiteContent200Response.md)
333332
- [SummarizeRecipe200Response](docs/SummarizeRecipe200Response.md)
334333
- [TalkToChatbot200Response](docs/TalkToChatbot200Response.md)

android/docs/SearchResult.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**dataPoints** | [**List<SearchResultDataPointsInner>**](SearchResultDataPointsInner.md) | | [optional]
109
**image** | **String** | | [optional]
1110
**link** | **String** | | [optional]
1211
**name** | **String** | |

android/docs/SearchResultDataPointsInner.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

android/src/main/java/com/spoonacular/client/JsonUtil.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -613,10 +613,6 @@ public static Type getListTypeForDeserialization(Class cls) {
613613
return new TypeToken<List<SearchResult>>(){}.getType();
614614
}
615615

616-
if ("SearchResultDataPointsInner".equalsIgnoreCase(className)) {
617-
return new TypeToken<List<SearchResultDataPointsInner>>(){}.getType();
618-
}
619-
620616
if ("SearchSiteContent200Response".equalsIgnoreCase(className)) {
621617
return new TypeToken<List<SearchSiteContent200Response>>(){}.getType();
622618
}
@@ -1199,10 +1195,6 @@ public static Type getTypeForDeserialization(Class cls) {
11991195
return new TypeToken<SearchResult>(){}.getType();
12001196
}
12011197

1202-
if ("SearchResultDataPointsInner".equalsIgnoreCase(className)) {
1203-
return new TypeToken<SearchResultDataPointsInner>(){}.getType();
1204-
}
1205-
12061198
if ("SearchSiteContent200Response".equalsIgnoreCase(className)) {
12071199
return new TypeToken<SearchSiteContent200Response>(){}.getType();
12081200
}

android/src/main/java/com/spoonacular/client/model/SearchResult.java

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212

1313
package com.spoonacular.client.model;
1414

15-
import com.spoonacular.client.model.SearchResultDataPointsInner;
1615
import java.math.BigDecimal;
17-
import java.util.*;
1816
import io.swagger.annotations.*;
1917
import com.google.gson.annotations.SerializedName;
2018

@@ -24,8 +22,6 @@
2422
@ApiModel(description = "")
2523
public class SearchResult {
2624

27-
@SerializedName("dataPoints")
28-
private List<SearchResultDataPointsInner> dataPoints = null;
2925
@SerializedName("image")
3026
private String image = null;
3127
@SerializedName("link")
@@ -43,16 +39,6 @@ public class SearchResult {
4339
@SerializedName("relevance")
4440
private BigDecimal relevance = null;
4541

46-
/**
47-
**/
48-
@ApiModelProperty(value = "")
49-
public List<SearchResultDataPointsInner> getDataPoints() {
50-
return dataPoints;
51-
}
52-
public void setDataPoints(List<SearchResultDataPointsInner> dataPoints) {
53-
this.dataPoints = dataPoints;
54-
}
55-
5642
/**
5743
**/
5844
@ApiModelProperty(value = "")
@@ -143,8 +129,7 @@ public boolean equals(Object o) {
143129
return false;
144130
}
145131
SearchResult searchResult = (SearchResult) o;
146-
return (this.dataPoints == null ? searchResult.dataPoints == null : this.dataPoints.equals(searchResult.dataPoints)) &&
147-
(this.image == null ? searchResult.image == null : this.image.equals(searchResult.image)) &&
132+
return (this.image == null ? searchResult.image == null : this.image.equals(searchResult.image)) &&
148133
(this.link == null ? searchResult.link == null : this.link.equals(searchResult.link)) &&
149134
(this.name == null ? searchResult.name == null : this.name.equals(searchResult.name)) &&
150135
(this.type == null ? searchResult.type == null : this.type.equals(searchResult.type)) &&
@@ -157,7 +142,6 @@ public boolean equals(Object o) {
157142
@Override
158143
public int hashCode() {
159144
int result = 17;
160-
result = 31 * result + (this.dataPoints == null ? 0: this.dataPoints.hashCode());
161145
result = 31 * result + (this.image == null ? 0: this.image.hashCode());
162146
result = 31 * result + (this.link == null ? 0: this.link.hashCode());
163147
result = 31 * result + (this.name == null ? 0: this.name.hashCode());
@@ -174,7 +158,6 @@ public String toString() {
174158
StringBuilder sb = new StringBuilder();
175159
sb.append("class SearchResult {\n");
176160

177-
sb.append(" dataPoints: ").append(dataPoints).append("\n");
178161
sb.append(" image: ").append(image).append("\n");
179162
sb.append(" link: ").append(link).append("\n");
180163
sb.append(" name: ").append(name).append("\n");

android/src/main/java/com/spoonacular/client/model/SearchResultDataPointsInner.java

Lines changed: 0 additions & 94 deletions
This file was deleted.

angular/.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ model/searchRestaurants200ResponseRestaurantsInnerAddress.ts
155155
model/searchRestaurants200ResponseRestaurantsInnerLocalHours.ts
156156
model/searchRestaurants200ResponseRestaurantsInnerLocalHoursOperational.ts
157157
model/searchResult.ts
158-
model/searchResultDataPointsInner.ts
159158
model/searchSiteContent200Response.ts
160159
model/summarizeRecipe200Response.ts
161160
model/talkToChatbot200Response.ts

angular/model/models.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ export * from './searchRestaurants200ResponseRestaurantsInnerAddress';
137137
export * from './searchRestaurants200ResponseRestaurantsInnerLocalHours';
138138
export * from './searchRestaurants200ResponseRestaurantsInnerLocalHoursOperational';
139139
export * from './searchResult';
140-
export * from './searchResultDataPointsInner';
141140
export * from './searchSiteContent200Response';
142141
export * from './summarizeRecipe200Response';
143142
export * from './talkToChatbot200Response';

angular/model/searchResult.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@
99
* https://openapi-generator.tech
1010
* Do not edit the class manually.
1111
*/
12-
import { SearchResultDataPointsInner } from './searchResultDataPointsInner';
1312

1413

1514
/**
1615
*
1716
*/
1817
export interface SearchResult {
19-
dataPoints?: Array<SearchResultDataPointsInner>;
2018
image?: string;
2119
link?: string | null;
2220
name: string;

0 commit comments

Comments
 (0)