@automate.ax/catalog 0.76.0 → 0.77.1
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/catalog.d.ts +142 -74
- package/dist/catalog.js +74 -13
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/google.d.ts +143 -0
- package/dist/triggers/google.js +88 -0
- package/dist/triggers/index.d.ts +327 -54
- package/dist/triggers/vercel.d.ts +27 -27
- package/dist/triggers/vercel.js +5 -5
- package/dist/types.d.ts +1 -1
- package/dist/types.js +3 -3
- package/package.json +1 -1
- package/src/catalog.ts +76 -13
- package/src/index.ts +2 -0
- package/src/triggers/google.ts +89 -0
- package/src/triggers/vercel.ts +5 -5
- package/src/types.ts +4 -4
package/dist/catalog.js
CHANGED
|
@@ -6,7 +6,7 @@ const API_KEY_FIELD = {
|
|
|
6
6
|
required: true,
|
|
7
7
|
};
|
|
8
8
|
export const airtableService = defineIntegrationService({
|
|
9
|
-
connectionMethods: [{ id: "
|
|
9
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
10
10
|
description: "Connect an Airtable account.",
|
|
11
11
|
id: "airtable",
|
|
12
12
|
name: "Airtable",
|
|
@@ -33,7 +33,7 @@ export const apolloService = defineIntegrationService({
|
|
|
33
33
|
preferredConnectionMethodId: "oauth",
|
|
34
34
|
});
|
|
35
35
|
export const asanaService = defineIntegrationService({
|
|
36
|
-
connectionMethods: [{ id: "
|
|
36
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
37
37
|
description: "Connect an Asana account.",
|
|
38
38
|
id: "asana",
|
|
39
39
|
name: "Asana",
|
|
@@ -72,6 +72,50 @@ export const cloudflareService = defineIntegrationService({
|
|
|
72
72
|
name: "Cloudflare",
|
|
73
73
|
preferredConnectionMethodId: "oauth",
|
|
74
74
|
});
|
|
75
|
+
export const chatgptService = defineIntegrationService({
|
|
76
|
+
connectionMethods: [
|
|
77
|
+
{
|
|
78
|
+
fields: [
|
|
79
|
+
{
|
|
80
|
+
input: "password",
|
|
81
|
+
label: "Workspace Agent access token",
|
|
82
|
+
name: "apiKey",
|
|
83
|
+
placeholder: "Paste your ChatGPT access token",
|
|
84
|
+
required: true,
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
id: "access-token",
|
|
88
|
+
name: "Access token",
|
|
89
|
+
type: "form",
|
|
90
|
+
},
|
|
91
|
+
],
|
|
92
|
+
description: "Connect a Workspace Agent access token.",
|
|
93
|
+
icon: "openai",
|
|
94
|
+
id: "chatgpt",
|
|
95
|
+
name: "ChatGPT",
|
|
96
|
+
});
|
|
97
|
+
export const codexService = defineIntegrationService({
|
|
98
|
+
connectionMethods: [
|
|
99
|
+
{
|
|
100
|
+
fields: [
|
|
101
|
+
{
|
|
102
|
+
input: "password",
|
|
103
|
+
label: "Codex access token",
|
|
104
|
+
name: "apiKey",
|
|
105
|
+
placeholder: "Paste your Codex access token",
|
|
106
|
+
required: true,
|
|
107
|
+
},
|
|
108
|
+
],
|
|
109
|
+
id: "access-token",
|
|
110
|
+
name: "Access token",
|
|
111
|
+
type: "form",
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
description: "Connect a Codex workspace access token.",
|
|
115
|
+
icon: "openai",
|
|
116
|
+
id: "codex",
|
|
117
|
+
name: "Codex",
|
|
118
|
+
});
|
|
75
119
|
export const cohereService = defineApiKeyService({
|
|
76
120
|
description: "Connect a Cohere API key.",
|
|
77
121
|
id: "cohere",
|
|
@@ -99,13 +143,15 @@ export const fireworksService = defineApiKeyService({
|
|
|
99
143
|
name: "Fireworks AI",
|
|
100
144
|
});
|
|
101
145
|
export const githubService = defineIntegrationService({
|
|
102
|
-
connectionMethods: [
|
|
146
|
+
connectionMethods: [
|
|
147
|
+
{ id: "github-app", name: "GitHub App", type: "redirect" },
|
|
148
|
+
],
|
|
103
149
|
description: "Install Automate.ax on a GitHub account or organization.",
|
|
104
150
|
id: "github",
|
|
105
151
|
name: "GitHub",
|
|
106
152
|
});
|
|
107
153
|
export const googleService = defineIntegrationService({
|
|
108
|
-
connectionMethods: [{ id: "
|
|
154
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
109
155
|
connectionNotice: {
|
|
110
156
|
action: {
|
|
111
157
|
href: "mailto:hello@automate.ax?subject=Google%20integration%20access",
|
|
@@ -129,20 +175,33 @@ export const groqService = defineApiKeyService({
|
|
|
129
175
|
id: "groq",
|
|
130
176
|
name: "Groq",
|
|
131
177
|
});
|
|
132
|
-
export const huggingfaceService =
|
|
178
|
+
export const huggingfaceService = defineIntegrationService({
|
|
179
|
+
connectionMethods: [
|
|
180
|
+
{
|
|
181
|
+
fields: [
|
|
182
|
+
{
|
|
183
|
+
...API_KEY_FIELD,
|
|
184
|
+
label: "Access token",
|
|
185
|
+
placeholder: "hf_...",
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
id: "access-token",
|
|
189
|
+
name: "Access token",
|
|
190
|
+
type: "form",
|
|
191
|
+
},
|
|
192
|
+
],
|
|
133
193
|
description: "Connect a Hugging Face access token.",
|
|
134
194
|
id: "huggingface",
|
|
135
195
|
name: "Hugging Face",
|
|
136
|
-
placeholder: "hf_...",
|
|
137
196
|
});
|
|
138
197
|
export const linearService = defineIntegrationService({
|
|
139
|
-
connectionMethods: [{ id: "
|
|
198
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
140
199
|
description: "Connect a Linear workspace.",
|
|
141
200
|
id: "linear",
|
|
142
201
|
name: "Linear",
|
|
143
202
|
});
|
|
144
203
|
export const microsoftService = defineIntegrationService({
|
|
145
|
-
connectionMethods: [{ id: "
|
|
204
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
146
205
|
description: "Connect a Microsoft account.",
|
|
147
206
|
id: "microsoft",
|
|
148
207
|
name: "Microsoft",
|
|
@@ -188,7 +247,7 @@ export const postgresService = defineIntegrationService({
|
|
|
188
247
|
required: true,
|
|
189
248
|
},
|
|
190
249
|
],
|
|
191
|
-
id: "
|
|
250
|
+
id: "credentials",
|
|
192
251
|
name: "Credentials",
|
|
193
252
|
type: "form",
|
|
194
253
|
},
|
|
@@ -219,13 +278,13 @@ export const scrapflyService = defineApiKeyService({
|
|
|
219
278
|
placeholder: "scp-live-...",
|
|
220
279
|
});
|
|
221
280
|
export const slackService = defineIntegrationService({
|
|
222
|
-
connectionMethods: [{ id: "
|
|
281
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
223
282
|
description: "Install the Automate.ax bot in a Slack workspace.",
|
|
224
283
|
id: "slack",
|
|
225
284
|
name: "Slack",
|
|
226
285
|
});
|
|
227
286
|
export const tidycalService = defineIntegrationService({
|
|
228
|
-
connectionMethods: [{ id: "
|
|
287
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
229
288
|
description: "Connect a TidyCal account.",
|
|
230
289
|
id: "tidycal",
|
|
231
290
|
name: "TidyCal",
|
|
@@ -236,7 +295,7 @@ export const togetheraiService = defineApiKeyService({
|
|
|
236
295
|
name: "Together AI",
|
|
237
296
|
});
|
|
238
297
|
export const trelloService = defineIntegrationService({
|
|
239
|
-
connectionMethods: [{ id: "
|
|
298
|
+
connectionMethods: [{ id: "oauth", name: "OAuth", type: "redirect" }],
|
|
240
299
|
description: "Connect a Trello account.",
|
|
241
300
|
id: "trello",
|
|
242
301
|
name: "Trello",
|
|
@@ -291,7 +350,9 @@ export const integrationCatalog = defineIntegrationCatalog([
|
|
|
291
350
|
asanaService,
|
|
292
351
|
brevoService,
|
|
293
352
|
cerebrasService,
|
|
353
|
+
chatgptService,
|
|
294
354
|
cloudflareService,
|
|
355
|
+
codexService,
|
|
295
356
|
cohereService,
|
|
296
357
|
deepinfraService,
|
|
297
358
|
deepseekService,
|
|
@@ -344,7 +405,7 @@ function defineApiKeyService(service) {
|
|
|
344
405
|
placeholder: service.placeholder ?? "API key",
|
|
345
406
|
},
|
|
346
407
|
],
|
|
347
|
-
id: "
|
|
408
|
+
id: "api-key",
|
|
348
409
|
name: "API key",
|
|
349
410
|
type: "form",
|
|
350
411
|
},
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, cloudflareService, cohereService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationConnectionNotice, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, type TriggerScopePresentation, type TriggerPresentationValue, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, type DashboardRunConfig, type DashboardRunEndpointOptions, type DashboardRunField, type HttpTriggerEndpointOptions, type HttpTriggerScope, type MailhookAddressOptions, type MailhookScope, type TriggerType, } from "./triggers/index.js";
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, cloudflareService, cohereService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, } from "./triggers/index.js";
|
|
@@ -132,4 +132,147 @@ export declare const googleTriggerDefinitions: {
|
|
|
132
132
|
readonly name: "Google Form response submitted";
|
|
133
133
|
readonly type: "googleForms.response.submitted";
|
|
134
134
|
};
|
|
135
|
+
readonly googleMeetConferenceEnded: {
|
|
136
|
+
readonly account: {
|
|
137
|
+
readonly connectionOptions: readonly [{
|
|
138
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
139
|
+
}];
|
|
140
|
+
readonly serviceId: "google";
|
|
141
|
+
};
|
|
142
|
+
readonly icon: "google-meet";
|
|
143
|
+
readonly name: "Google Meet conference ended";
|
|
144
|
+
readonly type: "googleMeet.conference.ended";
|
|
145
|
+
};
|
|
146
|
+
readonly googleMeetConferenceStarted: {
|
|
147
|
+
readonly account: {
|
|
148
|
+
readonly connectionOptions: readonly [{
|
|
149
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
150
|
+
}];
|
|
151
|
+
readonly serviceId: "google";
|
|
152
|
+
};
|
|
153
|
+
readonly icon: "google-meet";
|
|
154
|
+
readonly name: "Google Meet conference started";
|
|
155
|
+
readonly type: "googleMeet.conference.started";
|
|
156
|
+
};
|
|
157
|
+
readonly googleMeetParticipantJoined: {
|
|
158
|
+
readonly account: {
|
|
159
|
+
readonly connectionOptions: readonly [{
|
|
160
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
161
|
+
}];
|
|
162
|
+
readonly serviceId: "google";
|
|
163
|
+
};
|
|
164
|
+
readonly icon: "google-meet";
|
|
165
|
+
readonly name: "Google Meet participant joined";
|
|
166
|
+
readonly type: "googleMeet.participant.joined";
|
|
167
|
+
};
|
|
168
|
+
readonly googleMeetParticipantLeft: {
|
|
169
|
+
readonly account: {
|
|
170
|
+
readonly connectionOptions: readonly [{
|
|
171
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
172
|
+
}];
|
|
173
|
+
readonly serviceId: "google";
|
|
174
|
+
};
|
|
175
|
+
readonly icon: "google-meet";
|
|
176
|
+
readonly name: "Google Meet participant left";
|
|
177
|
+
readonly type: "googleMeet.participant.left";
|
|
178
|
+
};
|
|
179
|
+
readonly googleMeetRecordingEnded: {
|
|
180
|
+
readonly account: {
|
|
181
|
+
readonly connectionOptions: readonly [{
|
|
182
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
183
|
+
}];
|
|
184
|
+
readonly serviceId: "google";
|
|
185
|
+
};
|
|
186
|
+
readonly icon: "google-meet";
|
|
187
|
+
readonly name: "Google Meet recording ended";
|
|
188
|
+
readonly type: "googleMeet.recording.ended";
|
|
189
|
+
};
|
|
190
|
+
readonly googleMeetRecordingFileGenerated: {
|
|
191
|
+
readonly account: {
|
|
192
|
+
readonly connectionOptions: readonly [{
|
|
193
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
194
|
+
}];
|
|
195
|
+
readonly serviceId: "google";
|
|
196
|
+
};
|
|
197
|
+
readonly icon: "google-meet";
|
|
198
|
+
readonly name: "Google Meet recording generated";
|
|
199
|
+
readonly type: "googleMeet.recording.fileGenerated";
|
|
200
|
+
};
|
|
201
|
+
readonly googleMeetRecordingStarted: {
|
|
202
|
+
readonly account: {
|
|
203
|
+
readonly connectionOptions: readonly [{
|
|
204
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
205
|
+
}];
|
|
206
|
+
readonly serviceId: "google";
|
|
207
|
+
};
|
|
208
|
+
readonly icon: "google-meet";
|
|
209
|
+
readonly name: "Google Meet recording started";
|
|
210
|
+
readonly type: "googleMeet.recording.started";
|
|
211
|
+
};
|
|
212
|
+
readonly googleMeetSmartNoteEnded: {
|
|
213
|
+
readonly account: {
|
|
214
|
+
readonly connectionOptions: readonly [{
|
|
215
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
216
|
+
}];
|
|
217
|
+
readonly serviceId: "google";
|
|
218
|
+
};
|
|
219
|
+
readonly icon: "google-meet";
|
|
220
|
+
readonly name: "Google Meet smart note ended";
|
|
221
|
+
readonly type: "googleMeet.smartNote.ended";
|
|
222
|
+
};
|
|
223
|
+
readonly googleMeetSmartNoteFileGenerated: {
|
|
224
|
+
readonly account: {
|
|
225
|
+
readonly connectionOptions: readonly [{
|
|
226
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
227
|
+
}];
|
|
228
|
+
readonly serviceId: "google";
|
|
229
|
+
};
|
|
230
|
+
readonly icon: "google-meet";
|
|
231
|
+
readonly name: "Google Meet smart note generated";
|
|
232
|
+
readonly type: "googleMeet.smartNote.fileGenerated";
|
|
233
|
+
};
|
|
234
|
+
readonly googleMeetSmartNoteStarted: {
|
|
235
|
+
readonly account: {
|
|
236
|
+
readonly connectionOptions: readonly [{
|
|
237
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
238
|
+
}];
|
|
239
|
+
readonly serviceId: "google";
|
|
240
|
+
};
|
|
241
|
+
readonly icon: "google-meet";
|
|
242
|
+
readonly name: "Google Meet smart note started";
|
|
243
|
+
readonly type: "googleMeet.smartNote.started";
|
|
244
|
+
};
|
|
245
|
+
readonly googleMeetTranscriptEnded: {
|
|
246
|
+
readonly account: {
|
|
247
|
+
readonly connectionOptions: readonly [{
|
|
248
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
249
|
+
}];
|
|
250
|
+
readonly serviceId: "google";
|
|
251
|
+
};
|
|
252
|
+
readonly icon: "google-meet";
|
|
253
|
+
readonly name: "Google Meet transcript ended";
|
|
254
|
+
readonly type: "googleMeet.transcript.ended";
|
|
255
|
+
};
|
|
256
|
+
readonly googleMeetTranscriptFileGenerated: {
|
|
257
|
+
readonly account: {
|
|
258
|
+
readonly connectionOptions: readonly [{
|
|
259
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
260
|
+
}];
|
|
261
|
+
readonly serviceId: "google";
|
|
262
|
+
};
|
|
263
|
+
readonly icon: "google-meet";
|
|
264
|
+
readonly name: "Google Meet transcript generated";
|
|
265
|
+
readonly type: "googleMeet.transcript.fileGenerated";
|
|
266
|
+
};
|
|
267
|
+
readonly googleMeetTranscriptStarted: {
|
|
268
|
+
readonly account: {
|
|
269
|
+
readonly connectionOptions: readonly [{
|
|
270
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
271
|
+
}];
|
|
272
|
+
readonly serviceId: "google";
|
|
273
|
+
};
|
|
274
|
+
readonly icon: "google-meet";
|
|
275
|
+
readonly name: "Google Meet transcript started";
|
|
276
|
+
readonly type: "googleMeet.transcript.started";
|
|
277
|
+
};
|
|
135
278
|
};
|
package/dist/triggers/google.js
CHANGED
|
@@ -95,6 +95,16 @@ const GOOGLE_FORM_RESPONSES_ACCOUNT = {
|
|
|
95
95
|
],
|
|
96
96
|
serviceId: "google",
|
|
97
97
|
};
|
|
98
|
+
const GOOGLE_MEET_ACCOUNT = {
|
|
99
|
+
connectionOptions: [
|
|
100
|
+
{
|
|
101
|
+
requiredScopes: [
|
|
102
|
+
"https://www.googleapis.com/auth/meetings.space.readonly",
|
|
103
|
+
],
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
serviceId: "google",
|
|
107
|
+
};
|
|
98
108
|
export const googleTriggerDefinitions = {
|
|
99
109
|
gmailLabelAdded: {
|
|
100
110
|
account: GMAIL_ACCOUNT,
|
|
@@ -148,4 +158,82 @@ export const googleTriggerDefinitions = {
|
|
|
148
158
|
name: "Google Form response submitted",
|
|
149
159
|
type: "googleForms.response.submitted",
|
|
150
160
|
},
|
|
161
|
+
googleMeetConferenceEnded: {
|
|
162
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
163
|
+
icon: "google-meet",
|
|
164
|
+
name: "Google Meet conference ended",
|
|
165
|
+
type: "googleMeet.conference.ended",
|
|
166
|
+
},
|
|
167
|
+
googleMeetConferenceStarted: {
|
|
168
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
169
|
+
icon: "google-meet",
|
|
170
|
+
name: "Google Meet conference started",
|
|
171
|
+
type: "googleMeet.conference.started",
|
|
172
|
+
},
|
|
173
|
+
googleMeetParticipantJoined: {
|
|
174
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
175
|
+
icon: "google-meet",
|
|
176
|
+
name: "Google Meet participant joined",
|
|
177
|
+
type: "googleMeet.participant.joined",
|
|
178
|
+
},
|
|
179
|
+
googleMeetParticipantLeft: {
|
|
180
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
181
|
+
icon: "google-meet",
|
|
182
|
+
name: "Google Meet participant left",
|
|
183
|
+
type: "googleMeet.participant.left",
|
|
184
|
+
},
|
|
185
|
+
googleMeetRecordingEnded: {
|
|
186
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
187
|
+
icon: "google-meet",
|
|
188
|
+
name: "Google Meet recording ended",
|
|
189
|
+
type: "googleMeet.recording.ended",
|
|
190
|
+
},
|
|
191
|
+
googleMeetRecordingFileGenerated: {
|
|
192
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
193
|
+
icon: "google-meet",
|
|
194
|
+
name: "Google Meet recording generated",
|
|
195
|
+
type: "googleMeet.recording.fileGenerated",
|
|
196
|
+
},
|
|
197
|
+
googleMeetRecordingStarted: {
|
|
198
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
199
|
+
icon: "google-meet",
|
|
200
|
+
name: "Google Meet recording started",
|
|
201
|
+
type: "googleMeet.recording.started",
|
|
202
|
+
},
|
|
203
|
+
googleMeetSmartNoteEnded: {
|
|
204
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
205
|
+
icon: "google-meet",
|
|
206
|
+
name: "Google Meet smart note ended",
|
|
207
|
+
type: "googleMeet.smartNote.ended",
|
|
208
|
+
},
|
|
209
|
+
googleMeetSmartNoteFileGenerated: {
|
|
210
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
211
|
+
icon: "google-meet",
|
|
212
|
+
name: "Google Meet smart note generated",
|
|
213
|
+
type: "googleMeet.smartNote.fileGenerated",
|
|
214
|
+
},
|
|
215
|
+
googleMeetSmartNoteStarted: {
|
|
216
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
217
|
+
icon: "google-meet",
|
|
218
|
+
name: "Google Meet smart note started",
|
|
219
|
+
type: "googleMeet.smartNote.started",
|
|
220
|
+
},
|
|
221
|
+
googleMeetTranscriptEnded: {
|
|
222
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
223
|
+
icon: "google-meet",
|
|
224
|
+
name: "Google Meet transcript ended",
|
|
225
|
+
type: "googleMeet.transcript.ended",
|
|
226
|
+
},
|
|
227
|
+
googleMeetTranscriptFileGenerated: {
|
|
228
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
229
|
+
icon: "google-meet",
|
|
230
|
+
name: "Google Meet transcript generated",
|
|
231
|
+
type: "googleMeet.transcript.fileGenerated",
|
|
232
|
+
},
|
|
233
|
+
googleMeetTranscriptStarted: {
|
|
234
|
+
account: GOOGLE_MEET_ACCOUNT,
|
|
235
|
+
icon: "google-meet",
|
|
236
|
+
name: "Google Meet transcript started",
|
|
237
|
+
type: "googleMeet.transcript.started",
|
|
238
|
+
},
|
|
151
239
|
};
|