File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ const providerProps: R2wcProps<ProviderProps> = {
5656 userIdentifierKey : 'string' ,
5757 clientSessionToken : 'string' ,
5858 endpoint : 'string' ,
59+ isUndocumentedApiEnabled : 'boolean' ,
5960 queryClient : 'object' ,
6061 telemetryClient : 'object' ,
6162 disableTelemetry : 'boolean' ,
Original file line number Diff line number Diff line change @@ -69,7 +69,10 @@ interface SeamQueryProviderBaseProps extends PropsWithChildren {
6969
7070type SeamClientOptions = SeamHttpOptionsWithClientSessionToken
7171
72- export type SeamQueryProviderClientOptions = Pick < SeamClientOptions , 'endpoint' >
72+ export type SeamQueryProviderClientOptions = Pick <
73+ SeamClientOptions ,
74+ 'endpoint' | 'isUndocumentedApiEnabled'
75+ >
7376
7477const defaultQueryClient = new QueryClient ( )
7578
You can’t perform that action at this time.
0 commit comments