@automate.ax/catalog 0.116.0 → 0.119.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalog.d.ts +44 -2
- package/dist/catalog.js +28 -2
- package/dist/triggers/google.d.ts +59 -6
- package/dist/triggers/google.js +46 -10
- package/dist/triggers/index.d.ts +418 -12
- package/dist/triggers/microsoft.d.ts +153 -0
- package/dist/triggers/microsoft.js +115 -0
- package/package.json +1 -1
- package/src/catalog.ts +29 -2
- package/src/triggers/google.ts +47 -10
- package/src/triggers/microsoft.ts +203 -0
package/dist/triggers/index.d.ts
CHANGED
|
@@ -1956,6 +1956,54 @@ export declare const triggerDefinitions: {
|
|
|
1956
1956
|
account: import("..").IntegrationAccountRequirement<"notion">;
|
|
1957
1957
|
type: "notion.view.updated";
|
|
1958
1958
|
};
|
|
1959
|
+
readonly outlookMessageEvent: {
|
|
1960
|
+
readonly account: {
|
|
1961
|
+
readonly connectionOptions: readonly [{
|
|
1962
|
+
readonly requiredScopes: readonly [{
|
|
1963
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
1964
|
+
readonly type: "or";
|
|
1965
|
+
}];
|
|
1966
|
+
}];
|
|
1967
|
+
readonly serviceId: "microsoft";
|
|
1968
|
+
};
|
|
1969
|
+
readonly type: "outlook.message.changed";
|
|
1970
|
+
};
|
|
1971
|
+
readonly outlookMessageCreated: {
|
|
1972
|
+
readonly account: {
|
|
1973
|
+
readonly connectionOptions: readonly [{
|
|
1974
|
+
readonly requiredScopes: readonly [{
|
|
1975
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
1976
|
+
readonly type: "or";
|
|
1977
|
+
}];
|
|
1978
|
+
}];
|
|
1979
|
+
readonly serviceId: "microsoft";
|
|
1980
|
+
};
|
|
1981
|
+
readonly type: "outlook.message.created";
|
|
1982
|
+
};
|
|
1983
|
+
readonly outlookMessageDeleted: {
|
|
1984
|
+
readonly account: {
|
|
1985
|
+
readonly connectionOptions: readonly [{
|
|
1986
|
+
readonly requiredScopes: readonly [{
|
|
1987
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
1988
|
+
readonly type: "or";
|
|
1989
|
+
}];
|
|
1990
|
+
}];
|
|
1991
|
+
readonly serviceId: "microsoft";
|
|
1992
|
+
};
|
|
1993
|
+
readonly type: "outlook.message.deleted";
|
|
1994
|
+
};
|
|
1995
|
+
readonly outlookMessageUpdated: {
|
|
1996
|
+
readonly account: {
|
|
1997
|
+
readonly connectionOptions: readonly [{
|
|
1998
|
+
readonly requiredScopes: readonly [{
|
|
1999
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
2000
|
+
readonly type: "or";
|
|
2001
|
+
}];
|
|
2002
|
+
}];
|
|
2003
|
+
readonly serviceId: "microsoft";
|
|
2004
|
+
};
|
|
2005
|
+
readonly type: "outlook.message.updated";
|
|
2006
|
+
};
|
|
1959
2007
|
readonly outlookEmailReceived: {
|
|
1960
2008
|
readonly account: {
|
|
1961
2009
|
readonly connectionOptions: readonly [{
|
|
@@ -1981,6 +2029,110 @@ export declare const triggerDefinitions: {
|
|
|
1981
2029
|
readonly name: "Microsoft Teams channel message posted";
|
|
1982
2030
|
readonly type: "teams.channel.message.posted";
|
|
1983
2031
|
};
|
|
2032
|
+
readonly teamsChannelEvent: {
|
|
2033
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2034
|
+
type: "teams.channel.changed";
|
|
2035
|
+
};
|
|
2036
|
+
readonly teamsChannelCreated: {
|
|
2037
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2038
|
+
type: "teams.channel.created";
|
|
2039
|
+
};
|
|
2040
|
+
readonly teamsChannelDeleted: {
|
|
2041
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2042
|
+
type: "teams.channel.deleted";
|
|
2043
|
+
};
|
|
2044
|
+
readonly teamsChannelUpdated: {
|
|
2045
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2046
|
+
type: "teams.channel.updated";
|
|
2047
|
+
};
|
|
2048
|
+
readonly teamsTeamEvent: {
|
|
2049
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2050
|
+
type: "teams.team.changed";
|
|
2051
|
+
};
|
|
2052
|
+
readonly teamsTeamDeleted: {
|
|
2053
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2054
|
+
type: "teams.team.deleted";
|
|
2055
|
+
};
|
|
2056
|
+
readonly teamsTeamUpdated: {
|
|
2057
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2058
|
+
type: "teams.team.updated";
|
|
2059
|
+
};
|
|
2060
|
+
readonly teamsTeamMemberAdded: {
|
|
2061
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2062
|
+
type: "teams.team.member.added";
|
|
2063
|
+
};
|
|
2064
|
+
readonly teamsTeamMemberEvent: {
|
|
2065
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2066
|
+
type: "teams.team.member.changed";
|
|
2067
|
+
};
|
|
2068
|
+
readonly teamsTeamMemberRemoved: {
|
|
2069
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2070
|
+
type: "teams.team.member.removed";
|
|
2071
|
+
};
|
|
2072
|
+
readonly teamsTeamMemberUpdated: {
|
|
2073
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2074
|
+
type: "teams.team.member.updated";
|
|
2075
|
+
};
|
|
2076
|
+
readonly teamsChannelMemberAdded: {
|
|
2077
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2078
|
+
type: "teams.channel.member.added";
|
|
2079
|
+
};
|
|
2080
|
+
readonly teamsChannelMemberEvent: {
|
|
2081
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2082
|
+
type: "teams.channel.member.changed";
|
|
2083
|
+
};
|
|
2084
|
+
readonly teamsChannelMemberRemoved: {
|
|
2085
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2086
|
+
type: "teams.channel.member.removed";
|
|
2087
|
+
};
|
|
2088
|
+
readonly teamsChannelMemberUpdated: {
|
|
2089
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2090
|
+
type: "teams.channel.member.updated";
|
|
2091
|
+
};
|
|
2092
|
+
readonly teamsChannelMessageEvent: {
|
|
2093
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2094
|
+
type: "teams.channel.message.changed";
|
|
2095
|
+
};
|
|
2096
|
+
readonly teamsChannelMessageDeleted: {
|
|
2097
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2098
|
+
type: "teams.channel.message.deleted";
|
|
2099
|
+
};
|
|
2100
|
+
readonly teamsChannelMessageUpdated: {
|
|
2101
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2102
|
+
type: "teams.channel.message.updated";
|
|
2103
|
+
};
|
|
2104
|
+
readonly teamsChatEvent: {
|
|
2105
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2106
|
+
type: "teams.chat.changed";
|
|
2107
|
+
};
|
|
2108
|
+
readonly teamsChatMemberAdded: {
|
|
2109
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2110
|
+
type: "teams.chat.member.added";
|
|
2111
|
+
};
|
|
2112
|
+
readonly teamsChatMemberEvent: {
|
|
2113
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2114
|
+
type: "teams.chat.member.changed";
|
|
2115
|
+
};
|
|
2116
|
+
readonly teamsChatMemberRemoved: {
|
|
2117
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2118
|
+
type: "teams.chat.member.removed";
|
|
2119
|
+
};
|
|
2120
|
+
readonly teamsChatMessageEvent: {
|
|
2121
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2122
|
+
type: "teams.chat.message.changed";
|
|
2123
|
+
};
|
|
2124
|
+
readonly teamsChatMessageDeleted: {
|
|
2125
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2126
|
+
type: "teams.chat.message.deleted";
|
|
2127
|
+
};
|
|
2128
|
+
readonly teamsChatMessageUpdated: {
|
|
2129
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2130
|
+
type: "teams.chat.message.updated";
|
|
2131
|
+
};
|
|
2132
|
+
readonly teamsChatUpdated: {
|
|
2133
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
2134
|
+
type: "teams.chat.updated";
|
|
2135
|
+
};
|
|
1984
2136
|
readonly teamsChatMessagePosted: {
|
|
1985
2137
|
readonly account: {
|
|
1986
2138
|
readonly connectionOptions: readonly [{
|
|
@@ -2805,6 +2957,48 @@ export declare const triggerDefinitions: {
|
|
|
2805
2957
|
readonly icon: "gmail";
|
|
2806
2958
|
readonly type: "gmail.label.removed";
|
|
2807
2959
|
};
|
|
2960
|
+
readonly gmailMailboxChanged: {
|
|
2961
|
+
readonly account: {
|
|
2962
|
+
readonly connectionOptions: readonly [{
|
|
2963
|
+
readonly requiredScopes: readonly [{
|
|
2964
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
2965
|
+
readonly type: "or";
|
|
2966
|
+
}];
|
|
2967
|
+
}];
|
|
2968
|
+
readonly serviceId: "google";
|
|
2969
|
+
};
|
|
2970
|
+
readonly icon: "gmail";
|
|
2971
|
+
readonly name: "Gmail mailbox changed";
|
|
2972
|
+
readonly type: "gmail.mailbox.changed";
|
|
2973
|
+
};
|
|
2974
|
+
readonly gmailMessageAdded: {
|
|
2975
|
+
readonly account: {
|
|
2976
|
+
readonly connectionOptions: readonly [{
|
|
2977
|
+
readonly requiredScopes: readonly [{
|
|
2978
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
2979
|
+
readonly type: "or";
|
|
2980
|
+
}];
|
|
2981
|
+
}];
|
|
2982
|
+
readonly serviceId: "google";
|
|
2983
|
+
};
|
|
2984
|
+
readonly icon: "gmail";
|
|
2985
|
+
readonly name: "Gmail message added";
|
|
2986
|
+
readonly type: "gmail.message.added";
|
|
2987
|
+
};
|
|
2988
|
+
readonly gmailMessageDeleted: {
|
|
2989
|
+
readonly account: {
|
|
2990
|
+
readonly connectionOptions: readonly [{
|
|
2991
|
+
readonly requiredScopes: readonly [{
|
|
2992
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly", "https://www.googleapis.com/auth/gmail.metadata"];
|
|
2993
|
+
readonly type: "or";
|
|
2994
|
+
}];
|
|
2995
|
+
}];
|
|
2996
|
+
readonly serviceId: "google";
|
|
2997
|
+
};
|
|
2998
|
+
readonly icon: "gmail";
|
|
2999
|
+
readonly name: "Gmail message deleted";
|
|
3000
|
+
readonly type: "gmail.message.deleted";
|
|
3001
|
+
};
|
|
2808
3002
|
readonly gmailMessageReceived: {
|
|
2809
3003
|
readonly account: {
|
|
2810
3004
|
readonly connectionOptions: readonly [{
|
|
@@ -2837,7 +3031,7 @@ export declare const triggerDefinitions: {
|
|
|
2837
3031
|
readonly account: {
|
|
2838
3032
|
readonly connectionOptions: readonly [{
|
|
2839
3033
|
readonly requiredScopes: readonly [{
|
|
2840
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
3034
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
2841
3035
|
readonly type: "or";
|
|
2842
3036
|
}];
|
|
2843
3037
|
}];
|
|
@@ -2847,11 +3041,25 @@ export declare const triggerDefinitions: {
|
|
|
2847
3041
|
readonly name: "Google Calendar event created";
|
|
2848
3042
|
readonly type: "googleCalendar.event.created";
|
|
2849
3043
|
};
|
|
3044
|
+
readonly googleCalendarEventChanged: {
|
|
3045
|
+
readonly account: {
|
|
3046
|
+
readonly connectionOptions: readonly [{
|
|
3047
|
+
readonly requiredScopes: readonly [{
|
|
3048
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
3049
|
+
readonly type: "or";
|
|
3050
|
+
}];
|
|
3051
|
+
}];
|
|
3052
|
+
readonly serviceId: "google";
|
|
3053
|
+
};
|
|
3054
|
+
readonly icon: "google-calendar";
|
|
3055
|
+
readonly name: "Google Calendar event changed";
|
|
3056
|
+
readonly type: "googleCalendar.event.changed";
|
|
3057
|
+
};
|
|
2850
3058
|
readonly googleCalendarEventDeleted: {
|
|
2851
3059
|
readonly account: {
|
|
2852
3060
|
readonly connectionOptions: readonly [{
|
|
2853
3061
|
readonly requiredScopes: readonly [{
|
|
2854
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
3062
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
2855
3063
|
readonly type: "or";
|
|
2856
3064
|
}];
|
|
2857
3065
|
}];
|
|
@@ -2865,7 +3073,7 @@ export declare const triggerDefinitions: {
|
|
|
2865
3073
|
readonly account: {
|
|
2866
3074
|
readonly connectionOptions: readonly [{
|
|
2867
3075
|
readonly requiredScopes: readonly [{
|
|
2868
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
3076
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
2869
3077
|
readonly type: "or";
|
|
2870
3078
|
}];
|
|
2871
3079
|
}];
|
|
@@ -2893,9 +3101,6 @@ export declare const triggerDefinitions: {
|
|
|
2893
3101
|
readonly account: {
|
|
2894
3102
|
readonly connectionOptions: readonly [{
|
|
2895
3103
|
readonly requiredScopes: readonly [{
|
|
2896
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
2897
|
-
readonly type: "or";
|
|
2898
|
-
}, {
|
|
2899
3104
|
readonly requirements: readonly [{
|
|
2900
3105
|
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/forms.responses.readonly"];
|
|
2901
3106
|
readonly type: "or";
|
|
@@ -9404,6 +9609,45 @@ export declare const triggerCatalog: ({
|
|
|
9404
9609
|
};
|
|
9405
9610
|
icon: "gmail";
|
|
9406
9611
|
type: "gmail.label.removed";
|
|
9612
|
+
} | {
|
|
9613
|
+
name: string;
|
|
9614
|
+
account: {
|
|
9615
|
+
readonly connectionOptions: readonly [{
|
|
9616
|
+
readonly requiredScopes: readonly [{
|
|
9617
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
9618
|
+
readonly type: "or";
|
|
9619
|
+
}];
|
|
9620
|
+
}];
|
|
9621
|
+
readonly serviceId: "google";
|
|
9622
|
+
};
|
|
9623
|
+
icon: "gmail";
|
|
9624
|
+
type: "gmail.mailbox.changed";
|
|
9625
|
+
} | {
|
|
9626
|
+
name: string;
|
|
9627
|
+
account: {
|
|
9628
|
+
readonly connectionOptions: readonly [{
|
|
9629
|
+
readonly requiredScopes: readonly [{
|
|
9630
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
9631
|
+
readonly type: "or";
|
|
9632
|
+
}];
|
|
9633
|
+
}];
|
|
9634
|
+
readonly serviceId: "google";
|
|
9635
|
+
};
|
|
9636
|
+
icon: "gmail";
|
|
9637
|
+
type: "gmail.message.added";
|
|
9638
|
+
} | {
|
|
9639
|
+
name: string;
|
|
9640
|
+
account: {
|
|
9641
|
+
readonly connectionOptions: readonly [{
|
|
9642
|
+
readonly requiredScopes: readonly [{
|
|
9643
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly", "https://www.googleapis.com/auth/gmail.metadata"];
|
|
9644
|
+
readonly type: "or";
|
|
9645
|
+
}];
|
|
9646
|
+
}];
|
|
9647
|
+
readonly serviceId: "google";
|
|
9648
|
+
};
|
|
9649
|
+
icon: "gmail";
|
|
9650
|
+
type: "gmail.message.deleted";
|
|
9407
9651
|
} | {
|
|
9408
9652
|
name: string;
|
|
9409
9653
|
account: {
|
|
@@ -9435,7 +9679,7 @@ export declare const triggerCatalog: ({
|
|
|
9435
9679
|
account: {
|
|
9436
9680
|
readonly connectionOptions: readonly [{
|
|
9437
9681
|
readonly requiredScopes: readonly [{
|
|
9438
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9682
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9439
9683
|
readonly type: "or";
|
|
9440
9684
|
}];
|
|
9441
9685
|
}];
|
|
@@ -9448,7 +9692,20 @@ export declare const triggerCatalog: ({
|
|
|
9448
9692
|
account: {
|
|
9449
9693
|
readonly connectionOptions: readonly [{
|
|
9450
9694
|
readonly requiredScopes: readonly [{
|
|
9451
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9695
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9696
|
+
readonly type: "or";
|
|
9697
|
+
}];
|
|
9698
|
+
}];
|
|
9699
|
+
readonly serviceId: "google";
|
|
9700
|
+
};
|
|
9701
|
+
icon: "google-calendar";
|
|
9702
|
+
type: "googleCalendar.event.changed";
|
|
9703
|
+
} | {
|
|
9704
|
+
name: string;
|
|
9705
|
+
account: {
|
|
9706
|
+
readonly connectionOptions: readonly [{
|
|
9707
|
+
readonly requiredScopes: readonly [{
|
|
9708
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9452
9709
|
readonly type: "or";
|
|
9453
9710
|
}];
|
|
9454
9711
|
}];
|
|
@@ -9461,7 +9718,7 @@ export declare const triggerCatalog: ({
|
|
|
9461
9718
|
account: {
|
|
9462
9719
|
readonly connectionOptions: readonly [{
|
|
9463
9720
|
readonly requiredScopes: readonly [{
|
|
9464
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9721
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.app.created", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.freebusy", "https://www.googleapis.com/auth/calendar.events.owned", "https://www.googleapis.com/auth/calendar.events.owned.readonly", "https://www.googleapis.com/auth/calendar.events.public.readonly", "https://www.googleapis.com/auth/calendar.events.readonly"];
|
|
9465
9722
|
readonly type: "or";
|
|
9466
9723
|
}];
|
|
9467
9724
|
}];
|
|
@@ -9487,9 +9744,6 @@ export declare const triggerCatalog: ({
|
|
|
9487
9744
|
account: {
|
|
9488
9745
|
readonly connectionOptions: readonly [{
|
|
9489
9746
|
readonly requiredScopes: readonly [{
|
|
9490
|
-
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
9491
|
-
readonly type: "or";
|
|
9492
|
-
}, {
|
|
9493
9747
|
readonly requirements: readonly [{
|
|
9494
9748
|
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/forms.responses.readonly"];
|
|
9495
9749
|
readonly type: "or";
|
|
@@ -10427,6 +10681,158 @@ export declare const triggerCatalog: ({
|
|
|
10427
10681
|
value: string;
|
|
10428
10682
|
}[];
|
|
10429
10683
|
type: "millionverifier.fileDeletionScheduled";
|
|
10684
|
+
} | {
|
|
10685
|
+
name: string;
|
|
10686
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10687
|
+
type: "teams.channel.changed";
|
|
10688
|
+
} | {
|
|
10689
|
+
name: string;
|
|
10690
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10691
|
+
type: "teams.channel.created";
|
|
10692
|
+
} | {
|
|
10693
|
+
name: string;
|
|
10694
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10695
|
+
type: "teams.channel.deleted";
|
|
10696
|
+
} | {
|
|
10697
|
+
name: string;
|
|
10698
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10699
|
+
type: "teams.channel.updated";
|
|
10700
|
+
} | {
|
|
10701
|
+
name: string;
|
|
10702
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10703
|
+
type: "teams.team.changed";
|
|
10704
|
+
} | {
|
|
10705
|
+
name: string;
|
|
10706
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10707
|
+
type: "teams.team.deleted";
|
|
10708
|
+
} | {
|
|
10709
|
+
name: string;
|
|
10710
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10711
|
+
type: "teams.team.updated";
|
|
10712
|
+
} | {
|
|
10713
|
+
name: string;
|
|
10714
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10715
|
+
type: "teams.team.member.added";
|
|
10716
|
+
} | {
|
|
10717
|
+
name: string;
|
|
10718
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10719
|
+
type: "teams.team.member.changed";
|
|
10720
|
+
} | {
|
|
10721
|
+
name: string;
|
|
10722
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10723
|
+
type: "teams.team.member.removed";
|
|
10724
|
+
} | {
|
|
10725
|
+
name: string;
|
|
10726
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10727
|
+
type: "teams.team.member.updated";
|
|
10728
|
+
} | {
|
|
10729
|
+
name: string;
|
|
10730
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10731
|
+
type: "teams.channel.member.added";
|
|
10732
|
+
} | {
|
|
10733
|
+
name: string;
|
|
10734
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10735
|
+
type: "teams.channel.member.changed";
|
|
10736
|
+
} | {
|
|
10737
|
+
name: string;
|
|
10738
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10739
|
+
type: "teams.channel.member.removed";
|
|
10740
|
+
} | {
|
|
10741
|
+
name: string;
|
|
10742
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10743
|
+
type: "teams.channel.member.updated";
|
|
10744
|
+
} | {
|
|
10745
|
+
name: string;
|
|
10746
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10747
|
+
type: "teams.channel.message.changed";
|
|
10748
|
+
} | {
|
|
10749
|
+
name: string;
|
|
10750
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10751
|
+
type: "teams.channel.message.deleted";
|
|
10752
|
+
} | {
|
|
10753
|
+
name: string;
|
|
10754
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10755
|
+
type: "teams.channel.message.updated";
|
|
10756
|
+
} | {
|
|
10757
|
+
name: string;
|
|
10758
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10759
|
+
type: "teams.chat.changed";
|
|
10760
|
+
} | {
|
|
10761
|
+
name: string;
|
|
10762
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10763
|
+
type: "teams.chat.member.added";
|
|
10764
|
+
} | {
|
|
10765
|
+
name: string;
|
|
10766
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10767
|
+
type: "teams.chat.member.changed";
|
|
10768
|
+
} | {
|
|
10769
|
+
name: string;
|
|
10770
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10771
|
+
type: "teams.chat.member.removed";
|
|
10772
|
+
} | {
|
|
10773
|
+
name: string;
|
|
10774
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10775
|
+
type: "teams.chat.message.changed";
|
|
10776
|
+
} | {
|
|
10777
|
+
name: string;
|
|
10778
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10779
|
+
type: "teams.chat.message.deleted";
|
|
10780
|
+
} | {
|
|
10781
|
+
name: string;
|
|
10782
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10783
|
+
type: "teams.chat.message.updated";
|
|
10784
|
+
} | {
|
|
10785
|
+
name: string;
|
|
10786
|
+
account: import("..").IntegrationAccountRequirement<string>;
|
|
10787
|
+
type: "teams.chat.updated";
|
|
10788
|
+
} | {
|
|
10789
|
+
name: string;
|
|
10790
|
+
account: {
|
|
10791
|
+
readonly connectionOptions: readonly [{
|
|
10792
|
+
readonly requiredScopes: readonly [{
|
|
10793
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
10794
|
+
readonly type: "or";
|
|
10795
|
+
}];
|
|
10796
|
+
}];
|
|
10797
|
+
readonly serviceId: "microsoft";
|
|
10798
|
+
};
|
|
10799
|
+
type: "outlook.message.changed";
|
|
10800
|
+
} | {
|
|
10801
|
+
name: string;
|
|
10802
|
+
account: {
|
|
10803
|
+
readonly connectionOptions: readonly [{
|
|
10804
|
+
readonly requiredScopes: readonly [{
|
|
10805
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
10806
|
+
readonly type: "or";
|
|
10807
|
+
}];
|
|
10808
|
+
}];
|
|
10809
|
+
readonly serviceId: "microsoft";
|
|
10810
|
+
};
|
|
10811
|
+
type: "outlook.message.created";
|
|
10812
|
+
} | {
|
|
10813
|
+
name: string;
|
|
10814
|
+
account: {
|
|
10815
|
+
readonly connectionOptions: readonly [{
|
|
10816
|
+
readonly requiredScopes: readonly [{
|
|
10817
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
10818
|
+
readonly type: "or";
|
|
10819
|
+
}];
|
|
10820
|
+
}];
|
|
10821
|
+
readonly serviceId: "microsoft";
|
|
10822
|
+
};
|
|
10823
|
+
type: "outlook.message.deleted";
|
|
10824
|
+
} | {
|
|
10825
|
+
name: string;
|
|
10826
|
+
account: {
|
|
10827
|
+
readonly connectionOptions: readonly [{
|
|
10828
|
+
readonly requiredScopes: readonly [{
|
|
10829
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
10830
|
+
readonly type: "or";
|
|
10831
|
+
}];
|
|
10832
|
+
}];
|
|
10833
|
+
readonly serviceId: "microsoft";
|
|
10834
|
+
};
|
|
10835
|
+
type: "outlook.message.updated";
|
|
10430
10836
|
} | {
|
|
10431
10837
|
name: string;
|
|
10432
10838
|
account: {
|