We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56ba77 commit b0553b9Copy full SHA for b0553b9
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@vesselapi/integrations",
3
- "version": "1.0.64",
+ "version": "1.0.65",
4
"description": "Vessel integrations",
5
"main": "dist/index.js",
6
"module": "dist/index.mjs",
src/sdk/client.ts
@@ -28,6 +28,8 @@ export const formatUpsertInputWithNative = <
28
>(
29
input: T,
30
): Omit<T, '$native'> => {
31
+ if (!input.$native) return input;
32
+
33
// Take keys from $native that overlap with the input and assign them to the input, recursively
34
const assigned = assign(omit(input, ['$native']), input.$native ?? {});
35
0 commit comments