We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dacd31b commit 75f4511Copy full SHA for 75f4511
2 files changed
src/lib/element.tsx
@@ -56,6 +56,7 @@ const providerProps: R2wcProps<ProviderProps> = {
56
userIdentifierKey: 'string',
57
clientSessionToken: 'string',
58
endpoint: 'string',
59
+ isUndocumentedApiEnabled: 'boolean',
60
queryClient: 'object',
61
telemetryClient: 'object',
62
disableTelemetry: 'boolean',
src/lib/seam/SeamQueryProvider.tsx
@@ -69,7 +69,10 @@ interface SeamQueryProviderBaseProps extends PropsWithChildren {
69
70
type SeamClientOptions = SeamHttpOptionsWithClientSessionToken
71
72
-export type SeamQueryProviderClientOptions = Pick<SeamClientOptions, 'endpoint'>
+export type SeamQueryProviderClientOptions = Pick<
73
+ SeamClientOptions,
74
+ 'endpoint' | 'isUndocumentedApiEnabled'
75
+>
76
77
const defaultQueryClient = new QueryClient()
78
0 commit comments