@archastro/sdk 0.11.1 → 0.13.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/dist/auth.d.ts +6 -3
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +13 -4
- package/dist/auth.js.map +1 -1
- package/dist/types/chat.d.ts +322 -228
- package/dist/types/chat.d.ts.map +1 -1
- package/dist/types/common.d.ts +368 -149
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +46 -6
- package/dist/types/common.js.map +1 -1
- package/dist/types/device.d.ts +26 -0
- package/dist/types/device.d.ts.map +1 -1
- package/dist/types/device.js +10 -1
- package/dist/types/device.js.map +1 -1
- package/dist/types/extractions.d.ts +2 -2
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -1
- package/dist/types/index.js.map +1 -1
- package/dist/types/oauth.d.ts +5 -0
- package/dist/types/oauth.d.ts.map +1 -1
- package/dist/types/status.d.ts +5 -0
- package/dist/types/status.d.ts.map +1 -1
- package/dist/types/system.d.ts +58 -0
- package/dist/types/system.d.ts.map +1 -0
- package/dist/types/system.js +24 -0
- package/dist/types/system.js.map +1 -0
- package/dist/types/teams.d.ts +48 -36
- package/dist/types/teams.d.ts.map +1 -1
- package/dist/types/threads.d.ts +27 -16
- package/dist/types/threads.d.ts.map +1 -1
- package/dist/types/threads.js +2 -2
- package/dist/types/threads.js.map +1 -1
- package/dist/types/users.d.ts +6 -0
- package/dist/types/users.d.ts.map +1 -1
- package/dist/types/users.js +3 -1
- package/dist/types/users.js.map +1 -1
- package/dist/v1/resources/activity_feed.d.ts +1 -0
- package/dist/v1/resources/activity_feed.d.ts.map +1 -1
- package/dist/v1/resources/activity_feed.js +1 -1
- package/dist/v1/resources/oauth.d.ts +13 -1
- package/dist/v1/resources/oauth.d.ts.map +1 -1
- package/dist/v1/resources/oauth.js +15 -1
- package/dist/v1/resources/oauth.js.map +1 -1
- package/dist/v1/resources/slack_channel_bindings.d.ts +35 -1
- package/dist/v1/resources/slack_channel_bindings.d.ts.map +1 -1
- package/dist/v1/resources/slack_channel_bindings.js +47 -1
- package/dist/v1/resources/slack_channel_bindings.js.map +1 -1
- package/dist/v1/resources/tasks.d.ts +27 -0
- package/dist/v1/resources/tasks.d.ts.map +1 -1
- package/dist/v1/resources/tasks.js +30 -1
- package/dist/v1/resources/tasks.js.map +1 -1
- package/dist/v1/resources/teams.d.ts +100 -0
- package/dist/v1/resources/teams.d.ts.map +1 -1
- package/dist/v1/resources/teams.js +43 -1
- package/dist/v1/resources/teams.js.map +1 -1
- package/dist/v1/resources/users.d.ts +167 -0
- package/dist/v1/resources/users.d.ts.map +1 -1
- package/dist/v1/resources/users.js +104 -1
- package/dist/v1/resources/users.js.map +1 -1
- package/package.json +1 -1
package/dist/types/common.d.ts
CHANGED
|
@@ -367,6 +367,7 @@ export interface ActivityFeedEntry {
|
|
|
367
367
|
org?: string | undefined;
|
|
368
368
|
org_name?: string | undefined;
|
|
369
369
|
org_role?: string | undefined;
|
|
370
|
+
org_slug?: string | undefined;
|
|
370
371
|
sandbox?: string | undefined;
|
|
371
372
|
sandbox_name?: string | undefined;
|
|
372
373
|
} | undefined;
|
|
@@ -703,6 +704,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
703
704
|
virtual_path?: string | undefined;
|
|
704
705
|
metadata?: Record<string, unknown> | undefined;
|
|
705
706
|
org_name?: string | undefined;
|
|
707
|
+
org_slug?: string | undefined;
|
|
706
708
|
category_keys?: string[] | undefined;
|
|
707
709
|
events?: Record<string, unknown> | undefined;
|
|
708
710
|
image_url?: string | undefined;
|
|
@@ -717,7 +719,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
717
719
|
url?: string | undefined;
|
|
718
720
|
width?: number | undefined;
|
|
719
721
|
} | undefined;
|
|
720
|
-
org_slug?: string | undefined;
|
|
721
722
|
readme_url?: string | undefined;
|
|
722
723
|
screenshot_urls?: string[] | undefined;
|
|
723
724
|
solution_id?: string | undefined;
|
|
@@ -765,6 +766,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
765
766
|
virtual_path?: string | undefined;
|
|
766
767
|
metadata?: Record<string, unknown> | undefined;
|
|
767
768
|
org_name?: string | undefined;
|
|
769
|
+
org_slug?: string | undefined;
|
|
768
770
|
category_keys?: string[] | undefined;
|
|
769
771
|
events?: Record<string, unknown> | undefined;
|
|
770
772
|
image_url?: string | undefined;
|
|
@@ -779,7 +781,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
779
781
|
url?: string | undefined;
|
|
780
782
|
width?: number | undefined;
|
|
781
783
|
} | undefined;
|
|
782
|
-
org_slug?: string | undefined;
|
|
783
784
|
readme_url?: string | undefined;
|
|
784
785
|
screenshot_urls?: string[] | undefined;
|
|
785
786
|
solution_id?: string | undefined;
|
|
@@ -1030,6 +1031,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1030
1031
|
virtual_path?: string | undefined;
|
|
1031
1032
|
metadata?: Record<string, unknown> | undefined;
|
|
1032
1033
|
org_name?: string | undefined;
|
|
1034
|
+
org_slug?: string | undefined;
|
|
1033
1035
|
category_keys?: string[] | undefined;
|
|
1034
1036
|
events?: Record<string, unknown> | undefined;
|
|
1035
1037
|
image_url?: string | undefined;
|
|
@@ -1044,7 +1046,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1044
1046
|
url?: string | undefined;
|
|
1045
1047
|
width?: number | undefined;
|
|
1046
1048
|
} | undefined;
|
|
1047
|
-
org_slug?: string | undefined;
|
|
1048
1049
|
readme_url?: string | undefined;
|
|
1049
1050
|
screenshot_urls?: string[] | undefined;
|
|
1050
1051
|
solution_id?: string | undefined;
|
|
@@ -1092,6 +1093,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1092
1093
|
virtual_path?: string | undefined;
|
|
1093
1094
|
metadata?: Record<string, unknown> | undefined;
|
|
1094
1095
|
org_name?: string | undefined;
|
|
1096
|
+
org_slug?: string | undefined;
|
|
1095
1097
|
category_keys?: string[] | undefined;
|
|
1096
1098
|
events?: Record<string, unknown> | undefined;
|
|
1097
1099
|
image_url?: string | undefined;
|
|
@@ -1106,7 +1108,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1106
1108
|
url?: string | undefined;
|
|
1107
1109
|
width?: number | undefined;
|
|
1108
1110
|
} | undefined;
|
|
1109
|
-
org_slug?: string | undefined;
|
|
1110
1111
|
readme_url?: string | undefined;
|
|
1111
1112
|
screenshot_urls?: string[] | undefined;
|
|
1112
1113
|
solution_id?: string | undefined;
|
|
@@ -1187,6 +1188,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1187
1188
|
virtual_path?: string | undefined;
|
|
1188
1189
|
metadata?: Record<string, unknown> | undefined;
|
|
1189
1190
|
org_name?: string | undefined;
|
|
1191
|
+
org_slug?: string | undefined;
|
|
1190
1192
|
category_keys?: string[] | undefined;
|
|
1191
1193
|
events?: Record<string, unknown> | undefined;
|
|
1192
1194
|
image_url?: string | undefined;
|
|
@@ -1201,7 +1203,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1201
1203
|
url?: string | undefined;
|
|
1202
1204
|
width?: number | undefined;
|
|
1203
1205
|
} | undefined;
|
|
1204
|
-
org_slug?: string | undefined;
|
|
1205
1206
|
readme_url?: string | undefined;
|
|
1206
1207
|
screenshot_urls?: string[] | undefined;
|
|
1207
1208
|
solution_id?: string | undefined;
|
|
@@ -1261,6 +1262,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1261
1262
|
virtual_path?: string | undefined;
|
|
1262
1263
|
metadata?: Record<string, unknown> | undefined;
|
|
1263
1264
|
org_name?: string | undefined;
|
|
1265
|
+
org_slug?: string | undefined;
|
|
1264
1266
|
category_keys?: string[] | undefined;
|
|
1265
1267
|
events?: Record<string, unknown> | undefined;
|
|
1266
1268
|
image_url?: string | undefined;
|
|
@@ -1275,7 +1277,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1275
1277
|
url?: string | undefined;
|
|
1276
1278
|
width?: number | undefined;
|
|
1277
1279
|
} | undefined;
|
|
1278
|
-
org_slug?: string | undefined;
|
|
1279
1280
|
readme_url?: string | undefined;
|
|
1280
1281
|
screenshot_urls?: string[] | undefined;
|
|
1281
1282
|
solution_id?: string | undefined;
|
|
@@ -1325,6 +1326,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1325
1326
|
virtual_path?: string | undefined;
|
|
1326
1327
|
metadata?: Record<string, unknown> | undefined;
|
|
1327
1328
|
org_name?: string | undefined;
|
|
1329
|
+
org_slug?: string | undefined;
|
|
1328
1330
|
category_keys?: string[] | undefined;
|
|
1329
1331
|
events?: Record<string, unknown> | undefined;
|
|
1330
1332
|
image_url?: string | undefined;
|
|
@@ -1339,7 +1341,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1339
1341
|
url?: string | undefined;
|
|
1340
1342
|
width?: number | undefined;
|
|
1341
1343
|
} | undefined;
|
|
1342
|
-
org_slug?: string | undefined;
|
|
1343
1344
|
readme_url?: string | undefined;
|
|
1344
1345
|
screenshot_urls?: string[] | undefined;
|
|
1345
1346
|
solution_id?: string | undefined;
|
|
@@ -1399,6 +1400,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1399
1400
|
virtual_path?: string | undefined;
|
|
1400
1401
|
metadata?: Record<string, unknown> | undefined;
|
|
1401
1402
|
org_name?: string | undefined;
|
|
1403
|
+
org_slug?: string | undefined;
|
|
1402
1404
|
category_keys?: string[] | undefined;
|
|
1403
1405
|
events?: Record<string, unknown> | undefined;
|
|
1404
1406
|
image_url?: string | undefined;
|
|
@@ -1413,7 +1415,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1413
1415
|
url?: string | undefined;
|
|
1414
1416
|
width?: number | undefined;
|
|
1415
1417
|
} | undefined;
|
|
1416
|
-
org_slug?: string | undefined;
|
|
1417
1418
|
readme_url?: string | undefined;
|
|
1418
1419
|
screenshot_urls?: string[] | undefined;
|
|
1419
1420
|
solution_id?: string | undefined;
|
|
@@ -1504,6 +1505,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1504
1505
|
virtual_path?: string | undefined;
|
|
1505
1506
|
metadata?: Record<string, unknown> | undefined;
|
|
1506
1507
|
org_name?: string | undefined;
|
|
1508
|
+
org_slug?: string | undefined;
|
|
1507
1509
|
category_keys?: string[] | undefined;
|
|
1508
1510
|
events?: Record<string, unknown> | undefined;
|
|
1509
1511
|
image_url?: string | undefined;
|
|
@@ -1518,7 +1520,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1518
1520
|
url?: string | undefined;
|
|
1519
1521
|
width?: number | undefined;
|
|
1520
1522
|
} | undefined;
|
|
1521
|
-
org_slug?: string | undefined;
|
|
1522
1523
|
readme_url?: string | undefined;
|
|
1523
1524
|
screenshot_urls?: string[] | undefined;
|
|
1524
1525
|
solution_id?: string | undefined;
|
|
@@ -1578,6 +1579,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1578
1579
|
virtual_path?: string | undefined;
|
|
1579
1580
|
metadata?: Record<string, unknown> | undefined;
|
|
1580
1581
|
org_name?: string | undefined;
|
|
1582
|
+
org_slug?: string | undefined;
|
|
1581
1583
|
category_keys?: string[] | undefined;
|
|
1582
1584
|
events?: Record<string, unknown> | undefined;
|
|
1583
1585
|
image_url?: string | undefined;
|
|
@@ -1592,7 +1594,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1592
1594
|
url?: string | undefined;
|
|
1593
1595
|
width?: number | undefined;
|
|
1594
1596
|
} | undefined;
|
|
1595
|
-
org_slug?: string | undefined;
|
|
1596
1597
|
readme_url?: string | undefined;
|
|
1597
1598
|
screenshot_urls?: string[] | undefined;
|
|
1598
1599
|
solution_id?: string | undefined;
|
|
@@ -1680,6 +1681,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1680
1681
|
virtual_path?: string | undefined;
|
|
1681
1682
|
metadata?: Record<string, unknown> | undefined;
|
|
1682
1683
|
org_name?: string | undefined;
|
|
1684
|
+
org_slug?: string | undefined;
|
|
1683
1685
|
category_keys?: string[] | undefined;
|
|
1684
1686
|
events?: Record<string, unknown> | undefined;
|
|
1685
1687
|
image_url?: string | undefined;
|
|
@@ -1694,7 +1696,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1694
1696
|
url?: string | undefined;
|
|
1695
1697
|
width?: number | undefined;
|
|
1696
1698
|
} | undefined;
|
|
1697
|
-
org_slug?: string | undefined;
|
|
1698
1699
|
readme_url?: string | undefined;
|
|
1699
1700
|
screenshot_urls?: string[] | undefined;
|
|
1700
1701
|
solution_id?: string | undefined;
|
|
@@ -1754,6 +1755,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1754
1755
|
virtual_path?: string | undefined;
|
|
1755
1756
|
metadata?: Record<string, unknown> | undefined;
|
|
1756
1757
|
org_name?: string | undefined;
|
|
1758
|
+
org_slug?: string | undefined;
|
|
1757
1759
|
category_keys?: string[] | undefined;
|
|
1758
1760
|
events?: Record<string, unknown> | undefined;
|
|
1759
1761
|
image_url?: string | undefined;
|
|
@@ -1768,7 +1770,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1768
1770
|
url?: string | undefined;
|
|
1769
1771
|
width?: number | undefined;
|
|
1770
1772
|
} | undefined;
|
|
1771
|
-
org_slug?: string | undefined;
|
|
1772
1773
|
readme_url?: string | undefined;
|
|
1773
1774
|
screenshot_urls?: string[] | undefined;
|
|
1774
1775
|
solution_id?: string | undefined;
|
|
@@ -1828,6 +1829,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1828
1829
|
org: z.ZodOptional<z.ZodString>;
|
|
1829
1830
|
org_name: z.ZodOptional<z.ZodString>;
|
|
1830
1831
|
org_role: z.ZodOptional<z.ZodString>;
|
|
1832
|
+
org_slug: z.ZodOptional<z.ZodString>;
|
|
1831
1833
|
sandbox: z.ZodOptional<z.ZodString>;
|
|
1832
1834
|
sandbox_name: z.ZodOptional<z.ZodString>;
|
|
1833
1835
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1843,6 +1845,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1843
1845
|
metadata?: Record<string, unknown> | undefined;
|
|
1844
1846
|
org_name?: string | undefined;
|
|
1845
1847
|
org_role?: string | undefined;
|
|
1848
|
+
org_slug?: string | undefined;
|
|
1846
1849
|
sandbox_name?: string | undefined;
|
|
1847
1850
|
}, {
|
|
1848
1851
|
id: string;
|
|
@@ -1857,6 +1860,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1857
1860
|
metadata?: Record<string, unknown> | undefined;
|
|
1858
1861
|
org_name?: string | undefined;
|
|
1859
1862
|
org_role?: string | undefined;
|
|
1863
|
+
org_slug?: string | undefined;
|
|
1860
1864
|
sandbox_name?: string | undefined;
|
|
1861
1865
|
}>]>>;
|
|
1862
1866
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1942,6 +1946,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1942
1946
|
virtual_path?: string | undefined;
|
|
1943
1947
|
metadata?: Record<string, unknown> | undefined;
|
|
1944
1948
|
org_name?: string | undefined;
|
|
1949
|
+
org_slug?: string | undefined;
|
|
1945
1950
|
category_keys?: string[] | undefined;
|
|
1946
1951
|
events?: Record<string, unknown> | undefined;
|
|
1947
1952
|
image_url?: string | undefined;
|
|
@@ -1956,7 +1961,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
1956
1961
|
url?: string | undefined;
|
|
1957
1962
|
width?: number | undefined;
|
|
1958
1963
|
} | undefined;
|
|
1959
|
-
org_slug?: string | undefined;
|
|
1960
1964
|
readme_url?: string | undefined;
|
|
1961
1965
|
screenshot_urls?: string[] | undefined;
|
|
1962
1966
|
solution_id?: string | undefined;
|
|
@@ -2016,6 +2020,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2016
2020
|
virtual_path?: string | undefined;
|
|
2017
2021
|
metadata?: Record<string, unknown> | undefined;
|
|
2018
2022
|
org_name?: string | undefined;
|
|
2023
|
+
org_slug?: string | undefined;
|
|
2019
2024
|
category_keys?: string[] | undefined;
|
|
2020
2025
|
events?: Record<string, unknown> | undefined;
|
|
2021
2026
|
image_url?: string | undefined;
|
|
@@ -2030,7 +2035,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2030
2035
|
url?: string | undefined;
|
|
2031
2036
|
width?: number | undefined;
|
|
2032
2037
|
} | undefined;
|
|
2033
|
-
org_slug?: string | undefined;
|
|
2034
2038
|
readme_url?: string | undefined;
|
|
2035
2039
|
screenshot_urls?: string[] | undefined;
|
|
2036
2040
|
solution_id?: string | undefined;
|
|
@@ -2061,6 +2065,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2061
2065
|
metadata?: Record<string, unknown> | undefined;
|
|
2062
2066
|
org_name?: string | undefined;
|
|
2063
2067
|
org_role?: string | undefined;
|
|
2068
|
+
org_slug?: string | undefined;
|
|
2064
2069
|
sandbox_name?: string | undefined;
|
|
2065
2070
|
} | undefined;
|
|
2066
2071
|
sandbox?: string | undefined;
|
|
@@ -2153,6 +2158,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2153
2158
|
virtual_path?: string | undefined;
|
|
2154
2159
|
metadata?: Record<string, unknown> | undefined;
|
|
2155
2160
|
org_name?: string | undefined;
|
|
2161
|
+
org_slug?: string | undefined;
|
|
2156
2162
|
category_keys?: string[] | undefined;
|
|
2157
2163
|
events?: Record<string, unknown> | undefined;
|
|
2158
2164
|
image_url?: string | undefined;
|
|
@@ -2167,7 +2173,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2167
2173
|
url?: string | undefined;
|
|
2168
2174
|
width?: number | undefined;
|
|
2169
2175
|
} | undefined;
|
|
2170
|
-
org_slug?: string | undefined;
|
|
2171
2176
|
readme_url?: string | undefined;
|
|
2172
2177
|
screenshot_urls?: string[] | undefined;
|
|
2173
2178
|
solution_id?: string | undefined;
|
|
@@ -2227,6 +2232,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2227
2232
|
virtual_path?: string | undefined;
|
|
2228
2233
|
metadata?: Record<string, unknown> | undefined;
|
|
2229
2234
|
org_name?: string | undefined;
|
|
2235
|
+
org_slug?: string | undefined;
|
|
2230
2236
|
category_keys?: string[] | undefined;
|
|
2231
2237
|
events?: Record<string, unknown> | undefined;
|
|
2232
2238
|
image_url?: string | undefined;
|
|
@@ -2241,7 +2247,6 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2241
2247
|
url?: string | undefined;
|
|
2242
2248
|
width?: number | undefined;
|
|
2243
2249
|
} | undefined;
|
|
2244
|
-
org_slug?: string | undefined;
|
|
2245
2250
|
readme_url?: string | undefined;
|
|
2246
2251
|
screenshot_urls?: string[] | undefined;
|
|
2247
2252
|
solution_id?: string | undefined;
|
|
@@ -2272,6 +2277,7 @@ export declare const activityFeedEntrySchema: z.ZodObject<{
|
|
|
2272
2277
|
metadata?: Record<string, unknown> | undefined;
|
|
2273
2278
|
org_name?: string | undefined;
|
|
2274
2279
|
org_role?: string | undefined;
|
|
2280
|
+
org_slug?: string | undefined;
|
|
2275
2281
|
sandbox_name?: string | undefined;
|
|
2276
2282
|
} | undefined;
|
|
2277
2283
|
sandbox?: string | undefined;
|
|
@@ -2631,6 +2637,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
2631
2637
|
virtual_path?: string | undefined;
|
|
2632
2638
|
metadata?: Record<string, unknown> | undefined;
|
|
2633
2639
|
org_name?: string | undefined;
|
|
2640
|
+
org_slug?: string | undefined;
|
|
2634
2641
|
category_keys?: string[] | undefined;
|
|
2635
2642
|
events?: Record<string, unknown> | undefined;
|
|
2636
2643
|
image_url?: string | undefined;
|
|
@@ -2645,7 +2652,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
2645
2652
|
url?: string | undefined;
|
|
2646
2653
|
width?: number | undefined;
|
|
2647
2654
|
} | undefined;
|
|
2648
|
-
org_slug?: string | undefined;
|
|
2649
2655
|
readme_url?: string | undefined;
|
|
2650
2656
|
screenshot_urls?: string[] | undefined;
|
|
2651
2657
|
solution_id?: string | undefined;
|
|
@@ -2693,6 +2699,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
2693
2699
|
virtual_path?: string | undefined;
|
|
2694
2700
|
metadata?: Record<string, unknown> | undefined;
|
|
2695
2701
|
org_name?: string | undefined;
|
|
2702
|
+
org_slug?: string | undefined;
|
|
2696
2703
|
category_keys?: string[] | undefined;
|
|
2697
2704
|
events?: Record<string, unknown> | undefined;
|
|
2698
2705
|
image_url?: string | undefined;
|
|
@@ -2707,7 +2714,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
2707
2714
|
url?: string | undefined;
|
|
2708
2715
|
width?: number | undefined;
|
|
2709
2716
|
} | undefined;
|
|
2710
|
-
org_slug?: string | undefined;
|
|
2711
2717
|
readme_url?: string | undefined;
|
|
2712
2718
|
screenshot_urls?: string[] | undefined;
|
|
2713
2719
|
solution_id?: string | undefined;
|
|
@@ -2958,6 +2964,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
2958
2964
|
virtual_path?: string | undefined;
|
|
2959
2965
|
metadata?: Record<string, unknown> | undefined;
|
|
2960
2966
|
org_name?: string | undefined;
|
|
2967
|
+
org_slug?: string | undefined;
|
|
2961
2968
|
category_keys?: string[] | undefined;
|
|
2962
2969
|
events?: Record<string, unknown> | undefined;
|
|
2963
2970
|
image_url?: string | undefined;
|
|
@@ -2972,7 +2979,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
2972
2979
|
url?: string | undefined;
|
|
2973
2980
|
width?: number | undefined;
|
|
2974
2981
|
} | undefined;
|
|
2975
|
-
org_slug?: string | undefined;
|
|
2976
2982
|
readme_url?: string | undefined;
|
|
2977
2983
|
screenshot_urls?: string[] | undefined;
|
|
2978
2984
|
solution_id?: string | undefined;
|
|
@@ -3020,6 +3026,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3020
3026
|
virtual_path?: string | undefined;
|
|
3021
3027
|
metadata?: Record<string, unknown> | undefined;
|
|
3022
3028
|
org_name?: string | undefined;
|
|
3029
|
+
org_slug?: string | undefined;
|
|
3023
3030
|
category_keys?: string[] | undefined;
|
|
3024
3031
|
events?: Record<string, unknown> | undefined;
|
|
3025
3032
|
image_url?: string | undefined;
|
|
@@ -3034,7 +3041,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3034
3041
|
url?: string | undefined;
|
|
3035
3042
|
width?: number | undefined;
|
|
3036
3043
|
} | undefined;
|
|
3037
|
-
org_slug?: string | undefined;
|
|
3038
3044
|
readme_url?: string | undefined;
|
|
3039
3045
|
screenshot_urls?: string[] | undefined;
|
|
3040
3046
|
solution_id?: string | undefined;
|
|
@@ -3115,6 +3121,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3115
3121
|
virtual_path?: string | undefined;
|
|
3116
3122
|
metadata?: Record<string, unknown> | undefined;
|
|
3117
3123
|
org_name?: string | undefined;
|
|
3124
|
+
org_slug?: string | undefined;
|
|
3118
3125
|
category_keys?: string[] | undefined;
|
|
3119
3126
|
events?: Record<string, unknown> | undefined;
|
|
3120
3127
|
image_url?: string | undefined;
|
|
@@ -3129,7 +3136,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3129
3136
|
url?: string | undefined;
|
|
3130
3137
|
width?: number | undefined;
|
|
3131
3138
|
} | undefined;
|
|
3132
|
-
org_slug?: string | undefined;
|
|
3133
3139
|
readme_url?: string | undefined;
|
|
3134
3140
|
screenshot_urls?: string[] | undefined;
|
|
3135
3141
|
solution_id?: string | undefined;
|
|
@@ -3189,6 +3195,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3189
3195
|
virtual_path?: string | undefined;
|
|
3190
3196
|
metadata?: Record<string, unknown> | undefined;
|
|
3191
3197
|
org_name?: string | undefined;
|
|
3198
|
+
org_slug?: string | undefined;
|
|
3192
3199
|
category_keys?: string[] | undefined;
|
|
3193
3200
|
events?: Record<string, unknown> | undefined;
|
|
3194
3201
|
image_url?: string | undefined;
|
|
@@ -3203,7 +3210,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3203
3210
|
url?: string | undefined;
|
|
3204
3211
|
width?: number | undefined;
|
|
3205
3212
|
} | undefined;
|
|
3206
|
-
org_slug?: string | undefined;
|
|
3207
3213
|
readme_url?: string | undefined;
|
|
3208
3214
|
screenshot_urls?: string[] | undefined;
|
|
3209
3215
|
solution_id?: string | undefined;
|
|
@@ -3253,6 +3259,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3253
3259
|
virtual_path?: string | undefined;
|
|
3254
3260
|
metadata?: Record<string, unknown> | undefined;
|
|
3255
3261
|
org_name?: string | undefined;
|
|
3262
|
+
org_slug?: string | undefined;
|
|
3256
3263
|
category_keys?: string[] | undefined;
|
|
3257
3264
|
events?: Record<string, unknown> | undefined;
|
|
3258
3265
|
image_url?: string | undefined;
|
|
@@ -3267,7 +3274,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3267
3274
|
url?: string | undefined;
|
|
3268
3275
|
width?: number | undefined;
|
|
3269
3276
|
} | undefined;
|
|
3270
|
-
org_slug?: string | undefined;
|
|
3271
3277
|
readme_url?: string | undefined;
|
|
3272
3278
|
screenshot_urls?: string[] | undefined;
|
|
3273
3279
|
solution_id?: string | undefined;
|
|
@@ -3327,6 +3333,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3327
3333
|
virtual_path?: string | undefined;
|
|
3328
3334
|
metadata?: Record<string, unknown> | undefined;
|
|
3329
3335
|
org_name?: string | undefined;
|
|
3336
|
+
org_slug?: string | undefined;
|
|
3330
3337
|
category_keys?: string[] | undefined;
|
|
3331
3338
|
events?: Record<string, unknown> | undefined;
|
|
3332
3339
|
image_url?: string | undefined;
|
|
@@ -3341,7 +3348,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3341
3348
|
url?: string | undefined;
|
|
3342
3349
|
width?: number | undefined;
|
|
3343
3350
|
} | undefined;
|
|
3344
|
-
org_slug?: string | undefined;
|
|
3345
3351
|
readme_url?: string | undefined;
|
|
3346
3352
|
screenshot_urls?: string[] | undefined;
|
|
3347
3353
|
solution_id?: string | undefined;
|
|
@@ -3432,6 +3438,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3432
3438
|
virtual_path?: string | undefined;
|
|
3433
3439
|
metadata?: Record<string, unknown> | undefined;
|
|
3434
3440
|
org_name?: string | undefined;
|
|
3441
|
+
org_slug?: string | undefined;
|
|
3435
3442
|
category_keys?: string[] | undefined;
|
|
3436
3443
|
events?: Record<string, unknown> | undefined;
|
|
3437
3444
|
image_url?: string | undefined;
|
|
@@ -3446,7 +3453,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3446
3453
|
url?: string | undefined;
|
|
3447
3454
|
width?: number | undefined;
|
|
3448
3455
|
} | undefined;
|
|
3449
|
-
org_slug?: string | undefined;
|
|
3450
3456
|
readme_url?: string | undefined;
|
|
3451
3457
|
screenshot_urls?: string[] | undefined;
|
|
3452
3458
|
solution_id?: string | undefined;
|
|
@@ -3506,6 +3512,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3506
3512
|
virtual_path?: string | undefined;
|
|
3507
3513
|
metadata?: Record<string, unknown> | undefined;
|
|
3508
3514
|
org_name?: string | undefined;
|
|
3515
|
+
org_slug?: string | undefined;
|
|
3509
3516
|
category_keys?: string[] | undefined;
|
|
3510
3517
|
events?: Record<string, unknown> | undefined;
|
|
3511
3518
|
image_url?: string | undefined;
|
|
@@ -3520,7 +3527,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3520
3527
|
url?: string | undefined;
|
|
3521
3528
|
width?: number | undefined;
|
|
3522
3529
|
} | undefined;
|
|
3523
|
-
org_slug?: string | undefined;
|
|
3524
3530
|
readme_url?: string | undefined;
|
|
3525
3531
|
screenshot_urls?: string[] | undefined;
|
|
3526
3532
|
solution_id?: string | undefined;
|
|
@@ -3608,6 +3614,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3608
3614
|
virtual_path?: string | undefined;
|
|
3609
3615
|
metadata?: Record<string, unknown> | undefined;
|
|
3610
3616
|
org_name?: string | undefined;
|
|
3617
|
+
org_slug?: string | undefined;
|
|
3611
3618
|
category_keys?: string[] | undefined;
|
|
3612
3619
|
events?: Record<string, unknown> | undefined;
|
|
3613
3620
|
image_url?: string | undefined;
|
|
@@ -3622,7 +3629,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3622
3629
|
url?: string | undefined;
|
|
3623
3630
|
width?: number | undefined;
|
|
3624
3631
|
} | undefined;
|
|
3625
|
-
org_slug?: string | undefined;
|
|
3626
3632
|
readme_url?: string | undefined;
|
|
3627
3633
|
screenshot_urls?: string[] | undefined;
|
|
3628
3634
|
solution_id?: string | undefined;
|
|
@@ -3682,6 +3688,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3682
3688
|
virtual_path?: string | undefined;
|
|
3683
3689
|
metadata?: Record<string, unknown> | undefined;
|
|
3684
3690
|
org_name?: string | undefined;
|
|
3691
|
+
org_slug?: string | undefined;
|
|
3685
3692
|
category_keys?: string[] | undefined;
|
|
3686
3693
|
events?: Record<string, unknown> | undefined;
|
|
3687
3694
|
image_url?: string | undefined;
|
|
@@ -3696,7 +3703,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3696
3703
|
url?: string | undefined;
|
|
3697
3704
|
width?: number | undefined;
|
|
3698
3705
|
} | undefined;
|
|
3699
|
-
org_slug?: string | undefined;
|
|
3700
3706
|
readme_url?: string | undefined;
|
|
3701
3707
|
screenshot_urls?: string[] | undefined;
|
|
3702
3708
|
solution_id?: string | undefined;
|
|
@@ -3756,6 +3762,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3756
3762
|
org: z.ZodOptional<z.ZodString>;
|
|
3757
3763
|
org_name: z.ZodOptional<z.ZodString>;
|
|
3758
3764
|
org_role: z.ZodOptional<z.ZodString>;
|
|
3765
|
+
org_slug: z.ZodOptional<z.ZodString>;
|
|
3759
3766
|
sandbox: z.ZodOptional<z.ZodString>;
|
|
3760
3767
|
sandbox_name: z.ZodOptional<z.ZodString>;
|
|
3761
3768
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3771,6 +3778,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3771
3778
|
metadata?: Record<string, unknown> | undefined;
|
|
3772
3779
|
org_name?: string | undefined;
|
|
3773
3780
|
org_role?: string | undefined;
|
|
3781
|
+
org_slug?: string | undefined;
|
|
3774
3782
|
sandbox_name?: string | undefined;
|
|
3775
3783
|
}, {
|
|
3776
3784
|
id: string;
|
|
@@ -3785,6 +3793,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3785
3793
|
metadata?: Record<string, unknown> | undefined;
|
|
3786
3794
|
org_name?: string | undefined;
|
|
3787
3795
|
org_role?: string | undefined;
|
|
3796
|
+
org_slug?: string | undefined;
|
|
3788
3797
|
sandbox_name?: string | undefined;
|
|
3789
3798
|
}>]>>;
|
|
3790
3799
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3870,6 +3879,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3870
3879
|
virtual_path?: string | undefined;
|
|
3871
3880
|
metadata?: Record<string, unknown> | undefined;
|
|
3872
3881
|
org_name?: string | undefined;
|
|
3882
|
+
org_slug?: string | undefined;
|
|
3873
3883
|
category_keys?: string[] | undefined;
|
|
3874
3884
|
events?: Record<string, unknown> | undefined;
|
|
3875
3885
|
image_url?: string | undefined;
|
|
@@ -3884,7 +3894,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3884
3894
|
url?: string | undefined;
|
|
3885
3895
|
width?: number | undefined;
|
|
3886
3896
|
} | undefined;
|
|
3887
|
-
org_slug?: string | undefined;
|
|
3888
3897
|
readme_url?: string | undefined;
|
|
3889
3898
|
screenshot_urls?: string[] | undefined;
|
|
3890
3899
|
solution_id?: string | undefined;
|
|
@@ -3944,6 +3953,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3944
3953
|
virtual_path?: string | undefined;
|
|
3945
3954
|
metadata?: Record<string, unknown> | undefined;
|
|
3946
3955
|
org_name?: string | undefined;
|
|
3956
|
+
org_slug?: string | undefined;
|
|
3947
3957
|
category_keys?: string[] | undefined;
|
|
3948
3958
|
events?: Record<string, unknown> | undefined;
|
|
3949
3959
|
image_url?: string | undefined;
|
|
@@ -3958,7 +3968,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3958
3968
|
url?: string | undefined;
|
|
3959
3969
|
width?: number | undefined;
|
|
3960
3970
|
} | undefined;
|
|
3961
|
-
org_slug?: string | undefined;
|
|
3962
3971
|
readme_url?: string | undefined;
|
|
3963
3972
|
screenshot_urls?: string[] | undefined;
|
|
3964
3973
|
solution_id?: string | undefined;
|
|
@@ -3989,6 +3998,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
3989
3998
|
metadata?: Record<string, unknown> | undefined;
|
|
3990
3999
|
org_name?: string | undefined;
|
|
3991
4000
|
org_role?: string | undefined;
|
|
4001
|
+
org_slug?: string | undefined;
|
|
3992
4002
|
sandbox_name?: string | undefined;
|
|
3993
4003
|
} | undefined;
|
|
3994
4004
|
sandbox?: string | undefined;
|
|
@@ -4081,6 +4091,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4081
4091
|
virtual_path?: string | undefined;
|
|
4082
4092
|
metadata?: Record<string, unknown> | undefined;
|
|
4083
4093
|
org_name?: string | undefined;
|
|
4094
|
+
org_slug?: string | undefined;
|
|
4084
4095
|
category_keys?: string[] | undefined;
|
|
4085
4096
|
events?: Record<string, unknown> | undefined;
|
|
4086
4097
|
image_url?: string | undefined;
|
|
@@ -4095,7 +4106,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4095
4106
|
url?: string | undefined;
|
|
4096
4107
|
width?: number | undefined;
|
|
4097
4108
|
} | undefined;
|
|
4098
|
-
org_slug?: string | undefined;
|
|
4099
4109
|
readme_url?: string | undefined;
|
|
4100
4110
|
screenshot_urls?: string[] | undefined;
|
|
4101
4111
|
solution_id?: string | undefined;
|
|
@@ -4155,6 +4165,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4155
4165
|
virtual_path?: string | undefined;
|
|
4156
4166
|
metadata?: Record<string, unknown> | undefined;
|
|
4157
4167
|
org_name?: string | undefined;
|
|
4168
|
+
org_slug?: string | undefined;
|
|
4158
4169
|
category_keys?: string[] | undefined;
|
|
4159
4170
|
events?: Record<string, unknown> | undefined;
|
|
4160
4171
|
image_url?: string | undefined;
|
|
@@ -4169,7 +4180,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4169
4180
|
url?: string | undefined;
|
|
4170
4181
|
width?: number | undefined;
|
|
4171
4182
|
} | undefined;
|
|
4172
|
-
org_slug?: string | undefined;
|
|
4173
4183
|
readme_url?: string | undefined;
|
|
4174
4184
|
screenshot_urls?: string[] | undefined;
|
|
4175
4185
|
solution_id?: string | undefined;
|
|
@@ -4200,6 +4210,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4200
4210
|
metadata?: Record<string, unknown> | undefined;
|
|
4201
4211
|
org_name?: string | undefined;
|
|
4202
4212
|
org_role?: string | undefined;
|
|
4213
|
+
org_slug?: string | undefined;
|
|
4203
4214
|
sandbox_name?: string | undefined;
|
|
4204
4215
|
} | undefined;
|
|
4205
4216
|
sandbox?: string | undefined;
|
|
@@ -4296,6 +4307,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4296
4307
|
virtual_path?: string | undefined;
|
|
4297
4308
|
metadata?: Record<string, unknown> | undefined;
|
|
4298
4309
|
org_name?: string | undefined;
|
|
4310
|
+
org_slug?: string | undefined;
|
|
4299
4311
|
category_keys?: string[] | undefined;
|
|
4300
4312
|
events?: Record<string, unknown> | undefined;
|
|
4301
4313
|
image_url?: string | undefined;
|
|
@@ -4310,7 +4322,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4310
4322
|
url?: string | undefined;
|
|
4311
4323
|
width?: number | undefined;
|
|
4312
4324
|
} | undefined;
|
|
4313
|
-
org_slug?: string | undefined;
|
|
4314
4325
|
readme_url?: string | undefined;
|
|
4315
4326
|
screenshot_urls?: string[] | undefined;
|
|
4316
4327
|
solution_id?: string | undefined;
|
|
@@ -4370,6 +4381,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4370
4381
|
virtual_path?: string | undefined;
|
|
4371
4382
|
metadata?: Record<string, unknown> | undefined;
|
|
4372
4383
|
org_name?: string | undefined;
|
|
4384
|
+
org_slug?: string | undefined;
|
|
4373
4385
|
category_keys?: string[] | undefined;
|
|
4374
4386
|
events?: Record<string, unknown> | undefined;
|
|
4375
4387
|
image_url?: string | undefined;
|
|
@@ -4384,7 +4396,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4384
4396
|
url?: string | undefined;
|
|
4385
4397
|
width?: number | undefined;
|
|
4386
4398
|
} | undefined;
|
|
4387
|
-
org_slug?: string | undefined;
|
|
4388
4399
|
readme_url?: string | undefined;
|
|
4389
4400
|
screenshot_urls?: string[] | undefined;
|
|
4390
4401
|
solution_id?: string | undefined;
|
|
@@ -4415,6 +4426,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4415
4426
|
metadata?: Record<string, unknown> | undefined;
|
|
4416
4427
|
org_name?: string | undefined;
|
|
4417
4428
|
org_role?: string | undefined;
|
|
4429
|
+
org_slug?: string | undefined;
|
|
4418
4430
|
sandbox_name?: string | undefined;
|
|
4419
4431
|
} | undefined;
|
|
4420
4432
|
sandbox?: string | undefined;
|
|
@@ -4512,6 +4524,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4512
4524
|
virtual_path?: string | undefined;
|
|
4513
4525
|
metadata?: Record<string, unknown> | undefined;
|
|
4514
4526
|
org_name?: string | undefined;
|
|
4527
|
+
org_slug?: string | undefined;
|
|
4515
4528
|
category_keys?: string[] | undefined;
|
|
4516
4529
|
events?: Record<string, unknown> | undefined;
|
|
4517
4530
|
image_url?: string | undefined;
|
|
@@ -4526,7 +4539,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4526
4539
|
url?: string | undefined;
|
|
4527
4540
|
width?: number | undefined;
|
|
4528
4541
|
} | undefined;
|
|
4529
|
-
org_slug?: string | undefined;
|
|
4530
4542
|
readme_url?: string | undefined;
|
|
4531
4543
|
screenshot_urls?: string[] | undefined;
|
|
4532
4544
|
solution_id?: string | undefined;
|
|
@@ -4586,6 +4598,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4586
4598
|
virtual_path?: string | undefined;
|
|
4587
4599
|
metadata?: Record<string, unknown> | undefined;
|
|
4588
4600
|
org_name?: string | undefined;
|
|
4601
|
+
org_slug?: string | undefined;
|
|
4589
4602
|
category_keys?: string[] | undefined;
|
|
4590
4603
|
events?: Record<string, unknown> | undefined;
|
|
4591
4604
|
image_url?: string | undefined;
|
|
@@ -4600,7 +4613,6 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4600
4613
|
url?: string | undefined;
|
|
4601
4614
|
width?: number | undefined;
|
|
4602
4615
|
} | undefined;
|
|
4603
|
-
org_slug?: string | undefined;
|
|
4604
4616
|
readme_url?: string | undefined;
|
|
4605
4617
|
screenshot_urls?: string[] | undefined;
|
|
4606
4618
|
solution_id?: string | undefined;
|
|
@@ -4631,6 +4643,7 @@ export declare const activityFeedEntryListResponseSchema: z.ZodObject<{
|
|
|
4631
4643
|
metadata?: Record<string, unknown> | undefined;
|
|
4632
4644
|
org_name?: string | undefined;
|
|
4633
4645
|
org_role?: string | undefined;
|
|
4646
|
+
org_slug?: string | undefined;
|
|
4634
4647
|
sandbox_name?: string | undefined;
|
|
4635
4648
|
} | undefined;
|
|
4636
4649
|
sandbox?: string | undefined;
|
|
@@ -5357,6 +5370,7 @@ export declare const authTokensSchema: z.ZodObject<{
|
|
|
5357
5370
|
org: z.ZodOptional<z.ZodString>;
|
|
5358
5371
|
org_name: z.ZodOptional<z.ZodString>;
|
|
5359
5372
|
org_role: z.ZodOptional<z.ZodString>;
|
|
5373
|
+
org_slug: z.ZodOptional<z.ZodString>;
|
|
5360
5374
|
sandbox: z.ZodOptional<z.ZodString>;
|
|
5361
5375
|
sandbox_name: z.ZodOptional<z.ZodString>;
|
|
5362
5376
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5372,6 +5386,7 @@ export declare const authTokensSchema: z.ZodObject<{
|
|
|
5372
5386
|
metadata?: Record<string, unknown> | undefined;
|
|
5373
5387
|
org_name?: string | undefined;
|
|
5374
5388
|
org_role?: string | undefined;
|
|
5389
|
+
org_slug?: string | undefined;
|
|
5375
5390
|
sandbox_name?: string | undefined;
|
|
5376
5391
|
}, {
|
|
5377
5392
|
id: string;
|
|
@@ -5386,6 +5401,7 @@ export declare const authTokensSchema: z.ZodObject<{
|
|
|
5386
5401
|
metadata?: Record<string, unknown> | undefined;
|
|
5387
5402
|
org_name?: string | undefined;
|
|
5388
5403
|
org_role?: string | undefined;
|
|
5404
|
+
org_slug?: string | undefined;
|
|
5389
5405
|
sandbox_name?: string | undefined;
|
|
5390
5406
|
}>;
|
|
5391
5407
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5405,6 +5421,7 @@ export declare const authTokensSchema: z.ZodObject<{
|
|
|
5405
5421
|
metadata?: Record<string, unknown> | undefined;
|
|
5406
5422
|
org_name?: string | undefined;
|
|
5407
5423
|
org_role?: string | undefined;
|
|
5424
|
+
org_slug?: string | undefined;
|
|
5408
5425
|
sandbox_name?: string | undefined;
|
|
5409
5426
|
};
|
|
5410
5427
|
token_type: string;
|
|
@@ -5426,6 +5443,7 @@ export declare const authTokensSchema: z.ZodObject<{
|
|
|
5426
5443
|
metadata?: Record<string, unknown> | undefined;
|
|
5427
5444
|
org_name?: string | undefined;
|
|
5428
5445
|
org_role?: string | undefined;
|
|
5446
|
+
org_slug?: string | undefined;
|
|
5429
5447
|
sandbox_name?: string | undefined;
|
|
5430
5448
|
};
|
|
5431
5449
|
token_type: string;
|
|
@@ -10161,16 +10179,18 @@ export interface SlackChannelBinding {
|
|
|
10161
10179
|
is_ext_shared_cached?: boolean | undefined;
|
|
10162
10180
|
/** Cached value of Slack's `is_private` flag for this channel. May be stale relative to Slack's current state. Private channels are member-managed: mutating the binding requires in-channel evidence. */
|
|
10163
10181
|
is_private_cached?: boolean | undefined;
|
|
10182
|
+
/** IDs of every mirror thread this channel's messages land in (`thr_…` public IDs) that the caller can read, including any legacy peel or chain threads. Empty for a caller with no membership on any of them, and for a channel that has not mirrored anything yet. IDs only: reading a mirror's contents still requires membership on it. */
|
|
10183
|
+
mirrors?: string[] | undefined;
|
|
10164
10184
|
/** Whether the resident agent is currently muted. A muted resident keeps mirroring the channel (reading) but stops replying. A timed mute expires automatically at `muted_until`; this reflects the effective state as of now. Defaults to `false`. */
|
|
10165
10185
|
muted: boolean;
|
|
10166
10186
|
/** ISO 8601 timestamp when a timed mute expires and replies resume. `null` for an indefinite mute (until an explicit unmute) or when not muted. */
|
|
10167
10187
|
muted_until?: string | undefined;
|
|
10168
10188
|
/** How the resident agent's replies post to Slack: `thread` (default) threads a reply under the message that triggered it; `top_level` posts it flat in the channel. */
|
|
10169
10189
|
reply_style: string;
|
|
10170
|
-
/** ID of the
|
|
10190
|
+
/** ID of the resident agent selected by Slack ingress. `null` when no resident is attached and the channel is an observer. */
|
|
10171
10191
|
resident_agent?: string | undefined;
|
|
10172
|
-
/** Effective Slack ingress route
|
|
10173
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10192
|
+
/** Effective Slack ingress route. `fda` — a resident on a team-bound channel, replying through the Forward Deployed Agent chain. `resident` — a resident on an internal channel, replying through the channel mirror. `observer` — no resident is attached, so the channel is recorded and nobody replies. `concierge` — no longer returned anywhere; until Track F it was the value for a channel with no resident, meaning the shared concierge agent answered there. The value is retained in this enum so consumers matching on it do not break, and its removal rides a deliberate API change. */
|
|
10193
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10174
10194
|
/** The customer key this channel's agent is locked to, written when adding the customer finishes. A `posted` binding whose `scope_key` is still null has been accepted but not finished — the addition is either in flight or was refused. */
|
|
10175
10195
|
scope_key?: string | undefined;
|
|
10176
10196
|
/** ID of the ArchAstro team this channel is bound to. */
|
|
@@ -10200,16 +10220,18 @@ export declare const slackChannelBindingSchema: z.ZodObject<{
|
|
|
10200
10220
|
is_ext_shared_cached: z.ZodOptional<z.ZodBoolean>;
|
|
10201
10221
|
/** Cached value of Slack's `is_private` flag for this channel. May be stale relative to Slack's current state. Private channels are member-managed: mutating the binding requires in-channel evidence. */
|
|
10202
10222
|
is_private_cached: z.ZodOptional<z.ZodBoolean>;
|
|
10223
|
+
/** IDs of every mirror thread this channel's messages land in (`thr_…` public IDs) that the caller can read, including any legacy peel or chain threads. Empty for a caller with no membership on any of them, and for a channel that has not mirrored anything yet. IDs only: reading a mirror's contents still requires membership on it. */
|
|
10224
|
+
mirrors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10203
10225
|
/** Whether the resident agent is currently muted. A muted resident keeps mirroring the channel (reading) but stops replying. A timed mute expires automatically at `muted_until`; this reflects the effective state as of now. Defaults to `false`. */
|
|
10204
10226
|
muted: z.ZodBoolean;
|
|
10205
10227
|
/** ISO 8601 timestamp when a timed mute expires and replies resume. `null` for an indefinite mute (until an explicit unmute) or when not muted. */
|
|
10206
10228
|
muted_until: z.ZodOptional<z.ZodString>;
|
|
10207
10229
|
/** How the resident agent's replies post to Slack: `thread` (default) threads a reply under the message that triggered it; `top_level` posts it flat in the channel. */
|
|
10208
10230
|
reply_style: z.ZodString;
|
|
10209
|
-
/** ID of the
|
|
10231
|
+
/** ID of the resident agent selected by Slack ingress. `null` when no resident is attached and the channel is an observer. */
|
|
10210
10232
|
resident_agent: z.ZodOptional<z.ZodString>;
|
|
10211
|
-
/** Effective Slack ingress route
|
|
10212
|
-
route_kind: z.ZodEnum<["fda", "resident", "concierge"]>;
|
|
10233
|
+
/** Effective Slack ingress route. `fda` — a resident on a team-bound channel, replying through the Forward Deployed Agent chain. `resident` — a resident on an internal channel, replying through the channel mirror. `observer` — no resident is attached, so the channel is recorded and nobody replies. `concierge` — no longer returned anywhere; until Track F it was the value for a channel with no resident, meaning the shared concierge agent answered there. The value is retained in this enum so consumers matching on it do not break, and its removal rides a deliberate API change. */
|
|
10234
|
+
route_kind: z.ZodEnum<["fda", "resident", "observer", "concierge"]>;
|
|
10213
10235
|
/** The customer key this channel's agent is locked to, written when adding the customer finishes. A `posted` binding whose `scope_key` is still null has been accepted but not finished — the addition is either in flight or was refused. */
|
|
10214
10236
|
scope_key: z.ZodOptional<z.ZodString>;
|
|
10215
10237
|
/** ID of the ArchAstro team this channel is bound to. */
|
|
@@ -10221,7 +10243,7 @@ export declare const slackChannelBindingSchema: z.ZodObject<{
|
|
|
10221
10243
|
allow_bot_conversations: boolean;
|
|
10222
10244
|
muted: boolean;
|
|
10223
10245
|
reply_style: string;
|
|
10224
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10246
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10225
10247
|
team?: string | undefined;
|
|
10226
10248
|
agents?: string[] | undefined;
|
|
10227
10249
|
channel?: string | undefined;
|
|
@@ -10231,6 +10253,7 @@ export declare const slackChannelBindingSchema: z.ZodObject<{
|
|
|
10231
10253
|
integration?: string | undefined;
|
|
10232
10254
|
is_ext_shared_cached?: boolean | undefined;
|
|
10233
10255
|
is_private_cached?: boolean | undefined;
|
|
10256
|
+
mirrors?: string[] | undefined;
|
|
10234
10257
|
muted_until?: string | undefined;
|
|
10235
10258
|
resident_agent?: string | undefined;
|
|
10236
10259
|
scope_key?: string | undefined;
|
|
@@ -10240,7 +10263,7 @@ export declare const slackChannelBindingSchema: z.ZodObject<{
|
|
|
10240
10263
|
allow_bot_conversations: boolean;
|
|
10241
10264
|
muted: boolean;
|
|
10242
10265
|
reply_style: string;
|
|
10243
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10266
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10244
10267
|
team?: string | undefined;
|
|
10245
10268
|
agents?: string[] | undefined;
|
|
10246
10269
|
channel?: string | undefined;
|
|
@@ -10250,6 +10273,7 @@ export declare const slackChannelBindingSchema: z.ZodObject<{
|
|
|
10250
10273
|
integration?: string | undefined;
|
|
10251
10274
|
is_ext_shared_cached?: boolean | undefined;
|
|
10252
10275
|
is_private_cached?: boolean | undefined;
|
|
10276
|
+
mirrors?: string[] | undefined;
|
|
10253
10277
|
muted_until?: string | undefined;
|
|
10254
10278
|
resident_agent?: string | undefined;
|
|
10255
10279
|
scope_key?: string | undefined;
|
|
@@ -10292,16 +10316,18 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10292
10316
|
is_ext_shared_cached: z.ZodOptional<z.ZodBoolean>;
|
|
10293
10317
|
/** Cached value of Slack's `is_private` flag for this channel. May be stale relative to Slack's current state. Private channels are member-managed: mutating the binding requires in-channel evidence. */
|
|
10294
10318
|
is_private_cached: z.ZodOptional<z.ZodBoolean>;
|
|
10319
|
+
/** IDs of every mirror thread this channel's messages land in (`thr_…` public IDs) that the caller can read, including any legacy peel or chain threads. Empty for a caller with no membership on any of them, and for a channel that has not mirrored anything yet. IDs only: reading a mirror's contents still requires membership on it. */
|
|
10320
|
+
mirrors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10295
10321
|
/** Whether the resident agent is currently muted. A muted resident keeps mirroring the channel (reading) but stops replying. A timed mute expires automatically at `muted_until`; this reflects the effective state as of now. Defaults to `false`. */
|
|
10296
10322
|
muted: z.ZodBoolean;
|
|
10297
10323
|
/** ISO 8601 timestamp when a timed mute expires and replies resume. `null` for an indefinite mute (until an explicit unmute) or when not muted. */
|
|
10298
10324
|
muted_until: z.ZodOptional<z.ZodString>;
|
|
10299
10325
|
/** How the resident agent's replies post to Slack: `thread` (default) threads a reply under the message that triggered it; `top_level` posts it flat in the channel. */
|
|
10300
10326
|
reply_style: z.ZodString;
|
|
10301
|
-
/** ID of the
|
|
10327
|
+
/** ID of the resident agent selected by Slack ingress. `null` when no resident is attached and the channel is an observer. */
|
|
10302
10328
|
resident_agent: z.ZodOptional<z.ZodString>;
|
|
10303
|
-
/** Effective Slack ingress route
|
|
10304
|
-
route_kind: z.ZodEnum<["fda", "resident", "concierge"]>;
|
|
10329
|
+
/** Effective Slack ingress route. `fda` — a resident on a team-bound channel, replying through the Forward Deployed Agent chain. `resident` — a resident on an internal channel, replying through the channel mirror. `observer` — no resident is attached, so the channel is recorded and nobody replies. `concierge` — no longer returned anywhere; until Track F it was the value for a channel with no resident, meaning the shared concierge agent answered there. The value is retained in this enum so consumers matching on it do not break, and its removal rides a deliberate API change. */
|
|
10330
|
+
route_kind: z.ZodEnum<["fda", "resident", "observer", "concierge"]>;
|
|
10305
10331
|
/** The customer key this channel's agent is locked to, written when adding the customer finishes. A `posted` binding whose `scope_key` is still null has been accepted but not finished — the addition is either in flight or was refused. */
|
|
10306
10332
|
scope_key: z.ZodOptional<z.ZodString>;
|
|
10307
10333
|
/** ID of the ArchAstro team this channel is bound to. */
|
|
@@ -10313,7 +10339,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10313
10339
|
allow_bot_conversations: boolean;
|
|
10314
10340
|
muted: boolean;
|
|
10315
10341
|
reply_style: string;
|
|
10316
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10342
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10317
10343
|
team?: string | undefined;
|
|
10318
10344
|
agents?: string[] | undefined;
|
|
10319
10345
|
channel?: string | undefined;
|
|
@@ -10323,6 +10349,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10323
10349
|
integration?: string | undefined;
|
|
10324
10350
|
is_ext_shared_cached?: boolean | undefined;
|
|
10325
10351
|
is_private_cached?: boolean | undefined;
|
|
10352
|
+
mirrors?: string[] | undefined;
|
|
10326
10353
|
muted_until?: string | undefined;
|
|
10327
10354
|
resident_agent?: string | undefined;
|
|
10328
10355
|
scope_key?: string | undefined;
|
|
@@ -10332,7 +10359,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10332
10359
|
allow_bot_conversations: boolean;
|
|
10333
10360
|
muted: boolean;
|
|
10334
10361
|
reply_style: string;
|
|
10335
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10362
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10336
10363
|
team?: string | undefined;
|
|
10337
10364
|
agents?: string[] | undefined;
|
|
10338
10365
|
channel?: string | undefined;
|
|
@@ -10342,6 +10369,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10342
10369
|
integration?: string | undefined;
|
|
10343
10370
|
is_ext_shared_cached?: boolean | undefined;
|
|
10344
10371
|
is_private_cached?: boolean | undefined;
|
|
10372
|
+
mirrors?: string[] | undefined;
|
|
10345
10373
|
muted_until?: string | undefined;
|
|
10346
10374
|
resident_agent?: string | undefined;
|
|
10347
10375
|
scope_key?: string | undefined;
|
|
@@ -10361,7 +10389,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10361
10389
|
allow_bot_conversations: boolean;
|
|
10362
10390
|
muted: boolean;
|
|
10363
10391
|
reply_style: string;
|
|
10364
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10392
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10365
10393
|
team?: string | undefined;
|
|
10366
10394
|
agents?: string[] | undefined;
|
|
10367
10395
|
channel?: string | undefined;
|
|
@@ -10371,6 +10399,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10371
10399
|
integration?: string | undefined;
|
|
10372
10400
|
is_ext_shared_cached?: boolean | undefined;
|
|
10373
10401
|
is_private_cached?: boolean | undefined;
|
|
10402
|
+
mirrors?: string[] | undefined;
|
|
10374
10403
|
muted_until?: string | undefined;
|
|
10375
10404
|
resident_agent?: string | undefined;
|
|
10376
10405
|
scope_key?: string | undefined;
|
|
@@ -10386,7 +10415,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10386
10415
|
allow_bot_conversations: boolean;
|
|
10387
10416
|
muted: boolean;
|
|
10388
10417
|
reply_style: string;
|
|
10389
|
-
route_kind: "fda" | "resident" | "concierge";
|
|
10418
|
+
route_kind: "fda" | "resident" | "observer" | "concierge";
|
|
10390
10419
|
team?: string | undefined;
|
|
10391
10420
|
agents?: string[] | undefined;
|
|
10392
10421
|
channel?: string | undefined;
|
|
@@ -10396,6 +10425,7 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10396
10425
|
integration?: string | undefined;
|
|
10397
10426
|
is_ext_shared_cached?: boolean | undefined;
|
|
10398
10427
|
is_private_cached?: boolean | undefined;
|
|
10428
|
+
mirrors?: string[] | undefined;
|
|
10399
10429
|
muted_until?: string | undefined;
|
|
10400
10430
|
resident_agent?: string | undefined;
|
|
10401
10431
|
scope_key?: string | undefined;
|
|
@@ -10406,6 +10436,195 @@ export declare const slackChannelBindingListResponseSchema: z.ZodObject<{
|
|
|
10406
10436
|
total_count: number;
|
|
10407
10437
|
per_page: number;
|
|
10408
10438
|
}>;
|
|
10439
|
+
/** What happened to one agent message this platform sent to a Slack channel. Lets you confirm delivery, or find out why a reply never arrived, without reading the channel's mirrored conversation. */
|
|
10440
|
+
export interface SlackDeliveryOutcome {
|
|
10441
|
+
/** ID of the agent whose message this was. */
|
|
10442
|
+
agent?: string | undefined;
|
|
10443
|
+
/** ID of the Slack channel binding in force for this send. `null` when no binding could be resolved, in which case the send was treated as cross-org and floored on that basis. */
|
|
10444
|
+
binding?: string | undefined;
|
|
10445
|
+
/** Slack channel ID the send was addressed to. */
|
|
10446
|
+
channel: string;
|
|
10447
|
+
/** For a `failed` send, a short machine-readable cause — `slack:<slack_error_code>` when Slack rejected the call, or `floor_config` when the content floor could not be evaluated and the send failed closed. */
|
|
10448
|
+
failure_reason?: string | undefined;
|
|
10449
|
+
/** For a withheld send, the kind of guard that stopped it — `RegexMatch`, `ContainsAny`, `ContainsString`, or `LLMJudge`. `null` when the send was not withheld by a guard. */
|
|
10450
|
+
guard_kind?: string | undefined;
|
|
10451
|
+
/** For a withheld send, the labels of the guards that stopped it (for example `Contains AWS access key ID`). These are the content policy's own descriptions, recorded as they read at the time of the send; they never contain the withheld message. */
|
|
10452
|
+
guard_labels?: string[] | undefined;
|
|
10453
|
+
/** Unique identifier for this delivery outcome. */
|
|
10454
|
+
id: string;
|
|
10455
|
+
/** ID of the platform message this attempt was carrying. Reading that message still requires access to its thread — this field correlates, it does not grant. */
|
|
10456
|
+
message?: string | undefined;
|
|
10457
|
+
/** Whether the attempt posted a new Slack message or updated an existing one (replacing a thinking placeholder). */
|
|
10458
|
+
operation: "post" | "update";
|
|
10459
|
+
/** What happened to the send. `delivered` — Slack accepted the message. `floored` — a deterministic content guard withheld it, so it never left. `judge_refused` — the cross-org judge decided it was not appropriate for this channel's audience. `failed` — Slack rejected the call, or the content floor could not be evaluated and the send failed closed. */
|
|
10460
|
+
outcome: "delivered" | "floored" | "judge_refused" | "failed";
|
|
10461
|
+
/** When the send was attempted. */
|
|
10462
|
+
recorded_at: string;
|
|
10463
|
+
/** Slack thread timestamp the send targeted, letting attempts be grouped into the conversation they belong to. `null` for a top-level channel post. */
|
|
10464
|
+
thread_ts?: string | undefined;
|
|
10465
|
+
}
|
|
10466
|
+
/** Runtime validator for {@link SlackDeliveryOutcome}. */
|
|
10467
|
+
export declare const slackDeliveryOutcomeSchema: z.ZodObject<{
|
|
10468
|
+
/** ID of the agent whose message this was. */
|
|
10469
|
+
agent: z.ZodOptional<z.ZodString>;
|
|
10470
|
+
/** ID of the Slack channel binding in force for this send. `null` when no binding could be resolved, in which case the send was treated as cross-org and floored on that basis. */
|
|
10471
|
+
binding: z.ZodOptional<z.ZodString>;
|
|
10472
|
+
/** Slack channel ID the send was addressed to. */
|
|
10473
|
+
channel: z.ZodString;
|
|
10474
|
+
/** For a `failed` send, a short machine-readable cause — `slack:<slack_error_code>` when Slack rejected the call, or `floor_config` when the content floor could not be evaluated and the send failed closed. */
|
|
10475
|
+
failure_reason: z.ZodOptional<z.ZodString>;
|
|
10476
|
+
/** For a withheld send, the kind of guard that stopped it — `RegexMatch`, `ContainsAny`, `ContainsString`, or `LLMJudge`. `null` when the send was not withheld by a guard. */
|
|
10477
|
+
guard_kind: z.ZodOptional<z.ZodString>;
|
|
10478
|
+
/** For a withheld send, the labels of the guards that stopped it (for example `Contains AWS access key ID`). These are the content policy's own descriptions, recorded as they read at the time of the send; they never contain the withheld message. */
|
|
10479
|
+
guard_labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10480
|
+
/** Unique identifier for this delivery outcome. */
|
|
10481
|
+
id: z.ZodString;
|
|
10482
|
+
/** ID of the platform message this attempt was carrying. Reading that message still requires access to its thread — this field correlates, it does not grant. */
|
|
10483
|
+
message: z.ZodOptional<z.ZodString>;
|
|
10484
|
+
/** Whether the attempt posted a new Slack message or updated an existing one (replacing a thinking placeholder). */
|
|
10485
|
+
operation: z.ZodEnum<["post", "update"]>;
|
|
10486
|
+
/** What happened to the send. `delivered` — Slack accepted the message. `floored` — a deterministic content guard withheld it, so it never left. `judge_refused` — the cross-org judge decided it was not appropriate for this channel's audience. `failed` — Slack rejected the call, or the content floor could not be evaluated and the send failed closed. */
|
|
10487
|
+
outcome: z.ZodEnum<["delivered", "floored", "judge_refused", "failed"]>;
|
|
10488
|
+
/** When the send was attempted. */
|
|
10489
|
+
recorded_at: z.ZodString;
|
|
10490
|
+
/** Slack thread timestamp the send targeted, letting attempts be grouped into the conversation they belong to. `null` for a top-level channel post. */
|
|
10491
|
+
thread_ts: z.ZodOptional<z.ZodString>;
|
|
10492
|
+
}, "strip", z.ZodTypeAny, {
|
|
10493
|
+
id: string;
|
|
10494
|
+
channel: string;
|
|
10495
|
+
operation: "post" | "update";
|
|
10496
|
+
outcome: "failed" | "delivered" | "floored" | "judge_refused";
|
|
10497
|
+
recorded_at: string;
|
|
10498
|
+
message?: string | undefined;
|
|
10499
|
+
agent?: string | undefined;
|
|
10500
|
+
binding?: string | undefined;
|
|
10501
|
+
failure_reason?: string | undefined;
|
|
10502
|
+
guard_kind?: string | undefined;
|
|
10503
|
+
guard_labels?: string[] | undefined;
|
|
10504
|
+
thread_ts?: string | undefined;
|
|
10505
|
+
}, {
|
|
10506
|
+
id: string;
|
|
10507
|
+
channel: string;
|
|
10508
|
+
operation: "post" | "update";
|
|
10509
|
+
outcome: "failed" | "delivered" | "floored" | "judge_refused";
|
|
10510
|
+
recorded_at: string;
|
|
10511
|
+
message?: string | undefined;
|
|
10512
|
+
agent?: string | undefined;
|
|
10513
|
+
binding?: string | undefined;
|
|
10514
|
+
failure_reason?: string | undefined;
|
|
10515
|
+
guard_kind?: string | undefined;
|
|
10516
|
+
guard_labels?: string[] | undefined;
|
|
10517
|
+
thread_ts?: string | undefined;
|
|
10518
|
+
}>;
|
|
10519
|
+
/** A page of delivery outcomes for one Slack channel, newest first. Page through history with the returned cursors; `since` and `outcome` are filters, not paging controls. */
|
|
10520
|
+
export interface SlackDeliveryOutcomeListResponse {
|
|
10521
|
+
/** Opaque cursor for the page of newer outcomes. Pass back as `after_cursor` to poll for attempts recorded since. `null` when the page is empty. */
|
|
10522
|
+
after_cursor?: string | undefined;
|
|
10523
|
+
/** Opaque cursor for the page of older outcomes. Pass back as `before_cursor` to continue into history. `null` when the page is empty. */
|
|
10524
|
+
before_cursor?: string | undefined;
|
|
10525
|
+
/** Delivery outcomes matching the query, newest attempt first. */
|
|
10526
|
+
data: SlackDeliveryOutcome[];
|
|
10527
|
+
/** True when more outcomes exist beyond this page. */
|
|
10528
|
+
has_more: boolean;
|
|
10529
|
+
}
|
|
10530
|
+
/** Runtime validator for {@link SlackDeliveryOutcomeListResponse}. */
|
|
10531
|
+
export declare const slackDeliveryOutcomeListResponseSchema: z.ZodObject<{
|
|
10532
|
+
/** Opaque cursor for the page of newer outcomes. Pass back as `after_cursor` to poll for attempts recorded since. `null` when the page is empty. */
|
|
10533
|
+
after_cursor: z.ZodOptional<z.ZodString>;
|
|
10534
|
+
/** Opaque cursor for the page of older outcomes. Pass back as `before_cursor` to continue into history. `null` when the page is empty. */
|
|
10535
|
+
before_cursor: z.ZodOptional<z.ZodString>;
|
|
10536
|
+
/** Delivery outcomes matching the query, newest attempt first. */
|
|
10537
|
+
data: z.ZodArray<z.ZodObject<{
|
|
10538
|
+
/** ID of the agent whose message this was. */
|
|
10539
|
+
agent: z.ZodOptional<z.ZodString>;
|
|
10540
|
+
/** ID of the Slack channel binding in force for this send. `null` when no binding could be resolved, in which case the send was treated as cross-org and floored on that basis. */
|
|
10541
|
+
binding: z.ZodOptional<z.ZodString>;
|
|
10542
|
+
/** Slack channel ID the send was addressed to. */
|
|
10543
|
+
channel: z.ZodString;
|
|
10544
|
+
/** For a `failed` send, a short machine-readable cause — `slack:<slack_error_code>` when Slack rejected the call, or `floor_config` when the content floor could not be evaluated and the send failed closed. */
|
|
10545
|
+
failure_reason: z.ZodOptional<z.ZodString>;
|
|
10546
|
+
/** For a withheld send, the kind of guard that stopped it — `RegexMatch`, `ContainsAny`, `ContainsString`, or `LLMJudge`. `null` when the send was not withheld by a guard. */
|
|
10547
|
+
guard_kind: z.ZodOptional<z.ZodString>;
|
|
10548
|
+
/** For a withheld send, the labels of the guards that stopped it (for example `Contains AWS access key ID`). These are the content policy's own descriptions, recorded as they read at the time of the send; they never contain the withheld message. */
|
|
10549
|
+
guard_labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10550
|
+
/** Unique identifier for this delivery outcome. */
|
|
10551
|
+
id: z.ZodString;
|
|
10552
|
+
/** ID of the platform message this attempt was carrying. Reading that message still requires access to its thread — this field correlates, it does not grant. */
|
|
10553
|
+
message: z.ZodOptional<z.ZodString>;
|
|
10554
|
+
/** Whether the attempt posted a new Slack message or updated an existing one (replacing a thinking placeholder). */
|
|
10555
|
+
operation: z.ZodEnum<["post", "update"]>;
|
|
10556
|
+
/** What happened to the send. `delivered` — Slack accepted the message. `floored` — a deterministic content guard withheld it, so it never left. `judge_refused` — the cross-org judge decided it was not appropriate for this channel's audience. `failed` — Slack rejected the call, or the content floor could not be evaluated and the send failed closed. */
|
|
10557
|
+
outcome: z.ZodEnum<["delivered", "floored", "judge_refused", "failed"]>;
|
|
10558
|
+
/** When the send was attempted. */
|
|
10559
|
+
recorded_at: z.ZodString;
|
|
10560
|
+
/** Slack thread timestamp the send targeted, letting attempts be grouped into the conversation they belong to. `null` for a top-level channel post. */
|
|
10561
|
+
thread_ts: z.ZodOptional<z.ZodString>;
|
|
10562
|
+
}, "strip", z.ZodTypeAny, {
|
|
10563
|
+
id: string;
|
|
10564
|
+
channel: string;
|
|
10565
|
+
operation: "post" | "update";
|
|
10566
|
+
outcome: "failed" | "delivered" | "floored" | "judge_refused";
|
|
10567
|
+
recorded_at: string;
|
|
10568
|
+
message?: string | undefined;
|
|
10569
|
+
agent?: string | undefined;
|
|
10570
|
+
binding?: string | undefined;
|
|
10571
|
+
failure_reason?: string | undefined;
|
|
10572
|
+
guard_kind?: string | undefined;
|
|
10573
|
+
guard_labels?: string[] | undefined;
|
|
10574
|
+
thread_ts?: string | undefined;
|
|
10575
|
+
}, {
|
|
10576
|
+
id: string;
|
|
10577
|
+
channel: string;
|
|
10578
|
+
operation: "post" | "update";
|
|
10579
|
+
outcome: "failed" | "delivered" | "floored" | "judge_refused";
|
|
10580
|
+
recorded_at: string;
|
|
10581
|
+
message?: string | undefined;
|
|
10582
|
+
agent?: string | undefined;
|
|
10583
|
+
binding?: string | undefined;
|
|
10584
|
+
failure_reason?: string | undefined;
|
|
10585
|
+
guard_kind?: string | undefined;
|
|
10586
|
+
guard_labels?: string[] | undefined;
|
|
10587
|
+
thread_ts?: string | undefined;
|
|
10588
|
+
}>, "many">;
|
|
10589
|
+
/** True when more outcomes exist beyond this page. */
|
|
10590
|
+
has_more: z.ZodBoolean;
|
|
10591
|
+
}, "strip", z.ZodTypeAny, {
|
|
10592
|
+
data: {
|
|
10593
|
+
id: string;
|
|
10594
|
+
channel: string;
|
|
10595
|
+
operation: "post" | "update";
|
|
10596
|
+
outcome: "failed" | "delivered" | "floored" | "judge_refused";
|
|
10597
|
+
recorded_at: string;
|
|
10598
|
+
message?: string | undefined;
|
|
10599
|
+
agent?: string | undefined;
|
|
10600
|
+
binding?: string | undefined;
|
|
10601
|
+
failure_reason?: string | undefined;
|
|
10602
|
+
guard_kind?: string | undefined;
|
|
10603
|
+
guard_labels?: string[] | undefined;
|
|
10604
|
+
thread_ts?: string | undefined;
|
|
10605
|
+
}[];
|
|
10606
|
+
has_more: boolean;
|
|
10607
|
+
before_cursor?: string | undefined;
|
|
10608
|
+
after_cursor?: string | undefined;
|
|
10609
|
+
}, {
|
|
10610
|
+
data: {
|
|
10611
|
+
id: string;
|
|
10612
|
+
channel: string;
|
|
10613
|
+
operation: "post" | "update";
|
|
10614
|
+
outcome: "failed" | "delivered" | "floored" | "judge_refused";
|
|
10615
|
+
recorded_at: string;
|
|
10616
|
+
message?: string | undefined;
|
|
10617
|
+
agent?: string | undefined;
|
|
10618
|
+
binding?: string | undefined;
|
|
10619
|
+
failure_reason?: string | undefined;
|
|
10620
|
+
guard_kind?: string | undefined;
|
|
10621
|
+
guard_labels?: string[] | undefined;
|
|
10622
|
+
thread_ts?: string | undefined;
|
|
10623
|
+
}[];
|
|
10624
|
+
has_more: boolean;
|
|
10625
|
+
before_cursor?: string | undefined;
|
|
10626
|
+
after_cursor?: string | undefined;
|
|
10627
|
+
}>;
|
|
10409
10628
|
/** A recorded sequence of AI messages and tool interactions representing a single AI reasoning session. Trajectories are stored as structured message logs and can be replayed or inspected after execution. */
|
|
10410
10629
|
export interface Trajectory {
|
|
10411
10630
|
/** When the trajectory was recorded (ISO 8601). */
|
|
@@ -11871,6 +12090,7 @@ export declare const solutionSummarySchema: z.ZodObject<{
|
|
|
11871
12090
|
virtual_path?: string | undefined;
|
|
11872
12091
|
metadata?: Record<string, unknown> | undefined;
|
|
11873
12092
|
org_name?: string | undefined;
|
|
12093
|
+
org_slug?: string | undefined;
|
|
11874
12094
|
category_keys?: string[] | undefined;
|
|
11875
12095
|
events?: Record<string, unknown> | undefined;
|
|
11876
12096
|
image_url?: string | undefined;
|
|
@@ -11885,7 +12105,6 @@ export declare const solutionSummarySchema: z.ZodObject<{
|
|
|
11885
12105
|
url?: string | undefined;
|
|
11886
12106
|
width?: number | undefined;
|
|
11887
12107
|
} | undefined;
|
|
11888
|
-
org_slug?: string | undefined;
|
|
11889
12108
|
readme_url?: string | undefined;
|
|
11890
12109
|
screenshot_urls?: string[] | undefined;
|
|
11891
12110
|
solution_id?: string | undefined;
|
|
@@ -11933,6 +12152,7 @@ export declare const solutionSummarySchema: z.ZodObject<{
|
|
|
11933
12152
|
virtual_path?: string | undefined;
|
|
11934
12153
|
metadata?: Record<string, unknown> | undefined;
|
|
11935
12154
|
org_name?: string | undefined;
|
|
12155
|
+
org_slug?: string | undefined;
|
|
11936
12156
|
category_keys?: string[] | undefined;
|
|
11937
12157
|
events?: Record<string, unknown> | undefined;
|
|
11938
12158
|
image_url?: string | undefined;
|
|
@@ -11947,7 +12167,6 @@ export declare const solutionSummarySchema: z.ZodObject<{
|
|
|
11947
12167
|
url?: string | undefined;
|
|
11948
12168
|
width?: number | undefined;
|
|
11949
12169
|
} | undefined;
|
|
11950
|
-
org_slug?: string | undefined;
|
|
11951
12170
|
readme_url?: string | undefined;
|
|
11952
12171
|
screenshot_urls?: string[] | undefined;
|
|
11953
12172
|
solution_id?: string | undefined;
|
|
@@ -12255,6 +12474,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12255
12474
|
virtual_path?: string | undefined;
|
|
12256
12475
|
metadata?: Record<string, unknown> | undefined;
|
|
12257
12476
|
org_name?: string | undefined;
|
|
12477
|
+
org_slug?: string | undefined;
|
|
12258
12478
|
category_keys?: string[] | undefined;
|
|
12259
12479
|
events?: Record<string, unknown> | undefined;
|
|
12260
12480
|
image_url?: string | undefined;
|
|
@@ -12269,7 +12489,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12269
12489
|
url?: string | undefined;
|
|
12270
12490
|
width?: number | undefined;
|
|
12271
12491
|
} | undefined;
|
|
12272
|
-
org_slug?: string | undefined;
|
|
12273
12492
|
readme_url?: string | undefined;
|
|
12274
12493
|
screenshot_urls?: string[] | undefined;
|
|
12275
12494
|
solution_id?: string | undefined;
|
|
@@ -12317,6 +12536,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12317
12536
|
virtual_path?: string | undefined;
|
|
12318
12537
|
metadata?: Record<string, unknown> | undefined;
|
|
12319
12538
|
org_name?: string | undefined;
|
|
12539
|
+
org_slug?: string | undefined;
|
|
12320
12540
|
category_keys?: string[] | undefined;
|
|
12321
12541
|
events?: Record<string, unknown> | undefined;
|
|
12322
12542
|
image_url?: string | undefined;
|
|
@@ -12331,7 +12551,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12331
12551
|
url?: string | undefined;
|
|
12332
12552
|
width?: number | undefined;
|
|
12333
12553
|
} | undefined;
|
|
12334
|
-
org_slug?: string | undefined;
|
|
12335
12554
|
readme_url?: string | undefined;
|
|
12336
12555
|
screenshot_urls?: string[] | undefined;
|
|
12337
12556
|
solution_id?: string | undefined;
|
|
@@ -12625,6 +12844,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12625
12844
|
virtual_path?: string | undefined;
|
|
12626
12845
|
metadata?: Record<string, unknown> | undefined;
|
|
12627
12846
|
org_name?: string | undefined;
|
|
12847
|
+
org_slug?: string | undefined;
|
|
12628
12848
|
category_keys?: string[] | undefined;
|
|
12629
12849
|
events?: Record<string, unknown> | undefined;
|
|
12630
12850
|
image_url?: string | undefined;
|
|
@@ -12639,7 +12859,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12639
12859
|
url?: string | undefined;
|
|
12640
12860
|
width?: number | undefined;
|
|
12641
12861
|
} | undefined;
|
|
12642
|
-
org_slug?: string | undefined;
|
|
12643
12862
|
readme_url?: string | undefined;
|
|
12644
12863
|
screenshot_urls?: string[] | undefined;
|
|
12645
12864
|
solution_id?: string | undefined;
|
|
@@ -12687,6 +12906,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12687
12906
|
virtual_path?: string | undefined;
|
|
12688
12907
|
metadata?: Record<string, unknown> | undefined;
|
|
12689
12908
|
org_name?: string | undefined;
|
|
12909
|
+
org_slug?: string | undefined;
|
|
12690
12910
|
category_keys?: string[] | undefined;
|
|
12691
12911
|
events?: Record<string, unknown> | undefined;
|
|
12692
12912
|
image_url?: string | undefined;
|
|
@@ -12701,7 +12921,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12701
12921
|
url?: string | undefined;
|
|
12702
12922
|
width?: number | undefined;
|
|
12703
12923
|
} | undefined;
|
|
12704
|
-
org_slug?: string | undefined;
|
|
12705
12924
|
readme_url?: string | undefined;
|
|
12706
12925
|
screenshot_urls?: string[] | undefined;
|
|
12707
12926
|
solution_id?: string | undefined;
|
|
@@ -12792,6 +13011,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12792
13011
|
virtual_path?: string | undefined;
|
|
12793
13012
|
metadata?: Record<string, unknown> | undefined;
|
|
12794
13013
|
org_name?: string | undefined;
|
|
13014
|
+
org_slug?: string | undefined;
|
|
12795
13015
|
category_keys?: string[] | undefined;
|
|
12796
13016
|
events?: Record<string, unknown> | undefined;
|
|
12797
13017
|
image_url?: string | undefined;
|
|
@@ -12806,7 +13026,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12806
13026
|
url?: string | undefined;
|
|
12807
13027
|
width?: number | undefined;
|
|
12808
13028
|
} | undefined;
|
|
12809
|
-
org_slug?: string | undefined;
|
|
12810
13029
|
readme_url?: string | undefined;
|
|
12811
13030
|
screenshot_urls?: string[] | undefined;
|
|
12812
13031
|
solution_id?: string | undefined;
|
|
@@ -12866,6 +13085,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12866
13085
|
virtual_path?: string | undefined;
|
|
12867
13086
|
metadata?: Record<string, unknown> | undefined;
|
|
12868
13087
|
org_name?: string | undefined;
|
|
13088
|
+
org_slug?: string | undefined;
|
|
12869
13089
|
category_keys?: string[] | undefined;
|
|
12870
13090
|
events?: Record<string, unknown> | undefined;
|
|
12871
13091
|
image_url?: string | undefined;
|
|
@@ -12880,7 +13100,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12880
13100
|
url?: string | undefined;
|
|
12881
13101
|
width?: number | undefined;
|
|
12882
13102
|
} | undefined;
|
|
12883
|
-
org_slug?: string | undefined;
|
|
12884
13103
|
readme_url?: string | undefined;
|
|
12885
13104
|
screenshot_urls?: string[] | undefined;
|
|
12886
13105
|
solution_id?: string | undefined;
|
|
@@ -12930,6 +13149,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12930
13149
|
virtual_path?: string | undefined;
|
|
12931
13150
|
metadata?: Record<string, unknown> | undefined;
|
|
12932
13151
|
org_name?: string | undefined;
|
|
13152
|
+
org_slug?: string | undefined;
|
|
12933
13153
|
category_keys?: string[] | undefined;
|
|
12934
13154
|
events?: Record<string, unknown> | undefined;
|
|
12935
13155
|
image_url?: string | undefined;
|
|
@@ -12944,7 +13164,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
12944
13164
|
url?: string | undefined;
|
|
12945
13165
|
width?: number | undefined;
|
|
12946
13166
|
} | undefined;
|
|
12947
|
-
org_slug?: string | undefined;
|
|
12948
13167
|
readme_url?: string | undefined;
|
|
12949
13168
|
screenshot_urls?: string[] | undefined;
|
|
12950
13169
|
solution_id?: string | undefined;
|
|
@@ -13004,6 +13223,7 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
13004
13223
|
virtual_path?: string | undefined;
|
|
13005
13224
|
metadata?: Record<string, unknown> | undefined;
|
|
13006
13225
|
org_name?: string | undefined;
|
|
13226
|
+
org_slug?: string | undefined;
|
|
13007
13227
|
category_keys?: string[] | undefined;
|
|
13008
13228
|
events?: Record<string, unknown> | undefined;
|
|
13009
13229
|
image_url?: string | undefined;
|
|
@@ -13018,7 +13238,6 @@ export declare const agentSourceSolutionSchema: z.ZodObject<{
|
|
|
13018
13238
|
url?: string | undefined;
|
|
13019
13239
|
width?: number | undefined;
|
|
13020
13240
|
} | undefined;
|
|
13021
|
-
org_slug?: string | undefined;
|
|
13022
13241
|
readme_url?: string | undefined;
|
|
13023
13242
|
screenshot_urls?: string[] | undefined;
|
|
13024
13243
|
solution_id?: string | undefined;
|
|
@@ -13476,6 +13695,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13476
13695
|
virtual_path?: string | undefined;
|
|
13477
13696
|
metadata?: Record<string, unknown> | undefined;
|
|
13478
13697
|
org_name?: string | undefined;
|
|
13698
|
+
org_slug?: string | undefined;
|
|
13479
13699
|
category_keys?: string[] | undefined;
|
|
13480
13700
|
events?: Record<string, unknown> | undefined;
|
|
13481
13701
|
image_url?: string | undefined;
|
|
@@ -13490,7 +13710,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13490
13710
|
url?: string | undefined;
|
|
13491
13711
|
width?: number | undefined;
|
|
13492
13712
|
} | undefined;
|
|
13493
|
-
org_slug?: string | undefined;
|
|
13494
13713
|
readme_url?: string | undefined;
|
|
13495
13714
|
screenshot_urls?: string[] | undefined;
|
|
13496
13715
|
solution_id?: string | undefined;
|
|
@@ -13538,6 +13757,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13538
13757
|
virtual_path?: string | undefined;
|
|
13539
13758
|
metadata?: Record<string, unknown> | undefined;
|
|
13540
13759
|
org_name?: string | undefined;
|
|
13760
|
+
org_slug?: string | undefined;
|
|
13541
13761
|
category_keys?: string[] | undefined;
|
|
13542
13762
|
events?: Record<string, unknown> | undefined;
|
|
13543
13763
|
image_url?: string | undefined;
|
|
@@ -13552,7 +13772,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13552
13772
|
url?: string | undefined;
|
|
13553
13773
|
width?: number | undefined;
|
|
13554
13774
|
} | undefined;
|
|
13555
|
-
org_slug?: string | undefined;
|
|
13556
13775
|
readme_url?: string | undefined;
|
|
13557
13776
|
screenshot_urls?: string[] | undefined;
|
|
13558
13777
|
solution_id?: string | undefined;
|
|
@@ -13846,6 +14065,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13846
14065
|
virtual_path?: string | undefined;
|
|
13847
14066
|
metadata?: Record<string, unknown> | undefined;
|
|
13848
14067
|
org_name?: string | undefined;
|
|
14068
|
+
org_slug?: string | undefined;
|
|
13849
14069
|
category_keys?: string[] | undefined;
|
|
13850
14070
|
events?: Record<string, unknown> | undefined;
|
|
13851
14071
|
image_url?: string | undefined;
|
|
@@ -13860,7 +14080,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13860
14080
|
url?: string | undefined;
|
|
13861
14081
|
width?: number | undefined;
|
|
13862
14082
|
} | undefined;
|
|
13863
|
-
org_slug?: string | undefined;
|
|
13864
14083
|
readme_url?: string | undefined;
|
|
13865
14084
|
screenshot_urls?: string[] | undefined;
|
|
13866
14085
|
solution_id?: string | undefined;
|
|
@@ -13908,6 +14127,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13908
14127
|
virtual_path?: string | undefined;
|
|
13909
14128
|
metadata?: Record<string, unknown> | undefined;
|
|
13910
14129
|
org_name?: string | undefined;
|
|
14130
|
+
org_slug?: string | undefined;
|
|
13911
14131
|
category_keys?: string[] | undefined;
|
|
13912
14132
|
events?: Record<string, unknown> | undefined;
|
|
13913
14133
|
image_url?: string | undefined;
|
|
@@ -13922,7 +14142,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
13922
14142
|
url?: string | undefined;
|
|
13923
14143
|
width?: number | undefined;
|
|
13924
14144
|
} | undefined;
|
|
13925
|
-
org_slug?: string | undefined;
|
|
13926
14145
|
readme_url?: string | undefined;
|
|
13927
14146
|
screenshot_urls?: string[] | undefined;
|
|
13928
14147
|
solution_id?: string | undefined;
|
|
@@ -14013,6 +14232,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14013
14232
|
virtual_path?: string | undefined;
|
|
14014
14233
|
metadata?: Record<string, unknown> | undefined;
|
|
14015
14234
|
org_name?: string | undefined;
|
|
14235
|
+
org_slug?: string | undefined;
|
|
14016
14236
|
category_keys?: string[] | undefined;
|
|
14017
14237
|
events?: Record<string, unknown> | undefined;
|
|
14018
14238
|
image_url?: string | undefined;
|
|
@@ -14027,7 +14247,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14027
14247
|
url?: string | undefined;
|
|
14028
14248
|
width?: number | undefined;
|
|
14029
14249
|
} | undefined;
|
|
14030
|
-
org_slug?: string | undefined;
|
|
14031
14250
|
readme_url?: string | undefined;
|
|
14032
14251
|
screenshot_urls?: string[] | undefined;
|
|
14033
14252
|
solution_id?: string | undefined;
|
|
@@ -14087,6 +14306,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14087
14306
|
virtual_path?: string | undefined;
|
|
14088
14307
|
metadata?: Record<string, unknown> | undefined;
|
|
14089
14308
|
org_name?: string | undefined;
|
|
14309
|
+
org_slug?: string | undefined;
|
|
14090
14310
|
category_keys?: string[] | undefined;
|
|
14091
14311
|
events?: Record<string, unknown> | undefined;
|
|
14092
14312
|
image_url?: string | undefined;
|
|
@@ -14101,7 +14321,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14101
14321
|
url?: string | undefined;
|
|
14102
14322
|
width?: number | undefined;
|
|
14103
14323
|
} | undefined;
|
|
14104
|
-
org_slug?: string | undefined;
|
|
14105
14324
|
readme_url?: string | undefined;
|
|
14106
14325
|
screenshot_urls?: string[] | undefined;
|
|
14107
14326
|
solution_id?: string | undefined;
|
|
@@ -14151,6 +14370,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14151
14370
|
virtual_path?: string | undefined;
|
|
14152
14371
|
metadata?: Record<string, unknown> | undefined;
|
|
14153
14372
|
org_name?: string | undefined;
|
|
14373
|
+
org_slug?: string | undefined;
|
|
14154
14374
|
category_keys?: string[] | undefined;
|
|
14155
14375
|
events?: Record<string, unknown> | undefined;
|
|
14156
14376
|
image_url?: string | undefined;
|
|
@@ -14165,7 +14385,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14165
14385
|
url?: string | undefined;
|
|
14166
14386
|
width?: number | undefined;
|
|
14167
14387
|
} | undefined;
|
|
14168
|
-
org_slug?: string | undefined;
|
|
14169
14388
|
readme_url?: string | undefined;
|
|
14170
14389
|
screenshot_urls?: string[] | undefined;
|
|
14171
14390
|
solution_id?: string | undefined;
|
|
@@ -14225,6 +14444,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14225
14444
|
virtual_path?: string | undefined;
|
|
14226
14445
|
metadata?: Record<string, unknown> | undefined;
|
|
14227
14446
|
org_name?: string | undefined;
|
|
14447
|
+
org_slug?: string | undefined;
|
|
14228
14448
|
category_keys?: string[] | undefined;
|
|
14229
14449
|
events?: Record<string, unknown> | undefined;
|
|
14230
14450
|
image_url?: string | undefined;
|
|
@@ -14239,7 +14459,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14239
14459
|
url?: string | undefined;
|
|
14240
14460
|
width?: number | undefined;
|
|
14241
14461
|
} | undefined;
|
|
14242
|
-
org_slug?: string | undefined;
|
|
14243
14462
|
readme_url?: string | undefined;
|
|
14244
14463
|
screenshot_urls?: string[] | undefined;
|
|
14245
14464
|
solution_id?: string | undefined;
|
|
@@ -14334,6 +14553,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14334
14553
|
virtual_path?: string | undefined;
|
|
14335
14554
|
metadata?: Record<string, unknown> | undefined;
|
|
14336
14555
|
org_name?: string | undefined;
|
|
14556
|
+
org_slug?: string | undefined;
|
|
14337
14557
|
category_keys?: string[] | undefined;
|
|
14338
14558
|
events?: Record<string, unknown> | undefined;
|
|
14339
14559
|
image_url?: string | undefined;
|
|
@@ -14348,7 +14568,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14348
14568
|
url?: string | undefined;
|
|
14349
14569
|
width?: number | undefined;
|
|
14350
14570
|
} | undefined;
|
|
14351
|
-
org_slug?: string | undefined;
|
|
14352
14571
|
readme_url?: string | undefined;
|
|
14353
14572
|
screenshot_urls?: string[] | undefined;
|
|
14354
14573
|
solution_id?: string | undefined;
|
|
@@ -14408,6 +14627,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14408
14627
|
virtual_path?: string | undefined;
|
|
14409
14628
|
metadata?: Record<string, unknown> | undefined;
|
|
14410
14629
|
org_name?: string | undefined;
|
|
14630
|
+
org_slug?: string | undefined;
|
|
14411
14631
|
category_keys?: string[] | undefined;
|
|
14412
14632
|
events?: Record<string, unknown> | undefined;
|
|
14413
14633
|
image_url?: string | undefined;
|
|
@@ -14422,7 +14642,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14422
14642
|
url?: string | undefined;
|
|
14423
14643
|
width?: number | undefined;
|
|
14424
14644
|
} | undefined;
|
|
14425
|
-
org_slug?: string | undefined;
|
|
14426
14645
|
readme_url?: string | undefined;
|
|
14427
14646
|
screenshot_urls?: string[] | undefined;
|
|
14428
14647
|
solution_id?: string | undefined;
|
|
@@ -14510,6 +14729,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14510
14729
|
virtual_path?: string | undefined;
|
|
14511
14730
|
metadata?: Record<string, unknown> | undefined;
|
|
14512
14731
|
org_name?: string | undefined;
|
|
14732
|
+
org_slug?: string | undefined;
|
|
14513
14733
|
category_keys?: string[] | undefined;
|
|
14514
14734
|
events?: Record<string, unknown> | undefined;
|
|
14515
14735
|
image_url?: string | undefined;
|
|
@@ -14524,7 +14744,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14524
14744
|
url?: string | undefined;
|
|
14525
14745
|
width?: number | undefined;
|
|
14526
14746
|
} | undefined;
|
|
14527
|
-
org_slug?: string | undefined;
|
|
14528
14747
|
readme_url?: string | undefined;
|
|
14529
14748
|
screenshot_urls?: string[] | undefined;
|
|
14530
14749
|
solution_id?: string | undefined;
|
|
@@ -14584,6 +14803,7 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14584
14803
|
virtual_path?: string | undefined;
|
|
14585
14804
|
metadata?: Record<string, unknown> | undefined;
|
|
14586
14805
|
org_name?: string | undefined;
|
|
14806
|
+
org_slug?: string | undefined;
|
|
14587
14807
|
category_keys?: string[] | undefined;
|
|
14588
14808
|
events?: Record<string, unknown> | undefined;
|
|
14589
14809
|
image_url?: string | undefined;
|
|
@@ -14598,7 +14818,6 @@ export declare const agentSchema: z.ZodObject<{
|
|
|
14598
14818
|
url?: string | undefined;
|
|
14599
14819
|
width?: number | undefined;
|
|
14600
14820
|
} | undefined;
|
|
14601
|
-
org_slug?: string | undefined;
|
|
14602
14821
|
readme_url?: string | undefined;
|
|
14603
14822
|
screenshot_urls?: string[] | undefined;
|
|
14604
14823
|
solution_id?: string | undefined;
|
|
@@ -15792,6 +16011,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
15792
16011
|
virtual_path?: string | undefined;
|
|
15793
16012
|
metadata?: Record<string, unknown> | undefined;
|
|
15794
16013
|
org_name?: string | undefined;
|
|
16014
|
+
org_slug?: string | undefined;
|
|
15795
16015
|
category_keys?: string[] | undefined;
|
|
15796
16016
|
events?: Record<string, unknown> | undefined;
|
|
15797
16017
|
image_url?: string | undefined;
|
|
@@ -15806,7 +16026,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
15806
16026
|
url?: string | undefined;
|
|
15807
16027
|
width?: number | undefined;
|
|
15808
16028
|
} | undefined;
|
|
15809
|
-
org_slug?: string | undefined;
|
|
15810
16029
|
readme_url?: string | undefined;
|
|
15811
16030
|
screenshot_urls?: string[] | undefined;
|
|
15812
16031
|
solution_id?: string | undefined;
|
|
@@ -15854,6 +16073,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
15854
16073
|
virtual_path?: string | undefined;
|
|
15855
16074
|
metadata?: Record<string, unknown> | undefined;
|
|
15856
16075
|
org_name?: string | undefined;
|
|
16076
|
+
org_slug?: string | undefined;
|
|
15857
16077
|
category_keys?: string[] | undefined;
|
|
15858
16078
|
events?: Record<string, unknown> | undefined;
|
|
15859
16079
|
image_url?: string | undefined;
|
|
@@ -15868,7 +16088,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
15868
16088
|
url?: string | undefined;
|
|
15869
16089
|
width?: number | undefined;
|
|
15870
16090
|
} | undefined;
|
|
15871
|
-
org_slug?: string | undefined;
|
|
15872
16091
|
readme_url?: string | undefined;
|
|
15873
16092
|
screenshot_urls?: string[] | undefined;
|
|
15874
16093
|
solution_id?: string | undefined;
|
|
@@ -16162,6 +16381,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16162
16381
|
virtual_path?: string | undefined;
|
|
16163
16382
|
metadata?: Record<string, unknown> | undefined;
|
|
16164
16383
|
org_name?: string | undefined;
|
|
16384
|
+
org_slug?: string | undefined;
|
|
16165
16385
|
category_keys?: string[] | undefined;
|
|
16166
16386
|
events?: Record<string, unknown> | undefined;
|
|
16167
16387
|
image_url?: string | undefined;
|
|
@@ -16176,7 +16396,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16176
16396
|
url?: string | undefined;
|
|
16177
16397
|
width?: number | undefined;
|
|
16178
16398
|
} | undefined;
|
|
16179
|
-
org_slug?: string | undefined;
|
|
16180
16399
|
readme_url?: string | undefined;
|
|
16181
16400
|
screenshot_urls?: string[] | undefined;
|
|
16182
16401
|
solution_id?: string | undefined;
|
|
@@ -16224,6 +16443,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16224
16443
|
virtual_path?: string | undefined;
|
|
16225
16444
|
metadata?: Record<string, unknown> | undefined;
|
|
16226
16445
|
org_name?: string | undefined;
|
|
16446
|
+
org_slug?: string | undefined;
|
|
16227
16447
|
category_keys?: string[] | undefined;
|
|
16228
16448
|
events?: Record<string, unknown> | undefined;
|
|
16229
16449
|
image_url?: string | undefined;
|
|
@@ -16238,7 +16458,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16238
16458
|
url?: string | undefined;
|
|
16239
16459
|
width?: number | undefined;
|
|
16240
16460
|
} | undefined;
|
|
16241
|
-
org_slug?: string | undefined;
|
|
16242
16461
|
readme_url?: string | undefined;
|
|
16243
16462
|
screenshot_urls?: string[] | undefined;
|
|
16244
16463
|
solution_id?: string | undefined;
|
|
@@ -16329,6 +16548,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16329
16548
|
virtual_path?: string | undefined;
|
|
16330
16549
|
metadata?: Record<string, unknown> | undefined;
|
|
16331
16550
|
org_name?: string | undefined;
|
|
16551
|
+
org_slug?: string | undefined;
|
|
16332
16552
|
category_keys?: string[] | undefined;
|
|
16333
16553
|
events?: Record<string, unknown> | undefined;
|
|
16334
16554
|
image_url?: string | undefined;
|
|
@@ -16343,7 +16563,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16343
16563
|
url?: string | undefined;
|
|
16344
16564
|
width?: number | undefined;
|
|
16345
16565
|
} | undefined;
|
|
16346
|
-
org_slug?: string | undefined;
|
|
16347
16566
|
readme_url?: string | undefined;
|
|
16348
16567
|
screenshot_urls?: string[] | undefined;
|
|
16349
16568
|
solution_id?: string | undefined;
|
|
@@ -16403,6 +16622,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16403
16622
|
virtual_path?: string | undefined;
|
|
16404
16623
|
metadata?: Record<string, unknown> | undefined;
|
|
16405
16624
|
org_name?: string | undefined;
|
|
16625
|
+
org_slug?: string | undefined;
|
|
16406
16626
|
category_keys?: string[] | undefined;
|
|
16407
16627
|
events?: Record<string, unknown> | undefined;
|
|
16408
16628
|
image_url?: string | undefined;
|
|
@@ -16417,7 +16637,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16417
16637
|
url?: string | undefined;
|
|
16418
16638
|
width?: number | undefined;
|
|
16419
16639
|
} | undefined;
|
|
16420
|
-
org_slug?: string | undefined;
|
|
16421
16640
|
readme_url?: string | undefined;
|
|
16422
16641
|
screenshot_urls?: string[] | undefined;
|
|
16423
16642
|
solution_id?: string | undefined;
|
|
@@ -16467,6 +16686,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16467
16686
|
virtual_path?: string | undefined;
|
|
16468
16687
|
metadata?: Record<string, unknown> | undefined;
|
|
16469
16688
|
org_name?: string | undefined;
|
|
16689
|
+
org_slug?: string | undefined;
|
|
16470
16690
|
category_keys?: string[] | undefined;
|
|
16471
16691
|
events?: Record<string, unknown> | undefined;
|
|
16472
16692
|
image_url?: string | undefined;
|
|
@@ -16481,7 +16701,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16481
16701
|
url?: string | undefined;
|
|
16482
16702
|
width?: number | undefined;
|
|
16483
16703
|
} | undefined;
|
|
16484
|
-
org_slug?: string | undefined;
|
|
16485
16704
|
readme_url?: string | undefined;
|
|
16486
16705
|
screenshot_urls?: string[] | undefined;
|
|
16487
16706
|
solution_id?: string | undefined;
|
|
@@ -16541,6 +16760,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16541
16760
|
virtual_path?: string | undefined;
|
|
16542
16761
|
metadata?: Record<string, unknown> | undefined;
|
|
16543
16762
|
org_name?: string | undefined;
|
|
16763
|
+
org_slug?: string | undefined;
|
|
16544
16764
|
category_keys?: string[] | undefined;
|
|
16545
16765
|
events?: Record<string, unknown> | undefined;
|
|
16546
16766
|
image_url?: string | undefined;
|
|
@@ -16555,7 +16775,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16555
16775
|
url?: string | undefined;
|
|
16556
16776
|
width?: number | undefined;
|
|
16557
16777
|
} | undefined;
|
|
16558
|
-
org_slug?: string | undefined;
|
|
16559
16778
|
readme_url?: string | undefined;
|
|
16560
16779
|
screenshot_urls?: string[] | undefined;
|
|
16561
16780
|
solution_id?: string | undefined;
|
|
@@ -16650,6 +16869,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16650
16869
|
virtual_path?: string | undefined;
|
|
16651
16870
|
metadata?: Record<string, unknown> | undefined;
|
|
16652
16871
|
org_name?: string | undefined;
|
|
16872
|
+
org_slug?: string | undefined;
|
|
16653
16873
|
category_keys?: string[] | undefined;
|
|
16654
16874
|
events?: Record<string, unknown> | undefined;
|
|
16655
16875
|
image_url?: string | undefined;
|
|
@@ -16664,7 +16884,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16664
16884
|
url?: string | undefined;
|
|
16665
16885
|
width?: number | undefined;
|
|
16666
16886
|
} | undefined;
|
|
16667
|
-
org_slug?: string | undefined;
|
|
16668
16887
|
readme_url?: string | undefined;
|
|
16669
16888
|
screenshot_urls?: string[] | undefined;
|
|
16670
16889
|
solution_id?: string | undefined;
|
|
@@ -16724,6 +16943,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16724
16943
|
virtual_path?: string | undefined;
|
|
16725
16944
|
metadata?: Record<string, unknown> | undefined;
|
|
16726
16945
|
org_name?: string | undefined;
|
|
16946
|
+
org_slug?: string | undefined;
|
|
16727
16947
|
category_keys?: string[] | undefined;
|
|
16728
16948
|
events?: Record<string, unknown> | undefined;
|
|
16729
16949
|
image_url?: string | undefined;
|
|
@@ -16738,7 +16958,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16738
16958
|
url?: string | undefined;
|
|
16739
16959
|
width?: number | undefined;
|
|
16740
16960
|
} | undefined;
|
|
16741
|
-
org_slug?: string | undefined;
|
|
16742
16961
|
readme_url?: string | undefined;
|
|
16743
16962
|
screenshot_urls?: string[] | undefined;
|
|
16744
16963
|
solution_id?: string | undefined;
|
|
@@ -16826,6 +17045,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16826
17045
|
virtual_path?: string | undefined;
|
|
16827
17046
|
metadata?: Record<string, unknown> | undefined;
|
|
16828
17047
|
org_name?: string | undefined;
|
|
17048
|
+
org_slug?: string | undefined;
|
|
16829
17049
|
category_keys?: string[] | undefined;
|
|
16830
17050
|
events?: Record<string, unknown> | undefined;
|
|
16831
17051
|
image_url?: string | undefined;
|
|
@@ -16840,7 +17060,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16840
17060
|
url?: string | undefined;
|
|
16841
17061
|
width?: number | undefined;
|
|
16842
17062
|
} | undefined;
|
|
16843
|
-
org_slug?: string | undefined;
|
|
16844
17063
|
readme_url?: string | undefined;
|
|
16845
17064
|
screenshot_urls?: string[] | undefined;
|
|
16846
17065
|
solution_id?: string | undefined;
|
|
@@ -16900,6 +17119,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16900
17119
|
virtual_path?: string | undefined;
|
|
16901
17120
|
metadata?: Record<string, unknown> | undefined;
|
|
16902
17121
|
org_name?: string | undefined;
|
|
17122
|
+
org_slug?: string | undefined;
|
|
16903
17123
|
category_keys?: string[] | undefined;
|
|
16904
17124
|
events?: Record<string, unknown> | undefined;
|
|
16905
17125
|
image_url?: string | undefined;
|
|
@@ -16914,7 +17134,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
16914
17134
|
url?: string | undefined;
|
|
16915
17135
|
width?: number | undefined;
|
|
16916
17136
|
} | undefined;
|
|
16917
|
-
org_slug?: string | undefined;
|
|
16918
17137
|
readme_url?: string | undefined;
|
|
16919
17138
|
screenshot_urls?: string[] | undefined;
|
|
16920
17139
|
solution_id?: string | undefined;
|
|
@@ -17093,6 +17312,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17093
17312
|
virtual_path?: string | undefined;
|
|
17094
17313
|
metadata?: Record<string, unknown> | undefined;
|
|
17095
17314
|
org_name?: string | undefined;
|
|
17315
|
+
org_slug?: string | undefined;
|
|
17096
17316
|
category_keys?: string[] | undefined;
|
|
17097
17317
|
events?: Record<string, unknown> | undefined;
|
|
17098
17318
|
image_url?: string | undefined;
|
|
@@ -17107,7 +17327,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17107
17327
|
url?: string | undefined;
|
|
17108
17328
|
width?: number | undefined;
|
|
17109
17329
|
} | undefined;
|
|
17110
|
-
org_slug?: string | undefined;
|
|
17111
17330
|
readme_url?: string | undefined;
|
|
17112
17331
|
screenshot_urls?: string[] | undefined;
|
|
17113
17332
|
solution_id?: string | undefined;
|
|
@@ -17167,6 +17386,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17167
17386
|
virtual_path?: string | undefined;
|
|
17168
17387
|
metadata?: Record<string, unknown> | undefined;
|
|
17169
17388
|
org_name?: string | undefined;
|
|
17389
|
+
org_slug?: string | undefined;
|
|
17170
17390
|
category_keys?: string[] | undefined;
|
|
17171
17391
|
events?: Record<string, unknown> | undefined;
|
|
17172
17392
|
image_url?: string | undefined;
|
|
@@ -17181,7 +17401,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17181
17401
|
url?: string | undefined;
|
|
17182
17402
|
width?: number | undefined;
|
|
17183
17403
|
} | undefined;
|
|
17184
|
-
org_slug?: string | undefined;
|
|
17185
17404
|
readme_url?: string | undefined;
|
|
17186
17405
|
screenshot_urls?: string[] | undefined;
|
|
17187
17406
|
solution_id?: string | undefined;
|
|
@@ -17298,6 +17517,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17298
17517
|
virtual_path?: string | undefined;
|
|
17299
17518
|
metadata?: Record<string, unknown> | undefined;
|
|
17300
17519
|
org_name?: string | undefined;
|
|
17520
|
+
org_slug?: string | undefined;
|
|
17301
17521
|
category_keys?: string[] | undefined;
|
|
17302
17522
|
events?: Record<string, unknown> | undefined;
|
|
17303
17523
|
image_url?: string | undefined;
|
|
@@ -17312,7 +17532,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17312
17532
|
url?: string | undefined;
|
|
17313
17533
|
width?: number | undefined;
|
|
17314
17534
|
} | undefined;
|
|
17315
|
-
org_slug?: string | undefined;
|
|
17316
17535
|
readme_url?: string | undefined;
|
|
17317
17536
|
screenshot_urls?: string[] | undefined;
|
|
17318
17537
|
solution_id?: string | undefined;
|
|
@@ -17372,6 +17591,7 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17372
17591
|
virtual_path?: string | undefined;
|
|
17373
17592
|
metadata?: Record<string, unknown> | undefined;
|
|
17374
17593
|
org_name?: string | undefined;
|
|
17594
|
+
org_slug?: string | undefined;
|
|
17375
17595
|
category_keys?: string[] | undefined;
|
|
17376
17596
|
events?: Record<string, unknown> | undefined;
|
|
17377
17597
|
image_url?: string | undefined;
|
|
@@ -17386,7 +17606,6 @@ export declare const agentHealthSchema: z.ZodObject<{
|
|
|
17386
17606
|
url?: string | undefined;
|
|
17387
17607
|
width?: number | undefined;
|
|
17388
17608
|
} | undefined;
|
|
17389
|
-
org_slug?: string | undefined;
|
|
17390
17609
|
readme_url?: string | undefined;
|
|
17391
17610
|
screenshot_urls?: string[] | undefined;
|
|
17392
17611
|
solution_id?: string | undefined;
|
|
@@ -17846,6 +18065,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
17846
18065
|
virtual_path?: string | undefined;
|
|
17847
18066
|
metadata?: Record<string, unknown> | undefined;
|
|
17848
18067
|
org_name?: string | undefined;
|
|
18068
|
+
org_slug?: string | undefined;
|
|
17849
18069
|
category_keys?: string[] | undefined;
|
|
17850
18070
|
events?: Record<string, unknown> | undefined;
|
|
17851
18071
|
image_url?: string | undefined;
|
|
@@ -17860,7 +18080,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
17860
18080
|
url?: string | undefined;
|
|
17861
18081
|
width?: number | undefined;
|
|
17862
18082
|
} | undefined;
|
|
17863
|
-
org_slug?: string | undefined;
|
|
17864
18083
|
readme_url?: string | undefined;
|
|
17865
18084
|
screenshot_urls?: string[] | undefined;
|
|
17866
18085
|
solution_id?: string | undefined;
|
|
@@ -17908,6 +18127,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
17908
18127
|
virtual_path?: string | undefined;
|
|
17909
18128
|
metadata?: Record<string, unknown> | undefined;
|
|
17910
18129
|
org_name?: string | undefined;
|
|
18130
|
+
org_slug?: string | undefined;
|
|
17911
18131
|
category_keys?: string[] | undefined;
|
|
17912
18132
|
events?: Record<string, unknown> | undefined;
|
|
17913
18133
|
image_url?: string | undefined;
|
|
@@ -17922,7 +18142,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
17922
18142
|
url?: string | undefined;
|
|
17923
18143
|
width?: number | undefined;
|
|
17924
18144
|
} | undefined;
|
|
17925
|
-
org_slug?: string | undefined;
|
|
17926
18145
|
readme_url?: string | undefined;
|
|
17927
18146
|
screenshot_urls?: string[] | undefined;
|
|
17928
18147
|
solution_id?: string | undefined;
|
|
@@ -18216,6 +18435,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18216
18435
|
virtual_path?: string | undefined;
|
|
18217
18436
|
metadata?: Record<string, unknown> | undefined;
|
|
18218
18437
|
org_name?: string | undefined;
|
|
18438
|
+
org_slug?: string | undefined;
|
|
18219
18439
|
category_keys?: string[] | undefined;
|
|
18220
18440
|
events?: Record<string, unknown> | undefined;
|
|
18221
18441
|
image_url?: string | undefined;
|
|
@@ -18230,7 +18450,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18230
18450
|
url?: string | undefined;
|
|
18231
18451
|
width?: number | undefined;
|
|
18232
18452
|
} | undefined;
|
|
18233
|
-
org_slug?: string | undefined;
|
|
18234
18453
|
readme_url?: string | undefined;
|
|
18235
18454
|
screenshot_urls?: string[] | undefined;
|
|
18236
18455
|
solution_id?: string | undefined;
|
|
@@ -18278,6 +18497,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18278
18497
|
virtual_path?: string | undefined;
|
|
18279
18498
|
metadata?: Record<string, unknown> | undefined;
|
|
18280
18499
|
org_name?: string | undefined;
|
|
18500
|
+
org_slug?: string | undefined;
|
|
18281
18501
|
category_keys?: string[] | undefined;
|
|
18282
18502
|
events?: Record<string, unknown> | undefined;
|
|
18283
18503
|
image_url?: string | undefined;
|
|
@@ -18292,7 +18512,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18292
18512
|
url?: string | undefined;
|
|
18293
18513
|
width?: number | undefined;
|
|
18294
18514
|
} | undefined;
|
|
18295
|
-
org_slug?: string | undefined;
|
|
18296
18515
|
readme_url?: string | undefined;
|
|
18297
18516
|
screenshot_urls?: string[] | undefined;
|
|
18298
18517
|
solution_id?: string | undefined;
|
|
@@ -18383,6 +18602,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18383
18602
|
virtual_path?: string | undefined;
|
|
18384
18603
|
metadata?: Record<string, unknown> | undefined;
|
|
18385
18604
|
org_name?: string | undefined;
|
|
18605
|
+
org_slug?: string | undefined;
|
|
18386
18606
|
category_keys?: string[] | undefined;
|
|
18387
18607
|
events?: Record<string, unknown> | undefined;
|
|
18388
18608
|
image_url?: string | undefined;
|
|
@@ -18397,7 +18617,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18397
18617
|
url?: string | undefined;
|
|
18398
18618
|
width?: number | undefined;
|
|
18399
18619
|
} | undefined;
|
|
18400
|
-
org_slug?: string | undefined;
|
|
18401
18620
|
readme_url?: string | undefined;
|
|
18402
18621
|
screenshot_urls?: string[] | undefined;
|
|
18403
18622
|
solution_id?: string | undefined;
|
|
@@ -18457,6 +18676,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18457
18676
|
virtual_path?: string | undefined;
|
|
18458
18677
|
metadata?: Record<string, unknown> | undefined;
|
|
18459
18678
|
org_name?: string | undefined;
|
|
18679
|
+
org_slug?: string | undefined;
|
|
18460
18680
|
category_keys?: string[] | undefined;
|
|
18461
18681
|
events?: Record<string, unknown> | undefined;
|
|
18462
18682
|
image_url?: string | undefined;
|
|
@@ -18471,7 +18691,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18471
18691
|
url?: string | undefined;
|
|
18472
18692
|
width?: number | undefined;
|
|
18473
18693
|
} | undefined;
|
|
18474
|
-
org_slug?: string | undefined;
|
|
18475
18694
|
readme_url?: string | undefined;
|
|
18476
18695
|
screenshot_urls?: string[] | undefined;
|
|
18477
18696
|
solution_id?: string | undefined;
|
|
@@ -18521,6 +18740,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18521
18740
|
virtual_path?: string | undefined;
|
|
18522
18741
|
metadata?: Record<string, unknown> | undefined;
|
|
18523
18742
|
org_name?: string | undefined;
|
|
18743
|
+
org_slug?: string | undefined;
|
|
18524
18744
|
category_keys?: string[] | undefined;
|
|
18525
18745
|
events?: Record<string, unknown> | undefined;
|
|
18526
18746
|
image_url?: string | undefined;
|
|
@@ -18535,7 +18755,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18535
18755
|
url?: string | undefined;
|
|
18536
18756
|
width?: number | undefined;
|
|
18537
18757
|
} | undefined;
|
|
18538
|
-
org_slug?: string | undefined;
|
|
18539
18758
|
readme_url?: string | undefined;
|
|
18540
18759
|
screenshot_urls?: string[] | undefined;
|
|
18541
18760
|
solution_id?: string | undefined;
|
|
@@ -18595,6 +18814,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18595
18814
|
virtual_path?: string | undefined;
|
|
18596
18815
|
metadata?: Record<string, unknown> | undefined;
|
|
18597
18816
|
org_name?: string | undefined;
|
|
18817
|
+
org_slug?: string | undefined;
|
|
18598
18818
|
category_keys?: string[] | undefined;
|
|
18599
18819
|
events?: Record<string, unknown> | undefined;
|
|
18600
18820
|
image_url?: string | undefined;
|
|
@@ -18609,7 +18829,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18609
18829
|
url?: string | undefined;
|
|
18610
18830
|
width?: number | undefined;
|
|
18611
18831
|
} | undefined;
|
|
18612
|
-
org_slug?: string | undefined;
|
|
18613
18832
|
readme_url?: string | undefined;
|
|
18614
18833
|
screenshot_urls?: string[] | undefined;
|
|
18615
18834
|
solution_id?: string | undefined;
|
|
@@ -18704,6 +18923,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18704
18923
|
virtual_path?: string | undefined;
|
|
18705
18924
|
metadata?: Record<string, unknown> | undefined;
|
|
18706
18925
|
org_name?: string | undefined;
|
|
18926
|
+
org_slug?: string | undefined;
|
|
18707
18927
|
category_keys?: string[] | undefined;
|
|
18708
18928
|
events?: Record<string, unknown> | undefined;
|
|
18709
18929
|
image_url?: string | undefined;
|
|
@@ -18718,7 +18938,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18718
18938
|
url?: string | undefined;
|
|
18719
18939
|
width?: number | undefined;
|
|
18720
18940
|
} | undefined;
|
|
18721
|
-
org_slug?: string | undefined;
|
|
18722
18941
|
readme_url?: string | undefined;
|
|
18723
18942
|
screenshot_urls?: string[] | undefined;
|
|
18724
18943
|
solution_id?: string | undefined;
|
|
@@ -18778,6 +18997,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18778
18997
|
virtual_path?: string | undefined;
|
|
18779
18998
|
metadata?: Record<string, unknown> | undefined;
|
|
18780
18999
|
org_name?: string | undefined;
|
|
19000
|
+
org_slug?: string | undefined;
|
|
18781
19001
|
category_keys?: string[] | undefined;
|
|
18782
19002
|
events?: Record<string, unknown> | undefined;
|
|
18783
19003
|
image_url?: string | undefined;
|
|
@@ -18792,7 +19012,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18792
19012
|
url?: string | undefined;
|
|
18793
19013
|
width?: number | undefined;
|
|
18794
19014
|
} | undefined;
|
|
18795
|
-
org_slug?: string | undefined;
|
|
18796
19015
|
readme_url?: string | undefined;
|
|
18797
19016
|
screenshot_urls?: string[] | undefined;
|
|
18798
19017
|
solution_id?: string | undefined;
|
|
@@ -18880,6 +19099,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18880
19099
|
virtual_path?: string | undefined;
|
|
18881
19100
|
metadata?: Record<string, unknown> | undefined;
|
|
18882
19101
|
org_name?: string | undefined;
|
|
19102
|
+
org_slug?: string | undefined;
|
|
18883
19103
|
category_keys?: string[] | undefined;
|
|
18884
19104
|
events?: Record<string, unknown> | undefined;
|
|
18885
19105
|
image_url?: string | undefined;
|
|
@@ -18894,7 +19114,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18894
19114
|
url?: string | undefined;
|
|
18895
19115
|
width?: number | undefined;
|
|
18896
19116
|
} | undefined;
|
|
18897
|
-
org_slug?: string | undefined;
|
|
18898
19117
|
readme_url?: string | undefined;
|
|
18899
19118
|
screenshot_urls?: string[] | undefined;
|
|
18900
19119
|
solution_id?: string | undefined;
|
|
@@ -18954,6 +19173,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18954
19173
|
virtual_path?: string | undefined;
|
|
18955
19174
|
metadata?: Record<string, unknown> | undefined;
|
|
18956
19175
|
org_name?: string | undefined;
|
|
19176
|
+
org_slug?: string | undefined;
|
|
18957
19177
|
category_keys?: string[] | undefined;
|
|
18958
19178
|
events?: Record<string, unknown> | undefined;
|
|
18959
19179
|
image_url?: string | undefined;
|
|
@@ -18968,7 +19188,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
18968
19188
|
url?: string | undefined;
|
|
18969
19189
|
width?: number | undefined;
|
|
18970
19190
|
} | undefined;
|
|
18971
|
-
org_slug?: string | undefined;
|
|
18972
19191
|
readme_url?: string | undefined;
|
|
18973
19192
|
screenshot_urls?: string[] | undefined;
|
|
18974
19193
|
solution_id?: string | undefined;
|
|
@@ -19070,6 +19289,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19070
19289
|
virtual_path?: string | undefined;
|
|
19071
19290
|
metadata?: Record<string, unknown> | undefined;
|
|
19072
19291
|
org_name?: string | undefined;
|
|
19292
|
+
org_slug?: string | undefined;
|
|
19073
19293
|
category_keys?: string[] | undefined;
|
|
19074
19294
|
events?: Record<string, unknown> | undefined;
|
|
19075
19295
|
image_url?: string | undefined;
|
|
@@ -19084,7 +19304,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19084
19304
|
url?: string | undefined;
|
|
19085
19305
|
width?: number | undefined;
|
|
19086
19306
|
} | undefined;
|
|
19087
|
-
org_slug?: string | undefined;
|
|
19088
19307
|
readme_url?: string | undefined;
|
|
19089
19308
|
screenshot_urls?: string[] | undefined;
|
|
19090
19309
|
solution_id?: string | undefined;
|
|
@@ -19144,6 +19363,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19144
19363
|
virtual_path?: string | undefined;
|
|
19145
19364
|
metadata?: Record<string, unknown> | undefined;
|
|
19146
19365
|
org_name?: string | undefined;
|
|
19366
|
+
org_slug?: string | undefined;
|
|
19147
19367
|
category_keys?: string[] | undefined;
|
|
19148
19368
|
events?: Record<string, unknown> | undefined;
|
|
19149
19369
|
image_url?: string | undefined;
|
|
@@ -19158,7 +19378,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19158
19378
|
url?: string | undefined;
|
|
19159
19379
|
width?: number | undefined;
|
|
19160
19380
|
} | undefined;
|
|
19161
|
-
org_slug?: string | undefined;
|
|
19162
19381
|
readme_url?: string | undefined;
|
|
19163
19382
|
screenshot_urls?: string[] | undefined;
|
|
19164
19383
|
solution_id?: string | undefined;
|
|
@@ -19254,6 +19473,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19254
19473
|
virtual_path?: string | undefined;
|
|
19255
19474
|
metadata?: Record<string, unknown> | undefined;
|
|
19256
19475
|
org_name?: string | undefined;
|
|
19476
|
+
org_slug?: string | undefined;
|
|
19257
19477
|
category_keys?: string[] | undefined;
|
|
19258
19478
|
events?: Record<string, unknown> | undefined;
|
|
19259
19479
|
image_url?: string | undefined;
|
|
@@ -19268,7 +19488,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19268
19488
|
url?: string | undefined;
|
|
19269
19489
|
width?: number | undefined;
|
|
19270
19490
|
} | undefined;
|
|
19271
|
-
org_slug?: string | undefined;
|
|
19272
19491
|
readme_url?: string | undefined;
|
|
19273
19492
|
screenshot_urls?: string[] | undefined;
|
|
19274
19493
|
solution_id?: string | undefined;
|
|
@@ -19328,6 +19547,7 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19328
19547
|
virtual_path?: string | undefined;
|
|
19329
19548
|
metadata?: Record<string, unknown> | undefined;
|
|
19330
19549
|
org_name?: string | undefined;
|
|
19550
|
+
org_slug?: string | undefined;
|
|
19331
19551
|
category_keys?: string[] | undefined;
|
|
19332
19552
|
events?: Record<string, unknown> | undefined;
|
|
19333
19553
|
image_url?: string | undefined;
|
|
@@ -19342,7 +19562,6 @@ export declare const agentListResponseSchema: z.ZodObject<{
|
|
|
19342
19562
|
url?: string | undefined;
|
|
19343
19563
|
width?: number | undefined;
|
|
19344
19564
|
} | undefined;
|
|
19345
|
-
org_slug?: string | undefined;
|
|
19346
19565
|
readme_url?: string | undefined;
|
|
19347
19566
|
screenshot_urls?: string[] | undefined;
|
|
19348
19567
|
solution_id?: string | undefined;
|
|
@@ -20112,7 +20331,7 @@ export declare const agentRoutineRunDeliverySchema: z.ZodObject<{
|
|
|
20112
20331
|
type: z.ZodEnum<["none", "thread", "reply"]>;
|
|
20113
20332
|
}, "strip", z.ZodTypeAny, {
|
|
20114
20333
|
type: "thread" | "none" | "reply";
|
|
20115
|
-
status: "pending" | "failed" | "
|
|
20334
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20116
20335
|
message?: string | undefined;
|
|
20117
20336
|
thread?: string | undefined;
|
|
20118
20337
|
delivered_at?: string | undefined;
|
|
@@ -20120,7 +20339,7 @@ export declare const agentRoutineRunDeliverySchema: z.ZodObject<{
|
|
|
20120
20339
|
last_error?: string | undefined;
|
|
20121
20340
|
}, {
|
|
20122
20341
|
type: "thread" | "none" | "reply";
|
|
20123
|
-
status: "pending" | "failed" | "
|
|
20342
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20124
20343
|
message?: string | undefined;
|
|
20125
20344
|
thread?: string | undefined;
|
|
20126
20345
|
delivered_at?: string | undefined;
|
|
@@ -20270,7 +20489,7 @@ export declare const agentRoutineRunSchema: z.ZodObject<{
|
|
|
20270
20489
|
type: z.ZodEnum<["none", "thread", "reply"]>;
|
|
20271
20490
|
}, "strip", z.ZodTypeAny, {
|
|
20272
20491
|
type: "thread" | "none" | "reply";
|
|
20273
|
-
status: "pending" | "failed" | "
|
|
20492
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20274
20493
|
message?: string | undefined;
|
|
20275
20494
|
thread?: string | undefined;
|
|
20276
20495
|
delivered_at?: string | undefined;
|
|
@@ -20278,7 +20497,7 @@ export declare const agentRoutineRunSchema: z.ZodObject<{
|
|
|
20278
20497
|
last_error?: string | undefined;
|
|
20279
20498
|
}, {
|
|
20280
20499
|
type: "thread" | "none" | "reply";
|
|
20281
|
-
status: "pending" | "failed" | "
|
|
20500
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20282
20501
|
message?: string | undefined;
|
|
20283
20502
|
thread?: string | undefined;
|
|
20284
20503
|
delivered_at?: string | undefined;
|
|
@@ -20354,7 +20573,7 @@ export declare const agentRoutineRunSchema: z.ZodObject<{
|
|
|
20354
20573
|
} | undefined;
|
|
20355
20574
|
delivery?: {
|
|
20356
20575
|
type: "thread" | "none" | "reply";
|
|
20357
|
-
status: "pending" | "failed" | "
|
|
20576
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20358
20577
|
message?: string | undefined;
|
|
20359
20578
|
thread?: string | undefined;
|
|
20360
20579
|
delivered_at?: string | undefined;
|
|
@@ -20399,7 +20618,7 @@ export declare const agentRoutineRunSchema: z.ZodObject<{
|
|
|
20399
20618
|
} | undefined;
|
|
20400
20619
|
delivery?: {
|
|
20401
20620
|
type: "thread" | "none" | "reply";
|
|
20402
|
-
status: "pending" | "failed" | "
|
|
20621
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20403
20622
|
message?: string | undefined;
|
|
20404
20623
|
thread?: string | undefined;
|
|
20405
20624
|
delivered_at?: string | undefined;
|
|
@@ -20536,7 +20755,7 @@ export declare const agentRoutineRunListResponseSchema: z.ZodObject<{
|
|
|
20536
20755
|
type: z.ZodEnum<["none", "thread", "reply"]>;
|
|
20537
20756
|
}, "strip", z.ZodTypeAny, {
|
|
20538
20757
|
type: "thread" | "none" | "reply";
|
|
20539
|
-
status: "pending" | "failed" | "
|
|
20758
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20540
20759
|
message?: string | undefined;
|
|
20541
20760
|
thread?: string | undefined;
|
|
20542
20761
|
delivered_at?: string | undefined;
|
|
@@ -20544,7 +20763,7 @@ export declare const agentRoutineRunListResponseSchema: z.ZodObject<{
|
|
|
20544
20763
|
last_error?: string | undefined;
|
|
20545
20764
|
}, {
|
|
20546
20765
|
type: "thread" | "none" | "reply";
|
|
20547
|
-
status: "pending" | "failed" | "
|
|
20766
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20548
20767
|
message?: string | undefined;
|
|
20549
20768
|
thread?: string | undefined;
|
|
20550
20769
|
delivered_at?: string | undefined;
|
|
@@ -20620,7 +20839,7 @@ export declare const agentRoutineRunListResponseSchema: z.ZodObject<{
|
|
|
20620
20839
|
} | undefined;
|
|
20621
20840
|
delivery?: {
|
|
20622
20841
|
type: "thread" | "none" | "reply";
|
|
20623
|
-
status: "pending" | "failed" | "
|
|
20842
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20624
20843
|
message?: string | undefined;
|
|
20625
20844
|
thread?: string | undefined;
|
|
20626
20845
|
delivered_at?: string | undefined;
|
|
@@ -20665,7 +20884,7 @@ export declare const agentRoutineRunListResponseSchema: z.ZodObject<{
|
|
|
20665
20884
|
} | undefined;
|
|
20666
20885
|
delivery?: {
|
|
20667
20886
|
type: "thread" | "none" | "reply";
|
|
20668
|
-
status: "pending" | "failed" | "
|
|
20887
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20669
20888
|
message?: string | undefined;
|
|
20670
20889
|
thread?: string | undefined;
|
|
20671
20890
|
delivered_at?: string | undefined;
|
|
@@ -20712,7 +20931,7 @@ export declare const agentRoutineRunListResponseSchema: z.ZodObject<{
|
|
|
20712
20931
|
} | undefined;
|
|
20713
20932
|
delivery?: {
|
|
20714
20933
|
type: "thread" | "none" | "reply";
|
|
20715
|
-
status: "pending" | "failed" | "
|
|
20934
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20716
20935
|
message?: string | undefined;
|
|
20717
20936
|
thread?: string | undefined;
|
|
20718
20937
|
delivered_at?: string | undefined;
|
|
@@ -20761,7 +20980,7 @@ export declare const agentRoutineRunListResponseSchema: z.ZodObject<{
|
|
|
20761
20980
|
} | undefined;
|
|
20762
20981
|
delivery?: {
|
|
20763
20982
|
type: "thread" | "none" | "reply";
|
|
20764
|
-
status: "pending" | "failed" | "
|
|
20983
|
+
status: "pending" | "failed" | "delivered" | "not_requested";
|
|
20765
20984
|
message?: string | undefined;
|
|
20766
20985
|
thread?: string | undefined;
|
|
20767
20986
|
delivered_at?: string | undefined;
|
|
@@ -22599,6 +22818,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
22599
22818
|
virtual_path?: string | undefined;
|
|
22600
22819
|
metadata?: Record<string, unknown> | undefined;
|
|
22601
22820
|
org_name?: string | undefined;
|
|
22821
|
+
org_slug?: string | undefined;
|
|
22602
22822
|
category_keys?: string[] | undefined;
|
|
22603
22823
|
events?: Record<string, unknown> | undefined;
|
|
22604
22824
|
image_url?: string | undefined;
|
|
@@ -22613,7 +22833,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
22613
22833
|
url?: string | undefined;
|
|
22614
22834
|
width?: number | undefined;
|
|
22615
22835
|
} | undefined;
|
|
22616
|
-
org_slug?: string | undefined;
|
|
22617
22836
|
readme_url?: string | undefined;
|
|
22618
22837
|
screenshot_urls?: string[] | undefined;
|
|
22619
22838
|
solution_id?: string | undefined;
|
|
@@ -22661,6 +22880,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
22661
22880
|
virtual_path?: string | undefined;
|
|
22662
22881
|
metadata?: Record<string, unknown> | undefined;
|
|
22663
22882
|
org_name?: string | undefined;
|
|
22883
|
+
org_slug?: string | undefined;
|
|
22664
22884
|
category_keys?: string[] | undefined;
|
|
22665
22885
|
events?: Record<string, unknown> | undefined;
|
|
22666
22886
|
image_url?: string | undefined;
|
|
@@ -22675,7 +22895,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
22675
22895
|
url?: string | undefined;
|
|
22676
22896
|
width?: number | undefined;
|
|
22677
22897
|
} | undefined;
|
|
22678
|
-
org_slug?: string | undefined;
|
|
22679
22898
|
readme_url?: string | undefined;
|
|
22680
22899
|
screenshot_urls?: string[] | undefined;
|
|
22681
22900
|
solution_id?: string | undefined;
|
|
@@ -22969,6 +23188,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
22969
23188
|
virtual_path?: string | undefined;
|
|
22970
23189
|
metadata?: Record<string, unknown> | undefined;
|
|
22971
23190
|
org_name?: string | undefined;
|
|
23191
|
+
org_slug?: string | undefined;
|
|
22972
23192
|
category_keys?: string[] | undefined;
|
|
22973
23193
|
events?: Record<string, unknown> | undefined;
|
|
22974
23194
|
image_url?: string | undefined;
|
|
@@ -22983,7 +23203,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
22983
23203
|
url?: string | undefined;
|
|
22984
23204
|
width?: number | undefined;
|
|
22985
23205
|
} | undefined;
|
|
22986
|
-
org_slug?: string | undefined;
|
|
22987
23206
|
readme_url?: string | undefined;
|
|
22988
23207
|
screenshot_urls?: string[] | undefined;
|
|
22989
23208
|
solution_id?: string | undefined;
|
|
@@ -23031,6 +23250,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23031
23250
|
virtual_path?: string | undefined;
|
|
23032
23251
|
metadata?: Record<string, unknown> | undefined;
|
|
23033
23252
|
org_name?: string | undefined;
|
|
23253
|
+
org_slug?: string | undefined;
|
|
23034
23254
|
category_keys?: string[] | undefined;
|
|
23035
23255
|
events?: Record<string, unknown> | undefined;
|
|
23036
23256
|
image_url?: string | undefined;
|
|
@@ -23045,7 +23265,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23045
23265
|
url?: string | undefined;
|
|
23046
23266
|
width?: number | undefined;
|
|
23047
23267
|
} | undefined;
|
|
23048
|
-
org_slug?: string | undefined;
|
|
23049
23268
|
readme_url?: string | undefined;
|
|
23050
23269
|
screenshot_urls?: string[] | undefined;
|
|
23051
23270
|
solution_id?: string | undefined;
|
|
@@ -23136,6 +23355,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23136
23355
|
virtual_path?: string | undefined;
|
|
23137
23356
|
metadata?: Record<string, unknown> | undefined;
|
|
23138
23357
|
org_name?: string | undefined;
|
|
23358
|
+
org_slug?: string | undefined;
|
|
23139
23359
|
category_keys?: string[] | undefined;
|
|
23140
23360
|
events?: Record<string, unknown> | undefined;
|
|
23141
23361
|
image_url?: string | undefined;
|
|
@@ -23150,7 +23370,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23150
23370
|
url?: string | undefined;
|
|
23151
23371
|
width?: number | undefined;
|
|
23152
23372
|
} | undefined;
|
|
23153
|
-
org_slug?: string | undefined;
|
|
23154
23373
|
readme_url?: string | undefined;
|
|
23155
23374
|
screenshot_urls?: string[] | undefined;
|
|
23156
23375
|
solution_id?: string | undefined;
|
|
@@ -23210,6 +23429,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23210
23429
|
virtual_path?: string | undefined;
|
|
23211
23430
|
metadata?: Record<string, unknown> | undefined;
|
|
23212
23431
|
org_name?: string | undefined;
|
|
23432
|
+
org_slug?: string | undefined;
|
|
23213
23433
|
category_keys?: string[] | undefined;
|
|
23214
23434
|
events?: Record<string, unknown> | undefined;
|
|
23215
23435
|
image_url?: string | undefined;
|
|
@@ -23224,7 +23444,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23224
23444
|
url?: string | undefined;
|
|
23225
23445
|
width?: number | undefined;
|
|
23226
23446
|
} | undefined;
|
|
23227
|
-
org_slug?: string | undefined;
|
|
23228
23447
|
readme_url?: string | undefined;
|
|
23229
23448
|
screenshot_urls?: string[] | undefined;
|
|
23230
23449
|
solution_id?: string | undefined;
|
|
@@ -23274,6 +23493,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23274
23493
|
virtual_path?: string | undefined;
|
|
23275
23494
|
metadata?: Record<string, unknown> | undefined;
|
|
23276
23495
|
org_name?: string | undefined;
|
|
23496
|
+
org_slug?: string | undefined;
|
|
23277
23497
|
category_keys?: string[] | undefined;
|
|
23278
23498
|
events?: Record<string, unknown> | undefined;
|
|
23279
23499
|
image_url?: string | undefined;
|
|
@@ -23288,7 +23508,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23288
23508
|
url?: string | undefined;
|
|
23289
23509
|
width?: number | undefined;
|
|
23290
23510
|
} | undefined;
|
|
23291
|
-
org_slug?: string | undefined;
|
|
23292
23511
|
readme_url?: string | undefined;
|
|
23293
23512
|
screenshot_urls?: string[] | undefined;
|
|
23294
23513
|
solution_id?: string | undefined;
|
|
@@ -23348,6 +23567,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23348
23567
|
virtual_path?: string | undefined;
|
|
23349
23568
|
metadata?: Record<string, unknown> | undefined;
|
|
23350
23569
|
org_name?: string | undefined;
|
|
23570
|
+
org_slug?: string | undefined;
|
|
23351
23571
|
category_keys?: string[] | undefined;
|
|
23352
23572
|
events?: Record<string, unknown> | undefined;
|
|
23353
23573
|
image_url?: string | undefined;
|
|
@@ -23362,7 +23582,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23362
23582
|
url?: string | undefined;
|
|
23363
23583
|
width?: number | undefined;
|
|
23364
23584
|
} | undefined;
|
|
23365
|
-
org_slug?: string | undefined;
|
|
23366
23585
|
readme_url?: string | undefined;
|
|
23367
23586
|
screenshot_urls?: string[] | undefined;
|
|
23368
23587
|
solution_id?: string | undefined;
|
|
@@ -23457,6 +23676,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23457
23676
|
virtual_path?: string | undefined;
|
|
23458
23677
|
metadata?: Record<string, unknown> | undefined;
|
|
23459
23678
|
org_name?: string | undefined;
|
|
23679
|
+
org_slug?: string | undefined;
|
|
23460
23680
|
category_keys?: string[] | undefined;
|
|
23461
23681
|
events?: Record<string, unknown> | undefined;
|
|
23462
23682
|
image_url?: string | undefined;
|
|
@@ -23471,7 +23691,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23471
23691
|
url?: string | undefined;
|
|
23472
23692
|
width?: number | undefined;
|
|
23473
23693
|
} | undefined;
|
|
23474
|
-
org_slug?: string | undefined;
|
|
23475
23694
|
readme_url?: string | undefined;
|
|
23476
23695
|
screenshot_urls?: string[] | undefined;
|
|
23477
23696
|
solution_id?: string | undefined;
|
|
@@ -23531,6 +23750,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23531
23750
|
virtual_path?: string | undefined;
|
|
23532
23751
|
metadata?: Record<string, unknown> | undefined;
|
|
23533
23752
|
org_name?: string | undefined;
|
|
23753
|
+
org_slug?: string | undefined;
|
|
23534
23754
|
category_keys?: string[] | undefined;
|
|
23535
23755
|
events?: Record<string, unknown> | undefined;
|
|
23536
23756
|
image_url?: string | undefined;
|
|
@@ -23545,7 +23765,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23545
23765
|
url?: string | undefined;
|
|
23546
23766
|
width?: number | undefined;
|
|
23547
23767
|
} | undefined;
|
|
23548
|
-
org_slug?: string | undefined;
|
|
23549
23768
|
readme_url?: string | undefined;
|
|
23550
23769
|
screenshot_urls?: string[] | undefined;
|
|
23551
23770
|
solution_id?: string | undefined;
|
|
@@ -23633,6 +23852,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23633
23852
|
virtual_path?: string | undefined;
|
|
23634
23853
|
metadata?: Record<string, unknown> | undefined;
|
|
23635
23854
|
org_name?: string | undefined;
|
|
23855
|
+
org_slug?: string | undefined;
|
|
23636
23856
|
category_keys?: string[] | undefined;
|
|
23637
23857
|
events?: Record<string, unknown> | undefined;
|
|
23638
23858
|
image_url?: string | undefined;
|
|
@@ -23647,7 +23867,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23647
23867
|
url?: string | undefined;
|
|
23648
23868
|
width?: number | undefined;
|
|
23649
23869
|
} | undefined;
|
|
23650
|
-
org_slug?: string | undefined;
|
|
23651
23870
|
readme_url?: string | undefined;
|
|
23652
23871
|
screenshot_urls?: string[] | undefined;
|
|
23653
23872
|
solution_id?: string | undefined;
|
|
@@ -23707,6 +23926,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23707
23926
|
virtual_path?: string | undefined;
|
|
23708
23927
|
metadata?: Record<string, unknown> | undefined;
|
|
23709
23928
|
org_name?: string | undefined;
|
|
23929
|
+
org_slug?: string | undefined;
|
|
23710
23930
|
category_keys?: string[] | undefined;
|
|
23711
23931
|
events?: Record<string, unknown> | undefined;
|
|
23712
23932
|
image_url?: string | undefined;
|
|
@@ -23721,7 +23941,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
23721
23941
|
url?: string | undefined;
|
|
23722
23942
|
width?: number | undefined;
|
|
23723
23943
|
} | undefined;
|
|
23724
|
-
org_slug?: string | undefined;
|
|
23725
23944
|
readme_url?: string | undefined;
|
|
23726
23945
|
screenshot_urls?: string[] | undefined;
|
|
23727
23946
|
solution_id?: string | undefined;
|
|
@@ -24018,6 +24237,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24018
24237
|
virtual_path?: string | undefined;
|
|
24019
24238
|
metadata?: Record<string, unknown> | undefined;
|
|
24020
24239
|
org_name?: string | undefined;
|
|
24240
|
+
org_slug?: string | undefined;
|
|
24021
24241
|
category_keys?: string[] | undefined;
|
|
24022
24242
|
events?: Record<string, unknown> | undefined;
|
|
24023
24243
|
image_url?: string | undefined;
|
|
@@ -24032,7 +24252,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24032
24252
|
url?: string | undefined;
|
|
24033
24253
|
width?: number | undefined;
|
|
24034
24254
|
} | undefined;
|
|
24035
|
-
org_slug?: string | undefined;
|
|
24036
24255
|
readme_url?: string | undefined;
|
|
24037
24256
|
screenshot_urls?: string[] | undefined;
|
|
24038
24257
|
solution_id?: string | undefined;
|
|
@@ -24080,6 +24299,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24080
24299
|
virtual_path?: string | undefined;
|
|
24081
24300
|
metadata?: Record<string, unknown> | undefined;
|
|
24082
24301
|
org_name?: string | undefined;
|
|
24302
|
+
org_slug?: string | undefined;
|
|
24083
24303
|
category_keys?: string[] | undefined;
|
|
24084
24304
|
events?: Record<string, unknown> | undefined;
|
|
24085
24305
|
image_url?: string | undefined;
|
|
@@ -24094,7 +24314,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24094
24314
|
url?: string | undefined;
|
|
24095
24315
|
width?: number | undefined;
|
|
24096
24316
|
} | undefined;
|
|
24097
|
-
org_slug?: string | undefined;
|
|
24098
24317
|
readme_url?: string | undefined;
|
|
24099
24318
|
screenshot_urls?: string[] | undefined;
|
|
24100
24319
|
solution_id?: string | undefined;
|
|
@@ -24513,6 +24732,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24513
24732
|
virtual_path?: string | undefined;
|
|
24514
24733
|
metadata?: Record<string, unknown> | undefined;
|
|
24515
24734
|
org_name?: string | undefined;
|
|
24735
|
+
org_slug?: string | undefined;
|
|
24516
24736
|
category_keys?: string[] | undefined;
|
|
24517
24737
|
events?: Record<string, unknown> | undefined;
|
|
24518
24738
|
image_url?: string | undefined;
|
|
@@ -24527,7 +24747,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24527
24747
|
url?: string | undefined;
|
|
24528
24748
|
width?: number | undefined;
|
|
24529
24749
|
} | undefined;
|
|
24530
|
-
org_slug?: string | undefined;
|
|
24531
24750
|
readme_url?: string | undefined;
|
|
24532
24751
|
screenshot_urls?: string[] | undefined;
|
|
24533
24752
|
solution_id?: string | undefined;
|
|
@@ -24674,6 +24893,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24674
24893
|
virtual_path?: string | undefined;
|
|
24675
24894
|
metadata?: Record<string, unknown> | undefined;
|
|
24676
24895
|
org_name?: string | undefined;
|
|
24896
|
+
org_slug?: string | undefined;
|
|
24677
24897
|
category_keys?: string[] | undefined;
|
|
24678
24898
|
events?: Record<string, unknown> | undefined;
|
|
24679
24899
|
image_url?: string | undefined;
|
|
@@ -24688,7 +24908,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24688
24908
|
url?: string | undefined;
|
|
24689
24909
|
width?: number | undefined;
|
|
24690
24910
|
} | undefined;
|
|
24691
|
-
org_slug?: string | undefined;
|
|
24692
24911
|
readme_url?: string | undefined;
|
|
24693
24912
|
screenshot_urls?: string[] | undefined;
|
|
24694
24913
|
solution_id?: string | undefined;
|
|
@@ -24748,6 +24967,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24748
24967
|
virtual_path?: string | undefined;
|
|
24749
24968
|
metadata?: Record<string, unknown> | undefined;
|
|
24750
24969
|
org_name?: string | undefined;
|
|
24970
|
+
org_slug?: string | undefined;
|
|
24751
24971
|
category_keys?: string[] | undefined;
|
|
24752
24972
|
events?: Record<string, unknown> | undefined;
|
|
24753
24973
|
image_url?: string | undefined;
|
|
@@ -24762,7 +24982,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24762
24982
|
url?: string | undefined;
|
|
24763
24983
|
width?: number | undefined;
|
|
24764
24984
|
} | undefined;
|
|
24765
|
-
org_slug?: string | undefined;
|
|
24766
24985
|
readme_url?: string | undefined;
|
|
24767
24986
|
screenshot_urls?: string[] | undefined;
|
|
24768
24987
|
solution_id?: string | undefined;
|
|
@@ -24815,6 +25034,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24815
25034
|
virtual_path?: string | undefined;
|
|
24816
25035
|
metadata?: Record<string, unknown> | undefined;
|
|
24817
25036
|
org_name?: string | undefined;
|
|
25037
|
+
org_slug?: string | undefined;
|
|
24818
25038
|
category_keys?: string[] | undefined;
|
|
24819
25039
|
events?: Record<string, unknown> | undefined;
|
|
24820
25040
|
image_url?: string | undefined;
|
|
@@ -24829,7 +25049,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24829
25049
|
url?: string | undefined;
|
|
24830
25050
|
width?: number | undefined;
|
|
24831
25051
|
} | undefined;
|
|
24832
|
-
org_slug?: string | undefined;
|
|
24833
25052
|
readme_url?: string | undefined;
|
|
24834
25053
|
screenshot_urls?: string[] | undefined;
|
|
24835
25054
|
solution_id?: string | undefined;
|
|
@@ -24976,6 +25195,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24976
25195
|
virtual_path?: string | undefined;
|
|
24977
25196
|
metadata?: Record<string, unknown> | undefined;
|
|
24978
25197
|
org_name?: string | undefined;
|
|
25198
|
+
org_slug?: string | undefined;
|
|
24979
25199
|
category_keys?: string[] | undefined;
|
|
24980
25200
|
events?: Record<string, unknown> | undefined;
|
|
24981
25201
|
image_url?: string | undefined;
|
|
@@ -24990,7 +25210,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
24990
25210
|
url?: string | undefined;
|
|
24991
25211
|
width?: number | undefined;
|
|
24992
25212
|
} | undefined;
|
|
24993
|
-
org_slug?: string | undefined;
|
|
24994
25213
|
readme_url?: string | undefined;
|
|
24995
25214
|
screenshot_urls?: string[] | undefined;
|
|
24996
25215
|
solution_id?: string | undefined;
|
|
@@ -25050,6 +25269,7 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
25050
25269
|
virtual_path?: string | undefined;
|
|
25051
25270
|
metadata?: Record<string, unknown> | undefined;
|
|
25052
25271
|
org_name?: string | undefined;
|
|
25272
|
+
org_slug?: string | undefined;
|
|
25053
25273
|
category_keys?: string[] | undefined;
|
|
25054
25274
|
events?: Record<string, unknown> | undefined;
|
|
25055
25275
|
image_url?: string | undefined;
|
|
@@ -25064,7 +25284,6 @@ export declare const agentUpgradeResponseSchema: z.ZodObject<{
|
|
|
25064
25284
|
url?: string | undefined;
|
|
25065
25285
|
width?: number | undefined;
|
|
25066
25286
|
} | undefined;
|
|
25067
|
-
org_slug?: string | undefined;
|
|
25068
25287
|
readme_url?: string | undefined;
|
|
25069
25288
|
screenshot_urls?: string[] | undefined;
|
|
25070
25289
|
solution_id?: string | undefined;
|
|
@@ -26052,6 +26271,7 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26052
26271
|
virtual_path?: string | undefined;
|
|
26053
26272
|
metadata?: Record<string, unknown> | undefined;
|
|
26054
26273
|
org_name?: string | undefined;
|
|
26274
|
+
org_slug?: string | undefined;
|
|
26055
26275
|
category_keys?: string[] | undefined;
|
|
26056
26276
|
events?: Record<string, unknown> | undefined;
|
|
26057
26277
|
image_url?: string | undefined;
|
|
@@ -26066,7 +26286,6 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26066
26286
|
url?: string | undefined;
|
|
26067
26287
|
width?: number | undefined;
|
|
26068
26288
|
} | undefined;
|
|
26069
|
-
org_slug?: string | undefined;
|
|
26070
26289
|
readme_url?: string | undefined;
|
|
26071
26290
|
screenshot_urls?: string[] | undefined;
|
|
26072
26291
|
solution_id?: string | undefined;
|
|
@@ -26114,6 +26333,7 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26114
26333
|
virtual_path?: string | undefined;
|
|
26115
26334
|
metadata?: Record<string, unknown> | undefined;
|
|
26116
26335
|
org_name?: string | undefined;
|
|
26336
|
+
org_slug?: string | undefined;
|
|
26117
26337
|
category_keys?: string[] | undefined;
|
|
26118
26338
|
events?: Record<string, unknown> | undefined;
|
|
26119
26339
|
image_url?: string | undefined;
|
|
@@ -26128,7 +26348,6 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26128
26348
|
url?: string | undefined;
|
|
26129
26349
|
width?: number | undefined;
|
|
26130
26350
|
} | undefined;
|
|
26131
|
-
org_slug?: string | undefined;
|
|
26132
26351
|
readme_url?: string | undefined;
|
|
26133
26352
|
screenshot_urls?: string[] | undefined;
|
|
26134
26353
|
solution_id?: string | undefined;
|
|
@@ -26184,6 +26403,7 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26184
26403
|
virtual_path?: string | undefined;
|
|
26185
26404
|
metadata?: Record<string, unknown> | undefined;
|
|
26186
26405
|
org_name?: string | undefined;
|
|
26406
|
+
org_slug?: string | undefined;
|
|
26187
26407
|
category_keys?: string[] | undefined;
|
|
26188
26408
|
events?: Record<string, unknown> | undefined;
|
|
26189
26409
|
image_url?: string | undefined;
|
|
@@ -26198,7 +26418,6 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26198
26418
|
url?: string | undefined;
|
|
26199
26419
|
width?: number | undefined;
|
|
26200
26420
|
} | undefined;
|
|
26201
|
-
org_slug?: string | undefined;
|
|
26202
26421
|
readme_url?: string | undefined;
|
|
26203
26422
|
screenshot_urls?: string[] | undefined;
|
|
26204
26423
|
solution_id?: string | undefined;
|
|
@@ -26274,6 +26493,7 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26274
26493
|
virtual_path?: string | undefined;
|
|
26275
26494
|
metadata?: Record<string, unknown> | undefined;
|
|
26276
26495
|
org_name?: string | undefined;
|
|
26496
|
+
org_slug?: string | undefined;
|
|
26277
26497
|
category_keys?: string[] | undefined;
|
|
26278
26498
|
events?: Record<string, unknown> | undefined;
|
|
26279
26499
|
image_url?: string | undefined;
|
|
@@ -26288,7 +26508,6 @@ export declare const solutionImportResponseSchema: z.ZodObject<{
|
|
|
26288
26508
|
url?: string | undefined;
|
|
26289
26509
|
width?: number | undefined;
|
|
26290
26510
|
} | undefined;
|
|
26291
|
-
org_slug?: string | undefined;
|
|
26292
26511
|
readme_url?: string | undefined;
|
|
26293
26512
|
screenshot_urls?: string[] | undefined;
|
|
26294
26513
|
solution_id?: string | undefined;
|
|
@@ -26896,6 +27115,7 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
26896
27115
|
virtual_path?: string | undefined;
|
|
26897
27116
|
metadata?: Record<string, unknown> | undefined;
|
|
26898
27117
|
org_name?: string | undefined;
|
|
27118
|
+
org_slug?: string | undefined;
|
|
26899
27119
|
category_keys?: string[] | undefined;
|
|
26900
27120
|
events?: Record<string, unknown> | undefined;
|
|
26901
27121
|
image_url?: string | undefined;
|
|
@@ -26910,7 +27130,6 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
26910
27130
|
url?: string | undefined;
|
|
26911
27131
|
width?: number | undefined;
|
|
26912
27132
|
} | undefined;
|
|
26913
|
-
org_slug?: string | undefined;
|
|
26914
27133
|
readme_url?: string | undefined;
|
|
26915
27134
|
screenshot_urls?: string[] | undefined;
|
|
26916
27135
|
solution_id?: string | undefined;
|
|
@@ -26958,6 +27177,7 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
26958
27177
|
virtual_path?: string | undefined;
|
|
26959
27178
|
metadata?: Record<string, unknown> | undefined;
|
|
26960
27179
|
org_name?: string | undefined;
|
|
27180
|
+
org_slug?: string | undefined;
|
|
26961
27181
|
category_keys?: string[] | undefined;
|
|
26962
27182
|
events?: Record<string, unknown> | undefined;
|
|
26963
27183
|
image_url?: string | undefined;
|
|
@@ -26972,7 +27192,6 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
26972
27192
|
url?: string | undefined;
|
|
26973
27193
|
width?: number | undefined;
|
|
26974
27194
|
} | undefined;
|
|
26975
|
-
org_slug?: string | undefined;
|
|
26976
27195
|
readme_url?: string | undefined;
|
|
26977
27196
|
screenshot_urls?: string[] | undefined;
|
|
26978
27197
|
solution_id?: string | undefined;
|
|
@@ -27034,6 +27253,7 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
27034
27253
|
virtual_path?: string | undefined;
|
|
27035
27254
|
metadata?: Record<string, unknown> | undefined;
|
|
27036
27255
|
org_name?: string | undefined;
|
|
27256
|
+
org_slug?: string | undefined;
|
|
27037
27257
|
category_keys?: string[] | undefined;
|
|
27038
27258
|
events?: Record<string, unknown> | undefined;
|
|
27039
27259
|
image_url?: string | undefined;
|
|
@@ -27048,7 +27268,6 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
27048
27268
|
url?: string | undefined;
|
|
27049
27269
|
width?: number | undefined;
|
|
27050
27270
|
} | undefined;
|
|
27051
|
-
org_slug?: string | undefined;
|
|
27052
27271
|
readme_url?: string | undefined;
|
|
27053
27272
|
screenshot_urls?: string[] | undefined;
|
|
27054
27273
|
solution_id?: string | undefined;
|
|
@@ -27104,6 +27323,7 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
27104
27323
|
virtual_path?: string | undefined;
|
|
27105
27324
|
metadata?: Record<string, unknown> | undefined;
|
|
27106
27325
|
org_name?: string | undefined;
|
|
27326
|
+
org_slug?: string | undefined;
|
|
27107
27327
|
category_keys?: string[] | undefined;
|
|
27108
27328
|
events?: Record<string, unknown> | undefined;
|
|
27109
27329
|
image_url?: string | undefined;
|
|
@@ -27118,7 +27338,6 @@ export declare const solutionListResponseSchema: z.ZodObject<{
|
|
|
27118
27338
|
url?: string | undefined;
|
|
27119
27339
|
width?: number | undefined;
|
|
27120
27340
|
} | undefined;
|
|
27121
|
-
org_slug?: string | undefined;
|
|
27122
27341
|
readme_url?: string | undefined;
|
|
27123
27342
|
screenshot_urls?: string[] | undefined;
|
|
27124
27343
|
solution_id?: string | undefined;
|
|
@@ -27909,6 +28128,7 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
27909
28128
|
virtual_path?: string | undefined;
|
|
27910
28129
|
metadata?: Record<string, unknown> | undefined;
|
|
27911
28130
|
org_name?: string | undefined;
|
|
28131
|
+
org_slug?: string | undefined;
|
|
27912
28132
|
category_keys?: string[] | undefined;
|
|
27913
28133
|
events?: Record<string, unknown> | undefined;
|
|
27914
28134
|
image_url?: string | undefined;
|
|
@@ -27923,7 +28143,6 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
27923
28143
|
url?: string | undefined;
|
|
27924
28144
|
width?: number | undefined;
|
|
27925
28145
|
} | undefined;
|
|
27926
|
-
org_slug?: string | undefined;
|
|
27927
28146
|
readme_url?: string | undefined;
|
|
27928
28147
|
screenshot_urls?: string[] | undefined;
|
|
27929
28148
|
solution_id?: string | undefined;
|
|
@@ -27971,6 +28190,7 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
27971
28190
|
virtual_path?: string | undefined;
|
|
27972
28191
|
metadata?: Record<string, unknown> | undefined;
|
|
27973
28192
|
org_name?: string | undefined;
|
|
28193
|
+
org_slug?: string | undefined;
|
|
27974
28194
|
category_keys?: string[] | undefined;
|
|
27975
28195
|
events?: Record<string, unknown> | undefined;
|
|
27976
28196
|
image_url?: string | undefined;
|
|
@@ -27985,7 +28205,6 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
27985
28205
|
url?: string | undefined;
|
|
27986
28206
|
width?: number | undefined;
|
|
27987
28207
|
} | undefined;
|
|
27988
|
-
org_slug?: string | undefined;
|
|
27989
28208
|
readme_url?: string | undefined;
|
|
27990
28209
|
screenshot_urls?: string[] | undefined;
|
|
27991
28210
|
solution_id?: string | undefined;
|
|
@@ -28237,6 +28456,7 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
28237
28456
|
virtual_path?: string | undefined;
|
|
28238
28457
|
metadata?: Record<string, unknown> | undefined;
|
|
28239
28458
|
org_name?: string | undefined;
|
|
28459
|
+
org_slug?: string | undefined;
|
|
28240
28460
|
category_keys?: string[] | undefined;
|
|
28241
28461
|
events?: Record<string, unknown> | undefined;
|
|
28242
28462
|
image_url?: string | undefined;
|
|
@@ -28251,7 +28471,6 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
28251
28471
|
url?: string | undefined;
|
|
28252
28472
|
width?: number | undefined;
|
|
28253
28473
|
} | undefined;
|
|
28254
|
-
org_slug?: string | undefined;
|
|
28255
28474
|
readme_url?: string | undefined;
|
|
28256
28475
|
screenshot_urls?: string[] | undefined;
|
|
28257
28476
|
solution_id?: string | undefined;
|
|
@@ -28349,6 +28568,7 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
28349
28568
|
virtual_path?: string | undefined;
|
|
28350
28569
|
metadata?: Record<string, unknown> | undefined;
|
|
28351
28570
|
org_name?: string | undefined;
|
|
28571
|
+
org_slug?: string | undefined;
|
|
28352
28572
|
category_keys?: string[] | undefined;
|
|
28353
28573
|
events?: Record<string, unknown> | undefined;
|
|
28354
28574
|
image_url?: string | undefined;
|
|
@@ -28363,7 +28583,6 @@ export declare const solutionUpgradeResponseSchema: z.ZodObject<{
|
|
|
28363
28583
|
url?: string | undefined;
|
|
28364
28584
|
width?: number | undefined;
|
|
28365
28585
|
} | undefined;
|
|
28366
|
-
org_slug?: string | undefined;
|
|
28367
28586
|
readme_url?: string | undefined;
|
|
28368
28587
|
screenshot_urls?: string[] | undefined;
|
|
28369
28588
|
solution_id?: string | undefined;
|