@renai-labs/sdk 0.1.7 → 0.1.8

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.
@@ -202,6 +202,10 @@ export type McpPublicView = {
202
202
  tools: Array<string>;
203
203
  prompts: Array<string>;
204
204
  auth: "none" | "oauth" | "api_key" | "basic";
205
+ env: {
206
+ [key: string]: string;
207
+ };
208
+ requiredCredentials: Array<RequiredCredential>;
205
209
  publisherId: string | null;
206
210
  websiteMetadata: WebsiteMetadata | null;
207
211
  sortOrder: number | null;
@@ -214,6 +218,10 @@ export type McpPublicView = {
214
218
  deprecationMessage: string | null;
215
219
  tags?: Array<string>;
216
220
  };
221
+ export type RequiredCredential = {
222
+ name: string;
223
+ description?: string;
224
+ };
217
225
  export type Repository = {
218
226
  url?: string;
219
227
  source?: string;
@@ -359,6 +367,16 @@ export type GithubOauthCallbackData = {
359
367
  };
360
368
  url: "/api/github/oauth/callback";
361
369
  };
370
+ export type GoogleOauthCallbackData = {
371
+ body?: never;
372
+ path?: never;
373
+ query?: {
374
+ state?: string;
375
+ code?: string;
376
+ error?: string;
377
+ };
378
+ url: "/api/google/oauth/callback";
379
+ };
362
380
  export type RegistryAgentGetBySlugData = {
363
381
  body?: never;
364
382
  path: {
@@ -856,3 +874,513 @@ export type SandboxSessionUpdateResponses = {
856
874
  204: void;
857
875
  };
858
876
  export type SandboxSessionUpdateResponse = SandboxSessionUpdateResponses[keyof SandboxSessionUpdateResponses];
877
+ export type SandboxSlackMessageData = {
878
+ body?: {
879
+ channelId: string;
880
+ threadTs?: string;
881
+ text: string;
882
+ sessionId?: string;
883
+ };
884
+ path?: never;
885
+ query?: never;
886
+ url: "/api/sandbox/slack/message";
887
+ };
888
+ export type SandboxSlackMessageErrors = {
889
+ /**
890
+ * Bad request
891
+ */
892
+ 400: {
893
+ error: string;
894
+ };
895
+ /**
896
+ * Unauthorized
897
+ */
898
+ 401: {
899
+ error: string;
900
+ };
901
+ /**
902
+ * Forbidden
903
+ */
904
+ 403: {
905
+ error: string;
906
+ };
907
+ /**
908
+ * Not found
909
+ */
910
+ 404: {
911
+ error: string;
912
+ };
913
+ };
914
+ export type SandboxSlackMessageError = SandboxSlackMessageErrors[keyof SandboxSlackMessageErrors];
915
+ export type SandboxSlackMessageResponses = {
916
+ /**
917
+ * OK
918
+ */
919
+ 200: {
920
+ channelId: string;
921
+ ts: string | null;
922
+ };
923
+ };
924
+ export type SandboxSlackMessageResponse = SandboxSlackMessageResponses[keyof SandboxSlackMessageResponses];
925
+ export type SandboxSlackChannelsData = {
926
+ body?: never;
927
+ path?: never;
928
+ query?: never;
929
+ url: "/api/sandbox/slack/channels";
930
+ };
931
+ export type SandboxSlackChannelsErrors = {
932
+ /**
933
+ * Bad request
934
+ */
935
+ 400: {
936
+ error: string;
937
+ };
938
+ /**
939
+ * Unauthorized
940
+ */
941
+ 401: {
942
+ error: string;
943
+ };
944
+ /**
945
+ * Forbidden
946
+ */
947
+ 403: {
948
+ error: string;
949
+ };
950
+ /**
951
+ * Not found
952
+ */
953
+ 404: {
954
+ error: string;
955
+ };
956
+ };
957
+ export type SandboxSlackChannelsError = SandboxSlackChannelsErrors[keyof SandboxSlackChannelsErrors];
958
+ export type SandboxSlackChannelsResponses = {
959
+ /**
960
+ * OK
961
+ */
962
+ 200: {
963
+ channels: Array<unknown>;
964
+ };
965
+ };
966
+ export type SandboxSlackChannelsResponse = SandboxSlackChannelsResponses[keyof SandboxSlackChannelsResponses];
967
+ export type SandboxSlackReadThreadData = {
968
+ body?: {
969
+ channelId: string;
970
+ threadTs: string;
971
+ limit?: number;
972
+ };
973
+ path?: never;
974
+ query?: never;
975
+ url: "/api/sandbox/slack/read-thread";
976
+ };
977
+ export type SandboxSlackReadThreadErrors = {
978
+ /**
979
+ * Bad request
980
+ */
981
+ 400: {
982
+ error: string;
983
+ };
984
+ /**
985
+ * Unauthorized
986
+ */
987
+ 401: {
988
+ error: string;
989
+ };
990
+ /**
991
+ * Forbidden
992
+ */
993
+ 403: {
994
+ error: string;
995
+ };
996
+ /**
997
+ * Not found
998
+ */
999
+ 404: {
1000
+ error: string;
1001
+ };
1002
+ };
1003
+ export type SandboxSlackReadThreadError = SandboxSlackReadThreadErrors[keyof SandboxSlackReadThreadErrors];
1004
+ export type SandboxSlackReadThreadResponses = {
1005
+ /**
1006
+ * OK
1007
+ */
1008
+ 200: {
1009
+ messages: Array<unknown>;
1010
+ };
1011
+ };
1012
+ export type SandboxSlackReadThreadResponse = SandboxSlackReadThreadResponses[keyof SandboxSlackReadThreadResponses];
1013
+ export type SandboxSlackUploadFileData = {
1014
+ body?: {
1015
+ channelId: string;
1016
+ threadTs: string;
1017
+ filename: string;
1018
+ content: string;
1019
+ title?: string;
1020
+ };
1021
+ path?: never;
1022
+ query?: never;
1023
+ url: "/api/sandbox/slack/upload-file";
1024
+ };
1025
+ export type SandboxSlackUploadFileErrors = {
1026
+ /**
1027
+ * Bad request
1028
+ */
1029
+ 400: {
1030
+ error: string;
1031
+ };
1032
+ /**
1033
+ * Unauthorized
1034
+ */
1035
+ 401: {
1036
+ error: string;
1037
+ };
1038
+ /**
1039
+ * Forbidden
1040
+ */
1041
+ 403: {
1042
+ error: string;
1043
+ };
1044
+ /**
1045
+ * Not found
1046
+ */
1047
+ 404: {
1048
+ error: string;
1049
+ };
1050
+ };
1051
+ export type SandboxSlackUploadFileError = SandboxSlackUploadFileErrors[keyof SandboxSlackUploadFileErrors];
1052
+ export type SandboxSlackUploadFileResponses = {
1053
+ /**
1054
+ * OK
1055
+ */
1056
+ 200: {
1057
+ ok: true;
1058
+ };
1059
+ };
1060
+ export type SandboxSlackUploadFileResponse = SandboxSlackUploadFileResponses[keyof SandboxSlackUploadFileResponses];
1061
+ export type SandboxSlackReactData = {
1062
+ body?: {
1063
+ channelId: string;
1064
+ messageTs: string;
1065
+ emoji: string;
1066
+ };
1067
+ path?: never;
1068
+ query?: never;
1069
+ url: "/api/sandbox/slack/react";
1070
+ };
1071
+ export type SandboxSlackReactErrors = {
1072
+ /**
1073
+ * Bad request
1074
+ */
1075
+ 400: {
1076
+ error: string;
1077
+ };
1078
+ /**
1079
+ * Unauthorized
1080
+ */
1081
+ 401: {
1082
+ error: string;
1083
+ };
1084
+ /**
1085
+ * Forbidden
1086
+ */
1087
+ 403: {
1088
+ error: string;
1089
+ };
1090
+ /**
1091
+ * Not found
1092
+ */
1093
+ 404: {
1094
+ error: string;
1095
+ };
1096
+ };
1097
+ export type SandboxSlackReactError = SandboxSlackReactErrors[keyof SandboxSlackReactErrors];
1098
+ export type SandboxSlackReactResponses = {
1099
+ /**
1100
+ * OK
1101
+ */
1102
+ 200: {
1103
+ ok: true;
1104
+ };
1105
+ };
1106
+ export type SandboxSlackReactResponse = SandboxSlackReactResponses[keyof SandboxSlackReactResponses];
1107
+ export type SandboxSlackLookupUserData = {
1108
+ body?: {
1109
+ slackUserId?: string;
1110
+ email?: string;
1111
+ };
1112
+ path?: never;
1113
+ query?: never;
1114
+ url: "/api/sandbox/slack/lookup-user";
1115
+ };
1116
+ export type SandboxSlackLookupUserErrors = {
1117
+ /**
1118
+ * Bad request
1119
+ */
1120
+ 400: {
1121
+ error: string;
1122
+ };
1123
+ /**
1124
+ * Unauthorized
1125
+ */
1126
+ 401: {
1127
+ error: string;
1128
+ };
1129
+ /**
1130
+ * Forbidden
1131
+ */
1132
+ 403: {
1133
+ error: string;
1134
+ };
1135
+ /**
1136
+ * Not found
1137
+ */
1138
+ 404: {
1139
+ error: string;
1140
+ };
1141
+ };
1142
+ export type SandboxSlackLookupUserError = SandboxSlackLookupUserErrors[keyof SandboxSlackLookupUserErrors];
1143
+ export type SandboxSlackLookupUserResponses = {
1144
+ /**
1145
+ * OK
1146
+ */
1147
+ 200: {
1148
+ slackUserId: string | null;
1149
+ name: string | null;
1150
+ email: string | null;
1151
+ renUserId: string | null;
1152
+ };
1153
+ };
1154
+ export type SandboxSlackLookupUserResponse = SandboxSlackLookupUserResponses[keyof SandboxSlackLookupUserResponses];
1155
+ export type SandboxSlackMessageUpdateData = {
1156
+ body?: {
1157
+ channelId: string;
1158
+ ts: string;
1159
+ text: string;
1160
+ };
1161
+ path?: never;
1162
+ query?: never;
1163
+ url: "/api/sandbox/slack/message/update";
1164
+ };
1165
+ export type SandboxSlackMessageUpdateErrors = {
1166
+ /**
1167
+ * Bad request
1168
+ */
1169
+ 400: {
1170
+ error: string;
1171
+ };
1172
+ /**
1173
+ * Unauthorized
1174
+ */
1175
+ 401: {
1176
+ error: string;
1177
+ };
1178
+ /**
1179
+ * Forbidden
1180
+ */
1181
+ 403: {
1182
+ error: string;
1183
+ };
1184
+ /**
1185
+ * Not found
1186
+ */
1187
+ 404: {
1188
+ error: string;
1189
+ };
1190
+ };
1191
+ export type SandboxSlackMessageUpdateError = SandboxSlackMessageUpdateErrors[keyof SandboxSlackMessageUpdateErrors];
1192
+ export type SandboxSlackMessageUpdateResponses = {
1193
+ /**
1194
+ * OK
1195
+ */
1196
+ 200: {
1197
+ channelId: string;
1198
+ ts: string;
1199
+ };
1200
+ };
1201
+ export type SandboxSlackMessageUpdateResponse = SandboxSlackMessageUpdateResponses[keyof SandboxSlackMessageUpdateResponses];
1202
+ export type SandboxSlackMessageDeleteData = {
1203
+ body?: {
1204
+ channelId: string;
1205
+ ts: string;
1206
+ };
1207
+ path?: never;
1208
+ query?: never;
1209
+ url: "/api/sandbox/slack/message/delete";
1210
+ };
1211
+ export type SandboxSlackMessageDeleteErrors = {
1212
+ /**
1213
+ * Bad request
1214
+ */
1215
+ 400: {
1216
+ error: string;
1217
+ };
1218
+ /**
1219
+ * Unauthorized
1220
+ */
1221
+ 401: {
1222
+ error: string;
1223
+ };
1224
+ /**
1225
+ * Forbidden
1226
+ */
1227
+ 403: {
1228
+ error: string;
1229
+ };
1230
+ /**
1231
+ * Not found
1232
+ */
1233
+ 404: {
1234
+ error: string;
1235
+ };
1236
+ };
1237
+ export type SandboxSlackMessageDeleteError = SandboxSlackMessageDeleteErrors[keyof SandboxSlackMessageDeleteErrors];
1238
+ export type SandboxSlackMessageDeleteResponses = {
1239
+ /**
1240
+ * OK
1241
+ */
1242
+ 200: {
1243
+ ok: true;
1244
+ };
1245
+ };
1246
+ export type SandboxSlackMessageDeleteResponse = SandboxSlackMessageDeleteResponses[keyof SandboxSlackMessageDeleteResponses];
1247
+ export type SandboxSlackReactionsData = {
1248
+ body?: {
1249
+ channelId: string;
1250
+ messageTs: string;
1251
+ };
1252
+ path?: never;
1253
+ query?: never;
1254
+ url: "/api/sandbox/slack/reactions";
1255
+ };
1256
+ export type SandboxSlackReactionsErrors = {
1257
+ /**
1258
+ * Bad request
1259
+ */
1260
+ 400: {
1261
+ error: string;
1262
+ };
1263
+ /**
1264
+ * Unauthorized
1265
+ */
1266
+ 401: {
1267
+ error: string;
1268
+ };
1269
+ /**
1270
+ * Forbidden
1271
+ */
1272
+ 403: {
1273
+ error: string;
1274
+ };
1275
+ /**
1276
+ * Not found
1277
+ */
1278
+ 404: {
1279
+ error: string;
1280
+ };
1281
+ };
1282
+ export type SandboxSlackReactionsError = SandboxSlackReactionsErrors[keyof SandboxSlackReactionsErrors];
1283
+ export type SandboxSlackReactionsResponses = {
1284
+ /**
1285
+ * OK
1286
+ */
1287
+ 200: {
1288
+ reactions: Array<unknown>;
1289
+ };
1290
+ };
1291
+ export type SandboxSlackReactionsResponse = SandboxSlackReactionsResponses[keyof SandboxSlackReactionsResponses];
1292
+ export type SandboxSlackHistoryData = {
1293
+ body?: {
1294
+ channelId: string;
1295
+ limit?: number;
1296
+ oldest?: string;
1297
+ cursor?: string;
1298
+ };
1299
+ path?: never;
1300
+ query?: never;
1301
+ url: "/api/sandbox/slack/history";
1302
+ };
1303
+ export type SandboxSlackHistoryErrors = {
1304
+ /**
1305
+ * Bad request
1306
+ */
1307
+ 400: {
1308
+ error: string;
1309
+ };
1310
+ /**
1311
+ * Unauthorized
1312
+ */
1313
+ 401: {
1314
+ error: string;
1315
+ };
1316
+ /**
1317
+ * Forbidden
1318
+ */
1319
+ 403: {
1320
+ error: string;
1321
+ };
1322
+ /**
1323
+ * Not found
1324
+ */
1325
+ 404: {
1326
+ error: string;
1327
+ };
1328
+ };
1329
+ export type SandboxSlackHistoryError = SandboxSlackHistoryErrors[keyof SandboxSlackHistoryErrors];
1330
+ export type SandboxSlackHistoryResponses = {
1331
+ /**
1332
+ * OK
1333
+ */
1334
+ 200: {
1335
+ messages: Array<unknown>;
1336
+ nextCursor: string | null;
1337
+ };
1338
+ };
1339
+ export type SandboxSlackHistoryResponse = SandboxSlackHistoryResponses[keyof SandboxSlackHistoryResponses];
1340
+ export type SandboxSlackUsersData = {
1341
+ body?: never;
1342
+ path?: never;
1343
+ query?: {
1344
+ includeBots?: boolean;
1345
+ limit?: number;
1346
+ cursor?: string;
1347
+ };
1348
+ url: "/api/sandbox/slack/users";
1349
+ };
1350
+ export type SandboxSlackUsersErrors = {
1351
+ /**
1352
+ * Bad request
1353
+ */
1354
+ 400: {
1355
+ error: string;
1356
+ };
1357
+ /**
1358
+ * Unauthorized
1359
+ */
1360
+ 401: {
1361
+ error: string;
1362
+ };
1363
+ /**
1364
+ * Forbidden
1365
+ */
1366
+ 403: {
1367
+ error: string;
1368
+ };
1369
+ /**
1370
+ * Not found
1371
+ */
1372
+ 404: {
1373
+ error: string;
1374
+ };
1375
+ };
1376
+ export type SandboxSlackUsersError = SandboxSlackUsersErrors[keyof SandboxSlackUsersErrors];
1377
+ export type SandboxSlackUsersResponses = {
1378
+ /**
1379
+ * OK
1380
+ */
1381
+ 200: {
1382
+ users: Array<unknown>;
1383
+ nextCursor: string | null;
1384
+ };
1385
+ };
1386
+ export type SandboxSlackUsersResponse = SandboxSlackUsersResponses[keyof SandboxSlackUsersResponses];
@@ -1,5 +1,5 @@
1
1
  import { type Client, type Options as Options2, type TDataShape } from "./client";
2
- import type { AgentArchiveData, AgentArchiveErrors, AgentArchiveResponses, AgentCreateData, AgentCreateErrors, AgentCreateResponses, AgentDeprecateData, AgentDeprecateErrors, AgentDeprecateResponses, AgentGetBySlugData, AgentGetBySlugErrors, AgentGetBySlugResponses, AgentGetData, AgentGetErrors, AgentGetResponses, AgentListData, AgentListErrors, AgentListResponses, AgentPublishData, AgentPublishErrors, AgentPublishResponses, AgentSearchData, AgentSearchErrors, AgentSearchResponses, AgentUndeprecateData, AgentUndeprecateErrors, AgentUndeprecateResponses, AgentUpdateData, AgentUpdateErrors, AgentUpdateResponses, AgentVersionArchiveData, AgentVersionArchiveErrors, AgentVersionArchiveResponses, AgentVersionCreateData, AgentVersionCreateErrors, AgentVersionCreateResponses, AgentVersionGetData, AgentVersionGetErrors, AgentVersionGetResponses, AgentVersionListData, AgentVersionListErrors, AgentVersionListResponses, BillingDailyUsageData, BillingDailyUsageErrors, BillingDailyUsageResponses, BillingGetData, BillingGetErrors, BillingGetResponses, BillingInvoicePaymentUrlData, BillingInvoicePaymentUrlErrors, BillingInvoicePaymentUrlResponses, BillingInvoicesData, BillingInvoicesErrors, BillingInvoicesResponses, BillingUpdatePlanData, BillingUpdatePlanErrors, BillingUpdatePlanResponses, BlueprintArchiveData, BlueprintArchiveErrors, BlueprintArchiveResponses, BlueprintCreateData, BlueprintCreateErrors, BlueprintCreateResponses, BlueprintDeprecateData, BlueprintDeprecateErrors, BlueprintDeprecateResponses, BlueprintGetData, BlueprintGetErrors, BlueprintGetResponses, BlueprintInstallData, BlueprintInstallErrors, BlueprintInstallResponses, BlueprintListData, BlueprintListErrors, BlueprintListResponses, BlueprintPublishData, BlueprintPublishErrors, BlueprintPublishResponses, BlueprintUndeprecateData, BlueprintUndeprecateErrors, BlueprintUndeprecateResponses, BlueprintUpdateData, BlueprintUpdateErrors, BlueprintUpdateResponses, CredentialArchiveData, CredentialArchiveErrors, CredentialArchiveResponses, CredentialCreateData, CredentialCreateErrors, CredentialCreateResponses, CredentialDeleteData, CredentialDeleteErrors, CredentialDeleteResponses, CredentialGetData, CredentialGetErrors, CredentialGetResponses, CredentialListData, CredentialListErrors, CredentialListResponses, CredentialOauthSessionData, CredentialOauthSessionErrors, CredentialOauthSessionResponses, CredentialOauthStartData, CredentialOauthStartErrors, CredentialOauthStartResponses, CredentialUpdateData, CredentialUpdateErrors, CredentialUpdateResponses, DashboardGetData, DashboardGetErrors, DashboardGetResponses, EnvironmentArchiveData, EnvironmentArchiveErrors, EnvironmentArchiveResponses, EnvironmentCreateData, EnvironmentCreateErrors, EnvironmentCreateResponses, EnvironmentDeleteData, EnvironmentDeleteErrors, EnvironmentDeleteResponses, EnvironmentGetData, EnvironmentGetErrors, EnvironmentGetResponses, EnvironmentListData, EnvironmentListErrors, EnvironmentListResponses, EnvironmentUpdateData, EnvironmentUpdateErrors, EnvironmentUpdateResponses, FileStoreArchiveData, FileStoreArchiveErrors, FileStoreArchiveResponses, FileStoreCreateData, FileStoreCreateErrors, FileStoreCreateResponses, FileStoreFilesDeleteData, FileStoreFilesDeleteErrors, FileStoreFilesDeleteResponses, FileStoreFilesFinalizeUploadData, FileStoreFilesFinalizeUploadErrors, FileStoreFilesFinalizeUploadResponses, FileStoreFilesListData, FileStoreFilesListErrors, FileStoreFilesListResponses, FileStoreFilesPresignDownloadData, FileStoreFilesPresignDownloadErrors, FileStoreFilesPresignDownloadResponses, FileStoreFilesStartUploadData, FileStoreFilesStartUploadErrors, FileStoreFilesStartUploadResponses, FileStoreGetData, FileStoreGetErrors, FileStoreGetResponses, FileStoreListData, FileStoreListErrors, FileStoreListResponses, FileStoreUpdateData, FileStoreUpdateErrors, FileStoreUpdateResponses, GithubConnectData, GithubConnectErrors, GithubConnectResponses, GithubInstallData, GithubInstallErrors, GithubInstallResponses, GithubReposData, GithubReposErrors, GithubReposResponses, GithubStatusData, GithubStatusErrors, GithubStatusResponses, GithubUninstallData, GithubUninstallErrors, GithubUninstallResponses, McpArchiveData, McpArchiveErrors, McpArchiveResponses, McpCreateData, McpCreateErrors, McpCreateResponses, McpDeprecateData, McpDeprecateErrors, McpDeprecateResponses, McpGetBySlugData, McpGetBySlugErrors, McpGetBySlugResponses, McpGetData, McpGetErrors, McpGetResponses, McpListData, McpListErrors, McpListResponses, McpOauthConnectData, McpOauthConnectErrors, McpOauthConnectResponses, McpOauthSessionData, McpOauthSessionErrors, McpOauthSessionResponses, McpPublishData, McpPublishErrors, McpPublishResponses, McpSearchData, McpSearchErrors, McpSearchResponses, McpUndeprecateData, McpUndeprecateErrors, McpUndeprecateResponses, McpUpdateData, McpUpdateErrors, McpUpdateResponses, MeGetData, MeGetErrors, MeGetResponses, MemoryStoreArchiveData, MemoryStoreArchiveErrors, MemoryStoreArchiveResponses, MemoryStoreCreateData, MemoryStoreCreateErrors, MemoryStoreCreateResponses, MemoryStoreFilesDeleteData, MemoryStoreFilesDeleteErrors, MemoryStoreFilesDeleteResponses, MemoryStoreFilesFinalizeUploadData, MemoryStoreFilesFinalizeUploadErrors, MemoryStoreFilesFinalizeUploadResponses, MemoryStoreFilesListData, MemoryStoreFilesListErrors, MemoryStoreFilesListResponses, MemoryStoreFilesPresignDownloadData, MemoryStoreFilesPresignDownloadErrors, MemoryStoreFilesPresignDownloadResponses, MemoryStoreFilesStartUploadData, MemoryStoreFilesStartUploadErrors, MemoryStoreFilesStartUploadResponses, MemoryStoreGetData, MemoryStoreGetErrors, MemoryStoreGetResponses, MemoryStoreListData, MemoryStoreListErrors, MemoryStoreListResponses, MemoryStoreUpdateData, MemoryStoreUpdateErrors, MemoryStoreUpdateResponses, ModelListData, ModelListResponses, OnboardingSetupPersonalOrgData, OnboardingSetupPersonalOrgErrors, OnboardingSetupPersonalOrgResponses, OnboardingStartData, OnboardingStartErrors, OnboardingStartResponses, PatCreateData, PatCreateErrors, PatCreateResponses, PatListData, PatListErrors, PatListResponses, PatRevokeData, PatRevokeErrors, PatRevokeResponses, PodArchiveData, PodArchiveErrors, PodArchiveResponses, PodCreateData, PodCreateErrors, PodCreateResponses, PodGetData, PodGetErrors, PodGetResponses, PodListData, PodListErrors, PodListResponses, PodMemberAddData, PodMemberAddErrors, PodMemberAddResponses, PodMemberListData, PodMemberListErrors, PodMemberListResponses, PodMemberRemoveData, PodMemberRemoveErrors, PodMemberRemoveResponses, PodSandboxProvisionData, PodSandboxProvisionErrors, PodSandboxProvisionResponses, PodSandboxStatusData, PodSandboxStatusErrors, PodSandboxStatusResponses, PodUpdateData, PodUpdateErrors, PodUpdateResponses, PodVaultAddData, PodVaultAddErrors, PodVaultAddResponses, PodVaultListData, PodVaultListErrors, PodVaultListResponses, PodVaultRemoveData, PodVaultRemoveErrors, PodVaultRemoveResponses, ProjectAgentAddData, ProjectAgentAddErrors, ProjectAgentAddResponses, ProjectAgentListData, ProjectAgentListErrors, ProjectAgentListResponses, ProjectAgentRemoveData, ProjectAgentRemoveErrors, ProjectAgentRemoveResponses, ProjectAgentUpdateData, ProjectAgentUpdateErrors, ProjectAgentUpdateResponses, ProjectArchiveData, ProjectArchiveErrors, ProjectArchiveResponses, ProjectCreateData, ProjectCreateErrors, ProjectCreateResponses, ProjectFileStoreAddData, ProjectFileStoreAddErrors, ProjectFileStoreAddResponses, ProjectFileStoreListData, ProjectFileStoreListErrors, ProjectFileStoreListResponses, ProjectFileStoreRemoveData, ProjectFileStoreRemoveErrors, ProjectFileStoreRemoveResponses, ProjectGetData, ProjectGetErrors, ProjectGetResponses, ProjectListData, ProjectListErrors, ProjectListResponses, ProjectMemoryStoreAddData, ProjectMemoryStoreAddErrors, ProjectMemoryStoreAddResponses, ProjectMemoryStoreListData, ProjectMemoryStoreListErrors, ProjectMemoryStoreListResponses, ProjectMemoryStoreRemoveData, ProjectMemoryStoreRemoveErrors, ProjectMemoryStoreRemoveResponses, ProjectUpdateData, ProjectUpdateErrors, ProjectUpdateResponses, PublisherClaimOrgData, PublisherClaimOrgErrors, PublisherClaimOrgResponses, PublisherGetData, PublisherGetErrors, PublisherGetResponses, PublisherMeData, PublisherMeErrors, PublisherMeResponses, PublisherUpdateData, PublisherUpdateErrors, PublisherUpdateResponses, RegistryAgentGetData, RegistryAgentGetErrors, RegistryAgentGetResponses, RegistryAgentListData, RegistryAgentListErrors, RegistryAgentListResponses, RegistryBlueprintGetData, RegistryBlueprintGetErrors, RegistryBlueprintGetResponses, RegistryMcpGetData, RegistryMcpGetErrors, RegistryMcpGetResponses, RegistryMcpListData, RegistryMcpListErrors, RegistryMcpListResponses, RegistryReplayFilesPresignDownloadData, RegistryReplayFilesPresignDownloadErrors, RegistryReplayFilesPresignDownloadResponses, RegistryReplayGetData, RegistryReplayGetErrors, RegistryReplayGetResponses, RegistryReplaySharedFilesPresignDownloadData, RegistryReplaySharedFilesPresignDownloadErrors, RegistryReplaySharedFilesPresignDownloadResponses, RegistryReplaySharedGetData, RegistryReplaySharedGetErrors, RegistryReplaySharedGetResponses, RegistrySkillGetData, RegistrySkillGetErrors, RegistrySkillGetResponses, RegistrySkillListData, RegistrySkillListErrors, RegistrySkillListResponses, ReplayArchiveData, ReplayArchiveErrors, ReplayArchiveResponses, ReplayCreateData, ReplayCreateErrors, ReplayCreateResponses, ReplayDeprecateData, ReplayDeprecateErrors, ReplayDeprecateResponses, ReplayGetData, ReplayGetErrors, ReplayGetResponses, ReplayListData, ReplayListErrors, ReplayListResponses, ReplayPublishData, ReplayPublishErrors, ReplayPublishResponses, ReplayShareData, ReplayShareErrors, ReplayShareResponses, ReplayUndeprecateData, ReplayUndeprecateErrors, ReplayUndeprecateResponses, ReplayUpdateData, ReplayUpdateErrors, ReplayUpdateResponses, SessionArchiveData, SessionArchiveErrors, SessionArchiveResponses, SessionAuthRequirementsData, SessionAuthRequirementsErrors, SessionAuthRequirementsResponses, SessionCreateData, SessionCreateErrors, SessionCreateResponses, SessionFilesPresignDownloadData, SessionFilesPresignDownloadErrors, SessionFilesPresignDownloadResponses, SessionFilesPresignUploadData, SessionFilesPresignUploadErrors, SessionFilesPresignUploadResponses, SessionGetData, SessionGetErrors, SessionGetResponses, SessionListData, SessionListErrors, SessionListResponses, SessionMessagesListData, SessionMessagesListErrors, SessionMessagesListResponses, SessionUpdateData, SessionUpdateErrors, SessionUpdateResponses, SessionUrlData, SessionUrlErrors, SessionUrlResponses, SkillArchiveData, SkillArchiveErrors, SkillArchiveResponses, SkillCopyData, SkillCopyErrors, SkillCopyResponses, SkillCreateData, SkillCreateErrors, SkillCreateResponses, SkillDeprecateData, SkillDeprecateErrors, SkillDeprecateResponses, SkillGetBySlugData, SkillGetBySlugErrors, SkillGetBySlugResponses, SkillGetData, SkillGetErrors, SkillGetResponses, SkillListData, SkillListErrors, SkillListResponses, SkillPublishData, SkillPublishErrors, SkillPublishResponses, SkillSearchData, SkillSearchErrors, SkillSearchResponses, SkillUndeprecateData, SkillUndeprecateErrors, SkillUndeprecateResponses, SkillUpdateData, SkillUpdateErrors, SkillUpdateResponses, SkillVersionArchiveData, SkillVersionArchiveErrors, SkillVersionArchiveResponses, SkillVersionCreateData, SkillVersionCreateErrors, SkillVersionCreateResponses, SkillVersionDataData, SkillVersionDataErrors, SkillVersionDataResponses, SkillVersionGetData, SkillVersionGetErrors, SkillVersionGetResponses, SkillVersionListData, SkillVersionListErrors, SkillVersionListResponses, SlackChannelListData, SlackChannelListErrors, SlackChannelListResponses, SlackChannelSetData, SlackChannelSetErrors, SlackChannelSetResponses, SlackChannelUnsetData, SlackChannelUnsetErrors, SlackChannelUnsetResponses, SlackInstallData, SlackInstallErrors, SlackInstallResponses, SlackStatusData, SlackStatusErrors, SlackStatusResponses, SlackUninstallData, SlackUninstallErrors, SlackUninstallResponses, TriggerArchiveData, TriggerArchiveErrors, TriggerArchiveResponses, TriggerCreateData, TriggerCreateErrors, TriggerCreateResponses, TriggerGetData, TriggerGetErrors, TriggerGetResponses, TriggerListData, TriggerListErrors, TriggerListResponses, TriggerUpdateData, TriggerUpdateErrors, TriggerUpdateResponses, VaultArchiveData, VaultArchiveErrors, VaultArchiveResponses, VaultCreateData, VaultCreateErrors, VaultCreateResponses, VaultDeleteData, VaultDeleteErrors, VaultDeleteResponses, VaultGetData, VaultGetErrors, VaultGetResponses, VaultListData, VaultListErrors, VaultListResponses, VaultUpdateData, VaultUpdateErrors, VaultUpdateResponses, WebhookTriggerArchiveData, WebhookTriggerArchiveErrors, WebhookTriggerArchiveResponses, WebhookTriggerCreateData, WebhookTriggerCreateErrors, WebhookTriggerCreateResponses, WebhookTriggerGetData, WebhookTriggerGetErrors, WebhookTriggerGetResponses, WebhookTriggerListData, WebhookTriggerListErrors, WebhookTriggerListResponses, WebhookTriggerUpdateData, WebhookTriggerUpdateErrors, WebhookTriggerUpdateResponses } from "./types.gen";
2
+ import type { AgentArchiveData, AgentArchiveErrors, AgentArchiveResponses, AgentCreateData, AgentCreateErrors, AgentCreateResponses, AgentDeprecateData, AgentDeprecateErrors, AgentDeprecateResponses, AgentGetBySlugData, AgentGetBySlugErrors, AgentGetBySlugResponses, AgentGetData, AgentGetErrors, AgentGetResponses, AgentListData, AgentListErrors, AgentListResponses, AgentPublishData, AgentPublishErrors, AgentPublishResponses, AgentSearchData, AgentSearchErrors, AgentSearchResponses, AgentUndeprecateData, AgentUndeprecateErrors, AgentUndeprecateResponses, AgentUpdateData, AgentUpdateErrors, AgentUpdateResponses, AgentVersionArchiveData, AgentVersionArchiveErrors, AgentVersionArchiveResponses, AgentVersionCreateData, AgentVersionCreateErrors, AgentVersionCreateResponses, AgentVersionGetData, AgentVersionGetErrors, AgentVersionGetResponses, AgentVersionListData, AgentVersionListErrors, AgentVersionListResponses, BillingDailyUsageData, BillingDailyUsageErrors, BillingDailyUsageResponses, BillingGetData, BillingGetErrors, BillingGetResponses, BillingInvoicePaymentUrlData, BillingInvoicePaymentUrlErrors, BillingInvoicePaymentUrlResponses, BillingInvoicesData, BillingInvoicesErrors, BillingInvoicesResponses, BillingUpdatePlanData, BillingUpdatePlanErrors, BillingUpdatePlanResponses, BlueprintArchiveData, BlueprintArchiveErrors, BlueprintArchiveResponses, BlueprintCreateData, BlueprintCreateErrors, BlueprintCreateResponses, BlueprintDeprecateData, BlueprintDeprecateErrors, BlueprintDeprecateResponses, BlueprintGetData, BlueprintGetErrors, BlueprintGetResponses, BlueprintInstallData, BlueprintInstallErrors, BlueprintInstallResponses, BlueprintListData, BlueprintListErrors, BlueprintListResponses, BlueprintPublishData, BlueprintPublishErrors, BlueprintPublishResponses, BlueprintUndeprecateData, BlueprintUndeprecateErrors, BlueprintUndeprecateResponses, BlueprintUpdateData, BlueprintUpdateErrors, BlueprintUpdateResponses, CredentialArchiveData, CredentialArchiveErrors, CredentialArchiveResponses, CredentialCreateData, CredentialCreateErrors, CredentialCreateResponses, CredentialDeleteData, CredentialDeleteErrors, CredentialDeleteResponses, CredentialGetData, CredentialGetErrors, CredentialGetResponses, CredentialListData, CredentialListErrors, CredentialListResponses, CredentialOauthSessionData, CredentialOauthSessionErrors, CredentialOauthSessionResponses, CredentialOauthStartData, CredentialOauthStartErrors, CredentialOauthStartResponses, CredentialUpdateData, CredentialUpdateErrors, CredentialUpdateResponses, DashboardGetData, DashboardGetErrors, DashboardGetResponses, EnvironmentArchiveData, EnvironmentArchiveErrors, EnvironmentArchiveResponses, EnvironmentCreateData, EnvironmentCreateErrors, EnvironmentCreateResponses, EnvironmentDeleteData, EnvironmentDeleteErrors, EnvironmentDeleteResponses, EnvironmentGetData, EnvironmentGetErrors, EnvironmentGetResponses, EnvironmentListData, EnvironmentListErrors, EnvironmentListResponses, EnvironmentUpdateData, EnvironmentUpdateErrors, EnvironmentUpdateResponses, FileStoreArchiveData, FileStoreArchiveErrors, FileStoreArchiveResponses, FileStoreCreateData, FileStoreCreateErrors, FileStoreCreateResponses, FileStoreFilesDeleteData, FileStoreFilesDeleteErrors, FileStoreFilesDeleteResponses, FileStoreFilesFinalizeUploadData, FileStoreFilesFinalizeUploadErrors, FileStoreFilesFinalizeUploadResponses, FileStoreFilesListData, FileStoreFilesListErrors, FileStoreFilesListResponses, FileStoreFilesPresignDownloadData, FileStoreFilesPresignDownloadErrors, FileStoreFilesPresignDownloadResponses, FileStoreFilesStartUploadData, FileStoreFilesStartUploadErrors, FileStoreFilesStartUploadResponses, FileStoreGetData, FileStoreGetErrors, FileStoreGetResponses, FileStoreListData, FileStoreListErrors, FileStoreListResponses, FileStoreUpdateData, FileStoreUpdateErrors, FileStoreUpdateResponses, GithubConnectData, GithubConnectErrors, GithubConnectResponses, GithubInstallData, GithubInstallErrors, GithubInstallResponses, GithubReposData, GithubReposErrors, GithubReposResponses, GithubStatusData, GithubStatusErrors, GithubStatusResponses, GithubUninstallData, GithubUninstallErrors, GithubUninstallResponses, GoogleConfigDeleteData, GoogleConfigDeleteErrors, GoogleConfigDeleteResponses, GoogleConfigSaveData, GoogleConfigSaveErrors, GoogleConfigSaveResponses, GoogleConnectData, GoogleConnectErrors, GoogleConnectResponses, GoogleDisconnectData, GoogleDisconnectErrors, GoogleDisconnectResponses, GoogleStatusData, GoogleStatusErrors, GoogleStatusResponses, McpArchiveData, McpArchiveErrors, McpArchiveResponses, McpCreateData, McpCreateErrors, McpCreateResponses, McpDeprecateData, McpDeprecateErrors, McpDeprecateResponses, McpGetBySlugData, McpGetBySlugErrors, McpGetBySlugResponses, McpGetData, McpGetErrors, McpGetResponses, McpListData, McpListErrors, McpListResponses, McpOauthConnectData, McpOauthConnectErrors, McpOauthConnectResponses, McpOauthSessionData, McpOauthSessionErrors, McpOauthSessionResponses, McpPublishData, McpPublishErrors, McpPublishResponses, McpSearchData, McpSearchErrors, McpSearchResponses, McpUndeprecateData, McpUndeprecateErrors, McpUndeprecateResponses, McpUpdateData, McpUpdateErrors, McpUpdateResponses, MeGetData, MeGetErrors, MeGetResponses, MemoryStoreArchiveData, MemoryStoreArchiveErrors, MemoryStoreArchiveResponses, MemoryStoreCreateData, MemoryStoreCreateErrors, MemoryStoreCreateResponses, MemoryStoreFilesDeleteData, MemoryStoreFilesDeleteErrors, MemoryStoreFilesDeleteResponses, MemoryStoreFilesFinalizeUploadData, MemoryStoreFilesFinalizeUploadErrors, MemoryStoreFilesFinalizeUploadResponses, MemoryStoreFilesListData, MemoryStoreFilesListErrors, MemoryStoreFilesListResponses, MemoryStoreFilesPresignDownloadData, MemoryStoreFilesPresignDownloadErrors, MemoryStoreFilesPresignDownloadResponses, MemoryStoreFilesStartUploadData, MemoryStoreFilesStartUploadErrors, MemoryStoreFilesStartUploadResponses, MemoryStoreGetData, MemoryStoreGetErrors, MemoryStoreGetResponses, MemoryStoreListData, MemoryStoreListErrors, MemoryStoreListResponses, MemoryStoreUpdateData, MemoryStoreUpdateErrors, MemoryStoreUpdateResponses, ModelListData, ModelListResponses, OnboardingSetupPersonalOrgData, OnboardingSetupPersonalOrgErrors, OnboardingSetupPersonalOrgResponses, OnboardingStartData, OnboardingStartErrors, OnboardingStartResponses, PatCreateData, PatCreateErrors, PatCreateResponses, PatListData, PatListErrors, PatListResponses, PatRevokeData, PatRevokeErrors, PatRevokeResponses, PodArchiveData, PodArchiveErrors, PodArchiveResponses, PodCreateData, PodCreateErrors, PodCreateResponses, PodGetData, PodGetErrors, PodGetResponses, PodListData, PodListErrors, PodListResponses, PodMemberAddData, PodMemberAddErrors, PodMemberAddResponses, PodMemberListData, PodMemberListErrors, PodMemberListResponses, PodMemberRemoveData, PodMemberRemoveErrors, PodMemberRemoveResponses, PodSandboxProvisionData, PodSandboxProvisionErrors, PodSandboxProvisionResponses, PodSandboxStatusData, PodSandboxStatusErrors, PodSandboxStatusResponses, PodUpdateData, PodUpdateErrors, PodUpdateResponses, PodVaultAddData, PodVaultAddErrors, PodVaultAddResponses, PodVaultListData, PodVaultListErrors, PodVaultListResponses, PodVaultRemoveData, PodVaultRemoveErrors, PodVaultRemoveResponses, ProjectAgentAddData, ProjectAgentAddErrors, ProjectAgentAddResponses, ProjectAgentListData, ProjectAgentListErrors, ProjectAgentListResponses, ProjectAgentRemoveData, ProjectAgentRemoveErrors, ProjectAgentRemoveResponses, ProjectAgentUpdateData, ProjectAgentUpdateErrors, ProjectAgentUpdateResponses, ProjectArchiveData, ProjectArchiveErrors, ProjectArchiveResponses, ProjectCreateData, ProjectCreateErrors, ProjectCreateResponses, ProjectFileStoreAddData, ProjectFileStoreAddErrors, ProjectFileStoreAddResponses, ProjectFileStoreListData, ProjectFileStoreListErrors, ProjectFileStoreListResponses, ProjectFileStoreRemoveData, ProjectFileStoreRemoveErrors, ProjectFileStoreRemoveResponses, ProjectGetData, ProjectGetErrors, ProjectGetResponses, ProjectListData, ProjectListErrors, ProjectListResponses, ProjectMemoryStoreAddData, ProjectMemoryStoreAddErrors, ProjectMemoryStoreAddResponses, ProjectMemoryStoreListData, ProjectMemoryStoreListErrors, ProjectMemoryStoreListResponses, ProjectMemoryStoreRemoveData, ProjectMemoryStoreRemoveErrors, ProjectMemoryStoreRemoveResponses, ProjectUpdateData, ProjectUpdateErrors, ProjectUpdateResponses, PublisherClaimOrgData, PublisherClaimOrgErrors, PublisherClaimOrgResponses, PublisherGetData, PublisherGetErrors, PublisherGetResponses, PublisherMeData, PublisherMeErrors, PublisherMeResponses, PublisherUpdateData, PublisherUpdateErrors, PublisherUpdateResponses, RegistryAgentGetData, RegistryAgentGetErrors, RegistryAgentGetResponses, RegistryAgentListData, RegistryAgentListErrors, RegistryAgentListResponses, RegistryBlueprintGetData, RegistryBlueprintGetErrors, RegistryBlueprintGetResponses, RegistryMcpGetData, RegistryMcpGetErrors, RegistryMcpGetResponses, RegistryMcpListData, RegistryMcpListErrors, RegistryMcpListResponses, RegistryReplayFilesPresignDownloadData, RegistryReplayFilesPresignDownloadErrors, RegistryReplayFilesPresignDownloadResponses, RegistryReplayGetData, RegistryReplayGetErrors, RegistryReplayGetResponses, RegistryReplaySharedFilesPresignDownloadData, RegistryReplaySharedFilesPresignDownloadErrors, RegistryReplaySharedFilesPresignDownloadResponses, RegistryReplaySharedGetData, RegistryReplaySharedGetErrors, RegistryReplaySharedGetResponses, RegistrySkillGetData, RegistrySkillGetErrors, RegistrySkillGetResponses, RegistrySkillListData, RegistrySkillListErrors, RegistrySkillListResponses, ReplayArchiveData, ReplayArchiveErrors, ReplayArchiveResponses, ReplayCreateData, ReplayCreateErrors, ReplayCreateResponses, ReplayDeprecateData, ReplayDeprecateErrors, ReplayDeprecateResponses, ReplayGetData, ReplayGetErrors, ReplayGetResponses, ReplayListData, ReplayListErrors, ReplayListResponses, ReplayPublishData, ReplayPublishErrors, ReplayPublishResponses, ReplayShareData, ReplayShareErrors, ReplayShareResponses, ReplayUndeprecateData, ReplayUndeprecateErrors, ReplayUndeprecateResponses, ReplayUpdateData, ReplayUpdateErrors, ReplayUpdateResponses, SessionArchiveData, SessionArchiveErrors, SessionArchiveResponses, SessionAuthRequirementsData, SessionAuthRequirementsErrors, SessionAuthRequirementsResponses, SessionCreateData, SessionCreateErrors, SessionCreateResponses, SessionFilesPresignDownloadData, SessionFilesPresignDownloadErrors, SessionFilesPresignDownloadResponses, SessionFilesPresignUploadData, SessionFilesPresignUploadErrors, SessionFilesPresignUploadResponses, SessionGetData, SessionGetErrors, SessionGetResponses, SessionListData, SessionListErrors, SessionListResponses, SessionMessagesListData, SessionMessagesListErrors, SessionMessagesListResponses, SessionUpdateData, SessionUpdateErrors, SessionUpdateResponses, SessionUrlData, SessionUrlErrors, SessionUrlResponses, SkillArchiveData, SkillArchiveErrors, SkillArchiveResponses, SkillCopyData, SkillCopyErrors, SkillCopyResponses, SkillCreateData, SkillCreateErrors, SkillCreateResponses, SkillDeprecateData, SkillDeprecateErrors, SkillDeprecateResponses, SkillGetBySlugData, SkillGetBySlugErrors, SkillGetBySlugResponses, SkillGetData, SkillGetErrors, SkillGetResponses, SkillListData, SkillListErrors, SkillListResponses, SkillPublishData, SkillPublishErrors, SkillPublishResponses, SkillSearchData, SkillSearchErrors, SkillSearchResponses, SkillUndeprecateData, SkillUndeprecateErrors, SkillUndeprecateResponses, SkillUpdateData, SkillUpdateErrors, SkillUpdateResponses, SkillVersionArchiveData, SkillVersionArchiveErrors, SkillVersionArchiveResponses, SkillVersionCreateData, SkillVersionCreateErrors, SkillVersionCreateResponses, SkillVersionDataData, SkillVersionDataErrors, SkillVersionDataResponses, SkillVersionGetData, SkillVersionGetErrors, SkillVersionGetResponses, SkillVersionListData, SkillVersionListErrors, SkillVersionListResponses, SlackChannelListData, SlackChannelListErrors, SlackChannelListResponses, SlackChannelSetData, SlackChannelSetErrors, SlackChannelSetResponses, SlackChannelUnsetData, SlackChannelUnsetErrors, SlackChannelUnsetResponses, SlackInstallData, SlackInstallErrors, SlackInstallResponses, SlackStatusData, SlackStatusErrors, SlackStatusResponses, SlackUninstallData, SlackUninstallErrors, SlackUninstallResponses, TopologyGetData, TopologyGetErrors, TopologyGetResponses, TriggerArchiveData, TriggerArchiveErrors, TriggerArchiveResponses, TriggerCreateData, TriggerCreateErrors, TriggerCreateResponses, TriggerGetData, TriggerGetErrors, TriggerGetResponses, TriggerListData, TriggerListErrors, TriggerListResponses, TriggerUpdateData, TriggerUpdateErrors, TriggerUpdateResponses, VaultArchiveData, VaultArchiveErrors, VaultArchiveResponses, VaultCreateData, VaultCreateErrors, VaultCreateResponses, VaultDeleteData, VaultDeleteErrors, VaultDeleteResponses, VaultGetData, VaultGetErrors, VaultGetResponses, VaultListData, VaultListErrors, VaultListResponses, VaultUpdateData, VaultUpdateErrors, VaultUpdateResponses, WebhookTriggerArchiveData, WebhookTriggerArchiveErrors, WebhookTriggerArchiveResponses, WebhookTriggerCreateData, WebhookTriggerCreateErrors, WebhookTriggerCreateResponses, WebhookTriggerGetData, WebhookTriggerGetErrors, WebhookTriggerGetResponses, WebhookTriggerListData, WebhookTriggerListErrors, WebhookTriggerListResponses, WebhookTriggerUpdateData, WebhookTriggerUpdateErrors, WebhookTriggerUpdateResponses } from "./types.gen";
3
3
  export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options2<TData, ThrowOnError, TResponse> & {
4
4
  /**
5
5
  * You can provide a client instance returned by `createClient()` instead of
@@ -247,6 +247,32 @@ export declare class Github extends HeyApiClient {
247
247
  */
248
248
  repos<ThrowOnError extends boolean = false>(options?: Options<GithubReposData, ThrowOnError>): import("./client").RequestResult<GithubReposResponses, GithubReposErrors, ThrowOnError, "fields">;
249
249
  }
250
+ export declare class Config extends HeyApiClient {
251
+ /**
252
+ * Remove the org's Google Workspace OAuth app configuration
253
+ */
254
+ delete<ThrowOnError extends boolean = false>(options?: Options<GoogleConfigDeleteData, ThrowOnError>): import("./client").RequestResult<GoogleConfigDeleteResponses, GoogleConfigDeleteErrors, ThrowOnError, "fields">;
255
+ /**
256
+ * Save the org's Google Workspace OAuth app credentials (BYO)
257
+ */
258
+ save<ThrowOnError extends boolean = false>(options?: Options<GoogleConfigSaveData, ThrowOnError>): import("./client").RequestResult<GoogleConfigSaveResponses, GoogleConfigSaveErrors, ThrowOnError, "fields">;
259
+ }
260
+ export declare class Google extends HeyApiClient {
261
+ /**
262
+ * Report the org's Google Workspace OAuth app configuration
263
+ */
264
+ status<ThrowOnError extends boolean = false>(options?: Options<GoogleStatusData, ThrowOnError>): import("./client").RequestResult<GoogleStatusResponses, GoogleStatusErrors, ThrowOnError, "fields">;
265
+ /**
266
+ * Disconnect the Google Workspace account stored in the given vault
267
+ */
268
+ disconnect<ThrowOnError extends boolean = false>(options: Options<GoogleDisconnectData, ThrowOnError>): import("./client").RequestResult<GoogleDisconnectResponses, GoogleDisconnectErrors, ThrowOnError, "fields">;
269
+ /**
270
+ * Begin connecting a Google Workspace account into the given vault
271
+ */
272
+ connect<ThrowOnError extends boolean = false>(options: Options<GoogleConnectData, ThrowOnError>): import("./client").RequestResult<GoogleConnectResponses, GoogleConnectErrors, ThrowOnError, "fields">;
273
+ private _config?;
274
+ get config(): Config;
275
+ }
250
276
  export declare class Oauth extends HeyApiClient {
251
277
  /**
252
278
  * Start OAuth for an MCP (or confirm it is already connected)
@@ -707,6 +733,12 @@ export declare class Skill extends HeyApiClient {
707
733
  private _version?;
708
734
  get version(): Version2;
709
735
  }
736
+ export declare class Topology extends HeyApiClient {
737
+ /**
738
+ * Get agent-stack topology
739
+ */
740
+ get<ThrowOnError extends boolean = false>(options?: Options<TopologyGetData, ThrowOnError>): import("./client").RequestResult<TopologyGetResponses, TopologyGetErrors, ThrowOnError, "fields">;
741
+ }
710
742
  export declare class Trigger extends HeyApiClient {
711
743
  /**
712
744
  * List cron triggers in a project
@@ -943,6 +975,8 @@ export declare class RenClient extends HeyApiClient {
943
975
  get fileStore(): FileStore;
944
976
  private _github?;
945
977
  get github(): Github;
978
+ private _google?;
979
+ get google(): Google;
946
980
  private _mcp?;
947
981
  get mcp(): Mcp;
948
982
  private _me?;
@@ -967,6 +1001,8 @@ export declare class RenClient extends HeyApiClient {
967
1001
  get session(): Session;
968
1002
  private _skill?;
969
1003
  get skill(): Skill;
1004
+ private _topology?;
1005
+ get topology(): Topology;
970
1006
  private _trigger?;
971
1007
  get trigger(): Trigger;
972
1008
  private _webhookTrigger?;