From 47eb005f8cc8f6d6c63352e60d77c8df3a8ed076 Mon Sep 17 00:00:00 2001 From: Tyler Clawson Date: Fri, 4 Oct 2024 19:46:48 -0400 Subject: [PATCH] Mark 'customerSessionClientSecret' as experimental --- src/types/PaymentSheet.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/PaymentSheet.ts b/src/types/PaymentSheet.ts index b13560433..9a22b0e0a 100644 --- a/src/types/PaymentSheet.ts +++ b/src/types/PaymentSheet.ts @@ -75,7 +75,9 @@ export type SetupParams = }) | (SetupParamsBase & { customerEphemeralKeySecret?: never; - /** The client secret of this Customer Session. Used on the client to set up secure access to the given customer. */ + /** (Experimental) This parameter can be changed or removed at any time (use at your own risk). + * The client secret of this Customer Session. Used on the client to set up secure access to the given customer. + */ customerSessionClientSecret: string; }) | SetupParamsBase;