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> = {
56
56
userIdentifierKey : 'string' ,
57
57
clientSessionToken : 'string' ,
58
58
endpoint : 'string' ,
59
+ isUndocumentedApiEnabled : 'boolean' ,
59
60
queryClient : 'object' ,
60
61
telemetryClient : 'object' ,
61
62
disableTelemetry : 'boolean' ,
Original file line number Diff line number Diff line change @@ -69,7 +69,10 @@ interface SeamQueryProviderBaseProps extends PropsWithChildren {
69
69
70
70
type SeamClientOptions = SeamHttpOptionsWithClientSessionToken
71
71
72
- export type SeamQueryProviderClientOptions = Pick < SeamClientOptions , 'endpoint' >
72
+ export type SeamQueryProviderClientOptions = Pick <
73
+ SeamClientOptions ,
74
+ 'endpoint' | 'isUndocumentedApiEnabled'
75
+ >
73
76
74
77
const defaultQueryClient = new QueryClient ( )
75
78
You can’t perform that action at this time.
0 commit comments