@@ -46,25 +46,25 @@ export type TriggerEventToAllRequestDtoOverrides = {
46
46
*
47
47
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
48
48
*/
49
- email ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
49
+ email ?: { [ k : string ] : any } | undefined ;
50
50
/**
51
51
* Override the push provider specific configurations for the entire workflow
52
52
*
53
53
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
54
54
*/
55
- push ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
55
+ push ?: { [ k : string ] : any } | undefined ;
56
56
/**
57
57
* Override the sms provider specific configurations for the entire workflow
58
58
*
59
59
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
60
60
*/
61
- sms ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
61
+ sms ?: { [ k : string ] : any } | undefined ;
62
62
/**
63
63
* Override the chat provider specific configurations for the entire workflow
64
64
*
65
65
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
66
66
*/
67
- chat ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
67
+ chat ?: { [ k : string ] : any } | undefined ;
68
68
/**
69
69
* Override the layout identifier for the entire workflow
70
70
*
@@ -136,10 +136,10 @@ export const TriggerEventToAllRequestDtoOverrides$inboundSchema: z.ZodType<
136
136
z . object ( {
137
137
steps : z . record ( StepsOverrides$inboundSchema ) . optional ( ) ,
138
138
providers : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
139
- email : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
140
- push : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
141
- sms : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
142
- chat : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
139
+ email : z . record ( z . any ( ) ) . optional ( ) ,
140
+ push : z . record ( z . any ( ) ) . optional ( ) ,
141
+ sms : z . record ( z . any ( ) ) . optional ( ) ,
142
+ chat : z . record ( z . any ( ) ) . optional ( ) ,
143
143
layoutIdentifier : z . string ( ) . optional ( ) ,
144
144
} ) . catchall ( z . record ( z . any ( ) ) ) ,
145
145
"additionalProperties" ,
@@ -150,10 +150,10 @@ export const TriggerEventToAllRequestDtoOverrides$inboundSchema: z.ZodType<
150
150
export type TriggerEventToAllRequestDtoOverrides$Outbound = {
151
151
steps ?: { [ k : string ] : StepsOverrides$Outbound } | undefined ;
152
152
providers ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
153
- email ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
154
- push ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
155
- sms ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
156
- chat ?: { [ k : string ] : { [ k : string ] : any } } | undefined ;
153
+ email ?: { [ k : string ] : any } | undefined ;
154
+ push ?: { [ k : string ] : any } | undefined ;
155
+ sms ?: { [ k : string ] : any } | undefined ;
156
+ chat ?: { [ k : string ] : any } | undefined ;
157
157
layoutIdentifier ?: string | undefined ;
158
158
[ additionalProperties : string ] : unknown ;
159
159
} ;
@@ -166,10 +166,10 @@ export const TriggerEventToAllRequestDtoOverrides$outboundSchema: z.ZodType<
166
166
> = z . object ( {
167
167
steps : z . record ( StepsOverrides$outboundSchema ) . optional ( ) ,
168
168
providers : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
169
- email : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
170
- push : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
171
- sms : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
172
- chat : z . record ( z . record ( z . any ( ) ) ) . optional ( ) ,
169
+ email : z . record ( z . any ( ) ) . optional ( ) ,
170
+ push : z . record ( z . any ( ) ) . optional ( ) ,
171
+ sms : z . record ( z . any ( ) ) . optional ( ) ,
172
+ chat : z . record ( z . any ( ) ) . optional ( ) ,
173
173
layoutIdentifier : z . string ( ) . optional ( ) ,
174
174
additionalProperties : z . record ( z . record ( z . any ( ) ) ) ,
175
175
} ) . transform ( ( v ) => {
0 commit comments