Skip to content

Commit 12fad00

Browse files
dvacca-onfidogithub-actions[bot]
authored andcommitted
Upgrade after onfido-openapi-spec change 169dd4d
1 parent a5ce9b2 commit 12fad00

File tree

5 files changed

+135
-170
lines changed

5 files changed

+135
-170
lines changed

.openapi-generator/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.5.0
1+
7.6.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Webhook events payload needs to be verified before it can be accessed. Library a
177177
178178
## Contributing
179179
180-
This library is automatically generated using [OpenAPI Generator](https://openapi-generator.tech) - version: 7.5.0; therefore all the contributions, except tests files, should target [Onfido OpenAPI specification repository](https://github.com/onfido/onfido-openapi-spec/tree/master) instead of this repository.
180+
This library is automatically generated using [OpenAPI Generator](https://openapi-generator.tech) - version: 7.6.0; therefore all the contributions, except tests files, should target [Onfido OpenAPI specification repository](https://github.com/onfido/onfido-openapi-spec/tree/master) instead of this repository.
181181
182182
For contributions to the tests instead, please follow the steps below:
183183

common.ts

+1-41
Original file line numberDiff line numberDiff line change
@@ -127,50 +127,10 @@ export const serializeDataIfNeeded = function (value: any, requestOptions: any,
127127
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
128128
: nonString;
129129
return needsSerialization
130-
? JSON.stringify(value !== undefined ? convertMapsAndSetsToPlain(value) : {})
130+
? JSON.stringify(value !== undefined ? value : {})
131131
: (value || "");
132132
}
133133

134-
function convertMapsAndSetsToPlain(value: any): any {
135-
if (typeof Set === "undefined") return value;
136-
if (typeof Map === "undefined") return value;
137-
if (typeof value !== "object" || !value) {
138-
return value;
139-
}
140-
if (value instanceof Set) {
141-
return Array.from(value).map(item => convertMapsAndSetsToPlain(item));
142-
}
143-
if (value instanceof Map) {
144-
const entries: Array<[string, any]> = [];
145-
value.forEach((value: any, key: any) => {
146-
entries.push([key, convertMapsAndSetsToPlain(value)])
147-
});
148-
return objectFromEntries(entries);
149-
}
150-
if (Array.isArray(value)) {
151-
return value.map(it => convertMapsAndSetsToPlain(it));
152-
}
153-
return objectFromEntries(objectEntries(value)
154-
.map(([k, v]) => [k, convertMapsAndSetsToPlain(v)]));
155-
}
156-
157-
/**
158-
* Ponyfill for Object.entries
159-
*/
160-
function objectEntries(object: Record<string, any>): Array<[string, any]> {
161-
return Object.keys(object).map(key => [key, object[key]]);
162-
}
163-
164-
/**
165-
* Ponyfill for Object.fromEntries
166-
*/
167-
function objectFromEntries(entries: any): Record<string, any> {
168-
return [...entries].reduce((object, [key, val]) => {
169-
object[key] = val;
170-
return object;
171-
}, {});
172-
}
173-
174134
/**
175135
*
176136
* @export

0 commit comments

Comments
 (0)