@replit/connectors 0.18.0 → 0.19.0
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/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/resources/top-level.d.mts +209 -4
- package/resources/top-level.d.mts.map +1 -1
- package/resources/top-level.d.ts +209 -4
- package/resources/top-level.d.ts.map +1 -1
- package/src/resources/top-level.ts +412 -4
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -19,6 +19,11 @@ export interface Connector {
|
|
|
19
19
|
*/
|
|
20
20
|
agent_instructions?: string;
|
|
21
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Whether a single user can have multiple connections
|
|
24
|
+
*/
|
|
25
|
+
allows_multiple_connections?: boolean;
|
|
26
|
+
|
|
22
27
|
/**
|
|
23
28
|
* Target audience segments for this connector
|
|
24
29
|
*/
|
|
@@ -37,6 +42,11 @@ export interface Connector {
|
|
|
37
42
|
|
|
38
43
|
has_openint_credentials?: boolean;
|
|
39
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Whether this connector uses shared (API key) authentication
|
|
47
|
+
*/
|
|
48
|
+
is_shared?: boolean;
|
|
49
|
+
|
|
40
50
|
/**
|
|
41
51
|
* Related URLs for the connector provider
|
|
42
52
|
*/
|
|
@@ -44,6 +54,11 @@ export interface Connector {
|
|
|
44
54
|
|
|
45
55
|
logo_url?: string;
|
|
46
56
|
|
|
57
|
+
/**
|
|
58
|
+
* MCP server configuration, derived from connector metadata
|
|
59
|
+
*/
|
|
60
|
+
mcp?: Connector.Mcp;
|
|
61
|
+
|
|
47
62
|
openint_allowed_scopes?: Array<string>;
|
|
48
63
|
|
|
49
64
|
openint_default_scopes?: Array<string>;
|
|
@@ -87,6 +102,15 @@ export namespace Connector {
|
|
|
87
102
|
web_url?: string;
|
|
88
103
|
}
|
|
89
104
|
|
|
105
|
+
/**
|
|
106
|
+
* MCP server configuration, derived from connector metadata
|
|
107
|
+
*/
|
|
108
|
+
export interface Mcp {
|
|
109
|
+
mcp_server_base_url: string;
|
|
110
|
+
|
|
111
|
+
url_pattern_to_catch: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
90
114
|
/**
|
|
91
115
|
* Language-specific packages and code snippets
|
|
92
116
|
*/
|
|
@@ -396,6 +420,8 @@ export namespace CreateConnectionResponse {
|
|
|
396
420
|
|
|
397
421
|
status_message?: string | null;
|
|
398
422
|
|
|
423
|
+
toon_schema?: string;
|
|
424
|
+
|
|
399
425
|
updated_at?: string;
|
|
400
426
|
|
|
401
427
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -472,6 +498,8 @@ export namespace CreateConnectionResponse {
|
|
|
472
498
|
|
|
473
499
|
status_message?: string | null;
|
|
474
500
|
|
|
501
|
+
toon_schema?: string;
|
|
502
|
+
|
|
475
503
|
updated_at?: string;
|
|
476
504
|
|
|
477
505
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -594,6 +622,8 @@ export namespace CreateConnectionResponse {
|
|
|
594
622
|
|
|
595
623
|
status_message?: string | null;
|
|
596
624
|
|
|
625
|
+
toon_schema?: string;
|
|
626
|
+
|
|
597
627
|
updated_at?: string;
|
|
598
628
|
|
|
599
629
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -670,6 +700,8 @@ export namespace CreateConnectionResponse {
|
|
|
670
700
|
|
|
671
701
|
status_message?: string | null;
|
|
672
702
|
|
|
703
|
+
toon_schema?: string;
|
|
704
|
+
|
|
673
705
|
updated_at?: string;
|
|
674
706
|
|
|
675
707
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -792,6 +824,8 @@ export namespace CreateConnectionResponse {
|
|
|
792
824
|
|
|
793
825
|
status_message?: string | null;
|
|
794
826
|
|
|
827
|
+
toon_schema?: string;
|
|
828
|
+
|
|
795
829
|
updated_at?: string;
|
|
796
830
|
|
|
797
831
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -868,6 +902,8 @@ export namespace CreateConnectionResponse {
|
|
|
868
902
|
|
|
869
903
|
status_message?: string | null;
|
|
870
904
|
|
|
905
|
+
toon_schema?: string;
|
|
906
|
+
|
|
871
907
|
updated_at?: string;
|
|
872
908
|
|
|
873
909
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -996,6 +1032,8 @@ export namespace CreateConnectionResponse {
|
|
|
996
1032
|
|
|
997
1033
|
status_message?: string | null;
|
|
998
1034
|
|
|
1035
|
+
toon_schema?: string;
|
|
1036
|
+
|
|
999
1037
|
updated_at?: string;
|
|
1000
1038
|
|
|
1001
1039
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1118,6 +1156,8 @@ export namespace CreateConnectionResponse {
|
|
|
1118
1156
|
|
|
1119
1157
|
status_message?: string | null;
|
|
1120
1158
|
|
|
1159
|
+
toon_schema?: string;
|
|
1160
|
+
|
|
1121
1161
|
updated_at?: string;
|
|
1122
1162
|
|
|
1123
1163
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1240,6 +1280,8 @@ export namespace CreateConnectionResponse {
|
|
|
1240
1280
|
|
|
1241
1281
|
status_message?: string | null;
|
|
1242
1282
|
|
|
1283
|
+
toon_schema?: string;
|
|
1284
|
+
|
|
1243
1285
|
updated_at?: string;
|
|
1244
1286
|
|
|
1245
1287
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1362,6 +1404,8 @@ export namespace CreateConnectionResponse {
|
|
|
1362
1404
|
|
|
1363
1405
|
status_message?: string | null;
|
|
1364
1406
|
|
|
1407
|
+
toon_schema?: string;
|
|
1408
|
+
|
|
1365
1409
|
updated_at?: string;
|
|
1366
1410
|
|
|
1367
1411
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1484,6 +1528,8 @@ export namespace CreateConnectionResponse {
|
|
|
1484
1528
|
|
|
1485
1529
|
status_message?: string | null;
|
|
1486
1530
|
|
|
1531
|
+
toon_schema?: string;
|
|
1532
|
+
|
|
1487
1533
|
updated_at?: string;
|
|
1488
1534
|
|
|
1489
1535
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1606,6 +1652,8 @@ export namespace CreateConnectionResponse {
|
|
|
1606
1652
|
|
|
1607
1653
|
status_message?: string | null;
|
|
1608
1654
|
|
|
1655
|
+
toon_schema?: string;
|
|
1656
|
+
|
|
1609
1657
|
updated_at?: string;
|
|
1610
1658
|
|
|
1611
1659
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1733,6 +1781,8 @@ export namespace CreateConnectionResponse {
|
|
|
1733
1781
|
|
|
1734
1782
|
status_message?: string | null;
|
|
1735
1783
|
|
|
1784
|
+
toon_schema?: string;
|
|
1785
|
+
|
|
1736
1786
|
updated_at?: string;
|
|
1737
1787
|
|
|
1738
1788
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1868,6 +1918,8 @@ export namespace CreateConnectionResponse {
|
|
|
1868
1918
|
|
|
1869
1919
|
status_message?: string | null;
|
|
1870
1920
|
|
|
1921
|
+
toon_schema?: string;
|
|
1922
|
+
|
|
1871
1923
|
updated_at?: string;
|
|
1872
1924
|
|
|
1873
1925
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -1990,6 +2042,8 @@ export namespace CreateConnectionResponse {
|
|
|
1990
2042
|
|
|
1991
2043
|
status_message?: string | null;
|
|
1992
2044
|
|
|
2045
|
+
toon_schema?: string;
|
|
2046
|
+
|
|
1993
2047
|
updated_at?: string;
|
|
1994
2048
|
|
|
1995
2049
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2112,6 +2166,8 @@ export namespace CreateConnectionResponse {
|
|
|
2112
2166
|
|
|
2113
2167
|
status_message?: string | null;
|
|
2114
2168
|
|
|
2169
|
+
toon_schema?: string;
|
|
2170
|
+
|
|
2115
2171
|
updated_at?: string;
|
|
2116
2172
|
|
|
2117
2173
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2188,6 +2244,8 @@ export namespace CreateConnectionResponse {
|
|
|
2188
2244
|
|
|
2189
2245
|
status_message?: string | null;
|
|
2190
2246
|
|
|
2247
|
+
toon_schema?: string;
|
|
2248
|
+
|
|
2191
2249
|
updated_at?: string;
|
|
2192
2250
|
|
|
2193
2251
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2310,6 +2368,8 @@ export namespace CreateConnectionResponse {
|
|
|
2310
2368
|
|
|
2311
2369
|
status_message?: string | null;
|
|
2312
2370
|
|
|
2371
|
+
toon_schema?: string;
|
|
2372
|
+
|
|
2313
2373
|
updated_at?: string;
|
|
2314
2374
|
|
|
2315
2375
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2432,6 +2492,8 @@ export namespace CreateConnectionResponse {
|
|
|
2432
2492
|
|
|
2433
2493
|
status_message?: string | null;
|
|
2434
2494
|
|
|
2495
|
+
toon_schema?: string;
|
|
2496
|
+
|
|
2435
2497
|
updated_at?: string;
|
|
2436
2498
|
|
|
2437
2499
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2554,6 +2616,8 @@ export namespace CreateConnectionResponse {
|
|
|
2554
2616
|
|
|
2555
2617
|
status_message?: string | null;
|
|
2556
2618
|
|
|
2619
|
+
toon_schema?: string;
|
|
2620
|
+
|
|
2557
2621
|
updated_at?: string;
|
|
2558
2622
|
|
|
2559
2623
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2676,6 +2740,8 @@ export namespace CreateConnectionResponse {
|
|
|
2676
2740
|
|
|
2677
2741
|
status_message?: string | null;
|
|
2678
2742
|
|
|
2743
|
+
toon_schema?: string;
|
|
2744
|
+
|
|
2679
2745
|
updated_at?: string;
|
|
2680
2746
|
|
|
2681
2747
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2798,6 +2864,8 @@ export namespace CreateConnectionResponse {
|
|
|
2798
2864
|
|
|
2799
2865
|
status_message?: string | null;
|
|
2800
2866
|
|
|
2867
|
+
toon_schema?: string;
|
|
2868
|
+
|
|
2801
2869
|
updated_at?: string;
|
|
2802
2870
|
|
|
2803
2871
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -2920,6 +2988,8 @@ export namespace CreateConnectionResponse {
|
|
|
2920
2988
|
|
|
2921
2989
|
status_message?: string | null;
|
|
2922
2990
|
|
|
2991
|
+
toon_schema?: string;
|
|
2992
|
+
|
|
2923
2993
|
updated_at?: string;
|
|
2924
2994
|
|
|
2925
2995
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3042,6 +3112,8 @@ export namespace CreateConnectionResponse {
|
|
|
3042
3112
|
|
|
3043
3113
|
status_message?: string | null;
|
|
3044
3114
|
|
|
3115
|
+
toon_schema?: string;
|
|
3116
|
+
|
|
3045
3117
|
updated_at?: string;
|
|
3046
3118
|
|
|
3047
3119
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3164,6 +3236,8 @@ export namespace CreateConnectionResponse {
|
|
|
3164
3236
|
|
|
3165
3237
|
status_message?: string | null;
|
|
3166
3238
|
|
|
3239
|
+
toon_schema?: string;
|
|
3240
|
+
|
|
3167
3241
|
updated_at?: string;
|
|
3168
3242
|
|
|
3169
3243
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3286,6 +3360,8 @@ export namespace CreateConnectionResponse {
|
|
|
3286
3360
|
|
|
3287
3361
|
status_message?: string | null;
|
|
3288
3362
|
|
|
3363
|
+
toon_schema?: string;
|
|
3364
|
+
|
|
3289
3365
|
updated_at?: string;
|
|
3290
3366
|
|
|
3291
3367
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3408,6 +3484,8 @@ export namespace CreateConnectionResponse {
|
|
|
3408
3484
|
|
|
3409
3485
|
status_message?: string | null;
|
|
3410
3486
|
|
|
3487
|
+
toon_schema?: string;
|
|
3488
|
+
|
|
3411
3489
|
updated_at?: string;
|
|
3412
3490
|
|
|
3413
3491
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3540,6 +3618,8 @@ export namespace CreateConnectionResponse {
|
|
|
3540
3618
|
|
|
3541
3619
|
status_message?: string | null;
|
|
3542
3620
|
|
|
3621
|
+
toon_schema?: string;
|
|
3622
|
+
|
|
3543
3623
|
updated_at?: string;
|
|
3544
3624
|
|
|
3545
3625
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3662,6 +3742,8 @@ export namespace CreateConnectionResponse {
|
|
|
3662
3742
|
|
|
3663
3743
|
status_message?: string | null;
|
|
3664
3744
|
|
|
3745
|
+
toon_schema?: string;
|
|
3746
|
+
|
|
3665
3747
|
updated_at?: string;
|
|
3666
3748
|
|
|
3667
3749
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3789,6 +3871,8 @@ export namespace CreateConnectionResponse {
|
|
|
3789
3871
|
|
|
3790
3872
|
status_message?: string | null;
|
|
3791
3873
|
|
|
3874
|
+
toon_schema?: string;
|
|
3875
|
+
|
|
3792
3876
|
updated_at?: string;
|
|
3793
3877
|
|
|
3794
3878
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -3911,6 +3995,8 @@ export namespace CreateConnectionResponse {
|
|
|
3911
3995
|
|
|
3912
3996
|
status_message?: string | null;
|
|
3913
3997
|
|
|
3998
|
+
toon_schema?: string;
|
|
3999
|
+
|
|
3914
4000
|
updated_at?: string;
|
|
3915
4001
|
|
|
3916
4002
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4033,6 +4119,8 @@ export namespace CreateConnectionResponse {
|
|
|
4033
4119
|
|
|
4034
4120
|
status_message?: string | null;
|
|
4035
4121
|
|
|
4122
|
+
toon_schema?: string;
|
|
4123
|
+
|
|
4036
4124
|
updated_at?: string;
|
|
4037
4125
|
|
|
4038
4126
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4155,6 +4243,8 @@ export namespace CreateConnectionResponse {
|
|
|
4155
4243
|
|
|
4156
4244
|
status_message?: string | null;
|
|
4157
4245
|
|
|
4246
|
+
toon_schema?: string;
|
|
4247
|
+
|
|
4158
4248
|
updated_at?: string;
|
|
4159
4249
|
|
|
4160
4250
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4277,6 +4367,8 @@ export namespace CreateConnectionResponse {
|
|
|
4277
4367
|
|
|
4278
4368
|
status_message?: string | null;
|
|
4279
4369
|
|
|
4370
|
+
toon_schema?: string;
|
|
4371
|
+
|
|
4280
4372
|
updated_at?: string;
|
|
4281
4373
|
|
|
4282
4374
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4359,6 +4451,8 @@ export namespace CreateConnectionResponse {
|
|
|
4359
4451
|
|
|
4360
4452
|
status_message?: string | null;
|
|
4361
4453
|
|
|
4454
|
+
toon_schema?: string;
|
|
4455
|
+
|
|
4362
4456
|
updated_at?: string;
|
|
4363
4457
|
|
|
4364
4458
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4481,6 +4575,8 @@ export namespace CreateConnectionResponse {
|
|
|
4481
4575
|
|
|
4482
4576
|
status_message?: string | null;
|
|
4483
4577
|
|
|
4578
|
+
toon_schema?: string;
|
|
4579
|
+
|
|
4484
4580
|
updated_at?: string;
|
|
4485
4581
|
|
|
4486
4582
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4603,6 +4699,8 @@ export namespace CreateConnectionResponse {
|
|
|
4603
4699
|
|
|
4604
4700
|
status_message?: string | null;
|
|
4605
4701
|
|
|
4702
|
+
toon_schema?: string;
|
|
4703
|
+
|
|
4606
4704
|
updated_at?: string;
|
|
4607
4705
|
|
|
4608
4706
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4730,6 +4828,8 @@ export namespace CreateConnectionResponse {
|
|
|
4730
4828
|
|
|
4731
4829
|
status_message?: string | null;
|
|
4732
4830
|
|
|
4831
|
+
toon_schema?: string;
|
|
4832
|
+
|
|
4733
4833
|
updated_at?: string;
|
|
4734
4834
|
|
|
4735
4835
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4852,6 +4952,8 @@ export namespace CreateConnectionResponse {
|
|
|
4852
4952
|
|
|
4853
4953
|
status_message?: string | null;
|
|
4854
4954
|
|
|
4955
|
+
toon_schema?: string;
|
|
4956
|
+
|
|
4855
4957
|
updated_at?: string;
|
|
4856
4958
|
|
|
4857
4959
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -4974,6 +5076,8 @@ export namespace CreateConnectionResponse {
|
|
|
4974
5076
|
|
|
4975
5077
|
status_message?: string | null;
|
|
4976
5078
|
|
|
5079
|
+
toon_schema?: string;
|
|
5080
|
+
|
|
4977
5081
|
updated_at?: string;
|
|
4978
5082
|
|
|
4979
5083
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5096,6 +5200,8 @@ export namespace CreateConnectionResponse {
|
|
|
5096
5200
|
|
|
5097
5201
|
status_message?: string | null;
|
|
5098
5202
|
|
|
5203
|
+
toon_schema?: string;
|
|
5204
|
+
|
|
5099
5205
|
updated_at?: string;
|
|
5100
5206
|
|
|
5101
5207
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5224,6 +5330,8 @@ export namespace CreateConnectionResponse {
|
|
|
5224
5330
|
|
|
5225
5331
|
status_message?: string | null;
|
|
5226
5332
|
|
|
5333
|
+
toon_schema?: string;
|
|
5334
|
+
|
|
5227
5335
|
updated_at?: string;
|
|
5228
5336
|
|
|
5229
5337
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5346,6 +5454,8 @@ export namespace CreateConnectionResponse {
|
|
|
5346
5454
|
|
|
5347
5455
|
status_message?: string | null;
|
|
5348
5456
|
|
|
5457
|
+
toon_schema?: string;
|
|
5458
|
+
|
|
5349
5459
|
updated_at?: string;
|
|
5350
5460
|
|
|
5351
5461
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5423,6 +5533,8 @@ export namespace CreateConnectionResponse {
|
|
|
5423
5533
|
|
|
5424
5534
|
status_message?: string | null;
|
|
5425
5535
|
|
|
5536
|
+
toon_schema?: string;
|
|
5537
|
+
|
|
5426
5538
|
updated_at?: string;
|
|
5427
5539
|
|
|
5428
5540
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5556,6 +5668,8 @@ export namespace CreateConnectionResponse {
|
|
|
5556
5668
|
|
|
5557
5669
|
status_message?: string | null;
|
|
5558
5670
|
|
|
5671
|
+
toon_schema?: string;
|
|
5672
|
+
|
|
5559
5673
|
updated_at?: string;
|
|
5560
5674
|
|
|
5561
5675
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5678,6 +5792,8 @@ export namespace CreateConnectionResponse {
|
|
|
5678
5792
|
|
|
5679
5793
|
status_message?: string | null;
|
|
5680
5794
|
|
|
5795
|
+
toon_schema?: string;
|
|
5796
|
+
|
|
5681
5797
|
updated_at?: string;
|
|
5682
5798
|
|
|
5683
5799
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5754,6 +5870,8 @@ export namespace CreateConnectionResponse {
|
|
|
5754
5870
|
|
|
5755
5871
|
status_message?: string | null;
|
|
5756
5872
|
|
|
5873
|
+
toon_schema?: string;
|
|
5874
|
+
|
|
5757
5875
|
updated_at?: string;
|
|
5758
5876
|
|
|
5759
5877
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -5876,6 +5994,8 @@ export namespace CreateConnectionResponse {
|
|
|
5876
5994
|
|
|
5877
5995
|
status_message?: string | null;
|
|
5878
5996
|
|
|
5997
|
+
toon_schema?: string;
|
|
5998
|
+
|
|
5879
5999
|
updated_at?: string;
|
|
5880
6000
|
|
|
5881
6001
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6003,6 +6123,8 @@ export namespace CreateConnectionResponse {
|
|
|
6003
6123
|
|
|
6004
6124
|
status_message?: string | null;
|
|
6005
6125
|
|
|
6126
|
+
toon_schema?: string;
|
|
6127
|
+
|
|
6006
6128
|
updated_at?: string;
|
|
6007
6129
|
|
|
6008
6130
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6125,6 +6247,8 @@ export namespace CreateConnectionResponse {
|
|
|
6125
6247
|
|
|
6126
6248
|
status_message?: string | null;
|
|
6127
6249
|
|
|
6250
|
+
toon_schema?: string;
|
|
6251
|
+
|
|
6128
6252
|
updated_at?: string;
|
|
6129
6253
|
|
|
6130
6254
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6198,6 +6322,8 @@ export namespace CreateConnectionResponse {
|
|
|
6198
6322
|
|
|
6199
6323
|
status_message?: string | null;
|
|
6200
6324
|
|
|
6325
|
+
toon_schema?: string;
|
|
6326
|
+
|
|
6201
6327
|
updated_at?: string;
|
|
6202
6328
|
|
|
6203
6329
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6387,6 +6513,8 @@ export namespace CreateConnectionResponse {
|
|
|
6387
6513
|
|
|
6388
6514
|
status_message?: string | null;
|
|
6389
6515
|
|
|
6516
|
+
toon_schema?: string;
|
|
6517
|
+
|
|
6390
6518
|
updated_at?: string;
|
|
6391
6519
|
|
|
6392
6520
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6505,6 +6633,8 @@ export namespace CreateConnectionResponse {
|
|
|
6505
6633
|
|
|
6506
6634
|
status_message?: string | null;
|
|
6507
6635
|
|
|
6636
|
+
toon_schema?: string;
|
|
6637
|
+
|
|
6508
6638
|
updated_at?: string;
|
|
6509
6639
|
|
|
6510
6640
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6574,6 +6704,8 @@ export namespace CreateConnectionResponse {
|
|
|
6574
6704
|
|
|
6575
6705
|
status_message?: string | null;
|
|
6576
6706
|
|
|
6707
|
+
toon_schema?: string;
|
|
6708
|
+
|
|
6577
6709
|
updated_at?: string;
|
|
6578
6710
|
|
|
6579
6711
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6657,6 +6789,8 @@ export namespace CreateConnectionResponse {
|
|
|
6657
6789
|
|
|
6658
6790
|
status_message?: string | null;
|
|
6659
6791
|
|
|
6792
|
+
toon_schema?: string;
|
|
6793
|
+
|
|
6660
6794
|
updated_at?: string;
|
|
6661
6795
|
|
|
6662
6796
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6730,6 +6864,8 @@ export namespace CreateConnectionResponse {
|
|
|
6730
6864
|
|
|
6731
6865
|
status_message?: string | null;
|
|
6732
6866
|
|
|
6867
|
+
toon_schema?: string;
|
|
6868
|
+
|
|
6733
6869
|
updated_at?: string;
|
|
6734
6870
|
|
|
6735
6871
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6808,6 +6944,8 @@ export namespace CreateConnectionResponse {
|
|
|
6808
6944
|
|
|
6809
6945
|
status_message?: string | null;
|
|
6810
6946
|
|
|
6947
|
+
toon_schema?: string;
|
|
6948
|
+
|
|
6811
6949
|
updated_at?: string;
|
|
6812
6950
|
|
|
6813
6951
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6886,6 +7024,8 @@ export namespace CreateConnectionResponse {
|
|
|
6886
7024
|
|
|
6887
7025
|
status_message?: string | null;
|
|
6888
7026
|
|
|
7027
|
+
toon_schema?: string;
|
|
7028
|
+
|
|
6889
7029
|
updated_at?: string;
|
|
6890
7030
|
|
|
6891
7031
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -6962,6 +7102,8 @@ export namespace CreateConnectionResponse {
|
|
|
6962
7102
|
|
|
6963
7103
|
status_message?: string | null;
|
|
6964
7104
|
|
|
7105
|
+
toon_schema?: string;
|
|
7106
|
+
|
|
6965
7107
|
updated_at?: string;
|
|
6966
7108
|
|
|
6967
7109
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -7178,6 +7320,8 @@ export namespace CreateConnectionResponse {
|
|
|
7178
7320
|
|
|
7179
7321
|
status_message?: string | null;
|
|
7180
7322
|
|
|
7323
|
+
toon_schema?: string;
|
|
7324
|
+
|
|
7181
7325
|
updated_at?: string;
|
|
7182
7326
|
|
|
7183
7327
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -7299,6 +7443,8 @@ export namespace CreateConnectionResponse {
|
|
|
7299
7443
|
|
|
7300
7444
|
status_message?: string | null;
|
|
7301
7445
|
|
|
7446
|
+
toon_schema?: string;
|
|
7447
|
+
|
|
7302
7448
|
updated_at?: string;
|
|
7303
7449
|
|
|
7304
7450
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -7381,6 +7527,8 @@ export namespace CreateConnectionResponse {
|
|
|
7381
7527
|
|
|
7382
7528
|
status_message?: string | null;
|
|
7383
7529
|
|
|
7530
|
+
toon_schema?: string;
|
|
7531
|
+
|
|
7384
7532
|
updated_at?: string;
|
|
7385
7533
|
|
|
7386
7534
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -13724,6 +13872,8 @@ export namespace GetConnectionResponse {
|
|
|
13724
13872
|
|
|
13725
13873
|
status_message?: string | null;
|
|
13726
13874
|
|
|
13875
|
+
toon_schema?: string;
|
|
13876
|
+
|
|
13727
13877
|
updated_at?: string;
|
|
13728
13878
|
|
|
13729
13879
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -13800,6 +13950,8 @@ export namespace GetConnectionResponse {
|
|
|
13800
13950
|
|
|
13801
13951
|
status_message?: string | null;
|
|
13802
13952
|
|
|
13953
|
+
toon_schema?: string;
|
|
13954
|
+
|
|
13803
13955
|
updated_at?: string;
|
|
13804
13956
|
|
|
13805
13957
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -13922,6 +14074,8 @@ export namespace GetConnectionResponse {
|
|
|
13922
14074
|
|
|
13923
14075
|
status_message?: string | null;
|
|
13924
14076
|
|
|
14077
|
+
toon_schema?: string;
|
|
14078
|
+
|
|
13925
14079
|
updated_at?: string;
|
|
13926
14080
|
|
|
13927
14081
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -13998,6 +14152,8 @@ export namespace GetConnectionResponse {
|
|
|
13998
14152
|
|
|
13999
14153
|
status_message?: string | null;
|
|
14000
14154
|
|
|
14155
|
+
toon_schema?: string;
|
|
14156
|
+
|
|
14001
14157
|
updated_at?: string;
|
|
14002
14158
|
|
|
14003
14159
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14120,6 +14276,8 @@ export namespace GetConnectionResponse {
|
|
|
14120
14276
|
|
|
14121
14277
|
status_message?: string | null;
|
|
14122
14278
|
|
|
14279
|
+
toon_schema?: string;
|
|
14280
|
+
|
|
14123
14281
|
updated_at?: string;
|
|
14124
14282
|
|
|
14125
14283
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14196,6 +14354,8 @@ export namespace GetConnectionResponse {
|
|
|
14196
14354
|
|
|
14197
14355
|
status_message?: string | null;
|
|
14198
14356
|
|
|
14357
|
+
toon_schema?: string;
|
|
14358
|
+
|
|
14199
14359
|
updated_at?: string;
|
|
14200
14360
|
|
|
14201
14361
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14324,6 +14484,8 @@ export namespace GetConnectionResponse {
|
|
|
14324
14484
|
|
|
14325
14485
|
status_message?: string | null;
|
|
14326
14486
|
|
|
14487
|
+
toon_schema?: string;
|
|
14488
|
+
|
|
14327
14489
|
updated_at?: string;
|
|
14328
14490
|
|
|
14329
14491
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14446,6 +14608,8 @@ export namespace GetConnectionResponse {
|
|
|
14446
14608
|
|
|
14447
14609
|
status_message?: string | null;
|
|
14448
14610
|
|
|
14611
|
+
toon_schema?: string;
|
|
14612
|
+
|
|
14449
14613
|
updated_at?: string;
|
|
14450
14614
|
|
|
14451
14615
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14568,6 +14732,8 @@ export namespace GetConnectionResponse {
|
|
|
14568
14732
|
|
|
14569
14733
|
status_message?: string | null;
|
|
14570
14734
|
|
|
14735
|
+
toon_schema?: string;
|
|
14736
|
+
|
|
14571
14737
|
updated_at?: string;
|
|
14572
14738
|
|
|
14573
14739
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14690,6 +14856,8 @@ export namespace GetConnectionResponse {
|
|
|
14690
14856
|
|
|
14691
14857
|
status_message?: string | null;
|
|
14692
14858
|
|
|
14859
|
+
toon_schema?: string;
|
|
14860
|
+
|
|
14693
14861
|
updated_at?: string;
|
|
14694
14862
|
|
|
14695
14863
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14812,6 +14980,8 @@ export namespace GetConnectionResponse {
|
|
|
14812
14980
|
|
|
14813
14981
|
status_message?: string | null;
|
|
14814
14982
|
|
|
14983
|
+
toon_schema?: string;
|
|
14984
|
+
|
|
14815
14985
|
updated_at?: string;
|
|
14816
14986
|
|
|
14817
14987
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -14934,6 +15104,8 @@ export namespace GetConnectionResponse {
|
|
|
14934
15104
|
|
|
14935
15105
|
status_message?: string | null;
|
|
14936
15106
|
|
|
15107
|
+
toon_schema?: string;
|
|
15108
|
+
|
|
14937
15109
|
updated_at?: string;
|
|
14938
15110
|
|
|
14939
15111
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15061,6 +15233,8 @@ export namespace GetConnectionResponse {
|
|
|
15061
15233
|
|
|
15062
15234
|
status_message?: string | null;
|
|
15063
15235
|
|
|
15236
|
+
toon_schema?: string;
|
|
15237
|
+
|
|
15064
15238
|
updated_at?: string;
|
|
15065
15239
|
|
|
15066
15240
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15196,6 +15370,8 @@ export namespace GetConnectionResponse {
|
|
|
15196
15370
|
|
|
15197
15371
|
status_message?: string | null;
|
|
15198
15372
|
|
|
15373
|
+
toon_schema?: string;
|
|
15374
|
+
|
|
15199
15375
|
updated_at?: string;
|
|
15200
15376
|
|
|
15201
15377
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15318,6 +15494,8 @@ export namespace GetConnectionResponse {
|
|
|
15318
15494
|
|
|
15319
15495
|
status_message?: string | null;
|
|
15320
15496
|
|
|
15497
|
+
toon_schema?: string;
|
|
15498
|
+
|
|
15321
15499
|
updated_at?: string;
|
|
15322
15500
|
|
|
15323
15501
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15440,6 +15618,8 @@ export namespace GetConnectionResponse {
|
|
|
15440
15618
|
|
|
15441
15619
|
status_message?: string | null;
|
|
15442
15620
|
|
|
15621
|
+
toon_schema?: string;
|
|
15622
|
+
|
|
15443
15623
|
updated_at?: string;
|
|
15444
15624
|
|
|
15445
15625
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15516,6 +15696,8 @@ export namespace GetConnectionResponse {
|
|
|
15516
15696
|
|
|
15517
15697
|
status_message?: string | null;
|
|
15518
15698
|
|
|
15699
|
+
toon_schema?: string;
|
|
15700
|
+
|
|
15519
15701
|
updated_at?: string;
|
|
15520
15702
|
|
|
15521
15703
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15638,6 +15820,8 @@ export namespace GetConnectionResponse {
|
|
|
15638
15820
|
|
|
15639
15821
|
status_message?: string | null;
|
|
15640
15822
|
|
|
15823
|
+
toon_schema?: string;
|
|
15824
|
+
|
|
15641
15825
|
updated_at?: string;
|
|
15642
15826
|
|
|
15643
15827
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15760,6 +15944,8 @@ export namespace GetConnectionResponse {
|
|
|
15760
15944
|
|
|
15761
15945
|
status_message?: string | null;
|
|
15762
15946
|
|
|
15947
|
+
toon_schema?: string;
|
|
15948
|
+
|
|
15763
15949
|
updated_at?: string;
|
|
15764
15950
|
|
|
15765
15951
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -15882,6 +16068,8 @@ export namespace GetConnectionResponse {
|
|
|
15882
16068
|
|
|
15883
16069
|
status_message?: string | null;
|
|
15884
16070
|
|
|
16071
|
+
toon_schema?: string;
|
|
16072
|
+
|
|
15885
16073
|
updated_at?: string;
|
|
15886
16074
|
|
|
15887
16075
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16004,6 +16192,8 @@ export namespace GetConnectionResponse {
|
|
|
16004
16192
|
|
|
16005
16193
|
status_message?: string | null;
|
|
16006
16194
|
|
|
16195
|
+
toon_schema?: string;
|
|
16196
|
+
|
|
16007
16197
|
updated_at?: string;
|
|
16008
16198
|
|
|
16009
16199
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16126,6 +16316,8 @@ export namespace GetConnectionResponse {
|
|
|
16126
16316
|
|
|
16127
16317
|
status_message?: string | null;
|
|
16128
16318
|
|
|
16319
|
+
toon_schema?: string;
|
|
16320
|
+
|
|
16129
16321
|
updated_at?: string;
|
|
16130
16322
|
|
|
16131
16323
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16248,6 +16440,8 @@ export namespace GetConnectionResponse {
|
|
|
16248
16440
|
|
|
16249
16441
|
status_message?: string | null;
|
|
16250
16442
|
|
|
16443
|
+
toon_schema?: string;
|
|
16444
|
+
|
|
16251
16445
|
updated_at?: string;
|
|
16252
16446
|
|
|
16253
16447
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16370,6 +16564,8 @@ export namespace GetConnectionResponse {
|
|
|
16370
16564
|
|
|
16371
16565
|
status_message?: string | null;
|
|
16372
16566
|
|
|
16567
|
+
toon_schema?: string;
|
|
16568
|
+
|
|
16373
16569
|
updated_at?: string;
|
|
16374
16570
|
|
|
16375
16571
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16492,6 +16688,8 @@ export namespace GetConnectionResponse {
|
|
|
16492
16688
|
|
|
16493
16689
|
status_message?: string | null;
|
|
16494
16690
|
|
|
16691
|
+
toon_schema?: string;
|
|
16692
|
+
|
|
16495
16693
|
updated_at?: string;
|
|
16496
16694
|
|
|
16497
16695
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16614,6 +16812,8 @@ export namespace GetConnectionResponse {
|
|
|
16614
16812
|
|
|
16615
16813
|
status_message?: string | null;
|
|
16616
16814
|
|
|
16815
|
+
toon_schema?: string;
|
|
16816
|
+
|
|
16617
16817
|
updated_at?: string;
|
|
16618
16818
|
|
|
16619
16819
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16736,6 +16936,8 @@ export namespace GetConnectionResponse {
|
|
|
16736
16936
|
|
|
16737
16937
|
status_message?: string | null;
|
|
16738
16938
|
|
|
16939
|
+
toon_schema?: string;
|
|
16940
|
+
|
|
16739
16941
|
updated_at?: string;
|
|
16740
16942
|
|
|
16741
16943
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16868,6 +17070,8 @@ export namespace GetConnectionResponse {
|
|
|
16868
17070
|
|
|
16869
17071
|
status_message?: string | null;
|
|
16870
17072
|
|
|
17073
|
+
toon_schema?: string;
|
|
17074
|
+
|
|
16871
17075
|
updated_at?: string;
|
|
16872
17076
|
|
|
16873
17077
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -16990,6 +17194,8 @@ export namespace GetConnectionResponse {
|
|
|
16990
17194
|
|
|
16991
17195
|
status_message?: string | null;
|
|
16992
17196
|
|
|
17197
|
+
toon_schema?: string;
|
|
17198
|
+
|
|
16993
17199
|
updated_at?: string;
|
|
16994
17200
|
|
|
16995
17201
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17117,6 +17323,8 @@ export namespace GetConnectionResponse {
|
|
|
17117
17323
|
|
|
17118
17324
|
status_message?: string | null;
|
|
17119
17325
|
|
|
17326
|
+
toon_schema?: string;
|
|
17327
|
+
|
|
17120
17328
|
updated_at?: string;
|
|
17121
17329
|
|
|
17122
17330
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17239,6 +17447,8 @@ export namespace GetConnectionResponse {
|
|
|
17239
17447
|
|
|
17240
17448
|
status_message?: string | null;
|
|
17241
17449
|
|
|
17450
|
+
toon_schema?: string;
|
|
17451
|
+
|
|
17242
17452
|
updated_at?: string;
|
|
17243
17453
|
|
|
17244
17454
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17361,6 +17571,8 @@ export namespace GetConnectionResponse {
|
|
|
17361
17571
|
|
|
17362
17572
|
status_message?: string | null;
|
|
17363
17573
|
|
|
17574
|
+
toon_schema?: string;
|
|
17575
|
+
|
|
17364
17576
|
updated_at?: string;
|
|
17365
17577
|
|
|
17366
17578
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17483,6 +17695,8 @@ export namespace GetConnectionResponse {
|
|
|
17483
17695
|
|
|
17484
17696
|
status_message?: string | null;
|
|
17485
17697
|
|
|
17698
|
+
toon_schema?: string;
|
|
17699
|
+
|
|
17486
17700
|
updated_at?: string;
|
|
17487
17701
|
|
|
17488
17702
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17605,6 +17819,8 @@ export namespace GetConnectionResponse {
|
|
|
17605
17819
|
|
|
17606
17820
|
status_message?: string | null;
|
|
17607
17821
|
|
|
17822
|
+
toon_schema?: string;
|
|
17823
|
+
|
|
17608
17824
|
updated_at?: string;
|
|
17609
17825
|
|
|
17610
17826
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17687,6 +17903,8 @@ export namespace GetConnectionResponse {
|
|
|
17687
17903
|
|
|
17688
17904
|
status_message?: string | null;
|
|
17689
17905
|
|
|
17906
|
+
toon_schema?: string;
|
|
17907
|
+
|
|
17690
17908
|
updated_at?: string;
|
|
17691
17909
|
|
|
17692
17910
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17809,6 +18027,8 @@ export namespace GetConnectionResponse {
|
|
|
17809
18027
|
|
|
17810
18028
|
status_message?: string | null;
|
|
17811
18029
|
|
|
18030
|
+
toon_schema?: string;
|
|
18031
|
+
|
|
17812
18032
|
updated_at?: string;
|
|
17813
18033
|
|
|
17814
18034
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -17931,6 +18151,8 @@ export namespace GetConnectionResponse {
|
|
|
17931
18151
|
|
|
17932
18152
|
status_message?: string | null;
|
|
17933
18153
|
|
|
18154
|
+
toon_schema?: string;
|
|
18155
|
+
|
|
17934
18156
|
updated_at?: string;
|
|
17935
18157
|
|
|
17936
18158
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18058,6 +18280,8 @@ export namespace GetConnectionResponse {
|
|
|
18058
18280
|
|
|
18059
18281
|
status_message?: string | null;
|
|
18060
18282
|
|
|
18283
|
+
toon_schema?: string;
|
|
18284
|
+
|
|
18061
18285
|
updated_at?: string;
|
|
18062
18286
|
|
|
18063
18287
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18180,6 +18404,8 @@ export namespace GetConnectionResponse {
|
|
|
18180
18404
|
|
|
18181
18405
|
status_message?: string | null;
|
|
18182
18406
|
|
|
18407
|
+
toon_schema?: string;
|
|
18408
|
+
|
|
18183
18409
|
updated_at?: string;
|
|
18184
18410
|
|
|
18185
18411
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18302,6 +18528,8 @@ export namespace GetConnectionResponse {
|
|
|
18302
18528
|
|
|
18303
18529
|
status_message?: string | null;
|
|
18304
18530
|
|
|
18531
|
+
toon_schema?: string;
|
|
18532
|
+
|
|
18305
18533
|
updated_at?: string;
|
|
18306
18534
|
|
|
18307
18535
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18424,6 +18652,8 @@ export namespace GetConnectionResponse {
|
|
|
18424
18652
|
|
|
18425
18653
|
status_message?: string | null;
|
|
18426
18654
|
|
|
18655
|
+
toon_schema?: string;
|
|
18656
|
+
|
|
18427
18657
|
updated_at?: string;
|
|
18428
18658
|
|
|
18429
18659
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18552,6 +18782,8 @@ export namespace GetConnectionResponse {
|
|
|
18552
18782
|
|
|
18553
18783
|
status_message?: string | null;
|
|
18554
18784
|
|
|
18785
|
+
toon_schema?: string;
|
|
18786
|
+
|
|
18555
18787
|
updated_at?: string;
|
|
18556
18788
|
|
|
18557
18789
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18674,6 +18906,8 @@ export namespace GetConnectionResponse {
|
|
|
18674
18906
|
|
|
18675
18907
|
status_message?: string | null;
|
|
18676
18908
|
|
|
18909
|
+
toon_schema?: string;
|
|
18910
|
+
|
|
18677
18911
|
updated_at?: string;
|
|
18678
18912
|
|
|
18679
18913
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18751,6 +18985,8 @@ export namespace GetConnectionResponse {
|
|
|
18751
18985
|
|
|
18752
18986
|
status_message?: string | null;
|
|
18753
18987
|
|
|
18988
|
+
toon_schema?: string;
|
|
18989
|
+
|
|
18754
18990
|
updated_at?: string;
|
|
18755
18991
|
|
|
18756
18992
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -18884,6 +19120,8 @@ export namespace GetConnectionResponse {
|
|
|
18884
19120
|
|
|
18885
19121
|
status_message?: string | null;
|
|
18886
19122
|
|
|
19123
|
+
toon_schema?: string;
|
|
19124
|
+
|
|
18887
19125
|
updated_at?: string;
|
|
18888
19126
|
|
|
18889
19127
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19006,6 +19244,8 @@ export namespace GetConnectionResponse {
|
|
|
19006
19244
|
|
|
19007
19245
|
status_message?: string | null;
|
|
19008
19246
|
|
|
19247
|
+
toon_schema?: string;
|
|
19248
|
+
|
|
19009
19249
|
updated_at?: string;
|
|
19010
19250
|
|
|
19011
19251
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19082,6 +19322,8 @@ export namespace GetConnectionResponse {
|
|
|
19082
19322
|
|
|
19083
19323
|
status_message?: string | null;
|
|
19084
19324
|
|
|
19325
|
+
toon_schema?: string;
|
|
19326
|
+
|
|
19085
19327
|
updated_at?: string;
|
|
19086
19328
|
|
|
19087
19329
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19204,6 +19446,8 @@ export namespace GetConnectionResponse {
|
|
|
19204
19446
|
|
|
19205
19447
|
status_message?: string | null;
|
|
19206
19448
|
|
|
19449
|
+
toon_schema?: string;
|
|
19450
|
+
|
|
19207
19451
|
updated_at?: string;
|
|
19208
19452
|
|
|
19209
19453
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19331,6 +19575,8 @@ export namespace GetConnectionResponse {
|
|
|
19331
19575
|
|
|
19332
19576
|
status_message?: string | null;
|
|
19333
19577
|
|
|
19578
|
+
toon_schema?: string;
|
|
19579
|
+
|
|
19334
19580
|
updated_at?: string;
|
|
19335
19581
|
|
|
19336
19582
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19453,6 +19699,8 @@ export namespace GetConnectionResponse {
|
|
|
19453
19699
|
|
|
19454
19700
|
status_message?: string | null;
|
|
19455
19701
|
|
|
19702
|
+
toon_schema?: string;
|
|
19703
|
+
|
|
19456
19704
|
updated_at?: string;
|
|
19457
19705
|
|
|
19458
19706
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19526,6 +19774,8 @@ export namespace GetConnectionResponse {
|
|
|
19526
19774
|
|
|
19527
19775
|
status_message?: string | null;
|
|
19528
19776
|
|
|
19777
|
+
toon_schema?: string;
|
|
19778
|
+
|
|
19529
19779
|
updated_at?: string;
|
|
19530
19780
|
|
|
19531
19781
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19715,6 +19965,8 @@ export namespace GetConnectionResponse {
|
|
|
19715
19965
|
|
|
19716
19966
|
status_message?: string | null;
|
|
19717
19967
|
|
|
19968
|
+
toon_schema?: string;
|
|
19969
|
+
|
|
19718
19970
|
updated_at?: string;
|
|
19719
19971
|
|
|
19720
19972
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19833,6 +20085,8 @@ export namespace GetConnectionResponse {
|
|
|
19833
20085
|
|
|
19834
20086
|
status_message?: string | null;
|
|
19835
20087
|
|
|
20088
|
+
toon_schema?: string;
|
|
20089
|
+
|
|
19836
20090
|
updated_at?: string;
|
|
19837
20091
|
|
|
19838
20092
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19902,6 +20156,8 @@ export namespace GetConnectionResponse {
|
|
|
19902
20156
|
|
|
19903
20157
|
status_message?: string | null;
|
|
19904
20158
|
|
|
20159
|
+
toon_schema?: string;
|
|
20160
|
+
|
|
19905
20161
|
updated_at?: string;
|
|
19906
20162
|
|
|
19907
20163
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -19985,6 +20241,8 @@ export namespace GetConnectionResponse {
|
|
|
19985
20241
|
|
|
19986
20242
|
status_message?: string | null;
|
|
19987
20243
|
|
|
20244
|
+
toon_schema?: string;
|
|
20245
|
+
|
|
19988
20246
|
updated_at?: string;
|
|
19989
20247
|
|
|
19990
20248
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20058,6 +20316,8 @@ export namespace GetConnectionResponse {
|
|
|
20058
20316
|
|
|
20059
20317
|
status_message?: string | null;
|
|
20060
20318
|
|
|
20319
|
+
toon_schema?: string;
|
|
20320
|
+
|
|
20061
20321
|
updated_at?: string;
|
|
20062
20322
|
|
|
20063
20323
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20136,6 +20396,8 @@ export namespace GetConnectionResponse {
|
|
|
20136
20396
|
|
|
20137
20397
|
status_message?: string | null;
|
|
20138
20398
|
|
|
20399
|
+
toon_schema?: string;
|
|
20400
|
+
|
|
20139
20401
|
updated_at?: string;
|
|
20140
20402
|
|
|
20141
20403
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20214,6 +20476,8 @@ export namespace GetConnectionResponse {
|
|
|
20214
20476
|
|
|
20215
20477
|
status_message?: string | null;
|
|
20216
20478
|
|
|
20479
|
+
toon_schema?: string;
|
|
20480
|
+
|
|
20217
20481
|
updated_at?: string;
|
|
20218
20482
|
|
|
20219
20483
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20290,6 +20554,8 @@ export namespace GetConnectionResponse {
|
|
|
20290
20554
|
|
|
20291
20555
|
status_message?: string | null;
|
|
20292
20556
|
|
|
20557
|
+
toon_schema?: string;
|
|
20558
|
+
|
|
20293
20559
|
updated_at?: string;
|
|
20294
20560
|
|
|
20295
20561
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20506,6 +20772,8 @@ export namespace GetConnectionResponse {
|
|
|
20506
20772
|
|
|
20507
20773
|
status_message?: string | null;
|
|
20508
20774
|
|
|
20775
|
+
toon_schema?: string;
|
|
20776
|
+
|
|
20509
20777
|
updated_at?: string;
|
|
20510
20778
|
|
|
20511
20779
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20627,6 +20895,8 @@ export namespace GetConnectionResponse {
|
|
|
20627
20895
|
|
|
20628
20896
|
status_message?: string | null;
|
|
20629
20897
|
|
|
20898
|
+
toon_schema?: string;
|
|
20899
|
+
|
|
20630
20900
|
updated_at?: string;
|
|
20631
20901
|
|
|
20632
20902
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20709,6 +20979,8 @@ export namespace GetConnectionResponse {
|
|
|
20709
20979
|
|
|
20710
20980
|
status_message?: string | null;
|
|
20711
20981
|
|
|
20982
|
+
toon_schema?: string;
|
|
20983
|
+
|
|
20712
20984
|
updated_at?: string;
|
|
20713
20985
|
|
|
20714
20986
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20872,6 +21144,8 @@ export namespace ListConnectionsResponse {
|
|
|
20872
21144
|
|
|
20873
21145
|
status_message?: string | null;
|
|
20874
21146
|
|
|
21147
|
+
toon_schema?: string;
|
|
21148
|
+
|
|
20875
21149
|
updated_at?: string;
|
|
20876
21150
|
|
|
20877
21151
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -20948,6 +21222,8 @@ export namespace ListConnectionsResponse {
|
|
|
20948
21222
|
|
|
20949
21223
|
status_message?: string | null;
|
|
20950
21224
|
|
|
21225
|
+
toon_schema?: string;
|
|
21226
|
+
|
|
20951
21227
|
updated_at?: string;
|
|
20952
21228
|
|
|
20953
21229
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21070,6 +21346,8 @@ export namespace ListConnectionsResponse {
|
|
|
21070
21346
|
|
|
21071
21347
|
status_message?: string | null;
|
|
21072
21348
|
|
|
21349
|
+
toon_schema?: string;
|
|
21350
|
+
|
|
21073
21351
|
updated_at?: string;
|
|
21074
21352
|
|
|
21075
21353
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21146,6 +21424,8 @@ export namespace ListConnectionsResponse {
|
|
|
21146
21424
|
|
|
21147
21425
|
status_message?: string | null;
|
|
21148
21426
|
|
|
21427
|
+
toon_schema?: string;
|
|
21428
|
+
|
|
21149
21429
|
updated_at?: string;
|
|
21150
21430
|
|
|
21151
21431
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21268,6 +21548,8 @@ export namespace ListConnectionsResponse {
|
|
|
21268
21548
|
|
|
21269
21549
|
status_message?: string | null;
|
|
21270
21550
|
|
|
21551
|
+
toon_schema?: string;
|
|
21552
|
+
|
|
21271
21553
|
updated_at?: string;
|
|
21272
21554
|
|
|
21273
21555
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21344,6 +21626,8 @@ export namespace ListConnectionsResponse {
|
|
|
21344
21626
|
|
|
21345
21627
|
status_message?: string | null;
|
|
21346
21628
|
|
|
21629
|
+
toon_schema?: string;
|
|
21630
|
+
|
|
21347
21631
|
updated_at?: string;
|
|
21348
21632
|
|
|
21349
21633
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21472,6 +21756,8 @@ export namespace ListConnectionsResponse {
|
|
|
21472
21756
|
|
|
21473
21757
|
status_message?: string | null;
|
|
21474
21758
|
|
|
21759
|
+
toon_schema?: string;
|
|
21760
|
+
|
|
21475
21761
|
updated_at?: string;
|
|
21476
21762
|
|
|
21477
21763
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21594,6 +21880,8 @@ export namespace ListConnectionsResponse {
|
|
|
21594
21880
|
|
|
21595
21881
|
status_message?: string | null;
|
|
21596
21882
|
|
|
21883
|
+
toon_schema?: string;
|
|
21884
|
+
|
|
21597
21885
|
updated_at?: string;
|
|
21598
21886
|
|
|
21599
21887
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21716,6 +22004,8 @@ export namespace ListConnectionsResponse {
|
|
|
21716
22004
|
|
|
21717
22005
|
status_message?: string | null;
|
|
21718
22006
|
|
|
22007
|
+
toon_schema?: string;
|
|
22008
|
+
|
|
21719
22009
|
updated_at?: string;
|
|
21720
22010
|
|
|
21721
22011
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21838,6 +22128,8 @@ export namespace ListConnectionsResponse {
|
|
|
21838
22128
|
|
|
21839
22129
|
status_message?: string | null;
|
|
21840
22130
|
|
|
22131
|
+
toon_schema?: string;
|
|
22132
|
+
|
|
21841
22133
|
updated_at?: string;
|
|
21842
22134
|
|
|
21843
22135
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -21960,6 +22252,8 @@ export namespace ListConnectionsResponse {
|
|
|
21960
22252
|
|
|
21961
22253
|
status_message?: string | null;
|
|
21962
22254
|
|
|
22255
|
+
toon_schema?: string;
|
|
22256
|
+
|
|
21963
22257
|
updated_at?: string;
|
|
21964
22258
|
|
|
21965
22259
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22082,6 +22376,8 @@ export namespace ListConnectionsResponse {
|
|
|
22082
22376
|
|
|
22083
22377
|
status_message?: string | null;
|
|
22084
22378
|
|
|
22379
|
+
toon_schema?: string;
|
|
22380
|
+
|
|
22085
22381
|
updated_at?: string;
|
|
22086
22382
|
|
|
22087
22383
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22209,6 +22505,8 @@ export namespace ListConnectionsResponse {
|
|
|
22209
22505
|
|
|
22210
22506
|
status_message?: string | null;
|
|
22211
22507
|
|
|
22508
|
+
toon_schema?: string;
|
|
22509
|
+
|
|
22212
22510
|
updated_at?: string;
|
|
22213
22511
|
|
|
22214
22512
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22344,6 +22642,8 @@ export namespace ListConnectionsResponse {
|
|
|
22344
22642
|
|
|
22345
22643
|
status_message?: string | null;
|
|
22346
22644
|
|
|
22645
|
+
toon_schema?: string;
|
|
22646
|
+
|
|
22347
22647
|
updated_at?: string;
|
|
22348
22648
|
|
|
22349
22649
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22466,6 +22766,8 @@ export namespace ListConnectionsResponse {
|
|
|
22466
22766
|
|
|
22467
22767
|
status_message?: string | null;
|
|
22468
22768
|
|
|
22769
|
+
toon_schema?: string;
|
|
22770
|
+
|
|
22469
22771
|
updated_at?: string;
|
|
22470
22772
|
|
|
22471
22773
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22588,6 +22890,8 @@ export namespace ListConnectionsResponse {
|
|
|
22588
22890
|
|
|
22589
22891
|
status_message?: string | null;
|
|
22590
22892
|
|
|
22893
|
+
toon_schema?: string;
|
|
22894
|
+
|
|
22591
22895
|
updated_at?: string;
|
|
22592
22896
|
|
|
22593
22897
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22664,6 +22968,8 @@ export namespace ListConnectionsResponse {
|
|
|
22664
22968
|
|
|
22665
22969
|
status_message?: string | null;
|
|
22666
22970
|
|
|
22971
|
+
toon_schema?: string;
|
|
22972
|
+
|
|
22667
22973
|
updated_at?: string;
|
|
22668
22974
|
|
|
22669
22975
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22786,6 +23092,8 @@ export namespace ListConnectionsResponse {
|
|
|
22786
23092
|
|
|
22787
23093
|
status_message?: string | null;
|
|
22788
23094
|
|
|
23095
|
+
toon_schema?: string;
|
|
23096
|
+
|
|
22789
23097
|
updated_at?: string;
|
|
22790
23098
|
|
|
22791
23099
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -22908,6 +23216,8 @@ export namespace ListConnectionsResponse {
|
|
|
22908
23216
|
|
|
22909
23217
|
status_message?: string | null;
|
|
22910
23218
|
|
|
23219
|
+
toon_schema?: string;
|
|
23220
|
+
|
|
22911
23221
|
updated_at?: string;
|
|
22912
23222
|
|
|
22913
23223
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23030,6 +23340,8 @@ export namespace ListConnectionsResponse {
|
|
|
23030
23340
|
|
|
23031
23341
|
status_message?: string | null;
|
|
23032
23342
|
|
|
23343
|
+
toon_schema?: string;
|
|
23344
|
+
|
|
23033
23345
|
updated_at?: string;
|
|
23034
23346
|
|
|
23035
23347
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23152,6 +23464,8 @@ export namespace ListConnectionsResponse {
|
|
|
23152
23464
|
|
|
23153
23465
|
status_message?: string | null;
|
|
23154
23466
|
|
|
23467
|
+
toon_schema?: string;
|
|
23468
|
+
|
|
23155
23469
|
updated_at?: string;
|
|
23156
23470
|
|
|
23157
23471
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23274,6 +23588,8 @@ export namespace ListConnectionsResponse {
|
|
|
23274
23588
|
|
|
23275
23589
|
status_message?: string | null;
|
|
23276
23590
|
|
|
23591
|
+
toon_schema?: string;
|
|
23592
|
+
|
|
23277
23593
|
updated_at?: string;
|
|
23278
23594
|
|
|
23279
23595
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23396,6 +23712,8 @@ export namespace ListConnectionsResponse {
|
|
|
23396
23712
|
|
|
23397
23713
|
status_message?: string | null;
|
|
23398
23714
|
|
|
23715
|
+
toon_schema?: string;
|
|
23716
|
+
|
|
23399
23717
|
updated_at?: string;
|
|
23400
23718
|
|
|
23401
23719
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23518,6 +23836,8 @@ export namespace ListConnectionsResponse {
|
|
|
23518
23836
|
|
|
23519
23837
|
status_message?: string | null;
|
|
23520
23838
|
|
|
23839
|
+
toon_schema?: string;
|
|
23840
|
+
|
|
23521
23841
|
updated_at?: string;
|
|
23522
23842
|
|
|
23523
23843
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23640,6 +23960,8 @@ export namespace ListConnectionsResponse {
|
|
|
23640
23960
|
|
|
23641
23961
|
status_message?: string | null;
|
|
23642
23962
|
|
|
23963
|
+
toon_schema?: string;
|
|
23964
|
+
|
|
23643
23965
|
updated_at?: string;
|
|
23644
23966
|
|
|
23645
23967
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23762,6 +24084,8 @@ export namespace ListConnectionsResponse {
|
|
|
23762
24084
|
|
|
23763
24085
|
status_message?: string | null;
|
|
23764
24086
|
|
|
24087
|
+
toon_schema?: string;
|
|
24088
|
+
|
|
23765
24089
|
updated_at?: string;
|
|
23766
24090
|
|
|
23767
24091
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -23884,6 +24208,8 @@ export namespace ListConnectionsResponse {
|
|
|
23884
24208
|
|
|
23885
24209
|
status_message?: string | null;
|
|
23886
24210
|
|
|
24211
|
+
toon_schema?: string;
|
|
24212
|
+
|
|
23887
24213
|
updated_at?: string;
|
|
23888
24214
|
|
|
23889
24215
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24016,6 +24342,8 @@ export namespace ListConnectionsResponse {
|
|
|
24016
24342
|
|
|
24017
24343
|
status_message?: string | null;
|
|
24018
24344
|
|
|
24345
|
+
toon_schema?: string;
|
|
24346
|
+
|
|
24019
24347
|
updated_at?: string;
|
|
24020
24348
|
|
|
24021
24349
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24138,6 +24466,8 @@ export namespace ListConnectionsResponse {
|
|
|
24138
24466
|
|
|
24139
24467
|
status_message?: string | null;
|
|
24140
24468
|
|
|
24469
|
+
toon_schema?: string;
|
|
24470
|
+
|
|
24141
24471
|
updated_at?: string;
|
|
24142
24472
|
|
|
24143
24473
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24265,6 +24595,8 @@ export namespace ListConnectionsResponse {
|
|
|
24265
24595
|
|
|
24266
24596
|
status_message?: string | null;
|
|
24267
24597
|
|
|
24598
|
+
toon_schema?: string;
|
|
24599
|
+
|
|
24268
24600
|
updated_at?: string;
|
|
24269
24601
|
|
|
24270
24602
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24387,6 +24719,8 @@ export namespace ListConnectionsResponse {
|
|
|
24387
24719
|
|
|
24388
24720
|
status_message?: string | null;
|
|
24389
24721
|
|
|
24722
|
+
toon_schema?: string;
|
|
24723
|
+
|
|
24390
24724
|
updated_at?: string;
|
|
24391
24725
|
|
|
24392
24726
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24509,6 +24843,8 @@ export namespace ListConnectionsResponse {
|
|
|
24509
24843
|
|
|
24510
24844
|
status_message?: string | null;
|
|
24511
24845
|
|
|
24846
|
+
toon_schema?: string;
|
|
24847
|
+
|
|
24512
24848
|
updated_at?: string;
|
|
24513
24849
|
|
|
24514
24850
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24631,6 +24967,8 @@ export namespace ListConnectionsResponse {
|
|
|
24631
24967
|
|
|
24632
24968
|
status_message?: string | null;
|
|
24633
24969
|
|
|
24970
|
+
toon_schema?: string;
|
|
24971
|
+
|
|
24634
24972
|
updated_at?: string;
|
|
24635
24973
|
|
|
24636
24974
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24753,6 +25091,8 @@ export namespace ListConnectionsResponse {
|
|
|
24753
25091
|
|
|
24754
25092
|
status_message?: string | null;
|
|
24755
25093
|
|
|
25094
|
+
toon_schema?: string;
|
|
25095
|
+
|
|
24756
25096
|
updated_at?: string;
|
|
24757
25097
|
|
|
24758
25098
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24835,6 +25175,8 @@ export namespace ListConnectionsResponse {
|
|
|
24835
25175
|
|
|
24836
25176
|
status_message?: string | null;
|
|
24837
25177
|
|
|
25178
|
+
toon_schema?: string;
|
|
25179
|
+
|
|
24838
25180
|
updated_at?: string;
|
|
24839
25181
|
|
|
24840
25182
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -24957,6 +25299,8 @@ export namespace ListConnectionsResponse {
|
|
|
24957
25299
|
|
|
24958
25300
|
status_message?: string | null;
|
|
24959
25301
|
|
|
25302
|
+
toon_schema?: string;
|
|
25303
|
+
|
|
24960
25304
|
updated_at?: string;
|
|
24961
25305
|
|
|
24962
25306
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25079,6 +25423,8 @@ export namespace ListConnectionsResponse {
|
|
|
25079
25423
|
|
|
25080
25424
|
status_message?: string | null;
|
|
25081
25425
|
|
|
25426
|
+
toon_schema?: string;
|
|
25427
|
+
|
|
25082
25428
|
updated_at?: string;
|
|
25083
25429
|
|
|
25084
25430
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25206,6 +25552,8 @@ export namespace ListConnectionsResponse {
|
|
|
25206
25552
|
|
|
25207
25553
|
status_message?: string | null;
|
|
25208
25554
|
|
|
25555
|
+
toon_schema?: string;
|
|
25556
|
+
|
|
25209
25557
|
updated_at?: string;
|
|
25210
25558
|
|
|
25211
25559
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25328,6 +25676,8 @@ export namespace ListConnectionsResponse {
|
|
|
25328
25676
|
|
|
25329
25677
|
status_message?: string | null;
|
|
25330
25678
|
|
|
25679
|
+
toon_schema?: string;
|
|
25680
|
+
|
|
25331
25681
|
updated_at?: string;
|
|
25332
25682
|
|
|
25333
25683
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25450,6 +25800,8 @@ export namespace ListConnectionsResponse {
|
|
|
25450
25800
|
|
|
25451
25801
|
status_message?: string | null;
|
|
25452
25802
|
|
|
25803
|
+
toon_schema?: string;
|
|
25804
|
+
|
|
25453
25805
|
updated_at?: string;
|
|
25454
25806
|
|
|
25455
25807
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25572,6 +25924,8 @@ export namespace ListConnectionsResponse {
|
|
|
25572
25924
|
|
|
25573
25925
|
status_message?: string | null;
|
|
25574
25926
|
|
|
25927
|
+
toon_schema?: string;
|
|
25928
|
+
|
|
25575
25929
|
updated_at?: string;
|
|
25576
25930
|
|
|
25577
25931
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25700,6 +26054,8 @@ export namespace ListConnectionsResponse {
|
|
|
25700
26054
|
|
|
25701
26055
|
status_message?: string | null;
|
|
25702
26056
|
|
|
26057
|
+
toon_schema?: string;
|
|
26058
|
+
|
|
25703
26059
|
updated_at?: string;
|
|
25704
26060
|
|
|
25705
26061
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25822,6 +26178,8 @@ export namespace ListConnectionsResponse {
|
|
|
25822
26178
|
|
|
25823
26179
|
status_message?: string | null;
|
|
25824
26180
|
|
|
26181
|
+
toon_schema?: string;
|
|
26182
|
+
|
|
25825
26183
|
updated_at?: string;
|
|
25826
26184
|
|
|
25827
26185
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -25899,6 +26257,8 @@ export namespace ListConnectionsResponse {
|
|
|
25899
26257
|
|
|
25900
26258
|
status_message?: string | null;
|
|
25901
26259
|
|
|
26260
|
+
toon_schema?: string;
|
|
26261
|
+
|
|
25902
26262
|
updated_at?: string;
|
|
25903
26263
|
|
|
25904
26264
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26032,6 +26392,8 @@ export namespace ListConnectionsResponse {
|
|
|
26032
26392
|
|
|
26033
26393
|
status_message?: string | null;
|
|
26034
26394
|
|
|
26395
|
+
toon_schema?: string;
|
|
26396
|
+
|
|
26035
26397
|
updated_at?: string;
|
|
26036
26398
|
|
|
26037
26399
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26154,6 +26516,8 @@ export namespace ListConnectionsResponse {
|
|
|
26154
26516
|
|
|
26155
26517
|
status_message?: string | null;
|
|
26156
26518
|
|
|
26519
|
+
toon_schema?: string;
|
|
26520
|
+
|
|
26157
26521
|
updated_at?: string;
|
|
26158
26522
|
|
|
26159
26523
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26230,6 +26594,8 @@ export namespace ListConnectionsResponse {
|
|
|
26230
26594
|
|
|
26231
26595
|
status_message?: string | null;
|
|
26232
26596
|
|
|
26597
|
+
toon_schema?: string;
|
|
26598
|
+
|
|
26233
26599
|
updated_at?: string;
|
|
26234
26600
|
|
|
26235
26601
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26352,6 +26718,8 @@ export namespace ListConnectionsResponse {
|
|
|
26352
26718
|
|
|
26353
26719
|
status_message?: string | null;
|
|
26354
26720
|
|
|
26721
|
+
toon_schema?: string;
|
|
26722
|
+
|
|
26355
26723
|
updated_at?: string;
|
|
26356
26724
|
|
|
26357
26725
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26479,6 +26847,8 @@ export namespace ListConnectionsResponse {
|
|
|
26479
26847
|
|
|
26480
26848
|
status_message?: string | null;
|
|
26481
26849
|
|
|
26850
|
+
toon_schema?: string;
|
|
26851
|
+
|
|
26482
26852
|
updated_at?: string;
|
|
26483
26853
|
|
|
26484
26854
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26601,6 +26971,8 @@ export namespace ListConnectionsResponse {
|
|
|
26601
26971
|
|
|
26602
26972
|
status_message?: string | null;
|
|
26603
26973
|
|
|
26974
|
+
toon_schema?: string;
|
|
26975
|
+
|
|
26604
26976
|
updated_at?: string;
|
|
26605
26977
|
|
|
26606
26978
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26674,6 +27046,8 @@ export namespace ListConnectionsResponse {
|
|
|
26674
27046
|
|
|
26675
27047
|
status_message?: string | null;
|
|
26676
27048
|
|
|
27049
|
+
toon_schema?: string;
|
|
27050
|
+
|
|
26677
27051
|
updated_at?: string;
|
|
26678
27052
|
|
|
26679
27053
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26863,6 +27237,8 @@ export namespace ListConnectionsResponse {
|
|
|
26863
27237
|
|
|
26864
27238
|
status_message?: string | null;
|
|
26865
27239
|
|
|
27240
|
+
toon_schema?: string;
|
|
27241
|
+
|
|
26866
27242
|
updated_at?: string;
|
|
26867
27243
|
|
|
26868
27244
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -26981,6 +27357,8 @@ export namespace ListConnectionsResponse {
|
|
|
26981
27357
|
|
|
26982
27358
|
status_message?: string | null;
|
|
26983
27359
|
|
|
27360
|
+
toon_schema?: string;
|
|
27361
|
+
|
|
26984
27362
|
updated_at?: string;
|
|
26985
27363
|
|
|
26986
27364
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27050,6 +27428,8 @@ export namespace ListConnectionsResponse {
|
|
|
27050
27428
|
|
|
27051
27429
|
status_message?: string | null;
|
|
27052
27430
|
|
|
27431
|
+
toon_schema?: string;
|
|
27432
|
+
|
|
27053
27433
|
updated_at?: string;
|
|
27054
27434
|
|
|
27055
27435
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27133,6 +27513,8 @@ export namespace ListConnectionsResponse {
|
|
|
27133
27513
|
|
|
27134
27514
|
status_message?: string | null;
|
|
27135
27515
|
|
|
27516
|
+
toon_schema?: string;
|
|
27517
|
+
|
|
27136
27518
|
updated_at?: string;
|
|
27137
27519
|
|
|
27138
27520
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27206,6 +27588,8 @@ export namespace ListConnectionsResponse {
|
|
|
27206
27588
|
|
|
27207
27589
|
status_message?: string | null;
|
|
27208
27590
|
|
|
27591
|
+
toon_schema?: string;
|
|
27592
|
+
|
|
27209
27593
|
updated_at?: string;
|
|
27210
27594
|
|
|
27211
27595
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27284,6 +27668,8 @@ export namespace ListConnectionsResponse {
|
|
|
27284
27668
|
|
|
27285
27669
|
status_message?: string | null;
|
|
27286
27670
|
|
|
27671
|
+
toon_schema?: string;
|
|
27672
|
+
|
|
27287
27673
|
updated_at?: string;
|
|
27288
27674
|
|
|
27289
27675
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27362,6 +27748,8 @@ export namespace ListConnectionsResponse {
|
|
|
27362
27748
|
|
|
27363
27749
|
status_message?: string | null;
|
|
27364
27750
|
|
|
27751
|
+
toon_schema?: string;
|
|
27752
|
+
|
|
27365
27753
|
updated_at?: string;
|
|
27366
27754
|
|
|
27367
27755
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27438,6 +27826,8 @@ export namespace ListConnectionsResponse {
|
|
|
27438
27826
|
|
|
27439
27827
|
status_message?: string | null;
|
|
27440
27828
|
|
|
27829
|
+
toon_schema?: string;
|
|
27830
|
+
|
|
27441
27831
|
updated_at?: string;
|
|
27442
27832
|
|
|
27443
27833
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27654,6 +28044,8 @@ export namespace ListConnectionsResponse {
|
|
|
27654
28044
|
|
|
27655
28045
|
status_message?: string | null;
|
|
27656
28046
|
|
|
28047
|
+
toon_schema?: string;
|
|
28048
|
+
|
|
27657
28049
|
updated_at?: string;
|
|
27658
28050
|
|
|
27659
28051
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27775,6 +28167,8 @@ export namespace ListConnectionsResponse {
|
|
|
27775
28167
|
|
|
27776
28168
|
status_message?: string | null;
|
|
27777
28169
|
|
|
28170
|
+
toon_schema?: string;
|
|
28171
|
+
|
|
27778
28172
|
updated_at?: string;
|
|
27779
28173
|
|
|
27780
28174
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -27857,6 +28251,8 @@ export namespace ListConnectionsResponse {
|
|
|
27857
28251
|
|
|
27858
28252
|
status_message?: string | null;
|
|
27859
28253
|
|
|
28254
|
+
toon_schema?: string;
|
|
28255
|
+
|
|
27860
28256
|
updated_at?: string;
|
|
27861
28257
|
|
|
27862
28258
|
webhook_config?: string | number | boolean | { [key: string]: unknown } | Array<unknown> | null;
|
|
@@ -46737,11 +47133,17 @@ export interface DeleteAssignmentParams {
|
|
|
46737
47133
|
}
|
|
46738
47134
|
|
|
46739
47135
|
export interface GetConectorConfigParams {
|
|
46740
|
-
expand?: Array<
|
|
47136
|
+
expand?: Array<
|
|
47137
|
+
| 'connector'
|
|
47138
|
+
| 'connector.schemas'
|
|
47139
|
+
| 'connector.agent_instructions'
|
|
47140
|
+
| 'connector.packages'
|
|
47141
|
+
| 'connection_count'
|
|
47142
|
+
>;
|
|
46741
47143
|
}
|
|
46742
47144
|
|
|
46743
47145
|
export interface GetConnectionParams {
|
|
46744
|
-
expand?: Array<'connector'>;
|
|
47146
|
+
expand?: Array<'connector' | 'toon_schema'>;
|
|
46745
47147
|
|
|
46746
47148
|
include_secrets?: boolean;
|
|
46747
47149
|
|
|
@@ -46836,7 +47238,7 @@ export interface ListConnectionsParams extends OffsetPaginationParams {
|
|
|
46836
47238
|
/**
|
|
46837
47239
|
* Expand the response with additional optionals
|
|
46838
47240
|
*/
|
|
46839
|
-
expand?: Array<'connector'>;
|
|
47241
|
+
expand?: Array<'connector' | 'toon_schema'>;
|
|
46840
47242
|
|
|
46841
47243
|
include_secrets?: boolean;
|
|
46842
47244
|
|
|
@@ -46945,7 +47347,13 @@ export interface ListConnnectorConfigsParams extends OffsetPaginationParams {
|
|
|
46945
47347
|
| 'zoom'
|
|
46946
47348
|
>;
|
|
46947
47349
|
|
|
46948
|
-
expand?: Array<
|
|
47350
|
+
expand?: Array<
|
|
47351
|
+
| 'connector'
|
|
47352
|
+
| 'connector.schemas'
|
|
47353
|
+
| 'connector.agent_instructions'
|
|
47354
|
+
| 'connector.packages'
|
|
47355
|
+
| 'connection_count'
|
|
47356
|
+
>;
|
|
46949
47357
|
|
|
46950
47358
|
/**
|
|
46951
47359
|
* Include disabled connector configs in the response. By default, disabled configs
|