@automate.ax/catalog 0.120.0 → 0.122.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/catalog.d.ts +45 -0
- package/dist/catalog.js +25 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/google.d.ts +586 -0
- package/dist/triggers/google.js +83 -0
- package/dist/triggers/hubspot.d.ts +119 -0
- package/dist/triggers/hubspot.js +67 -0
- package/dist/triggers/index.d.ts +1652 -275
- package/dist/triggers/index.js +2 -0
- package/package.json +8 -2
- package/src/catalog.ts +27 -0
- package/src/index.ts +1 -0
- package/src/triggers/google.ts +161 -0
- package/src/triggers/hubspot.ts +114 -0
- package/src/triggers/index.ts +2 -0
package/dist/triggers/index.d.ts
CHANGED
|
@@ -2931,6 +2931,122 @@ export declare const triggerDefinitions: {
|
|
|
2931
2931
|
};
|
|
2932
2932
|
readonly type: "linear.user.updated";
|
|
2933
2933
|
};
|
|
2934
|
+
readonly hubspotCrmEvent: {
|
|
2935
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2936
|
+
type: "hubspot.crm.event";
|
|
2937
|
+
};
|
|
2938
|
+
readonly hubspotCompanyAssociationAdded: {
|
|
2939
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2940
|
+
type: "hubspot.company.associationAdded";
|
|
2941
|
+
};
|
|
2942
|
+
readonly hubspotCompanyAssociationRemoved: {
|
|
2943
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2944
|
+
type: "hubspot.company.associationRemoved";
|
|
2945
|
+
};
|
|
2946
|
+
readonly hubspotCompanyCreated: {
|
|
2947
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2948
|
+
type: "hubspot.company.created";
|
|
2949
|
+
};
|
|
2950
|
+
readonly hubspotCompanyDeleted: {
|
|
2951
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2952
|
+
type: "hubspot.company.deleted";
|
|
2953
|
+
};
|
|
2954
|
+
readonly hubspotCompanyMerged: {
|
|
2955
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2956
|
+
type: "hubspot.company.merged";
|
|
2957
|
+
};
|
|
2958
|
+
readonly hubspotCompanyPropertyChanged: {
|
|
2959
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2960
|
+
type: "hubspot.company.propertyChanged";
|
|
2961
|
+
};
|
|
2962
|
+
readonly hubspotCompanyRestored: {
|
|
2963
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2964
|
+
type: "hubspot.company.restored";
|
|
2965
|
+
};
|
|
2966
|
+
readonly hubspotContactAssociationAdded: {
|
|
2967
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2968
|
+
type: "hubspot.contact.associationAdded";
|
|
2969
|
+
};
|
|
2970
|
+
readonly hubspotContactAssociationRemoved: {
|
|
2971
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2972
|
+
type: "hubspot.contact.associationRemoved";
|
|
2973
|
+
};
|
|
2974
|
+
readonly hubspotContactCreated: {
|
|
2975
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2976
|
+
type: "hubspot.contact.created";
|
|
2977
|
+
};
|
|
2978
|
+
readonly hubspotContactDeleted: {
|
|
2979
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2980
|
+
type: "hubspot.contact.deleted";
|
|
2981
|
+
};
|
|
2982
|
+
readonly hubspotContactMerged: {
|
|
2983
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2984
|
+
type: "hubspot.contact.merged";
|
|
2985
|
+
};
|
|
2986
|
+
readonly hubspotContactPropertyChanged: {
|
|
2987
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2988
|
+
type: "hubspot.contact.propertyChanged";
|
|
2989
|
+
};
|
|
2990
|
+
readonly hubspotContactRestored: {
|
|
2991
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2992
|
+
type: "hubspot.contact.restored";
|
|
2993
|
+
};
|
|
2994
|
+
readonly hubspotDealAssociationAdded: {
|
|
2995
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
2996
|
+
type: "hubspot.deal.associationAdded";
|
|
2997
|
+
};
|
|
2998
|
+
readonly hubspotDealAssociationRemoved: {
|
|
2999
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3000
|
+
type: "hubspot.deal.associationRemoved";
|
|
3001
|
+
};
|
|
3002
|
+
readonly hubspotDealCreated: {
|
|
3003
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3004
|
+
type: "hubspot.deal.created";
|
|
3005
|
+
};
|
|
3006
|
+
readonly hubspotDealDeleted: {
|
|
3007
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3008
|
+
type: "hubspot.deal.deleted";
|
|
3009
|
+
};
|
|
3010
|
+
readonly hubspotDealMerged: {
|
|
3011
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3012
|
+
type: "hubspot.deal.merged";
|
|
3013
|
+
};
|
|
3014
|
+
readonly hubspotDealPropertyChanged: {
|
|
3015
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3016
|
+
type: "hubspot.deal.propertyChanged";
|
|
3017
|
+
};
|
|
3018
|
+
readonly hubspotDealRestored: {
|
|
3019
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3020
|
+
type: "hubspot.deal.restored";
|
|
3021
|
+
};
|
|
3022
|
+
readonly hubspotTicketAssociationAdded: {
|
|
3023
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3024
|
+
type: "hubspot.ticket.associationAdded";
|
|
3025
|
+
};
|
|
3026
|
+
readonly hubspotTicketAssociationRemoved: {
|
|
3027
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3028
|
+
type: "hubspot.ticket.associationRemoved";
|
|
3029
|
+
};
|
|
3030
|
+
readonly hubspotTicketCreated: {
|
|
3031
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3032
|
+
type: "hubspot.ticket.created";
|
|
3033
|
+
};
|
|
3034
|
+
readonly hubspotTicketDeleted: {
|
|
3035
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3036
|
+
type: "hubspot.ticket.deleted";
|
|
3037
|
+
};
|
|
3038
|
+
readonly hubspotTicketMerged: {
|
|
3039
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3040
|
+
type: "hubspot.ticket.merged";
|
|
3041
|
+
};
|
|
3042
|
+
readonly hubspotTicketPropertyChanged: {
|
|
3043
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3044
|
+
type: "hubspot.ticket.propertyChanged";
|
|
3045
|
+
};
|
|
3046
|
+
readonly hubspotTicketRestored: {
|
|
3047
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
3048
|
+
type: "hubspot.ticket.restored";
|
|
3049
|
+
};
|
|
2934
3050
|
readonly gmailLabelAdded: {
|
|
2935
3051
|
readonly account: {
|
|
2936
3052
|
readonly connectionOptions: readonly [{
|
|
@@ -3117,228 +3233,814 @@ export declare const triggerDefinitions: {
|
|
|
3117
3233
|
readonly name: "Google Form response submitted";
|
|
3118
3234
|
readonly type: "googleForms.response.submitted";
|
|
3119
3235
|
};
|
|
3120
|
-
readonly
|
|
3236
|
+
readonly googleDriveEvent: {
|
|
3121
3237
|
readonly account: {
|
|
3122
3238
|
readonly connectionOptions: readonly [{
|
|
3123
|
-
readonly requiredScopes: readonly [
|
|
3239
|
+
readonly requiredScopes: readonly [{
|
|
3240
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3241
|
+
readonly type: "or";
|
|
3242
|
+
}];
|
|
3124
3243
|
}];
|
|
3125
3244
|
readonly serviceId: "google";
|
|
3126
3245
|
};
|
|
3127
|
-
readonly icon: "google-
|
|
3128
|
-
readonly name: "Google
|
|
3129
|
-
readonly type: "
|
|
3246
|
+
readonly icon: "google-drive";
|
|
3247
|
+
readonly name: "Google Drive event";
|
|
3248
|
+
readonly type: "googleDrive.event";
|
|
3130
3249
|
};
|
|
3131
|
-
readonly
|
|
3132
|
-
|
|
3250
|
+
readonly googleDriveAccessProposalCreated: {
|
|
3251
|
+
account: {
|
|
3133
3252
|
readonly connectionOptions: readonly [{
|
|
3134
|
-
readonly requiredScopes: readonly [
|
|
3253
|
+
readonly requiredScopes: readonly [{
|
|
3254
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3255
|
+
readonly type: "or";
|
|
3256
|
+
}];
|
|
3135
3257
|
}];
|
|
3136
3258
|
readonly serviceId: "google";
|
|
3137
|
-
}
|
|
3138
|
-
readonly icon: "google-meet";
|
|
3139
|
-
readonly name: "Google Meet conference started";
|
|
3140
|
-
readonly type: "googleMeet.conference.started";
|
|
3141
|
-
};
|
|
3142
|
-
readonly googleMeetParticipantJoined: {
|
|
3143
|
-
readonly account: {
|
|
3259
|
+
} | {
|
|
3144
3260
|
readonly connectionOptions: readonly [{
|
|
3145
|
-
readonly requiredScopes: readonly [
|
|
3261
|
+
readonly requiredScopes: readonly [{
|
|
3262
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3263
|
+
readonly type: "or";
|
|
3264
|
+
}];
|
|
3146
3265
|
}];
|
|
3147
3266
|
readonly serviceId: "google";
|
|
3148
3267
|
};
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3268
|
+
icon: string;
|
|
3269
|
+
name: string;
|
|
3270
|
+
type: "googleDrive.accessProposal.created";
|
|
3152
3271
|
};
|
|
3153
|
-
readonly
|
|
3154
|
-
|
|
3272
|
+
readonly googleDriveAccessProposalResolved: {
|
|
3273
|
+
account: {
|
|
3155
3274
|
readonly connectionOptions: readonly [{
|
|
3156
|
-
readonly requiredScopes: readonly [
|
|
3275
|
+
readonly requiredScopes: readonly [{
|
|
3276
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3277
|
+
readonly type: "or";
|
|
3278
|
+
}];
|
|
3157
3279
|
}];
|
|
3158
3280
|
readonly serviceId: "google";
|
|
3159
|
-
}
|
|
3160
|
-
readonly icon: "google-meet";
|
|
3161
|
-
readonly name: "Google Meet participant left";
|
|
3162
|
-
readonly type: "googleMeet.participant.left";
|
|
3163
|
-
};
|
|
3164
|
-
readonly googleMeetRecordingEnded: {
|
|
3165
|
-
readonly account: {
|
|
3281
|
+
} | {
|
|
3166
3282
|
readonly connectionOptions: readonly [{
|
|
3167
|
-
readonly requiredScopes: readonly [
|
|
3283
|
+
readonly requiredScopes: readonly [{
|
|
3284
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3285
|
+
readonly type: "or";
|
|
3286
|
+
}];
|
|
3168
3287
|
}];
|
|
3169
3288
|
readonly serviceId: "google";
|
|
3170
3289
|
};
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3290
|
+
icon: string;
|
|
3291
|
+
name: string;
|
|
3292
|
+
type: "googleDrive.accessProposal.resolved";
|
|
3174
3293
|
};
|
|
3175
|
-
readonly
|
|
3176
|
-
|
|
3294
|
+
readonly googleDriveApprovalCancelled: {
|
|
3295
|
+
account: {
|
|
3177
3296
|
readonly connectionOptions: readonly [{
|
|
3178
|
-
readonly requiredScopes: readonly [
|
|
3297
|
+
readonly requiredScopes: readonly [{
|
|
3298
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3299
|
+
readonly type: "or";
|
|
3300
|
+
}];
|
|
3179
3301
|
}];
|
|
3180
3302
|
readonly serviceId: "google";
|
|
3181
|
-
}
|
|
3182
|
-
readonly icon: "google-meet";
|
|
3183
|
-
readonly name: "Google Meet recording generated";
|
|
3184
|
-
readonly type: "googleMeet.recording.fileGenerated";
|
|
3185
|
-
};
|
|
3186
|
-
readonly googleMeetRecordingStarted: {
|
|
3187
|
-
readonly account: {
|
|
3303
|
+
} | {
|
|
3188
3304
|
readonly connectionOptions: readonly [{
|
|
3189
|
-
readonly requiredScopes: readonly [
|
|
3305
|
+
readonly requiredScopes: readonly [{
|
|
3306
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3307
|
+
readonly type: "or";
|
|
3308
|
+
}];
|
|
3190
3309
|
}];
|
|
3191
3310
|
readonly serviceId: "google";
|
|
3192
3311
|
};
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3312
|
+
icon: string;
|
|
3313
|
+
name: string;
|
|
3314
|
+
type: "googleDrive.approval.cancelled";
|
|
3196
3315
|
};
|
|
3197
|
-
readonly
|
|
3198
|
-
|
|
3316
|
+
readonly googleDriveApprovalCompleted: {
|
|
3317
|
+
account: {
|
|
3199
3318
|
readonly connectionOptions: readonly [{
|
|
3200
|
-
readonly requiredScopes: readonly [
|
|
3319
|
+
readonly requiredScopes: readonly [{
|
|
3320
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3321
|
+
readonly type: "or";
|
|
3322
|
+
}];
|
|
3201
3323
|
}];
|
|
3202
3324
|
readonly serviceId: "google";
|
|
3203
|
-
}
|
|
3204
|
-
readonly icon: "google-meet";
|
|
3205
|
-
readonly name: "Google Meet smart note ended";
|
|
3206
|
-
readonly type: "googleMeet.smartNote.ended";
|
|
3207
|
-
};
|
|
3208
|
-
readonly googleMeetSmartNoteFileGenerated: {
|
|
3209
|
-
readonly account: {
|
|
3325
|
+
} | {
|
|
3210
3326
|
readonly connectionOptions: readonly [{
|
|
3211
|
-
readonly requiredScopes: readonly [
|
|
3327
|
+
readonly requiredScopes: readonly [{
|
|
3328
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3329
|
+
readonly type: "or";
|
|
3330
|
+
}];
|
|
3212
3331
|
}];
|
|
3213
3332
|
readonly serviceId: "google";
|
|
3214
3333
|
};
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3334
|
+
icon: string;
|
|
3335
|
+
name: string;
|
|
3336
|
+
type: "googleDrive.approval.completed";
|
|
3218
3337
|
};
|
|
3219
|
-
readonly
|
|
3220
|
-
|
|
3338
|
+
readonly googleDriveApprovalCreated: {
|
|
3339
|
+
account: {
|
|
3221
3340
|
readonly connectionOptions: readonly [{
|
|
3222
|
-
readonly requiredScopes: readonly [
|
|
3341
|
+
readonly requiredScopes: readonly [{
|
|
3342
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3343
|
+
readonly type: "or";
|
|
3344
|
+
}];
|
|
3223
3345
|
}];
|
|
3224
3346
|
readonly serviceId: "google";
|
|
3225
|
-
}
|
|
3226
|
-
readonly icon: "google-meet";
|
|
3227
|
-
readonly name: "Google Meet smart note started";
|
|
3228
|
-
readonly type: "googleMeet.smartNote.started";
|
|
3229
|
-
};
|
|
3230
|
-
readonly googleMeetTranscriptEnded: {
|
|
3231
|
-
readonly account: {
|
|
3347
|
+
} | {
|
|
3232
3348
|
readonly connectionOptions: readonly [{
|
|
3233
|
-
readonly requiredScopes: readonly [
|
|
3349
|
+
readonly requiredScopes: readonly [{
|
|
3350
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3351
|
+
readonly type: "or";
|
|
3352
|
+
}];
|
|
3234
3353
|
}];
|
|
3235
3354
|
readonly serviceId: "google";
|
|
3236
3355
|
};
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3356
|
+
icon: string;
|
|
3357
|
+
name: string;
|
|
3358
|
+
type: "googleDrive.approval.created";
|
|
3240
3359
|
};
|
|
3241
|
-
readonly
|
|
3242
|
-
|
|
3360
|
+
readonly googleDriveApprovalReset: {
|
|
3361
|
+
account: {
|
|
3243
3362
|
readonly connectionOptions: readonly [{
|
|
3244
|
-
readonly requiredScopes: readonly [
|
|
3363
|
+
readonly requiredScopes: readonly [{
|
|
3364
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3365
|
+
readonly type: "or";
|
|
3366
|
+
}];
|
|
3245
3367
|
}];
|
|
3246
3368
|
readonly serviceId: "google";
|
|
3247
|
-
}
|
|
3248
|
-
readonly icon: "google-meet";
|
|
3249
|
-
readonly name: "Google Meet transcript generated";
|
|
3250
|
-
readonly type: "googleMeet.transcript.fileGenerated";
|
|
3251
|
-
};
|
|
3252
|
-
readonly googleMeetTranscriptStarted: {
|
|
3253
|
-
readonly account: {
|
|
3369
|
+
} | {
|
|
3254
3370
|
readonly connectionOptions: readonly [{
|
|
3255
|
-
readonly requiredScopes: readonly [
|
|
3371
|
+
readonly requiredScopes: readonly [{
|
|
3372
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3373
|
+
readonly type: "or";
|
|
3374
|
+
}];
|
|
3256
3375
|
}];
|
|
3257
3376
|
readonly serviceId: "google";
|
|
3258
3377
|
};
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3378
|
+
icon: string;
|
|
3379
|
+
name: string;
|
|
3380
|
+
type: "googleDrive.approval.reset";
|
|
3262
3381
|
};
|
|
3263
|
-
readonly
|
|
3264
|
-
|
|
3382
|
+
readonly googleDriveApprovalResponded: {
|
|
3383
|
+
account: {
|
|
3265
3384
|
readonly connectionOptions: readonly [{
|
|
3266
3385
|
readonly requiredScopes: readonly [{
|
|
3267
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.
|
|
3386
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3268
3387
|
readonly type: "or";
|
|
3269
3388
|
}];
|
|
3270
3389
|
}];
|
|
3271
3390
|
readonly serviceId: "google";
|
|
3272
|
-
}
|
|
3273
|
-
readonly icon: "google-sheets";
|
|
3274
|
-
readonly name: "Google Sheets cells changed";
|
|
3275
|
-
readonly type: "googleSheets.cells.changed";
|
|
3276
|
-
};
|
|
3277
|
-
readonly githubCommitCommentCreated: {
|
|
3278
|
-
readonly account: {
|
|
3391
|
+
} | {
|
|
3279
3392
|
readonly connectionOptions: readonly [{
|
|
3280
|
-
readonly requiredScopes: readonly [
|
|
3393
|
+
readonly requiredScopes: readonly [{
|
|
3394
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3395
|
+
readonly type: "or";
|
|
3396
|
+
}];
|
|
3281
3397
|
}];
|
|
3282
|
-
readonly serviceId: "
|
|
3398
|
+
readonly serviceId: "google";
|
|
3283
3399
|
};
|
|
3284
|
-
|
|
3400
|
+
icon: string;
|
|
3401
|
+
name: string;
|
|
3402
|
+
type: "googleDrive.approval.responded";
|
|
3285
3403
|
};
|
|
3286
|
-
readonly
|
|
3287
|
-
|
|
3404
|
+
readonly googleDriveApprovalReviewersChanged: {
|
|
3405
|
+
account: {
|
|
3288
3406
|
readonly connectionOptions: readonly [{
|
|
3289
|
-
readonly requiredScopes: readonly [
|
|
3407
|
+
readonly requiredScopes: readonly [{
|
|
3408
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3409
|
+
readonly type: "or";
|
|
3410
|
+
}];
|
|
3290
3411
|
}];
|
|
3291
|
-
readonly serviceId: "
|
|
3292
|
-
}
|
|
3293
|
-
readonly type: "github.commit-comment.event";
|
|
3294
|
-
};
|
|
3295
|
-
readonly githubDeploymentProtectionRuleEvent: {
|
|
3296
|
-
readonly account: {
|
|
3412
|
+
readonly serviceId: "google";
|
|
3413
|
+
} | {
|
|
3297
3414
|
readonly connectionOptions: readonly [{
|
|
3298
|
-
readonly requiredScopes: readonly [
|
|
3415
|
+
readonly requiredScopes: readonly [{
|
|
3416
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3417
|
+
readonly type: "or";
|
|
3418
|
+
}];
|
|
3299
3419
|
}];
|
|
3300
|
-
readonly serviceId: "
|
|
3420
|
+
readonly serviceId: "google";
|
|
3301
3421
|
};
|
|
3302
|
-
|
|
3422
|
+
icon: string;
|
|
3423
|
+
name: string;
|
|
3424
|
+
type: "googleDrive.approval.reviewersChanged";
|
|
3303
3425
|
};
|
|
3304
|
-
readonly
|
|
3305
|
-
|
|
3426
|
+
readonly googleDriveCommentCreated: {
|
|
3427
|
+
account: {
|
|
3306
3428
|
readonly connectionOptions: readonly [{
|
|
3307
|
-
readonly requiredScopes: readonly [
|
|
3429
|
+
readonly requiredScopes: readonly [{
|
|
3430
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3431
|
+
readonly type: "or";
|
|
3432
|
+
}];
|
|
3308
3433
|
}];
|
|
3309
|
-
readonly serviceId: "
|
|
3310
|
-
}
|
|
3311
|
-
readonly type: "github.deployment-protection-rule.requested";
|
|
3312
|
-
};
|
|
3313
|
-
readonly githubDeploymentReviewApproved: {
|
|
3314
|
-
readonly account: {
|
|
3434
|
+
readonly serviceId: "google";
|
|
3435
|
+
} | {
|
|
3315
3436
|
readonly connectionOptions: readonly [{
|
|
3316
|
-
readonly requiredScopes: readonly [
|
|
3437
|
+
readonly requiredScopes: readonly [{
|
|
3438
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3439
|
+
readonly type: "or";
|
|
3440
|
+
}];
|
|
3317
3441
|
}];
|
|
3318
|
-
readonly serviceId: "
|
|
3442
|
+
readonly serviceId: "google";
|
|
3319
3443
|
};
|
|
3320
|
-
|
|
3444
|
+
icon: string;
|
|
3445
|
+
name: string;
|
|
3446
|
+
type: "googleDrive.comment.created";
|
|
3321
3447
|
};
|
|
3322
|
-
readonly
|
|
3323
|
-
|
|
3448
|
+
readonly googleDriveCommentDeleted: {
|
|
3449
|
+
account: {
|
|
3324
3450
|
readonly connectionOptions: readonly [{
|
|
3325
|
-
readonly requiredScopes: readonly [
|
|
3451
|
+
readonly requiredScopes: readonly [{
|
|
3452
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3453
|
+
readonly type: "or";
|
|
3454
|
+
}];
|
|
3326
3455
|
}];
|
|
3327
|
-
readonly serviceId: "
|
|
3328
|
-
}
|
|
3329
|
-
readonly type: "github.deployment-review.event";
|
|
3330
|
-
};
|
|
3331
|
-
readonly githubDeploymentReviewRejected: {
|
|
3332
|
-
readonly account: {
|
|
3456
|
+
readonly serviceId: "google";
|
|
3457
|
+
} | {
|
|
3333
3458
|
readonly connectionOptions: readonly [{
|
|
3334
|
-
readonly requiredScopes: readonly [
|
|
3459
|
+
readonly requiredScopes: readonly [{
|
|
3460
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3461
|
+
readonly type: "or";
|
|
3462
|
+
}];
|
|
3335
3463
|
}];
|
|
3336
|
-
readonly serviceId: "
|
|
3464
|
+
readonly serviceId: "google";
|
|
3337
3465
|
};
|
|
3338
|
-
|
|
3466
|
+
icon: string;
|
|
3467
|
+
name: string;
|
|
3468
|
+
type: "googleDrive.comment.deleted";
|
|
3339
3469
|
};
|
|
3340
|
-
readonly
|
|
3341
|
-
|
|
3470
|
+
readonly googleDriveCommentEdited: {
|
|
3471
|
+
account: {
|
|
3472
|
+
readonly connectionOptions: readonly [{
|
|
3473
|
+
readonly requiredScopes: readonly [{
|
|
3474
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3475
|
+
readonly type: "or";
|
|
3476
|
+
}];
|
|
3477
|
+
}];
|
|
3478
|
+
readonly serviceId: "google";
|
|
3479
|
+
} | {
|
|
3480
|
+
readonly connectionOptions: readonly [{
|
|
3481
|
+
readonly requiredScopes: readonly [{
|
|
3482
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3483
|
+
readonly type: "or";
|
|
3484
|
+
}];
|
|
3485
|
+
}];
|
|
3486
|
+
readonly serviceId: "google";
|
|
3487
|
+
};
|
|
3488
|
+
icon: string;
|
|
3489
|
+
name: string;
|
|
3490
|
+
type: "googleDrive.comment.edited";
|
|
3491
|
+
};
|
|
3492
|
+
readonly googleDriveCommentReopened: {
|
|
3493
|
+
account: {
|
|
3494
|
+
readonly connectionOptions: readonly [{
|
|
3495
|
+
readonly requiredScopes: readonly [{
|
|
3496
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3497
|
+
readonly type: "or";
|
|
3498
|
+
}];
|
|
3499
|
+
}];
|
|
3500
|
+
readonly serviceId: "google";
|
|
3501
|
+
} | {
|
|
3502
|
+
readonly connectionOptions: readonly [{
|
|
3503
|
+
readonly requiredScopes: readonly [{
|
|
3504
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3505
|
+
readonly type: "or";
|
|
3506
|
+
}];
|
|
3507
|
+
}];
|
|
3508
|
+
readonly serviceId: "google";
|
|
3509
|
+
};
|
|
3510
|
+
icon: string;
|
|
3511
|
+
name: string;
|
|
3512
|
+
type: "googleDrive.comment.reopened";
|
|
3513
|
+
};
|
|
3514
|
+
readonly googleDriveCommentResolved: {
|
|
3515
|
+
account: {
|
|
3516
|
+
readonly connectionOptions: readonly [{
|
|
3517
|
+
readonly requiredScopes: readonly [{
|
|
3518
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3519
|
+
readonly type: "or";
|
|
3520
|
+
}];
|
|
3521
|
+
}];
|
|
3522
|
+
readonly serviceId: "google";
|
|
3523
|
+
} | {
|
|
3524
|
+
readonly connectionOptions: readonly [{
|
|
3525
|
+
readonly requiredScopes: readonly [{
|
|
3526
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3527
|
+
readonly type: "or";
|
|
3528
|
+
}];
|
|
3529
|
+
}];
|
|
3530
|
+
readonly serviceId: "google";
|
|
3531
|
+
};
|
|
3532
|
+
icon: string;
|
|
3533
|
+
name: string;
|
|
3534
|
+
type: "googleDrive.comment.resolved";
|
|
3535
|
+
};
|
|
3536
|
+
readonly googleDriveFileContentChanged: {
|
|
3537
|
+
account: {
|
|
3538
|
+
readonly connectionOptions: readonly [{
|
|
3539
|
+
readonly requiredScopes: readonly [{
|
|
3540
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3541
|
+
readonly type: "or";
|
|
3542
|
+
}];
|
|
3543
|
+
}];
|
|
3544
|
+
readonly serviceId: "google";
|
|
3545
|
+
} | {
|
|
3546
|
+
readonly connectionOptions: readonly [{
|
|
3547
|
+
readonly requiredScopes: readonly [{
|
|
3548
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3549
|
+
readonly type: "or";
|
|
3550
|
+
}];
|
|
3551
|
+
}];
|
|
3552
|
+
readonly serviceId: "google";
|
|
3553
|
+
};
|
|
3554
|
+
icon: string;
|
|
3555
|
+
name: string;
|
|
3556
|
+
type: "googleDrive.file.contentChanged";
|
|
3557
|
+
};
|
|
3558
|
+
readonly googleDriveFileCreated: {
|
|
3559
|
+
account: {
|
|
3560
|
+
readonly connectionOptions: readonly [{
|
|
3561
|
+
readonly requiredScopes: readonly [{
|
|
3562
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3563
|
+
readonly type: "or";
|
|
3564
|
+
}];
|
|
3565
|
+
}];
|
|
3566
|
+
readonly serviceId: "google";
|
|
3567
|
+
} | {
|
|
3568
|
+
readonly connectionOptions: readonly [{
|
|
3569
|
+
readonly requiredScopes: readonly [{
|
|
3570
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3571
|
+
readonly type: "or";
|
|
3572
|
+
}];
|
|
3573
|
+
}];
|
|
3574
|
+
readonly serviceId: "google";
|
|
3575
|
+
};
|
|
3576
|
+
icon: string;
|
|
3577
|
+
name: string;
|
|
3578
|
+
type: "googleDrive.file.created";
|
|
3579
|
+
};
|
|
3580
|
+
readonly googleDriveFileDeleted: {
|
|
3581
|
+
account: {
|
|
3582
|
+
readonly connectionOptions: readonly [{
|
|
3583
|
+
readonly requiredScopes: readonly [{
|
|
3584
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3585
|
+
readonly type: "or";
|
|
3586
|
+
}];
|
|
3587
|
+
}];
|
|
3588
|
+
readonly serviceId: "google";
|
|
3589
|
+
} | {
|
|
3590
|
+
readonly connectionOptions: readonly [{
|
|
3591
|
+
readonly requiredScopes: readonly [{
|
|
3592
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3593
|
+
readonly type: "or";
|
|
3594
|
+
}];
|
|
3595
|
+
}];
|
|
3596
|
+
readonly serviceId: "google";
|
|
3597
|
+
};
|
|
3598
|
+
icon: string;
|
|
3599
|
+
name: string;
|
|
3600
|
+
type: "googleDrive.file.deleted";
|
|
3601
|
+
};
|
|
3602
|
+
readonly googleDriveFileMoved: {
|
|
3603
|
+
account: {
|
|
3604
|
+
readonly connectionOptions: readonly [{
|
|
3605
|
+
readonly requiredScopes: readonly [{
|
|
3606
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3607
|
+
readonly type: "or";
|
|
3608
|
+
}];
|
|
3609
|
+
}];
|
|
3610
|
+
readonly serviceId: "google";
|
|
3611
|
+
} | {
|
|
3612
|
+
readonly connectionOptions: readonly [{
|
|
3613
|
+
readonly requiredScopes: readonly [{
|
|
3614
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3615
|
+
readonly type: "or";
|
|
3616
|
+
}];
|
|
3617
|
+
}];
|
|
3618
|
+
readonly serviceId: "google";
|
|
3619
|
+
};
|
|
3620
|
+
icon: string;
|
|
3621
|
+
name: string;
|
|
3622
|
+
type: "googleDrive.file.moved";
|
|
3623
|
+
};
|
|
3624
|
+
readonly googleDriveFileRenamed: {
|
|
3625
|
+
account: {
|
|
3626
|
+
readonly connectionOptions: readonly [{
|
|
3627
|
+
readonly requiredScopes: readonly [{
|
|
3628
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3629
|
+
readonly type: "or";
|
|
3630
|
+
}];
|
|
3631
|
+
}];
|
|
3632
|
+
readonly serviceId: "google";
|
|
3633
|
+
} | {
|
|
3634
|
+
readonly connectionOptions: readonly [{
|
|
3635
|
+
readonly requiredScopes: readonly [{
|
|
3636
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3637
|
+
readonly type: "or";
|
|
3638
|
+
}];
|
|
3639
|
+
}];
|
|
3640
|
+
readonly serviceId: "google";
|
|
3641
|
+
};
|
|
3642
|
+
icon: string;
|
|
3643
|
+
name: string;
|
|
3644
|
+
type: "googleDrive.file.renamed";
|
|
3645
|
+
};
|
|
3646
|
+
readonly googleDriveFileTrashed: {
|
|
3647
|
+
account: {
|
|
3648
|
+
readonly connectionOptions: readonly [{
|
|
3649
|
+
readonly requiredScopes: readonly [{
|
|
3650
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3651
|
+
readonly type: "or";
|
|
3652
|
+
}];
|
|
3653
|
+
}];
|
|
3654
|
+
readonly serviceId: "google";
|
|
3655
|
+
} | {
|
|
3656
|
+
readonly connectionOptions: readonly [{
|
|
3657
|
+
readonly requiredScopes: readonly [{
|
|
3658
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3659
|
+
readonly type: "or";
|
|
3660
|
+
}];
|
|
3661
|
+
}];
|
|
3662
|
+
readonly serviceId: "google";
|
|
3663
|
+
};
|
|
3664
|
+
icon: string;
|
|
3665
|
+
name: string;
|
|
3666
|
+
type: "googleDrive.file.trashed";
|
|
3667
|
+
};
|
|
3668
|
+
readonly googleDriveFileUntrashed: {
|
|
3669
|
+
account: {
|
|
3670
|
+
readonly connectionOptions: readonly [{
|
|
3671
|
+
readonly requiredScopes: readonly [{
|
|
3672
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3673
|
+
readonly type: "or";
|
|
3674
|
+
}];
|
|
3675
|
+
}];
|
|
3676
|
+
readonly serviceId: "google";
|
|
3677
|
+
} | {
|
|
3678
|
+
readonly connectionOptions: readonly [{
|
|
3679
|
+
readonly requiredScopes: readonly [{
|
|
3680
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3681
|
+
readonly type: "or";
|
|
3682
|
+
}];
|
|
3683
|
+
}];
|
|
3684
|
+
readonly serviceId: "google";
|
|
3685
|
+
};
|
|
3686
|
+
icon: string;
|
|
3687
|
+
name: string;
|
|
3688
|
+
type: "googleDrive.file.untrashed";
|
|
3689
|
+
};
|
|
3690
|
+
readonly googleDrivePermissionCreated: {
|
|
3691
|
+
account: {
|
|
3692
|
+
readonly connectionOptions: readonly [{
|
|
3693
|
+
readonly requiredScopes: readonly [{
|
|
3694
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3695
|
+
readonly type: "or";
|
|
3696
|
+
}];
|
|
3697
|
+
}];
|
|
3698
|
+
readonly serviceId: "google";
|
|
3699
|
+
} | {
|
|
3700
|
+
readonly connectionOptions: readonly [{
|
|
3701
|
+
readonly requiredScopes: readonly [{
|
|
3702
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3703
|
+
readonly type: "or";
|
|
3704
|
+
}];
|
|
3705
|
+
}];
|
|
3706
|
+
readonly serviceId: "google";
|
|
3707
|
+
};
|
|
3708
|
+
icon: string;
|
|
3709
|
+
name: string;
|
|
3710
|
+
type: "googleDrive.permission.created";
|
|
3711
|
+
};
|
|
3712
|
+
readonly googleDrivePermissionDeleted: {
|
|
3713
|
+
account: {
|
|
3714
|
+
readonly connectionOptions: readonly [{
|
|
3715
|
+
readonly requiredScopes: readonly [{
|
|
3716
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3717
|
+
readonly type: "or";
|
|
3718
|
+
}];
|
|
3719
|
+
}];
|
|
3720
|
+
readonly serviceId: "google";
|
|
3721
|
+
} | {
|
|
3722
|
+
readonly connectionOptions: readonly [{
|
|
3723
|
+
readonly requiredScopes: readonly [{
|
|
3724
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3725
|
+
readonly type: "or";
|
|
3726
|
+
}];
|
|
3727
|
+
}];
|
|
3728
|
+
readonly serviceId: "google";
|
|
3729
|
+
};
|
|
3730
|
+
icon: string;
|
|
3731
|
+
name: string;
|
|
3732
|
+
type: "googleDrive.permission.deleted";
|
|
3733
|
+
};
|
|
3734
|
+
readonly googleDrivePermissionEdited: {
|
|
3735
|
+
account: {
|
|
3736
|
+
readonly connectionOptions: readonly [{
|
|
3737
|
+
readonly requiredScopes: readonly [{
|
|
3738
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3739
|
+
readonly type: "or";
|
|
3740
|
+
}];
|
|
3741
|
+
}];
|
|
3742
|
+
readonly serviceId: "google";
|
|
3743
|
+
} | {
|
|
3744
|
+
readonly connectionOptions: readonly [{
|
|
3745
|
+
readonly requiredScopes: readonly [{
|
|
3746
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3747
|
+
readonly type: "or";
|
|
3748
|
+
}];
|
|
3749
|
+
}];
|
|
3750
|
+
readonly serviceId: "google";
|
|
3751
|
+
};
|
|
3752
|
+
icon: string;
|
|
3753
|
+
name: string;
|
|
3754
|
+
type: "googleDrive.permission.edited";
|
|
3755
|
+
};
|
|
3756
|
+
readonly googleDriveReplyCreated: {
|
|
3757
|
+
account: {
|
|
3758
|
+
readonly connectionOptions: readonly [{
|
|
3759
|
+
readonly requiredScopes: readonly [{
|
|
3760
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3761
|
+
readonly type: "or";
|
|
3762
|
+
}];
|
|
3763
|
+
}];
|
|
3764
|
+
readonly serviceId: "google";
|
|
3765
|
+
} | {
|
|
3766
|
+
readonly connectionOptions: readonly [{
|
|
3767
|
+
readonly requiredScopes: readonly [{
|
|
3768
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3769
|
+
readonly type: "or";
|
|
3770
|
+
}];
|
|
3771
|
+
}];
|
|
3772
|
+
readonly serviceId: "google";
|
|
3773
|
+
};
|
|
3774
|
+
icon: string;
|
|
3775
|
+
name: string;
|
|
3776
|
+
type: "googleDrive.reply.created";
|
|
3777
|
+
};
|
|
3778
|
+
readonly googleDriveReplyDeleted: {
|
|
3779
|
+
account: {
|
|
3780
|
+
readonly connectionOptions: readonly [{
|
|
3781
|
+
readonly requiredScopes: readonly [{
|
|
3782
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3783
|
+
readonly type: "or";
|
|
3784
|
+
}];
|
|
3785
|
+
}];
|
|
3786
|
+
readonly serviceId: "google";
|
|
3787
|
+
} | {
|
|
3788
|
+
readonly connectionOptions: readonly [{
|
|
3789
|
+
readonly requiredScopes: readonly [{
|
|
3790
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3791
|
+
readonly type: "or";
|
|
3792
|
+
}];
|
|
3793
|
+
}];
|
|
3794
|
+
readonly serviceId: "google";
|
|
3795
|
+
};
|
|
3796
|
+
icon: string;
|
|
3797
|
+
name: string;
|
|
3798
|
+
type: "googleDrive.reply.deleted";
|
|
3799
|
+
};
|
|
3800
|
+
readonly googleDriveReplyEdited: {
|
|
3801
|
+
account: {
|
|
3802
|
+
readonly connectionOptions: readonly [{
|
|
3803
|
+
readonly requiredScopes: readonly [{
|
|
3804
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
3805
|
+
readonly type: "or";
|
|
3806
|
+
}];
|
|
3807
|
+
}];
|
|
3808
|
+
readonly serviceId: "google";
|
|
3809
|
+
} | {
|
|
3810
|
+
readonly connectionOptions: readonly [{
|
|
3811
|
+
readonly requiredScopes: readonly [{
|
|
3812
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
3813
|
+
readonly type: "or";
|
|
3814
|
+
}];
|
|
3815
|
+
}];
|
|
3816
|
+
readonly serviceId: "google";
|
|
3817
|
+
};
|
|
3818
|
+
icon: string;
|
|
3819
|
+
name: string;
|
|
3820
|
+
type: "googleDrive.reply.edited";
|
|
3821
|
+
};
|
|
3822
|
+
readonly googleMeetConferenceEnded: {
|
|
3823
|
+
readonly account: {
|
|
3824
|
+
readonly connectionOptions: readonly [{
|
|
3825
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3826
|
+
}];
|
|
3827
|
+
readonly serviceId: "google";
|
|
3828
|
+
};
|
|
3829
|
+
readonly icon: "google-meet";
|
|
3830
|
+
readonly name: "Google Meet conference ended";
|
|
3831
|
+
readonly type: "googleMeet.conference.ended";
|
|
3832
|
+
};
|
|
3833
|
+
readonly googleMeetConferenceStarted: {
|
|
3834
|
+
readonly account: {
|
|
3835
|
+
readonly connectionOptions: readonly [{
|
|
3836
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3837
|
+
}];
|
|
3838
|
+
readonly serviceId: "google";
|
|
3839
|
+
};
|
|
3840
|
+
readonly icon: "google-meet";
|
|
3841
|
+
readonly name: "Google Meet conference started";
|
|
3842
|
+
readonly type: "googleMeet.conference.started";
|
|
3843
|
+
};
|
|
3844
|
+
readonly googleMeetParticipantJoined: {
|
|
3845
|
+
readonly account: {
|
|
3846
|
+
readonly connectionOptions: readonly [{
|
|
3847
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3848
|
+
}];
|
|
3849
|
+
readonly serviceId: "google";
|
|
3850
|
+
};
|
|
3851
|
+
readonly icon: "google-meet";
|
|
3852
|
+
readonly name: "Google Meet participant joined";
|
|
3853
|
+
readonly type: "googleMeet.participant.joined";
|
|
3854
|
+
};
|
|
3855
|
+
readonly googleMeetParticipantLeft: {
|
|
3856
|
+
readonly account: {
|
|
3857
|
+
readonly connectionOptions: readonly [{
|
|
3858
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3859
|
+
}];
|
|
3860
|
+
readonly serviceId: "google";
|
|
3861
|
+
};
|
|
3862
|
+
readonly icon: "google-meet";
|
|
3863
|
+
readonly name: "Google Meet participant left";
|
|
3864
|
+
readonly type: "googleMeet.participant.left";
|
|
3865
|
+
};
|
|
3866
|
+
readonly googleMeetRecordingEnded: {
|
|
3867
|
+
readonly account: {
|
|
3868
|
+
readonly connectionOptions: readonly [{
|
|
3869
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3870
|
+
}];
|
|
3871
|
+
readonly serviceId: "google";
|
|
3872
|
+
};
|
|
3873
|
+
readonly icon: "google-meet";
|
|
3874
|
+
readonly name: "Google Meet recording ended";
|
|
3875
|
+
readonly type: "googleMeet.recording.ended";
|
|
3876
|
+
};
|
|
3877
|
+
readonly googleMeetRecordingFileGenerated: {
|
|
3878
|
+
readonly account: {
|
|
3879
|
+
readonly connectionOptions: readonly [{
|
|
3880
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3881
|
+
}];
|
|
3882
|
+
readonly serviceId: "google";
|
|
3883
|
+
};
|
|
3884
|
+
readonly icon: "google-meet";
|
|
3885
|
+
readonly name: "Google Meet recording generated";
|
|
3886
|
+
readonly type: "googleMeet.recording.fileGenerated";
|
|
3887
|
+
};
|
|
3888
|
+
readonly googleMeetRecordingStarted: {
|
|
3889
|
+
readonly account: {
|
|
3890
|
+
readonly connectionOptions: readonly [{
|
|
3891
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3892
|
+
}];
|
|
3893
|
+
readonly serviceId: "google";
|
|
3894
|
+
};
|
|
3895
|
+
readonly icon: "google-meet";
|
|
3896
|
+
readonly name: "Google Meet recording started";
|
|
3897
|
+
readonly type: "googleMeet.recording.started";
|
|
3898
|
+
};
|
|
3899
|
+
readonly googleMeetSmartNoteEnded: {
|
|
3900
|
+
readonly account: {
|
|
3901
|
+
readonly connectionOptions: readonly [{
|
|
3902
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3903
|
+
}];
|
|
3904
|
+
readonly serviceId: "google";
|
|
3905
|
+
};
|
|
3906
|
+
readonly icon: "google-meet";
|
|
3907
|
+
readonly name: "Google Meet smart note ended";
|
|
3908
|
+
readonly type: "googleMeet.smartNote.ended";
|
|
3909
|
+
};
|
|
3910
|
+
readonly googleMeetSmartNoteFileGenerated: {
|
|
3911
|
+
readonly account: {
|
|
3912
|
+
readonly connectionOptions: readonly [{
|
|
3913
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3914
|
+
}];
|
|
3915
|
+
readonly serviceId: "google";
|
|
3916
|
+
};
|
|
3917
|
+
readonly icon: "google-meet";
|
|
3918
|
+
readonly name: "Google Meet smart note generated";
|
|
3919
|
+
readonly type: "googleMeet.smartNote.fileGenerated";
|
|
3920
|
+
};
|
|
3921
|
+
readonly googleMeetSmartNoteStarted: {
|
|
3922
|
+
readonly account: {
|
|
3923
|
+
readonly connectionOptions: readonly [{
|
|
3924
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3925
|
+
}];
|
|
3926
|
+
readonly serviceId: "google";
|
|
3927
|
+
};
|
|
3928
|
+
readonly icon: "google-meet";
|
|
3929
|
+
readonly name: "Google Meet smart note started";
|
|
3930
|
+
readonly type: "googleMeet.smartNote.started";
|
|
3931
|
+
};
|
|
3932
|
+
readonly googleMeetTranscriptEnded: {
|
|
3933
|
+
readonly account: {
|
|
3934
|
+
readonly connectionOptions: readonly [{
|
|
3935
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3936
|
+
}];
|
|
3937
|
+
readonly serviceId: "google";
|
|
3938
|
+
};
|
|
3939
|
+
readonly icon: "google-meet";
|
|
3940
|
+
readonly name: "Google Meet transcript ended";
|
|
3941
|
+
readonly type: "googleMeet.transcript.ended";
|
|
3942
|
+
};
|
|
3943
|
+
readonly googleMeetTranscriptFileGenerated: {
|
|
3944
|
+
readonly account: {
|
|
3945
|
+
readonly connectionOptions: readonly [{
|
|
3946
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3947
|
+
}];
|
|
3948
|
+
readonly serviceId: "google";
|
|
3949
|
+
};
|
|
3950
|
+
readonly icon: "google-meet";
|
|
3951
|
+
readonly name: "Google Meet transcript generated";
|
|
3952
|
+
readonly type: "googleMeet.transcript.fileGenerated";
|
|
3953
|
+
};
|
|
3954
|
+
readonly googleMeetTranscriptStarted: {
|
|
3955
|
+
readonly account: {
|
|
3956
|
+
readonly connectionOptions: readonly [{
|
|
3957
|
+
readonly requiredScopes: readonly ["https://www.googleapis.com/auth/meetings.space.readonly"];
|
|
3958
|
+
}];
|
|
3959
|
+
readonly serviceId: "google";
|
|
3960
|
+
};
|
|
3961
|
+
readonly icon: "google-meet";
|
|
3962
|
+
readonly name: "Google Meet transcript started";
|
|
3963
|
+
readonly type: "googleMeet.transcript.started";
|
|
3964
|
+
};
|
|
3965
|
+
readonly googleSheetsCellsChanged: {
|
|
3966
|
+
readonly account: {
|
|
3967
|
+
readonly connectionOptions: readonly [{
|
|
3968
|
+
readonly requiredScopes: readonly [{
|
|
3969
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly"];
|
|
3970
|
+
readonly type: "or";
|
|
3971
|
+
}];
|
|
3972
|
+
}];
|
|
3973
|
+
readonly serviceId: "google";
|
|
3974
|
+
};
|
|
3975
|
+
readonly icon: "google-sheets";
|
|
3976
|
+
readonly name: "Google Sheets cells changed";
|
|
3977
|
+
readonly type: "googleSheets.cells.changed";
|
|
3978
|
+
};
|
|
3979
|
+
readonly githubCommitCommentCreated: {
|
|
3980
|
+
readonly account: {
|
|
3981
|
+
readonly connectionOptions: readonly [{
|
|
3982
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
3983
|
+
}];
|
|
3984
|
+
readonly serviceId: "github";
|
|
3985
|
+
};
|
|
3986
|
+
readonly type: "github.commit-comment.created";
|
|
3987
|
+
};
|
|
3988
|
+
readonly githubCommitCommentEvent: {
|
|
3989
|
+
readonly account: {
|
|
3990
|
+
readonly connectionOptions: readonly [{
|
|
3991
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
3992
|
+
}];
|
|
3993
|
+
readonly serviceId: "github";
|
|
3994
|
+
};
|
|
3995
|
+
readonly type: "github.commit-comment.event";
|
|
3996
|
+
};
|
|
3997
|
+
readonly githubDeploymentProtectionRuleEvent: {
|
|
3998
|
+
readonly account: {
|
|
3999
|
+
readonly connectionOptions: readonly [{
|
|
4000
|
+
readonly requiredScopes: readonly ["deployments:read"];
|
|
4001
|
+
}];
|
|
4002
|
+
readonly serviceId: "github";
|
|
4003
|
+
};
|
|
4004
|
+
readonly type: "github.deployment-protection-rule.event";
|
|
4005
|
+
};
|
|
4006
|
+
readonly githubDeploymentProtectionRuleRequested: {
|
|
4007
|
+
readonly account: {
|
|
4008
|
+
readonly connectionOptions: readonly [{
|
|
4009
|
+
readonly requiredScopes: readonly ["deployments:read"];
|
|
4010
|
+
}];
|
|
4011
|
+
readonly serviceId: "github";
|
|
4012
|
+
};
|
|
4013
|
+
readonly type: "github.deployment-protection-rule.requested";
|
|
4014
|
+
};
|
|
4015
|
+
readonly githubDeploymentReviewApproved: {
|
|
4016
|
+
readonly account: {
|
|
4017
|
+
readonly connectionOptions: readonly [{
|
|
4018
|
+
readonly requiredScopes: readonly ["deployments:read"];
|
|
4019
|
+
}];
|
|
4020
|
+
readonly serviceId: "github";
|
|
4021
|
+
};
|
|
4022
|
+
readonly type: "github.deployment-review.approved";
|
|
4023
|
+
};
|
|
4024
|
+
readonly githubDeploymentReviewEvent: {
|
|
4025
|
+
readonly account: {
|
|
4026
|
+
readonly connectionOptions: readonly [{
|
|
4027
|
+
readonly requiredScopes: readonly ["deployments:read"];
|
|
4028
|
+
}];
|
|
4029
|
+
readonly serviceId: "github";
|
|
4030
|
+
};
|
|
4031
|
+
readonly type: "github.deployment-review.event";
|
|
4032
|
+
};
|
|
4033
|
+
readonly githubDeploymentReviewRejected: {
|
|
4034
|
+
readonly account: {
|
|
4035
|
+
readonly connectionOptions: readonly [{
|
|
4036
|
+
readonly requiredScopes: readonly ["deployments:read"];
|
|
4037
|
+
}];
|
|
4038
|
+
readonly serviceId: "github";
|
|
4039
|
+
};
|
|
4040
|
+
readonly type: "github.deployment-review.rejected";
|
|
4041
|
+
};
|
|
4042
|
+
readonly githubDeploymentReviewRequested: {
|
|
4043
|
+
readonly account: {
|
|
3342
4044
|
readonly connectionOptions: readonly [{
|
|
3343
4045
|
readonly requiredScopes: readonly ["deployments:read"];
|
|
3344
4046
|
}];
|
|
@@ -9119,470 +9821,1016 @@ export declare const triggerCatalog: ({
|
|
|
9119
9821
|
name: string;
|
|
9120
9822
|
account: {
|
|
9121
9823
|
readonly connectionOptions: readonly [{
|
|
9122
|
-
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9824
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9825
|
+
}];
|
|
9826
|
+
readonly serviceId: "github";
|
|
9827
|
+
};
|
|
9828
|
+
type: "github.pull-request-review-comment.deleted";
|
|
9829
|
+
} | {
|
|
9830
|
+
name: string;
|
|
9831
|
+
account: {
|
|
9832
|
+
readonly connectionOptions: readonly [{
|
|
9833
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9834
|
+
}];
|
|
9835
|
+
readonly serviceId: "github";
|
|
9836
|
+
};
|
|
9837
|
+
type: "github.pull-request-review-comment.edited";
|
|
9838
|
+
} | {
|
|
9839
|
+
name: string;
|
|
9840
|
+
account: {
|
|
9841
|
+
readonly connectionOptions: readonly [{
|
|
9842
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9843
|
+
}];
|
|
9844
|
+
readonly serviceId: "github";
|
|
9845
|
+
};
|
|
9846
|
+
type: "github.pull-request-review-comment.event";
|
|
9847
|
+
} | {
|
|
9848
|
+
name: string;
|
|
9849
|
+
account: {
|
|
9850
|
+
readonly connectionOptions: readonly [{
|
|
9851
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9852
|
+
}];
|
|
9853
|
+
readonly serviceId: "github";
|
|
9854
|
+
};
|
|
9855
|
+
type: "github.pull-request.synchronized";
|
|
9856
|
+
} | {
|
|
9857
|
+
name: string;
|
|
9858
|
+
account: {
|
|
9859
|
+
readonly connectionOptions: readonly [{
|
|
9860
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9861
|
+
}];
|
|
9862
|
+
readonly serviceId: "github";
|
|
9863
|
+
};
|
|
9864
|
+
type: "github.pull-request.unassigned";
|
|
9865
|
+
} | {
|
|
9866
|
+
name: string;
|
|
9867
|
+
account: {
|
|
9868
|
+
readonly connectionOptions: readonly [{
|
|
9869
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9870
|
+
}];
|
|
9871
|
+
readonly serviceId: "github";
|
|
9872
|
+
};
|
|
9873
|
+
type: "github.pull-request.unlabeled";
|
|
9874
|
+
} | {
|
|
9875
|
+
name: string;
|
|
9876
|
+
account: {
|
|
9877
|
+
readonly connectionOptions: readonly [{
|
|
9878
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
9879
|
+
}];
|
|
9880
|
+
readonly serviceId: "github";
|
|
9881
|
+
};
|
|
9882
|
+
type: "github.pull-request.unlocked";
|
|
9883
|
+
} | {
|
|
9884
|
+
name: string;
|
|
9885
|
+
account: {
|
|
9886
|
+
readonly connectionOptions: readonly [{
|
|
9887
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9888
|
+
}];
|
|
9889
|
+
readonly serviceId: "github";
|
|
9890
|
+
};
|
|
9891
|
+
type: "github.push";
|
|
9892
|
+
} | {
|
|
9893
|
+
name: string;
|
|
9894
|
+
account: {
|
|
9895
|
+
readonly connectionOptions: readonly [{
|
|
9896
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9897
|
+
}];
|
|
9898
|
+
readonly serviceId: "github";
|
|
9899
|
+
};
|
|
9900
|
+
type: "github.release.created";
|
|
9901
|
+
} | {
|
|
9902
|
+
name: string;
|
|
9903
|
+
account: {
|
|
9904
|
+
readonly connectionOptions: readonly [{
|
|
9905
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9906
|
+
}];
|
|
9907
|
+
readonly serviceId: "github";
|
|
9908
|
+
};
|
|
9909
|
+
type: "github.release.deleted";
|
|
9910
|
+
} | {
|
|
9911
|
+
name: string;
|
|
9912
|
+
account: {
|
|
9913
|
+
readonly connectionOptions: readonly [{
|
|
9914
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9915
|
+
}];
|
|
9916
|
+
readonly serviceId: "github";
|
|
9917
|
+
};
|
|
9918
|
+
type: "github.release.edited";
|
|
9919
|
+
} | {
|
|
9920
|
+
name: string;
|
|
9921
|
+
account: {
|
|
9922
|
+
readonly connectionOptions: readonly [{
|
|
9923
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9924
|
+
}];
|
|
9925
|
+
readonly serviceId: "github";
|
|
9926
|
+
};
|
|
9927
|
+
type: "github.release.event";
|
|
9928
|
+
} | {
|
|
9929
|
+
name: string;
|
|
9930
|
+
account: {
|
|
9931
|
+
readonly connectionOptions: readonly [{
|
|
9932
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9933
|
+
}];
|
|
9934
|
+
readonly serviceId: "github";
|
|
9935
|
+
};
|
|
9936
|
+
type: "github.release.prereleased";
|
|
9937
|
+
} | {
|
|
9938
|
+
name: string;
|
|
9939
|
+
account: {
|
|
9940
|
+
readonly connectionOptions: readonly [{
|
|
9941
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9942
|
+
}];
|
|
9943
|
+
readonly serviceId: "github";
|
|
9944
|
+
};
|
|
9945
|
+
type: "github.release.published";
|
|
9946
|
+
} | {
|
|
9947
|
+
name: string;
|
|
9948
|
+
account: {
|
|
9949
|
+
readonly connectionOptions: readonly [{
|
|
9950
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9951
|
+
}];
|
|
9952
|
+
readonly serviceId: "github";
|
|
9953
|
+
};
|
|
9954
|
+
type: "github.release.released";
|
|
9955
|
+
} | {
|
|
9956
|
+
name: string;
|
|
9957
|
+
account: {
|
|
9958
|
+
readonly connectionOptions: readonly [{
|
|
9959
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9960
|
+
}];
|
|
9961
|
+
readonly serviceId: "github";
|
|
9962
|
+
};
|
|
9963
|
+
type: "github.release.unpublished";
|
|
9964
|
+
} | {
|
|
9965
|
+
name: string;
|
|
9966
|
+
account: {
|
|
9967
|
+
readonly connectionOptions: readonly [{
|
|
9968
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9969
|
+
}];
|
|
9970
|
+
readonly serviceId: "github";
|
|
9971
|
+
};
|
|
9972
|
+
type: "github.ref.created";
|
|
9973
|
+
} | {
|
|
9974
|
+
name: string;
|
|
9975
|
+
account: {
|
|
9976
|
+
readonly connectionOptions: readonly [{
|
|
9977
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9978
|
+
}];
|
|
9979
|
+
readonly serviceId: "github";
|
|
9980
|
+
};
|
|
9981
|
+
type: "github.ref.deleted";
|
|
9982
|
+
} | {
|
|
9983
|
+
name: string;
|
|
9984
|
+
account: {
|
|
9985
|
+
readonly connectionOptions: readonly [{
|
|
9986
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
9987
|
+
}];
|
|
9988
|
+
readonly serviceId: "github";
|
|
9989
|
+
};
|
|
9990
|
+
type: "github.repository-dispatch";
|
|
9991
|
+
} | {
|
|
9992
|
+
name: string;
|
|
9993
|
+
account: {
|
|
9994
|
+
readonly connectionOptions: readonly [{
|
|
9995
|
+
readonly requiredScopes: readonly ["statuses:read"];
|
|
9996
|
+
}];
|
|
9997
|
+
readonly serviceId: "github";
|
|
9998
|
+
};
|
|
9999
|
+
type: "github.status.errored";
|
|
10000
|
+
} | {
|
|
10001
|
+
name: string;
|
|
10002
|
+
account: {
|
|
10003
|
+
readonly connectionOptions: readonly [{
|
|
10004
|
+
readonly requiredScopes: readonly ["statuses:read"];
|
|
10005
|
+
}];
|
|
10006
|
+
readonly serviceId: "github";
|
|
10007
|
+
};
|
|
10008
|
+
type: "github.status.event";
|
|
10009
|
+
} | {
|
|
10010
|
+
name: string;
|
|
10011
|
+
account: {
|
|
10012
|
+
readonly connectionOptions: readonly [{
|
|
10013
|
+
readonly requiredScopes: readonly ["statuses:read"];
|
|
10014
|
+
}];
|
|
10015
|
+
readonly serviceId: "github";
|
|
10016
|
+
};
|
|
10017
|
+
type: "github.status.failed";
|
|
10018
|
+
} | {
|
|
10019
|
+
name: string;
|
|
10020
|
+
account: {
|
|
10021
|
+
readonly connectionOptions: readonly [{
|
|
10022
|
+
readonly requiredScopes: readonly ["statuses:read"];
|
|
10023
|
+
}];
|
|
10024
|
+
readonly serviceId: "github";
|
|
10025
|
+
};
|
|
10026
|
+
type: "github.status.pending";
|
|
10027
|
+
} | {
|
|
10028
|
+
name: string;
|
|
10029
|
+
account: {
|
|
10030
|
+
readonly connectionOptions: readonly [{
|
|
10031
|
+
readonly requiredScopes: readonly ["statuses:read"];
|
|
10032
|
+
}];
|
|
10033
|
+
readonly serviceId: "github";
|
|
10034
|
+
};
|
|
10035
|
+
type: "github.status.succeeded";
|
|
10036
|
+
} | {
|
|
10037
|
+
name: string;
|
|
10038
|
+
account: {
|
|
10039
|
+
readonly connectionOptions: readonly [{
|
|
10040
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
10041
|
+
}];
|
|
10042
|
+
readonly serviceId: "github";
|
|
10043
|
+
};
|
|
10044
|
+
type: "github.tag.created";
|
|
10045
|
+
} | {
|
|
10046
|
+
name: string;
|
|
10047
|
+
account: {
|
|
10048
|
+
readonly connectionOptions: readonly [{
|
|
10049
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
10050
|
+
}];
|
|
10051
|
+
readonly serviceId: "github";
|
|
10052
|
+
};
|
|
10053
|
+
type: "github.tag.deleted";
|
|
10054
|
+
} | {
|
|
10055
|
+
name: string;
|
|
10056
|
+
account: {
|
|
10057
|
+
readonly connectionOptions: readonly [{
|
|
10058
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
10059
|
+
}];
|
|
10060
|
+
readonly serviceId: "github";
|
|
10061
|
+
};
|
|
10062
|
+
type: "github.workflow-dispatch";
|
|
10063
|
+
} | {
|
|
10064
|
+
name: string;
|
|
10065
|
+
account: {
|
|
10066
|
+
readonly connectionOptions: readonly [{
|
|
10067
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9123
10068
|
}];
|
|
9124
10069
|
readonly serviceId: "github";
|
|
9125
10070
|
};
|
|
9126
|
-
type: "github.
|
|
10071
|
+
type: "github.workflow-job.action-required";
|
|
9127
10072
|
} | {
|
|
9128
10073
|
name: string;
|
|
9129
10074
|
account: {
|
|
9130
10075
|
readonly connectionOptions: readonly [{
|
|
9131
|
-
readonly requiredScopes: readonly ["
|
|
10076
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9132
10077
|
}];
|
|
9133
10078
|
readonly serviceId: "github";
|
|
9134
10079
|
};
|
|
9135
|
-
type: "github.
|
|
10080
|
+
type: "github.workflow-job.cancelled";
|
|
9136
10081
|
} | {
|
|
9137
10082
|
name: string;
|
|
9138
10083
|
account: {
|
|
9139
10084
|
readonly connectionOptions: readonly [{
|
|
9140
|
-
readonly requiredScopes: readonly ["
|
|
10085
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9141
10086
|
}];
|
|
9142
10087
|
readonly serviceId: "github";
|
|
9143
10088
|
};
|
|
9144
|
-
type: "github.
|
|
10089
|
+
type: "github.workflow-job.completed";
|
|
9145
10090
|
} | {
|
|
9146
10091
|
name: string;
|
|
9147
10092
|
account: {
|
|
9148
10093
|
readonly connectionOptions: readonly [{
|
|
9149
|
-
readonly requiredScopes: readonly ["
|
|
10094
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9150
10095
|
}];
|
|
9151
10096
|
readonly serviceId: "github";
|
|
9152
10097
|
};
|
|
9153
|
-
type: "github.
|
|
10098
|
+
type: "github.workflow-job.event";
|
|
9154
10099
|
} | {
|
|
9155
10100
|
name: string;
|
|
9156
10101
|
account: {
|
|
9157
10102
|
readonly connectionOptions: readonly [{
|
|
9158
|
-
readonly requiredScopes: readonly ["
|
|
10103
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9159
10104
|
}];
|
|
9160
10105
|
readonly serviceId: "github";
|
|
9161
10106
|
};
|
|
9162
|
-
type: "github.
|
|
10107
|
+
type: "github.workflow-job.failed";
|
|
9163
10108
|
} | {
|
|
9164
10109
|
name: string;
|
|
9165
10110
|
account: {
|
|
9166
10111
|
readonly connectionOptions: readonly [{
|
|
9167
|
-
readonly requiredScopes: readonly ["
|
|
10112
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9168
10113
|
}];
|
|
9169
10114
|
readonly serviceId: "github";
|
|
9170
10115
|
};
|
|
9171
|
-
type: "github.
|
|
10116
|
+
type: "github.workflow-job.neutral";
|
|
9172
10117
|
} | {
|
|
9173
10118
|
name: string;
|
|
9174
10119
|
account: {
|
|
9175
10120
|
readonly connectionOptions: readonly [{
|
|
9176
|
-
readonly requiredScopes: readonly ["
|
|
10121
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9177
10122
|
}];
|
|
9178
10123
|
readonly serviceId: "github";
|
|
9179
10124
|
};
|
|
9180
|
-
type: "github.
|
|
10125
|
+
type: "github.workflow-job.queued";
|
|
9181
10126
|
} | {
|
|
9182
10127
|
name: string;
|
|
9183
10128
|
account: {
|
|
9184
10129
|
readonly connectionOptions: readonly [{
|
|
9185
|
-
readonly requiredScopes: readonly ["
|
|
10130
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9186
10131
|
}];
|
|
9187
10132
|
readonly serviceId: "github";
|
|
9188
10133
|
};
|
|
9189
|
-
type: "github.
|
|
10134
|
+
type: "github.workflow-job.skipped";
|
|
9190
10135
|
} | {
|
|
9191
10136
|
name: string;
|
|
9192
10137
|
account: {
|
|
9193
10138
|
readonly connectionOptions: readonly [{
|
|
9194
|
-
readonly requiredScopes: readonly ["
|
|
10139
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9195
10140
|
}];
|
|
9196
10141
|
readonly serviceId: "github";
|
|
9197
10142
|
};
|
|
9198
|
-
type: "github.
|
|
10143
|
+
type: "github.workflow-job.started";
|
|
9199
10144
|
} | {
|
|
9200
10145
|
name: string;
|
|
9201
10146
|
account: {
|
|
9202
10147
|
readonly connectionOptions: readonly [{
|
|
9203
|
-
readonly requiredScopes: readonly ["
|
|
10148
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9204
10149
|
}];
|
|
9205
10150
|
readonly serviceId: "github";
|
|
9206
10151
|
};
|
|
9207
|
-
type: "github.
|
|
10152
|
+
type: "github.workflow-job.succeeded";
|
|
9208
10153
|
} | {
|
|
9209
10154
|
name: string;
|
|
9210
10155
|
account: {
|
|
9211
10156
|
readonly connectionOptions: readonly [{
|
|
9212
|
-
readonly requiredScopes: readonly ["
|
|
10157
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9213
10158
|
}];
|
|
9214
10159
|
readonly serviceId: "github";
|
|
9215
10160
|
};
|
|
9216
|
-
type: "github.
|
|
10161
|
+
type: "github.workflow-job.timed-out";
|
|
9217
10162
|
} | {
|
|
9218
10163
|
name: string;
|
|
9219
10164
|
account: {
|
|
9220
10165
|
readonly connectionOptions: readonly [{
|
|
9221
|
-
readonly requiredScopes: readonly ["
|
|
10166
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9222
10167
|
}];
|
|
9223
10168
|
readonly serviceId: "github";
|
|
9224
10169
|
};
|
|
9225
|
-
type: "github.
|
|
10170
|
+
type: "github.workflow-job.waiting";
|
|
9226
10171
|
} | {
|
|
9227
10172
|
name: string;
|
|
9228
10173
|
account: {
|
|
9229
10174
|
readonly connectionOptions: readonly [{
|
|
9230
|
-
readonly requiredScopes: readonly ["
|
|
10175
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9231
10176
|
}];
|
|
9232
10177
|
readonly serviceId: "github";
|
|
9233
10178
|
};
|
|
9234
|
-
type: "github.
|
|
10179
|
+
type: "github.workflow-run.action-required";
|
|
9235
10180
|
} | {
|
|
9236
10181
|
name: string;
|
|
9237
10182
|
account: {
|
|
9238
10183
|
readonly connectionOptions: readonly [{
|
|
9239
|
-
readonly requiredScopes: readonly ["
|
|
10184
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9240
10185
|
}];
|
|
9241
10186
|
readonly serviceId: "github";
|
|
9242
10187
|
};
|
|
9243
|
-
type: "github.
|
|
10188
|
+
type: "github.workflow-run.cancelled";
|
|
9244
10189
|
} | {
|
|
9245
10190
|
name: string;
|
|
9246
10191
|
account: {
|
|
9247
10192
|
readonly connectionOptions: readonly [{
|
|
9248
|
-
readonly requiredScopes: readonly ["
|
|
10193
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9249
10194
|
}];
|
|
9250
10195
|
readonly serviceId: "github";
|
|
9251
10196
|
};
|
|
9252
|
-
type: "github.
|
|
10197
|
+
type: "github.workflow-run.completed";
|
|
9253
10198
|
} | {
|
|
9254
10199
|
name: string;
|
|
9255
10200
|
account: {
|
|
9256
10201
|
readonly connectionOptions: readonly [{
|
|
9257
|
-
readonly requiredScopes: readonly ["
|
|
10202
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9258
10203
|
}];
|
|
9259
10204
|
readonly serviceId: "github";
|
|
9260
10205
|
};
|
|
9261
|
-
type: "github.
|
|
10206
|
+
type: "github.workflow-run.event";
|
|
9262
10207
|
} | {
|
|
9263
10208
|
name: string;
|
|
9264
10209
|
account: {
|
|
9265
10210
|
readonly connectionOptions: readonly [{
|
|
9266
|
-
readonly requiredScopes: readonly ["
|
|
10211
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9267
10212
|
}];
|
|
9268
10213
|
readonly serviceId: "github";
|
|
9269
10214
|
};
|
|
9270
|
-
type: "github.
|
|
10215
|
+
type: "github.workflow-run.failed";
|
|
9271
10216
|
} | {
|
|
9272
10217
|
name: string;
|
|
9273
10218
|
account: {
|
|
9274
10219
|
readonly connectionOptions: readonly [{
|
|
9275
|
-
readonly requiredScopes: readonly ["
|
|
10220
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9276
10221
|
}];
|
|
9277
10222
|
readonly serviceId: "github";
|
|
9278
10223
|
};
|
|
9279
|
-
type: "github.
|
|
10224
|
+
type: "github.workflow-run.neutral";
|
|
9280
10225
|
} | {
|
|
9281
10226
|
name: string;
|
|
9282
10227
|
account: {
|
|
9283
10228
|
readonly connectionOptions: readonly [{
|
|
9284
|
-
readonly requiredScopes: readonly ["
|
|
10229
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9285
10230
|
}];
|
|
9286
10231
|
readonly serviceId: "github";
|
|
9287
10232
|
};
|
|
9288
|
-
type: "github.
|
|
10233
|
+
type: "github.workflow-run.requested";
|
|
9289
10234
|
} | {
|
|
9290
10235
|
name: string;
|
|
9291
10236
|
account: {
|
|
9292
10237
|
readonly connectionOptions: readonly [{
|
|
9293
|
-
readonly requiredScopes: readonly ["
|
|
10238
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9294
10239
|
}];
|
|
9295
10240
|
readonly serviceId: "github";
|
|
9296
10241
|
};
|
|
9297
|
-
type: "github.
|
|
10242
|
+
type: "github.workflow-run.skipped";
|
|
9298
10243
|
} | {
|
|
9299
10244
|
name: string;
|
|
9300
10245
|
account: {
|
|
9301
10246
|
readonly connectionOptions: readonly [{
|
|
9302
|
-
readonly requiredScopes: readonly ["
|
|
10247
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9303
10248
|
}];
|
|
9304
10249
|
readonly serviceId: "github";
|
|
9305
10250
|
};
|
|
9306
|
-
type: "github.
|
|
10251
|
+
type: "github.workflow-run.stale";
|
|
9307
10252
|
} | {
|
|
9308
10253
|
name: string;
|
|
9309
10254
|
account: {
|
|
9310
10255
|
readonly connectionOptions: readonly [{
|
|
9311
|
-
readonly requiredScopes: readonly ["
|
|
10256
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9312
10257
|
}];
|
|
9313
10258
|
readonly serviceId: "github";
|
|
9314
10259
|
};
|
|
9315
|
-
type: "github.
|
|
10260
|
+
type: "github.workflow-run.started";
|
|
9316
10261
|
} | {
|
|
9317
10262
|
name: string;
|
|
9318
10263
|
account: {
|
|
9319
10264
|
readonly connectionOptions: readonly [{
|
|
9320
|
-
readonly requiredScopes: readonly ["
|
|
10265
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9321
10266
|
}];
|
|
9322
10267
|
readonly serviceId: "github";
|
|
9323
10268
|
};
|
|
9324
|
-
type: "github.
|
|
10269
|
+
type: "github.workflow-run.startup-failed";
|
|
9325
10270
|
} | {
|
|
9326
10271
|
name: string;
|
|
9327
10272
|
account: {
|
|
9328
10273
|
readonly connectionOptions: readonly [{
|
|
9329
|
-
readonly requiredScopes: readonly ["
|
|
10274
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9330
10275
|
}];
|
|
9331
10276
|
readonly serviceId: "github";
|
|
9332
10277
|
};
|
|
9333
|
-
type: "github.
|
|
10278
|
+
type: "github.workflow-run.succeeded";
|
|
9334
10279
|
} | {
|
|
9335
10280
|
name: string;
|
|
9336
10281
|
account: {
|
|
9337
10282
|
readonly connectionOptions: readonly [{
|
|
9338
|
-
readonly requiredScopes: readonly ["
|
|
10283
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
9339
10284
|
}];
|
|
9340
10285
|
readonly serviceId: "github";
|
|
9341
10286
|
};
|
|
9342
|
-
type: "github.
|
|
10287
|
+
type: "github.workflow-run.timed-out";
|
|
9343
10288
|
} | {
|
|
9344
10289
|
name: string;
|
|
9345
10290
|
account: {
|
|
9346
10291
|
readonly connectionOptions: readonly [{
|
|
9347
|
-
readonly requiredScopes: readonly [
|
|
10292
|
+
readonly requiredScopes: readonly [{
|
|
10293
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10294
|
+
readonly type: "or";
|
|
10295
|
+
}];
|
|
9348
10296
|
}];
|
|
9349
|
-
readonly serviceId: "
|
|
10297
|
+
readonly serviceId: "google";
|
|
10298
|
+
} | {
|
|
10299
|
+
readonly connectionOptions: readonly [{
|
|
10300
|
+
readonly requiredScopes: readonly [{
|
|
10301
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10302
|
+
readonly type: "or";
|
|
10303
|
+
}];
|
|
10304
|
+
}];
|
|
10305
|
+
readonly serviceId: "google";
|
|
9350
10306
|
};
|
|
9351
|
-
|
|
10307
|
+
icon: string;
|
|
10308
|
+
type: "googleDrive.accessProposal.created";
|
|
9352
10309
|
} | {
|
|
9353
10310
|
name: string;
|
|
9354
10311
|
account: {
|
|
9355
10312
|
readonly connectionOptions: readonly [{
|
|
9356
|
-
readonly requiredScopes: readonly [
|
|
10313
|
+
readonly requiredScopes: readonly [{
|
|
10314
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10315
|
+
readonly type: "or";
|
|
10316
|
+
}];
|
|
9357
10317
|
}];
|
|
9358
|
-
readonly serviceId: "
|
|
10318
|
+
readonly serviceId: "google";
|
|
10319
|
+
} | {
|
|
10320
|
+
readonly connectionOptions: readonly [{
|
|
10321
|
+
readonly requiredScopes: readonly [{
|
|
10322
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10323
|
+
readonly type: "or";
|
|
10324
|
+
}];
|
|
10325
|
+
}];
|
|
10326
|
+
readonly serviceId: "google";
|
|
9359
10327
|
};
|
|
9360
|
-
|
|
10328
|
+
icon: string;
|
|
10329
|
+
type: "googleDrive.accessProposal.resolved";
|
|
9361
10330
|
} | {
|
|
9362
10331
|
name: string;
|
|
9363
10332
|
account: {
|
|
9364
10333
|
readonly connectionOptions: readonly [{
|
|
9365
|
-
readonly requiredScopes: readonly [
|
|
10334
|
+
readonly requiredScopes: readonly [{
|
|
10335
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10336
|
+
readonly type: "or";
|
|
10337
|
+
}];
|
|
9366
10338
|
}];
|
|
9367
|
-
readonly serviceId: "
|
|
10339
|
+
readonly serviceId: "google";
|
|
10340
|
+
} | {
|
|
10341
|
+
readonly connectionOptions: readonly [{
|
|
10342
|
+
readonly requiredScopes: readonly [{
|
|
10343
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10344
|
+
readonly type: "or";
|
|
10345
|
+
}];
|
|
10346
|
+
}];
|
|
10347
|
+
readonly serviceId: "google";
|
|
9368
10348
|
};
|
|
9369
|
-
|
|
10349
|
+
icon: string;
|
|
10350
|
+
type: "googleDrive.approval.cancelled";
|
|
9370
10351
|
} | {
|
|
9371
10352
|
name: string;
|
|
9372
10353
|
account: {
|
|
9373
10354
|
readonly connectionOptions: readonly [{
|
|
9374
|
-
readonly requiredScopes: readonly [
|
|
10355
|
+
readonly requiredScopes: readonly [{
|
|
10356
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10357
|
+
readonly type: "or";
|
|
10358
|
+
}];
|
|
9375
10359
|
}];
|
|
9376
|
-
readonly serviceId: "
|
|
10360
|
+
readonly serviceId: "google";
|
|
10361
|
+
} | {
|
|
10362
|
+
readonly connectionOptions: readonly [{
|
|
10363
|
+
readonly requiredScopes: readonly [{
|
|
10364
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10365
|
+
readonly type: "or";
|
|
10366
|
+
}];
|
|
10367
|
+
}];
|
|
10368
|
+
readonly serviceId: "google";
|
|
9377
10369
|
};
|
|
9378
|
-
|
|
10370
|
+
icon: string;
|
|
10371
|
+
type: "googleDrive.approval.completed";
|
|
9379
10372
|
} | {
|
|
9380
10373
|
name: string;
|
|
9381
10374
|
account: {
|
|
9382
10375
|
readonly connectionOptions: readonly [{
|
|
9383
|
-
readonly requiredScopes: readonly [
|
|
10376
|
+
readonly requiredScopes: readonly [{
|
|
10377
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10378
|
+
readonly type: "or";
|
|
10379
|
+
}];
|
|
9384
10380
|
}];
|
|
9385
|
-
readonly serviceId: "
|
|
10381
|
+
readonly serviceId: "google";
|
|
10382
|
+
} | {
|
|
10383
|
+
readonly connectionOptions: readonly [{
|
|
10384
|
+
readonly requiredScopes: readonly [{
|
|
10385
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10386
|
+
readonly type: "or";
|
|
10387
|
+
}];
|
|
10388
|
+
}];
|
|
10389
|
+
readonly serviceId: "google";
|
|
9386
10390
|
};
|
|
9387
|
-
|
|
10391
|
+
icon: string;
|
|
10392
|
+
type: "googleDrive.approval.created";
|
|
9388
10393
|
} | {
|
|
9389
10394
|
name: string;
|
|
9390
10395
|
account: {
|
|
9391
10396
|
readonly connectionOptions: readonly [{
|
|
9392
|
-
readonly requiredScopes: readonly [
|
|
10397
|
+
readonly requiredScopes: readonly [{
|
|
10398
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10399
|
+
readonly type: "or";
|
|
10400
|
+
}];
|
|
9393
10401
|
}];
|
|
9394
|
-
readonly serviceId: "
|
|
10402
|
+
readonly serviceId: "google";
|
|
10403
|
+
} | {
|
|
10404
|
+
readonly connectionOptions: readonly [{
|
|
10405
|
+
readonly requiredScopes: readonly [{
|
|
10406
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10407
|
+
readonly type: "or";
|
|
10408
|
+
}];
|
|
10409
|
+
}];
|
|
10410
|
+
readonly serviceId: "google";
|
|
9395
10411
|
};
|
|
9396
|
-
|
|
10412
|
+
icon: string;
|
|
10413
|
+
type: "googleDrive.approval.reset";
|
|
9397
10414
|
} | {
|
|
9398
10415
|
name: string;
|
|
9399
10416
|
account: {
|
|
9400
10417
|
readonly connectionOptions: readonly [{
|
|
9401
|
-
readonly requiredScopes: readonly [
|
|
10418
|
+
readonly requiredScopes: readonly [{
|
|
10419
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10420
|
+
readonly type: "or";
|
|
10421
|
+
}];
|
|
9402
10422
|
}];
|
|
9403
|
-
readonly serviceId: "
|
|
10423
|
+
readonly serviceId: "google";
|
|
10424
|
+
} | {
|
|
10425
|
+
readonly connectionOptions: readonly [{
|
|
10426
|
+
readonly requiredScopes: readonly [{
|
|
10427
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10428
|
+
readonly type: "or";
|
|
10429
|
+
}];
|
|
10430
|
+
}];
|
|
10431
|
+
readonly serviceId: "google";
|
|
9404
10432
|
};
|
|
9405
|
-
|
|
10433
|
+
icon: string;
|
|
10434
|
+
type: "googleDrive.approval.responded";
|
|
9406
10435
|
} | {
|
|
9407
10436
|
name: string;
|
|
9408
10437
|
account: {
|
|
9409
10438
|
readonly connectionOptions: readonly [{
|
|
9410
|
-
readonly requiredScopes: readonly [
|
|
10439
|
+
readonly requiredScopes: readonly [{
|
|
10440
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10441
|
+
readonly type: "or";
|
|
10442
|
+
}];
|
|
9411
10443
|
}];
|
|
9412
|
-
readonly serviceId: "
|
|
10444
|
+
readonly serviceId: "google";
|
|
10445
|
+
} | {
|
|
10446
|
+
readonly connectionOptions: readonly [{
|
|
10447
|
+
readonly requiredScopes: readonly [{
|
|
10448
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10449
|
+
readonly type: "or";
|
|
10450
|
+
}];
|
|
10451
|
+
}];
|
|
10452
|
+
readonly serviceId: "google";
|
|
9413
10453
|
};
|
|
9414
|
-
|
|
10454
|
+
icon: string;
|
|
10455
|
+
type: "googleDrive.approval.reviewersChanged";
|
|
9415
10456
|
} | {
|
|
9416
10457
|
name: string;
|
|
9417
10458
|
account: {
|
|
9418
10459
|
readonly connectionOptions: readonly [{
|
|
9419
|
-
readonly requiredScopes: readonly [
|
|
10460
|
+
readonly requiredScopes: readonly [{
|
|
10461
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10462
|
+
readonly type: "or";
|
|
10463
|
+
}];
|
|
9420
10464
|
}];
|
|
9421
|
-
readonly serviceId: "
|
|
10465
|
+
readonly serviceId: "google";
|
|
10466
|
+
} | {
|
|
10467
|
+
readonly connectionOptions: readonly [{
|
|
10468
|
+
readonly requiredScopes: readonly [{
|
|
10469
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10470
|
+
readonly type: "or";
|
|
10471
|
+
}];
|
|
10472
|
+
}];
|
|
10473
|
+
readonly serviceId: "google";
|
|
9422
10474
|
};
|
|
9423
|
-
|
|
10475
|
+
icon: string;
|
|
10476
|
+
type: "googleDrive.comment.created";
|
|
9424
10477
|
} | {
|
|
9425
10478
|
name: string;
|
|
9426
10479
|
account: {
|
|
9427
10480
|
readonly connectionOptions: readonly [{
|
|
9428
|
-
readonly requiredScopes: readonly [
|
|
10481
|
+
readonly requiredScopes: readonly [{
|
|
10482
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10483
|
+
readonly type: "or";
|
|
10484
|
+
}];
|
|
9429
10485
|
}];
|
|
9430
|
-
readonly serviceId: "
|
|
10486
|
+
readonly serviceId: "google";
|
|
10487
|
+
} | {
|
|
10488
|
+
readonly connectionOptions: readonly [{
|
|
10489
|
+
readonly requiredScopes: readonly [{
|
|
10490
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10491
|
+
readonly type: "or";
|
|
10492
|
+
}];
|
|
10493
|
+
}];
|
|
10494
|
+
readonly serviceId: "google";
|
|
9431
10495
|
};
|
|
9432
|
-
|
|
10496
|
+
icon: string;
|
|
10497
|
+
type: "googleDrive.comment.deleted";
|
|
9433
10498
|
} | {
|
|
9434
10499
|
name: string;
|
|
9435
10500
|
account: {
|
|
9436
10501
|
readonly connectionOptions: readonly [{
|
|
9437
|
-
readonly requiredScopes: readonly [
|
|
10502
|
+
readonly requiredScopes: readonly [{
|
|
10503
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10504
|
+
readonly type: "or";
|
|
10505
|
+
}];
|
|
9438
10506
|
}];
|
|
9439
|
-
readonly serviceId: "
|
|
10507
|
+
readonly serviceId: "google";
|
|
10508
|
+
} | {
|
|
10509
|
+
readonly connectionOptions: readonly [{
|
|
10510
|
+
readonly requiredScopes: readonly [{
|
|
10511
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10512
|
+
readonly type: "or";
|
|
10513
|
+
}];
|
|
10514
|
+
}];
|
|
10515
|
+
readonly serviceId: "google";
|
|
9440
10516
|
};
|
|
9441
|
-
|
|
10517
|
+
icon: string;
|
|
10518
|
+
type: "googleDrive.comment.edited";
|
|
9442
10519
|
} | {
|
|
9443
10520
|
name: string;
|
|
9444
10521
|
account: {
|
|
9445
10522
|
readonly connectionOptions: readonly [{
|
|
9446
|
-
readonly requiredScopes: readonly [
|
|
10523
|
+
readonly requiredScopes: readonly [{
|
|
10524
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10525
|
+
readonly type: "or";
|
|
10526
|
+
}];
|
|
9447
10527
|
}];
|
|
9448
|
-
readonly serviceId: "
|
|
10528
|
+
readonly serviceId: "google";
|
|
10529
|
+
} | {
|
|
10530
|
+
readonly connectionOptions: readonly [{
|
|
10531
|
+
readonly requiredScopes: readonly [{
|
|
10532
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10533
|
+
readonly type: "or";
|
|
10534
|
+
}];
|
|
10535
|
+
}];
|
|
10536
|
+
readonly serviceId: "google";
|
|
9449
10537
|
};
|
|
9450
|
-
|
|
10538
|
+
icon: string;
|
|
10539
|
+
type: "googleDrive.comment.reopened";
|
|
9451
10540
|
} | {
|
|
9452
10541
|
name: string;
|
|
9453
10542
|
account: {
|
|
9454
10543
|
readonly connectionOptions: readonly [{
|
|
9455
|
-
readonly requiredScopes: readonly [
|
|
10544
|
+
readonly requiredScopes: readonly [{
|
|
10545
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10546
|
+
readonly type: "or";
|
|
10547
|
+
}];
|
|
9456
10548
|
}];
|
|
9457
|
-
readonly serviceId: "
|
|
9458
|
-
}
|
|
9459
|
-
type: "github.workflow-job.timed-out";
|
|
9460
|
-
} | {
|
|
9461
|
-
name: string;
|
|
9462
|
-
account: {
|
|
10549
|
+
readonly serviceId: "google";
|
|
10550
|
+
} | {
|
|
9463
10551
|
readonly connectionOptions: readonly [{
|
|
9464
|
-
readonly requiredScopes: readonly [
|
|
10552
|
+
readonly requiredScopes: readonly [{
|
|
10553
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10554
|
+
readonly type: "or";
|
|
10555
|
+
}];
|
|
9465
10556
|
}];
|
|
9466
|
-
readonly serviceId: "
|
|
10557
|
+
readonly serviceId: "google";
|
|
9467
10558
|
};
|
|
9468
|
-
|
|
10559
|
+
icon: string;
|
|
10560
|
+
type: "googleDrive.comment.resolved";
|
|
9469
10561
|
} | {
|
|
9470
10562
|
name: string;
|
|
9471
10563
|
account: {
|
|
9472
10564
|
readonly connectionOptions: readonly [{
|
|
9473
|
-
readonly requiredScopes: readonly [
|
|
10565
|
+
readonly requiredScopes: readonly [{
|
|
10566
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10567
|
+
readonly type: "or";
|
|
10568
|
+
}];
|
|
9474
10569
|
}];
|
|
9475
|
-
readonly serviceId: "
|
|
10570
|
+
readonly serviceId: "google";
|
|
10571
|
+
} | {
|
|
10572
|
+
readonly connectionOptions: readonly [{
|
|
10573
|
+
readonly requiredScopes: readonly [{
|
|
10574
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10575
|
+
readonly type: "or";
|
|
10576
|
+
}];
|
|
10577
|
+
}];
|
|
10578
|
+
readonly serviceId: "google";
|
|
9476
10579
|
};
|
|
9477
|
-
|
|
10580
|
+
icon: string;
|
|
10581
|
+
type: "googleDrive.file.contentChanged";
|
|
9478
10582
|
} | {
|
|
9479
10583
|
name: string;
|
|
9480
10584
|
account: {
|
|
9481
10585
|
readonly connectionOptions: readonly [{
|
|
9482
|
-
readonly requiredScopes: readonly [
|
|
10586
|
+
readonly requiredScopes: readonly [{
|
|
10587
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10588
|
+
readonly type: "or";
|
|
10589
|
+
}];
|
|
9483
10590
|
}];
|
|
9484
|
-
readonly serviceId: "
|
|
10591
|
+
readonly serviceId: "google";
|
|
10592
|
+
} | {
|
|
10593
|
+
readonly connectionOptions: readonly [{
|
|
10594
|
+
readonly requiredScopes: readonly [{
|
|
10595
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10596
|
+
readonly type: "or";
|
|
10597
|
+
}];
|
|
10598
|
+
}];
|
|
10599
|
+
readonly serviceId: "google";
|
|
9485
10600
|
};
|
|
9486
|
-
|
|
10601
|
+
icon: string;
|
|
10602
|
+
type: "googleDrive.file.created";
|
|
9487
10603
|
} | {
|
|
9488
10604
|
name: string;
|
|
9489
10605
|
account: {
|
|
9490
10606
|
readonly connectionOptions: readonly [{
|
|
9491
|
-
readonly requiredScopes: readonly [
|
|
10607
|
+
readonly requiredScopes: readonly [{
|
|
10608
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10609
|
+
readonly type: "or";
|
|
10610
|
+
}];
|
|
9492
10611
|
}];
|
|
9493
|
-
readonly serviceId: "
|
|
10612
|
+
readonly serviceId: "google";
|
|
10613
|
+
} | {
|
|
10614
|
+
readonly connectionOptions: readonly [{
|
|
10615
|
+
readonly requiredScopes: readonly [{
|
|
10616
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10617
|
+
readonly type: "or";
|
|
10618
|
+
}];
|
|
10619
|
+
}];
|
|
10620
|
+
readonly serviceId: "google";
|
|
9494
10621
|
};
|
|
9495
|
-
|
|
10622
|
+
icon: string;
|
|
10623
|
+
type: "googleDrive.file.deleted";
|
|
9496
10624
|
} | {
|
|
9497
10625
|
name: string;
|
|
9498
10626
|
account: {
|
|
9499
10627
|
readonly connectionOptions: readonly [{
|
|
9500
|
-
readonly requiredScopes: readonly [
|
|
10628
|
+
readonly requiredScopes: readonly [{
|
|
10629
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10630
|
+
readonly type: "or";
|
|
10631
|
+
}];
|
|
9501
10632
|
}];
|
|
9502
|
-
readonly serviceId: "
|
|
10633
|
+
readonly serviceId: "google";
|
|
10634
|
+
} | {
|
|
10635
|
+
readonly connectionOptions: readonly [{
|
|
10636
|
+
readonly requiredScopes: readonly [{
|
|
10637
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10638
|
+
readonly type: "or";
|
|
10639
|
+
}];
|
|
10640
|
+
}];
|
|
10641
|
+
readonly serviceId: "google";
|
|
9503
10642
|
};
|
|
9504
|
-
|
|
10643
|
+
icon: string;
|
|
10644
|
+
type: "googleDrive.file.moved";
|
|
9505
10645
|
} | {
|
|
9506
10646
|
name: string;
|
|
9507
10647
|
account: {
|
|
9508
10648
|
readonly connectionOptions: readonly [{
|
|
9509
|
-
readonly requiredScopes: readonly [
|
|
10649
|
+
readonly requiredScopes: readonly [{
|
|
10650
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10651
|
+
readonly type: "or";
|
|
10652
|
+
}];
|
|
9510
10653
|
}];
|
|
9511
|
-
readonly serviceId: "
|
|
10654
|
+
readonly serviceId: "google";
|
|
10655
|
+
} | {
|
|
10656
|
+
readonly connectionOptions: readonly [{
|
|
10657
|
+
readonly requiredScopes: readonly [{
|
|
10658
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10659
|
+
readonly type: "or";
|
|
10660
|
+
}];
|
|
10661
|
+
}];
|
|
10662
|
+
readonly serviceId: "google";
|
|
9512
10663
|
};
|
|
9513
|
-
|
|
10664
|
+
icon: string;
|
|
10665
|
+
type: "googleDrive.file.renamed";
|
|
9514
10666
|
} | {
|
|
9515
10667
|
name: string;
|
|
9516
10668
|
account: {
|
|
9517
10669
|
readonly connectionOptions: readonly [{
|
|
9518
|
-
readonly requiredScopes: readonly [
|
|
10670
|
+
readonly requiredScopes: readonly [{
|
|
10671
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10672
|
+
readonly type: "or";
|
|
10673
|
+
}];
|
|
9519
10674
|
}];
|
|
9520
|
-
readonly serviceId: "
|
|
10675
|
+
readonly serviceId: "google";
|
|
10676
|
+
} | {
|
|
10677
|
+
readonly connectionOptions: readonly [{
|
|
10678
|
+
readonly requiredScopes: readonly [{
|
|
10679
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10680
|
+
readonly type: "or";
|
|
10681
|
+
}];
|
|
10682
|
+
}];
|
|
10683
|
+
readonly serviceId: "google";
|
|
9521
10684
|
};
|
|
9522
|
-
|
|
10685
|
+
icon: string;
|
|
10686
|
+
type: "googleDrive.file.trashed";
|
|
9523
10687
|
} | {
|
|
9524
10688
|
name: string;
|
|
9525
10689
|
account: {
|
|
9526
10690
|
readonly connectionOptions: readonly [{
|
|
9527
|
-
readonly requiredScopes: readonly [
|
|
10691
|
+
readonly requiredScopes: readonly [{
|
|
10692
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10693
|
+
readonly type: "or";
|
|
10694
|
+
}];
|
|
9528
10695
|
}];
|
|
9529
|
-
readonly serviceId: "
|
|
10696
|
+
readonly serviceId: "google";
|
|
10697
|
+
} | {
|
|
10698
|
+
readonly connectionOptions: readonly [{
|
|
10699
|
+
readonly requiredScopes: readonly [{
|
|
10700
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10701
|
+
readonly type: "or";
|
|
10702
|
+
}];
|
|
10703
|
+
}];
|
|
10704
|
+
readonly serviceId: "google";
|
|
9530
10705
|
};
|
|
9531
|
-
|
|
10706
|
+
icon: string;
|
|
10707
|
+
type: "googleDrive.file.untrashed";
|
|
9532
10708
|
} | {
|
|
9533
10709
|
name: string;
|
|
9534
10710
|
account: {
|
|
9535
10711
|
readonly connectionOptions: readonly [{
|
|
9536
|
-
readonly requiredScopes: readonly [
|
|
10712
|
+
readonly requiredScopes: readonly [{
|
|
10713
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10714
|
+
readonly type: "or";
|
|
10715
|
+
}];
|
|
9537
10716
|
}];
|
|
9538
|
-
readonly serviceId: "
|
|
10717
|
+
readonly serviceId: "google";
|
|
10718
|
+
} | {
|
|
10719
|
+
readonly connectionOptions: readonly [{
|
|
10720
|
+
readonly requiredScopes: readonly [{
|
|
10721
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10722
|
+
readonly type: "or";
|
|
10723
|
+
}];
|
|
10724
|
+
}];
|
|
10725
|
+
readonly serviceId: "google";
|
|
9539
10726
|
};
|
|
9540
|
-
|
|
10727
|
+
icon: string;
|
|
10728
|
+
type: "googleDrive.permission.created";
|
|
9541
10729
|
} | {
|
|
9542
10730
|
name: string;
|
|
9543
10731
|
account: {
|
|
9544
10732
|
readonly connectionOptions: readonly [{
|
|
9545
|
-
readonly requiredScopes: readonly [
|
|
10733
|
+
readonly requiredScopes: readonly [{
|
|
10734
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10735
|
+
readonly type: "or";
|
|
10736
|
+
}];
|
|
9546
10737
|
}];
|
|
9547
|
-
readonly serviceId: "
|
|
10738
|
+
readonly serviceId: "google";
|
|
10739
|
+
} | {
|
|
10740
|
+
readonly connectionOptions: readonly [{
|
|
10741
|
+
readonly requiredScopes: readonly [{
|
|
10742
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10743
|
+
readonly type: "or";
|
|
10744
|
+
}];
|
|
10745
|
+
}];
|
|
10746
|
+
readonly serviceId: "google";
|
|
9548
10747
|
};
|
|
9549
|
-
|
|
10748
|
+
icon: string;
|
|
10749
|
+
type: "googleDrive.permission.deleted";
|
|
9550
10750
|
} | {
|
|
9551
10751
|
name: string;
|
|
9552
10752
|
account: {
|
|
9553
10753
|
readonly connectionOptions: readonly [{
|
|
9554
|
-
readonly requiredScopes: readonly [
|
|
10754
|
+
readonly requiredScopes: readonly [{
|
|
10755
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10756
|
+
readonly type: "or";
|
|
10757
|
+
}];
|
|
9555
10758
|
}];
|
|
9556
|
-
readonly serviceId: "
|
|
10759
|
+
readonly serviceId: "google";
|
|
10760
|
+
} | {
|
|
10761
|
+
readonly connectionOptions: readonly [{
|
|
10762
|
+
readonly requiredScopes: readonly [{
|
|
10763
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10764
|
+
readonly type: "or";
|
|
10765
|
+
}];
|
|
10766
|
+
}];
|
|
10767
|
+
readonly serviceId: "google";
|
|
9557
10768
|
};
|
|
9558
|
-
|
|
10769
|
+
icon: string;
|
|
10770
|
+
type: "googleDrive.permission.edited";
|
|
9559
10771
|
} | {
|
|
9560
10772
|
name: string;
|
|
9561
10773
|
account: {
|
|
9562
10774
|
readonly connectionOptions: readonly [{
|
|
9563
|
-
readonly requiredScopes: readonly [
|
|
10775
|
+
readonly requiredScopes: readonly [{
|
|
10776
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10777
|
+
readonly type: "or";
|
|
10778
|
+
}];
|
|
9564
10779
|
}];
|
|
9565
|
-
readonly serviceId: "
|
|
10780
|
+
readonly serviceId: "google";
|
|
10781
|
+
} | {
|
|
10782
|
+
readonly connectionOptions: readonly [{
|
|
10783
|
+
readonly requiredScopes: readonly [{
|
|
10784
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10785
|
+
readonly type: "or";
|
|
10786
|
+
}];
|
|
10787
|
+
}];
|
|
10788
|
+
readonly serviceId: "google";
|
|
9566
10789
|
};
|
|
9567
|
-
|
|
10790
|
+
icon: string;
|
|
10791
|
+
type: "googleDrive.reply.created";
|
|
9568
10792
|
} | {
|
|
9569
10793
|
name: string;
|
|
9570
10794
|
account: {
|
|
9571
10795
|
readonly connectionOptions: readonly [{
|
|
9572
|
-
readonly requiredScopes: readonly [
|
|
10796
|
+
readonly requiredScopes: readonly [{
|
|
10797
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10798
|
+
readonly type: "or";
|
|
10799
|
+
}];
|
|
9573
10800
|
}];
|
|
9574
|
-
readonly serviceId: "
|
|
10801
|
+
readonly serviceId: "google";
|
|
10802
|
+
} | {
|
|
10803
|
+
readonly connectionOptions: readonly [{
|
|
10804
|
+
readonly requiredScopes: readonly [{
|
|
10805
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10806
|
+
readonly type: "or";
|
|
10807
|
+
}];
|
|
10808
|
+
}];
|
|
10809
|
+
readonly serviceId: "google";
|
|
9575
10810
|
};
|
|
9576
|
-
|
|
10811
|
+
icon: string;
|
|
10812
|
+
type: "googleDrive.reply.deleted";
|
|
9577
10813
|
} | {
|
|
9578
10814
|
name: string;
|
|
9579
10815
|
account: {
|
|
9580
10816
|
readonly connectionOptions: readonly [{
|
|
9581
|
-
readonly requiredScopes: readonly [
|
|
10817
|
+
readonly requiredScopes: readonly [{
|
|
10818
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
10819
|
+
readonly type: "or";
|
|
10820
|
+
}];
|
|
9582
10821
|
}];
|
|
9583
|
-
readonly serviceId: "
|
|
10822
|
+
readonly serviceId: "google";
|
|
10823
|
+
} | {
|
|
10824
|
+
readonly connectionOptions: readonly [{
|
|
10825
|
+
readonly requiredScopes: readonly [{
|
|
10826
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata", "https://www.googleapis.com/auth/drive.metadata.readonly"];
|
|
10827
|
+
readonly type: "or";
|
|
10828
|
+
}];
|
|
10829
|
+
}];
|
|
10830
|
+
readonly serviceId: "google";
|
|
9584
10831
|
};
|
|
9585
|
-
|
|
10832
|
+
icon: string;
|
|
10833
|
+
type: "googleDrive.reply.edited";
|
|
9586
10834
|
} | {
|
|
9587
10835
|
name: string;
|
|
9588
10836
|
account: {
|
|
@@ -9758,6 +11006,19 @@ export declare const triggerCatalog: ({
|
|
|
9758
11006
|
};
|
|
9759
11007
|
icon: "google-forms";
|
|
9760
11008
|
type: "googleForms.response.submitted";
|
|
11009
|
+
} | {
|
|
11010
|
+
name: string;
|
|
11011
|
+
account: {
|
|
11012
|
+
readonly connectionOptions: readonly [{
|
|
11013
|
+
readonly requiredScopes: readonly [{
|
|
11014
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.metadata"];
|
|
11015
|
+
readonly type: "or";
|
|
11016
|
+
}];
|
|
11017
|
+
}];
|
|
11018
|
+
readonly serviceId: "google";
|
|
11019
|
+
};
|
|
11020
|
+
icon: "google-drive";
|
|
11021
|
+
type: "googleDrive.event";
|
|
9761
11022
|
} | {
|
|
9762
11023
|
name: string;
|
|
9763
11024
|
account: {
|
|
@@ -9901,6 +11162,122 @@ export declare const triggerCatalog: ({
|
|
|
9901
11162
|
};
|
|
9902
11163
|
icon: "google-sheets";
|
|
9903
11164
|
type: "googleSheets.cells.changed";
|
|
11165
|
+
} | {
|
|
11166
|
+
name: string;
|
|
11167
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11168
|
+
type: "hubspot.crm.event";
|
|
11169
|
+
} | {
|
|
11170
|
+
name: string;
|
|
11171
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11172
|
+
type: "hubspot.company.associationAdded";
|
|
11173
|
+
} | {
|
|
11174
|
+
name: string;
|
|
11175
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11176
|
+
type: "hubspot.company.associationRemoved";
|
|
11177
|
+
} | {
|
|
11178
|
+
name: string;
|
|
11179
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11180
|
+
type: "hubspot.company.created";
|
|
11181
|
+
} | {
|
|
11182
|
+
name: string;
|
|
11183
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11184
|
+
type: "hubspot.company.deleted";
|
|
11185
|
+
} | {
|
|
11186
|
+
name: string;
|
|
11187
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11188
|
+
type: "hubspot.company.merged";
|
|
11189
|
+
} | {
|
|
11190
|
+
name: string;
|
|
11191
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11192
|
+
type: "hubspot.company.propertyChanged";
|
|
11193
|
+
} | {
|
|
11194
|
+
name: string;
|
|
11195
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11196
|
+
type: "hubspot.company.restored";
|
|
11197
|
+
} | {
|
|
11198
|
+
name: string;
|
|
11199
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11200
|
+
type: "hubspot.contact.associationAdded";
|
|
11201
|
+
} | {
|
|
11202
|
+
name: string;
|
|
11203
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11204
|
+
type: "hubspot.contact.associationRemoved";
|
|
11205
|
+
} | {
|
|
11206
|
+
name: string;
|
|
11207
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11208
|
+
type: "hubspot.contact.created";
|
|
11209
|
+
} | {
|
|
11210
|
+
name: string;
|
|
11211
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11212
|
+
type: "hubspot.contact.deleted";
|
|
11213
|
+
} | {
|
|
11214
|
+
name: string;
|
|
11215
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11216
|
+
type: "hubspot.contact.merged";
|
|
11217
|
+
} | {
|
|
11218
|
+
name: string;
|
|
11219
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11220
|
+
type: "hubspot.contact.propertyChanged";
|
|
11221
|
+
} | {
|
|
11222
|
+
name: string;
|
|
11223
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11224
|
+
type: "hubspot.contact.restored";
|
|
11225
|
+
} | {
|
|
11226
|
+
name: string;
|
|
11227
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11228
|
+
type: "hubspot.deal.associationAdded";
|
|
11229
|
+
} | {
|
|
11230
|
+
name: string;
|
|
11231
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11232
|
+
type: "hubspot.deal.associationRemoved";
|
|
11233
|
+
} | {
|
|
11234
|
+
name: string;
|
|
11235
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11236
|
+
type: "hubspot.deal.created";
|
|
11237
|
+
} | {
|
|
11238
|
+
name: string;
|
|
11239
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11240
|
+
type: "hubspot.deal.deleted";
|
|
11241
|
+
} | {
|
|
11242
|
+
name: string;
|
|
11243
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11244
|
+
type: "hubspot.deal.merged";
|
|
11245
|
+
} | {
|
|
11246
|
+
name: string;
|
|
11247
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11248
|
+
type: "hubspot.deal.propertyChanged";
|
|
11249
|
+
} | {
|
|
11250
|
+
name: string;
|
|
11251
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11252
|
+
type: "hubspot.deal.restored";
|
|
11253
|
+
} | {
|
|
11254
|
+
name: string;
|
|
11255
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11256
|
+
type: "hubspot.ticket.associationAdded";
|
|
11257
|
+
} | {
|
|
11258
|
+
name: string;
|
|
11259
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11260
|
+
type: "hubspot.ticket.associationRemoved";
|
|
11261
|
+
} | {
|
|
11262
|
+
name: string;
|
|
11263
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11264
|
+
type: "hubspot.ticket.created";
|
|
11265
|
+
} | {
|
|
11266
|
+
name: string;
|
|
11267
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11268
|
+
type: "hubspot.ticket.deleted";
|
|
11269
|
+
} | {
|
|
11270
|
+
name: string;
|
|
11271
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11272
|
+
type: "hubspot.ticket.merged";
|
|
11273
|
+
} | {
|
|
11274
|
+
name: string;
|
|
11275
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11276
|
+
type: "hubspot.ticket.propertyChanged";
|
|
11277
|
+
} | {
|
|
11278
|
+
name: string;
|
|
11279
|
+
account: import("..").IntegrationAccountRequirement<"hubspot">;
|
|
11280
|
+
type: "hubspot.ticket.restored";
|
|
9904
11281
|
} | {
|
|
9905
11282
|
name: string;
|
|
9906
11283
|
account: {
|