@credal/actions 0.1.98 → 0.1.100

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.
Files changed (53) hide show
  1. package/dist/actions/actionMapper.js +73 -9
  2. package/dist/actions/autogen/templates.d.ts +12 -2
  3. package/dist/actions/autogen/templates.js +587 -6
  4. package/dist/actions/autogen/types.d.ts +543 -14
  5. package/dist/actions/autogen/types.js +171 -7
  6. package/dist/actions/groups.js +19 -2
  7. package/dist/actions/providers/confluence/updatePage.js +13 -9
  8. package/dist/actions/providers/google-oauth/addGroupMember.d.ts +3 -0
  9. package/dist/actions/providers/google-oauth/addGroupMember.js +37 -0
  10. package/dist/actions/providers/google-oauth/deleteCalendarEvent.d.ts +3 -0
  11. package/dist/actions/providers/google-oauth/deleteCalendarEvent.js +35 -0
  12. package/dist/actions/providers/google-oauth/deleteGroupMember.d.ts +3 -0
  13. package/dist/actions/providers/google-oauth/deleteGroupMember.js +33 -0
  14. package/dist/actions/providers/google-oauth/getGroup.d.ts +3 -0
  15. package/dist/actions/providers/google-oauth/getGroup.js +43 -0
  16. package/dist/actions/providers/google-oauth/hasGroupMember.d.ts +3 -0
  17. package/dist/actions/providers/google-oauth/hasGroupMember.js +37 -0
  18. package/dist/actions/providers/google-oauth/listCalendarEvents.d.ts +3 -0
  19. package/dist/actions/providers/google-oauth/listCalendarEvents.js +86 -0
  20. package/dist/actions/providers/google-oauth/listCalendars.d.ts +3 -0
  21. package/dist/actions/providers/google-oauth/listCalendars.js +63 -0
  22. package/dist/actions/providers/google-oauth/listGroupMembers.d.ts +3 -0
  23. package/dist/actions/providers/google-oauth/listGroupMembers.js +54 -0
  24. package/dist/actions/providers/google-oauth/listGroups.d.ts +3 -0
  25. package/dist/actions/providers/google-oauth/listGroups.js +56 -0
  26. package/dist/actions/providers/google-oauth/updateCalendarEvent.d.ts +3 -0
  27. package/dist/actions/providers/google-oauth/updateCalendarEvent.js +59 -0
  28. package/dist/actions/providers/googlemail/listGmailThreads.d.ts +3 -0
  29. package/dist/actions/providers/{google-oauth → googlemail}/listGmailThreads.js +1 -1
  30. package/dist/actions/providers/googlemail/searchGmailMessages.d.ts +3 -0
  31. package/dist/actions/providers/{google-oauth → googlemail}/searchGmailMessages.js +1 -1
  32. package/dist/actions/providers/slack/listConversations.d.ts +1 -1
  33. package/package.json +1 -1
  34. package/dist/actions/autogen/definitions.d.ts +0 -5
  35. package/dist/actions/autogen/definitions.js +0 -132
  36. package/dist/actions/definitions.js +0 -35
  37. package/dist/actions/invokeMapper.d.ts +0 -9
  38. package/dist/actions/invokeMapper.js +0 -33
  39. package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +0 -3
  40. package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +0 -3
  41. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +0 -3
  42. package/dist/actions/providers/googlemaps/nearbysearch.js +0 -96
  43. package/dist/actions/providers/jira/createTicket.d.ts +0 -3
  44. package/dist/actions/providers/jira/createTicket.js +0 -34
  45. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
  46. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
  47. package/dist/actions/providers/slack/list_conversations.d.ts +0 -3
  48. package/dist/actions/providers/slack/list_conversations.js +0 -60
  49. package/dist/actions/providers/slack/summarizeChannel.d.ts +0 -3
  50. package/dist/actions/providers/slack/summarizeChannel.js +0 -51
  51. package/dist/actions/schema.js +0 -6
  52. package/dist/actions/types.js +0 -2
  53. package/dist/main.js +0 -11
@@ -2149,6 +2149,313 @@ export declare const googleOauthScheduleCalendarMeetingOutputSchema: z.ZodObject
2149
2149
  }>;
2150
2150
  export type googleOauthScheduleCalendarMeetingOutputType = z.infer<typeof googleOauthScheduleCalendarMeetingOutputSchema>;
2151
2151
  export type googleOauthScheduleCalendarMeetingFunction = ActionFunction<googleOauthScheduleCalendarMeetingParamsType, AuthParamsType, googleOauthScheduleCalendarMeetingOutputType>;
2152
+ export declare const googleOauthListCalendarsParamsSchema: z.ZodObject<{
2153
+ maxResults: z.ZodOptional<z.ZodNumber>;
2154
+ }, "strip", z.ZodTypeAny, {
2155
+ maxResults?: number | undefined;
2156
+ }, {
2157
+ maxResults?: number | undefined;
2158
+ }>;
2159
+ export type googleOauthListCalendarsParamsType = z.infer<typeof googleOauthListCalendarsParamsSchema>;
2160
+ export declare const googleOauthListCalendarsOutputSchema: z.ZodObject<{
2161
+ success: z.ZodBoolean;
2162
+ calendars: z.ZodArray<z.ZodObject<{
2163
+ id: z.ZodString;
2164
+ summary: z.ZodString;
2165
+ }, "strip", z.ZodTypeAny, {
2166
+ id: string;
2167
+ summary: string;
2168
+ }, {
2169
+ id: string;
2170
+ summary: string;
2171
+ }>, "many">;
2172
+ error: z.ZodOptional<z.ZodString>;
2173
+ }, "strip", z.ZodTypeAny, {
2174
+ success: boolean;
2175
+ calendars: {
2176
+ id: string;
2177
+ summary: string;
2178
+ }[];
2179
+ error?: string | undefined;
2180
+ }, {
2181
+ success: boolean;
2182
+ calendars: {
2183
+ id: string;
2184
+ summary: string;
2185
+ }[];
2186
+ error?: string | undefined;
2187
+ }>;
2188
+ export type googleOauthListCalendarsOutputType = z.infer<typeof googleOauthListCalendarsOutputSchema>;
2189
+ export type googleOauthListCalendarsFunction = ActionFunction<googleOauthListCalendarsParamsType, AuthParamsType, googleOauthListCalendarsOutputType>;
2190
+ export declare const googleOauthListCalendarEventsParamsSchema: z.ZodObject<{
2191
+ calendarId: z.ZodString;
2192
+ query: z.ZodOptional<z.ZodString>;
2193
+ maxResults: z.ZodOptional<z.ZodNumber>;
2194
+ }, "strip", z.ZodTypeAny, {
2195
+ calendarId: string;
2196
+ query?: string | undefined;
2197
+ maxResults?: number | undefined;
2198
+ }, {
2199
+ calendarId: string;
2200
+ query?: string | undefined;
2201
+ maxResults?: number | undefined;
2202
+ }>;
2203
+ export type googleOauthListCalendarEventsParamsType = z.infer<typeof googleOauthListCalendarEventsParamsSchema>;
2204
+ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
2205
+ success: z.ZodBoolean;
2206
+ events: z.ZodArray<z.ZodObject<{
2207
+ id: z.ZodOptional<z.ZodString>;
2208
+ status: z.ZodOptional<z.ZodString>;
2209
+ url: z.ZodOptional<z.ZodString>;
2210
+ title: z.ZodOptional<z.ZodString>;
2211
+ description: z.ZodOptional<z.ZodString>;
2212
+ location: z.ZodOptional<z.ZodString>;
2213
+ start: z.ZodOptional<z.ZodString>;
2214
+ end: z.ZodOptional<z.ZodString>;
2215
+ attendees: z.ZodOptional<z.ZodArray<z.ZodObject<{
2216
+ email: z.ZodOptional<z.ZodString>;
2217
+ displayName: z.ZodOptional<z.ZodString>;
2218
+ responseStatus: z.ZodOptional<z.ZodString>;
2219
+ }, "strip", z.ZodTypeAny, {
2220
+ email?: string | undefined;
2221
+ displayName?: string | undefined;
2222
+ responseStatus?: string | undefined;
2223
+ }, {
2224
+ email?: string | undefined;
2225
+ displayName?: string | undefined;
2226
+ responseStatus?: string | undefined;
2227
+ }>, "many">>;
2228
+ organizer: z.ZodOptional<z.ZodObject<{
2229
+ email: z.ZodOptional<z.ZodString>;
2230
+ displayName: z.ZodOptional<z.ZodString>;
2231
+ }, "strip", z.ZodTypeAny, {
2232
+ email?: string | undefined;
2233
+ displayName?: string | undefined;
2234
+ }, {
2235
+ email?: string | undefined;
2236
+ displayName?: string | undefined;
2237
+ }>>;
2238
+ hangoutLink: z.ZodOptional<z.ZodString>;
2239
+ created: z.ZodOptional<z.ZodString>;
2240
+ updated: z.ZodOptional<z.ZodString>;
2241
+ }, "strip", z.ZodTypeAny, {
2242
+ status?: string | undefined;
2243
+ description?: string | undefined;
2244
+ id?: string | undefined;
2245
+ title?: string | undefined;
2246
+ url?: string | undefined;
2247
+ location?: string | undefined;
2248
+ start?: string | undefined;
2249
+ end?: string | undefined;
2250
+ attendees?: {
2251
+ email?: string | undefined;
2252
+ displayName?: string | undefined;
2253
+ responseStatus?: string | undefined;
2254
+ }[] | undefined;
2255
+ created?: string | undefined;
2256
+ updated?: string | undefined;
2257
+ organizer?: {
2258
+ email?: string | undefined;
2259
+ displayName?: string | undefined;
2260
+ } | undefined;
2261
+ hangoutLink?: string | undefined;
2262
+ }, {
2263
+ status?: string | undefined;
2264
+ description?: string | undefined;
2265
+ id?: string | undefined;
2266
+ title?: string | undefined;
2267
+ url?: string | undefined;
2268
+ location?: string | undefined;
2269
+ start?: string | undefined;
2270
+ end?: string | undefined;
2271
+ attendees?: {
2272
+ email?: string | undefined;
2273
+ displayName?: string | undefined;
2274
+ responseStatus?: string | undefined;
2275
+ }[] | undefined;
2276
+ created?: string | undefined;
2277
+ updated?: string | undefined;
2278
+ organizer?: {
2279
+ email?: string | undefined;
2280
+ displayName?: string | undefined;
2281
+ } | undefined;
2282
+ hangoutLink?: string | undefined;
2283
+ }>, "many">;
2284
+ error: z.ZodOptional<z.ZodString>;
2285
+ }, "strip", z.ZodTypeAny, {
2286
+ success: boolean;
2287
+ events: {
2288
+ status?: string | undefined;
2289
+ description?: string | undefined;
2290
+ id?: string | undefined;
2291
+ title?: string | undefined;
2292
+ url?: string | undefined;
2293
+ location?: string | undefined;
2294
+ start?: string | undefined;
2295
+ end?: string | undefined;
2296
+ attendees?: {
2297
+ email?: string | undefined;
2298
+ displayName?: string | undefined;
2299
+ responseStatus?: string | undefined;
2300
+ }[] | undefined;
2301
+ created?: string | undefined;
2302
+ updated?: string | undefined;
2303
+ organizer?: {
2304
+ email?: string | undefined;
2305
+ displayName?: string | undefined;
2306
+ } | undefined;
2307
+ hangoutLink?: string | undefined;
2308
+ }[];
2309
+ error?: string | undefined;
2310
+ }, {
2311
+ success: boolean;
2312
+ events: {
2313
+ status?: string | undefined;
2314
+ description?: string | undefined;
2315
+ id?: string | undefined;
2316
+ title?: string | undefined;
2317
+ url?: string | undefined;
2318
+ location?: string | undefined;
2319
+ start?: string | undefined;
2320
+ end?: string | undefined;
2321
+ attendees?: {
2322
+ email?: string | undefined;
2323
+ displayName?: string | undefined;
2324
+ responseStatus?: string | undefined;
2325
+ }[] | undefined;
2326
+ created?: string | undefined;
2327
+ updated?: string | undefined;
2328
+ organizer?: {
2329
+ email?: string | undefined;
2330
+ displayName?: string | undefined;
2331
+ } | undefined;
2332
+ hangoutLink?: string | undefined;
2333
+ }[];
2334
+ error?: string | undefined;
2335
+ }>;
2336
+ export type googleOauthListCalendarEventsOutputType = z.infer<typeof googleOauthListCalendarEventsOutputSchema>;
2337
+ export type googleOauthListCalendarEventsFunction = ActionFunction<googleOauthListCalendarEventsParamsType, AuthParamsType, googleOauthListCalendarEventsOutputType>;
2338
+ export declare const googleOauthUpdateCalendarEventParamsSchema: z.ZodObject<{
2339
+ calendarId: z.ZodString;
2340
+ eventId: z.ZodString;
2341
+ updates: z.ZodOptional<z.ZodObject<{
2342
+ title: z.ZodOptional<z.ZodString>;
2343
+ description: z.ZodOptional<z.ZodString>;
2344
+ start: z.ZodOptional<z.ZodString>;
2345
+ end: z.ZodOptional<z.ZodString>;
2346
+ location: z.ZodOptional<z.ZodString>;
2347
+ attendees: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2348
+ status: z.ZodOptional<z.ZodString>;
2349
+ organizer: z.ZodOptional<z.ZodObject<{
2350
+ email: z.ZodOptional<z.ZodString>;
2351
+ displayName: z.ZodOptional<z.ZodString>;
2352
+ }, "strip", z.ZodTypeAny, {
2353
+ email?: string | undefined;
2354
+ displayName?: string | undefined;
2355
+ }, {
2356
+ email?: string | undefined;
2357
+ displayName?: string | undefined;
2358
+ }>>;
2359
+ }, "strip", z.ZodTypeAny, {
2360
+ status?: string | undefined;
2361
+ description?: string | undefined;
2362
+ title?: string | undefined;
2363
+ location?: string | undefined;
2364
+ start?: string | undefined;
2365
+ end?: string | undefined;
2366
+ attendees?: string[] | undefined;
2367
+ organizer?: {
2368
+ email?: string | undefined;
2369
+ displayName?: string | undefined;
2370
+ } | undefined;
2371
+ }, {
2372
+ status?: string | undefined;
2373
+ description?: string | undefined;
2374
+ title?: string | undefined;
2375
+ location?: string | undefined;
2376
+ start?: string | undefined;
2377
+ end?: string | undefined;
2378
+ attendees?: string[] | undefined;
2379
+ organizer?: {
2380
+ email?: string | undefined;
2381
+ displayName?: string | undefined;
2382
+ } | undefined;
2383
+ }>>;
2384
+ }, "strip", z.ZodTypeAny, {
2385
+ calendarId: string;
2386
+ eventId: string;
2387
+ updates?: {
2388
+ status?: string | undefined;
2389
+ description?: string | undefined;
2390
+ title?: string | undefined;
2391
+ location?: string | undefined;
2392
+ start?: string | undefined;
2393
+ end?: string | undefined;
2394
+ attendees?: string[] | undefined;
2395
+ organizer?: {
2396
+ email?: string | undefined;
2397
+ displayName?: string | undefined;
2398
+ } | undefined;
2399
+ } | undefined;
2400
+ }, {
2401
+ calendarId: string;
2402
+ eventId: string;
2403
+ updates?: {
2404
+ status?: string | undefined;
2405
+ description?: string | undefined;
2406
+ title?: string | undefined;
2407
+ location?: string | undefined;
2408
+ start?: string | undefined;
2409
+ end?: string | undefined;
2410
+ attendees?: string[] | undefined;
2411
+ organizer?: {
2412
+ email?: string | undefined;
2413
+ displayName?: string | undefined;
2414
+ } | undefined;
2415
+ } | undefined;
2416
+ }>;
2417
+ export type googleOauthUpdateCalendarEventParamsType = z.infer<typeof googleOauthUpdateCalendarEventParamsSchema>;
2418
+ export declare const googleOauthUpdateCalendarEventOutputSchema: z.ZodObject<{
2419
+ success: z.ZodBoolean;
2420
+ eventId: z.ZodOptional<z.ZodString>;
2421
+ eventUrl: z.ZodOptional<z.ZodString>;
2422
+ error: z.ZodOptional<z.ZodString>;
2423
+ }, "strip", z.ZodTypeAny, {
2424
+ success: boolean;
2425
+ error?: string | undefined;
2426
+ eventId?: string | undefined;
2427
+ eventUrl?: string | undefined;
2428
+ }, {
2429
+ success: boolean;
2430
+ error?: string | undefined;
2431
+ eventId?: string | undefined;
2432
+ eventUrl?: string | undefined;
2433
+ }>;
2434
+ export type googleOauthUpdateCalendarEventOutputType = z.infer<typeof googleOauthUpdateCalendarEventOutputSchema>;
2435
+ export type googleOauthUpdateCalendarEventFunction = ActionFunction<googleOauthUpdateCalendarEventParamsType, AuthParamsType, googleOauthUpdateCalendarEventOutputType>;
2436
+ export declare const googleOauthDeleteCalendarEventParamsSchema: z.ZodObject<{
2437
+ calendarId: z.ZodString;
2438
+ eventId: z.ZodString;
2439
+ }, "strip", z.ZodTypeAny, {
2440
+ calendarId: string;
2441
+ eventId: string;
2442
+ }, {
2443
+ calendarId: string;
2444
+ eventId: string;
2445
+ }>;
2446
+ export type googleOauthDeleteCalendarEventParamsType = z.infer<typeof googleOauthDeleteCalendarEventParamsSchema>;
2447
+ export declare const googleOauthDeleteCalendarEventOutputSchema: z.ZodObject<{
2448
+ success: z.ZodBoolean;
2449
+ error: z.ZodOptional<z.ZodString>;
2450
+ }, "strip", z.ZodTypeAny, {
2451
+ success: boolean;
2452
+ error?: string | undefined;
2453
+ }, {
2454
+ success: boolean;
2455
+ error?: string | undefined;
2456
+ }>;
2457
+ export type googleOauthDeleteCalendarEventOutputType = z.infer<typeof googleOauthDeleteCalendarEventOutputSchema>;
2458
+ export type googleOauthDeleteCalendarEventFunction = ActionFunction<googleOauthDeleteCalendarEventParamsType, AuthParamsType, googleOauthDeleteCalendarEventOutputType>;
2152
2459
  export declare const googleOauthCreateSpreadsheetParamsSchema: z.ZodObject<{
2153
2460
  title: z.ZodString;
2154
2461
  sheets: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2527,7 +2834,229 @@ export declare const googleOauthSearchDriveByKeywordsOutputSchema: z.ZodObject<{
2527
2834
  }>;
2528
2835
  export type googleOauthSearchDriveByKeywordsOutputType = z.infer<typeof googleOauthSearchDriveByKeywordsOutputSchema>;
2529
2836
  export type googleOauthSearchDriveByKeywordsFunction = ActionFunction<googleOauthSearchDriveByKeywordsParamsType, AuthParamsType, googleOauthSearchDriveByKeywordsOutputType>;
2530
- export declare const googleOauthSearchGmailMessagesParamsSchema: z.ZodObject<{
2837
+ export declare const googleOauthListGroupsParamsSchema: z.ZodObject<{
2838
+ maxResults: z.ZodOptional<z.ZodNumber>;
2839
+ }, "strip", z.ZodTypeAny, {
2840
+ maxResults?: number | undefined;
2841
+ }, {
2842
+ maxResults?: number | undefined;
2843
+ }>;
2844
+ export type googleOauthListGroupsParamsType = z.infer<typeof googleOauthListGroupsParamsSchema>;
2845
+ export declare const googleOauthListGroupsOutputSchema: z.ZodObject<{
2846
+ success: z.ZodBoolean;
2847
+ groups: z.ZodArray<z.ZodObject<{
2848
+ id: z.ZodString;
2849
+ email: z.ZodString;
2850
+ name: z.ZodString;
2851
+ description: z.ZodOptional<z.ZodString>;
2852
+ }, "strip", z.ZodTypeAny, {
2853
+ name: string;
2854
+ id: string;
2855
+ email: string;
2856
+ description?: string | undefined;
2857
+ }, {
2858
+ name: string;
2859
+ id: string;
2860
+ email: string;
2861
+ description?: string | undefined;
2862
+ }>, "many">;
2863
+ error: z.ZodOptional<z.ZodString>;
2864
+ }, "strip", z.ZodTypeAny, {
2865
+ success: boolean;
2866
+ groups: {
2867
+ name: string;
2868
+ id: string;
2869
+ email: string;
2870
+ description?: string | undefined;
2871
+ }[];
2872
+ error?: string | undefined;
2873
+ }, {
2874
+ success: boolean;
2875
+ groups: {
2876
+ name: string;
2877
+ id: string;
2878
+ email: string;
2879
+ description?: string | undefined;
2880
+ }[];
2881
+ error?: string | undefined;
2882
+ }>;
2883
+ export type googleOauthListGroupsOutputType = z.infer<typeof googleOauthListGroupsOutputSchema>;
2884
+ export type googleOauthListGroupsFunction = ActionFunction<googleOauthListGroupsParamsType, AuthParamsType, googleOauthListGroupsOutputType>;
2885
+ export declare const googleOauthGetGroupParamsSchema: z.ZodObject<{
2886
+ groupKey: z.ZodString;
2887
+ }, "strip", z.ZodTypeAny, {
2888
+ groupKey: string;
2889
+ }, {
2890
+ groupKey: string;
2891
+ }>;
2892
+ export type googleOauthGetGroupParamsType = z.infer<typeof googleOauthGetGroupParamsSchema>;
2893
+ export declare const googleOauthGetGroupOutputSchema: z.ZodObject<{
2894
+ success: z.ZodBoolean;
2895
+ group: z.ZodObject<{
2896
+ id: z.ZodString;
2897
+ email: z.ZodString;
2898
+ name: z.ZodString;
2899
+ description: z.ZodOptional<z.ZodString>;
2900
+ }, "strip", z.ZodTypeAny, {
2901
+ name: string;
2902
+ id: string;
2903
+ email: string;
2904
+ description?: string | undefined;
2905
+ }, {
2906
+ name: string;
2907
+ id: string;
2908
+ email: string;
2909
+ description?: string | undefined;
2910
+ }>;
2911
+ error: z.ZodOptional<z.ZodString>;
2912
+ }, "strip", z.ZodTypeAny, {
2913
+ success: boolean;
2914
+ group: {
2915
+ name: string;
2916
+ id: string;
2917
+ email: string;
2918
+ description?: string | undefined;
2919
+ };
2920
+ error?: string | undefined;
2921
+ }, {
2922
+ success: boolean;
2923
+ group: {
2924
+ name: string;
2925
+ id: string;
2926
+ email: string;
2927
+ description?: string | undefined;
2928
+ };
2929
+ error?: string | undefined;
2930
+ }>;
2931
+ export type googleOauthGetGroupOutputType = z.infer<typeof googleOauthGetGroupOutputSchema>;
2932
+ export type googleOauthGetGroupFunction = ActionFunction<googleOauthGetGroupParamsType, AuthParamsType, googleOauthGetGroupOutputType>;
2933
+ export declare const googleOauthListGroupMembersParamsSchema: z.ZodObject<{
2934
+ groupKey: z.ZodString;
2935
+ maxResults: z.ZodOptional<z.ZodNumber>;
2936
+ }, "strip", z.ZodTypeAny, {
2937
+ groupKey: string;
2938
+ maxResults?: number | undefined;
2939
+ }, {
2940
+ groupKey: string;
2941
+ maxResults?: number | undefined;
2942
+ }>;
2943
+ export type googleOauthListGroupMembersParamsType = z.infer<typeof googleOauthListGroupMembersParamsSchema>;
2944
+ export declare const googleOauthListGroupMembersOutputSchema: z.ZodObject<{
2945
+ success: z.ZodBoolean;
2946
+ members: z.ZodArray<z.ZodObject<{
2947
+ id: z.ZodString;
2948
+ email: z.ZodString;
2949
+ role: z.ZodString;
2950
+ type: z.ZodString;
2951
+ }, "strip", z.ZodTypeAny, {
2952
+ type: string;
2953
+ id: string;
2954
+ email: string;
2955
+ role: string;
2956
+ }, {
2957
+ type: string;
2958
+ id: string;
2959
+ email: string;
2960
+ role: string;
2961
+ }>, "many">;
2962
+ error: z.ZodOptional<z.ZodString>;
2963
+ }, "strip", z.ZodTypeAny, {
2964
+ success: boolean;
2965
+ members: {
2966
+ type: string;
2967
+ id: string;
2968
+ email: string;
2969
+ role: string;
2970
+ }[];
2971
+ error?: string | undefined;
2972
+ }, {
2973
+ success: boolean;
2974
+ members: {
2975
+ type: string;
2976
+ id: string;
2977
+ email: string;
2978
+ role: string;
2979
+ }[];
2980
+ error?: string | undefined;
2981
+ }>;
2982
+ export type googleOauthListGroupMembersOutputType = z.infer<typeof googleOauthListGroupMembersOutputSchema>;
2983
+ export type googleOauthListGroupMembersFunction = ActionFunction<googleOauthListGroupMembersParamsType, AuthParamsType, googleOauthListGroupMembersOutputType>;
2984
+ export declare const googleOauthHasGroupMemberParamsSchema: z.ZodObject<{
2985
+ groupKey: z.ZodString;
2986
+ memberKey: z.ZodString;
2987
+ }, "strip", z.ZodTypeAny, {
2988
+ groupKey: string;
2989
+ memberKey: string;
2990
+ }, {
2991
+ groupKey: string;
2992
+ memberKey: string;
2993
+ }>;
2994
+ export type googleOauthHasGroupMemberParamsType = z.infer<typeof googleOauthHasGroupMemberParamsSchema>;
2995
+ export declare const googleOauthHasGroupMemberOutputSchema: z.ZodObject<{
2996
+ success: z.ZodBoolean;
2997
+ isMember: z.ZodBoolean;
2998
+ error: z.ZodOptional<z.ZodString>;
2999
+ }, "strip", z.ZodTypeAny, {
3000
+ success: boolean;
3001
+ isMember: boolean;
3002
+ error?: string | undefined;
3003
+ }, {
3004
+ success: boolean;
3005
+ isMember: boolean;
3006
+ error?: string | undefined;
3007
+ }>;
3008
+ export type googleOauthHasGroupMemberOutputType = z.infer<typeof googleOauthHasGroupMemberOutputSchema>;
3009
+ export type googleOauthHasGroupMemberFunction = ActionFunction<googleOauthHasGroupMemberParamsType, AuthParamsType, googleOauthHasGroupMemberOutputType>;
3010
+ export declare const googleOauthAddGroupMemberParamsSchema: z.ZodObject<{
3011
+ groupKey: z.ZodString;
3012
+ email: z.ZodString;
3013
+ }, "strip", z.ZodTypeAny, {
3014
+ email: string;
3015
+ groupKey: string;
3016
+ }, {
3017
+ email: string;
3018
+ groupKey: string;
3019
+ }>;
3020
+ export type googleOauthAddGroupMemberParamsType = z.infer<typeof googleOauthAddGroupMemberParamsSchema>;
3021
+ export declare const googleOauthAddGroupMemberOutputSchema: z.ZodObject<{
3022
+ success: z.ZodBoolean;
3023
+ memberID: z.ZodString;
3024
+ error: z.ZodOptional<z.ZodString>;
3025
+ }, "strip", z.ZodTypeAny, {
3026
+ success: boolean;
3027
+ memberID: string;
3028
+ error?: string | undefined;
3029
+ }, {
3030
+ success: boolean;
3031
+ memberID: string;
3032
+ error?: string | undefined;
3033
+ }>;
3034
+ export type googleOauthAddGroupMemberOutputType = z.infer<typeof googleOauthAddGroupMemberOutputSchema>;
3035
+ export type googleOauthAddGroupMemberFunction = ActionFunction<googleOauthAddGroupMemberParamsType, AuthParamsType, googleOauthAddGroupMemberOutputType>;
3036
+ export declare const googleOauthDeleteGroupMemberParamsSchema: z.ZodObject<{
3037
+ groupKey: z.ZodString;
3038
+ memberKey: z.ZodString;
3039
+ }, "strip", z.ZodTypeAny, {
3040
+ groupKey: string;
3041
+ memberKey: string;
3042
+ }, {
3043
+ groupKey: string;
3044
+ memberKey: string;
3045
+ }>;
3046
+ export type googleOauthDeleteGroupMemberParamsType = z.infer<typeof googleOauthDeleteGroupMemberParamsSchema>;
3047
+ export declare const googleOauthDeleteGroupMemberOutputSchema: z.ZodObject<{
3048
+ success: z.ZodBoolean;
3049
+ error: z.ZodOptional<z.ZodString>;
3050
+ }, "strip", z.ZodTypeAny, {
3051
+ success: boolean;
3052
+ error?: string | undefined;
3053
+ }, {
3054
+ success: boolean;
3055
+ error?: string | undefined;
3056
+ }>;
3057
+ export type googleOauthDeleteGroupMemberOutputType = z.infer<typeof googleOauthDeleteGroupMemberOutputSchema>;
3058
+ export type googleOauthDeleteGroupMemberFunction = ActionFunction<googleOauthDeleteGroupMemberParamsType, AuthParamsType, googleOauthDeleteGroupMemberOutputType>;
3059
+ export declare const googlemailSearchGmailMessagesParamsSchema: z.ZodObject<{
2531
3060
  query: z.ZodString;
2532
3061
  maxResults: z.ZodOptional<z.ZodNumber>;
2533
3062
  }, "strip", z.ZodTypeAny, {
@@ -2537,8 +3066,8 @@ export declare const googleOauthSearchGmailMessagesParamsSchema: z.ZodObject<{
2537
3066
  query: string;
2538
3067
  maxResults?: number | undefined;
2539
3068
  }>;
2540
- export type googleOauthSearchGmailMessagesParamsType = z.infer<typeof googleOauthSearchGmailMessagesParamsSchema>;
2541
- export declare const googleOauthSearchGmailMessagesOutputSchema: z.ZodObject<{
3069
+ export type googlemailSearchGmailMessagesParamsType = z.infer<typeof googlemailSearchGmailMessagesParamsSchema>;
3070
+ export declare const googlemailSearchGmailMessagesOutputSchema: z.ZodObject<{
2542
3071
  success: z.ZodBoolean;
2543
3072
  messages: z.ZodArray<z.ZodObject<{
2544
3073
  id: z.ZodString;
@@ -2586,9 +3115,9 @@ export declare const googleOauthSearchGmailMessagesOutputSchema: z.ZodObject<{
2586
3115
  }[];
2587
3116
  error?: string | undefined;
2588
3117
  }>;
2589
- export type googleOauthSearchGmailMessagesOutputType = z.infer<typeof googleOauthSearchGmailMessagesOutputSchema>;
2590
- export type googleOauthSearchGmailMessagesFunction = ActionFunction<googleOauthSearchGmailMessagesParamsType, AuthParamsType, googleOauthSearchGmailMessagesOutputType>;
2591
- export declare const googleOauthListGmailThreadsParamsSchema: z.ZodObject<{
3118
+ export type googlemailSearchGmailMessagesOutputType = z.infer<typeof googlemailSearchGmailMessagesOutputSchema>;
3119
+ export type googlemailSearchGmailMessagesFunction = ActionFunction<googlemailSearchGmailMessagesParamsType, AuthParamsType, googlemailSearchGmailMessagesOutputType>;
3120
+ export declare const googlemailListGmailThreadsParamsSchema: z.ZodObject<{
2592
3121
  query: z.ZodString;
2593
3122
  maxResults: z.ZodOptional<z.ZodNumber>;
2594
3123
  }, "strip", z.ZodTypeAny, {
@@ -2598,8 +3127,8 @@ export declare const googleOauthListGmailThreadsParamsSchema: z.ZodObject<{
2598
3127
  query: string;
2599
3128
  maxResults?: number | undefined;
2600
3129
  }>;
2601
- export type googleOauthListGmailThreadsParamsType = z.infer<typeof googleOauthListGmailThreadsParamsSchema>;
2602
- export declare const googleOauthListGmailThreadsOutputSchema: z.ZodObject<{
3130
+ export type googlemailListGmailThreadsParamsType = z.infer<typeof googlemailListGmailThreadsParamsSchema>;
3131
+ export declare const googlemailListGmailThreadsOutputSchema: z.ZodObject<{
2603
3132
  success: z.ZodBoolean;
2604
3133
  threads: z.ZodArray<z.ZodObject<{
2605
3134
  id: z.ZodString;
@@ -2681,8 +3210,8 @@ export declare const googleOauthListGmailThreadsOutputSchema: z.ZodObject<{
2681
3210
  }[];
2682
3211
  error?: string | undefined;
2683
3212
  }>;
2684
- export type googleOauthListGmailThreadsOutputType = z.infer<typeof googleOauthListGmailThreadsOutputSchema>;
2685
- export type googleOauthListGmailThreadsFunction = ActionFunction<googleOauthListGmailThreadsParamsType, AuthParamsType, googleOauthListGmailThreadsOutputType>;
3213
+ export type googlemailListGmailThreadsOutputType = z.infer<typeof googlemailListGmailThreadsOutputSchema>;
3214
+ export type googlemailListGmailThreadsFunction = ActionFunction<googlemailListGmailThreadsParamsType, AuthParamsType, googlemailListGmailThreadsOutputType>;
2686
3215
  export declare const gongGetGongTranscriptsParamsSchema: z.ZodObject<{
2687
3216
  userRole: z.ZodString;
2688
3217
  trackers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2994,15 +3523,15 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
2994
3523
  isDisabled: z.ZodBoolean;
2995
3524
  }, "strip", z.ZodTypeAny, {
2996
3525
  id: string;
3526
+ email: string;
2997
3527
  firstName: string;
2998
3528
  lastName: string;
2999
- email: string;
3000
3529
  isDisabled: boolean;
3001
3530
  }, {
3002
3531
  id: string;
3532
+ email: string;
3003
3533
  firstName: string;
3004
3534
  lastName: string;
3005
- email: string;
3006
3535
  isDisabled: boolean;
3007
3536
  }>>;
3008
3537
  }, "strip", z.ZodTypeAny, {
@@ -3011,9 +3540,9 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
3011
3540
  userId?: string | undefined;
3012
3541
  userDetails?: {
3013
3542
  id: string;
3543
+ email: string;
3014
3544
  firstName: string;
3015
3545
  lastName: string;
3016
- email: string;
3017
3546
  isDisabled: boolean;
3018
3547
  } | undefined;
3019
3548
  }, {
@@ -3022,9 +3551,9 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
3022
3551
  userId?: string | undefined;
3023
3552
  userDetails?: {
3024
3553
  id: string;
3554
+ email: string;
3025
3555
  firstName: string;
3026
3556
  lastName: string;
3027
- email: string;
3028
3557
  isDisabled: boolean;
3029
3558
  } | undefined;
3030
3559
  }>;