@slates/proto 1.0.0-rc.11 → 1.0.0-rc.13
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.
- package/dist/index.cjs +44 -4
- package/dist/index.d.cts +360 -1
- package/dist/index.d.ts +360 -1
- package/dist/index.module.js +41 -4
- package/package.json +2 -2
- package/src/messages/action.ts +17 -2
- package/src/messages/auth.ts +2 -1
- package/src/types/action.ts +36 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
import z, { z as z$1 } from 'zod';
|
|
2
2
|
|
|
3
|
+
declare let slatesWebhookHttpResponse: z.ZodObject<{
|
|
4
|
+
status: z.ZodNumber;
|
|
5
|
+
headers: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6
|
+
body: z.ZodNullable<z.ZodObject<{
|
|
7
|
+
encoding: z.ZodLiteral<"base64">;
|
|
8
|
+
content: z.ZodString;
|
|
9
|
+
}, z.core.$strip>>;
|
|
10
|
+
}, z.core.$strip>;
|
|
11
|
+
type SlatesWebhookHttpResponse = z.infer<typeof slatesWebhookHttpResponse>;
|
|
3
12
|
/**
|
|
4
13
|
* List Actions
|
|
5
14
|
*/
|
|
@@ -30,6 +39,7 @@ declare let slatesMessageActionsListResponse: z.ZodObject<{
|
|
|
30
39
|
OR: z.ZodArray<z.ZodString>;
|
|
31
40
|
}, z.core.$strip>>;
|
|
32
41
|
}, z.core.$strip>>;
|
|
42
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
33
43
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
34
44
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
35
45
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -55,6 +65,7 @@ declare let slatesMessageActionsListResponse: z.ZodObject<{
|
|
|
55
65
|
OR: z.ZodArray<z.ZodString>;
|
|
56
66
|
}, z.core.$strip>>;
|
|
57
67
|
}, z.core.$strip>>;
|
|
68
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
58
69
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
59
70
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
60
71
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -71,6 +82,38 @@ declare let slatesMessageActionsListResponse: z.ZodObject<{
|
|
|
71
82
|
type: z.ZodLiteral<"webhook">;
|
|
72
83
|
autoRegistration: z.ZodBoolean;
|
|
73
84
|
autoUnregistration: z.ZodBoolean;
|
|
85
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
86
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
87
|
+
GET: "GET";
|
|
88
|
+
POST: "POST";
|
|
89
|
+
PUT: "PUT";
|
|
90
|
+
PATCH: "PATCH";
|
|
91
|
+
DELETE: "DELETE";
|
|
92
|
+
HEAD: "HEAD";
|
|
93
|
+
OPTIONS: "OPTIONS";
|
|
94
|
+
}>>>;
|
|
95
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
96
|
+
mode: z.ZodEnum<{
|
|
97
|
+
never: "never";
|
|
98
|
+
match: "match";
|
|
99
|
+
always: "always";
|
|
100
|
+
}>;
|
|
101
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
102
|
+
method: z.ZodOptional<z.ZodString>;
|
|
103
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
104
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
105
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
106
|
+
path: z.ZodString;
|
|
107
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
108
|
+
}, z.core.$strip>>;
|
|
109
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
110
|
+
path: z.ZodString;
|
|
111
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, z.core.$strip>>;
|
|
113
|
+
}, z.core.$strip>>>;
|
|
114
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
115
|
+
}, z.core.$strip>>;
|
|
116
|
+
}, z.core.$strip>>;
|
|
74
117
|
}, z.core.$strip>]>;
|
|
75
118
|
}, z.core.$strip>]>>;
|
|
76
119
|
}, z.core.$strip>;
|
|
@@ -108,6 +151,7 @@ declare let slatesMessageActionGetResponse: z.ZodObject<{
|
|
|
108
151
|
OR: z.ZodArray<z.ZodString>;
|
|
109
152
|
}, z.core.$strip>>;
|
|
110
153
|
}, z.core.$strip>>;
|
|
154
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
111
155
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
112
156
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
113
157
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -133,6 +177,7 @@ declare let slatesMessageActionGetResponse: z.ZodObject<{
|
|
|
133
177
|
OR: z.ZodArray<z.ZodString>;
|
|
134
178
|
}, z.core.$strip>>;
|
|
135
179
|
}, z.core.$strip>>;
|
|
180
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
181
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
137
182
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
138
183
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -149,6 +194,38 @@ declare let slatesMessageActionGetResponse: z.ZodObject<{
|
|
|
149
194
|
type: z.ZodLiteral<"webhook">;
|
|
150
195
|
autoRegistration: z.ZodBoolean;
|
|
151
196
|
autoUnregistration: z.ZodBoolean;
|
|
197
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
198
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
199
|
+
GET: "GET";
|
|
200
|
+
POST: "POST";
|
|
201
|
+
PUT: "PUT";
|
|
202
|
+
PATCH: "PATCH";
|
|
203
|
+
DELETE: "DELETE";
|
|
204
|
+
HEAD: "HEAD";
|
|
205
|
+
OPTIONS: "OPTIONS";
|
|
206
|
+
}>>>;
|
|
207
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
208
|
+
mode: z.ZodEnum<{
|
|
209
|
+
never: "never";
|
|
210
|
+
match: "match";
|
|
211
|
+
always: "always";
|
|
212
|
+
}>;
|
|
213
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
214
|
+
method: z.ZodOptional<z.ZodString>;
|
|
215
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
216
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
217
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
218
|
+
path: z.ZodString;
|
|
219
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
220
|
+
}, z.core.$strip>>;
|
|
221
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
222
|
+
path: z.ZodString;
|
|
223
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
224
|
+
}, z.core.$strip>>;
|
|
225
|
+
}, z.core.$strip>>>;
|
|
226
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
227
|
+
}, z.core.$strip>>;
|
|
228
|
+
}, z.core.$strip>>;
|
|
152
229
|
}, z.core.$strip>]>;
|
|
153
230
|
}, z.core.$strip>]>;
|
|
154
231
|
}, z.core.$strip>;
|
|
@@ -333,6 +410,7 @@ declare let slatesMessageActionTriggerWebhookHandleRequest: z.ZodObject<{
|
|
|
333
410
|
content: z.ZodString;
|
|
334
411
|
}, z.core.$strip>>;
|
|
335
412
|
state: z.ZodNullable<z.ZodAny>;
|
|
413
|
+
registrationDetails: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
336
414
|
}, z.core.$strip>;
|
|
337
415
|
}, z.core.$strip>;
|
|
338
416
|
type SlatesMessageActionTriggerWebhookHandleRequest = z.infer<typeof slatesMessageActionTriggerWebhookHandleRequest>;
|
|
@@ -342,6 +420,14 @@ declare let slatesMessageActionTriggerWebhookHandleResponse: z.ZodObject<{
|
|
|
342
420
|
result: z.ZodObject<{
|
|
343
421
|
inputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
344
422
|
updatedState: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
423
|
+
response: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
424
|
+
status: z.ZodNumber;
|
|
425
|
+
headers: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
426
|
+
body: z.ZodNullable<z.ZodObject<{
|
|
427
|
+
encoding: z.ZodLiteral<"base64">;
|
|
428
|
+
content: z.ZodString;
|
|
429
|
+
}, z.core.$strip>>;
|
|
430
|
+
}, z.core.$strip>>>;
|
|
345
431
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
346
432
|
startedAt: z.ZodString;
|
|
347
433
|
durationMs: z.ZodNumber;
|
|
@@ -496,6 +582,7 @@ declare let slatesActionResponsesByMethod: {
|
|
|
496
582
|
OR: z.ZodArray<z.ZodString>;
|
|
497
583
|
}, z.core.$strip>>;
|
|
498
584
|
}, z.core.$strip>>;
|
|
585
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
499
586
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
500
587
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
501
588
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -521,6 +608,7 @@ declare let slatesActionResponsesByMethod: {
|
|
|
521
608
|
OR: z.ZodArray<z.ZodString>;
|
|
522
609
|
}, z.core.$strip>>;
|
|
523
610
|
}, z.core.$strip>>;
|
|
611
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
524
612
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
525
613
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
526
614
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -537,6 +625,38 @@ declare let slatesActionResponsesByMethod: {
|
|
|
537
625
|
type: z.ZodLiteral<"webhook">;
|
|
538
626
|
autoRegistration: z.ZodBoolean;
|
|
539
627
|
autoUnregistration: z.ZodBoolean;
|
|
628
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
629
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
630
|
+
GET: "GET";
|
|
631
|
+
POST: "POST";
|
|
632
|
+
PUT: "PUT";
|
|
633
|
+
PATCH: "PATCH";
|
|
634
|
+
DELETE: "DELETE";
|
|
635
|
+
HEAD: "HEAD";
|
|
636
|
+
OPTIONS: "OPTIONS";
|
|
637
|
+
}>>>;
|
|
638
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
639
|
+
mode: z.ZodEnum<{
|
|
640
|
+
never: "never";
|
|
641
|
+
match: "match";
|
|
642
|
+
always: "always";
|
|
643
|
+
}>;
|
|
644
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
645
|
+
method: z.ZodOptional<z.ZodString>;
|
|
646
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
647
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
648
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
649
|
+
path: z.ZodString;
|
|
650
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
651
|
+
}, z.core.$strip>>;
|
|
652
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
653
|
+
path: z.ZodString;
|
|
654
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
655
|
+
}, z.core.$strip>>;
|
|
656
|
+
}, z.core.$strip>>>;
|
|
657
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
658
|
+
}, z.core.$strip>>;
|
|
659
|
+
}, z.core.$strip>>;
|
|
540
660
|
}, z.core.$strip>]>;
|
|
541
661
|
}, z.core.$strip>]>>;
|
|
542
662
|
}, z.core.$strip>;
|
|
@@ -561,6 +681,7 @@ declare let slatesActionResponsesByMethod: {
|
|
|
561
681
|
OR: z.ZodArray<z.ZodString>;
|
|
562
682
|
}, z.core.$strip>>;
|
|
563
683
|
}, z.core.$strip>>;
|
|
684
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
564
685
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
565
686
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
566
687
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -586,6 +707,7 @@ declare let slatesActionResponsesByMethod: {
|
|
|
586
707
|
OR: z.ZodArray<z.ZodString>;
|
|
587
708
|
}, z.core.$strip>>;
|
|
588
709
|
}, z.core.$strip>>;
|
|
710
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
589
711
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
590
712
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
591
713
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -602,6 +724,38 @@ declare let slatesActionResponsesByMethod: {
|
|
|
602
724
|
type: z.ZodLiteral<"webhook">;
|
|
603
725
|
autoRegistration: z.ZodBoolean;
|
|
604
726
|
autoUnregistration: z.ZodBoolean;
|
|
727
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
728
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
729
|
+
GET: "GET";
|
|
730
|
+
POST: "POST";
|
|
731
|
+
PUT: "PUT";
|
|
732
|
+
PATCH: "PATCH";
|
|
733
|
+
DELETE: "DELETE";
|
|
734
|
+
HEAD: "HEAD";
|
|
735
|
+
OPTIONS: "OPTIONS";
|
|
736
|
+
}>>>;
|
|
737
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
738
|
+
mode: z.ZodEnum<{
|
|
739
|
+
never: "never";
|
|
740
|
+
match: "match";
|
|
741
|
+
always: "always";
|
|
742
|
+
}>;
|
|
743
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
744
|
+
method: z.ZodOptional<z.ZodString>;
|
|
745
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
746
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
747
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
748
|
+
path: z.ZodString;
|
|
749
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
750
|
+
}, z.core.$strip>>;
|
|
751
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
752
|
+
path: z.ZodString;
|
|
753
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
754
|
+
}, z.core.$strip>>;
|
|
755
|
+
}, z.core.$strip>>>;
|
|
756
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
757
|
+
}, z.core.$strip>>;
|
|
758
|
+
}, z.core.$strip>>;
|
|
605
759
|
}, z.core.$strip>]>;
|
|
606
760
|
}, z.core.$strip>]>;
|
|
607
761
|
}, z.core.$strip>;
|
|
@@ -732,6 +886,14 @@ declare let slatesActionResponsesByMethod: {
|
|
|
732
886
|
result: z.ZodObject<{
|
|
733
887
|
inputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
734
888
|
updatedState: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
889
|
+
response: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
890
|
+
status: z.ZodNumber;
|
|
891
|
+
headers: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
892
|
+
body: z.ZodNullable<z.ZodObject<{
|
|
893
|
+
encoding: z.ZodLiteral<"base64">;
|
|
894
|
+
content: z.ZodString;
|
|
895
|
+
}, z.core.$strip>>;
|
|
896
|
+
}, z.core.$strip>>>;
|
|
735
897
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
736
898
|
startedAt: z.ZodString;
|
|
737
899
|
durationMs: z.ZodNumber;
|
|
@@ -889,6 +1051,7 @@ declare let slatesActionRequestsByMethod: {
|
|
|
889
1051
|
content: z.ZodString;
|
|
890
1052
|
}, z.core.$strip>>;
|
|
891
1053
|
state: z.ZodNullable<z.ZodAny>;
|
|
1054
|
+
registrationDetails: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
892
1055
|
}, z.core.$strip>;
|
|
893
1056
|
}, z.core.$strip>;
|
|
894
1057
|
'slates/action.trigger.webhook_register': z.ZodObject<{
|
|
@@ -1361,6 +1524,7 @@ declare let slatesMessageAuthOutputGetResponse: z.ZodObject<{
|
|
|
1361
1524
|
id: z.ZodString;
|
|
1362
1525
|
result: z.ZodObject<{
|
|
1363
1526
|
output: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
1527
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1364
1528
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1365
1529
|
startedAt: z.ZodString;
|
|
1366
1530
|
durationMs: z.ZodNumber;
|
|
@@ -1692,6 +1856,7 @@ declare let slatesAuthResponsesByMethod: {
|
|
|
1692
1856
|
id: z.ZodString;
|
|
1693
1857
|
result: z.ZodObject<{
|
|
1694
1858
|
output: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
1859
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1695
1860
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1696
1861
|
startedAt: z.ZodString;
|
|
1697
1862
|
durationMs: z.ZodNumber;
|
|
@@ -2712,6 +2877,7 @@ declare let slatesResponsesByMethod: {
|
|
|
2712
2877
|
id: z$1.ZodString;
|
|
2713
2878
|
result: z$1.ZodObject<{
|
|
2714
2879
|
output: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2880
|
+
scopes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
2715
2881
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
2716
2882
|
startedAt: z$1.ZodString;
|
|
2717
2883
|
durationMs: z$1.ZodNumber;
|
|
@@ -2762,6 +2928,7 @@ declare let slatesResponsesByMethod: {
|
|
|
2762
2928
|
OR: z$1.ZodArray<z$1.ZodString>;
|
|
2763
2929
|
}, z$1.core.$strip>>;
|
|
2764
2930
|
}, z$1.core.$strip>>;
|
|
2931
|
+
authMethods: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
2765
2932
|
inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2766
2933
|
outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2767
2934
|
docs: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2787,6 +2954,7 @@ declare let slatesResponsesByMethod: {
|
|
|
2787
2954
|
OR: z$1.ZodArray<z$1.ZodString>;
|
|
2788
2955
|
}, z$1.core.$strip>>;
|
|
2789
2956
|
}, z$1.core.$strip>>;
|
|
2957
|
+
authMethods: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
2790
2958
|
inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2791
2959
|
outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2792
2960
|
docs: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2803,6 +2971,38 @@ declare let slatesResponsesByMethod: {
|
|
|
2803
2971
|
type: z$1.ZodLiteral<"webhook">;
|
|
2804
2972
|
autoRegistration: z$1.ZodBoolean;
|
|
2805
2973
|
autoUnregistration: z$1.ZodBoolean;
|
|
2974
|
+
http: z$1.ZodOptional<z$1.ZodObject<{
|
|
2975
|
+
methods: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
2976
|
+
GET: "GET";
|
|
2977
|
+
POST: "POST";
|
|
2978
|
+
PUT: "PUT";
|
|
2979
|
+
PATCH: "PATCH";
|
|
2980
|
+
DELETE: "DELETE";
|
|
2981
|
+
HEAD: "HEAD";
|
|
2982
|
+
OPTIONS: "OPTIONS";
|
|
2983
|
+
}>>>;
|
|
2984
|
+
sync: z$1.ZodOptional<z$1.ZodObject<{
|
|
2985
|
+
mode: z$1.ZodEnum<{
|
|
2986
|
+
never: "never";
|
|
2987
|
+
match: "match";
|
|
2988
|
+
always: "always";
|
|
2989
|
+
}>;
|
|
2990
|
+
match: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
2991
|
+
method: z$1.ZodOptional<z$1.ZodString>;
|
|
2992
|
+
hasQueryParam: z$1.ZodOptional<z$1.ZodString>;
|
|
2993
|
+
hasHeader: z$1.ZodOptional<z$1.ZodString>;
|
|
2994
|
+
jsonBodyField: z$1.ZodOptional<z$1.ZodObject<{
|
|
2995
|
+
path: z$1.ZodString;
|
|
2996
|
+
equals: z$1.ZodOptional<z$1.ZodString>;
|
|
2997
|
+
}, z$1.core.$strip>>;
|
|
2998
|
+
formBodyField: z$1.ZodOptional<z$1.ZodObject<{
|
|
2999
|
+
path: z$1.ZodString;
|
|
3000
|
+
equals: z$1.ZodOptional<z$1.ZodString>;
|
|
3001
|
+
}, z$1.core.$strip>>;
|
|
3002
|
+
}, z$1.core.$strip>>>;
|
|
3003
|
+
timeoutMs: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3004
|
+
}, z$1.core.$strip>>;
|
|
3005
|
+
}, z$1.core.$strip>>;
|
|
2806
3006
|
}, z$1.core.$strip>]>;
|
|
2807
3007
|
}, z$1.core.$strip>]>>;
|
|
2808
3008
|
}, z$1.core.$strip>;
|
|
@@ -2827,6 +3027,7 @@ declare let slatesResponsesByMethod: {
|
|
|
2827
3027
|
OR: z$1.ZodArray<z$1.ZodString>;
|
|
2828
3028
|
}, z$1.core.$strip>>;
|
|
2829
3029
|
}, z$1.core.$strip>>;
|
|
3030
|
+
authMethods: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
2830
3031
|
inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2831
3032
|
outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2832
3033
|
docs: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2852,6 +3053,7 @@ declare let slatesResponsesByMethod: {
|
|
|
2852
3053
|
OR: z$1.ZodArray<z$1.ZodString>;
|
|
2853
3054
|
}, z$1.core.$strip>>;
|
|
2854
3055
|
}, z$1.core.$strip>>;
|
|
3056
|
+
authMethods: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
2855
3057
|
inputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2856
3058
|
outputSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>;
|
|
2857
3059
|
docs: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -2868,6 +3070,38 @@ declare let slatesResponsesByMethod: {
|
|
|
2868
3070
|
type: z$1.ZodLiteral<"webhook">;
|
|
2869
3071
|
autoRegistration: z$1.ZodBoolean;
|
|
2870
3072
|
autoUnregistration: z$1.ZodBoolean;
|
|
3073
|
+
http: z$1.ZodOptional<z$1.ZodObject<{
|
|
3074
|
+
methods: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
3075
|
+
GET: "GET";
|
|
3076
|
+
POST: "POST";
|
|
3077
|
+
PUT: "PUT";
|
|
3078
|
+
PATCH: "PATCH";
|
|
3079
|
+
DELETE: "DELETE";
|
|
3080
|
+
HEAD: "HEAD";
|
|
3081
|
+
OPTIONS: "OPTIONS";
|
|
3082
|
+
}>>>;
|
|
3083
|
+
sync: z$1.ZodOptional<z$1.ZodObject<{
|
|
3084
|
+
mode: z$1.ZodEnum<{
|
|
3085
|
+
never: "never";
|
|
3086
|
+
match: "match";
|
|
3087
|
+
always: "always";
|
|
3088
|
+
}>;
|
|
3089
|
+
match: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3090
|
+
method: z$1.ZodOptional<z$1.ZodString>;
|
|
3091
|
+
hasQueryParam: z$1.ZodOptional<z$1.ZodString>;
|
|
3092
|
+
hasHeader: z$1.ZodOptional<z$1.ZodString>;
|
|
3093
|
+
jsonBodyField: z$1.ZodOptional<z$1.ZodObject<{
|
|
3094
|
+
path: z$1.ZodString;
|
|
3095
|
+
equals: z$1.ZodOptional<z$1.ZodString>;
|
|
3096
|
+
}, z$1.core.$strip>>;
|
|
3097
|
+
formBodyField: z$1.ZodOptional<z$1.ZodObject<{
|
|
3098
|
+
path: z$1.ZodString;
|
|
3099
|
+
equals: z$1.ZodOptional<z$1.ZodString>;
|
|
3100
|
+
}, z$1.core.$strip>>;
|
|
3101
|
+
}, z$1.core.$strip>>>;
|
|
3102
|
+
timeoutMs: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3103
|
+
}, z$1.core.$strip>>;
|
|
3104
|
+
}, z$1.core.$strip>>;
|
|
2871
3105
|
}, z$1.core.$strip>]>;
|
|
2872
3106
|
}, z$1.core.$strip>]>;
|
|
2873
3107
|
}, z$1.core.$strip>;
|
|
@@ -2998,6 +3232,14 @@ declare let slatesResponsesByMethod: {
|
|
|
2998
3232
|
result: z$1.ZodObject<{
|
|
2999
3233
|
inputs: z$1.ZodArray<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
3000
3234
|
updatedState: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodAny>>;
|
|
3235
|
+
response: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
3236
|
+
status: z$1.ZodNumber;
|
|
3237
|
+
headers: z$1.ZodRecord<z$1.ZodString, z$1.ZodString>;
|
|
3238
|
+
body: z$1.ZodNullable<z$1.ZodObject<{
|
|
3239
|
+
encoding: z$1.ZodLiteral<"base64">;
|
|
3240
|
+
content: z$1.ZodString;
|
|
3241
|
+
}, z$1.core.$strip>>;
|
|
3242
|
+
}, z$1.core.$strip>>>;
|
|
3001
3243
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3002
3244
|
startedAt: z$1.ZodString;
|
|
3003
3245
|
durationMs: z$1.ZodNumber;
|
|
@@ -3278,6 +3520,7 @@ declare let slatesRequestsByMethod: {
|
|
|
3278
3520
|
content: z$1.ZodString;
|
|
3279
3521
|
}, z$1.core.$strip>>;
|
|
3280
3522
|
state: z$1.ZodNullable<z$1.ZodAny>;
|
|
3523
|
+
registrationDetails: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodAny>>;
|
|
3281
3524
|
}, z$1.core.$strip>;
|
|
3282
3525
|
}, z$1.core.$strip>;
|
|
3283
3526
|
'slates/action.trigger.webhook_register': z$1.ZodObject<{
|
|
@@ -3438,6 +3681,7 @@ declare let slatesActionBase: z.ZodObject<{
|
|
|
3438
3681
|
OR: z.ZodArray<z.ZodString>;
|
|
3439
3682
|
}, z.core.$strip>>;
|
|
3440
3683
|
}, z.core.$strip>>;
|
|
3684
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3441
3685
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3442
3686
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3443
3687
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -3462,6 +3706,7 @@ declare let slatesActionTool: z.ZodObject<{
|
|
|
3462
3706
|
OR: z.ZodArray<z.ZodString>;
|
|
3463
3707
|
}, z.core.$strip>>;
|
|
3464
3708
|
}, z.core.$strip>>;
|
|
3709
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3465
3710
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3466
3711
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3467
3712
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -3472,6 +3717,51 @@ declare let slatesActionTool: z.ZodObject<{
|
|
|
3472
3717
|
type: z.ZodLiteral<"action.tool">;
|
|
3473
3718
|
capabilities: z.ZodObject<{}, z.core.$strip>;
|
|
3474
3719
|
}, z.core.$strip>;
|
|
3720
|
+
declare let slatesWebhookRequestMatcher: z.ZodObject<{
|
|
3721
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3722
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
3723
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
3724
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
3725
|
+
path: z.ZodString;
|
|
3726
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3727
|
+
}, z.core.$strip>>;
|
|
3728
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
3729
|
+
path: z.ZodString;
|
|
3730
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3731
|
+
}, z.core.$strip>>;
|
|
3732
|
+
}, z.core.$strip>;
|
|
3733
|
+
declare let slatesWebhookHttp: z.ZodObject<{
|
|
3734
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3735
|
+
GET: "GET";
|
|
3736
|
+
POST: "POST";
|
|
3737
|
+
PUT: "PUT";
|
|
3738
|
+
PATCH: "PATCH";
|
|
3739
|
+
DELETE: "DELETE";
|
|
3740
|
+
HEAD: "HEAD";
|
|
3741
|
+
OPTIONS: "OPTIONS";
|
|
3742
|
+
}>>>;
|
|
3743
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
3744
|
+
mode: z.ZodEnum<{
|
|
3745
|
+
never: "never";
|
|
3746
|
+
match: "match";
|
|
3747
|
+
always: "always";
|
|
3748
|
+
}>;
|
|
3749
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3750
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3751
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
3752
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
3753
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
3754
|
+
path: z.ZodString;
|
|
3755
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3756
|
+
}, z.core.$strip>>;
|
|
3757
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
3758
|
+
path: z.ZodString;
|
|
3759
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3760
|
+
}, z.core.$strip>>;
|
|
3761
|
+
}, z.core.$strip>>>;
|
|
3762
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
3763
|
+
}, z.core.$strip>>;
|
|
3764
|
+
}, z.core.$strip>;
|
|
3475
3765
|
declare let slatesActionTrigger: z.ZodObject<{
|
|
3476
3766
|
id: z.ZodString;
|
|
3477
3767
|
name: z.ZodString;
|
|
@@ -3488,6 +3778,7 @@ declare let slatesActionTrigger: z.ZodObject<{
|
|
|
3488
3778
|
OR: z.ZodArray<z.ZodString>;
|
|
3489
3779
|
}, z.core.$strip>>;
|
|
3490
3780
|
}, z.core.$strip>>;
|
|
3781
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3491
3782
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3492
3783
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3493
3784
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -3504,6 +3795,38 @@ declare let slatesActionTrigger: z.ZodObject<{
|
|
|
3504
3795
|
type: z.ZodLiteral<"webhook">;
|
|
3505
3796
|
autoRegistration: z.ZodBoolean;
|
|
3506
3797
|
autoUnregistration: z.ZodBoolean;
|
|
3798
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
3799
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3800
|
+
GET: "GET";
|
|
3801
|
+
POST: "POST";
|
|
3802
|
+
PUT: "PUT";
|
|
3803
|
+
PATCH: "PATCH";
|
|
3804
|
+
DELETE: "DELETE";
|
|
3805
|
+
HEAD: "HEAD";
|
|
3806
|
+
OPTIONS: "OPTIONS";
|
|
3807
|
+
}>>>;
|
|
3808
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
3809
|
+
mode: z.ZodEnum<{
|
|
3810
|
+
never: "never";
|
|
3811
|
+
match: "match";
|
|
3812
|
+
always: "always";
|
|
3813
|
+
}>;
|
|
3814
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3815
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3816
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
3817
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
3818
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
3819
|
+
path: z.ZodString;
|
|
3820
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3821
|
+
}, z.core.$strip>>;
|
|
3822
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
3823
|
+
path: z.ZodString;
|
|
3824
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3825
|
+
}, z.core.$strip>>;
|
|
3826
|
+
}, z.core.$strip>>>;
|
|
3827
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
3828
|
+
}, z.core.$strip>>;
|
|
3829
|
+
}, z.core.$strip>>;
|
|
3507
3830
|
}, z.core.$strip>]>;
|
|
3508
3831
|
}, z.core.$strip>;
|
|
3509
3832
|
declare let slatesAction: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -3522,6 +3845,7 @@ declare let slatesAction: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3522
3845
|
OR: z.ZodArray<z.ZodString>;
|
|
3523
3846
|
}, z.core.$strip>>;
|
|
3524
3847
|
}, z.core.$strip>>;
|
|
3848
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3525
3849
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3526
3850
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3527
3851
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -3547,6 +3871,7 @@ declare let slatesAction: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3547
3871
|
OR: z.ZodArray<z.ZodString>;
|
|
3548
3872
|
}, z.core.$strip>>;
|
|
3549
3873
|
}, z.core.$strip>>;
|
|
3874
|
+
authMethods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3550
3875
|
inputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3551
3876
|
outputSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3552
3877
|
docs: z.ZodArray<z.ZodObject<{
|
|
@@ -3563,12 +3888,46 @@ declare let slatesAction: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3563
3888
|
type: z.ZodLiteral<"webhook">;
|
|
3564
3889
|
autoRegistration: z.ZodBoolean;
|
|
3565
3890
|
autoUnregistration: z.ZodBoolean;
|
|
3891
|
+
http: z.ZodOptional<z.ZodObject<{
|
|
3892
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3893
|
+
GET: "GET";
|
|
3894
|
+
POST: "POST";
|
|
3895
|
+
PUT: "PUT";
|
|
3896
|
+
PATCH: "PATCH";
|
|
3897
|
+
DELETE: "DELETE";
|
|
3898
|
+
HEAD: "HEAD";
|
|
3899
|
+
OPTIONS: "OPTIONS";
|
|
3900
|
+
}>>>;
|
|
3901
|
+
sync: z.ZodOptional<z.ZodObject<{
|
|
3902
|
+
mode: z.ZodEnum<{
|
|
3903
|
+
never: "never";
|
|
3904
|
+
match: "match";
|
|
3905
|
+
always: "always";
|
|
3906
|
+
}>;
|
|
3907
|
+
match: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3908
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3909
|
+
hasQueryParam: z.ZodOptional<z.ZodString>;
|
|
3910
|
+
hasHeader: z.ZodOptional<z.ZodString>;
|
|
3911
|
+
jsonBodyField: z.ZodOptional<z.ZodObject<{
|
|
3912
|
+
path: z.ZodString;
|
|
3913
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3914
|
+
}, z.core.$strip>>;
|
|
3915
|
+
formBodyField: z.ZodOptional<z.ZodObject<{
|
|
3916
|
+
path: z.ZodString;
|
|
3917
|
+
equals: z.ZodOptional<z.ZodString>;
|
|
3918
|
+
}, z.core.$strip>>;
|
|
3919
|
+
}, z.core.$strip>>>;
|
|
3920
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
3921
|
+
}, z.core.$strip>>;
|
|
3922
|
+
}, z.core.$strip>>;
|
|
3566
3923
|
}, z.core.$strip>]>;
|
|
3567
3924
|
}, z.core.$strip>]>;
|
|
3568
3925
|
type SlatesAction = z.infer<typeof slatesAction>;
|
|
3569
3926
|
type SlatesActionTool = z.infer<typeof slatesActionTool>;
|
|
3570
3927
|
type SlatesActionTrigger = z.infer<typeof slatesActionTrigger>;
|
|
3571
3928
|
type SlatesActionScopes = z.infer<typeof slatesActionScopes>;
|
|
3929
|
+
type SlatesWebhookRequestMatcher = z.infer<typeof slatesWebhookRequestMatcher>;
|
|
3930
|
+
type SlatesWebhookHttp = z.infer<typeof slatesWebhookHttp>;
|
|
3572
3931
|
|
|
3573
3932
|
declare let slatesAuthenticationMethod: z.ZodObject<{
|
|
3574
3933
|
id: z.ZodString;
|
|
@@ -3616,4 +3975,4 @@ type SlatesParticipant = z.infer<typeof slatesParticipant>;
|
|
|
3616
3975
|
declare const SLATES_PROTOCOL_VERSION: "slates@2026-01-01";
|
|
3617
3976
|
type SlatesProtocolVersion = typeof SLATES_PROTOCOL_VERSION;
|
|
3618
3977
|
|
|
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 };
|
|
3978
|
+
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, type SlatesWebhookHttp, type SlatesWebhookHttpResponse, type SlatesWebhookRequestMatcher, 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, slatesWebhookHttp, slatesWebhookHttpResponse, slatesWebhookRequestMatcher, withRequestTraces };
|