@@ -182,34 +182,4 @@ const messageActionSchema = z.object({
182182 . optional ( ) ,
183183} ) ;
184184
185- export const blockAction : Zod . ZodObject < {
186- type : typeof blockActionType ;
187- user : typeof userSchema ;
188- api_app_id : Zod . ZodString ;
189- container : typeof containerSchema ;
190- trigger_id : z . ZodOptional < Zod . ZodString > ;
191- team : typeof teamSchema ;
192- enterprise : Zod . ZodAny ;
193- is_enterprise_install : Zod . ZodBoolean ;
194- channel : typeof channelSchema ;
195- view : z . ZodOptional < typeof viewActionSchema > ;
196- message : z . ZodOptional < typeof messageActionSchema > ;
197- state : z . ZodOptional < typeof stateSchema > ;
198- response_url : Zod . ZodString ;
199- actions : Zod . ZodArray < typeof actionSchema > ;
200- } > = z . object ( {
201- type : blockActionType ,
202- user : userSchema ,
203- api_app_id : z . string ( ) ,
204- container : containerSchema ,
205- trigger_id : z . string ( ) . optional ( ) ,
206- team : teamSchema ,
207- enterprise : z . any ( ) ,
208- is_enterprise_install : z . boolean ( ) ,
209- channel : channelSchema ,
210- view : viewActionSchema . optional ( ) ,
211- message : messageActionSchema . optional ( ) ,
212- state : stateSchema . optional ( ) ,
213- response_url : z . string ( ) ,
214- actions : z . array ( actionSchema ) ,
215- } ) ;
185+ export const blockAction = z . any ( ) ;
0 commit comments