@automate.ax/catalog 0.112.10 → 0.114.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/triggers/google.d.ts +14 -0
- package/dist/triggers/google.js +23 -0
- package/dist/triggers/index.d.ts +27 -0
- package/package.json +1 -1
- package/src/triggers/google.ts +24 -0
|
@@ -275,4 +275,18 @@ export declare const googleTriggerDefinitions: {
|
|
|
275
275
|
readonly name: "Google Meet transcript started";
|
|
276
276
|
readonly type: "googleMeet.transcript.started";
|
|
277
277
|
};
|
|
278
|
+
readonly googleSheetsCellsChanged: {
|
|
279
|
+
readonly account: {
|
|
280
|
+
readonly connectionOptions: readonly [{
|
|
281
|
+
readonly requiredScopes: readonly [{
|
|
282
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly"];
|
|
283
|
+
readonly type: "or";
|
|
284
|
+
}];
|
|
285
|
+
}];
|
|
286
|
+
readonly serviceId: "google";
|
|
287
|
+
};
|
|
288
|
+
readonly icon: "google-sheets";
|
|
289
|
+
readonly name: "Google Sheets cells changed";
|
|
290
|
+
readonly type: "googleSheets.cells.changed";
|
|
291
|
+
};
|
|
278
292
|
};
|
package/dist/triggers/google.js
CHANGED
|
@@ -105,6 +105,23 @@ const GOOGLE_MEET_ACCOUNT = {
|
|
|
105
105
|
],
|
|
106
106
|
serviceId: "google",
|
|
107
107
|
};
|
|
108
|
+
const GOOGLE_SHEETS_ACCOUNT = {
|
|
109
|
+
connectionOptions: [
|
|
110
|
+
{
|
|
111
|
+
requiredScopes: [
|
|
112
|
+
{
|
|
113
|
+
requirements: [
|
|
114
|
+
"https://www.googleapis.com/auth/drive",
|
|
115
|
+
"https://www.googleapis.com/auth/drive.file",
|
|
116
|
+
"https://www.googleapis.com/auth/drive.readonly",
|
|
117
|
+
],
|
|
118
|
+
type: "or",
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
serviceId: "google",
|
|
124
|
+
};
|
|
108
125
|
export const googleTriggerDefinitions = {
|
|
109
126
|
gmailLabelAdded: {
|
|
110
127
|
account: GMAIL_ACCOUNT,
|
|
@@ -236,4 +253,10 @@ export const googleTriggerDefinitions = {
|
|
|
236
253
|
name: "Google Meet transcript started",
|
|
237
254
|
type: "googleMeet.transcript.started",
|
|
238
255
|
},
|
|
256
|
+
googleSheetsCellsChanged: {
|
|
257
|
+
account: GOOGLE_SHEETS_ACCOUNT,
|
|
258
|
+
icon: "google-sheets",
|
|
259
|
+
name: "Google Sheets cells changed",
|
|
260
|
+
type: "googleSheets.cells.changed",
|
|
261
|
+
},
|
|
239
262
|
};
|
package/dist/triggers/index.d.ts
CHANGED
|
@@ -2980,6 +2980,20 @@ export declare const triggerDefinitions: {
|
|
|
2980
2980
|
readonly name: "Google Meet transcript started";
|
|
2981
2981
|
readonly type: "googleMeet.transcript.started";
|
|
2982
2982
|
};
|
|
2983
|
+
readonly googleSheetsCellsChanged: {
|
|
2984
|
+
readonly account: {
|
|
2985
|
+
readonly connectionOptions: readonly [{
|
|
2986
|
+
readonly requiredScopes: readonly [{
|
|
2987
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly"];
|
|
2988
|
+
readonly type: "or";
|
|
2989
|
+
}];
|
|
2990
|
+
}];
|
|
2991
|
+
readonly serviceId: "google";
|
|
2992
|
+
};
|
|
2993
|
+
readonly icon: "google-sheets";
|
|
2994
|
+
readonly name: "Google Sheets cells changed";
|
|
2995
|
+
readonly type: "googleSheets.cells.changed";
|
|
2996
|
+
};
|
|
2983
2997
|
readonly githubCommitCommentCreated: {
|
|
2984
2998
|
readonly account: {
|
|
2985
2999
|
readonly connectionOptions: readonly [{
|
|
@@ -8993,6 +9007,19 @@ export declare const triggerCatalog: ({
|
|
|
8993
9007
|
};
|
|
8994
9008
|
icon: "google-meet";
|
|
8995
9009
|
type: "googleMeet.transcript.started";
|
|
9010
|
+
} | {
|
|
9011
|
+
name: string;
|
|
9012
|
+
account: {
|
|
9013
|
+
readonly connectionOptions: readonly [{
|
|
9014
|
+
readonly requiredScopes: readonly [{
|
|
9015
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly"];
|
|
9016
|
+
readonly type: "or";
|
|
9017
|
+
}];
|
|
9018
|
+
}];
|
|
9019
|
+
readonly serviceId: "google";
|
|
9020
|
+
};
|
|
9021
|
+
icon: "google-sheets";
|
|
9022
|
+
type: "googleSheets.cells.changed";
|
|
8996
9023
|
} | {
|
|
8997
9024
|
name: string;
|
|
8998
9025
|
account: {
|
package/package.json
CHANGED
package/src/triggers/google.ts
CHANGED
|
@@ -112,6 +112,24 @@ const GOOGLE_MEET_ACCOUNT = {
|
|
|
112
112
|
serviceId: "google",
|
|
113
113
|
} as const satisfies IntegrationAccountRequirement
|
|
114
114
|
|
|
115
|
+
const GOOGLE_SHEETS_ACCOUNT = {
|
|
116
|
+
connectionOptions: [
|
|
117
|
+
{
|
|
118
|
+
requiredScopes: [
|
|
119
|
+
{
|
|
120
|
+
requirements: [
|
|
121
|
+
"https://www.googleapis.com/auth/drive",
|
|
122
|
+
"https://www.googleapis.com/auth/drive.file",
|
|
123
|
+
"https://www.googleapis.com/auth/drive.readonly",
|
|
124
|
+
],
|
|
125
|
+
type: "or",
|
|
126
|
+
},
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
],
|
|
130
|
+
serviceId: "google",
|
|
131
|
+
} as const satisfies IntegrationAccountRequirement
|
|
132
|
+
|
|
115
133
|
export const googleTriggerDefinitions = {
|
|
116
134
|
gmailLabelAdded: {
|
|
117
135
|
account: GMAIL_ACCOUNT,
|
|
@@ -243,4 +261,10 @@ export const googleTriggerDefinitions = {
|
|
|
243
261
|
name: "Google Meet transcript started",
|
|
244
262
|
type: "googleMeet.transcript.started",
|
|
245
263
|
},
|
|
264
|
+
googleSheetsCellsChanged: {
|
|
265
|
+
account: GOOGLE_SHEETS_ACCOUNT,
|
|
266
|
+
icon: "google-sheets",
|
|
267
|
+
name: "Google Sheets cells changed",
|
|
268
|
+
type: "googleSheets.cells.changed",
|
|
269
|
+
},
|
|
246
270
|
} as const satisfies Record<string, TriggerDefinition>
|