File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @vesselapi/integrations" ,
3- "version" : " 1.0.36 " ,
3+ "version" : " 1.0.37 " ,
44 "description" : " Vessel integrations" ,
55 "main" : " dist/index.js" ,
66 "module" : " dist/index.mjs" ,
Original file line number Diff line number Diff line change 1- import { CamelCasedPropertiesDeep } from 'type-fest' ;
1+ import { CamelCasedPropertiesDeep , SetOptional } from 'type-fest' ;
22import { z } from 'zod' ;
33import { HttpOptions } from './client' ;
44
@@ -291,5 +291,7 @@ export type ClientResult<TValidated> = {
291291} ;
292292
293293export type ActionResult < TOutput > = CamelCasedPropertiesDeep < TOutput > & {
294- $native ?: RawResponse | RawResponse [ ] ;
294+ $native ?:
295+ | SetOptional < RawResponse , 'body' >
296+ | SetOptional < RawResponse , 'body' > [ ] ;
295297} ;
You can’t perform that action at this time.
0 commit comments