@slates/proto 1.0.0-rc.1 → 1.0.0-rc.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3619 @@
1
+ import z, { z as z$1 } from 'zod';
2
+
3
+ /**
4
+ * List Actions
5
+ */
6
+ declare let slatesMessageActionsListRequest: z.ZodObject<{
7
+ jsonrpc: z.ZodLiteral<"2.0">;
8
+ method: z.ZodLiteral<"slates/actions.list">;
9
+ id: z.ZodString;
10
+ params: z.ZodObject<{}, z.core.$strip>;
11
+ }, z.core.$strip>;
12
+ type SlatesMessageActionsListRequest = z.infer<typeof slatesMessageActionsListRequest>;
13
+ declare let slatesMessageActionsListResponse: z.ZodObject<{
14
+ jsonrpc: z.ZodLiteral<"2.0">;
15
+ id: z.ZodString;
16
+ result: z.ZodObject<{
17
+ actions: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
18
+ id: z.ZodString;
19
+ name: z.ZodString;
20
+ description: z.ZodOptional<z.ZodString>;
21
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
22
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
23
+ tags: z.ZodOptional<z.ZodObject<{
24
+ destructive: z.ZodOptional<z.ZodBoolean>;
25
+ readOnly: z.ZodOptional<z.ZodBoolean>;
26
+ }, z.core.$strip>>;
27
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
28
+ scopes: z.ZodOptional<z.ZodObject<{
29
+ AND: z.ZodArray<z.ZodObject<{
30
+ OR: z.ZodArray<z.ZodString>;
31
+ }, z.core.$strip>>;
32
+ }, z.core.$strip>>;
33
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
34
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
35
+ docs: z.ZodArray<z.ZodObject<{
36
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
37
+ name: z.ZodString;
38
+ url: z.ZodString;
39
+ }, z.core.$strip>>;
40
+ type: z.ZodLiteral<"action.tool">;
41
+ capabilities: z.ZodObject<{}, z.core.$strip>;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ id: z.ZodString;
44
+ name: z.ZodString;
45
+ description: z.ZodOptional<z.ZodString>;
46
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
47
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
48
+ tags: z.ZodOptional<z.ZodObject<{
49
+ destructive: z.ZodOptional<z.ZodBoolean>;
50
+ readOnly: z.ZodOptional<z.ZodBoolean>;
51
+ }, z.core.$strip>>;
52
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
53
+ scopes: z.ZodOptional<z.ZodObject<{
54
+ AND: z.ZodArray<z.ZodObject<{
55
+ OR: z.ZodArray<z.ZodString>;
56
+ }, z.core.$strip>>;
57
+ }, z.core.$strip>>;
58
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
59
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
60
+ docs: z.ZodArray<z.ZodObject<{
61
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
62
+ name: z.ZodString;
63
+ url: z.ZodString;
64
+ }, z.core.$strip>>;
65
+ type: z.ZodLiteral<"action.trigger">;
66
+ capabilities: z.ZodObject<{}, z.core.$strip>;
67
+ invocation: z.ZodUnion<readonly [z.ZodObject<{
68
+ type: z.ZodLiteral<"polling">;
69
+ intervalSeconds: z.ZodNumber;
70
+ }, z.core.$strip>, z.ZodObject<{
71
+ type: z.ZodLiteral<"webhook">;
72
+ autoRegistration: z.ZodBoolean;
73
+ autoUnregistration: z.ZodBoolean;
74
+ }, z.core.$strip>]>;
75
+ }, z.core.$strip>]>>;
76
+ }, z.core.$strip>;
77
+ }, z.core.$strip>;
78
+ type SlatesMessageActionsListResponse = z.infer<typeof slatesMessageActionsListResponse>;
79
+ /**
80
+ * Get Action
81
+ */
82
+ declare let slatesMessageActionGetRequest: z.ZodObject<{
83
+ jsonrpc: z.ZodLiteral<"2.0">;
84
+ method: z.ZodLiteral<"slates/action.get">;
85
+ id: z.ZodString;
86
+ params: z.ZodObject<{
87
+ actionId: z.ZodString;
88
+ }, z.core.$strip>;
89
+ }, z.core.$strip>;
90
+ type SlatesMessageActionGetRequest = z.infer<typeof slatesMessageActionGetRequest>;
91
+ declare let slatesMessageActionGetResponse: z.ZodObject<{
92
+ jsonrpc: z.ZodLiteral<"2.0">;
93
+ id: z.ZodString;
94
+ result: z.ZodObject<{
95
+ action: z.ZodUnion<readonly [z.ZodObject<{
96
+ id: z.ZodString;
97
+ name: z.ZodString;
98
+ description: z.ZodOptional<z.ZodString>;
99
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
100
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
101
+ tags: z.ZodOptional<z.ZodObject<{
102
+ destructive: z.ZodOptional<z.ZodBoolean>;
103
+ readOnly: z.ZodOptional<z.ZodBoolean>;
104
+ }, z.core.$strip>>;
105
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
106
+ scopes: z.ZodOptional<z.ZodObject<{
107
+ AND: z.ZodArray<z.ZodObject<{
108
+ OR: z.ZodArray<z.ZodString>;
109
+ }, z.core.$strip>>;
110
+ }, z.core.$strip>>;
111
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
112
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
113
+ docs: z.ZodArray<z.ZodObject<{
114
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
115
+ name: z.ZodString;
116
+ url: z.ZodString;
117
+ }, z.core.$strip>>;
118
+ type: z.ZodLiteral<"action.tool">;
119
+ capabilities: z.ZodObject<{}, z.core.$strip>;
120
+ }, z.core.$strip>, z.ZodObject<{
121
+ id: z.ZodString;
122
+ name: z.ZodString;
123
+ description: z.ZodOptional<z.ZodString>;
124
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
125
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
126
+ tags: z.ZodOptional<z.ZodObject<{
127
+ destructive: z.ZodOptional<z.ZodBoolean>;
128
+ readOnly: z.ZodOptional<z.ZodBoolean>;
129
+ }, z.core.$strip>>;
130
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
131
+ scopes: z.ZodOptional<z.ZodObject<{
132
+ AND: z.ZodArray<z.ZodObject<{
133
+ OR: z.ZodArray<z.ZodString>;
134
+ }, z.core.$strip>>;
135
+ }, z.core.$strip>>;
136
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
137
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
138
+ docs: z.ZodArray<z.ZodObject<{
139
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
140
+ name: z.ZodString;
141
+ url: z.ZodString;
142
+ }, z.core.$strip>>;
143
+ type: z.ZodLiteral<"action.trigger">;
144
+ capabilities: z.ZodObject<{}, z.core.$strip>;
145
+ invocation: z.ZodUnion<readonly [z.ZodObject<{
146
+ type: z.ZodLiteral<"polling">;
147
+ intervalSeconds: z.ZodNumber;
148
+ }, z.core.$strip>, z.ZodObject<{
149
+ type: z.ZodLiteral<"webhook">;
150
+ autoRegistration: z.ZodBoolean;
151
+ autoUnregistration: z.ZodBoolean;
152
+ }, z.core.$strip>]>;
153
+ }, z.core.$strip>]>;
154
+ }, z.core.$strip>;
155
+ }, z.core.$strip>;
156
+ type SlatesMessageActionGetResponse = z.infer<typeof slatesMessageActionGetResponse>;
157
+ /**
158
+ * Invoke Action
159
+ */
160
+ declare let slatesMessageActionInvokeRequest: z.ZodObject<{
161
+ jsonrpc: z.ZodLiteral<"2.0">;
162
+ method: z.ZodLiteral<"slates/action.tool.invoke">;
163
+ id: z.ZodString;
164
+ params: z.ZodObject<{
165
+ actionId: z.ZodString;
166
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
167
+ }, z.core.$strip>;
168
+ }, z.core.$strip>;
169
+ type SlatesMessageActionInvokeRequest = z.infer<typeof slatesMessageActionInvokeRequest>;
170
+ declare let slatesMessageActionInvokeResponse: z.ZodObject<{
171
+ jsonrpc: z.ZodLiteral<"2.0">;
172
+ id: z.ZodString;
173
+ result: z.ZodObject<{
174
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
175
+ message: z.ZodOptional<z.ZodString>;
176
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
177
+ mimeType: z.ZodOptional<z.ZodString>;
178
+ content: z.ZodUnion<readonly [z.ZodObject<{
179
+ type: z.ZodLiteral<"url">;
180
+ url: z.ZodString;
181
+ }, z.core.$strip>, z.ZodObject<{
182
+ type: z.ZodLiteral<"content">;
183
+ encoding: z.ZodUnion<readonly [z.ZodLiteral<"base64">, z.ZodLiteral<"utf-8">]>;
184
+ content: z.ZodString;
185
+ }, z.core.$strip>]>;
186
+ }, z.core.$strip>>>;
187
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
188
+ startedAt: z.ZodString;
189
+ durationMs: z.ZodNumber;
190
+ request: z.ZodObject<{
191
+ method: z.ZodString;
192
+ url: z.ZodString;
193
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
194
+ body: z.ZodOptional<z.ZodObject<{
195
+ contentType: z.ZodOptional<z.ZodString>;
196
+ text: z.ZodString;
197
+ truncated: z.ZodOptional<z.ZodBoolean>;
198
+ }, z.core.$strip>>;
199
+ }, z.core.$strip>;
200
+ response: z.ZodOptional<z.ZodObject<{
201
+ status: z.ZodNumber;
202
+ statusText: z.ZodOptional<z.ZodString>;
203
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
204
+ body: z.ZodOptional<z.ZodObject<{
205
+ contentType: z.ZodOptional<z.ZodString>;
206
+ text: z.ZodString;
207
+ truncated: z.ZodOptional<z.ZodBoolean>;
208
+ }, z.core.$strip>>;
209
+ }, z.core.$strip>>;
210
+ error: z.ZodOptional<z.ZodObject<{
211
+ code: z.ZodOptional<z.ZodString>;
212
+ message: z.ZodString;
213
+ }, z.core.$strip>>;
214
+ }, z.core.$strip>>>;
215
+ }, z.core.$strip>;
216
+ }, z.core.$strip>;
217
+ type SlatesMessageActionInvokeResponse = z.infer<typeof slatesMessageActionInvokeResponse>;
218
+ /**
219
+ * Map Trigger Event
220
+ */
221
+ declare let slatesMessageActionTriggerEventMapRequest: z.ZodObject<{
222
+ jsonrpc: z.ZodLiteral<"2.0">;
223
+ method: z.ZodLiteral<"slates/action.trigger.map_event">;
224
+ id: z.ZodString;
225
+ params: z.ZodObject<{
226
+ actionId: z.ZodString;
227
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
228
+ }, z.core.$strip>;
229
+ }, z.core.$strip>;
230
+ type SlatesMessageActionTriggerEventMapRequest = z.infer<typeof slatesMessageActionTriggerEventMapRequest>;
231
+ declare let slatesMessageActionTriggerEventMapResponse: z.ZodObject<{
232
+ jsonrpc: z.ZodLiteral<"2.0">;
233
+ id: z.ZodString;
234
+ result: z.ZodObject<{
235
+ type: z.ZodString;
236
+ id: z.ZodString;
237
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
238
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
239
+ startedAt: z.ZodString;
240
+ durationMs: z.ZodNumber;
241
+ request: z.ZodObject<{
242
+ method: z.ZodString;
243
+ url: z.ZodString;
244
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
245
+ body: z.ZodOptional<z.ZodObject<{
246
+ contentType: z.ZodOptional<z.ZodString>;
247
+ text: z.ZodString;
248
+ truncated: z.ZodOptional<z.ZodBoolean>;
249
+ }, z.core.$strip>>;
250
+ }, z.core.$strip>;
251
+ response: z.ZodOptional<z.ZodObject<{
252
+ status: z.ZodNumber;
253
+ statusText: z.ZodOptional<z.ZodString>;
254
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
255
+ body: z.ZodOptional<z.ZodObject<{
256
+ contentType: z.ZodOptional<z.ZodString>;
257
+ text: z.ZodString;
258
+ truncated: z.ZodOptional<z.ZodBoolean>;
259
+ }, z.core.$strip>>;
260
+ }, z.core.$strip>>;
261
+ error: z.ZodOptional<z.ZodObject<{
262
+ code: z.ZodOptional<z.ZodString>;
263
+ message: z.ZodString;
264
+ }, z.core.$strip>>;
265
+ }, z.core.$strip>>>;
266
+ }, z.core.$strip>;
267
+ }, z.core.$strip>;
268
+ type SlatesMessageActionTriggerEventMapResponse = z.infer<typeof slatesMessageActionTriggerEventMapResponse>;
269
+ /**
270
+ * Poll Trigger Events
271
+ */
272
+ declare let slatesMessageActionTriggerEventsPollRequest: z.ZodObject<{
273
+ jsonrpc: z.ZodLiteral<"2.0">;
274
+ method: z.ZodLiteral<"slates/action.trigger.poll_events">;
275
+ id: z.ZodString;
276
+ params: z.ZodObject<{
277
+ actionId: z.ZodString;
278
+ state: z.ZodNullable<z.ZodAny>;
279
+ }, z.core.$strip>;
280
+ }, z.core.$strip>;
281
+ type SlatesMessageActionTriggerEventsPollRequest = z.infer<typeof slatesMessageActionTriggerEventsPollRequest>;
282
+ declare let slatesMessageActionTriggerEventsPollResponse: z.ZodObject<{
283
+ jsonrpc: z.ZodLiteral<"2.0">;
284
+ id: z.ZodString;
285
+ result: z.ZodObject<{
286
+ inputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
287
+ updatedState: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
288
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
289
+ startedAt: z.ZodString;
290
+ durationMs: z.ZodNumber;
291
+ request: z.ZodObject<{
292
+ method: z.ZodString;
293
+ url: z.ZodString;
294
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
295
+ body: z.ZodOptional<z.ZodObject<{
296
+ contentType: z.ZodOptional<z.ZodString>;
297
+ text: z.ZodString;
298
+ truncated: z.ZodOptional<z.ZodBoolean>;
299
+ }, z.core.$strip>>;
300
+ }, z.core.$strip>;
301
+ response: z.ZodOptional<z.ZodObject<{
302
+ status: z.ZodNumber;
303
+ statusText: z.ZodOptional<z.ZodString>;
304
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
305
+ body: z.ZodOptional<z.ZodObject<{
306
+ contentType: z.ZodOptional<z.ZodString>;
307
+ text: z.ZodString;
308
+ truncated: z.ZodOptional<z.ZodBoolean>;
309
+ }, z.core.$strip>>;
310
+ }, z.core.$strip>>;
311
+ error: z.ZodOptional<z.ZodObject<{
312
+ code: z.ZodOptional<z.ZodString>;
313
+ message: z.ZodString;
314
+ }, z.core.$strip>>;
315
+ }, z.core.$strip>>>;
316
+ }, z.core.$strip>;
317
+ }, z.core.$strip>;
318
+ type SlatesMessageActionTriggerEventsPollResponse = z.infer<typeof slatesMessageActionTriggerEventsPollResponse>;
319
+ /**
320
+ * Handle Webhook Request
321
+ */
322
+ declare let slatesMessageActionTriggerWebhookHandleRequest: z.ZodObject<{
323
+ jsonrpc: z.ZodLiteral<"2.0">;
324
+ method: z.ZodLiteral<"slates/action.trigger.webhook_handle">;
325
+ id: z.ZodString;
326
+ params: z.ZodObject<{
327
+ actionId: z.ZodString;
328
+ url: z.ZodString;
329
+ method: z.ZodString;
330
+ headers: z.ZodRecord<z.ZodString, z.ZodString>;
331
+ body: z.ZodNullable<z.ZodObject<{
332
+ encoding: z.ZodLiteral<"base64">;
333
+ content: z.ZodString;
334
+ }, z.core.$strip>>;
335
+ state: z.ZodNullable<z.ZodAny>;
336
+ }, z.core.$strip>;
337
+ }, z.core.$strip>;
338
+ type SlatesMessageActionTriggerWebhookHandleRequest = z.infer<typeof slatesMessageActionTriggerWebhookHandleRequest>;
339
+ declare let slatesMessageActionTriggerWebhookHandleResponse: z.ZodObject<{
340
+ jsonrpc: z.ZodLiteral<"2.0">;
341
+ id: z.ZodString;
342
+ result: z.ZodObject<{
343
+ inputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
344
+ updatedState: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
345
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
346
+ startedAt: z.ZodString;
347
+ durationMs: z.ZodNumber;
348
+ request: z.ZodObject<{
349
+ method: z.ZodString;
350
+ url: z.ZodString;
351
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
352
+ body: z.ZodOptional<z.ZodObject<{
353
+ contentType: z.ZodOptional<z.ZodString>;
354
+ text: z.ZodString;
355
+ truncated: z.ZodOptional<z.ZodBoolean>;
356
+ }, z.core.$strip>>;
357
+ }, z.core.$strip>;
358
+ response: z.ZodOptional<z.ZodObject<{
359
+ status: z.ZodNumber;
360
+ statusText: z.ZodOptional<z.ZodString>;
361
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
362
+ body: z.ZodOptional<z.ZodObject<{
363
+ contentType: z.ZodOptional<z.ZodString>;
364
+ text: z.ZodString;
365
+ truncated: z.ZodOptional<z.ZodBoolean>;
366
+ }, z.core.$strip>>;
367
+ }, z.core.$strip>>;
368
+ error: z.ZodOptional<z.ZodObject<{
369
+ code: z.ZodOptional<z.ZodString>;
370
+ message: z.ZodString;
371
+ }, z.core.$strip>>;
372
+ }, z.core.$strip>>>;
373
+ }, z.core.$strip>;
374
+ }, z.core.$strip>;
375
+ type SlatesMessageActionTriggerWebhookHandleResponse = z.infer<typeof slatesMessageActionTriggerWebhookHandleResponse>;
376
+ /**
377
+ * Handle Webhook Registration
378
+ */
379
+ declare let slatesMessageActionTriggerWebhookRegisterRequest: z.ZodObject<{
380
+ jsonrpc: z.ZodLiteral<"2.0">;
381
+ method: z.ZodLiteral<"slates/action.trigger.webhook_register">;
382
+ id: z.ZodString;
383
+ params: z.ZodObject<{
384
+ actionId: z.ZodString;
385
+ webhookBaseUrl: z.ZodString;
386
+ }, z.core.$strip>;
387
+ }, z.core.$strip>;
388
+ type SlatesMessageActionTriggerWebhookRegisterRequest = z.infer<typeof slatesMessageActionTriggerWebhookRegisterRequest>;
389
+ declare let slatesMessageActionTriggerWebhookRegisterResponse: z.ZodObject<{
390
+ jsonrpc: z.ZodLiteral<"2.0">;
391
+ id: z.ZodString;
392
+ result: z.ZodObject<{
393
+ registrationDetails: z.ZodAny;
394
+ state: z.ZodOptional<z.ZodAny>;
395
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
396
+ startedAt: z.ZodString;
397
+ durationMs: z.ZodNumber;
398
+ request: z.ZodObject<{
399
+ method: z.ZodString;
400
+ url: z.ZodString;
401
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
402
+ body: z.ZodOptional<z.ZodObject<{
403
+ contentType: z.ZodOptional<z.ZodString>;
404
+ text: z.ZodString;
405
+ truncated: z.ZodOptional<z.ZodBoolean>;
406
+ }, z.core.$strip>>;
407
+ }, z.core.$strip>;
408
+ response: z.ZodOptional<z.ZodObject<{
409
+ status: z.ZodNumber;
410
+ statusText: z.ZodOptional<z.ZodString>;
411
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
412
+ body: z.ZodOptional<z.ZodObject<{
413
+ contentType: z.ZodOptional<z.ZodString>;
414
+ text: z.ZodString;
415
+ truncated: z.ZodOptional<z.ZodBoolean>;
416
+ }, z.core.$strip>>;
417
+ }, z.core.$strip>>;
418
+ error: z.ZodOptional<z.ZodObject<{
419
+ code: z.ZodOptional<z.ZodString>;
420
+ message: z.ZodString;
421
+ }, z.core.$strip>>;
422
+ }, z.core.$strip>>>;
423
+ }, z.core.$strip>;
424
+ }, z.core.$strip>;
425
+ type SlatesMessageActionTriggerWebhookRegisterResponse = z.infer<typeof slatesMessageActionTriggerWebhookRegisterResponse>;
426
+ /**
427
+ * Handle Webhook Unregistration
428
+ */
429
+ declare let slatesMessageActionTriggerWebhookUnregisterRequest: z.ZodObject<{
430
+ jsonrpc: z.ZodLiteral<"2.0">;
431
+ method: z.ZodLiteral<"slates/action.trigger.webhook_unregister">;
432
+ id: z.ZodString;
433
+ params: z.ZodObject<{
434
+ actionId: z.ZodString;
435
+ webhookBaseUrl: z.ZodString;
436
+ registrationDetails: z.ZodAny;
437
+ state: z.ZodOptional<z.ZodAny>;
438
+ }, z.core.$strip>;
439
+ }, z.core.$strip>;
440
+ type SlatesMessageActionTriggerWebhookUnregisterRequest = z.infer<typeof slatesMessageActionTriggerWebhookUnregisterRequest>;
441
+ declare let slatesMessageActionTriggerWebhookUnregisterResponse: z.ZodObject<{
442
+ jsonrpc: z.ZodLiteral<"2.0">;
443
+ id: z.ZodString;
444
+ result: z.ZodObject<{
445
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
446
+ startedAt: z.ZodString;
447
+ durationMs: z.ZodNumber;
448
+ request: z.ZodObject<{
449
+ method: z.ZodString;
450
+ url: z.ZodString;
451
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
452
+ body: z.ZodOptional<z.ZodObject<{
453
+ contentType: z.ZodOptional<z.ZodString>;
454
+ text: z.ZodString;
455
+ truncated: z.ZodOptional<z.ZodBoolean>;
456
+ }, z.core.$strip>>;
457
+ }, z.core.$strip>;
458
+ response: z.ZodOptional<z.ZodObject<{
459
+ status: z.ZodNumber;
460
+ statusText: z.ZodOptional<z.ZodString>;
461
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
462
+ body: z.ZodOptional<z.ZodObject<{
463
+ contentType: z.ZodOptional<z.ZodString>;
464
+ text: z.ZodString;
465
+ truncated: z.ZodOptional<z.ZodBoolean>;
466
+ }, z.core.$strip>>;
467
+ }, z.core.$strip>>;
468
+ error: z.ZodOptional<z.ZodObject<{
469
+ code: z.ZodOptional<z.ZodString>;
470
+ message: z.ZodString;
471
+ }, z.core.$strip>>;
472
+ }, z.core.$strip>>>;
473
+ }, z.core.$strip>;
474
+ }, z.core.$strip>;
475
+ type SlatesMessageActionTriggerWebhookUnregisterResponse = z.infer<typeof slatesMessageActionTriggerWebhookUnregisterResponse>;
476
+ type SlatesActionRequests = SlatesMessageActionsListRequest | SlatesMessageActionGetRequest | SlatesMessageActionInvokeRequest | SlatesMessageActionTriggerEventMapRequest | SlatesMessageActionTriggerEventsPollRequest | SlatesMessageActionTriggerWebhookHandleRequest | SlatesMessageActionTriggerWebhookRegisterRequest | SlatesMessageActionTriggerWebhookUnregisterRequest;
477
+ type SlatesActionResponses = SlatesMessageActionsListResponse | SlatesMessageActionGetResponse | SlatesMessageActionInvokeResponse | SlatesMessageActionTriggerEventMapResponse | SlatesMessageActionTriggerEventsPollResponse | SlatesMessageActionTriggerWebhookHandleResponse | SlatesMessageActionTriggerWebhookRegisterResponse | SlatesMessageActionTriggerWebhookUnregisterResponse;
478
+ declare let slatesActionResponsesByMethod: {
479
+ 'slates/actions.list': z.ZodObject<{
480
+ jsonrpc: z.ZodLiteral<"2.0">;
481
+ id: z.ZodString;
482
+ result: z.ZodObject<{
483
+ actions: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
484
+ id: z.ZodString;
485
+ name: z.ZodString;
486
+ description: z.ZodOptional<z.ZodString>;
487
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
488
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
489
+ tags: z.ZodOptional<z.ZodObject<{
490
+ destructive: z.ZodOptional<z.ZodBoolean>;
491
+ readOnly: z.ZodOptional<z.ZodBoolean>;
492
+ }, z.core.$strip>>;
493
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
494
+ scopes: z.ZodOptional<z.ZodObject<{
495
+ AND: z.ZodArray<z.ZodObject<{
496
+ OR: z.ZodArray<z.ZodString>;
497
+ }, z.core.$strip>>;
498
+ }, z.core.$strip>>;
499
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
500
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
501
+ docs: z.ZodArray<z.ZodObject<{
502
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
503
+ name: z.ZodString;
504
+ url: z.ZodString;
505
+ }, z.core.$strip>>;
506
+ type: z.ZodLiteral<"action.tool">;
507
+ capabilities: z.ZodObject<{}, z.core.$strip>;
508
+ }, z.core.$strip>, z.ZodObject<{
509
+ id: z.ZodString;
510
+ name: z.ZodString;
511
+ description: z.ZodOptional<z.ZodString>;
512
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
513
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
514
+ tags: z.ZodOptional<z.ZodObject<{
515
+ destructive: z.ZodOptional<z.ZodBoolean>;
516
+ readOnly: z.ZodOptional<z.ZodBoolean>;
517
+ }, z.core.$strip>>;
518
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
519
+ scopes: z.ZodOptional<z.ZodObject<{
520
+ AND: z.ZodArray<z.ZodObject<{
521
+ OR: z.ZodArray<z.ZodString>;
522
+ }, z.core.$strip>>;
523
+ }, z.core.$strip>>;
524
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
525
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
526
+ docs: z.ZodArray<z.ZodObject<{
527
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
528
+ name: z.ZodString;
529
+ url: z.ZodString;
530
+ }, z.core.$strip>>;
531
+ type: z.ZodLiteral<"action.trigger">;
532
+ capabilities: z.ZodObject<{}, z.core.$strip>;
533
+ invocation: z.ZodUnion<readonly [z.ZodObject<{
534
+ type: z.ZodLiteral<"polling">;
535
+ intervalSeconds: z.ZodNumber;
536
+ }, z.core.$strip>, z.ZodObject<{
537
+ type: z.ZodLiteral<"webhook">;
538
+ autoRegistration: z.ZodBoolean;
539
+ autoUnregistration: z.ZodBoolean;
540
+ }, z.core.$strip>]>;
541
+ }, z.core.$strip>]>>;
542
+ }, z.core.$strip>;
543
+ }, z.core.$strip>;
544
+ 'slates/action.get': z.ZodObject<{
545
+ jsonrpc: z.ZodLiteral<"2.0">;
546
+ id: z.ZodString;
547
+ result: z.ZodObject<{
548
+ action: z.ZodUnion<readonly [z.ZodObject<{
549
+ id: z.ZodString;
550
+ name: z.ZodString;
551
+ description: z.ZodOptional<z.ZodString>;
552
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
553
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
554
+ tags: z.ZodOptional<z.ZodObject<{
555
+ destructive: z.ZodOptional<z.ZodBoolean>;
556
+ readOnly: z.ZodOptional<z.ZodBoolean>;
557
+ }, z.core.$strip>>;
558
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
559
+ scopes: z.ZodOptional<z.ZodObject<{
560
+ AND: z.ZodArray<z.ZodObject<{
561
+ OR: z.ZodArray<z.ZodString>;
562
+ }, z.core.$strip>>;
563
+ }, z.core.$strip>>;
564
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
565
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
566
+ docs: z.ZodArray<z.ZodObject<{
567
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
568
+ name: z.ZodString;
569
+ url: z.ZodString;
570
+ }, z.core.$strip>>;
571
+ type: z.ZodLiteral<"action.tool">;
572
+ capabilities: z.ZodObject<{}, z.core.$strip>;
573
+ }, z.core.$strip>, z.ZodObject<{
574
+ id: z.ZodString;
575
+ name: z.ZodString;
576
+ description: z.ZodOptional<z.ZodString>;
577
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
578
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
579
+ tags: z.ZodOptional<z.ZodObject<{
580
+ destructive: z.ZodOptional<z.ZodBoolean>;
581
+ readOnly: z.ZodOptional<z.ZodBoolean>;
582
+ }, z.core.$strip>>;
583
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
584
+ scopes: z.ZodOptional<z.ZodObject<{
585
+ AND: z.ZodArray<z.ZodObject<{
586
+ OR: z.ZodArray<z.ZodString>;
587
+ }, z.core.$strip>>;
588
+ }, z.core.$strip>>;
589
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
590
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
591
+ docs: z.ZodArray<z.ZodObject<{
592
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
593
+ name: z.ZodString;
594
+ url: z.ZodString;
595
+ }, z.core.$strip>>;
596
+ type: z.ZodLiteral<"action.trigger">;
597
+ capabilities: z.ZodObject<{}, z.core.$strip>;
598
+ invocation: z.ZodUnion<readonly [z.ZodObject<{
599
+ type: z.ZodLiteral<"polling">;
600
+ intervalSeconds: z.ZodNumber;
601
+ }, z.core.$strip>, z.ZodObject<{
602
+ type: z.ZodLiteral<"webhook">;
603
+ autoRegistration: z.ZodBoolean;
604
+ autoUnregistration: z.ZodBoolean;
605
+ }, z.core.$strip>]>;
606
+ }, z.core.$strip>]>;
607
+ }, z.core.$strip>;
608
+ }, z.core.$strip>;
609
+ 'slates/action.tool.invoke': z.ZodObject<{
610
+ jsonrpc: z.ZodLiteral<"2.0">;
611
+ id: z.ZodString;
612
+ result: z.ZodObject<{
613
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
614
+ message: z.ZodOptional<z.ZodString>;
615
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
616
+ mimeType: z.ZodOptional<z.ZodString>;
617
+ content: z.ZodUnion<readonly [z.ZodObject<{
618
+ type: z.ZodLiteral<"url">;
619
+ url: z.ZodString;
620
+ }, z.core.$strip>, z.ZodObject<{
621
+ type: z.ZodLiteral<"content">;
622
+ encoding: z.ZodUnion<readonly [z.ZodLiteral<"base64">, z.ZodLiteral<"utf-8">]>;
623
+ content: z.ZodString;
624
+ }, z.core.$strip>]>;
625
+ }, z.core.$strip>>>;
626
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
627
+ startedAt: z.ZodString;
628
+ durationMs: z.ZodNumber;
629
+ request: z.ZodObject<{
630
+ method: z.ZodString;
631
+ url: z.ZodString;
632
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
633
+ body: z.ZodOptional<z.ZodObject<{
634
+ contentType: z.ZodOptional<z.ZodString>;
635
+ text: z.ZodString;
636
+ truncated: z.ZodOptional<z.ZodBoolean>;
637
+ }, z.core.$strip>>;
638
+ }, z.core.$strip>;
639
+ response: z.ZodOptional<z.ZodObject<{
640
+ status: z.ZodNumber;
641
+ statusText: z.ZodOptional<z.ZodString>;
642
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
643
+ body: z.ZodOptional<z.ZodObject<{
644
+ contentType: z.ZodOptional<z.ZodString>;
645
+ text: z.ZodString;
646
+ truncated: z.ZodOptional<z.ZodBoolean>;
647
+ }, z.core.$strip>>;
648
+ }, z.core.$strip>>;
649
+ error: z.ZodOptional<z.ZodObject<{
650
+ code: z.ZodOptional<z.ZodString>;
651
+ message: z.ZodString;
652
+ }, z.core.$strip>>;
653
+ }, z.core.$strip>>>;
654
+ }, z.core.$strip>;
655
+ }, z.core.$strip>;
656
+ 'slates/action.trigger.map_event': z.ZodObject<{
657
+ jsonrpc: z.ZodLiteral<"2.0">;
658
+ id: z.ZodString;
659
+ result: z.ZodObject<{
660
+ type: z.ZodString;
661
+ id: z.ZodString;
662
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
663
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
664
+ startedAt: z.ZodString;
665
+ durationMs: z.ZodNumber;
666
+ request: z.ZodObject<{
667
+ method: z.ZodString;
668
+ url: z.ZodString;
669
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
670
+ body: z.ZodOptional<z.ZodObject<{
671
+ contentType: z.ZodOptional<z.ZodString>;
672
+ text: z.ZodString;
673
+ truncated: z.ZodOptional<z.ZodBoolean>;
674
+ }, z.core.$strip>>;
675
+ }, z.core.$strip>;
676
+ response: z.ZodOptional<z.ZodObject<{
677
+ status: z.ZodNumber;
678
+ statusText: z.ZodOptional<z.ZodString>;
679
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
680
+ body: z.ZodOptional<z.ZodObject<{
681
+ contentType: z.ZodOptional<z.ZodString>;
682
+ text: z.ZodString;
683
+ truncated: z.ZodOptional<z.ZodBoolean>;
684
+ }, z.core.$strip>>;
685
+ }, z.core.$strip>>;
686
+ error: z.ZodOptional<z.ZodObject<{
687
+ code: z.ZodOptional<z.ZodString>;
688
+ message: z.ZodString;
689
+ }, z.core.$strip>>;
690
+ }, z.core.$strip>>>;
691
+ }, z.core.$strip>;
692
+ }, z.core.$strip>;
693
+ 'slates/action.trigger.poll_events': z.ZodObject<{
694
+ jsonrpc: z.ZodLiteral<"2.0">;
695
+ id: z.ZodString;
696
+ result: z.ZodObject<{
697
+ inputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
698
+ updatedState: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
699
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
700
+ startedAt: z.ZodString;
701
+ durationMs: z.ZodNumber;
702
+ request: z.ZodObject<{
703
+ method: z.ZodString;
704
+ url: z.ZodString;
705
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
706
+ body: z.ZodOptional<z.ZodObject<{
707
+ contentType: z.ZodOptional<z.ZodString>;
708
+ text: z.ZodString;
709
+ truncated: z.ZodOptional<z.ZodBoolean>;
710
+ }, z.core.$strip>>;
711
+ }, z.core.$strip>;
712
+ response: z.ZodOptional<z.ZodObject<{
713
+ status: z.ZodNumber;
714
+ statusText: z.ZodOptional<z.ZodString>;
715
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
716
+ body: z.ZodOptional<z.ZodObject<{
717
+ contentType: z.ZodOptional<z.ZodString>;
718
+ text: z.ZodString;
719
+ truncated: z.ZodOptional<z.ZodBoolean>;
720
+ }, z.core.$strip>>;
721
+ }, z.core.$strip>>;
722
+ error: z.ZodOptional<z.ZodObject<{
723
+ code: z.ZodOptional<z.ZodString>;
724
+ message: z.ZodString;
725
+ }, z.core.$strip>>;
726
+ }, z.core.$strip>>>;
727
+ }, z.core.$strip>;
728
+ }, z.core.$strip>;
729
+ 'slates/action.trigger.webhook_handle': z.ZodObject<{
730
+ jsonrpc: z.ZodLiteral<"2.0">;
731
+ id: z.ZodString;
732
+ result: z.ZodObject<{
733
+ inputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
734
+ updatedState: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
735
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
736
+ startedAt: z.ZodString;
737
+ durationMs: z.ZodNumber;
738
+ request: z.ZodObject<{
739
+ method: z.ZodString;
740
+ url: z.ZodString;
741
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
742
+ body: z.ZodOptional<z.ZodObject<{
743
+ contentType: z.ZodOptional<z.ZodString>;
744
+ text: z.ZodString;
745
+ truncated: z.ZodOptional<z.ZodBoolean>;
746
+ }, z.core.$strip>>;
747
+ }, z.core.$strip>;
748
+ response: z.ZodOptional<z.ZodObject<{
749
+ status: z.ZodNumber;
750
+ statusText: z.ZodOptional<z.ZodString>;
751
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
752
+ body: z.ZodOptional<z.ZodObject<{
753
+ contentType: z.ZodOptional<z.ZodString>;
754
+ text: z.ZodString;
755
+ truncated: z.ZodOptional<z.ZodBoolean>;
756
+ }, z.core.$strip>>;
757
+ }, z.core.$strip>>;
758
+ error: z.ZodOptional<z.ZodObject<{
759
+ code: z.ZodOptional<z.ZodString>;
760
+ message: z.ZodString;
761
+ }, z.core.$strip>>;
762
+ }, z.core.$strip>>>;
763
+ }, z.core.$strip>;
764
+ }, z.core.$strip>;
765
+ 'slates/action.trigger.webhook_register': z.ZodObject<{
766
+ jsonrpc: z.ZodLiteral<"2.0">;
767
+ id: z.ZodString;
768
+ result: z.ZodObject<{
769
+ registrationDetails: z.ZodAny;
770
+ state: z.ZodOptional<z.ZodAny>;
771
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
772
+ startedAt: z.ZodString;
773
+ durationMs: z.ZodNumber;
774
+ request: z.ZodObject<{
775
+ method: z.ZodString;
776
+ url: z.ZodString;
777
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
778
+ body: z.ZodOptional<z.ZodObject<{
779
+ contentType: z.ZodOptional<z.ZodString>;
780
+ text: z.ZodString;
781
+ truncated: z.ZodOptional<z.ZodBoolean>;
782
+ }, z.core.$strip>>;
783
+ }, z.core.$strip>;
784
+ response: z.ZodOptional<z.ZodObject<{
785
+ status: z.ZodNumber;
786
+ statusText: z.ZodOptional<z.ZodString>;
787
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
788
+ body: z.ZodOptional<z.ZodObject<{
789
+ contentType: z.ZodOptional<z.ZodString>;
790
+ text: z.ZodString;
791
+ truncated: z.ZodOptional<z.ZodBoolean>;
792
+ }, z.core.$strip>>;
793
+ }, z.core.$strip>>;
794
+ error: z.ZodOptional<z.ZodObject<{
795
+ code: z.ZodOptional<z.ZodString>;
796
+ message: z.ZodString;
797
+ }, z.core.$strip>>;
798
+ }, z.core.$strip>>>;
799
+ }, z.core.$strip>;
800
+ }, z.core.$strip>;
801
+ 'slates/action.trigger.webhook_unregister': z.ZodObject<{
802
+ jsonrpc: z.ZodLiteral<"2.0">;
803
+ id: z.ZodString;
804
+ result: z.ZodObject<{
805
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
806
+ startedAt: z.ZodString;
807
+ durationMs: z.ZodNumber;
808
+ request: z.ZodObject<{
809
+ method: z.ZodString;
810
+ url: z.ZodString;
811
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
812
+ body: z.ZodOptional<z.ZodObject<{
813
+ contentType: z.ZodOptional<z.ZodString>;
814
+ text: z.ZodString;
815
+ truncated: z.ZodOptional<z.ZodBoolean>;
816
+ }, z.core.$strip>>;
817
+ }, z.core.$strip>;
818
+ response: z.ZodOptional<z.ZodObject<{
819
+ status: z.ZodNumber;
820
+ statusText: z.ZodOptional<z.ZodString>;
821
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
822
+ body: z.ZodOptional<z.ZodObject<{
823
+ contentType: z.ZodOptional<z.ZodString>;
824
+ text: z.ZodString;
825
+ truncated: z.ZodOptional<z.ZodBoolean>;
826
+ }, z.core.$strip>>;
827
+ }, z.core.$strip>>;
828
+ error: z.ZodOptional<z.ZodObject<{
829
+ code: z.ZodOptional<z.ZodString>;
830
+ message: z.ZodString;
831
+ }, z.core.$strip>>;
832
+ }, z.core.$strip>>>;
833
+ }, z.core.$strip>;
834
+ }, z.core.$strip>;
835
+ };
836
+ declare let slatesActionRequestsByMethod: {
837
+ 'slates/actions.list': z.ZodObject<{
838
+ jsonrpc: z.ZodLiteral<"2.0">;
839
+ method: z.ZodLiteral<"slates/actions.list">;
840
+ id: z.ZodString;
841
+ params: z.ZodObject<{}, z.core.$strip>;
842
+ }, z.core.$strip>;
843
+ 'slates/action.get': z.ZodObject<{
844
+ jsonrpc: z.ZodLiteral<"2.0">;
845
+ method: z.ZodLiteral<"slates/action.get">;
846
+ id: z.ZodString;
847
+ params: z.ZodObject<{
848
+ actionId: z.ZodString;
849
+ }, z.core.$strip>;
850
+ }, z.core.$strip>;
851
+ 'slates/action.tool.invoke': z.ZodObject<{
852
+ jsonrpc: z.ZodLiteral<"2.0">;
853
+ method: z.ZodLiteral<"slates/action.tool.invoke">;
854
+ id: z.ZodString;
855
+ params: z.ZodObject<{
856
+ actionId: z.ZodString;
857
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
858
+ }, z.core.$strip>;
859
+ }, z.core.$strip>;
860
+ 'slates/action.trigger.map_event': z.ZodObject<{
861
+ jsonrpc: z.ZodLiteral<"2.0">;
862
+ method: z.ZodLiteral<"slates/action.trigger.map_event">;
863
+ id: z.ZodString;
864
+ params: z.ZodObject<{
865
+ actionId: z.ZodString;
866
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
867
+ }, z.core.$strip>;
868
+ }, z.core.$strip>;
869
+ 'slates/action.trigger.poll_events': z.ZodObject<{
870
+ jsonrpc: z.ZodLiteral<"2.0">;
871
+ method: z.ZodLiteral<"slates/action.trigger.poll_events">;
872
+ id: z.ZodString;
873
+ params: z.ZodObject<{
874
+ actionId: z.ZodString;
875
+ state: z.ZodNullable<z.ZodAny>;
876
+ }, z.core.$strip>;
877
+ }, z.core.$strip>;
878
+ 'slates/action.trigger.webhook_handle': z.ZodObject<{
879
+ jsonrpc: z.ZodLiteral<"2.0">;
880
+ method: z.ZodLiteral<"slates/action.trigger.webhook_handle">;
881
+ id: z.ZodString;
882
+ params: z.ZodObject<{
883
+ actionId: z.ZodString;
884
+ url: z.ZodString;
885
+ method: z.ZodString;
886
+ headers: z.ZodRecord<z.ZodString, z.ZodString>;
887
+ body: z.ZodNullable<z.ZodObject<{
888
+ encoding: z.ZodLiteral<"base64">;
889
+ content: z.ZodString;
890
+ }, z.core.$strip>>;
891
+ state: z.ZodNullable<z.ZodAny>;
892
+ }, z.core.$strip>;
893
+ }, z.core.$strip>;
894
+ 'slates/action.trigger.webhook_register': z.ZodObject<{
895
+ jsonrpc: z.ZodLiteral<"2.0">;
896
+ method: z.ZodLiteral<"slates/action.trigger.webhook_register">;
897
+ id: z.ZodString;
898
+ params: z.ZodObject<{
899
+ actionId: z.ZodString;
900
+ webhookBaseUrl: z.ZodString;
901
+ }, z.core.$strip>;
902
+ }, z.core.$strip>;
903
+ 'slates/action.trigger.webhook_unregister': z.ZodObject<{
904
+ jsonrpc: z.ZodLiteral<"2.0">;
905
+ method: z.ZodLiteral<"slates/action.trigger.webhook_unregister">;
906
+ id: z.ZodString;
907
+ params: z.ZodObject<{
908
+ actionId: z.ZodString;
909
+ webhookBaseUrl: z.ZodString;
910
+ registrationDetails: z.ZodAny;
911
+ state: z.ZodOptional<z.ZodAny>;
912
+ }, z.core.$strip>;
913
+ }, z.core.$strip>;
914
+ };
915
+
916
+ /**
917
+ * Set Authentication
918
+ */
919
+ declare let slatesMessageSetAuthNotification: z.ZodObject<{
920
+ jsonrpc: z.ZodLiteral<"2.0">;
921
+ method: z.ZodLiteral<"slates/auth.set">;
922
+ params: z.ZodObject<{
923
+ authenticationMethodId: z.ZodString;
924
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
925
+ }, z.core.$strip>;
926
+ }, z.core.$strip>;
927
+ type SlatesMessageSetAuthNotification = z.infer<typeof slatesMessageSetAuthNotification>;
928
+ /**
929
+ * List Authentication Methods
930
+ */
931
+ declare let slatesMessageAuthMethodsListRequest: z.ZodObject<{
932
+ jsonrpc: z.ZodLiteral<"2.0">;
933
+ method: z.ZodLiteral<"slates/auth.methods.list">;
934
+ id: z.ZodString;
935
+ params: z.ZodObject<{}, z.core.$strip>;
936
+ }, z.core.$strip>;
937
+ type SlatesMessageAuthMethodsListRequest = z.infer<typeof slatesMessageAuthMethodsListRequest>;
938
+ declare let slatesMessageAuthMethodsListResponse: z.ZodObject<{
939
+ jsonrpc: z.ZodLiteral<"2.0">;
940
+ id: z.ZodString;
941
+ result: z.ZodObject<{
942
+ authenticationMethods: z.ZodArray<z.ZodObject<{
943
+ id: z.ZodString;
944
+ name: z.ZodString;
945
+ type: z.ZodUnion<readonly [z.ZodLiteral<"auth.oauth">, z.ZodLiteral<"auth.token">, z.ZodLiteral<"auth.service_account">, z.ZodLiteral<"auth.custom">]>;
946
+ scopes: z.ZodOptional<z.ZodArray<z.ZodObject<{
947
+ id: z.ZodString;
948
+ title: z.ZodString;
949
+ description: z.ZodOptional<z.ZodString>;
950
+ defaultChecked: z.ZodOptional<z.ZodBoolean>;
951
+ }, z.core.$strip>>>;
952
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
953
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
954
+ capabilities: z.ZodObject<{
955
+ getDefaultInput: z.ZodOptional<z.ZodObject<{
956
+ enabled: z.ZodBoolean;
957
+ }, z.core.$strip>>;
958
+ handleChangedInput: z.ZodOptional<z.ZodObject<{
959
+ enabled: z.ZodBoolean;
960
+ }, z.core.$strip>>;
961
+ handleTokenRefresh: z.ZodOptional<z.ZodObject<{
962
+ enabled: z.ZodBoolean;
963
+ }, z.core.$strip>>;
964
+ getProfile: z.ZodOptional<z.ZodObject<{
965
+ enabled: z.ZodBoolean;
966
+ }, z.core.$strip>>;
967
+ }, z.core.$strip>;
968
+ docs: z.ZodArray<z.ZodObject<{
969
+ type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"docs.auth.oauth">, z.ZodLiteral<"docs.auth.oauth_scopes">, z.ZodLiteral<"docs.auth.token">, z.ZodLiteral<"docs.auth.service_account">, z.ZodLiteral<"docs.auth.custom">]>>;
970
+ name: z.ZodString;
971
+ url: z.ZodString;
972
+ }, z.core.$strip>>;
973
+ }, z.core.$strip>>;
974
+ }, z.core.$strip>;
975
+ }, z.core.$strip>;
976
+ type SlatesMessageAuthMethodsListResponse = z.infer<typeof slatesMessageAuthMethodsListResponse>;
977
+ /**
978
+ * Get Authentication Method
979
+ */
980
+ declare let slatesMessageAuthMethodGetRequest: z.ZodObject<{
981
+ jsonrpc: z.ZodLiteral<"2.0">;
982
+ method: z.ZodLiteral<"slates/auth.method.get">;
983
+ id: z.ZodString;
984
+ params: z.ZodObject<{
985
+ authenticationMethodId: z.ZodString;
986
+ }, z.core.$strip>;
987
+ }, z.core.$strip>;
988
+ type SlatesMessageAuthMethodGetRequest = z.infer<typeof slatesMessageAuthMethodGetRequest>;
989
+ declare let slatesMessageAuthMethodGetResponse: z.ZodObject<{
990
+ jsonrpc: z.ZodLiteral<"2.0">;
991
+ id: z.ZodString;
992
+ result: z.ZodObject<{
993
+ authenticationMethod: z.ZodObject<{
994
+ id: z.ZodString;
995
+ name: z.ZodString;
996
+ type: z.ZodUnion<readonly [z.ZodLiteral<"auth.oauth">, z.ZodLiteral<"auth.token">, z.ZodLiteral<"auth.service_account">, z.ZodLiteral<"auth.custom">]>;
997
+ scopes: z.ZodOptional<z.ZodArray<z.ZodObject<{
998
+ id: z.ZodString;
999
+ title: z.ZodString;
1000
+ description: z.ZodOptional<z.ZodString>;
1001
+ defaultChecked: z.ZodOptional<z.ZodBoolean>;
1002
+ }, z.core.$strip>>>;
1003
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
1004
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
1005
+ capabilities: z.ZodObject<{
1006
+ getDefaultInput: z.ZodOptional<z.ZodObject<{
1007
+ enabled: z.ZodBoolean;
1008
+ }, z.core.$strip>>;
1009
+ handleChangedInput: z.ZodOptional<z.ZodObject<{
1010
+ enabled: z.ZodBoolean;
1011
+ }, z.core.$strip>>;
1012
+ handleTokenRefresh: z.ZodOptional<z.ZodObject<{
1013
+ enabled: z.ZodBoolean;
1014
+ }, z.core.$strip>>;
1015
+ getProfile: z.ZodOptional<z.ZodObject<{
1016
+ enabled: z.ZodBoolean;
1017
+ }, z.core.$strip>>;
1018
+ }, z.core.$strip>;
1019
+ docs: z.ZodArray<z.ZodObject<{
1020
+ type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"docs.auth.oauth">, z.ZodLiteral<"docs.auth.oauth_scopes">, z.ZodLiteral<"docs.auth.token">, z.ZodLiteral<"docs.auth.service_account">, z.ZodLiteral<"docs.auth.custom">]>>;
1021
+ name: z.ZodString;
1022
+ url: z.ZodString;
1023
+ }, z.core.$strip>>;
1024
+ }, z.core.$strip>;
1025
+ }, z.core.$strip>;
1026
+ }, z.core.$strip>;
1027
+ type SlatesMessageAuthMethodGetResponse = z.infer<typeof slatesMessageAuthMethodGetResponse>;
1028
+ /**
1029
+ * Authentication Input Changed
1030
+ */
1031
+ declare let slatesMessageAuthInputChangedRequest: z.ZodObject<{
1032
+ jsonrpc: z.ZodLiteral<"2.0">;
1033
+ method: z.ZodLiteral<"slates/auth.input.changed">;
1034
+ id: z.ZodString;
1035
+ params: z.ZodObject<{
1036
+ authenticationMethodId: z.ZodString;
1037
+ previousInput: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
1038
+ newInput: z.ZodRecord<z.ZodString, z.ZodAny>;
1039
+ }, z.core.$strip>;
1040
+ }, z.core.$strip>;
1041
+ type SlatesMessageAuthInputChangedRequest = z.infer<typeof slatesMessageAuthInputChangedRequest>;
1042
+ declare let slatesMessageAuthInputChangedResponse: z.ZodObject<{
1043
+ jsonrpc: z.ZodLiteral<"2.0">;
1044
+ id: z.ZodString;
1045
+ result: z.ZodObject<{
1046
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1047
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1048
+ startedAt: z.ZodString;
1049
+ durationMs: z.ZodNumber;
1050
+ request: z.ZodObject<{
1051
+ method: z.ZodString;
1052
+ url: z.ZodString;
1053
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1054
+ body: z.ZodOptional<z.ZodObject<{
1055
+ contentType: z.ZodOptional<z.ZodString>;
1056
+ text: z.ZodString;
1057
+ truncated: z.ZodOptional<z.ZodBoolean>;
1058
+ }, z.core.$strip>>;
1059
+ }, z.core.$strip>;
1060
+ response: z.ZodOptional<z.ZodObject<{
1061
+ status: z.ZodNumber;
1062
+ statusText: z.ZodOptional<z.ZodString>;
1063
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1064
+ body: z.ZodOptional<z.ZodObject<{
1065
+ contentType: z.ZodOptional<z.ZodString>;
1066
+ text: z.ZodString;
1067
+ truncated: z.ZodOptional<z.ZodBoolean>;
1068
+ }, z.core.$strip>>;
1069
+ }, z.core.$strip>>;
1070
+ error: z.ZodOptional<z.ZodObject<{
1071
+ code: z.ZodOptional<z.ZodString>;
1072
+ message: z.ZodString;
1073
+ }, z.core.$strip>>;
1074
+ }, z.core.$strip>>>;
1075
+ }, z.core.$strip>;
1076
+ }, z.core.$strip>;
1077
+ type SlatesMessageAuthInputChangedResponse = z.infer<typeof slatesMessageAuthInputChangedResponse>;
1078
+ /**
1079
+ * Get Default Inputs
1080
+ */
1081
+ declare let slatesMessageAuthDefaultInputGetRequest: z.ZodObject<{
1082
+ jsonrpc: z.ZodLiteral<"2.0">;
1083
+ method: z.ZodLiteral<"slates/auth.input.get_default">;
1084
+ id: z.ZodString;
1085
+ params: z.ZodObject<{
1086
+ authenticationMethodId: z.ZodString;
1087
+ }, z.core.$strip>;
1088
+ }, z.core.$strip>;
1089
+ type SlatesMessageAuthDefaultInputGetRequest = z.infer<typeof slatesMessageAuthDefaultInputGetRequest>;
1090
+ declare let slatesMessageAuthDefaultInputGetResponse: z.ZodObject<{
1091
+ jsonrpc: z.ZodLiteral<"2.0">;
1092
+ id: z.ZodString;
1093
+ result: z.ZodObject<{
1094
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1095
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1096
+ startedAt: z.ZodString;
1097
+ durationMs: z.ZodNumber;
1098
+ request: z.ZodObject<{
1099
+ method: z.ZodString;
1100
+ url: z.ZodString;
1101
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1102
+ body: z.ZodOptional<z.ZodObject<{
1103
+ contentType: z.ZodOptional<z.ZodString>;
1104
+ text: z.ZodString;
1105
+ truncated: z.ZodOptional<z.ZodBoolean>;
1106
+ }, z.core.$strip>>;
1107
+ }, z.core.$strip>;
1108
+ response: z.ZodOptional<z.ZodObject<{
1109
+ status: z.ZodNumber;
1110
+ statusText: z.ZodOptional<z.ZodString>;
1111
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1112
+ body: z.ZodOptional<z.ZodObject<{
1113
+ contentType: z.ZodOptional<z.ZodString>;
1114
+ text: z.ZodString;
1115
+ truncated: z.ZodOptional<z.ZodBoolean>;
1116
+ }, z.core.$strip>>;
1117
+ }, z.core.$strip>>;
1118
+ error: z.ZodOptional<z.ZodObject<{
1119
+ code: z.ZodOptional<z.ZodString>;
1120
+ message: z.ZodString;
1121
+ }, z.core.$strip>>;
1122
+ }, z.core.$strip>>>;
1123
+ }, z.core.$strip>;
1124
+ }, z.core.$strip>;
1125
+ type SlatesMessageAuthDefaultInputGetResponse = z.infer<typeof slatesMessageAuthDefaultInputGetResponse>;
1126
+ /**
1127
+ * Get Authorization Url
1128
+ */
1129
+ declare let slatesMessageAuthAuthorizationUrlGetRequest: z.ZodObject<{
1130
+ jsonrpc: z.ZodLiteral<"2.0">;
1131
+ method: z.ZodLiteral<"slates/auth.authorization_url.get">;
1132
+ id: z.ZodString;
1133
+ params: z.ZodObject<{
1134
+ authenticationMethodId: z.ZodString;
1135
+ redirectUri: z.ZodString;
1136
+ state: z.ZodString;
1137
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1138
+ clientId: z.ZodString;
1139
+ clientSecret: z.ZodString;
1140
+ scopes: z.ZodArray<z.ZodString>;
1141
+ }, z.core.$strip>;
1142
+ }, z.core.$strip>;
1143
+ type SlatesMessageAuthAuthorizationUrlGetRequest = z.infer<typeof slatesMessageAuthAuthorizationUrlGetRequest>;
1144
+ declare let slatesMessageAuthAuthorizationUrlGetResponse: z.ZodObject<{
1145
+ jsonrpc: z.ZodLiteral<"2.0">;
1146
+ id: z.ZodString;
1147
+ result: z.ZodObject<{
1148
+ authorizationUrl: z.ZodString;
1149
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1150
+ callbackState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1151
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1152
+ startedAt: z.ZodString;
1153
+ durationMs: z.ZodNumber;
1154
+ request: z.ZodObject<{
1155
+ method: z.ZodString;
1156
+ url: z.ZodString;
1157
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1158
+ body: z.ZodOptional<z.ZodObject<{
1159
+ contentType: z.ZodOptional<z.ZodString>;
1160
+ text: z.ZodString;
1161
+ truncated: z.ZodOptional<z.ZodBoolean>;
1162
+ }, z.core.$strip>>;
1163
+ }, z.core.$strip>;
1164
+ response: z.ZodOptional<z.ZodObject<{
1165
+ status: z.ZodNumber;
1166
+ statusText: z.ZodOptional<z.ZodString>;
1167
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1168
+ body: z.ZodOptional<z.ZodObject<{
1169
+ contentType: z.ZodOptional<z.ZodString>;
1170
+ text: z.ZodString;
1171
+ truncated: z.ZodOptional<z.ZodBoolean>;
1172
+ }, z.core.$strip>>;
1173
+ }, z.core.$strip>>;
1174
+ error: z.ZodOptional<z.ZodObject<{
1175
+ code: z.ZodOptional<z.ZodString>;
1176
+ message: z.ZodString;
1177
+ }, z.core.$strip>>;
1178
+ }, z.core.$strip>>>;
1179
+ }, z.core.$strip>;
1180
+ }, z.core.$strip>;
1181
+ type SlatesMessageAuthAuthorizationUrlGetResponse = z.infer<typeof slatesMessageAuthAuthorizationUrlGetResponse>;
1182
+ /**
1183
+ * Handle Authorization Callback
1184
+ */
1185
+ declare let slatesMessageAuthAuthorizationCallbackHandleRequest: z.ZodObject<{
1186
+ jsonrpc: z.ZodLiteral<"2.0">;
1187
+ method: z.ZodLiteral<"slates/auth.authorization_callback.handle">;
1188
+ id: z.ZodString;
1189
+ params: z.ZodObject<{
1190
+ authenticationMethodId: z.ZodString;
1191
+ code: z.ZodString;
1192
+ state: z.ZodString;
1193
+ redirectUri: z.ZodString;
1194
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1195
+ clientId: z.ZodString;
1196
+ clientSecret: z.ZodString;
1197
+ scopes: z.ZodArray<z.ZodString>;
1198
+ callbackParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1199
+ callbackState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1200
+ }, z.core.$strip>;
1201
+ }, z.core.$strip>;
1202
+ type SlatesMessageAuthAuthorizationCallbackHandleRequest = z.infer<typeof slatesMessageAuthAuthorizationCallbackHandleRequest>;
1203
+ declare let slatesMessageAuthAuthorizationCallbackHandleResponse: z.ZodObject<{
1204
+ jsonrpc: z.ZodLiteral<"2.0">;
1205
+ id: z.ZodString;
1206
+ result: z.ZodObject<{
1207
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1208
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1209
+ scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
1210
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1211
+ startedAt: z.ZodString;
1212
+ durationMs: z.ZodNumber;
1213
+ request: z.ZodObject<{
1214
+ method: z.ZodString;
1215
+ url: z.ZodString;
1216
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1217
+ body: z.ZodOptional<z.ZodObject<{
1218
+ contentType: z.ZodOptional<z.ZodString>;
1219
+ text: z.ZodString;
1220
+ truncated: z.ZodOptional<z.ZodBoolean>;
1221
+ }, z.core.$strip>>;
1222
+ }, z.core.$strip>;
1223
+ response: z.ZodOptional<z.ZodObject<{
1224
+ status: z.ZodNumber;
1225
+ statusText: z.ZodOptional<z.ZodString>;
1226
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1227
+ body: z.ZodOptional<z.ZodObject<{
1228
+ contentType: z.ZodOptional<z.ZodString>;
1229
+ text: z.ZodString;
1230
+ truncated: z.ZodOptional<z.ZodBoolean>;
1231
+ }, z.core.$strip>>;
1232
+ }, z.core.$strip>>;
1233
+ error: z.ZodOptional<z.ZodObject<{
1234
+ code: z.ZodOptional<z.ZodString>;
1235
+ message: z.ZodString;
1236
+ }, z.core.$strip>>;
1237
+ }, z.core.$strip>>>;
1238
+ }, z.core.$strip>;
1239
+ }, z.core.$strip>;
1240
+ type SlatesMessageAuthAuthorizationCallbackHandleResponse = z.infer<typeof slatesMessageAuthAuthorizationCallbackHandleResponse>;
1241
+ /**
1242
+ * Handle Token Refresh
1243
+ */
1244
+ declare let slatesMessageAuthTokenRefreshHandleRequest: z.ZodObject<{
1245
+ jsonrpc: z.ZodLiteral<"2.0">;
1246
+ method: z.ZodLiteral<"slates/auth.token_refresh.handle">;
1247
+ id: z.ZodString;
1248
+ params: z.ZodObject<{
1249
+ authenticationMethodId: z.ZodString;
1250
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1251
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1252
+ clientId: z.ZodString;
1253
+ clientSecret: z.ZodString;
1254
+ scopes: z.ZodArray<z.ZodString>;
1255
+ }, z.core.$strip>;
1256
+ }, z.core.$strip>;
1257
+ type SlatesMessageAuthTokenRefreshHandleRequest = z.infer<typeof slatesMessageAuthTokenRefreshHandleRequest>;
1258
+ declare let slatesMessageAuthTokenRefreshHandleResponse: z.ZodObject<{
1259
+ jsonrpc: z.ZodLiteral<"2.0">;
1260
+ id: z.ZodString;
1261
+ result: z.ZodObject<{
1262
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1263
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1264
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1265
+ startedAt: z.ZodString;
1266
+ durationMs: z.ZodNumber;
1267
+ request: z.ZodObject<{
1268
+ method: z.ZodString;
1269
+ url: z.ZodString;
1270
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1271
+ body: z.ZodOptional<z.ZodObject<{
1272
+ contentType: z.ZodOptional<z.ZodString>;
1273
+ text: z.ZodString;
1274
+ truncated: z.ZodOptional<z.ZodBoolean>;
1275
+ }, z.core.$strip>>;
1276
+ }, z.core.$strip>;
1277
+ response: z.ZodOptional<z.ZodObject<{
1278
+ status: z.ZodNumber;
1279
+ statusText: z.ZodOptional<z.ZodString>;
1280
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1281
+ body: z.ZodOptional<z.ZodObject<{
1282
+ contentType: z.ZodOptional<z.ZodString>;
1283
+ text: z.ZodString;
1284
+ truncated: z.ZodOptional<z.ZodBoolean>;
1285
+ }, z.core.$strip>>;
1286
+ }, z.core.$strip>>;
1287
+ error: z.ZodOptional<z.ZodObject<{
1288
+ code: z.ZodOptional<z.ZodString>;
1289
+ message: z.ZodString;
1290
+ }, z.core.$strip>>;
1291
+ }, z.core.$strip>>>;
1292
+ }, z.core.$strip>;
1293
+ }, z.core.$strip>;
1294
+ type SlatesMessageAuthTokenRefreshHandleResponse = z.infer<typeof slatesMessageAuthTokenRefreshHandleResponse>;
1295
+ /**
1296
+ * Get Profile
1297
+ */
1298
+ declare let slatesMessageAuthProfileGetRequest: z.ZodObject<{
1299
+ jsonrpc: z.ZodLiteral<"2.0">;
1300
+ method: z.ZodLiteral<"slates/auth.profile.get">;
1301
+ id: z.ZodString;
1302
+ params: z.ZodObject<{
1303
+ authenticationMethodId: z.ZodString;
1304
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1305
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1306
+ scopes: z.ZodArray<z.ZodString>;
1307
+ }, z.core.$strip>;
1308
+ }, z.core.$strip>;
1309
+ type SlatesMessageAuthProfileGetRequest = z.infer<typeof slatesMessageAuthProfileGetRequest>;
1310
+ declare let slatesMessageAuthProfileGetResponse: z.ZodObject<{
1311
+ jsonrpc: z.ZodLiteral<"2.0">;
1312
+ id: z.ZodString;
1313
+ result: z.ZodObject<{
1314
+ profile: z.ZodRecord<z.ZodString, z.ZodAny>;
1315
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1316
+ startedAt: z.ZodString;
1317
+ durationMs: z.ZodNumber;
1318
+ request: z.ZodObject<{
1319
+ method: z.ZodString;
1320
+ url: z.ZodString;
1321
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1322
+ body: z.ZodOptional<z.ZodObject<{
1323
+ contentType: z.ZodOptional<z.ZodString>;
1324
+ text: z.ZodString;
1325
+ truncated: z.ZodOptional<z.ZodBoolean>;
1326
+ }, z.core.$strip>>;
1327
+ }, z.core.$strip>;
1328
+ response: z.ZodOptional<z.ZodObject<{
1329
+ status: z.ZodNumber;
1330
+ statusText: z.ZodOptional<z.ZodString>;
1331
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1332
+ body: z.ZodOptional<z.ZodObject<{
1333
+ contentType: z.ZodOptional<z.ZodString>;
1334
+ text: z.ZodString;
1335
+ truncated: z.ZodOptional<z.ZodBoolean>;
1336
+ }, z.core.$strip>>;
1337
+ }, z.core.$strip>>;
1338
+ error: z.ZodOptional<z.ZodObject<{
1339
+ code: z.ZodOptional<z.ZodString>;
1340
+ message: z.ZodString;
1341
+ }, z.core.$strip>>;
1342
+ }, z.core.$strip>>>;
1343
+ }, z.core.$strip>;
1344
+ }, z.core.$strip>;
1345
+ type SlatesMessageAuthProfileGetResponse = z.infer<typeof slatesMessageAuthProfileGetResponse>;
1346
+ /**
1347
+ * Get Auth Output
1348
+ */
1349
+ declare let slatesMessageAuthOutputGetRequest: z.ZodObject<{
1350
+ jsonrpc: z.ZodLiteral<"2.0">;
1351
+ method: z.ZodLiteral<"slates/auth.output.get">;
1352
+ id: z.ZodString;
1353
+ params: z.ZodObject<{
1354
+ authenticationMethodId: z.ZodString;
1355
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1356
+ }, z.core.$strip>;
1357
+ }, z.core.$strip>;
1358
+ type SlatesMessageAuthOutputGetRequest = z.infer<typeof slatesMessageAuthOutputGetRequest>;
1359
+ declare let slatesMessageAuthOutputGetResponse: z.ZodObject<{
1360
+ jsonrpc: z.ZodLiteral<"2.0">;
1361
+ id: z.ZodString;
1362
+ result: z.ZodObject<{
1363
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1364
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1365
+ startedAt: z.ZodString;
1366
+ durationMs: z.ZodNumber;
1367
+ request: z.ZodObject<{
1368
+ method: z.ZodString;
1369
+ url: z.ZodString;
1370
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1371
+ body: z.ZodOptional<z.ZodObject<{
1372
+ contentType: z.ZodOptional<z.ZodString>;
1373
+ text: z.ZodString;
1374
+ truncated: z.ZodOptional<z.ZodBoolean>;
1375
+ }, z.core.$strip>>;
1376
+ }, z.core.$strip>;
1377
+ response: z.ZodOptional<z.ZodObject<{
1378
+ status: z.ZodNumber;
1379
+ statusText: z.ZodOptional<z.ZodString>;
1380
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1381
+ body: z.ZodOptional<z.ZodObject<{
1382
+ contentType: z.ZodOptional<z.ZodString>;
1383
+ text: z.ZodString;
1384
+ truncated: z.ZodOptional<z.ZodBoolean>;
1385
+ }, z.core.$strip>>;
1386
+ }, z.core.$strip>>;
1387
+ error: z.ZodOptional<z.ZodObject<{
1388
+ code: z.ZodOptional<z.ZodString>;
1389
+ message: z.ZodString;
1390
+ }, z.core.$strip>>;
1391
+ }, z.core.$strip>>>;
1392
+ }, z.core.$strip>;
1393
+ }, z.core.$strip>;
1394
+ type SlatesMessageAuthOutputGetResponse = z.infer<typeof slatesMessageAuthOutputGetResponse>;
1395
+ type SlatesAuthRequests = SlatesMessageAuthMethodsListRequest | SlatesMessageAuthMethodGetRequest | SlatesMessageAuthInputChangedRequest | SlatesMessageAuthDefaultInputGetRequest | SlatesMessageAuthAuthorizationUrlGetRequest | SlatesMessageAuthAuthorizationCallbackHandleRequest | SlatesMessageAuthTokenRefreshHandleRequest | SlatesMessageAuthProfileGetRequest | SlatesMessageAuthOutputGetRequest;
1396
+ type SlatesAuthResponses = SlatesMessageAuthMethodsListResponse | SlatesMessageAuthMethodGetResponse | SlatesMessageAuthInputChangedResponse | SlatesMessageAuthDefaultInputGetResponse | SlatesMessageAuthAuthorizationUrlGetResponse | SlatesMessageAuthAuthorizationCallbackHandleResponse | SlatesMessageAuthTokenRefreshHandleResponse | SlatesMessageAuthProfileGetResponse | SlatesMessageAuthOutputGetResponse;
1397
+ type SlatesAuthNotifications = SlatesMessageSetAuthNotification;
1398
+ declare let slatesAuthResponsesByMethod: {
1399
+ 'slates/auth.methods.list': z.ZodObject<{
1400
+ jsonrpc: z.ZodLiteral<"2.0">;
1401
+ id: z.ZodString;
1402
+ result: z.ZodObject<{
1403
+ authenticationMethods: z.ZodArray<z.ZodObject<{
1404
+ id: z.ZodString;
1405
+ name: z.ZodString;
1406
+ type: z.ZodUnion<readonly [z.ZodLiteral<"auth.oauth">, z.ZodLiteral<"auth.token">, z.ZodLiteral<"auth.service_account">, z.ZodLiteral<"auth.custom">]>;
1407
+ scopes: z.ZodOptional<z.ZodArray<z.ZodObject<{
1408
+ id: z.ZodString;
1409
+ title: z.ZodString;
1410
+ description: z.ZodOptional<z.ZodString>;
1411
+ defaultChecked: z.ZodOptional<z.ZodBoolean>;
1412
+ }, z.core.$strip>>>;
1413
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
1414
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
1415
+ capabilities: z.ZodObject<{
1416
+ getDefaultInput: z.ZodOptional<z.ZodObject<{
1417
+ enabled: z.ZodBoolean;
1418
+ }, z.core.$strip>>;
1419
+ handleChangedInput: z.ZodOptional<z.ZodObject<{
1420
+ enabled: z.ZodBoolean;
1421
+ }, z.core.$strip>>;
1422
+ handleTokenRefresh: z.ZodOptional<z.ZodObject<{
1423
+ enabled: z.ZodBoolean;
1424
+ }, z.core.$strip>>;
1425
+ getProfile: z.ZodOptional<z.ZodObject<{
1426
+ enabled: z.ZodBoolean;
1427
+ }, z.core.$strip>>;
1428
+ }, z.core.$strip>;
1429
+ docs: z.ZodArray<z.ZodObject<{
1430
+ type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"docs.auth.oauth">, z.ZodLiteral<"docs.auth.oauth_scopes">, z.ZodLiteral<"docs.auth.token">, z.ZodLiteral<"docs.auth.service_account">, z.ZodLiteral<"docs.auth.custom">]>>;
1431
+ name: z.ZodString;
1432
+ url: z.ZodString;
1433
+ }, z.core.$strip>>;
1434
+ }, z.core.$strip>>;
1435
+ }, z.core.$strip>;
1436
+ }, z.core.$strip>;
1437
+ 'slates/auth.method.get': z.ZodObject<{
1438
+ jsonrpc: z.ZodLiteral<"2.0">;
1439
+ id: z.ZodString;
1440
+ result: z.ZodObject<{
1441
+ authenticationMethod: z.ZodObject<{
1442
+ id: z.ZodString;
1443
+ name: z.ZodString;
1444
+ type: z.ZodUnion<readonly [z.ZodLiteral<"auth.oauth">, z.ZodLiteral<"auth.token">, z.ZodLiteral<"auth.service_account">, z.ZodLiteral<"auth.custom">]>;
1445
+ scopes: z.ZodOptional<z.ZodArray<z.ZodObject<{
1446
+ id: z.ZodString;
1447
+ title: z.ZodString;
1448
+ description: z.ZodOptional<z.ZodString>;
1449
+ defaultChecked: z.ZodOptional<z.ZodBoolean>;
1450
+ }, z.core.$strip>>>;
1451
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
1452
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
1453
+ capabilities: z.ZodObject<{
1454
+ getDefaultInput: z.ZodOptional<z.ZodObject<{
1455
+ enabled: z.ZodBoolean;
1456
+ }, z.core.$strip>>;
1457
+ handleChangedInput: z.ZodOptional<z.ZodObject<{
1458
+ enabled: z.ZodBoolean;
1459
+ }, z.core.$strip>>;
1460
+ handleTokenRefresh: z.ZodOptional<z.ZodObject<{
1461
+ enabled: z.ZodBoolean;
1462
+ }, z.core.$strip>>;
1463
+ getProfile: z.ZodOptional<z.ZodObject<{
1464
+ enabled: z.ZodBoolean;
1465
+ }, z.core.$strip>>;
1466
+ }, z.core.$strip>;
1467
+ docs: z.ZodArray<z.ZodObject<{
1468
+ type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"docs.auth.oauth">, z.ZodLiteral<"docs.auth.oauth_scopes">, z.ZodLiteral<"docs.auth.token">, z.ZodLiteral<"docs.auth.service_account">, z.ZodLiteral<"docs.auth.custom">]>>;
1469
+ name: z.ZodString;
1470
+ url: z.ZodString;
1471
+ }, z.core.$strip>>;
1472
+ }, z.core.$strip>;
1473
+ }, z.core.$strip>;
1474
+ }, z.core.$strip>;
1475
+ 'slates/auth.input.changed': z.ZodObject<{
1476
+ jsonrpc: z.ZodLiteral<"2.0">;
1477
+ id: z.ZodString;
1478
+ result: z.ZodObject<{
1479
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1480
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1481
+ startedAt: z.ZodString;
1482
+ durationMs: z.ZodNumber;
1483
+ request: z.ZodObject<{
1484
+ method: z.ZodString;
1485
+ url: z.ZodString;
1486
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1487
+ body: z.ZodOptional<z.ZodObject<{
1488
+ contentType: z.ZodOptional<z.ZodString>;
1489
+ text: z.ZodString;
1490
+ truncated: z.ZodOptional<z.ZodBoolean>;
1491
+ }, z.core.$strip>>;
1492
+ }, z.core.$strip>;
1493
+ response: z.ZodOptional<z.ZodObject<{
1494
+ status: z.ZodNumber;
1495
+ statusText: z.ZodOptional<z.ZodString>;
1496
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1497
+ body: z.ZodOptional<z.ZodObject<{
1498
+ contentType: z.ZodOptional<z.ZodString>;
1499
+ text: z.ZodString;
1500
+ truncated: z.ZodOptional<z.ZodBoolean>;
1501
+ }, z.core.$strip>>;
1502
+ }, z.core.$strip>>;
1503
+ error: z.ZodOptional<z.ZodObject<{
1504
+ code: z.ZodOptional<z.ZodString>;
1505
+ message: z.ZodString;
1506
+ }, z.core.$strip>>;
1507
+ }, z.core.$strip>>>;
1508
+ }, z.core.$strip>;
1509
+ }, z.core.$strip>;
1510
+ 'slates/auth.input.get_default': z.ZodObject<{
1511
+ jsonrpc: z.ZodLiteral<"2.0">;
1512
+ id: z.ZodString;
1513
+ result: z.ZodObject<{
1514
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1515
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1516
+ startedAt: z.ZodString;
1517
+ durationMs: z.ZodNumber;
1518
+ request: z.ZodObject<{
1519
+ method: z.ZodString;
1520
+ url: z.ZodString;
1521
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1522
+ body: z.ZodOptional<z.ZodObject<{
1523
+ contentType: z.ZodOptional<z.ZodString>;
1524
+ text: z.ZodString;
1525
+ truncated: z.ZodOptional<z.ZodBoolean>;
1526
+ }, z.core.$strip>>;
1527
+ }, z.core.$strip>;
1528
+ response: z.ZodOptional<z.ZodObject<{
1529
+ status: z.ZodNumber;
1530
+ statusText: z.ZodOptional<z.ZodString>;
1531
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1532
+ body: z.ZodOptional<z.ZodObject<{
1533
+ contentType: z.ZodOptional<z.ZodString>;
1534
+ text: z.ZodString;
1535
+ truncated: z.ZodOptional<z.ZodBoolean>;
1536
+ }, z.core.$strip>>;
1537
+ }, z.core.$strip>>;
1538
+ error: z.ZodOptional<z.ZodObject<{
1539
+ code: z.ZodOptional<z.ZodString>;
1540
+ message: z.ZodString;
1541
+ }, z.core.$strip>>;
1542
+ }, z.core.$strip>>>;
1543
+ }, z.core.$strip>;
1544
+ }, z.core.$strip>;
1545
+ 'slates/auth.authorization_url.get': z.ZodObject<{
1546
+ jsonrpc: z.ZodLiteral<"2.0">;
1547
+ id: z.ZodString;
1548
+ result: z.ZodObject<{
1549
+ authorizationUrl: z.ZodString;
1550
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1551
+ callbackState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1552
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1553
+ startedAt: z.ZodString;
1554
+ durationMs: z.ZodNumber;
1555
+ request: z.ZodObject<{
1556
+ method: z.ZodString;
1557
+ url: z.ZodString;
1558
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1559
+ body: z.ZodOptional<z.ZodObject<{
1560
+ contentType: z.ZodOptional<z.ZodString>;
1561
+ text: z.ZodString;
1562
+ truncated: z.ZodOptional<z.ZodBoolean>;
1563
+ }, z.core.$strip>>;
1564
+ }, z.core.$strip>;
1565
+ response: z.ZodOptional<z.ZodObject<{
1566
+ status: z.ZodNumber;
1567
+ statusText: z.ZodOptional<z.ZodString>;
1568
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1569
+ body: z.ZodOptional<z.ZodObject<{
1570
+ contentType: z.ZodOptional<z.ZodString>;
1571
+ text: z.ZodString;
1572
+ truncated: z.ZodOptional<z.ZodBoolean>;
1573
+ }, z.core.$strip>>;
1574
+ }, z.core.$strip>>;
1575
+ error: z.ZodOptional<z.ZodObject<{
1576
+ code: z.ZodOptional<z.ZodString>;
1577
+ message: z.ZodString;
1578
+ }, z.core.$strip>>;
1579
+ }, z.core.$strip>>>;
1580
+ }, z.core.$strip>;
1581
+ }, z.core.$strip>;
1582
+ 'slates/auth.authorization_callback.handle': z.ZodObject<{
1583
+ jsonrpc: z.ZodLiteral<"2.0">;
1584
+ id: z.ZodString;
1585
+ result: z.ZodObject<{
1586
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1587
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1588
+ scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
1589
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1590
+ startedAt: z.ZodString;
1591
+ durationMs: z.ZodNumber;
1592
+ request: z.ZodObject<{
1593
+ method: z.ZodString;
1594
+ url: z.ZodString;
1595
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1596
+ body: z.ZodOptional<z.ZodObject<{
1597
+ contentType: z.ZodOptional<z.ZodString>;
1598
+ text: z.ZodString;
1599
+ truncated: z.ZodOptional<z.ZodBoolean>;
1600
+ }, z.core.$strip>>;
1601
+ }, z.core.$strip>;
1602
+ response: z.ZodOptional<z.ZodObject<{
1603
+ status: z.ZodNumber;
1604
+ statusText: z.ZodOptional<z.ZodString>;
1605
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1606
+ body: z.ZodOptional<z.ZodObject<{
1607
+ contentType: z.ZodOptional<z.ZodString>;
1608
+ text: z.ZodString;
1609
+ truncated: z.ZodOptional<z.ZodBoolean>;
1610
+ }, z.core.$strip>>;
1611
+ }, z.core.$strip>>;
1612
+ error: z.ZodOptional<z.ZodObject<{
1613
+ code: z.ZodOptional<z.ZodString>;
1614
+ message: z.ZodString;
1615
+ }, z.core.$strip>>;
1616
+ }, z.core.$strip>>>;
1617
+ }, z.core.$strip>;
1618
+ }, z.core.$strip>;
1619
+ 'slates/auth.token_refresh.handle': z.ZodObject<{
1620
+ jsonrpc: z.ZodLiteral<"2.0">;
1621
+ id: z.ZodString;
1622
+ result: z.ZodObject<{
1623
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1624
+ input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1625
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1626
+ startedAt: z.ZodString;
1627
+ durationMs: z.ZodNumber;
1628
+ request: z.ZodObject<{
1629
+ method: z.ZodString;
1630
+ url: z.ZodString;
1631
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1632
+ body: z.ZodOptional<z.ZodObject<{
1633
+ contentType: z.ZodOptional<z.ZodString>;
1634
+ text: z.ZodString;
1635
+ truncated: z.ZodOptional<z.ZodBoolean>;
1636
+ }, z.core.$strip>>;
1637
+ }, z.core.$strip>;
1638
+ response: z.ZodOptional<z.ZodObject<{
1639
+ status: z.ZodNumber;
1640
+ statusText: z.ZodOptional<z.ZodString>;
1641
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1642
+ body: z.ZodOptional<z.ZodObject<{
1643
+ contentType: z.ZodOptional<z.ZodString>;
1644
+ text: z.ZodString;
1645
+ truncated: z.ZodOptional<z.ZodBoolean>;
1646
+ }, z.core.$strip>>;
1647
+ }, z.core.$strip>>;
1648
+ error: z.ZodOptional<z.ZodObject<{
1649
+ code: z.ZodOptional<z.ZodString>;
1650
+ message: z.ZodString;
1651
+ }, z.core.$strip>>;
1652
+ }, z.core.$strip>>>;
1653
+ }, z.core.$strip>;
1654
+ }, z.core.$strip>;
1655
+ 'slates/auth.profile.get': z.ZodObject<{
1656
+ jsonrpc: z.ZodLiteral<"2.0">;
1657
+ id: z.ZodString;
1658
+ result: z.ZodObject<{
1659
+ profile: z.ZodRecord<z.ZodString, z.ZodAny>;
1660
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1661
+ startedAt: z.ZodString;
1662
+ durationMs: z.ZodNumber;
1663
+ request: z.ZodObject<{
1664
+ method: z.ZodString;
1665
+ url: z.ZodString;
1666
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1667
+ body: z.ZodOptional<z.ZodObject<{
1668
+ contentType: z.ZodOptional<z.ZodString>;
1669
+ text: z.ZodString;
1670
+ truncated: z.ZodOptional<z.ZodBoolean>;
1671
+ }, z.core.$strip>>;
1672
+ }, z.core.$strip>;
1673
+ response: z.ZodOptional<z.ZodObject<{
1674
+ status: z.ZodNumber;
1675
+ statusText: z.ZodOptional<z.ZodString>;
1676
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1677
+ body: z.ZodOptional<z.ZodObject<{
1678
+ contentType: z.ZodOptional<z.ZodString>;
1679
+ text: z.ZodString;
1680
+ truncated: z.ZodOptional<z.ZodBoolean>;
1681
+ }, z.core.$strip>>;
1682
+ }, z.core.$strip>>;
1683
+ error: z.ZodOptional<z.ZodObject<{
1684
+ code: z.ZodOptional<z.ZodString>;
1685
+ message: z.ZodString;
1686
+ }, z.core.$strip>>;
1687
+ }, z.core.$strip>>>;
1688
+ }, z.core.$strip>;
1689
+ }, z.core.$strip>;
1690
+ 'slates/auth.output.get': z.ZodObject<{
1691
+ jsonrpc: z.ZodLiteral<"2.0">;
1692
+ id: z.ZodString;
1693
+ result: z.ZodObject<{
1694
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1695
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1696
+ startedAt: z.ZodString;
1697
+ durationMs: z.ZodNumber;
1698
+ request: z.ZodObject<{
1699
+ method: z.ZodString;
1700
+ url: z.ZodString;
1701
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1702
+ body: z.ZodOptional<z.ZodObject<{
1703
+ contentType: z.ZodOptional<z.ZodString>;
1704
+ text: z.ZodString;
1705
+ truncated: z.ZodOptional<z.ZodBoolean>;
1706
+ }, z.core.$strip>>;
1707
+ }, z.core.$strip>;
1708
+ response: z.ZodOptional<z.ZodObject<{
1709
+ status: z.ZodNumber;
1710
+ statusText: z.ZodOptional<z.ZodString>;
1711
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1712
+ body: z.ZodOptional<z.ZodObject<{
1713
+ contentType: z.ZodOptional<z.ZodString>;
1714
+ text: z.ZodString;
1715
+ truncated: z.ZodOptional<z.ZodBoolean>;
1716
+ }, z.core.$strip>>;
1717
+ }, z.core.$strip>>;
1718
+ error: z.ZodOptional<z.ZodObject<{
1719
+ code: z.ZodOptional<z.ZodString>;
1720
+ message: z.ZodString;
1721
+ }, z.core.$strip>>;
1722
+ }, z.core.$strip>>>;
1723
+ }, z.core.$strip>;
1724
+ }, z.core.$strip>;
1725
+ };
1726
+ declare let slatesAuthRequestsByMethod: {
1727
+ 'slates/auth.methods.list': z.ZodObject<{
1728
+ jsonrpc: z.ZodLiteral<"2.0">;
1729
+ method: z.ZodLiteral<"slates/auth.methods.list">;
1730
+ id: z.ZodString;
1731
+ params: z.ZodObject<{}, z.core.$strip>;
1732
+ }, z.core.$strip>;
1733
+ 'slates/auth.method.get': z.ZodObject<{
1734
+ jsonrpc: z.ZodLiteral<"2.0">;
1735
+ method: z.ZodLiteral<"slates/auth.method.get">;
1736
+ id: z.ZodString;
1737
+ params: z.ZodObject<{
1738
+ authenticationMethodId: z.ZodString;
1739
+ }, z.core.$strip>;
1740
+ }, z.core.$strip>;
1741
+ 'slates/auth.input.changed': z.ZodObject<{
1742
+ jsonrpc: z.ZodLiteral<"2.0">;
1743
+ method: z.ZodLiteral<"slates/auth.input.changed">;
1744
+ id: z.ZodString;
1745
+ params: z.ZodObject<{
1746
+ authenticationMethodId: z.ZodString;
1747
+ previousInput: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
1748
+ newInput: z.ZodRecord<z.ZodString, z.ZodAny>;
1749
+ }, z.core.$strip>;
1750
+ }, z.core.$strip>;
1751
+ 'slates/auth.input.get_default': z.ZodObject<{
1752
+ jsonrpc: z.ZodLiteral<"2.0">;
1753
+ method: z.ZodLiteral<"slates/auth.input.get_default">;
1754
+ id: z.ZodString;
1755
+ params: z.ZodObject<{
1756
+ authenticationMethodId: z.ZodString;
1757
+ }, z.core.$strip>;
1758
+ }, z.core.$strip>;
1759
+ 'slates/auth.authorization_url.get': z.ZodObject<{
1760
+ jsonrpc: z.ZodLiteral<"2.0">;
1761
+ method: z.ZodLiteral<"slates/auth.authorization_url.get">;
1762
+ id: z.ZodString;
1763
+ params: z.ZodObject<{
1764
+ authenticationMethodId: z.ZodString;
1765
+ redirectUri: z.ZodString;
1766
+ state: z.ZodString;
1767
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1768
+ clientId: z.ZodString;
1769
+ clientSecret: z.ZodString;
1770
+ scopes: z.ZodArray<z.ZodString>;
1771
+ }, z.core.$strip>;
1772
+ }, z.core.$strip>;
1773
+ 'slates/auth.authorization_callback.handle': z.ZodObject<{
1774
+ jsonrpc: z.ZodLiteral<"2.0">;
1775
+ method: z.ZodLiteral<"slates/auth.authorization_callback.handle">;
1776
+ id: z.ZodString;
1777
+ params: z.ZodObject<{
1778
+ authenticationMethodId: z.ZodString;
1779
+ code: z.ZodString;
1780
+ state: z.ZodString;
1781
+ redirectUri: z.ZodString;
1782
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1783
+ clientId: z.ZodString;
1784
+ clientSecret: z.ZodString;
1785
+ scopes: z.ZodArray<z.ZodString>;
1786
+ callbackParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1787
+ callbackState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1788
+ }, z.core.$strip>;
1789
+ }, z.core.$strip>;
1790
+ 'slates/auth.token_refresh.handle': z.ZodObject<{
1791
+ jsonrpc: z.ZodLiteral<"2.0">;
1792
+ method: z.ZodLiteral<"slates/auth.token_refresh.handle">;
1793
+ id: z.ZodString;
1794
+ params: z.ZodObject<{
1795
+ authenticationMethodId: z.ZodString;
1796
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1797
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1798
+ clientId: z.ZodString;
1799
+ clientSecret: z.ZodString;
1800
+ scopes: z.ZodArray<z.ZodString>;
1801
+ }, z.core.$strip>;
1802
+ }, z.core.$strip>;
1803
+ 'slates/auth.profile.get': z.ZodObject<{
1804
+ jsonrpc: z.ZodLiteral<"2.0">;
1805
+ method: z.ZodLiteral<"slates/auth.profile.get">;
1806
+ id: z.ZodString;
1807
+ params: z.ZodObject<{
1808
+ authenticationMethodId: z.ZodString;
1809
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1810
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1811
+ scopes: z.ZodArray<z.ZodString>;
1812
+ }, z.core.$strip>;
1813
+ }, z.core.$strip>;
1814
+ 'slates/auth.output.get': z.ZodObject<{
1815
+ jsonrpc: z.ZodLiteral<"2.0">;
1816
+ method: z.ZodLiteral<"slates/auth.output.get">;
1817
+ id: z.ZodString;
1818
+ params: z.ZodObject<{
1819
+ authenticationMethodId: z.ZodString;
1820
+ input: z.ZodRecord<z.ZodString, z.ZodAny>;
1821
+ }, z.core.$strip>;
1822
+ }, z.core.$strip>;
1823
+ };
1824
+ declare let slatesAuthNotificationsByMethod: {
1825
+ 'slates/auth.set': z.ZodObject<{
1826
+ jsonrpc: z.ZodLiteral<"2.0">;
1827
+ method: z.ZodLiteral<"slates/auth.set">;
1828
+ params: z.ZodObject<{
1829
+ authenticationMethodId: z.ZodString;
1830
+ output: z.ZodRecord<z.ZodString, z.ZodAny>;
1831
+ }, z.core.$strip>;
1832
+ }, z.core.$strip>;
1833
+ };
1834
+
1835
+ /**
1836
+ * Set Config
1837
+ */
1838
+ declare let slatesMessageSetConfigNotification: z.ZodObject<{
1839
+ jsonrpc: z.ZodLiteral<"2.0">;
1840
+ method: z.ZodLiteral<"slates/config.set">;
1841
+ params: z.ZodObject<{
1842
+ config: z.ZodRecord<z.ZodString, z.ZodAny>;
1843
+ }, z.core.$strip>;
1844
+ }, z.core.$strip>;
1845
+ type SlatesMessageSetConfigNotification = z.infer<typeof slatesMessageSetConfigNotification>;
1846
+ /**
1847
+ * Get Config Schema
1848
+ */
1849
+ declare let slatesMessageConfigSchemaGetRequest: z.ZodObject<{
1850
+ jsonrpc: z.ZodLiteral<"2.0">;
1851
+ method: z.ZodLiteral<"slates/config.schema.get">;
1852
+ id: z.ZodString;
1853
+ params: z.ZodObject<{}, z.core.$strip>;
1854
+ }, z.core.$strip>;
1855
+ type SlatesMessageConfigSchemaGetRequest = z.infer<typeof slatesMessageConfigSchemaGetRequest>;
1856
+ declare let slatesMessageConfigSchemaGetResponse: z.ZodObject<{
1857
+ jsonrpc: z.ZodLiteral<"2.0">;
1858
+ id: z.ZodString;
1859
+ result: z.ZodObject<{
1860
+ schema: z.ZodRecord<z.ZodString, z.ZodAny>;
1861
+ docs: z.ZodArray<z.ZodObject<{
1862
+ type: z.ZodOptional<z.ZodLiteral<"docs.config.general">>;
1863
+ name: z.ZodString;
1864
+ url: z.ZodString;
1865
+ }, z.core.$strip>>;
1866
+ }, z.core.$strip>;
1867
+ }, z.core.$strip>;
1868
+ type SlatesMessageConfigSchemaGetResponse = z.infer<typeof slatesMessageConfigSchemaGetResponse>;
1869
+ /**
1870
+ * Config Changed
1871
+ */
1872
+ declare let slatesMessageConfigChangedRequest: z.ZodObject<{
1873
+ jsonrpc: z.ZodLiteral<"2.0">;
1874
+ method: z.ZodLiteral<"slates/config.changed">;
1875
+ id: z.ZodString;
1876
+ params: z.ZodObject<{
1877
+ previousConfig: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
1878
+ newConfig: z.ZodRecord<z.ZodString, z.ZodAny>;
1879
+ }, z.core.$strip>;
1880
+ }, z.core.$strip>;
1881
+ type SlatesMessageConfigChangedRequest = z.infer<typeof slatesMessageConfigChangedRequest>;
1882
+ declare let slatesMessageConfigChangedResponse: z.ZodObject<{
1883
+ jsonrpc: z.ZodLiteral<"2.0">;
1884
+ id: z.ZodString;
1885
+ result: z.ZodObject<{
1886
+ success: z.ZodBoolean;
1887
+ config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1888
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1889
+ code: z.ZodString;
1890
+ message: z.ZodString;
1891
+ path: z.ZodOptional<z.ZodArray<z.ZodString>>;
1892
+ }, z.core.$strip>>>;
1893
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1894
+ startedAt: z.ZodString;
1895
+ durationMs: z.ZodNumber;
1896
+ request: z.ZodObject<{
1897
+ method: z.ZodString;
1898
+ url: z.ZodString;
1899
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1900
+ body: z.ZodOptional<z.ZodObject<{
1901
+ contentType: z.ZodOptional<z.ZodString>;
1902
+ text: z.ZodString;
1903
+ truncated: z.ZodOptional<z.ZodBoolean>;
1904
+ }, z.core.$strip>>;
1905
+ }, z.core.$strip>;
1906
+ response: z.ZodOptional<z.ZodObject<{
1907
+ status: z.ZodNumber;
1908
+ statusText: z.ZodOptional<z.ZodString>;
1909
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1910
+ body: z.ZodOptional<z.ZodObject<{
1911
+ contentType: z.ZodOptional<z.ZodString>;
1912
+ text: z.ZodString;
1913
+ truncated: z.ZodOptional<z.ZodBoolean>;
1914
+ }, z.core.$strip>>;
1915
+ }, z.core.$strip>>;
1916
+ error: z.ZodOptional<z.ZodObject<{
1917
+ code: z.ZodOptional<z.ZodString>;
1918
+ message: z.ZodString;
1919
+ }, z.core.$strip>>;
1920
+ }, z.core.$strip>>>;
1921
+ }, z.core.$strip>;
1922
+ }, z.core.$strip>;
1923
+ type SlatesMessageConfigChangedResponse = z.infer<typeof slatesMessageConfigChangedResponse>;
1924
+ /**
1925
+ * Get Default Config
1926
+ */
1927
+ declare let slatesMessageConfigDefaultGetRequest: z.ZodObject<{
1928
+ jsonrpc: z.ZodLiteral<"2.0">;
1929
+ method: z.ZodLiteral<"slates/config.get_default">;
1930
+ id: z.ZodString;
1931
+ params: z.ZodObject<{}, z.core.$strip>;
1932
+ }, z.core.$strip>;
1933
+ type SlatesMessageConfigDefaultGetRequest = z.infer<typeof slatesMessageConfigDefaultGetRequest>;
1934
+ declare let slatesMessageConfigDefaultGetResponse: z.ZodObject<{
1935
+ jsonrpc: z.ZodLiteral<"2.0">;
1936
+ id: z.ZodString;
1937
+ result: z.ZodObject<{
1938
+ config: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
1939
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1940
+ startedAt: z.ZodString;
1941
+ durationMs: z.ZodNumber;
1942
+ request: z.ZodObject<{
1943
+ method: z.ZodString;
1944
+ url: z.ZodString;
1945
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1946
+ body: z.ZodOptional<z.ZodObject<{
1947
+ contentType: z.ZodOptional<z.ZodString>;
1948
+ text: z.ZodString;
1949
+ truncated: z.ZodOptional<z.ZodBoolean>;
1950
+ }, z.core.$strip>>;
1951
+ }, z.core.$strip>;
1952
+ response: z.ZodOptional<z.ZodObject<{
1953
+ status: z.ZodNumber;
1954
+ statusText: z.ZodOptional<z.ZodString>;
1955
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1956
+ body: z.ZodOptional<z.ZodObject<{
1957
+ contentType: z.ZodOptional<z.ZodString>;
1958
+ text: z.ZodString;
1959
+ truncated: z.ZodOptional<z.ZodBoolean>;
1960
+ }, z.core.$strip>>;
1961
+ }, z.core.$strip>>;
1962
+ error: z.ZodOptional<z.ZodObject<{
1963
+ code: z.ZodOptional<z.ZodString>;
1964
+ message: z.ZodString;
1965
+ }, z.core.$strip>>;
1966
+ }, z.core.$strip>>>;
1967
+ }, z.core.$strip>;
1968
+ }, z.core.$strip>;
1969
+ type SlatesMessageConfigDefaultGetResponse = z.infer<typeof slatesMessageConfigDefaultGetResponse>;
1970
+ type SlatesConfigRequests = SlatesMessageConfigSchemaGetRequest | SlatesMessageConfigDefaultGetRequest | SlatesMessageConfigChangedRequest;
1971
+ type SlatesConfigResponses = SlatesMessageConfigSchemaGetResponse | SlatesMessageConfigDefaultGetResponse | SlatesMessageConfigChangedResponse;
1972
+ type SlatesConfigNotifications = SlatesMessageSetConfigNotification;
1973
+ declare let slatesConfigResponsesByMethod: {
1974
+ 'slates/config.schema.get': z.ZodObject<{
1975
+ jsonrpc: z.ZodLiteral<"2.0">;
1976
+ id: z.ZodString;
1977
+ result: z.ZodObject<{
1978
+ schema: z.ZodRecord<z.ZodString, z.ZodAny>;
1979
+ docs: z.ZodArray<z.ZodObject<{
1980
+ type: z.ZodOptional<z.ZodLiteral<"docs.config.general">>;
1981
+ name: z.ZodString;
1982
+ url: z.ZodString;
1983
+ }, z.core.$strip>>;
1984
+ }, z.core.$strip>;
1985
+ }, z.core.$strip>;
1986
+ 'slates/config.get_default': z.ZodObject<{
1987
+ jsonrpc: z.ZodLiteral<"2.0">;
1988
+ id: z.ZodString;
1989
+ result: z.ZodObject<{
1990
+ config: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
1991
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
1992
+ startedAt: z.ZodString;
1993
+ durationMs: z.ZodNumber;
1994
+ request: z.ZodObject<{
1995
+ method: z.ZodString;
1996
+ url: z.ZodString;
1997
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1998
+ body: z.ZodOptional<z.ZodObject<{
1999
+ contentType: z.ZodOptional<z.ZodString>;
2000
+ text: z.ZodString;
2001
+ truncated: z.ZodOptional<z.ZodBoolean>;
2002
+ }, z.core.$strip>>;
2003
+ }, z.core.$strip>;
2004
+ response: z.ZodOptional<z.ZodObject<{
2005
+ status: z.ZodNumber;
2006
+ statusText: z.ZodOptional<z.ZodString>;
2007
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2008
+ body: z.ZodOptional<z.ZodObject<{
2009
+ contentType: z.ZodOptional<z.ZodString>;
2010
+ text: z.ZodString;
2011
+ truncated: z.ZodOptional<z.ZodBoolean>;
2012
+ }, z.core.$strip>>;
2013
+ }, z.core.$strip>>;
2014
+ error: z.ZodOptional<z.ZodObject<{
2015
+ code: z.ZodOptional<z.ZodString>;
2016
+ message: z.ZodString;
2017
+ }, z.core.$strip>>;
2018
+ }, z.core.$strip>>>;
2019
+ }, z.core.$strip>;
2020
+ }, z.core.$strip>;
2021
+ 'slates/config.changed': z.ZodObject<{
2022
+ jsonrpc: z.ZodLiteral<"2.0">;
2023
+ id: z.ZodString;
2024
+ result: z.ZodObject<{
2025
+ success: z.ZodBoolean;
2026
+ config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2027
+ errors: z.ZodOptional<z.ZodArray<z.ZodObject<{
2028
+ code: z.ZodString;
2029
+ message: z.ZodString;
2030
+ path: z.ZodOptional<z.ZodArray<z.ZodString>>;
2031
+ }, z.core.$strip>>>;
2032
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
2033
+ startedAt: z.ZodString;
2034
+ durationMs: z.ZodNumber;
2035
+ request: z.ZodObject<{
2036
+ method: z.ZodString;
2037
+ url: z.ZodString;
2038
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2039
+ body: z.ZodOptional<z.ZodObject<{
2040
+ contentType: z.ZodOptional<z.ZodString>;
2041
+ text: z.ZodString;
2042
+ truncated: z.ZodOptional<z.ZodBoolean>;
2043
+ }, z.core.$strip>>;
2044
+ }, z.core.$strip>;
2045
+ response: z.ZodOptional<z.ZodObject<{
2046
+ status: z.ZodNumber;
2047
+ statusText: z.ZodOptional<z.ZodString>;
2048
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2049
+ body: z.ZodOptional<z.ZodObject<{
2050
+ contentType: z.ZodOptional<z.ZodString>;
2051
+ text: z.ZodString;
2052
+ truncated: z.ZodOptional<z.ZodBoolean>;
2053
+ }, z.core.$strip>>;
2054
+ }, z.core.$strip>>;
2055
+ error: z.ZodOptional<z.ZodObject<{
2056
+ code: z.ZodOptional<z.ZodString>;
2057
+ message: z.ZodString;
2058
+ }, z.core.$strip>>;
2059
+ }, z.core.$strip>>>;
2060
+ }, z.core.$strip>;
2061
+ }, z.core.$strip>;
2062
+ };
2063
+ declare let slatesConfigRequestsByMethod: {
2064
+ 'slates/config.schema.get': z.ZodObject<{
2065
+ jsonrpc: z.ZodLiteral<"2.0">;
2066
+ method: z.ZodLiteral<"slates/config.schema.get">;
2067
+ id: z.ZodString;
2068
+ params: z.ZodObject<{}, z.core.$strip>;
2069
+ }, z.core.$strip>;
2070
+ 'slates/config.get_default': z.ZodObject<{
2071
+ jsonrpc: z.ZodLiteral<"2.0">;
2072
+ method: z.ZodLiteral<"slates/config.get_default">;
2073
+ id: z.ZodString;
2074
+ params: z.ZodObject<{}, z.core.$strip>;
2075
+ }, z.core.$strip>;
2076
+ 'slates/config.changed': z.ZodObject<{
2077
+ jsonrpc: z.ZodLiteral<"2.0">;
2078
+ method: z.ZodLiteral<"slates/config.changed">;
2079
+ id: z.ZodString;
2080
+ params: z.ZodObject<{
2081
+ previousConfig: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodAny>>;
2082
+ newConfig: z.ZodRecord<z.ZodString, z.ZodAny>;
2083
+ }, z.core.$strip>;
2084
+ }, z.core.$strip>;
2085
+ };
2086
+ declare let slatesConfigNotificationsByMethod: {
2087
+ 'slates/config.set': z.ZodObject<{
2088
+ jsonrpc: z.ZodLiteral<"2.0">;
2089
+ method: z.ZodLiteral<"slates/config.set">;
2090
+ params: z.ZodObject<{
2091
+ config: z.ZodRecord<z.ZodString, z.ZodAny>;
2092
+ }, z.core.$strip>;
2093
+ }, z.core.$strip>;
2094
+ };
2095
+
2096
+ declare let slatesMessageHelloNotification: z.ZodObject<{
2097
+ jsonrpc: z.ZodLiteral<"2.0">;
2098
+ method: z.ZodLiteral<"slates/hello">;
2099
+ params: z.ZodObject<{
2100
+ protocol: z.ZodLiteral<"slates@2026-01-01">;
2101
+ }, z.core.$strip>;
2102
+ }, z.core.$strip>;
2103
+ type SlatesMessageHelloNotification = z.infer<typeof slatesMessageHelloNotification>;
2104
+ declare let slatesMessageSetParticipantsNotification: z.ZodObject<{
2105
+ jsonrpc: z.ZodLiteral<"2.0">;
2106
+ method: z.ZodLiteral<"slates/participant.set">;
2107
+ params: z.ZodObject<{
2108
+ participants: z.ZodArray<z.ZodObject<{
2109
+ type: z.ZodUnion<readonly [z.ZodLiteral<"consumer">, z.ZodLiteral<"hub">]>;
2110
+ id: z.ZodString;
2111
+ name: z.ZodString;
2112
+ description: z.ZodOptional<z.ZodString>;
2113
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2114
+ }, z.core.$strip>>;
2115
+ }, z.core.$strip>;
2116
+ }, z.core.$strip>;
2117
+ type SlatesMessageSetParticipantsNotification = z.infer<typeof slatesMessageSetParticipantsNotification>;
2118
+ declare let slatesMessageSessionStartNotification: z.ZodObject<{
2119
+ jsonrpc: z.ZodLiteral<"2.0">;
2120
+ method: z.ZodLiteral<"slates/session.start">;
2121
+ params: z.ZodObject<{
2122
+ sessionId: z.ZodString;
2123
+ state: z.ZodRecord<z.ZodString, z.ZodAny>;
2124
+ }, z.core.$strip>;
2125
+ }, z.core.$strip>;
2126
+ type SlatesMessageSessionStartNotification = z.infer<typeof slatesMessageSessionStartNotification>;
2127
+ type SlatesControlFlowNotifications = SlatesMessageHelloNotification | SlatesMessageSetParticipantsNotification | SlatesMessageSessionStartNotification;
2128
+ declare let slatesControlFlowNotificationsByMethod: {
2129
+ 'slates/hello': z.ZodObject<{
2130
+ jsonrpc: z.ZodLiteral<"2.0">;
2131
+ method: z.ZodLiteral<"slates/hello">;
2132
+ params: z.ZodObject<{
2133
+ protocol: z.ZodLiteral<"slates@2026-01-01">;
2134
+ }, z.core.$strip>;
2135
+ }, z.core.$strip>;
2136
+ 'slates/participant.set': z.ZodObject<{
2137
+ jsonrpc: z.ZodLiteral<"2.0">;
2138
+ method: z.ZodLiteral<"slates/participant.set">;
2139
+ params: z.ZodObject<{
2140
+ participants: z.ZodArray<z.ZodObject<{
2141
+ type: z.ZodUnion<readonly [z.ZodLiteral<"consumer">, z.ZodLiteral<"hub">]>;
2142
+ id: z.ZodString;
2143
+ name: z.ZodString;
2144
+ description: z.ZodOptional<z.ZodString>;
2145
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2146
+ }, z.core.$strip>>;
2147
+ }, z.core.$strip>;
2148
+ }, z.core.$strip>;
2149
+ 'slates/session.start': z.ZodObject<{
2150
+ jsonrpc: z.ZodLiteral<"2.0">;
2151
+ method: z.ZodLiteral<"slates/session.start">;
2152
+ params: z.ZodObject<{
2153
+ sessionId: z.ZodString;
2154
+ state: z.ZodRecord<z.ZodString, z.ZodAny>;
2155
+ }, z.core.$strip>;
2156
+ }, z.core.$strip>;
2157
+ };
2158
+
2159
+ declare let slatesMessageProviderIdentifyRequest: z.ZodObject<{
2160
+ jsonrpc: z.ZodLiteral<"2.0">;
2161
+ method: z.ZodLiteral<"slates/provider.identify">;
2162
+ id: z.ZodString;
2163
+ params: z.ZodObject<{}, z.core.$strip>;
2164
+ }, z.core.$strip>;
2165
+ type SlatesMessageProviderIdentifyRequest = z.infer<typeof slatesMessageProviderIdentifyRequest>;
2166
+ declare let slatesMessageProviderIdentifyResponse: z.ZodObject<{
2167
+ jsonrpc: z.ZodLiteral<"2.0">;
2168
+ id: z.ZodString;
2169
+ result: z.ZodObject<{
2170
+ protocol: z.ZodLiteral<"slates@2026-01-01">;
2171
+ provider: z.ZodObject<{
2172
+ type: z.ZodLiteral<"provider">;
2173
+ id: z.ZodString;
2174
+ name: z.ZodString;
2175
+ description: z.ZodOptional<z.ZodString>;
2176
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2177
+ }, z.core.$strip>;
2178
+ docs: z.ZodArray<z.ZodObject<{
2179
+ name: z.ZodString;
2180
+ url: z.ZodString;
2181
+ }, z.core.$strip>>;
2182
+ }, z.core.$strip>;
2183
+ }, z.core.$strip>;
2184
+ type SlatesMessageProviderIdentifyResponse = z.infer<typeof slatesMessageProviderIdentifyResponse>;
2185
+ type SlatesIdentifyRequests = SlatesMessageProviderIdentifyRequest;
2186
+ type SlatesIdentifyResponses = SlatesMessageProviderIdentifyResponse;
2187
+ declare let slatesIdentifyResponsesByMethod: {
2188
+ 'slates/provider.identify': z.ZodObject<{
2189
+ jsonrpc: z.ZodLiteral<"2.0">;
2190
+ id: z.ZodString;
2191
+ result: z.ZodObject<{
2192
+ protocol: z.ZodLiteral<"slates@2026-01-01">;
2193
+ provider: z.ZodObject<{
2194
+ type: z.ZodLiteral<"provider">;
2195
+ id: z.ZodString;
2196
+ name: z.ZodString;
2197
+ description: z.ZodOptional<z.ZodString>;
2198
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2199
+ }, z.core.$strip>;
2200
+ docs: z.ZodArray<z.ZodObject<{
2201
+ name: z.ZodString;
2202
+ url: z.ZodString;
2203
+ }, z.core.$strip>>;
2204
+ }, z.core.$strip>;
2205
+ }, z.core.$strip>;
2206
+ };
2207
+ declare let slatesIdentifyRequestsByMethod: {
2208
+ 'slates/provider.identify': z.ZodObject<{
2209
+ jsonrpc: z.ZodLiteral<"2.0">;
2210
+ method: z.ZodLiteral<"slates/provider.identify">;
2211
+ id: z.ZodString;
2212
+ params: z.ZodObject<{}, z.core.$strip>;
2213
+ }, z.core.$strip>;
2214
+ };
2215
+
2216
+ declare let slatesRequestTraceTextBody: z.ZodObject<{
2217
+ contentType: z.ZodOptional<z.ZodString>;
2218
+ text: z.ZodString;
2219
+ truncated: z.ZodOptional<z.ZodBoolean>;
2220
+ }, z.core.$strip>;
2221
+ declare let slatesRequestTrace: z.ZodObject<{
2222
+ startedAt: z.ZodString;
2223
+ durationMs: z.ZodNumber;
2224
+ request: z.ZodObject<{
2225
+ method: z.ZodString;
2226
+ url: z.ZodString;
2227
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2228
+ body: z.ZodOptional<z.ZodObject<{
2229
+ contentType: z.ZodOptional<z.ZodString>;
2230
+ text: z.ZodString;
2231
+ truncated: z.ZodOptional<z.ZodBoolean>;
2232
+ }, z.core.$strip>>;
2233
+ }, z.core.$strip>;
2234
+ response: z.ZodOptional<z.ZodObject<{
2235
+ status: z.ZodNumber;
2236
+ statusText: z.ZodOptional<z.ZodString>;
2237
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2238
+ body: z.ZodOptional<z.ZodObject<{
2239
+ contentType: z.ZodOptional<z.ZodString>;
2240
+ text: z.ZodString;
2241
+ truncated: z.ZodOptional<z.ZodBoolean>;
2242
+ }, z.core.$strip>>;
2243
+ }, z.core.$strip>>;
2244
+ error: z.ZodOptional<z.ZodObject<{
2245
+ code: z.ZodOptional<z.ZodString>;
2246
+ message: z.ZodString;
2247
+ }, z.core.$strip>>;
2248
+ }, z.core.$strip>;
2249
+ declare let withRequestTraces: <Shape extends z.ZodRawShape>(shape: Shape) => z.ZodObject<Shape & {
2250
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
2251
+ startedAt: z.ZodString;
2252
+ durationMs: z.ZodNumber;
2253
+ request: z.ZodObject<{
2254
+ method: z.ZodString;
2255
+ url: z.ZodString;
2256
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2257
+ body: z.ZodOptional<z.ZodObject<{
2258
+ contentType: z.ZodOptional<z.ZodString>;
2259
+ text: z.ZodString;
2260
+ truncated: z.ZodOptional<z.ZodBoolean>;
2261
+ }, z.core.$strip>>;
2262
+ }, z.core.$strip>;
2263
+ response: z.ZodOptional<z.ZodObject<{
2264
+ status: z.ZodNumber;
2265
+ statusText: z.ZodOptional<z.ZodString>;
2266
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2267
+ body: z.ZodOptional<z.ZodObject<{
2268
+ contentType: z.ZodOptional<z.ZodString>;
2269
+ text: z.ZodString;
2270
+ truncated: z.ZodOptional<z.ZodBoolean>;
2271
+ }, z.core.$strip>>;
2272
+ }, z.core.$strip>>;
2273
+ error: z.ZodOptional<z.ZodObject<{
2274
+ code: z.ZodOptional<z.ZodString>;
2275
+ message: z.ZodString;
2276
+ }, z.core.$strip>>;
2277
+ }, z.core.$strip>>>;
2278
+ } extends infer T ? { -readonly [P in keyof T]: (Shape & {
2279
+ requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
2280
+ startedAt: z.ZodString;
2281
+ durationMs: z.ZodNumber;
2282
+ request: z.ZodObject<{
2283
+ method: z.ZodString;
2284
+ url: z.ZodString;
2285
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2286
+ body: z.ZodOptional<z.ZodObject<{
2287
+ contentType: z.ZodOptional<z.ZodString>;
2288
+ text: z.ZodString;
2289
+ truncated: z.ZodOptional<z.ZodBoolean>;
2290
+ }, z.core.$strip>>;
2291
+ }, z.core.$strip>;
2292
+ response: z.ZodOptional<z.ZodObject<{
2293
+ status: z.ZodNumber;
2294
+ statusText: z.ZodOptional<z.ZodString>;
2295
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2296
+ body: z.ZodOptional<z.ZodObject<{
2297
+ contentType: z.ZodOptional<z.ZodString>;
2298
+ text: z.ZodString;
2299
+ truncated: z.ZodOptional<z.ZodBoolean>;
2300
+ }, z.core.$strip>>;
2301
+ }, z.core.$strip>>;
2302
+ error: z.ZodOptional<z.ZodObject<{
2303
+ code: z.ZodOptional<z.ZodString>;
2304
+ message: z.ZodString;
2305
+ }, z.core.$strip>>;
2306
+ }, z.core.$strip>>>;
2307
+ })[P]; } : never, z.core.$strip>;
2308
+
2309
+ type SlatesNotifications = SlatesAuthNotifications | SlatesConfigNotifications | SlatesControlFlowNotifications;
2310
+ type SlatesRequests = SlatesActionRequests | SlatesAuthRequests | SlatesConfigRequests | SlatesIdentifyRequests;
2311
+ type SlatesResponses = SlatesActionResponses | SlatesAuthResponses | SlatesConfigResponses | SlatesIdentifyResponses;
2312
+ declare let slatesResponsesByMethod: {
2313
+ 'slates/provider.identify': z$1.ZodObject<{
2314
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2315
+ id: z$1.ZodString;
2316
+ result: z$1.ZodObject<{
2317
+ protocol: z$1.ZodLiteral<"slates@2026-01-01">;
2318
+ provider: z$1.ZodObject<{
2319
+ type: z$1.ZodLiteral<"provider">;
2320
+ id: z$1.ZodString;
2321
+ name: z$1.ZodString;
2322
+ description: z$1.ZodOptional<z$1.ZodString>;
2323
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2324
+ }, z$1.core.$strip>;
2325
+ docs: z$1.ZodArray<z$1.ZodObject<{
2326
+ name: z$1.ZodString;
2327
+ url: z$1.ZodString;
2328
+ }, z$1.core.$strip>>;
2329
+ }, z$1.core.$strip>;
2330
+ }, z$1.core.$strip>;
2331
+ 'slates/config.schema.get': z$1.ZodObject<{
2332
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2333
+ id: z$1.ZodString;
2334
+ result: z$1.ZodObject<{
2335
+ schema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2336
+ docs: z$1.ZodArray<z$1.ZodObject<{
2337
+ type: z$1.ZodOptional<z$1.ZodLiteral<"docs.config.general">>;
2338
+ name: z$1.ZodString;
2339
+ url: z$1.ZodString;
2340
+ }, z$1.core.$strip>>;
2341
+ }, z$1.core.$strip>;
2342
+ }, z$1.core.$strip>;
2343
+ 'slates/config.get_default': z$1.ZodObject<{
2344
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2345
+ id: z$1.ZodString;
2346
+ result: z$1.ZodObject<{
2347
+ config: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2348
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2349
+ startedAt: z$1.ZodString;
2350
+ durationMs: z$1.ZodNumber;
2351
+ request: z$1.ZodObject<{
2352
+ method: z$1.ZodString;
2353
+ url: z$1.ZodString;
2354
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2355
+ body: z$1.ZodOptional<z$1.ZodObject<{
2356
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2357
+ text: z$1.ZodString;
2358
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2359
+ }, z$1.core.$strip>>;
2360
+ }, z$1.core.$strip>;
2361
+ response: z$1.ZodOptional<z$1.ZodObject<{
2362
+ status: z$1.ZodNumber;
2363
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2364
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2365
+ body: z$1.ZodOptional<z$1.ZodObject<{
2366
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2367
+ text: z$1.ZodString;
2368
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2369
+ }, z$1.core.$strip>>;
2370
+ }, z$1.core.$strip>>;
2371
+ error: z$1.ZodOptional<z$1.ZodObject<{
2372
+ code: z$1.ZodOptional<z$1.ZodString>;
2373
+ message: z$1.ZodString;
2374
+ }, z$1.core.$strip>>;
2375
+ }, z$1.core.$strip>>>;
2376
+ }, z$1.core.$strip>;
2377
+ }, z$1.core.$strip>;
2378
+ 'slates/config.changed': z$1.ZodObject<{
2379
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2380
+ id: z$1.ZodString;
2381
+ result: z$1.ZodObject<{
2382
+ success: z$1.ZodBoolean;
2383
+ config: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2384
+ errors: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2385
+ code: z$1.ZodString;
2386
+ message: z$1.ZodString;
2387
+ path: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2388
+ }, z$1.core.$strip>>>;
2389
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2390
+ startedAt: z$1.ZodString;
2391
+ durationMs: z$1.ZodNumber;
2392
+ request: z$1.ZodObject<{
2393
+ method: z$1.ZodString;
2394
+ url: z$1.ZodString;
2395
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2396
+ body: z$1.ZodOptional<z$1.ZodObject<{
2397
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2398
+ text: z$1.ZodString;
2399
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2400
+ }, z$1.core.$strip>>;
2401
+ }, z$1.core.$strip>;
2402
+ response: z$1.ZodOptional<z$1.ZodObject<{
2403
+ status: z$1.ZodNumber;
2404
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2405
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2406
+ body: z$1.ZodOptional<z$1.ZodObject<{
2407
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2408
+ text: z$1.ZodString;
2409
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2410
+ }, z$1.core.$strip>>;
2411
+ }, z$1.core.$strip>>;
2412
+ error: z$1.ZodOptional<z$1.ZodObject<{
2413
+ code: z$1.ZodOptional<z$1.ZodString>;
2414
+ message: z$1.ZodString;
2415
+ }, z$1.core.$strip>>;
2416
+ }, z$1.core.$strip>>>;
2417
+ }, z$1.core.$strip>;
2418
+ }, z$1.core.$strip>;
2419
+ 'slates/auth.methods.list': z$1.ZodObject<{
2420
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2421
+ id: z$1.ZodString;
2422
+ result: z$1.ZodObject<{
2423
+ authenticationMethods: z$1.ZodArray<z$1.ZodObject<{
2424
+ id: z$1.ZodString;
2425
+ name: z$1.ZodString;
2426
+ type: z$1.ZodUnion<readonly [z$1.ZodLiteral<"auth.oauth">, z$1.ZodLiteral<"auth.token">, z$1.ZodLiteral<"auth.service_account">, z$1.ZodLiteral<"auth.custom">]>;
2427
+ scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2428
+ id: z$1.ZodString;
2429
+ title: z$1.ZodString;
2430
+ description: z$1.ZodOptional<z$1.ZodString>;
2431
+ defaultChecked: z$1.ZodOptional<z$1.ZodBoolean>;
2432
+ }, z$1.core.$strip>>>;
2433
+ inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2434
+ outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2435
+ capabilities: z$1.ZodObject<{
2436
+ getDefaultInput: z$1.ZodOptional<z$1.ZodObject<{
2437
+ enabled: z$1.ZodBoolean;
2438
+ }, z$1.core.$strip>>;
2439
+ handleChangedInput: z$1.ZodOptional<z$1.ZodObject<{
2440
+ enabled: z$1.ZodBoolean;
2441
+ }, z$1.core.$strip>>;
2442
+ handleTokenRefresh: z$1.ZodOptional<z$1.ZodObject<{
2443
+ enabled: z$1.ZodBoolean;
2444
+ }, z$1.core.$strip>>;
2445
+ getProfile: z$1.ZodOptional<z$1.ZodObject<{
2446
+ enabled: z$1.ZodBoolean;
2447
+ }, z$1.core.$strip>>;
2448
+ }, z$1.core.$strip>;
2449
+ docs: z$1.ZodArray<z$1.ZodObject<{
2450
+ type: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodLiteral<"docs.auth.oauth">, z$1.ZodLiteral<"docs.auth.oauth_scopes">, z$1.ZodLiteral<"docs.auth.token">, z$1.ZodLiteral<"docs.auth.service_account">, z$1.ZodLiteral<"docs.auth.custom">]>>;
2451
+ name: z$1.ZodString;
2452
+ url: z$1.ZodString;
2453
+ }, z$1.core.$strip>>;
2454
+ }, z$1.core.$strip>>;
2455
+ }, z$1.core.$strip>;
2456
+ }, z$1.core.$strip>;
2457
+ 'slates/auth.method.get': z$1.ZodObject<{
2458
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2459
+ id: z$1.ZodString;
2460
+ result: z$1.ZodObject<{
2461
+ authenticationMethod: z$1.ZodObject<{
2462
+ id: z$1.ZodString;
2463
+ name: z$1.ZodString;
2464
+ type: z$1.ZodUnion<readonly [z$1.ZodLiteral<"auth.oauth">, z$1.ZodLiteral<"auth.token">, z$1.ZodLiteral<"auth.service_account">, z$1.ZodLiteral<"auth.custom">]>;
2465
+ scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2466
+ id: z$1.ZodString;
2467
+ title: z$1.ZodString;
2468
+ description: z$1.ZodOptional<z$1.ZodString>;
2469
+ defaultChecked: z$1.ZodOptional<z$1.ZodBoolean>;
2470
+ }, z$1.core.$strip>>>;
2471
+ inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2472
+ outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2473
+ capabilities: z$1.ZodObject<{
2474
+ getDefaultInput: z$1.ZodOptional<z$1.ZodObject<{
2475
+ enabled: z$1.ZodBoolean;
2476
+ }, z$1.core.$strip>>;
2477
+ handleChangedInput: z$1.ZodOptional<z$1.ZodObject<{
2478
+ enabled: z$1.ZodBoolean;
2479
+ }, z$1.core.$strip>>;
2480
+ handleTokenRefresh: z$1.ZodOptional<z$1.ZodObject<{
2481
+ enabled: z$1.ZodBoolean;
2482
+ }, z$1.core.$strip>>;
2483
+ getProfile: z$1.ZodOptional<z$1.ZodObject<{
2484
+ enabled: z$1.ZodBoolean;
2485
+ }, z$1.core.$strip>>;
2486
+ }, z$1.core.$strip>;
2487
+ docs: z$1.ZodArray<z$1.ZodObject<{
2488
+ type: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodLiteral<"docs.auth.oauth">, z$1.ZodLiteral<"docs.auth.oauth_scopes">, z$1.ZodLiteral<"docs.auth.token">, z$1.ZodLiteral<"docs.auth.service_account">, z$1.ZodLiteral<"docs.auth.custom">]>>;
2489
+ name: z$1.ZodString;
2490
+ url: z$1.ZodString;
2491
+ }, z$1.core.$strip>>;
2492
+ }, z$1.core.$strip>;
2493
+ }, z$1.core.$strip>;
2494
+ }, z$1.core.$strip>;
2495
+ 'slates/auth.input.changed': z$1.ZodObject<{
2496
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2497
+ id: z$1.ZodString;
2498
+ result: z$1.ZodObject<{
2499
+ input: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2500
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2501
+ startedAt: z$1.ZodString;
2502
+ durationMs: z$1.ZodNumber;
2503
+ request: z$1.ZodObject<{
2504
+ method: z$1.ZodString;
2505
+ url: z$1.ZodString;
2506
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2507
+ body: z$1.ZodOptional<z$1.ZodObject<{
2508
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2509
+ text: z$1.ZodString;
2510
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2511
+ }, z$1.core.$strip>>;
2512
+ }, z$1.core.$strip>;
2513
+ response: z$1.ZodOptional<z$1.ZodObject<{
2514
+ status: z$1.ZodNumber;
2515
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2516
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2517
+ body: z$1.ZodOptional<z$1.ZodObject<{
2518
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2519
+ text: z$1.ZodString;
2520
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2521
+ }, z$1.core.$strip>>;
2522
+ }, z$1.core.$strip>>;
2523
+ error: z$1.ZodOptional<z$1.ZodObject<{
2524
+ code: z$1.ZodOptional<z$1.ZodString>;
2525
+ message: z$1.ZodString;
2526
+ }, z$1.core.$strip>>;
2527
+ }, z$1.core.$strip>>>;
2528
+ }, z$1.core.$strip>;
2529
+ }, z$1.core.$strip>;
2530
+ 'slates/auth.input.get_default': z$1.ZodObject<{
2531
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2532
+ id: z$1.ZodString;
2533
+ result: z$1.ZodObject<{
2534
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2535
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2536
+ startedAt: z$1.ZodString;
2537
+ durationMs: z$1.ZodNumber;
2538
+ request: z$1.ZodObject<{
2539
+ method: z$1.ZodString;
2540
+ url: z$1.ZodString;
2541
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2542
+ body: z$1.ZodOptional<z$1.ZodObject<{
2543
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2544
+ text: z$1.ZodString;
2545
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2546
+ }, z$1.core.$strip>>;
2547
+ }, z$1.core.$strip>;
2548
+ response: z$1.ZodOptional<z$1.ZodObject<{
2549
+ status: z$1.ZodNumber;
2550
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2551
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2552
+ body: z$1.ZodOptional<z$1.ZodObject<{
2553
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2554
+ text: z$1.ZodString;
2555
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2556
+ }, z$1.core.$strip>>;
2557
+ }, z$1.core.$strip>>;
2558
+ error: z$1.ZodOptional<z$1.ZodObject<{
2559
+ code: z$1.ZodOptional<z$1.ZodString>;
2560
+ message: z$1.ZodString;
2561
+ }, z$1.core.$strip>>;
2562
+ }, z$1.core.$strip>>>;
2563
+ }, z$1.core.$strip>;
2564
+ }, z$1.core.$strip>;
2565
+ 'slates/auth.authorization_url.get': z$1.ZodObject<{
2566
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2567
+ id: z$1.ZodString;
2568
+ result: z$1.ZodObject<{
2569
+ authorizationUrl: z$1.ZodString;
2570
+ input: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2571
+ callbackState: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2572
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2573
+ startedAt: z$1.ZodString;
2574
+ durationMs: z$1.ZodNumber;
2575
+ request: z$1.ZodObject<{
2576
+ method: z$1.ZodString;
2577
+ url: z$1.ZodString;
2578
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2579
+ body: z$1.ZodOptional<z$1.ZodObject<{
2580
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2581
+ text: z$1.ZodString;
2582
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2583
+ }, z$1.core.$strip>>;
2584
+ }, z$1.core.$strip>;
2585
+ response: z$1.ZodOptional<z$1.ZodObject<{
2586
+ status: z$1.ZodNumber;
2587
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2588
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2589
+ body: z$1.ZodOptional<z$1.ZodObject<{
2590
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2591
+ text: z$1.ZodString;
2592
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2593
+ }, z$1.core.$strip>>;
2594
+ }, z$1.core.$strip>>;
2595
+ error: z$1.ZodOptional<z$1.ZodObject<{
2596
+ code: z$1.ZodOptional<z$1.ZodString>;
2597
+ message: z$1.ZodString;
2598
+ }, z$1.core.$strip>>;
2599
+ }, z$1.core.$strip>>>;
2600
+ }, z$1.core.$strip>;
2601
+ }, z$1.core.$strip>;
2602
+ 'slates/auth.authorization_callback.handle': z$1.ZodObject<{
2603
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2604
+ id: z$1.ZodString;
2605
+ result: z$1.ZodObject<{
2606
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2607
+ input: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2608
+ scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2609
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2610
+ startedAt: z$1.ZodString;
2611
+ durationMs: z$1.ZodNumber;
2612
+ request: z$1.ZodObject<{
2613
+ method: z$1.ZodString;
2614
+ url: z$1.ZodString;
2615
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2616
+ body: z$1.ZodOptional<z$1.ZodObject<{
2617
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2618
+ text: z$1.ZodString;
2619
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2620
+ }, z$1.core.$strip>>;
2621
+ }, z$1.core.$strip>;
2622
+ response: z$1.ZodOptional<z$1.ZodObject<{
2623
+ status: z$1.ZodNumber;
2624
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2625
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2626
+ body: z$1.ZodOptional<z$1.ZodObject<{
2627
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2628
+ text: z$1.ZodString;
2629
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2630
+ }, z$1.core.$strip>>;
2631
+ }, z$1.core.$strip>>;
2632
+ error: z$1.ZodOptional<z$1.ZodObject<{
2633
+ code: z$1.ZodOptional<z$1.ZodString>;
2634
+ message: z$1.ZodString;
2635
+ }, z$1.core.$strip>>;
2636
+ }, z$1.core.$strip>>>;
2637
+ }, z$1.core.$strip>;
2638
+ }, z$1.core.$strip>;
2639
+ 'slates/auth.token_refresh.handle': z$1.ZodObject<{
2640
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2641
+ id: z$1.ZodString;
2642
+ result: z$1.ZodObject<{
2643
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2644
+ input: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2645
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2646
+ startedAt: z$1.ZodString;
2647
+ durationMs: z$1.ZodNumber;
2648
+ request: z$1.ZodObject<{
2649
+ method: z$1.ZodString;
2650
+ url: z$1.ZodString;
2651
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2652
+ body: z$1.ZodOptional<z$1.ZodObject<{
2653
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2654
+ text: z$1.ZodString;
2655
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2656
+ }, z$1.core.$strip>>;
2657
+ }, z$1.core.$strip>;
2658
+ response: z$1.ZodOptional<z$1.ZodObject<{
2659
+ status: z$1.ZodNumber;
2660
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2661
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2662
+ body: z$1.ZodOptional<z$1.ZodObject<{
2663
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2664
+ text: z$1.ZodString;
2665
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2666
+ }, z$1.core.$strip>>;
2667
+ }, z$1.core.$strip>>;
2668
+ error: z$1.ZodOptional<z$1.ZodObject<{
2669
+ code: z$1.ZodOptional<z$1.ZodString>;
2670
+ message: z$1.ZodString;
2671
+ }, z$1.core.$strip>>;
2672
+ }, z$1.core.$strip>>>;
2673
+ }, z$1.core.$strip>;
2674
+ }, z$1.core.$strip>;
2675
+ 'slates/auth.profile.get': z$1.ZodObject<{
2676
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2677
+ id: z$1.ZodString;
2678
+ result: z$1.ZodObject<{
2679
+ profile: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2680
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2681
+ startedAt: z$1.ZodString;
2682
+ durationMs: z$1.ZodNumber;
2683
+ request: z$1.ZodObject<{
2684
+ method: z$1.ZodString;
2685
+ url: z$1.ZodString;
2686
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2687
+ body: z$1.ZodOptional<z$1.ZodObject<{
2688
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2689
+ text: z$1.ZodString;
2690
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2691
+ }, z$1.core.$strip>>;
2692
+ }, z$1.core.$strip>;
2693
+ response: z$1.ZodOptional<z$1.ZodObject<{
2694
+ status: z$1.ZodNumber;
2695
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2696
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2697
+ body: z$1.ZodOptional<z$1.ZodObject<{
2698
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2699
+ text: z$1.ZodString;
2700
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2701
+ }, z$1.core.$strip>>;
2702
+ }, z$1.core.$strip>>;
2703
+ error: z$1.ZodOptional<z$1.ZodObject<{
2704
+ code: z$1.ZodOptional<z$1.ZodString>;
2705
+ message: z$1.ZodString;
2706
+ }, z$1.core.$strip>>;
2707
+ }, z$1.core.$strip>>>;
2708
+ }, z$1.core.$strip>;
2709
+ }, z$1.core.$strip>;
2710
+ 'slates/auth.output.get': z$1.ZodObject<{
2711
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2712
+ id: z$1.ZodString;
2713
+ result: z$1.ZodObject<{
2714
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2715
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2716
+ startedAt: z$1.ZodString;
2717
+ durationMs: z$1.ZodNumber;
2718
+ request: z$1.ZodObject<{
2719
+ method: z$1.ZodString;
2720
+ url: z$1.ZodString;
2721
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2722
+ body: z$1.ZodOptional<z$1.ZodObject<{
2723
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2724
+ text: z$1.ZodString;
2725
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2726
+ }, z$1.core.$strip>>;
2727
+ }, z$1.core.$strip>;
2728
+ response: z$1.ZodOptional<z$1.ZodObject<{
2729
+ status: z$1.ZodNumber;
2730
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2731
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2732
+ body: z$1.ZodOptional<z$1.ZodObject<{
2733
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2734
+ text: z$1.ZodString;
2735
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2736
+ }, z$1.core.$strip>>;
2737
+ }, z$1.core.$strip>>;
2738
+ error: z$1.ZodOptional<z$1.ZodObject<{
2739
+ code: z$1.ZodOptional<z$1.ZodString>;
2740
+ message: z$1.ZodString;
2741
+ }, z$1.core.$strip>>;
2742
+ }, z$1.core.$strip>>>;
2743
+ }, z$1.core.$strip>;
2744
+ }, z$1.core.$strip>;
2745
+ 'slates/actions.list': z$1.ZodObject<{
2746
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2747
+ id: z$1.ZodString;
2748
+ result: z$1.ZodObject<{
2749
+ actions: z$1.ZodArray<z$1.ZodUnion<readonly [z$1.ZodObject<{
2750
+ id: z$1.ZodString;
2751
+ name: z$1.ZodString;
2752
+ description: z$1.ZodOptional<z$1.ZodString>;
2753
+ instructions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2754
+ constraints: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2755
+ tags: z$1.ZodOptional<z$1.ZodObject<{
2756
+ destructive: z$1.ZodOptional<z$1.ZodBoolean>;
2757
+ readOnly: z$1.ZodOptional<z$1.ZodBoolean>;
2758
+ }, z$1.core.$strip>>;
2759
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2760
+ scopes: z$1.ZodOptional<z$1.ZodObject<{
2761
+ AND: z$1.ZodArray<z$1.ZodObject<{
2762
+ OR: z$1.ZodArray<z$1.ZodString>;
2763
+ }, z$1.core.$strip>>;
2764
+ }, z$1.core.$strip>>;
2765
+ inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2766
+ outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2767
+ docs: z$1.ZodArray<z$1.ZodObject<{
2768
+ type: z$1.ZodOptional<z$1.ZodLiteral<"docs.action.general">>;
2769
+ name: z$1.ZodString;
2770
+ url: z$1.ZodString;
2771
+ }, z$1.core.$strip>>;
2772
+ type: z$1.ZodLiteral<"action.tool">;
2773
+ capabilities: z$1.ZodObject<{}, z$1.core.$strip>;
2774
+ }, z$1.core.$strip>, z$1.ZodObject<{
2775
+ id: z$1.ZodString;
2776
+ name: z$1.ZodString;
2777
+ description: z$1.ZodOptional<z$1.ZodString>;
2778
+ instructions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2779
+ constraints: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2780
+ tags: z$1.ZodOptional<z$1.ZodObject<{
2781
+ destructive: z$1.ZodOptional<z$1.ZodBoolean>;
2782
+ readOnly: z$1.ZodOptional<z$1.ZodBoolean>;
2783
+ }, z$1.core.$strip>>;
2784
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2785
+ scopes: z$1.ZodOptional<z$1.ZodObject<{
2786
+ AND: z$1.ZodArray<z$1.ZodObject<{
2787
+ OR: z$1.ZodArray<z$1.ZodString>;
2788
+ }, z$1.core.$strip>>;
2789
+ }, z$1.core.$strip>>;
2790
+ inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2791
+ outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2792
+ docs: z$1.ZodArray<z$1.ZodObject<{
2793
+ type: z$1.ZodOptional<z$1.ZodLiteral<"docs.action.general">>;
2794
+ name: z$1.ZodString;
2795
+ url: z$1.ZodString;
2796
+ }, z$1.core.$strip>>;
2797
+ type: z$1.ZodLiteral<"action.trigger">;
2798
+ capabilities: z$1.ZodObject<{}, z$1.core.$strip>;
2799
+ invocation: z$1.ZodUnion<readonly [z$1.ZodObject<{
2800
+ type: z$1.ZodLiteral<"polling">;
2801
+ intervalSeconds: z$1.ZodNumber;
2802
+ }, z$1.core.$strip>, z$1.ZodObject<{
2803
+ type: z$1.ZodLiteral<"webhook">;
2804
+ autoRegistration: z$1.ZodBoolean;
2805
+ autoUnregistration: z$1.ZodBoolean;
2806
+ }, z$1.core.$strip>]>;
2807
+ }, z$1.core.$strip>]>>;
2808
+ }, z$1.core.$strip>;
2809
+ }, z$1.core.$strip>;
2810
+ 'slates/action.get': z$1.ZodObject<{
2811
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2812
+ id: z$1.ZodString;
2813
+ result: z$1.ZodObject<{
2814
+ action: z$1.ZodUnion<readonly [z$1.ZodObject<{
2815
+ id: z$1.ZodString;
2816
+ name: z$1.ZodString;
2817
+ description: z$1.ZodOptional<z$1.ZodString>;
2818
+ instructions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2819
+ constraints: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2820
+ tags: z$1.ZodOptional<z$1.ZodObject<{
2821
+ destructive: z$1.ZodOptional<z$1.ZodBoolean>;
2822
+ readOnly: z$1.ZodOptional<z$1.ZodBoolean>;
2823
+ }, z$1.core.$strip>>;
2824
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2825
+ scopes: z$1.ZodOptional<z$1.ZodObject<{
2826
+ AND: z$1.ZodArray<z$1.ZodObject<{
2827
+ OR: z$1.ZodArray<z$1.ZodString>;
2828
+ }, z$1.core.$strip>>;
2829
+ }, z$1.core.$strip>>;
2830
+ inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2831
+ outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2832
+ docs: z$1.ZodArray<z$1.ZodObject<{
2833
+ type: z$1.ZodOptional<z$1.ZodLiteral<"docs.action.general">>;
2834
+ name: z$1.ZodString;
2835
+ url: z$1.ZodString;
2836
+ }, z$1.core.$strip>>;
2837
+ type: z$1.ZodLiteral<"action.tool">;
2838
+ capabilities: z$1.ZodObject<{}, z$1.core.$strip>;
2839
+ }, z$1.core.$strip>, z$1.ZodObject<{
2840
+ id: z$1.ZodString;
2841
+ name: z$1.ZodString;
2842
+ description: z$1.ZodOptional<z$1.ZodString>;
2843
+ instructions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2844
+ constraints: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2845
+ tags: z$1.ZodOptional<z$1.ZodObject<{
2846
+ destructive: z$1.ZodOptional<z$1.ZodBoolean>;
2847
+ readOnly: z$1.ZodOptional<z$1.ZodBoolean>;
2848
+ }, z$1.core.$strip>>;
2849
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2850
+ scopes: z$1.ZodOptional<z$1.ZodObject<{
2851
+ AND: z$1.ZodArray<z$1.ZodObject<{
2852
+ OR: z$1.ZodArray<z$1.ZodString>;
2853
+ }, z$1.core.$strip>>;
2854
+ }, z$1.core.$strip>>;
2855
+ inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2856
+ outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2857
+ docs: z$1.ZodArray<z$1.ZodObject<{
2858
+ type: z$1.ZodOptional<z$1.ZodLiteral<"docs.action.general">>;
2859
+ name: z$1.ZodString;
2860
+ url: z$1.ZodString;
2861
+ }, z$1.core.$strip>>;
2862
+ type: z$1.ZodLiteral<"action.trigger">;
2863
+ capabilities: z$1.ZodObject<{}, z$1.core.$strip>;
2864
+ invocation: z$1.ZodUnion<readonly [z$1.ZodObject<{
2865
+ type: z$1.ZodLiteral<"polling">;
2866
+ intervalSeconds: z$1.ZodNumber;
2867
+ }, z$1.core.$strip>, z$1.ZodObject<{
2868
+ type: z$1.ZodLiteral<"webhook">;
2869
+ autoRegistration: z$1.ZodBoolean;
2870
+ autoUnregistration: z$1.ZodBoolean;
2871
+ }, z$1.core.$strip>]>;
2872
+ }, z$1.core.$strip>]>;
2873
+ }, z$1.core.$strip>;
2874
+ }, z$1.core.$strip>;
2875
+ 'slates/action.tool.invoke': z$1.ZodObject<{
2876
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2877
+ id: z$1.ZodString;
2878
+ result: z$1.ZodObject<{
2879
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2880
+ message: z$1.ZodOptional<z$1.ZodString>;
2881
+ attachments: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2882
+ mimeType: z$1.ZodOptional<z$1.ZodString>;
2883
+ content: z$1.ZodUnion<readonly [z$1.ZodObject<{
2884
+ type: z$1.ZodLiteral<"url">;
2885
+ url: z$1.ZodString;
2886
+ }, z$1.core.$strip>, z$1.ZodObject<{
2887
+ type: z$1.ZodLiteral<"content">;
2888
+ encoding: z$1.ZodUnion<readonly [z$1.ZodLiteral<"base64">, z$1.ZodLiteral<"utf-8">]>;
2889
+ content: z$1.ZodString;
2890
+ }, z$1.core.$strip>]>;
2891
+ }, z$1.core.$strip>>>;
2892
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2893
+ startedAt: z$1.ZodString;
2894
+ durationMs: z$1.ZodNumber;
2895
+ request: z$1.ZodObject<{
2896
+ method: z$1.ZodString;
2897
+ url: z$1.ZodString;
2898
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2899
+ body: z$1.ZodOptional<z$1.ZodObject<{
2900
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2901
+ text: z$1.ZodString;
2902
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2903
+ }, z$1.core.$strip>>;
2904
+ }, z$1.core.$strip>;
2905
+ response: z$1.ZodOptional<z$1.ZodObject<{
2906
+ status: z$1.ZodNumber;
2907
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2908
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2909
+ body: z$1.ZodOptional<z$1.ZodObject<{
2910
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2911
+ text: z$1.ZodString;
2912
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2913
+ }, z$1.core.$strip>>;
2914
+ }, z$1.core.$strip>>;
2915
+ error: z$1.ZodOptional<z$1.ZodObject<{
2916
+ code: z$1.ZodOptional<z$1.ZodString>;
2917
+ message: z$1.ZodString;
2918
+ }, z$1.core.$strip>>;
2919
+ }, z$1.core.$strip>>>;
2920
+ }, z$1.core.$strip>;
2921
+ }, z$1.core.$strip>;
2922
+ 'slates/action.trigger.map_event': z$1.ZodObject<{
2923
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2924
+ id: z$1.ZodString;
2925
+ result: z$1.ZodObject<{
2926
+ type: z$1.ZodString;
2927
+ id: z$1.ZodString;
2928
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
2929
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2930
+ startedAt: z$1.ZodString;
2931
+ durationMs: z$1.ZodNumber;
2932
+ request: z$1.ZodObject<{
2933
+ method: z$1.ZodString;
2934
+ url: z$1.ZodString;
2935
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2936
+ body: z$1.ZodOptional<z$1.ZodObject<{
2937
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2938
+ text: z$1.ZodString;
2939
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2940
+ }, z$1.core.$strip>>;
2941
+ }, z$1.core.$strip>;
2942
+ response: z$1.ZodOptional<z$1.ZodObject<{
2943
+ status: z$1.ZodNumber;
2944
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2945
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2946
+ body: z$1.ZodOptional<z$1.ZodObject<{
2947
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2948
+ text: z$1.ZodString;
2949
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2950
+ }, z$1.core.$strip>>;
2951
+ }, z$1.core.$strip>>;
2952
+ error: z$1.ZodOptional<z$1.ZodObject<{
2953
+ code: z$1.ZodOptional<z$1.ZodString>;
2954
+ message: z$1.ZodString;
2955
+ }, z$1.core.$strip>>;
2956
+ }, z$1.core.$strip>>>;
2957
+ }, z$1.core.$strip>;
2958
+ }, z$1.core.$strip>;
2959
+ 'slates/action.trigger.poll_events': z$1.ZodObject<{
2960
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2961
+ id: z$1.ZodString;
2962
+ result: z$1.ZodObject<{
2963
+ inputs: z$1.ZodArray<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
2964
+ updatedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodAny>>;
2965
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
2966
+ startedAt: z$1.ZodString;
2967
+ durationMs: z$1.ZodNumber;
2968
+ request: z$1.ZodObject<{
2969
+ method: z$1.ZodString;
2970
+ url: z$1.ZodString;
2971
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2972
+ body: z$1.ZodOptional<z$1.ZodObject<{
2973
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2974
+ text: z$1.ZodString;
2975
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2976
+ }, z$1.core.$strip>>;
2977
+ }, z$1.core.$strip>;
2978
+ response: z$1.ZodOptional<z$1.ZodObject<{
2979
+ status: z$1.ZodNumber;
2980
+ statusText: z$1.ZodOptional<z$1.ZodString>;
2981
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
2982
+ body: z$1.ZodOptional<z$1.ZodObject<{
2983
+ contentType: z$1.ZodOptional<z$1.ZodString>;
2984
+ text: z$1.ZodString;
2985
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
2986
+ }, z$1.core.$strip>>;
2987
+ }, z$1.core.$strip>>;
2988
+ error: z$1.ZodOptional<z$1.ZodObject<{
2989
+ code: z$1.ZodOptional<z$1.ZodString>;
2990
+ message: z$1.ZodString;
2991
+ }, z$1.core.$strip>>;
2992
+ }, z$1.core.$strip>>>;
2993
+ }, z$1.core.$strip>;
2994
+ }, z$1.core.$strip>;
2995
+ 'slates/action.trigger.webhook_handle': z$1.ZodObject<{
2996
+ jsonrpc: z$1.ZodLiteral<"2.0">;
2997
+ id: z$1.ZodString;
2998
+ result: z$1.ZodObject<{
2999
+ inputs: z$1.ZodArray<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
3000
+ updatedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodAny>>;
3001
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
3002
+ startedAt: z$1.ZodString;
3003
+ durationMs: z$1.ZodNumber;
3004
+ request: z$1.ZodObject<{
3005
+ method: z$1.ZodString;
3006
+ url: z$1.ZodString;
3007
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3008
+ body: z$1.ZodOptional<z$1.ZodObject<{
3009
+ contentType: z$1.ZodOptional<z$1.ZodString>;
3010
+ text: z$1.ZodString;
3011
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
3012
+ }, z$1.core.$strip>>;
3013
+ }, z$1.core.$strip>;
3014
+ response: z$1.ZodOptional<z$1.ZodObject<{
3015
+ status: z$1.ZodNumber;
3016
+ statusText: z$1.ZodOptional<z$1.ZodString>;
3017
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3018
+ body: z$1.ZodOptional<z$1.ZodObject<{
3019
+ contentType: z$1.ZodOptional<z$1.ZodString>;
3020
+ text: z$1.ZodString;
3021
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
3022
+ }, z$1.core.$strip>>;
3023
+ }, z$1.core.$strip>>;
3024
+ error: z$1.ZodOptional<z$1.ZodObject<{
3025
+ code: z$1.ZodOptional<z$1.ZodString>;
3026
+ message: z$1.ZodString;
3027
+ }, z$1.core.$strip>>;
3028
+ }, z$1.core.$strip>>>;
3029
+ }, z$1.core.$strip>;
3030
+ }, z$1.core.$strip>;
3031
+ 'slates/action.trigger.webhook_register': z$1.ZodObject<{
3032
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3033
+ id: z$1.ZodString;
3034
+ result: z$1.ZodObject<{
3035
+ registrationDetails: z$1.ZodAny;
3036
+ state: z$1.ZodOptional<z$1.ZodAny>;
3037
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
3038
+ startedAt: z$1.ZodString;
3039
+ durationMs: z$1.ZodNumber;
3040
+ request: z$1.ZodObject<{
3041
+ method: z$1.ZodString;
3042
+ url: z$1.ZodString;
3043
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3044
+ body: z$1.ZodOptional<z$1.ZodObject<{
3045
+ contentType: z$1.ZodOptional<z$1.ZodString>;
3046
+ text: z$1.ZodString;
3047
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
3048
+ }, z$1.core.$strip>>;
3049
+ }, z$1.core.$strip>;
3050
+ response: z$1.ZodOptional<z$1.ZodObject<{
3051
+ status: z$1.ZodNumber;
3052
+ statusText: z$1.ZodOptional<z$1.ZodString>;
3053
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3054
+ body: z$1.ZodOptional<z$1.ZodObject<{
3055
+ contentType: z$1.ZodOptional<z$1.ZodString>;
3056
+ text: z$1.ZodString;
3057
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
3058
+ }, z$1.core.$strip>>;
3059
+ }, z$1.core.$strip>>;
3060
+ error: z$1.ZodOptional<z$1.ZodObject<{
3061
+ code: z$1.ZodOptional<z$1.ZodString>;
3062
+ message: z$1.ZodString;
3063
+ }, z$1.core.$strip>>;
3064
+ }, z$1.core.$strip>>>;
3065
+ }, z$1.core.$strip>;
3066
+ }, z$1.core.$strip>;
3067
+ 'slates/action.trigger.webhook_unregister': z$1.ZodObject<{
3068
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3069
+ id: z$1.ZodString;
3070
+ result: z$1.ZodObject<{
3071
+ requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
3072
+ startedAt: z$1.ZodString;
3073
+ durationMs: z$1.ZodNumber;
3074
+ request: z$1.ZodObject<{
3075
+ method: z$1.ZodString;
3076
+ url: z$1.ZodString;
3077
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3078
+ body: z$1.ZodOptional<z$1.ZodObject<{
3079
+ contentType: z$1.ZodOptional<z$1.ZodString>;
3080
+ text: z$1.ZodString;
3081
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
3082
+ }, z$1.core.$strip>>;
3083
+ }, z$1.core.$strip>;
3084
+ response: z$1.ZodOptional<z$1.ZodObject<{
3085
+ status: z$1.ZodNumber;
3086
+ statusText: z$1.ZodOptional<z$1.ZodString>;
3087
+ headers: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3088
+ body: z$1.ZodOptional<z$1.ZodObject<{
3089
+ contentType: z$1.ZodOptional<z$1.ZodString>;
3090
+ text: z$1.ZodString;
3091
+ truncated: z$1.ZodOptional<z$1.ZodBoolean>;
3092
+ }, z$1.core.$strip>>;
3093
+ }, z$1.core.$strip>>;
3094
+ error: z$1.ZodOptional<z$1.ZodObject<{
3095
+ code: z$1.ZodOptional<z$1.ZodString>;
3096
+ message: z$1.ZodString;
3097
+ }, z$1.core.$strip>>;
3098
+ }, z$1.core.$strip>>>;
3099
+ }, z$1.core.$strip>;
3100
+ }, z$1.core.$strip>;
3101
+ };
3102
+ declare let slatesRequestsByMethod: {
3103
+ 'slates/provider.identify': z$1.ZodObject<{
3104
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3105
+ method: z$1.ZodLiteral<"slates/provider.identify">;
3106
+ id: z$1.ZodString;
3107
+ params: z$1.ZodObject<{}, z$1.core.$strip>;
3108
+ }, z$1.core.$strip>;
3109
+ 'slates/config.schema.get': z$1.ZodObject<{
3110
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3111
+ method: z$1.ZodLiteral<"slates/config.schema.get">;
3112
+ id: z$1.ZodString;
3113
+ params: z$1.ZodObject<{}, z$1.core.$strip>;
3114
+ }, z$1.core.$strip>;
3115
+ 'slates/config.get_default': z$1.ZodObject<{
3116
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3117
+ method: z$1.ZodLiteral<"slates/config.get_default">;
3118
+ id: z$1.ZodString;
3119
+ params: z$1.ZodObject<{}, z$1.core.$strip>;
3120
+ }, z$1.core.$strip>;
3121
+ 'slates/config.changed': z$1.ZodObject<{
3122
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3123
+ method: z$1.ZodLiteral<"slates/config.changed">;
3124
+ id: z$1.ZodString;
3125
+ params: z$1.ZodObject<{
3126
+ previousConfig: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
3127
+ newConfig: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3128
+ }, z$1.core.$strip>;
3129
+ }, z$1.core.$strip>;
3130
+ 'slates/auth.methods.list': z$1.ZodObject<{
3131
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3132
+ method: z$1.ZodLiteral<"slates/auth.methods.list">;
3133
+ id: z$1.ZodString;
3134
+ params: z$1.ZodObject<{}, z$1.core.$strip>;
3135
+ }, z$1.core.$strip>;
3136
+ 'slates/auth.method.get': z$1.ZodObject<{
3137
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3138
+ method: z$1.ZodLiteral<"slates/auth.method.get">;
3139
+ id: z$1.ZodString;
3140
+ params: z$1.ZodObject<{
3141
+ authenticationMethodId: z$1.ZodString;
3142
+ }, z$1.core.$strip>;
3143
+ }, z$1.core.$strip>;
3144
+ 'slates/auth.input.changed': z$1.ZodObject<{
3145
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3146
+ method: z$1.ZodLiteral<"slates/auth.input.changed">;
3147
+ id: z$1.ZodString;
3148
+ params: z$1.ZodObject<{
3149
+ authenticationMethodId: z$1.ZodString;
3150
+ previousInput: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
3151
+ newInput: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3152
+ }, z$1.core.$strip>;
3153
+ }, z$1.core.$strip>;
3154
+ 'slates/auth.input.get_default': z$1.ZodObject<{
3155
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3156
+ method: z$1.ZodLiteral<"slates/auth.input.get_default">;
3157
+ id: z$1.ZodString;
3158
+ params: z$1.ZodObject<{
3159
+ authenticationMethodId: z$1.ZodString;
3160
+ }, z$1.core.$strip>;
3161
+ }, z$1.core.$strip>;
3162
+ 'slates/auth.authorization_url.get': z$1.ZodObject<{
3163
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3164
+ method: z$1.ZodLiteral<"slates/auth.authorization_url.get">;
3165
+ id: z$1.ZodString;
3166
+ params: z$1.ZodObject<{
3167
+ authenticationMethodId: z$1.ZodString;
3168
+ redirectUri: z$1.ZodString;
3169
+ state: z$1.ZodString;
3170
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3171
+ clientId: z$1.ZodString;
3172
+ clientSecret: z$1.ZodString;
3173
+ scopes: z$1.ZodArray<z$1.ZodString>;
3174
+ }, z$1.core.$strip>;
3175
+ }, z$1.core.$strip>;
3176
+ 'slates/auth.authorization_callback.handle': z$1.ZodObject<{
3177
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3178
+ method: z$1.ZodLiteral<"slates/auth.authorization_callback.handle">;
3179
+ id: z$1.ZodString;
3180
+ params: z$1.ZodObject<{
3181
+ authenticationMethodId: z$1.ZodString;
3182
+ code: z$1.ZodString;
3183
+ state: z$1.ZodString;
3184
+ redirectUri: z$1.ZodString;
3185
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3186
+ clientId: z$1.ZodString;
3187
+ clientSecret: z$1.ZodString;
3188
+ scopes: z$1.ZodArray<z$1.ZodString>;
3189
+ callbackParams: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
3190
+ callbackState: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
3191
+ }, z$1.core.$strip>;
3192
+ }, z$1.core.$strip>;
3193
+ 'slates/auth.token_refresh.handle': z$1.ZodObject<{
3194
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3195
+ method: z$1.ZodLiteral<"slates/auth.token_refresh.handle">;
3196
+ id: z$1.ZodString;
3197
+ params: z$1.ZodObject<{
3198
+ authenticationMethodId: z$1.ZodString;
3199
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3200
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3201
+ clientId: z$1.ZodString;
3202
+ clientSecret: z$1.ZodString;
3203
+ scopes: z$1.ZodArray<z$1.ZodString>;
3204
+ }, z$1.core.$strip>;
3205
+ }, z$1.core.$strip>;
3206
+ 'slates/auth.profile.get': z$1.ZodObject<{
3207
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3208
+ method: z$1.ZodLiteral<"slates/auth.profile.get">;
3209
+ id: z$1.ZodString;
3210
+ params: z$1.ZodObject<{
3211
+ authenticationMethodId: z$1.ZodString;
3212
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3213
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3214
+ scopes: z$1.ZodArray<z$1.ZodString>;
3215
+ }, z$1.core.$strip>;
3216
+ }, z$1.core.$strip>;
3217
+ 'slates/auth.output.get': z$1.ZodObject<{
3218
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3219
+ method: z$1.ZodLiteral<"slates/auth.output.get">;
3220
+ id: z$1.ZodString;
3221
+ params: z$1.ZodObject<{
3222
+ authenticationMethodId: z$1.ZodString;
3223
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3224
+ }, z$1.core.$strip>;
3225
+ }, z$1.core.$strip>;
3226
+ 'slates/actions.list': z$1.ZodObject<{
3227
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3228
+ method: z$1.ZodLiteral<"slates/actions.list">;
3229
+ id: z$1.ZodString;
3230
+ params: z$1.ZodObject<{}, z$1.core.$strip>;
3231
+ }, z$1.core.$strip>;
3232
+ 'slates/action.get': z$1.ZodObject<{
3233
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3234
+ method: z$1.ZodLiteral<"slates/action.get">;
3235
+ id: z$1.ZodString;
3236
+ params: z$1.ZodObject<{
3237
+ actionId: z$1.ZodString;
3238
+ }, z$1.core.$strip>;
3239
+ }, z$1.core.$strip>;
3240
+ 'slates/action.tool.invoke': z$1.ZodObject<{
3241
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3242
+ method: z$1.ZodLiteral<"slates/action.tool.invoke">;
3243
+ id: z$1.ZodString;
3244
+ params: z$1.ZodObject<{
3245
+ actionId: z$1.ZodString;
3246
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3247
+ }, z$1.core.$strip>;
3248
+ }, z$1.core.$strip>;
3249
+ 'slates/action.trigger.map_event': z$1.ZodObject<{
3250
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3251
+ method: z$1.ZodLiteral<"slates/action.trigger.map_event">;
3252
+ id: z$1.ZodString;
3253
+ params: z$1.ZodObject<{
3254
+ actionId: z$1.ZodString;
3255
+ input: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3256
+ }, z$1.core.$strip>;
3257
+ }, z$1.core.$strip>;
3258
+ 'slates/action.trigger.poll_events': z$1.ZodObject<{
3259
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3260
+ method: z$1.ZodLiteral<"slates/action.trigger.poll_events">;
3261
+ id: z$1.ZodString;
3262
+ params: z$1.ZodObject<{
3263
+ actionId: z$1.ZodString;
3264
+ state: z$1.ZodNullable<z$1.ZodAny>;
3265
+ }, z$1.core.$strip>;
3266
+ }, z$1.core.$strip>;
3267
+ 'slates/action.trigger.webhook_handle': z$1.ZodObject<{
3268
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3269
+ method: z$1.ZodLiteral<"slates/action.trigger.webhook_handle">;
3270
+ id: z$1.ZodString;
3271
+ params: z$1.ZodObject<{
3272
+ actionId: z$1.ZodString;
3273
+ url: z$1.ZodString;
3274
+ method: z$1.ZodString;
3275
+ headers: z$1.ZodRecord<z$1.ZodString, z$1.ZodString>;
3276
+ body: z$1.ZodNullable<z$1.ZodObject<{
3277
+ encoding: z$1.ZodLiteral<"base64">;
3278
+ content: z$1.ZodString;
3279
+ }, z$1.core.$strip>>;
3280
+ state: z$1.ZodNullable<z$1.ZodAny>;
3281
+ }, z$1.core.$strip>;
3282
+ }, z$1.core.$strip>;
3283
+ 'slates/action.trigger.webhook_register': z$1.ZodObject<{
3284
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3285
+ method: z$1.ZodLiteral<"slates/action.trigger.webhook_register">;
3286
+ id: z$1.ZodString;
3287
+ params: z$1.ZodObject<{
3288
+ actionId: z$1.ZodString;
3289
+ webhookBaseUrl: z$1.ZodString;
3290
+ }, z$1.core.$strip>;
3291
+ }, z$1.core.$strip>;
3292
+ 'slates/action.trigger.webhook_unregister': z$1.ZodObject<{
3293
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3294
+ method: z$1.ZodLiteral<"slates/action.trigger.webhook_unregister">;
3295
+ id: z$1.ZodString;
3296
+ params: z$1.ZodObject<{
3297
+ actionId: z$1.ZodString;
3298
+ webhookBaseUrl: z$1.ZodString;
3299
+ registrationDetails: z$1.ZodAny;
3300
+ state: z$1.ZodOptional<z$1.ZodAny>;
3301
+ }, z$1.core.$strip>;
3302
+ }, z$1.core.$strip>;
3303
+ };
3304
+ declare let slatesNotificationsByMethod: {
3305
+ 'slates/hello': z$1.ZodObject<{
3306
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3307
+ method: z$1.ZodLiteral<"slates/hello">;
3308
+ params: z$1.ZodObject<{
3309
+ protocol: z$1.ZodLiteral<"slates@2026-01-01">;
3310
+ }, z$1.core.$strip>;
3311
+ }, z$1.core.$strip>;
3312
+ 'slates/participant.set': z$1.ZodObject<{
3313
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3314
+ method: z$1.ZodLiteral<"slates/participant.set">;
3315
+ params: z$1.ZodObject<{
3316
+ participants: z$1.ZodArray<z$1.ZodObject<{
3317
+ type: z$1.ZodUnion<readonly [z$1.ZodLiteral<"consumer">, z$1.ZodLiteral<"hub">]>;
3318
+ id: z$1.ZodString;
3319
+ name: z$1.ZodString;
3320
+ description: z$1.ZodOptional<z$1.ZodString>;
3321
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
3322
+ }, z$1.core.$strip>>;
3323
+ }, z$1.core.$strip>;
3324
+ }, z$1.core.$strip>;
3325
+ 'slates/session.start': z$1.ZodObject<{
3326
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3327
+ method: z$1.ZodLiteral<"slates/session.start">;
3328
+ params: z$1.ZodObject<{
3329
+ sessionId: z$1.ZodString;
3330
+ state: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3331
+ }, z$1.core.$strip>;
3332
+ }, z$1.core.$strip>;
3333
+ 'slates/config.set': z$1.ZodObject<{
3334
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3335
+ method: z$1.ZodLiteral<"slates/config.set">;
3336
+ params: z$1.ZodObject<{
3337
+ config: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3338
+ }, z$1.core.$strip>;
3339
+ }, z$1.core.$strip>;
3340
+ 'slates/auth.set': z$1.ZodObject<{
3341
+ jsonrpc: z$1.ZodLiteral<"2.0">;
3342
+ method: z$1.ZodLiteral<"slates/auth.set">;
3343
+ params: z$1.ZodObject<{
3344
+ authenticationMethodId: z$1.ZodString;
3345
+ output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
3346
+ }, z$1.core.$strip>;
3347
+ }, z$1.core.$strip>;
3348
+ };
3349
+ type SlatesResponsesByMethod = {
3350
+ [key in keyof typeof slatesResponsesByMethod]: z$1.infer<(typeof slatesResponsesByMethod)[key]>;
3351
+ };
3352
+
3353
+ declare class SlatesProviderProtoHandlerManager {
3354
+ #private;
3355
+ onNotification<Method extends SlatesNotifications['method']>(method: Method, handler: (message: Extract<SlatesNotifications, {
3356
+ method: Method;
3357
+ }>) => void): void;
3358
+ onRequest<Method extends SlatesRequests['method']>(method: Method, cb: (message: Extract<SlatesRequests, {
3359
+ method: Method;
3360
+ }>) => Promise<SlatesResponsesByMethod[Method]['result']>): void;
3361
+ private _handleInput;
3362
+ static handleInput(manager: SlatesProviderProtoHandlerManager, input: SlatesNotifications | SlatesRequests): Promise<{
3363
+ jsonrpc: "2.0";
3364
+ id: any;
3365
+ error: {
3366
+ [key: string]: unknown;
3367
+ code: string;
3368
+ message: string;
3369
+ kind?: string;
3370
+ } | {
3371
+ baggage: {
3372
+ serviceErrorData?: {
3373
+ [k: string]: unknown;
3374
+ } | undefined;
3375
+ serviceError: {
3376
+ code: string;
3377
+ status: number;
3378
+ hint: string | undefined;
3379
+ description: string | undefined;
3380
+ reason: string | undefined;
3381
+ };
3382
+ };
3383
+ issues?: ({
3384
+ message: string;
3385
+ } | {
3386
+ path: string[] | undefined;
3387
+ code: string | undefined;
3388
+ message: string;
3389
+ })[] | undefined;
3390
+ code: string;
3391
+ kind: string;
3392
+ message: string;
3393
+ retryable: boolean;
3394
+ status: number;
3395
+ } | {
3396
+ baggage?: {
3397
+ originalName: string;
3398
+ } | undefined;
3399
+ code: string;
3400
+ kind: string;
3401
+ message: string;
3402
+ retryable: boolean;
3403
+ status: number;
3404
+ };
3405
+ result?: undefined;
3406
+ } | {
3407
+ jsonrpc: "2.0";
3408
+ id: any;
3409
+ result: any;
3410
+ error?: undefined;
3411
+ } | undefined>;
3412
+ }
3413
+ declare let createSlatesProviderProtoHandler: (cb: (manager: SlatesProviderProtoHandlerManager) => Promise<void>) => {
3414
+ run: () => Promise<SlatesProviderProtoHandlerManager>;
3415
+ };
3416
+
3417
+ declare let slatesActionScopeClause: z.ZodObject<{
3418
+ OR: z.ZodArray<z.ZodString>;
3419
+ }, z.core.$strip>;
3420
+ declare let slatesActionScopes: z.ZodObject<{
3421
+ AND: z.ZodArray<z.ZodObject<{
3422
+ OR: z.ZodArray<z.ZodString>;
3423
+ }, z.core.$strip>>;
3424
+ }, z.core.$strip>;
3425
+ declare let slatesActionBase: z.ZodObject<{
3426
+ id: z.ZodString;
3427
+ name: z.ZodString;
3428
+ description: z.ZodOptional<z.ZodString>;
3429
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
3430
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
3431
+ tags: z.ZodOptional<z.ZodObject<{
3432
+ destructive: z.ZodOptional<z.ZodBoolean>;
3433
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3434
+ }, z.core.$strip>>;
3435
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3436
+ scopes: z.ZodOptional<z.ZodObject<{
3437
+ AND: z.ZodArray<z.ZodObject<{
3438
+ OR: z.ZodArray<z.ZodString>;
3439
+ }, z.core.$strip>>;
3440
+ }, z.core.$strip>>;
3441
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3442
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3443
+ docs: z.ZodArray<z.ZodObject<{
3444
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
3445
+ name: z.ZodString;
3446
+ url: z.ZodString;
3447
+ }, z.core.$strip>>;
3448
+ }, z.core.$strip>;
3449
+ declare let slatesActionTool: z.ZodObject<{
3450
+ id: z.ZodString;
3451
+ name: z.ZodString;
3452
+ description: z.ZodOptional<z.ZodString>;
3453
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
3454
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
3455
+ tags: z.ZodOptional<z.ZodObject<{
3456
+ destructive: z.ZodOptional<z.ZodBoolean>;
3457
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3458
+ }, z.core.$strip>>;
3459
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3460
+ scopes: z.ZodOptional<z.ZodObject<{
3461
+ AND: z.ZodArray<z.ZodObject<{
3462
+ OR: z.ZodArray<z.ZodString>;
3463
+ }, z.core.$strip>>;
3464
+ }, z.core.$strip>>;
3465
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3466
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3467
+ docs: z.ZodArray<z.ZodObject<{
3468
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
3469
+ name: z.ZodString;
3470
+ url: z.ZodString;
3471
+ }, z.core.$strip>>;
3472
+ type: z.ZodLiteral<"action.tool">;
3473
+ capabilities: z.ZodObject<{}, z.core.$strip>;
3474
+ }, z.core.$strip>;
3475
+ declare let slatesActionTrigger: z.ZodObject<{
3476
+ id: z.ZodString;
3477
+ name: z.ZodString;
3478
+ description: z.ZodOptional<z.ZodString>;
3479
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
3480
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
3481
+ tags: z.ZodOptional<z.ZodObject<{
3482
+ destructive: z.ZodOptional<z.ZodBoolean>;
3483
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3484
+ }, z.core.$strip>>;
3485
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3486
+ scopes: z.ZodOptional<z.ZodObject<{
3487
+ AND: z.ZodArray<z.ZodObject<{
3488
+ OR: z.ZodArray<z.ZodString>;
3489
+ }, z.core.$strip>>;
3490
+ }, z.core.$strip>>;
3491
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3492
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3493
+ docs: z.ZodArray<z.ZodObject<{
3494
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
3495
+ name: z.ZodString;
3496
+ url: z.ZodString;
3497
+ }, z.core.$strip>>;
3498
+ type: z.ZodLiteral<"action.trigger">;
3499
+ capabilities: z.ZodObject<{}, z.core.$strip>;
3500
+ invocation: z.ZodUnion<readonly [z.ZodObject<{
3501
+ type: z.ZodLiteral<"polling">;
3502
+ intervalSeconds: z.ZodNumber;
3503
+ }, z.core.$strip>, z.ZodObject<{
3504
+ type: z.ZodLiteral<"webhook">;
3505
+ autoRegistration: z.ZodBoolean;
3506
+ autoUnregistration: z.ZodBoolean;
3507
+ }, z.core.$strip>]>;
3508
+ }, z.core.$strip>;
3509
+ declare let slatesAction: z.ZodUnion<readonly [z.ZodObject<{
3510
+ id: z.ZodString;
3511
+ name: z.ZodString;
3512
+ description: z.ZodOptional<z.ZodString>;
3513
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
3514
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
3515
+ tags: z.ZodOptional<z.ZodObject<{
3516
+ destructive: z.ZodOptional<z.ZodBoolean>;
3517
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3518
+ }, z.core.$strip>>;
3519
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3520
+ scopes: z.ZodOptional<z.ZodObject<{
3521
+ AND: z.ZodArray<z.ZodObject<{
3522
+ OR: z.ZodArray<z.ZodString>;
3523
+ }, z.core.$strip>>;
3524
+ }, z.core.$strip>>;
3525
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3526
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3527
+ docs: z.ZodArray<z.ZodObject<{
3528
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
3529
+ name: z.ZodString;
3530
+ url: z.ZodString;
3531
+ }, z.core.$strip>>;
3532
+ type: z.ZodLiteral<"action.tool">;
3533
+ capabilities: z.ZodObject<{}, z.core.$strip>;
3534
+ }, z.core.$strip>, z.ZodObject<{
3535
+ id: z.ZodString;
3536
+ name: z.ZodString;
3537
+ description: z.ZodOptional<z.ZodString>;
3538
+ instructions: z.ZodOptional<z.ZodArray<z.ZodString>>;
3539
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString>>;
3540
+ tags: z.ZodOptional<z.ZodObject<{
3541
+ destructive: z.ZodOptional<z.ZodBoolean>;
3542
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3543
+ }, z.core.$strip>>;
3544
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3545
+ scopes: z.ZodOptional<z.ZodObject<{
3546
+ AND: z.ZodArray<z.ZodObject<{
3547
+ OR: z.ZodArray<z.ZodString>;
3548
+ }, z.core.$strip>>;
3549
+ }, z.core.$strip>>;
3550
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3551
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3552
+ docs: z.ZodArray<z.ZodObject<{
3553
+ type: z.ZodOptional<z.ZodLiteral<"docs.action.general">>;
3554
+ name: z.ZodString;
3555
+ url: z.ZodString;
3556
+ }, z.core.$strip>>;
3557
+ type: z.ZodLiteral<"action.trigger">;
3558
+ capabilities: z.ZodObject<{}, z.core.$strip>;
3559
+ invocation: z.ZodUnion<readonly [z.ZodObject<{
3560
+ type: z.ZodLiteral<"polling">;
3561
+ intervalSeconds: z.ZodNumber;
3562
+ }, z.core.$strip>, z.ZodObject<{
3563
+ type: z.ZodLiteral<"webhook">;
3564
+ autoRegistration: z.ZodBoolean;
3565
+ autoUnregistration: z.ZodBoolean;
3566
+ }, z.core.$strip>]>;
3567
+ }, z.core.$strip>]>;
3568
+ type SlatesAction = z.infer<typeof slatesAction>;
3569
+ type SlatesActionTool = z.infer<typeof slatesActionTool>;
3570
+ type SlatesActionTrigger = z.infer<typeof slatesActionTrigger>;
3571
+ type SlatesActionScopes = z.infer<typeof slatesActionScopes>;
3572
+
3573
+ declare let slatesAuthenticationMethod: z.ZodObject<{
3574
+ id: z.ZodString;
3575
+ name: z.ZodString;
3576
+ type: z.ZodUnion<readonly [z.ZodLiteral<"auth.oauth">, z.ZodLiteral<"auth.token">, z.ZodLiteral<"auth.service_account">, z.ZodLiteral<"auth.custom">]>;
3577
+ scopes: z.ZodOptional<z.ZodArray<z.ZodObject<{
3578
+ id: z.ZodString;
3579
+ title: z.ZodString;
3580
+ description: z.ZodOptional<z.ZodString>;
3581
+ defaultChecked: z.ZodOptional<z.ZodBoolean>;
3582
+ }, z.core.$strip>>>;
3583
+ inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3584
+ outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
3585
+ capabilities: z.ZodObject<{
3586
+ getDefaultInput: z.ZodOptional<z.ZodObject<{
3587
+ enabled: z.ZodBoolean;
3588
+ }, z.core.$strip>>;
3589
+ handleChangedInput: z.ZodOptional<z.ZodObject<{
3590
+ enabled: z.ZodBoolean;
3591
+ }, z.core.$strip>>;
3592
+ handleTokenRefresh: z.ZodOptional<z.ZodObject<{
3593
+ enabled: z.ZodBoolean;
3594
+ }, z.core.$strip>>;
3595
+ getProfile: z.ZodOptional<z.ZodObject<{
3596
+ enabled: z.ZodBoolean;
3597
+ }, z.core.$strip>>;
3598
+ }, z.core.$strip>;
3599
+ docs: z.ZodArray<z.ZodObject<{
3600
+ type: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"docs.auth.oauth">, z.ZodLiteral<"docs.auth.oauth_scopes">, z.ZodLiteral<"docs.auth.token">, z.ZodLiteral<"docs.auth.service_account">, z.ZodLiteral<"docs.auth.custom">]>>;
3601
+ name: z.ZodString;
3602
+ url: z.ZodString;
3603
+ }, z.core.$strip>>;
3604
+ }, z.core.$strip>;
3605
+ type SlateAuthenticationMethod = z.infer<typeof slatesAuthenticationMethod>;
3606
+
3607
+ declare let slatesParticipant: z.ZodObject<{
3608
+ type: z.ZodUnion<readonly [z.ZodLiteral<"consumer">, z.ZodLiteral<"hub">]>;
3609
+ id: z.ZodString;
3610
+ name: z.ZodString;
3611
+ description: z.ZodOptional<z.ZodString>;
3612
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3613
+ }, z.core.$strip>;
3614
+ type SlatesParticipant = z.infer<typeof slatesParticipant>;
3615
+
3616
+ declare const SLATES_PROTOCOL_VERSION: "slates@2026-01-01";
3617
+ type SlatesProtocolVersion = typeof SLATES_PROTOCOL_VERSION;
3618
+
3619
+ export { SLATES_PROTOCOL_VERSION, type SlateAuthenticationMethod, type SlatesAction, type SlatesActionRequests, type SlatesActionResponses, type SlatesActionScopes, type SlatesActionTool, type SlatesActionTrigger, type SlatesAuthNotifications, type SlatesAuthRequests, type SlatesAuthResponses, type SlatesConfigNotifications, type SlatesConfigRequests, type SlatesConfigResponses, type SlatesControlFlowNotifications, type SlatesIdentifyRequests, type SlatesIdentifyResponses, type SlatesMessageActionGetRequest, type SlatesMessageActionGetResponse, type SlatesMessageActionInvokeRequest, type SlatesMessageActionInvokeResponse, type SlatesMessageActionTriggerEventMapRequest, type SlatesMessageActionTriggerEventMapResponse, type SlatesMessageActionTriggerEventsPollRequest, type SlatesMessageActionTriggerEventsPollResponse, type SlatesMessageActionTriggerWebhookHandleRequest, type SlatesMessageActionTriggerWebhookHandleResponse, type SlatesMessageActionTriggerWebhookRegisterRequest, type SlatesMessageActionTriggerWebhookRegisterResponse, type SlatesMessageActionTriggerWebhookUnregisterRequest, type SlatesMessageActionTriggerWebhookUnregisterResponse, type SlatesMessageActionsListRequest, type SlatesMessageActionsListResponse, type SlatesMessageAuthAuthorizationCallbackHandleRequest, type SlatesMessageAuthAuthorizationCallbackHandleResponse, type SlatesMessageAuthAuthorizationUrlGetRequest, type SlatesMessageAuthAuthorizationUrlGetResponse, type SlatesMessageAuthDefaultInputGetRequest, type SlatesMessageAuthDefaultInputGetResponse, type SlatesMessageAuthInputChangedRequest, type SlatesMessageAuthInputChangedResponse, type SlatesMessageAuthMethodGetRequest, type SlatesMessageAuthMethodGetResponse, type SlatesMessageAuthMethodsListRequest, type SlatesMessageAuthMethodsListResponse, type SlatesMessageAuthOutputGetRequest, type SlatesMessageAuthOutputGetResponse, type SlatesMessageAuthProfileGetRequest, type SlatesMessageAuthProfileGetResponse, type SlatesMessageAuthTokenRefreshHandleRequest, type SlatesMessageAuthTokenRefreshHandleResponse, type SlatesMessageConfigChangedRequest, type SlatesMessageConfigChangedResponse, type SlatesMessageConfigDefaultGetRequest, type SlatesMessageConfigDefaultGetResponse, type SlatesMessageConfigSchemaGetRequest, type SlatesMessageConfigSchemaGetResponse, type SlatesMessageHelloNotification, type SlatesMessageProviderIdentifyRequest, type SlatesMessageProviderIdentifyResponse, type SlatesMessageSessionStartNotification, type SlatesMessageSetAuthNotification, type SlatesMessageSetConfigNotification, type SlatesMessageSetParticipantsNotification, type SlatesNotifications, type SlatesParticipant, type SlatesProtocolVersion, SlatesProviderProtoHandlerManager, type SlatesRequests, type SlatesResponses, type SlatesResponsesByMethod, createSlatesProviderProtoHandler, slatesAction, slatesActionBase, slatesActionRequestsByMethod, slatesActionResponsesByMethod, slatesActionScopeClause, slatesActionScopes, slatesActionTool, slatesActionTrigger, slatesAuthNotificationsByMethod, slatesAuthRequestsByMethod, slatesAuthResponsesByMethod, slatesAuthenticationMethod, slatesConfigNotificationsByMethod, slatesConfigRequestsByMethod, slatesConfigResponsesByMethod, slatesControlFlowNotificationsByMethod, slatesIdentifyRequestsByMethod, slatesIdentifyResponsesByMethod, slatesMessageActionGetRequest, slatesMessageActionGetResponse, slatesMessageActionInvokeRequest, slatesMessageActionInvokeResponse, slatesMessageActionTriggerEventMapRequest, slatesMessageActionTriggerEventMapResponse, slatesMessageActionTriggerEventsPollRequest, slatesMessageActionTriggerEventsPollResponse, slatesMessageActionTriggerWebhookHandleRequest, slatesMessageActionTriggerWebhookHandleResponse, slatesMessageActionTriggerWebhookRegisterRequest, slatesMessageActionTriggerWebhookRegisterResponse, slatesMessageActionTriggerWebhookUnregisterRequest, slatesMessageActionTriggerWebhookUnregisterResponse, slatesMessageActionsListRequest, slatesMessageActionsListResponse, slatesMessageAuthAuthorizationCallbackHandleRequest, slatesMessageAuthAuthorizationCallbackHandleResponse, slatesMessageAuthAuthorizationUrlGetRequest, slatesMessageAuthAuthorizationUrlGetResponse, slatesMessageAuthDefaultInputGetRequest, slatesMessageAuthDefaultInputGetResponse, slatesMessageAuthInputChangedRequest, slatesMessageAuthInputChangedResponse, slatesMessageAuthMethodGetRequest, slatesMessageAuthMethodGetResponse, slatesMessageAuthMethodsListRequest, slatesMessageAuthMethodsListResponse, slatesMessageAuthOutputGetRequest, slatesMessageAuthOutputGetResponse, slatesMessageAuthProfileGetRequest, slatesMessageAuthProfileGetResponse, slatesMessageAuthTokenRefreshHandleRequest, slatesMessageAuthTokenRefreshHandleResponse, slatesMessageConfigChangedRequest, slatesMessageConfigChangedResponse, slatesMessageConfigDefaultGetRequest, slatesMessageConfigDefaultGetResponse, slatesMessageConfigSchemaGetRequest, slatesMessageConfigSchemaGetResponse, slatesMessageHelloNotification, slatesMessageProviderIdentifyRequest, slatesMessageProviderIdentifyResponse, slatesMessageSessionStartNotification, slatesMessageSetAuthNotification, slatesMessageSetConfigNotification, slatesMessageSetParticipantsNotification, slatesNotificationsByMethod, slatesParticipant, slatesRequestTrace, slatesRequestTraceTextBody, slatesRequestsByMethod, slatesResponsesByMethod, withRequestTraces };