@credal/actions 0.1.97 → 0.1.99
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/actions/actionMapper.js +77 -3
- package/dist/actions/autogen/templates.d.ts +12 -0
- package/dist/actions/autogen/templates.js +735 -2
- package/dist/actions/autogen/types.d.ts +689 -4
- package/dist/actions/autogen/types.js +209 -3
- package/dist/actions/groups.js +22 -1
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +47 -0
- package/dist/actions/providers/google-oauth/addGroupMember.d.ts +3 -0
- package/dist/actions/providers/google-oauth/addGroupMember.js +37 -0
- package/dist/actions/providers/google-oauth/deleteCalendarEvent.d.ts +3 -0
- package/dist/actions/providers/google-oauth/deleteCalendarEvent.js +35 -0
- package/dist/actions/providers/google-oauth/deleteGroupMember.d.ts +3 -0
- package/dist/actions/providers/google-oauth/deleteGroupMember.js +33 -0
- package/dist/actions/providers/google-oauth/getGroup.d.ts +3 -0
- package/dist/actions/providers/google-oauth/getGroup.js +43 -0
- package/dist/actions/providers/google-oauth/hasGroupMember.d.ts +3 -0
- package/dist/actions/providers/google-oauth/hasGroupMember.js +37 -0
- package/dist/actions/providers/google-oauth/listCalendarEvents.d.ts +3 -0
- package/dist/actions/providers/google-oauth/listCalendarEvents.js +86 -0
- package/dist/actions/providers/google-oauth/listCalendars.d.ts +3 -0
- package/dist/actions/providers/google-oauth/listCalendars.js +63 -0
- package/dist/actions/providers/google-oauth/listGroupMembers.d.ts +3 -0
- package/dist/actions/providers/google-oauth/listGroupMembers.js +54 -0
- package/dist/actions/providers/google-oauth/listGroups.d.ts +3 -0
- package/dist/actions/providers/google-oauth/listGroups.js +56 -0
- package/dist/actions/providers/google-oauth/updateCalendarEvent.d.ts +3 -0
- package/dist/actions/providers/google-oauth/updateCalendarEvent.js +59 -0
- package/dist/actions/providers/google-oauth/utils/decodeMessage.d.ts +27 -0
- package/dist/actions/providers/google-oauth/utils/decodeMessage.js +41 -0
- package/dist/actions/providers/googlemail/listGmailThreads.d.ts +3 -0
- package/dist/actions/providers/googlemail/listGmailThreads.js +98 -0
- package/dist/actions/providers/googlemail/searchGmailMessages.d.ts +3 -0
- package/dist/actions/providers/googlemail/searchGmailMessages.js +91 -0
- package/package.json +1 -1
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +0 -3
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +0 -43
@@ -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,6 +2834,384 @@ 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>;
|
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<{
|
3060
|
+
query: z.ZodString;
|
3061
|
+
maxResults: z.ZodOptional<z.ZodNumber>;
|
3062
|
+
}, "strip", z.ZodTypeAny, {
|
3063
|
+
query: string;
|
3064
|
+
maxResults?: number | undefined;
|
3065
|
+
}, {
|
3066
|
+
query: string;
|
3067
|
+
maxResults?: number | undefined;
|
3068
|
+
}>;
|
3069
|
+
export type googlemailSearchGmailMessagesParamsType = z.infer<typeof googlemailSearchGmailMessagesParamsSchema>;
|
3070
|
+
export declare const googlemailSearchGmailMessagesOutputSchema: z.ZodObject<{
|
3071
|
+
success: z.ZodBoolean;
|
3072
|
+
messages: z.ZodArray<z.ZodObject<{
|
3073
|
+
id: z.ZodString;
|
3074
|
+
threadId: z.ZodString;
|
3075
|
+
snippet: z.ZodOptional<z.ZodString>;
|
3076
|
+
labelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
3077
|
+
internalDate: z.ZodOptional<z.ZodString>;
|
3078
|
+
emailBody: z.ZodOptional<z.ZodString>;
|
3079
|
+
}, "strip", z.ZodTypeAny, {
|
3080
|
+
id: string;
|
3081
|
+
threadId: string;
|
3082
|
+
snippet?: string | undefined;
|
3083
|
+
labelIds?: string[] | undefined;
|
3084
|
+
internalDate?: string | undefined;
|
3085
|
+
emailBody?: string | undefined;
|
3086
|
+
}, {
|
3087
|
+
id: string;
|
3088
|
+
threadId: string;
|
3089
|
+
snippet?: string | undefined;
|
3090
|
+
labelIds?: string[] | undefined;
|
3091
|
+
internalDate?: string | undefined;
|
3092
|
+
emailBody?: string | undefined;
|
3093
|
+
}>, "many">;
|
3094
|
+
error: z.ZodOptional<z.ZodString>;
|
3095
|
+
}, "strip", z.ZodTypeAny, {
|
3096
|
+
success: boolean;
|
3097
|
+
messages: {
|
3098
|
+
id: string;
|
3099
|
+
threadId: string;
|
3100
|
+
snippet?: string | undefined;
|
3101
|
+
labelIds?: string[] | undefined;
|
3102
|
+
internalDate?: string | undefined;
|
3103
|
+
emailBody?: string | undefined;
|
3104
|
+
}[];
|
3105
|
+
error?: string | undefined;
|
3106
|
+
}, {
|
3107
|
+
success: boolean;
|
3108
|
+
messages: {
|
3109
|
+
id: string;
|
3110
|
+
threadId: string;
|
3111
|
+
snippet?: string | undefined;
|
3112
|
+
labelIds?: string[] | undefined;
|
3113
|
+
internalDate?: string | undefined;
|
3114
|
+
emailBody?: string | undefined;
|
3115
|
+
}[];
|
3116
|
+
error?: string | undefined;
|
3117
|
+
}>;
|
3118
|
+
export type googlemailSearchGmailMessagesOutputType = z.infer<typeof googlemailSearchGmailMessagesOutputSchema>;
|
3119
|
+
export type googlemailSearchGmailMessagesFunction = ActionFunction<googlemailSearchGmailMessagesParamsType, AuthParamsType, googlemailSearchGmailMessagesOutputType>;
|
3120
|
+
export declare const googlemailListGmailThreadsParamsSchema: z.ZodObject<{
|
3121
|
+
query: z.ZodString;
|
3122
|
+
maxResults: z.ZodOptional<z.ZodNumber>;
|
3123
|
+
}, "strip", z.ZodTypeAny, {
|
3124
|
+
query: string;
|
3125
|
+
maxResults?: number | undefined;
|
3126
|
+
}, {
|
3127
|
+
query: string;
|
3128
|
+
maxResults?: number | undefined;
|
3129
|
+
}>;
|
3130
|
+
export type googlemailListGmailThreadsParamsType = z.infer<typeof googlemailListGmailThreadsParamsSchema>;
|
3131
|
+
export declare const googlemailListGmailThreadsOutputSchema: z.ZodObject<{
|
3132
|
+
success: z.ZodBoolean;
|
3133
|
+
threads: z.ZodArray<z.ZodObject<{
|
3134
|
+
id: z.ZodString;
|
3135
|
+
historyId: z.ZodString;
|
3136
|
+
messages: z.ZodArray<z.ZodObject<{
|
3137
|
+
id: z.ZodString;
|
3138
|
+
threadId: z.ZodString;
|
3139
|
+
snippet: z.ZodString;
|
3140
|
+
labelIds: z.ZodArray<z.ZodString, "many">;
|
3141
|
+
internalDate: z.ZodString;
|
3142
|
+
emailBody: z.ZodString;
|
3143
|
+
}, "strip", z.ZodTypeAny, {
|
3144
|
+
id: string;
|
3145
|
+
threadId: string;
|
3146
|
+
snippet: string;
|
3147
|
+
labelIds: string[];
|
3148
|
+
internalDate: string;
|
3149
|
+
emailBody: string;
|
3150
|
+
}, {
|
3151
|
+
id: string;
|
3152
|
+
threadId: string;
|
3153
|
+
snippet: string;
|
3154
|
+
labelIds: string[];
|
3155
|
+
internalDate: string;
|
3156
|
+
emailBody: string;
|
3157
|
+
}>, "many">;
|
3158
|
+
}, "strip", z.ZodTypeAny, {
|
3159
|
+
id: string;
|
3160
|
+
messages: {
|
3161
|
+
id: string;
|
3162
|
+
threadId: string;
|
3163
|
+
snippet: string;
|
3164
|
+
labelIds: string[];
|
3165
|
+
internalDate: string;
|
3166
|
+
emailBody: string;
|
3167
|
+
}[];
|
3168
|
+
historyId: string;
|
3169
|
+
}, {
|
3170
|
+
id: string;
|
3171
|
+
messages: {
|
3172
|
+
id: string;
|
3173
|
+
threadId: string;
|
3174
|
+
snippet: string;
|
3175
|
+
labelIds: string[];
|
3176
|
+
internalDate: string;
|
3177
|
+
emailBody: string;
|
3178
|
+
}[];
|
3179
|
+
historyId: string;
|
3180
|
+
}>, "many">;
|
3181
|
+
error: z.ZodOptional<z.ZodString>;
|
3182
|
+
}, "strip", z.ZodTypeAny, {
|
3183
|
+
success: boolean;
|
3184
|
+
threads: {
|
3185
|
+
id: string;
|
3186
|
+
messages: {
|
3187
|
+
id: string;
|
3188
|
+
threadId: string;
|
3189
|
+
snippet: string;
|
3190
|
+
labelIds: string[];
|
3191
|
+
internalDate: string;
|
3192
|
+
emailBody: string;
|
3193
|
+
}[];
|
3194
|
+
historyId: string;
|
3195
|
+
}[];
|
3196
|
+
error?: string | undefined;
|
3197
|
+
}, {
|
3198
|
+
success: boolean;
|
3199
|
+
threads: {
|
3200
|
+
id: string;
|
3201
|
+
messages: {
|
3202
|
+
id: string;
|
3203
|
+
threadId: string;
|
3204
|
+
snippet: string;
|
3205
|
+
labelIds: string[];
|
3206
|
+
internalDate: string;
|
3207
|
+
emailBody: string;
|
3208
|
+
}[];
|
3209
|
+
historyId: string;
|
3210
|
+
}[];
|
3211
|
+
error?: string | undefined;
|
3212
|
+
}>;
|
3213
|
+
export type googlemailListGmailThreadsOutputType = z.infer<typeof googlemailListGmailThreadsOutputSchema>;
|
3214
|
+
export type googlemailListGmailThreadsFunction = ActionFunction<googlemailListGmailThreadsParamsType, AuthParamsType, googlemailListGmailThreadsOutputType>;
|
2530
3215
|
export declare const gongGetGongTranscriptsParamsSchema: z.ZodObject<{
|
2531
3216
|
userRole: z.ZodString;
|
2532
3217
|
trackers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -2838,15 +3523,15 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
|
|
2838
3523
|
isDisabled: z.ZodBoolean;
|
2839
3524
|
}, "strip", z.ZodTypeAny, {
|
2840
3525
|
id: string;
|
3526
|
+
email: string;
|
2841
3527
|
firstName: string;
|
2842
3528
|
lastName: string;
|
2843
|
-
email: string;
|
2844
3529
|
isDisabled: boolean;
|
2845
3530
|
}, {
|
2846
3531
|
id: string;
|
3532
|
+
email: string;
|
2847
3533
|
firstName: string;
|
2848
3534
|
lastName: string;
|
2849
|
-
email: string;
|
2850
3535
|
isDisabled: boolean;
|
2851
3536
|
}>>;
|
2852
3537
|
}, "strip", z.ZodTypeAny, {
|
@@ -2855,9 +3540,9 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
|
|
2855
3540
|
userId?: string | undefined;
|
2856
3541
|
userDetails?: {
|
2857
3542
|
id: string;
|
3543
|
+
email: string;
|
2858
3544
|
firstName: string;
|
2859
3545
|
lastName: string;
|
2860
|
-
email: string;
|
2861
3546
|
isDisabled: boolean;
|
2862
3547
|
} | undefined;
|
2863
3548
|
}, {
|
@@ -2866,9 +3551,9 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
|
|
2866
3551
|
userId?: string | undefined;
|
2867
3552
|
userDetails?: {
|
2868
3553
|
id: string;
|
3554
|
+
email: string;
|
2869
3555
|
firstName: string;
|
2870
3556
|
lastName: string;
|
2871
|
-
email: string;
|
2872
3557
|
isDisabled: boolean;
|
2873
3558
|
} | undefined;
|
2874
3559
|
}>;
|