@apteva/integrations 0.3.47 → 0.3.59
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/http-executor.d.ts +1 -0
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +128 -5
- package/dist/http-executor.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/debugbear.json +194 -0
- package/src/apps/deepgram.json +347 -0
- package/src/apps/disify.json +47 -0
- package/src/apps/gmail.json +478 -1
- package/src/apps/google-ads.json +1 -1
- package/src/apps/google-docs.json +382 -78
- package/src/apps/google-drive.json +333 -28
- package/src/apps/google-sheets.json +1 -1
- package/src/apps/heygen.json +713 -516
- package/src/apps/omnikit-intelligence.json +22 -7
- package/src/apps/omnikit-sites.json +246 -0
- package/src/apps/pagespeed-insights.json +66 -0
- package/src/apps/socialcast.json +1 -1
- package/src/apps/webpagetest.json +159 -0
package/src/apps/gmail.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"slug": "gmail",
|
|
3
3
|
"name": "Gmail",
|
|
4
4
|
"description": "MCP server for Gmail - send, read, search emails, manage labels, drafts, threads, filters, and attachments via the Gmail REST API",
|
|
5
|
-
"logo": "https://
|
|
5
|
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/7/7e/Gmail_icon_%282020%29.svg",
|
|
6
6
|
"categories": [
|
|
7
7
|
"email",
|
|
8
8
|
"google",
|
|
@@ -58,6 +58,16 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"tools": [
|
|
61
|
+
{
|
|
62
|
+
"name": "get_profile",
|
|
63
|
+
"description": "Get the current user's Gmail profile including email address, total messages, total threads, and history ID",
|
|
64
|
+
"method": "GET",
|
|
65
|
+
"path": "/users/me/profile",
|
|
66
|
+
"input_schema": {
|
|
67
|
+
"type": "object",
|
|
68
|
+
"properties": {}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
61
71
|
{
|
|
62
72
|
"name": "send_email",
|
|
63
73
|
"description": "Send an email message. Provide plain-text fields (to, subject, body) \u2014 the system handles RFC 2822 encoding and UTF-8 character support automatically. For HTML emails, use htmlBody instead of or alongside body.",
|
|
@@ -305,6 +315,27 @@
|
|
|
305
315
|
]
|
|
306
316
|
}
|
|
307
317
|
},
|
|
318
|
+
{
|
|
319
|
+
"name": "batch_delete_messages",
|
|
320
|
+
"description": "Permanently delete multiple messages at once (bypasses trash, irreversible)",
|
|
321
|
+
"method": "POST",
|
|
322
|
+
"path": "/users/me/messages/batchDelete",
|
|
323
|
+
"input_schema": {
|
|
324
|
+
"type": "object",
|
|
325
|
+
"properties": {
|
|
326
|
+
"ids": {
|
|
327
|
+
"type": "array",
|
|
328
|
+
"items": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
"description": "List of message IDs to permanently delete (max 1000)"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"required": [
|
|
335
|
+
"ids"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
},
|
|
308
339
|
{
|
|
309
340
|
"name": "list_threads",
|
|
310
341
|
"description": "List email thread IDs with optional search. Returns thread IDs and snippets \u2014 use gmail-get-thread to fetch full conversation messages",
|
|
@@ -439,6 +470,24 @@
|
|
|
439
470
|
]
|
|
440
471
|
}
|
|
441
472
|
},
|
|
473
|
+
{
|
|
474
|
+
"name": "delete_thread",
|
|
475
|
+
"description": "Permanently delete an entire thread and all its messages (bypasses trash, irreversible)",
|
|
476
|
+
"method": "DELETE",
|
|
477
|
+
"path": "/users/me/threads/{threadId}",
|
|
478
|
+
"input_schema": {
|
|
479
|
+
"type": "object",
|
|
480
|
+
"properties": {
|
|
481
|
+
"threadId": {
|
|
482
|
+
"type": "string",
|
|
483
|
+
"description": "Thread ID to permanently delete"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"required": [
|
|
487
|
+
"threadId"
|
|
488
|
+
]
|
|
489
|
+
}
|
|
490
|
+
},
|
|
442
491
|
{
|
|
443
492
|
"name": "list_labels",
|
|
444
493
|
"description": "List all labels in the mailbox including system labels (INBOX, SENT, TRASH, etc.) and user-created labels",
|
|
@@ -686,6 +735,59 @@
|
|
|
686
735
|
]
|
|
687
736
|
}
|
|
688
737
|
},
|
|
738
|
+
{
|
|
739
|
+
"name": "update_draft",
|
|
740
|
+
"description": "Update an existing draft's content (replaces the entire draft message). Provide plain-text fields — the system handles RFC 2822 encoding automatically.",
|
|
741
|
+
"method": "PUT",
|
|
742
|
+
"path": "/users/me/drafts/{draftId}",
|
|
743
|
+
"input_schema": {
|
|
744
|
+
"type": "object",
|
|
745
|
+
"properties": {
|
|
746
|
+
"draftId": {
|
|
747
|
+
"type": "string",
|
|
748
|
+
"description": "Draft ID to update"
|
|
749
|
+
},
|
|
750
|
+
"to": {
|
|
751
|
+
"type": "string",
|
|
752
|
+
"description": "Recipient email address(es), comma-separated"
|
|
753
|
+
},
|
|
754
|
+
"subject": {
|
|
755
|
+
"type": "string",
|
|
756
|
+
"description": "Email subject line"
|
|
757
|
+
},
|
|
758
|
+
"body": {
|
|
759
|
+
"type": "string",
|
|
760
|
+
"description": "Plain text email body"
|
|
761
|
+
},
|
|
762
|
+
"htmlBody": {
|
|
763
|
+
"type": "string",
|
|
764
|
+
"description": "HTML email body (optional)"
|
|
765
|
+
},
|
|
766
|
+
"cc": {
|
|
767
|
+
"type": "string",
|
|
768
|
+
"description": "CC recipients (comma-separated)"
|
|
769
|
+
},
|
|
770
|
+
"bcc": {
|
|
771
|
+
"type": "string",
|
|
772
|
+
"description": "BCC recipients (comma-separated)"
|
|
773
|
+
},
|
|
774
|
+
"replyTo": {
|
|
775
|
+
"type": "string",
|
|
776
|
+
"description": "Reply-To address"
|
|
777
|
+
},
|
|
778
|
+
"threadId": {
|
|
779
|
+
"type": "string",
|
|
780
|
+
"description": "Thread ID if this draft is a reply"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"required": [
|
|
784
|
+
"draftId",
|
|
785
|
+
"to",
|
|
786
|
+
"subject",
|
|
787
|
+
"body"
|
|
788
|
+
]
|
|
789
|
+
}
|
|
790
|
+
},
|
|
689
791
|
{
|
|
690
792
|
"name": "delete_draft",
|
|
691
793
|
"description": "Permanently delete a draft",
|
|
@@ -745,6 +847,51 @@
|
|
|
745
847
|
]
|
|
746
848
|
}
|
|
747
849
|
},
|
|
850
|
+
{
|
|
851
|
+
"name": "list_history",
|
|
852
|
+
"description": "List the history of changes to the mailbox since a given history ID. Returns messages added/deleted, labels added/removed. Use with getProfile to get the starting historyId.",
|
|
853
|
+
"method": "GET",
|
|
854
|
+
"path": "/users/me/history",
|
|
855
|
+
"input_schema": {
|
|
856
|
+
"type": "object",
|
|
857
|
+
"properties": {
|
|
858
|
+
"startHistoryId": {
|
|
859
|
+
"type": "string",
|
|
860
|
+
"description": "History ID to start listing from (obtain from getProfile or a previous history response)"
|
|
861
|
+
},
|
|
862
|
+
"maxResults": {
|
|
863
|
+
"type": "integer",
|
|
864
|
+
"description": "Maximum history records to return",
|
|
865
|
+
"default": 100,
|
|
866
|
+
"maximum": 500
|
|
867
|
+
},
|
|
868
|
+
"pageToken": {
|
|
869
|
+
"type": "string",
|
|
870
|
+
"description": "Page token for pagination"
|
|
871
|
+
},
|
|
872
|
+
"labelId": {
|
|
873
|
+
"type": "string",
|
|
874
|
+
"description": "Only return history for this label ID"
|
|
875
|
+
},
|
|
876
|
+
"historyTypes": {
|
|
877
|
+
"type": "array",
|
|
878
|
+
"items": {
|
|
879
|
+
"type": "string",
|
|
880
|
+
"enum": [
|
|
881
|
+
"messageAdded",
|
|
882
|
+
"messageDeleted",
|
|
883
|
+
"labelAdded",
|
|
884
|
+
"labelRemoved"
|
|
885
|
+
]
|
|
886
|
+
},
|
|
887
|
+
"description": "Filter to specific history event types"
|
|
888
|
+
}
|
|
889
|
+
},
|
|
890
|
+
"required": [
|
|
891
|
+
"startHistoryId"
|
|
892
|
+
]
|
|
893
|
+
}
|
|
894
|
+
},
|
|
748
895
|
{
|
|
749
896
|
"name": "list_filters",
|
|
750
897
|
"description": "List all email filters (automatic rules) in the account",
|
|
@@ -832,6 +979,24 @@
|
|
|
832
979
|
]
|
|
833
980
|
}
|
|
834
981
|
},
|
|
982
|
+
{
|
|
983
|
+
"name": "get_filter",
|
|
984
|
+
"description": "Get a specific email filter rule by ID",
|
|
985
|
+
"method": "GET",
|
|
986
|
+
"path": "/users/me/settings/filters/{filterId}",
|
|
987
|
+
"input_schema": {
|
|
988
|
+
"type": "object",
|
|
989
|
+
"properties": {
|
|
990
|
+
"filterId": {
|
|
991
|
+
"type": "string",
|
|
992
|
+
"description": "Filter ID to retrieve"
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
"required": [
|
|
996
|
+
"filterId"
|
|
997
|
+
]
|
|
998
|
+
}
|
|
999
|
+
},
|
|
835
1000
|
{
|
|
836
1001
|
"name": "delete_filter",
|
|
837
1002
|
"description": "Delete an email filter rule",
|
|
@@ -893,6 +1058,318 @@
|
|
|
893
1058
|
"type": "object",
|
|
894
1059
|
"properties": {}
|
|
895
1060
|
}
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"name": "get_vacation",
|
|
1064
|
+
"description": "Get the current vacation/out-of-office auto-reply settings",
|
|
1065
|
+
"method": "GET",
|
|
1066
|
+
"path": "/users/me/settings/vacation",
|
|
1067
|
+
"input_schema": {
|
|
1068
|
+
"type": "object",
|
|
1069
|
+
"properties": {}
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"name": "update_vacation",
|
|
1074
|
+
"description": "Enable or disable vacation/out-of-office auto-reply and set its message",
|
|
1075
|
+
"method": "PUT",
|
|
1076
|
+
"path": "/users/me/settings/vacation",
|
|
1077
|
+
"input_schema": {
|
|
1078
|
+
"type": "object",
|
|
1079
|
+
"properties": {
|
|
1080
|
+
"enableAutoReply": {
|
|
1081
|
+
"type": "boolean",
|
|
1082
|
+
"description": "Whether to enable the auto-reply"
|
|
1083
|
+
},
|
|
1084
|
+
"responseSubject": {
|
|
1085
|
+
"type": "string",
|
|
1086
|
+
"description": "Subject line for the auto-reply (optional, uses default if omitted)"
|
|
1087
|
+
},
|
|
1088
|
+
"responseBodyPlainText": {
|
|
1089
|
+
"type": "string",
|
|
1090
|
+
"description": "Plain text body of the auto-reply"
|
|
1091
|
+
},
|
|
1092
|
+
"responseBodyHtml": {
|
|
1093
|
+
"type": "string",
|
|
1094
|
+
"description": "HTML body of the auto-reply (optional)"
|
|
1095
|
+
},
|
|
1096
|
+
"restrictToContacts": {
|
|
1097
|
+
"type": "boolean",
|
|
1098
|
+
"description": "Only send auto-reply to people in contacts",
|
|
1099
|
+
"default": false
|
|
1100
|
+
},
|
|
1101
|
+
"restrictToDomain": {
|
|
1102
|
+
"type": "boolean",
|
|
1103
|
+
"description": "Only send auto-reply to people in the same domain",
|
|
1104
|
+
"default": false
|
|
1105
|
+
},
|
|
1106
|
+
"startTime": {
|
|
1107
|
+
"type": "string",
|
|
1108
|
+
"description": "Start time in milliseconds since epoch (optional, starts immediately if omitted)"
|
|
1109
|
+
},
|
|
1110
|
+
"endTime": {
|
|
1111
|
+
"type": "string",
|
|
1112
|
+
"description": "End time in milliseconds since epoch (optional, runs indefinitely if omitted)"
|
|
1113
|
+
}
|
|
1114
|
+
},
|
|
1115
|
+
"required": [
|
|
1116
|
+
"enableAutoReply"
|
|
1117
|
+
]
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"name": "get_auto_forwarding",
|
|
1122
|
+
"description": "Get the auto-forwarding setting for the account",
|
|
1123
|
+
"method": "GET",
|
|
1124
|
+
"path": "/users/me/settings/autoForwarding",
|
|
1125
|
+
"input_schema": {
|
|
1126
|
+
"type": "object",
|
|
1127
|
+
"properties": {}
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"name": "update_auto_forwarding",
|
|
1132
|
+
"description": "Update the auto-forwarding setting. A forwarding address must be verified before it can be used.",
|
|
1133
|
+
"method": "PUT",
|
|
1134
|
+
"path": "/users/me/settings/autoForwarding",
|
|
1135
|
+
"input_schema": {
|
|
1136
|
+
"type": "object",
|
|
1137
|
+
"properties": {
|
|
1138
|
+
"enabled": {
|
|
1139
|
+
"type": "boolean",
|
|
1140
|
+
"description": "Whether to enable auto-forwarding"
|
|
1141
|
+
},
|
|
1142
|
+
"emailAddress": {
|
|
1143
|
+
"type": "string",
|
|
1144
|
+
"description": "Email address to forward to (must be a verified forwarding address)"
|
|
1145
|
+
},
|
|
1146
|
+
"disposition": {
|
|
1147
|
+
"type": "string",
|
|
1148
|
+
"description": "What to do with the original message after forwarding",
|
|
1149
|
+
"enum": [
|
|
1150
|
+
"leaveInInbox",
|
|
1151
|
+
"archive",
|
|
1152
|
+
"trash",
|
|
1153
|
+
"markRead"
|
|
1154
|
+
]
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
"required": [
|
|
1158
|
+
"enabled"
|
|
1159
|
+
]
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"name": "list_forwarding_addresses",
|
|
1164
|
+
"description": "List all verified forwarding addresses for the account",
|
|
1165
|
+
"method": "GET",
|
|
1166
|
+
"path": "/users/me/settings/forwardingAddresses",
|
|
1167
|
+
"input_schema": {
|
|
1168
|
+
"type": "object",
|
|
1169
|
+
"properties": {}
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "create_forwarding_address",
|
|
1174
|
+
"description": "Add a new forwarding address. A verification email will be sent to the address.",
|
|
1175
|
+
"method": "POST",
|
|
1176
|
+
"path": "/users/me/settings/forwardingAddresses",
|
|
1177
|
+
"input_schema": {
|
|
1178
|
+
"type": "object",
|
|
1179
|
+
"properties": {
|
|
1180
|
+
"forwardingEmail": {
|
|
1181
|
+
"type": "string",
|
|
1182
|
+
"description": "Email address to add as a forwarding address"
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"required": [
|
|
1186
|
+
"forwardingEmail"
|
|
1187
|
+
]
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"name": "delete_forwarding_address",
|
|
1192
|
+
"description": "Remove a forwarding address",
|
|
1193
|
+
"method": "DELETE",
|
|
1194
|
+
"path": "/users/me/settings/forwardingAddresses/{forwardingEmail}",
|
|
1195
|
+
"input_schema": {
|
|
1196
|
+
"type": "object",
|
|
1197
|
+
"properties": {
|
|
1198
|
+
"forwardingEmail": {
|
|
1199
|
+
"type": "string",
|
|
1200
|
+
"description": "Forwarding email address to delete"
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
"required": [
|
|
1204
|
+
"forwardingEmail"
|
|
1205
|
+
]
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"name": "list_send_as",
|
|
1210
|
+
"description": "List all send-as aliases configured for the account (email addresses you can send from)",
|
|
1211
|
+
"method": "GET",
|
|
1212
|
+
"path": "/users/me/settings/sendAs",
|
|
1213
|
+
"input_schema": {
|
|
1214
|
+
"type": "object",
|
|
1215
|
+
"properties": {}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"name": "get_send_as",
|
|
1220
|
+
"description": "Get details of a specific send-as alias",
|
|
1221
|
+
"method": "GET",
|
|
1222
|
+
"path": "/users/me/settings/sendAs/{sendAsEmail}",
|
|
1223
|
+
"input_schema": {
|
|
1224
|
+
"type": "object",
|
|
1225
|
+
"properties": {
|
|
1226
|
+
"sendAsEmail": {
|
|
1227
|
+
"type": "string",
|
|
1228
|
+
"description": "The send-as email address to retrieve"
|
|
1229
|
+
}
|
|
1230
|
+
},
|
|
1231
|
+
"required": [
|
|
1232
|
+
"sendAsEmail"
|
|
1233
|
+
]
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"name": "create_send_as",
|
|
1238
|
+
"description": "Create a new send-as alias (another email address to send mail from). Requires verification unless it's the primary address.",
|
|
1239
|
+
"method": "POST",
|
|
1240
|
+
"path": "/users/me/settings/sendAs",
|
|
1241
|
+
"input_schema": {
|
|
1242
|
+
"type": "object",
|
|
1243
|
+
"properties": {
|
|
1244
|
+
"sendAsEmail": {
|
|
1245
|
+
"type": "string",
|
|
1246
|
+
"description": "The email address to send as"
|
|
1247
|
+
},
|
|
1248
|
+
"displayName": {
|
|
1249
|
+
"type": "string",
|
|
1250
|
+
"description": "Display name for this send-as address"
|
|
1251
|
+
},
|
|
1252
|
+
"replyToAddress": {
|
|
1253
|
+
"type": "string",
|
|
1254
|
+
"description": "Optional reply-to address"
|
|
1255
|
+
},
|
|
1256
|
+
"signature": {
|
|
1257
|
+
"type": "string",
|
|
1258
|
+
"description": "HTML signature for this send-as address"
|
|
1259
|
+
},
|
|
1260
|
+
"isDefault": {
|
|
1261
|
+
"type": "boolean",
|
|
1262
|
+
"description": "Whether to make this the default send-as address",
|
|
1263
|
+
"default": false
|
|
1264
|
+
},
|
|
1265
|
+
"treatAsAlias": {
|
|
1266
|
+
"type": "boolean",
|
|
1267
|
+
"description": "Whether to treat this as an alias (receives mail) or just a send-as address",
|
|
1268
|
+
"default": true
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"required": [
|
|
1272
|
+
"sendAsEmail"
|
|
1273
|
+
]
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"name": "update_send_as",
|
|
1278
|
+
"description": "Update a send-as alias settings (display name, signature, reply-to, etc.)",
|
|
1279
|
+
"method": "PATCH",
|
|
1280
|
+
"path": "/users/me/settings/sendAs/{sendAsEmail}",
|
|
1281
|
+
"input_schema": {
|
|
1282
|
+
"type": "object",
|
|
1283
|
+
"properties": {
|
|
1284
|
+
"sendAsEmail": {
|
|
1285
|
+
"type": "string",
|
|
1286
|
+
"description": "The send-as email address to update"
|
|
1287
|
+
},
|
|
1288
|
+
"displayName": {
|
|
1289
|
+
"type": "string",
|
|
1290
|
+
"description": "Display name"
|
|
1291
|
+
},
|
|
1292
|
+
"replyToAddress": {
|
|
1293
|
+
"type": "string",
|
|
1294
|
+
"description": "Reply-to address"
|
|
1295
|
+
},
|
|
1296
|
+
"signature": {
|
|
1297
|
+
"type": "string",
|
|
1298
|
+
"description": "HTML signature"
|
|
1299
|
+
},
|
|
1300
|
+
"isDefault": {
|
|
1301
|
+
"type": "boolean",
|
|
1302
|
+
"description": "Whether to make this the default"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"required": [
|
|
1306
|
+
"sendAsEmail"
|
|
1307
|
+
]
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"name": "delete_send_as",
|
|
1312
|
+
"description": "Delete a send-as alias",
|
|
1313
|
+
"method": "DELETE",
|
|
1314
|
+
"path": "/users/me/settings/sendAs/{sendAsEmail}",
|
|
1315
|
+
"input_schema": {
|
|
1316
|
+
"type": "object",
|
|
1317
|
+
"properties": {
|
|
1318
|
+
"sendAsEmail": {
|
|
1319
|
+
"type": "string",
|
|
1320
|
+
"description": "The send-as email address to delete"
|
|
1321
|
+
}
|
|
1322
|
+
},
|
|
1323
|
+
"required": [
|
|
1324
|
+
"sendAsEmail"
|
|
1325
|
+
]
|
|
1326
|
+
}
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"name": "list_delegates",
|
|
1330
|
+
"description": "List all delegates for the account (people who can read, send, and delete mail on your behalf)",
|
|
1331
|
+
"method": "GET",
|
|
1332
|
+
"path": "/users/me/settings/delegates",
|
|
1333
|
+
"input_schema": {
|
|
1334
|
+
"type": "object",
|
|
1335
|
+
"properties": {}
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"name": "create_delegate",
|
|
1340
|
+
"description": "Add a delegate who can read, send, and delete mail on your behalf",
|
|
1341
|
+
"method": "POST",
|
|
1342
|
+
"path": "/users/me/settings/delegates",
|
|
1343
|
+
"input_schema": {
|
|
1344
|
+
"type": "object",
|
|
1345
|
+
"properties": {
|
|
1346
|
+
"delegateEmail": {
|
|
1347
|
+
"type": "string",
|
|
1348
|
+
"description": "Email address of the delegate to add"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"required": [
|
|
1352
|
+
"delegateEmail"
|
|
1353
|
+
]
|
|
1354
|
+
}
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"name": "delete_delegate",
|
|
1358
|
+
"description": "Remove a delegate from the account",
|
|
1359
|
+
"method": "DELETE",
|
|
1360
|
+
"path": "/users/me/settings/delegates/{delegateEmail}",
|
|
1361
|
+
"input_schema": {
|
|
1362
|
+
"type": "object",
|
|
1363
|
+
"properties": {
|
|
1364
|
+
"delegateEmail": {
|
|
1365
|
+
"type": "string",
|
|
1366
|
+
"description": "Email address of the delegate to remove"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"required": [
|
|
1370
|
+
"delegateEmail"
|
|
1371
|
+
]
|
|
1372
|
+
}
|
|
896
1373
|
}
|
|
897
1374
|
]
|
|
898
1375
|
}
|
package/src/apps/google-ads.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"slug": "google-ads",
|
|
3
3
|
"name": "Google Ads",
|
|
4
4
|
"description": "Google Ads API v23 \u2014 manage campaigns, ad groups, ads, keywords, budgets, and run performance reports via GAQL queries",
|
|
5
|
-
"logo": "https://
|
|
5
|
+
"logo": "https://upload.wikimedia.org/wikipedia/commons/c/c7/Google_Ads_logo.svg",
|
|
6
6
|
"categories": [
|
|
7
7
|
"advertising",
|
|
8
8
|
"marketing",
|