@@ -41,4 +41,310 @@ export declare const internal: FilterApi<
4141 FunctionReference < any , "internal" >
4242> ;
4343
44+ export declare const components : {
45+ twilio : {
46+ messages : {
47+ create : FunctionReference <
48+ "action" ,
49+ "internal" ,
50+ {
51+ account_sid : string ;
52+ auth_token : string ;
53+ body : string ;
54+ callback ?: string ;
55+ from : string ;
56+ status_callback : string ;
57+ to : string ;
58+ } ,
59+ {
60+ account_sid : string ;
61+ api_version : string ;
62+ body : string ;
63+ counterparty ?: string ;
64+ date_created : string ;
65+ date_sent : string | null ;
66+ date_updated : string | null ;
67+ direction : string ;
68+ error_code : number | null ;
69+ error_message : string | null ;
70+ from : string ;
71+ messaging_service_sid : string | null ;
72+ num_media : string ;
73+ num_segments : string ;
74+ price : string | null ;
75+ price_unit : string | null ;
76+ rest ?: any ;
77+ sid : string ;
78+ status : string ;
79+ subresource_uris : { feedback ?: string ; media : string } | null ;
80+ to : string ;
81+ uri : string ;
82+ }
83+ > ;
84+ getByCounterparty : FunctionReference <
85+ "query" ,
86+ "internal" ,
87+ { account_sid : string ; counterparty : string ; limit ?: number } ,
88+ Array < {
89+ account_sid : string ;
90+ api_version : string ;
91+ body : string ;
92+ counterparty ?: string ;
93+ date_created : string ;
94+ date_sent : string | null ;
95+ date_updated : string | null ;
96+ direction : string ;
97+ error_code : number | null ;
98+ error_message : string | null ;
99+ from : string ;
100+ messaging_service_sid : string | null ;
101+ num_media : string ;
102+ num_segments : string ;
103+ price : string | null ;
104+ price_unit : string | null ;
105+ rest ?: any ;
106+ sid : string ;
107+ status : string ;
108+ subresource_uris : { feedback ?: string ; media : string } | null ;
109+ to : string ;
110+ uri : string ;
111+ } >
112+ > ;
113+ getBySid : FunctionReference <
114+ "query" ,
115+ "internal" ,
116+ { account_sid : string ; sid : string } ,
117+ {
118+ account_sid : string ;
119+ api_version : string ;
120+ body : string ;
121+ counterparty ?: string ;
122+ date_created : string ;
123+ date_sent : string | null ;
124+ date_updated : string | null ;
125+ direction : string ;
126+ error_code : number | null ;
127+ error_message : string | null ;
128+ from : string ;
129+ messaging_service_sid : string | null ;
130+ num_media : string ;
131+ num_segments : string ;
132+ price : string | null ;
133+ price_unit : string | null ;
134+ rest ?: any ;
135+ sid : string ;
136+ status : string ;
137+ subresource_uris : { feedback ?: string ; media : string } | null ;
138+ to : string ;
139+ uri : string ;
140+ } | null
141+ > ;
142+ getFrom : FunctionReference <
143+ "query" ,
144+ "internal" ,
145+ { account_sid : string ; from : string ; limit ?: number } ,
146+ Array < {
147+ account_sid : string ;
148+ api_version : string ;
149+ body : string ;
150+ counterparty ?: string ;
151+ date_created : string ;
152+ date_sent : string | null ;
153+ date_updated : string | null ;
154+ direction : string ;
155+ error_code : number | null ;
156+ error_message : string | null ;
157+ from : string ;
158+ messaging_service_sid : string | null ;
159+ num_media : string ;
160+ num_segments : string ;
161+ price : string | null ;
162+ price_unit : string | null ;
163+ rest ?: any ;
164+ sid : string ;
165+ status : string ;
166+ subresource_uris : { feedback ?: string ; media : string } | null ;
167+ to : string ;
168+ uri : string ;
169+ } >
170+ > ;
171+ getFromTwilioBySidAndInsert : FunctionReference <
172+ "action" ,
173+ "internal" ,
174+ {
175+ account_sid : string ;
176+ auth_token : string ;
177+ incomingMessageCallback ?: string ;
178+ sid : string ;
179+ } ,
180+ {
181+ account_sid : string ;
182+ api_version : string ;
183+ body : string ;
184+ counterparty ?: string ;
185+ date_created : string ;
186+ date_sent : string | null ;
187+ date_updated : string | null ;
188+ direction : string ;
189+ error_code : number | null ;
190+ error_message : string | null ;
191+ from : string ;
192+ messaging_service_sid : string | null ;
193+ num_media : string ;
194+ num_segments : string ;
195+ price : string | null ;
196+ price_unit : string | null ;
197+ rest ?: any ;
198+ sid : string ;
199+ status : string ;
200+ subresource_uris : { feedback ?: string ; media : string } | null ;
201+ to : string ;
202+ uri : string ;
203+ }
204+ > ;
205+ getTo : FunctionReference <
206+ "query" ,
207+ "internal" ,
208+ { account_sid : string ; limit ?: number ; to : string } ,
209+ Array < {
210+ account_sid : string ;
211+ api_version : string ;
212+ body : string ;
213+ counterparty ?: string ;
214+ date_created : string ;
215+ date_sent : string | null ;
216+ date_updated : string | null ;
217+ direction : string ;
218+ error_code : number | null ;
219+ error_message : string | null ;
220+ from : string ;
221+ messaging_service_sid : string | null ;
222+ num_media : string ;
223+ num_segments : string ;
224+ price : string | null ;
225+ price_unit : string | null ;
226+ rest ?: any ;
227+ sid : string ;
228+ status : string ;
229+ subresource_uris : { feedback ?: string ; media : string } | null ;
230+ to : string ;
231+ uri : string ;
232+ } >
233+ > ;
234+ list : FunctionReference <
235+ "query" ,
236+ "internal" ,
237+ { account_sid : string ; limit ?: number } ,
238+ Array < {
239+ account_sid : string ;
240+ api_version : string ;
241+ body : string ;
242+ counterparty ?: string ;
243+ date_created : string ;
244+ date_sent : string | null ;
245+ date_updated : string | null ;
246+ direction : string ;
247+ error_code : number | null ;
248+ error_message : string | null ;
249+ from : string ;
250+ messaging_service_sid : string | null ;
251+ num_media : string ;
252+ num_segments : string ;
253+ price : string | null ;
254+ price_unit : string | null ;
255+ rest ?: any ;
256+ sid : string ;
257+ status : string ;
258+ subresource_uris : { feedback ?: string ; media : string } | null ;
259+ to : string ;
260+ uri : string ;
261+ } >
262+ > ;
263+ listIncoming : FunctionReference <
264+ "query" ,
265+ "internal" ,
266+ { account_sid : string ; limit ?: number } ,
267+ Array < {
268+ account_sid : string ;
269+ api_version : string ;
270+ body : string ;
271+ counterparty ?: string ;
272+ date_created : string ;
273+ date_sent : string | null ;
274+ date_updated : string | null ;
275+ direction : string ;
276+ error_code : number | null ;
277+ error_message : string | null ;
278+ from : string ;
279+ messaging_service_sid : string | null ;
280+ num_media : string ;
281+ num_segments : string ;
282+ price : string | null ;
283+ price_unit : string | null ;
284+ rest ?: any ;
285+ sid : string ;
286+ status : string ;
287+ subresource_uris : { feedback ?: string ; media : string } | null ;
288+ to : string ;
289+ uri : string ;
290+ } >
291+ > ;
292+ listOutgoing : FunctionReference <
293+ "query" ,
294+ "internal" ,
295+ { account_sid : string ; limit ?: number } ,
296+ Array < {
297+ account_sid : string ;
298+ api_version : string ;
299+ body : string ;
300+ counterparty ?: string ;
301+ date_created : string ;
302+ date_sent : string | null ;
303+ date_updated : string | null ;
304+ direction : string ;
305+ error_code : number | null ;
306+ error_message : string | null ;
307+ from : string ;
308+ messaging_service_sid : string | null ;
309+ num_media : string ;
310+ num_segments : string ;
311+ price : string | null ;
312+ price_unit : string | null ;
313+ rest ?: any ;
314+ sid : string ;
315+ status : string ;
316+ subresource_uris : { feedback ?: string ; media : string } | null ;
317+ to : string ;
318+ uri : string ;
319+ } >
320+ > ;
321+ updateStatus : FunctionReference <
322+ "mutation" ,
323+ "internal" ,
324+ { account_sid : string ; sid : string ; status : string } ,
325+ null
326+ > ;
327+ } ;
328+ phone_numbers : {
329+ create : FunctionReference <
330+ "action" ,
331+ "internal" ,
332+ { account_sid : string ; auth_token : string ; number : string } ,
333+ any
334+ > ;
335+ updateSmsUrl : FunctionReference <
336+ "action" ,
337+ "internal" ,
338+ {
339+ account_sid : string ;
340+ auth_token : string ;
341+ sid : string ;
342+ sms_url : string ;
343+ } ,
344+ any
345+ > ;
346+ } ;
347+ } ;
348+ } ;
349+
44350/* prettier-ignore-end */
0 commit comments