@credal/actions 0.1.82 → 0.1.84
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.d.ts +2 -1
- package/dist/actions/actionMapper.js +65 -66
- package/dist/actions/autogen/templates.js +81 -77
- package/dist/actions/autogen/types.d.ts +92 -85
- package/dist/actions/autogen/types.js +110 -2
- package/dist/actions/invoke.d.ts +3 -2
- package/dist/actions/invoke.js +6 -2
- package/dist/actions/parse.d.ts +17 -14
- package/dist/actions/parse.js +28 -2
- package/dist/actions/providers/gong/getGongTranscripts.js +3 -2
- package/package.json +1 -1
@@ -23,7 +23,6 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
23
23
|
refreshToken: z.ZodOptional<z.ZodString>;
|
24
24
|
redirectUri: z.ZodOptional<z.ZodString>;
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
26
|
-
subdomain?: string | undefined;
|
27
26
|
authToken?: string | undefined;
|
28
27
|
baseUrl?: string | undefined;
|
29
28
|
apiKey?: string | undefined;
|
@@ -33,6 +32,7 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
33
32
|
emailReplyTo?: string | undefined;
|
34
33
|
emailBcc?: string | undefined;
|
35
34
|
cloudId?: string | undefined;
|
35
|
+
subdomain?: string | undefined;
|
36
36
|
password?: string | undefined;
|
37
37
|
awsAccessKeyId?: string | undefined;
|
38
38
|
awsSecretAccessKey?: string | undefined;
|
@@ -42,7 +42,6 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
42
42
|
refreshToken?: string | undefined;
|
43
43
|
redirectUri?: string | undefined;
|
44
44
|
}, {
|
45
|
-
subdomain?: string | undefined;
|
46
45
|
authToken?: string | undefined;
|
47
46
|
baseUrl?: string | undefined;
|
48
47
|
apiKey?: string | undefined;
|
@@ -52,6 +51,7 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
52
51
|
emailReplyTo?: string | undefined;
|
53
52
|
emailBcc?: string | undefined;
|
54
53
|
cloudId?: string | undefined;
|
54
|
+
subdomain?: string | undefined;
|
55
55
|
password?: string | undefined;
|
56
56
|
awsAccessKeyId?: string | undefined;
|
57
57
|
awsSecretAccessKey?: string | undefined;
|
@@ -142,10 +142,10 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
142
142
|
num_subtasks: z.ZodOptional<z.ZodNumber>;
|
143
143
|
}, "strip", z.ZodTypeAny, {
|
144
144
|
name?: string | undefined;
|
145
|
-
completed?: boolean | undefined;
|
146
|
-
notes?: string | undefined;
|
147
145
|
resource_type?: string | undefined;
|
146
|
+
completed?: boolean | undefined;
|
148
147
|
modified_at?: string | undefined;
|
148
|
+
notes?: string | undefined;
|
149
149
|
custom_fields?: {
|
150
150
|
name?: string | undefined;
|
151
151
|
gid?: string | undefined;
|
@@ -154,10 +154,10 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
154
154
|
num_subtasks?: number | undefined;
|
155
155
|
}, {
|
156
156
|
name?: string | undefined;
|
157
|
-
completed?: boolean | undefined;
|
158
|
-
notes?: string | undefined;
|
159
157
|
resource_type?: string | undefined;
|
158
|
+
completed?: boolean | undefined;
|
160
159
|
modified_at?: string | undefined;
|
160
|
+
notes?: string | undefined;
|
161
161
|
custom_fields?: {
|
162
162
|
name?: string | undefined;
|
163
163
|
gid?: string | undefined;
|
@@ -188,30 +188,30 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
188
188
|
num_subtasks: z.ZodOptional<z.ZodNumber>;
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
190
190
|
name?: string | undefined;
|
191
|
-
assignee?: string | undefined;
|
192
|
-
completed?: boolean | undefined;
|
193
|
-
notes?: string | undefined;
|
194
191
|
resource_type?: string | undefined;
|
192
|
+
completed?: boolean | undefined;
|
195
193
|
modified_at?: string | undefined;
|
194
|
+
notes?: string | undefined;
|
196
195
|
custom_fields?: {
|
197
196
|
name?: string | undefined;
|
198
197
|
gid?: string | undefined;
|
199
198
|
display_value?: string | null | undefined;
|
200
199
|
}[] | null | undefined;
|
201
200
|
num_subtasks?: number | undefined;
|
201
|
+
assignee?: string | undefined;
|
202
202
|
}, {
|
203
203
|
name?: string | undefined;
|
204
|
-
assignee?: string | undefined;
|
205
|
-
completed?: boolean | undefined;
|
206
|
-
notes?: string | undefined;
|
207
204
|
resource_type?: string | undefined;
|
205
|
+
completed?: boolean | undefined;
|
208
206
|
modified_at?: string | undefined;
|
207
|
+
notes?: string | undefined;
|
209
208
|
custom_fields?: {
|
210
209
|
name?: string | undefined;
|
211
210
|
gid?: string | undefined;
|
212
211
|
display_value?: string | null | undefined;
|
213
212
|
}[] | null | undefined;
|
214
213
|
num_subtasks?: number | undefined;
|
214
|
+
assignee?: string | undefined;
|
215
215
|
}>, "many">>>;
|
216
216
|
taskStories: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
217
217
|
gid: z.ZodOptional<z.ZodString>;
|
@@ -232,20 +232,20 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
232
232
|
gid?: string | undefined;
|
233
233
|
}>>;
|
234
234
|
}, "strip", z.ZodTypeAny, {
|
235
|
-
text?: string | undefined;
|
236
235
|
resource_type?: string | undefined;
|
237
236
|
gid?: string | undefined;
|
238
237
|
created_at?: string | undefined;
|
238
|
+
text?: string | undefined;
|
239
239
|
created_by?: {
|
240
240
|
name?: string | undefined;
|
241
241
|
resource_type?: string | undefined;
|
242
242
|
gid?: string | undefined;
|
243
243
|
} | undefined;
|
244
244
|
}, {
|
245
|
-
text?: string | undefined;
|
246
245
|
resource_type?: string | undefined;
|
247
246
|
gid?: string | undefined;
|
248
247
|
created_at?: string | undefined;
|
248
|
+
text?: string | undefined;
|
249
249
|
created_by?: {
|
250
250
|
name?: string | undefined;
|
251
251
|
resource_type?: string | undefined;
|
@@ -255,10 +255,10 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
256
256
|
task: {
|
257
257
|
name?: string | undefined;
|
258
|
-
completed?: boolean | undefined;
|
259
|
-
notes?: string | undefined;
|
260
258
|
resource_type?: string | undefined;
|
259
|
+
completed?: boolean | undefined;
|
261
260
|
modified_at?: string | undefined;
|
261
|
+
notes?: string | undefined;
|
262
262
|
custom_fields?: {
|
263
263
|
name?: string | undefined;
|
264
264
|
gid?: string | undefined;
|
@@ -268,23 +268,23 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
268
268
|
};
|
269
269
|
subtasks?: {
|
270
270
|
name?: string | undefined;
|
271
|
-
assignee?: string | undefined;
|
272
|
-
completed?: boolean | undefined;
|
273
|
-
notes?: string | undefined;
|
274
271
|
resource_type?: string | undefined;
|
272
|
+
completed?: boolean | undefined;
|
275
273
|
modified_at?: string | undefined;
|
274
|
+
notes?: string | undefined;
|
276
275
|
custom_fields?: {
|
277
276
|
name?: string | undefined;
|
278
277
|
gid?: string | undefined;
|
279
278
|
display_value?: string | null | undefined;
|
280
279
|
}[] | null | undefined;
|
281
280
|
num_subtasks?: number | undefined;
|
281
|
+
assignee?: string | undefined;
|
282
282
|
}[] | null | undefined;
|
283
283
|
taskStories?: {
|
284
|
-
text?: string | undefined;
|
285
284
|
resource_type?: string | undefined;
|
286
285
|
gid?: string | undefined;
|
287
286
|
created_at?: string | undefined;
|
287
|
+
text?: string | undefined;
|
288
288
|
created_by?: {
|
289
289
|
name?: string | undefined;
|
290
290
|
resource_type?: string | undefined;
|
@@ -294,10 +294,10 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
294
294
|
}, {
|
295
295
|
task: {
|
296
296
|
name?: string | undefined;
|
297
|
-
completed?: boolean | undefined;
|
298
|
-
notes?: string | undefined;
|
299
297
|
resource_type?: string | undefined;
|
298
|
+
completed?: boolean | undefined;
|
300
299
|
modified_at?: string | undefined;
|
300
|
+
notes?: string | undefined;
|
301
301
|
custom_fields?: {
|
302
302
|
name?: string | undefined;
|
303
303
|
gid?: string | undefined;
|
@@ -307,23 +307,23 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
307
307
|
};
|
308
308
|
subtasks?: {
|
309
309
|
name?: string | undefined;
|
310
|
-
assignee?: string | undefined;
|
311
|
-
completed?: boolean | undefined;
|
312
|
-
notes?: string | undefined;
|
313
310
|
resource_type?: string | undefined;
|
311
|
+
completed?: boolean | undefined;
|
314
312
|
modified_at?: string | undefined;
|
313
|
+
notes?: string | undefined;
|
315
314
|
custom_fields?: {
|
316
315
|
name?: string | undefined;
|
317
316
|
gid?: string | undefined;
|
318
317
|
display_value?: string | null | undefined;
|
319
318
|
}[] | null | undefined;
|
320
319
|
num_subtasks?: number | undefined;
|
320
|
+
assignee?: string | undefined;
|
321
321
|
}[] | null | undefined;
|
322
322
|
taskStories?: {
|
323
|
-
text?: string | undefined;
|
324
323
|
resource_type?: string | undefined;
|
325
324
|
gid?: string | undefined;
|
326
325
|
created_at?: string | undefined;
|
326
|
+
text?: string | undefined;
|
327
327
|
created_by?: {
|
328
328
|
name?: string | undefined;
|
329
329
|
resource_type?: string | undefined;
|
@@ -337,10 +337,10 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
337
337
|
tasks?: {
|
338
338
|
task: {
|
339
339
|
name?: string | undefined;
|
340
|
-
completed?: boolean | undefined;
|
341
|
-
notes?: string | undefined;
|
342
340
|
resource_type?: string | undefined;
|
341
|
+
completed?: boolean | undefined;
|
343
342
|
modified_at?: string | undefined;
|
343
|
+
notes?: string | undefined;
|
344
344
|
custom_fields?: {
|
345
345
|
name?: string | undefined;
|
346
346
|
gid?: string | undefined;
|
@@ -350,23 +350,23 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
350
350
|
};
|
351
351
|
subtasks?: {
|
352
352
|
name?: string | undefined;
|
353
|
-
assignee?: string | undefined;
|
354
|
-
completed?: boolean | undefined;
|
355
|
-
notes?: string | undefined;
|
356
353
|
resource_type?: string | undefined;
|
354
|
+
completed?: boolean | undefined;
|
357
355
|
modified_at?: string | undefined;
|
356
|
+
notes?: string | undefined;
|
358
357
|
custom_fields?: {
|
359
358
|
name?: string | undefined;
|
360
359
|
gid?: string | undefined;
|
361
360
|
display_value?: string | null | undefined;
|
362
361
|
}[] | null | undefined;
|
363
362
|
num_subtasks?: number | undefined;
|
363
|
+
assignee?: string | undefined;
|
364
364
|
}[] | null | undefined;
|
365
365
|
taskStories?: {
|
366
|
-
text?: string | undefined;
|
367
366
|
resource_type?: string | undefined;
|
368
367
|
gid?: string | undefined;
|
369
368
|
created_at?: string | undefined;
|
369
|
+
text?: string | undefined;
|
370
370
|
created_by?: {
|
371
371
|
name?: string | undefined;
|
372
372
|
resource_type?: string | undefined;
|
@@ -380,10 +380,10 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
380
380
|
tasks?: {
|
381
381
|
task: {
|
382
382
|
name?: string | undefined;
|
383
|
-
completed?: boolean | undefined;
|
384
|
-
notes?: string | undefined;
|
385
383
|
resource_type?: string | undefined;
|
384
|
+
completed?: boolean | undefined;
|
386
385
|
modified_at?: string | undefined;
|
386
|
+
notes?: string | undefined;
|
387
387
|
custom_fields?: {
|
388
388
|
name?: string | undefined;
|
389
389
|
gid?: string | undefined;
|
@@ -393,23 +393,23 @@ export declare const asanaListAsanaTasksByProjectOutputSchema: z.ZodObject<{
|
|
393
393
|
};
|
394
394
|
subtasks?: {
|
395
395
|
name?: string | undefined;
|
396
|
-
assignee?: string | undefined;
|
397
|
-
completed?: boolean | undefined;
|
398
|
-
notes?: string | undefined;
|
399
396
|
resource_type?: string | undefined;
|
397
|
+
completed?: boolean | undefined;
|
400
398
|
modified_at?: string | undefined;
|
399
|
+
notes?: string | undefined;
|
401
400
|
custom_fields?: {
|
402
401
|
name?: string | undefined;
|
403
402
|
gid?: string | undefined;
|
404
403
|
display_value?: string | null | undefined;
|
405
404
|
}[] | null | undefined;
|
406
405
|
num_subtasks?: number | undefined;
|
406
|
+
assignee?: string | undefined;
|
407
407
|
}[] | null | undefined;
|
408
408
|
taskStories?: {
|
409
|
-
text?: string | undefined;
|
410
409
|
resource_type?: string | undefined;
|
411
410
|
gid?: string | undefined;
|
412
411
|
created_at?: string | undefined;
|
412
|
+
text?: string | undefined;
|
413
413
|
created_by?: {
|
414
414
|
name?: string | undefined;
|
415
415
|
resource_type?: string | undefined;
|
@@ -430,21 +430,21 @@ export declare const asanaCreateTaskParamsSchema: z.ZodObject<{
|
|
430
430
|
taskTemplate: z.ZodOptional<z.ZodString>;
|
431
431
|
customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
432
432
|
}, "strip", z.ZodTypeAny, {
|
433
|
-
name: string;
|
434
433
|
projectId: string;
|
435
|
-
|
434
|
+
name: string;
|
435
|
+
assignee?: string | undefined;
|
436
436
|
approvalStatus?: string | undefined;
|
437
|
+
description?: string | undefined;
|
437
438
|
dueAt?: string | undefined;
|
438
|
-
assignee?: string | undefined;
|
439
439
|
taskTemplate?: string | undefined;
|
440
440
|
customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
441
441
|
}, {
|
442
|
-
name: string;
|
443
442
|
projectId: string;
|
444
|
-
|
443
|
+
name: string;
|
444
|
+
assignee?: string | undefined;
|
445
445
|
approvalStatus?: string | undefined;
|
446
|
+
description?: string | undefined;
|
446
447
|
dueAt?: string | undefined;
|
447
|
-
assignee?: string | undefined;
|
448
448
|
taskTemplate?: string | undefined;
|
449
449
|
customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
450
450
|
}>;
|
@@ -475,22 +475,22 @@ export declare const asanaUpdateTaskParamsSchema: z.ZodObject<{
|
|
475
475
|
customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
476
476
|
}, "strip", z.ZodTypeAny, {
|
477
477
|
taskId: string;
|
478
|
-
description?: string | undefined;
|
479
478
|
name?: string | undefined;
|
479
|
+
completed?: boolean | undefined;
|
480
|
+
assignee?: string | undefined;
|
480
481
|
approvalStatus?: string | undefined;
|
482
|
+
description?: string | undefined;
|
481
483
|
dueAt?: string | undefined;
|
482
|
-
assignee?: string | undefined;
|
483
484
|
customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
484
|
-
completed?: boolean | undefined;
|
485
485
|
}, {
|
486
486
|
taskId: string;
|
487
|
-
description?: string | undefined;
|
488
487
|
name?: string | undefined;
|
488
|
+
completed?: boolean | undefined;
|
489
|
+
assignee?: string | undefined;
|
489
490
|
approvalStatus?: string | undefined;
|
491
|
+
description?: string | undefined;
|
490
492
|
dueAt?: string | undefined;
|
491
|
-
assignee?: string | undefined;
|
492
493
|
customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
493
|
-
completed?: boolean | undefined;
|
494
494
|
}>;
|
495
495
|
export type asanaUpdateTaskParamsType = z.infer<typeof asanaUpdateTaskParamsSchema>;
|
496
496
|
export declare const asanaUpdateTaskOutputSchema: z.ZodObject<{
|
@@ -548,24 +548,24 @@ export declare const slackGetChannelMessagesOutputSchema: z.ZodObject<{
|
|
548
548
|
text: z.ZodString;
|
549
549
|
ts: z.ZodString;
|
550
550
|
}, "strip", z.ZodTypeAny, {
|
551
|
-
user: string;
|
552
551
|
text: string;
|
552
|
+
user: string;
|
553
553
|
ts: string;
|
554
554
|
}, {
|
555
|
-
user: string;
|
556
555
|
text: string;
|
556
|
+
user: string;
|
557
557
|
ts: string;
|
558
558
|
}>, "many">;
|
559
559
|
}, "strip", z.ZodTypeAny, {
|
560
560
|
messages: {
|
561
|
-
user: string;
|
562
561
|
text: string;
|
562
|
+
user: string;
|
563
563
|
ts: string;
|
564
564
|
}[];
|
565
565
|
}, {
|
566
566
|
messages: {
|
567
|
-
user: string;
|
568
567
|
text: string;
|
568
|
+
user: string;
|
569
569
|
ts: string;
|
570
570
|
}[];
|
571
571
|
}>;
|
@@ -867,11 +867,11 @@ export declare const kandjiGetFVRecoveryKeyForDeviceParamsSchema: z.ZodObject<{
|
|
867
867
|
serialNumber: z.ZodString;
|
868
868
|
subdomain: z.ZodString;
|
869
869
|
}, "strip", z.ZodTypeAny, {
|
870
|
-
serialNumber: string;
|
871
870
|
subdomain: string;
|
872
|
-
}, {
|
873
871
|
serialNumber: string;
|
872
|
+
}, {
|
874
873
|
subdomain: string;
|
874
|
+
serialNumber: string;
|
875
875
|
}>;
|
876
876
|
export type kandjiGetFVRecoveryKeyForDeviceParamsType = z.infer<typeof kandjiGetFVRecoveryKeyForDeviceParamsSchema>;
|
877
877
|
export declare const kandjiGetFVRecoveryKeyForDeviceOutputSchema: z.ZodObject<{
|
@@ -899,15 +899,15 @@ export declare const googlemapsValidateAddressParamsSchema: z.ZodObject<{
|
|
899
899
|
}, "strip", z.ZodTypeAny, {
|
900
900
|
regionCode: string;
|
901
901
|
locality: string;
|
902
|
-
addressLines: string[];
|
903
902
|
postalCode: string;
|
903
|
+
addressLines: string[];
|
904
904
|
addressType?: "residential" | "business" | "poBox" | undefined;
|
905
905
|
allowFuzzyMatches?: boolean | undefined;
|
906
906
|
}, {
|
907
907
|
regionCode: string;
|
908
908
|
locality: string;
|
909
|
-
addressLines: string[];
|
910
909
|
postalCode: string;
|
910
|
+
addressLines: string[];
|
911
911
|
addressType?: "residential" | "business" | "poBox" | undefined;
|
912
912
|
allowFuzzyMatches?: boolean | undefined;
|
913
913
|
}>;
|
@@ -1436,12 +1436,12 @@ export declare const zendeskUpdateTicketStatusParamsSchema: z.ZodObject<{
|
|
1436
1436
|
subdomain: z.ZodString;
|
1437
1437
|
status: z.ZodString;
|
1438
1438
|
}, "strip", z.ZodTypeAny, {
|
1439
|
-
status: string;
|
1440
1439
|
subdomain: string;
|
1440
|
+
status: string;
|
1441
1441
|
ticketId: string;
|
1442
1442
|
}, {
|
1443
|
-
status: string;
|
1444
1443
|
subdomain: string;
|
1444
|
+
status: string;
|
1445
1445
|
ticketId: string;
|
1446
1446
|
}>;
|
1447
1447
|
export type zendeskUpdateTicketStatusParamsType = z.infer<typeof zendeskUpdateTicketStatusParamsSchema>;
|
@@ -1462,18 +1462,18 @@ export declare const zendeskAddCommentToTicketParamsSchema: z.ZodObject<{
|
|
1462
1462
|
public?: boolean | undefined;
|
1463
1463
|
}>;
|
1464
1464
|
}, "strip", z.ZodTypeAny, {
|
1465
|
+
subdomain: string;
|
1465
1466
|
comment: {
|
1466
1467
|
body: string;
|
1467
1468
|
public?: boolean | undefined;
|
1468
1469
|
};
|
1469
|
-
subdomain: string;
|
1470
1470
|
ticketId: string;
|
1471
1471
|
}, {
|
1472
|
+
subdomain: string;
|
1472
1473
|
comment: {
|
1473
1474
|
body: string;
|
1474
1475
|
public?: boolean | undefined;
|
1475
1476
|
};
|
1476
|
-
subdomain: string;
|
1477
1477
|
ticketId: string;
|
1478
1478
|
}>;
|
1479
1479
|
export type zendeskAddCommentToTicketParamsType = z.infer<typeof zendeskAddCommentToTicketParamsSchema>;
|
@@ -2004,11 +2004,6 @@ export declare const googleOauthCreateSpreadsheetParamsSchema: z.ZodObject<{
|
|
2004
2004
|
}>>;
|
2005
2005
|
}, "strip", z.ZodTypeAny, {
|
2006
2006
|
title: string;
|
2007
|
-
properties?: {
|
2008
|
-
locale?: string | undefined;
|
2009
|
-
timeZone?: string | undefined;
|
2010
|
-
autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
|
2011
|
-
} | undefined;
|
2012
2007
|
sheets?: {
|
2013
2008
|
title?: string | undefined;
|
2014
2009
|
gridProperties?: {
|
@@ -2018,13 +2013,13 @@ export declare const googleOauthCreateSpreadsheetParamsSchema: z.ZodObject<{
|
|
2018
2013
|
frozenColumnCount?: number | undefined;
|
2019
2014
|
} | undefined;
|
2020
2015
|
}[] | undefined;
|
2021
|
-
}, {
|
2022
|
-
title: string;
|
2023
2016
|
properties?: {
|
2024
2017
|
locale?: string | undefined;
|
2025
2018
|
timeZone?: string | undefined;
|
2026
2019
|
autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
|
2027
2020
|
} | undefined;
|
2021
|
+
}, {
|
2022
|
+
title: string;
|
2028
2023
|
sheets?: {
|
2029
2024
|
title?: string | undefined;
|
2030
2025
|
gridProperties?: {
|
@@ -2034,6 +2029,11 @@ export declare const googleOauthCreateSpreadsheetParamsSchema: z.ZodObject<{
|
|
2034
2029
|
frozenColumnCount?: number | undefined;
|
2035
2030
|
} | undefined;
|
2036
2031
|
}[] | undefined;
|
2032
|
+
properties?: {
|
2033
|
+
locale?: string | undefined;
|
2034
|
+
timeZone?: string | undefined;
|
2035
|
+
autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
|
2036
|
+
} | undefined;
|
2037
2037
|
}>;
|
2038
2038
|
export type googleOauthCreateSpreadsheetParamsType = z.infer<typeof googleOauthCreateSpreadsheetParamsSchema>;
|
2039
2039
|
export declare const googleOauthCreateSpreadsheetOutputSchema: z.ZodObject<{
|
@@ -2046,12 +2046,12 @@ export declare const googleOauthCreateSpreadsheetOutputSchema: z.ZodObject<{
|
|
2046
2046
|
index: z.ZodOptional<z.ZodNumber>;
|
2047
2047
|
}, "strip", z.ZodTypeAny, {
|
2048
2048
|
title?: string | undefined;
|
2049
|
-
index?: number | undefined;
|
2050
2049
|
sheetId?: number | undefined;
|
2050
|
+
index?: number | undefined;
|
2051
2051
|
}, {
|
2052
2052
|
title?: string | undefined;
|
2053
|
-
index?: number | undefined;
|
2054
2053
|
sheetId?: number | undefined;
|
2054
|
+
index?: number | undefined;
|
2055
2055
|
}>, "many">>;
|
2056
2056
|
error: z.ZodOptional<z.ZodString>;
|
2057
2057
|
}, "strip", z.ZodTypeAny, {
|
@@ -2059,8 +2059,8 @@ export declare const googleOauthCreateSpreadsheetOutputSchema: z.ZodObject<{
|
|
2059
2059
|
error?: string | undefined;
|
2060
2060
|
sheets?: {
|
2061
2061
|
title?: string | undefined;
|
2062
|
-
index?: number | undefined;
|
2063
2062
|
sheetId?: number | undefined;
|
2063
|
+
index?: number | undefined;
|
2064
2064
|
}[] | undefined;
|
2065
2065
|
spreadsheetId?: string | undefined;
|
2066
2066
|
spreadsheetUrl?: string | undefined;
|
@@ -2069,8 +2069,8 @@ export declare const googleOauthCreateSpreadsheetOutputSchema: z.ZodObject<{
|
|
2069
2069
|
error?: string | undefined;
|
2070
2070
|
sheets?: {
|
2071
2071
|
title?: string | undefined;
|
2072
|
-
index?: number | undefined;
|
2073
2072
|
sheetId?: number | undefined;
|
2073
|
+
index?: number | undefined;
|
2074
2074
|
}[] | undefined;
|
2075
2075
|
spreadsheetId?: string | undefined;
|
2076
2076
|
spreadsheetUrl?: string | undefined;
|
@@ -2099,40 +2099,40 @@ export declare const googleOauthUpdateSpreadsheetOutputSchema: z.ZodObject<{
|
|
2099
2099
|
index: z.ZodOptional<z.ZodNumber>;
|
2100
2100
|
}, "strip", z.ZodTypeAny, {
|
2101
2101
|
title?: string | undefined;
|
2102
|
-
index?: number | undefined;
|
2103
2102
|
sheetId?: number | undefined;
|
2103
|
+
index?: number | undefined;
|
2104
2104
|
}, {
|
2105
2105
|
title?: string | undefined;
|
2106
|
-
index?: number | undefined;
|
2107
2106
|
sheetId?: number | undefined;
|
2107
|
+
index?: number | undefined;
|
2108
2108
|
}>>;
|
2109
2109
|
}, "strip", z.ZodTypeAny, {
|
2110
2110
|
properties?: {
|
2111
2111
|
title?: string | undefined;
|
2112
|
-
index?: number | undefined;
|
2113
2112
|
sheetId?: number | undefined;
|
2113
|
+
index?: number | undefined;
|
2114
2114
|
} | undefined;
|
2115
2115
|
}, {
|
2116
2116
|
properties?: {
|
2117
2117
|
title?: string | undefined;
|
2118
|
-
index?: number | undefined;
|
2119
2118
|
sheetId?: number | undefined;
|
2119
|
+
index?: number | undefined;
|
2120
2120
|
} | undefined;
|
2121
2121
|
}>>;
|
2122
2122
|
}, "strip", z.ZodTypeAny, {
|
2123
2123
|
addSheet?: {
|
2124
2124
|
properties?: {
|
2125
2125
|
title?: string | undefined;
|
2126
|
-
index?: number | undefined;
|
2127
2126
|
sheetId?: number | undefined;
|
2127
|
+
index?: number | undefined;
|
2128
2128
|
} | undefined;
|
2129
2129
|
} | undefined;
|
2130
2130
|
}, {
|
2131
2131
|
addSheet?: {
|
2132
2132
|
properties?: {
|
2133
2133
|
title?: string | undefined;
|
2134
|
-
index?: number | undefined;
|
2135
2134
|
sheetId?: number | undefined;
|
2135
|
+
index?: number | undefined;
|
2136
2136
|
} | undefined;
|
2137
2137
|
} | undefined;
|
2138
2138
|
}>>, "many">>;
|
@@ -2147,8 +2147,8 @@ export declare const googleOauthUpdateSpreadsheetOutputSchema: z.ZodObject<{
|
|
2147
2147
|
addSheet?: {
|
2148
2148
|
properties?: {
|
2149
2149
|
title?: string | undefined;
|
2150
|
-
index?: number | undefined;
|
2151
2150
|
sheetId?: number | undefined;
|
2151
|
+
index?: number | undefined;
|
2152
2152
|
} | undefined;
|
2153
2153
|
} | undefined;
|
2154
2154
|
})[] | undefined;
|
@@ -2162,8 +2162,8 @@ export declare const googleOauthUpdateSpreadsheetOutputSchema: z.ZodObject<{
|
|
2162
2162
|
addSheet?: {
|
2163
2163
|
properties?: {
|
2164
2164
|
title?: string | undefined;
|
2165
|
-
index?: number | undefined;
|
2166
2165
|
sheetId?: number | undefined;
|
2166
|
+
index?: number | undefined;
|
2167
2167
|
} | undefined;
|
2168
2168
|
} | undefined;
|
2169
2169
|
})[] | undefined;
|
@@ -2303,6 +2303,7 @@ export declare const gongGetGongTranscriptsOutputSchema: z.ZodObject<{
|
|
2303
2303
|
success: z.ZodBoolean;
|
2304
2304
|
callTranscripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2305
2305
|
callId: z.ZodOptional<z.ZodString>;
|
2306
|
+
callName: z.ZodOptional<z.ZodString>;
|
2306
2307
|
transcript: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2307
2308
|
speakerName: z.ZodOptional<z.ZodString>;
|
2308
2309
|
topic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -2338,6 +2339,7 @@ export declare const gongGetGongTranscriptsOutputSchema: z.ZodObject<{
|
|
2338
2339
|
}>, "many">>;
|
2339
2340
|
}, "strip", z.ZodTypeAny, {
|
2340
2341
|
callId?: string | undefined;
|
2342
|
+
callName?: string | undefined;
|
2341
2343
|
transcript?: {
|
2342
2344
|
speakerName?: string | undefined;
|
2343
2345
|
topic?: string | null | undefined;
|
@@ -2349,6 +2351,7 @@ export declare const gongGetGongTranscriptsOutputSchema: z.ZodObject<{
|
|
2349
2351
|
}[] | undefined;
|
2350
2352
|
}, {
|
2351
2353
|
callId?: string | undefined;
|
2354
|
+
callName?: string | undefined;
|
2352
2355
|
transcript?: {
|
2353
2356
|
speakerName?: string | undefined;
|
2354
2357
|
topic?: string | null | undefined;
|
@@ -2365,6 +2368,7 @@ export declare const gongGetGongTranscriptsOutputSchema: z.ZodObject<{
|
|
2365
2368
|
error?: string | undefined;
|
2366
2369
|
callTranscripts?: {
|
2367
2370
|
callId?: string | undefined;
|
2371
|
+
callName?: string | undefined;
|
2368
2372
|
transcript?: {
|
2369
2373
|
speakerName?: string | undefined;
|
2370
2374
|
topic?: string | null | undefined;
|
@@ -2380,6 +2384,7 @@ export declare const gongGetGongTranscriptsOutputSchema: z.ZodObject<{
|
|
2380
2384
|
error?: string | undefined;
|
2381
2385
|
callTranscripts?: {
|
2382
2386
|
callId?: string | undefined;
|
2387
|
+
callName?: string | undefined;
|
2383
2388
|
transcript?: {
|
2384
2389
|
speakerName?: string | undefined;
|
2385
2390
|
topic?: string | null | undefined;
|
@@ -3114,13 +3119,13 @@ export declare const microsoftUpdateSpreadsheetParamsSchema: z.ZodObject<{
|
|
3114
3119
|
siteId: z.ZodOptional<z.ZodString>;
|
3115
3120
|
}, "strip", z.ZodTypeAny, {
|
3116
3121
|
values: string[][];
|
3117
|
-
range: string;
|
3118
3122
|
spreadsheetId: string;
|
3123
|
+
range: string;
|
3119
3124
|
siteId?: string | undefined;
|
3120
3125
|
}, {
|
3121
3126
|
values: string[][];
|
3122
|
-
range: string;
|
3123
3127
|
spreadsheetId: string;
|
3128
|
+
range: string;
|
3124
3129
|
siteId?: string | undefined;
|
3125
3130
|
}>;
|
3126
3131
|
export type microsoftUpdateSpreadsheetParamsType = z.infer<typeof microsoftUpdateSpreadsheetParamsSchema>;
|
@@ -3254,13 +3259,13 @@ export declare const githubCreateOrUpdateFileOutputSchema: z.ZodObject<{
|
|
3254
3259
|
}, "strip", z.ZodTypeAny, {
|
3255
3260
|
success: boolean;
|
3256
3261
|
error?: string | undefined;
|
3257
|
-
operation?: "created" | "updated" | undefined;
|
3258
3262
|
newCommitSha?: string | undefined;
|
3263
|
+
operation?: "created" | "updated" | undefined;
|
3259
3264
|
}, {
|
3260
3265
|
success: boolean;
|
3261
3266
|
error?: string | undefined;
|
3262
|
-
operation?: "created" | "updated" | undefined;
|
3263
3267
|
newCommitSha?: string | undefined;
|
3268
|
+
operation?: "created" | "updated" | undefined;
|
3264
3269
|
}>;
|
3265
3270
|
export type githubCreateOrUpdateFileOutputType = z.infer<typeof githubCreateOrUpdateFileOutputSchema>;
|
3266
3271
|
export type githubCreateOrUpdateFileFunction = ActionFunction<githubCreateOrUpdateFileParamsType, AuthParamsType, githubCreateOrUpdateFileOutputType>;
|
@@ -3416,3 +3421,5 @@ export declare const githubListPullRequestsOutputSchema: z.ZodObject<{
|
|
3416
3421
|
}>;
|
3417
3422
|
export type githubListPullRequestsOutputType = z.infer<typeof githubListPullRequestsOutputSchema>;
|
3418
3423
|
export type githubListPullRequestsFunction = ActionFunction<githubListPullRequestsParamsType, AuthParamsType, githubListPullRequestsOutputType>;
|
3424
|
+
export declare const ActionProviderNames: readonly ["generic", "asana", "slack", "math", "confluence", "jira", "kandji", "googlemaps", "bing", "credal", "zendesk", "linkedin", "x", "mongo", "snowflake", "openstreetmap", "nws", "firecrawl", "resend", "googleOauth", "gong", "finnhub", "looker", "ashby", "salesforce", "microsoft", "github"];
|
3425
|
+
export declare const ActionNames: readonly ["fillTemplate", "commentTask", "listAsanaTasksByProject", "createTask", "updateTask", "sendMessage", "getChannelMessages", "add", "overwritePage", "fetchPageContent", "assignJiraTicket", "commentJiraTicket", "createJiraTicket", "getJiraTicketDetails", "getJiraTicketHistory", "updateJiraTicketDetails", "updateJiraTicketStatus", "getJiraIssuesByQuery", "getFVRecoveryKeyForDevice", "validateAddress", "nearbysearchRestaurants", "getTopNSearchResultUrls", "callCopilot", "createZendeskTicket", "listZendeskTickets", "getTicketDetails", "updateTicketStatus", "addCommentToTicket", "assignTicket", "createShareLinkedinPostUrl", "createShareXPostUrl", "insertMongoDoc", "getRowByFieldValue", "runSnowflakeQuery", "getLatitudeLongitudeFromLocation", "getForecastForLocation", "deepResearch", "scrapeUrl", "scrapeTweetDataWithNitter", "sendEmail", "createNewGoogleDoc", "updateDoc", "scheduleCalendarMeeting", "createSpreadsheet", "updateSpreadsheet", "createPresentation", "updatePresentation", "getGongTranscripts", "symbolLookup", "getBasicFinancials", "enableUserByEmail", "createNote", "getCandidateInfo", "addCandidateToProject", "listCandidates", "searchCandidates", "listCandidateNotes", "createCandidate", "updateCandidate", "updateRecord", "createRecord", "createCase", "generateSalesReport", "getSalesforceRecordsByQuery", "getRecord", "fetchSalesforceSchemaByObject", "createDocument", "updateDocument", "updateSpreadsheet", "messageTeamsChat", "messageTeamsChannel", "getDocument", "createOrUpdateFile", "createBranch", "createPullRequest", "listPullRequests"];
|