@credal/actions 0.1.32 → 0.1.35

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 (74) hide show
  1. package/dist/actions/actionMapper.js +125 -1
  2. package/dist/actions/autogen/definitions.d.ts +5 -0
  3. package/dist/actions/autogen/definitions.js +132 -0
  4. package/dist/actions/autogen/templates.d.ts +21 -1
  5. package/dist/actions/autogen/templates.js +3956 -260
  6. package/dist/actions/autogen/types.d.ts +880 -26
  7. package/dist/actions/autogen/types.js +1622 -12
  8. package/dist/actions/definitions.js +35 -0
  9. package/dist/actions/groups.js +34 -4
  10. package/dist/actions/invokeMapper.d.ts +9 -0
  11. package/dist/actions/invokeMapper.js +33 -0
  12. package/dist/actions/providers/asana/commentAsanaTask.d.ts +3 -0
  13. package/dist/actions/providers/asana/commentAsanaTask.js +44 -0
  14. package/dist/actions/providers/asana/createAsanaTask.d.ts +3 -0
  15. package/dist/actions/providers/asana/createAsanaTask.js +93 -0
  16. package/dist/actions/providers/asana/updateAsanaTask.d.ts +3 -0
  17. package/dist/actions/providers/asana/updateAsanaTask.js +50 -0
  18. package/dist/actions/providers/asana/utils.d.ts +6 -0
  19. package/dist/actions/providers/asana/utils.js +73 -0
  20. package/dist/actions/providers/confluence/updatePage.js +9 -13
  21. package/dist/actions/providers/github/createBranch.d.ts +6 -0
  22. package/dist/actions/providers/github/createBranch.js +68 -0
  23. package/dist/actions/providers/github/createOrUpdateFile.d.ts +6 -0
  24. package/dist/actions/providers/github/createOrUpdateFile.js +75 -0
  25. package/dist/actions/providers/github/createPullRequest.d.ts +6 -0
  26. package/dist/actions/providers/github/createPullRequest.js +48 -0
  27. package/dist/actions/providers/google-oauth/createPresentation.d.ts +6 -0
  28. package/dist/actions/providers/google-oauth/createPresentation.js +52 -0
  29. package/dist/actions/providers/google-oauth/createSpreadsheet.d.ts +6 -0
  30. package/dist/actions/providers/google-oauth/createSpreadsheet.js +62 -0
  31. package/dist/actions/providers/google-oauth/updateDoc.d.ts +7 -0
  32. package/dist/actions/providers/google-oauth/updateDoc.js +69 -0
  33. package/dist/actions/providers/google-oauth/updatePresentation.d.ts +7 -0
  34. package/dist/actions/providers/google-oauth/updatePresentation.js +64 -0
  35. package/dist/actions/providers/google-oauth/updateSpreadsheet.d.ts +7 -0
  36. package/dist/actions/providers/google-oauth/updateSpreadsheet.js +51 -0
  37. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
  38. package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
  39. package/dist/actions/providers/jira/commentJiraTicket.d.ts +2 -2
  40. package/dist/actions/providers/jira/commentJiraTicket.js +2 -2
  41. package/dist/actions/providers/jira/createTicket.d.ts +3 -0
  42. package/dist/actions/providers/jira/createTicket.js +34 -0
  43. package/dist/actions/providers/jira/getJiraTicketDetails.d.ts +3 -0
  44. package/dist/actions/providers/jira/getJiraTicketDetails.js +40 -0
  45. package/dist/actions/providers/jira/getJiraTicketHistory.d.ts +3 -0
  46. package/dist/actions/providers/jira/getJiraTicketHistory.js +41 -0
  47. package/dist/actions/providers/jira/updateJiraTicketDetails.d.ts +3 -0
  48. package/dist/actions/providers/jira/updateJiraTicketDetails.js +56 -0
  49. package/dist/actions/providers/jira/updateJiraTicketStatus.d.ts +3 -0
  50. package/dist/actions/providers/jira/updateJiraTicketStatus.js +57 -0
  51. package/dist/actions/providers/microsoft/createDocument.d.ts +3 -0
  52. package/dist/actions/providers/microsoft/createDocument.js +47 -0
  53. package/dist/actions/providers/microsoft/getDocument.d.ts +3 -0
  54. package/dist/actions/providers/microsoft/getDocument.js +45 -0
  55. package/dist/actions/providers/microsoft/messageTeamsChannel.js +18 -3
  56. package/dist/actions/providers/microsoft/messageTeamsChat.js +18 -3
  57. package/dist/actions/providers/microsoft/updateDocument.d.ts +3 -0
  58. package/dist/actions/providers/microsoft/updateDocument.js +45 -0
  59. package/dist/actions/providers/microsoft/updateSpreadsheet.d.ts +3 -0
  60. package/dist/actions/providers/microsoft/updateSpreadsheet.js +56 -0
  61. package/dist/actions/providers/microsoft/utils.d.ts +7 -2
  62. package/dist/actions/providers/microsoft/utils.js +26 -14
  63. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
  64. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
  65. package/dist/actions/providers/slack/list_conversations.d.ts +3 -0
  66. package/dist/actions/providers/slack/list_conversations.js +60 -0
  67. package/dist/actions/providers/slack/summarizeChannel.d.ts +3 -0
  68. package/dist/actions/providers/slack/summarizeChannel.js +51 -0
  69. package/dist/actions/schema.js +6 -0
  70. package/dist/actions/types.js +2 -0
  71. package/dist/main.js +11 -0
  72. package/package.json +3 -1
  73. package/dist/actions/providers/workday/requestTimeOff.d.ts +0 -23
  74. package/dist/actions/providers/workday/requestTimeOff.js +0 -88
@@ -62,6 +62,123 @@ export declare const AuthParamsSchema: z.ZodObject<{
62
62
  redirectUri?: string | undefined;
63
63
  }>;
64
64
  export type AuthParamsType = z.infer<typeof AuthParamsSchema>;
65
+ export declare const asanaCommentTaskParamsSchema: z.ZodObject<{
66
+ taskId: z.ZodString;
67
+ commentText: z.ZodString;
68
+ isPinned: z.ZodOptional<z.ZodBoolean>;
69
+ }, "strip", z.ZodTypeAny, {
70
+ taskId: string;
71
+ commentText: string;
72
+ isPinned?: boolean | undefined;
73
+ }, {
74
+ taskId: string;
75
+ commentText: string;
76
+ isPinned?: boolean | undefined;
77
+ }>;
78
+ export type asanaCommentTaskParamsType = z.infer<typeof asanaCommentTaskParamsSchema>;
79
+ export declare const asanaCommentTaskOutputSchema: z.ZodObject<{
80
+ error: z.ZodOptional<z.ZodString>;
81
+ success: z.ZodBoolean;
82
+ commentUrl: z.ZodOptional<z.ZodString>;
83
+ }, "strip", z.ZodTypeAny, {
84
+ success: boolean;
85
+ error?: string | undefined;
86
+ commentUrl?: string | undefined;
87
+ }, {
88
+ success: boolean;
89
+ error?: string | undefined;
90
+ commentUrl?: string | undefined;
91
+ }>;
92
+ export type asanaCommentTaskOutputType = z.infer<typeof asanaCommentTaskOutputSchema>;
93
+ export type asanaCommentTaskFunction = ActionFunction<asanaCommentTaskParamsType, AuthParamsType, asanaCommentTaskOutputType>;
94
+ export declare const asanaCreateTaskParamsSchema: z.ZodObject<{
95
+ projectId: z.ZodString;
96
+ name: z.ZodString;
97
+ approvalStatus: z.ZodOptional<z.ZodString>;
98
+ description: z.ZodOptional<z.ZodString>;
99
+ dueAt: z.ZodOptional<z.ZodString>;
100
+ assignee: z.ZodOptional<z.ZodString>;
101
+ taskTemplate: z.ZodOptional<z.ZodString>;
102
+ customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
103
+ }, "strip", z.ZodTypeAny, {
104
+ name: string;
105
+ projectId: string;
106
+ description?: string | undefined;
107
+ approvalStatus?: string | undefined;
108
+ dueAt?: string | undefined;
109
+ assignee?: string | undefined;
110
+ taskTemplate?: string | undefined;
111
+ customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
112
+ }, {
113
+ name: string;
114
+ projectId: string;
115
+ description?: string | undefined;
116
+ approvalStatus?: string | undefined;
117
+ dueAt?: string | undefined;
118
+ assignee?: string | undefined;
119
+ taskTemplate?: string | undefined;
120
+ customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
121
+ }>;
122
+ export type asanaCreateTaskParamsType = z.infer<typeof asanaCreateTaskParamsSchema>;
123
+ export declare const asanaCreateTaskOutputSchema: z.ZodObject<{
124
+ error: z.ZodOptional<z.ZodString>;
125
+ success: z.ZodBoolean;
126
+ taskUrl: z.ZodOptional<z.ZodString>;
127
+ }, "strip", z.ZodTypeAny, {
128
+ success: boolean;
129
+ error?: string | undefined;
130
+ taskUrl?: string | undefined;
131
+ }, {
132
+ success: boolean;
133
+ error?: string | undefined;
134
+ taskUrl?: string | undefined;
135
+ }>;
136
+ export type asanaCreateTaskOutputType = z.infer<typeof asanaCreateTaskOutputSchema>;
137
+ export type asanaCreateTaskFunction = ActionFunction<asanaCreateTaskParamsType, AuthParamsType, asanaCreateTaskOutputType>;
138
+ export declare const asanaUpdateTaskParamsSchema: z.ZodObject<{
139
+ taskId: z.ZodString;
140
+ name: z.ZodOptional<z.ZodString>;
141
+ approvalStatus: z.ZodOptional<z.ZodString>;
142
+ description: z.ZodOptional<z.ZodString>;
143
+ dueAt: z.ZodOptional<z.ZodString>;
144
+ assignee: z.ZodOptional<z.ZodString>;
145
+ completed: z.ZodOptional<z.ZodBoolean>;
146
+ customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
147
+ }, "strip", z.ZodTypeAny, {
148
+ taskId: string;
149
+ description?: string | undefined;
150
+ name?: string | undefined;
151
+ approvalStatus?: string | undefined;
152
+ dueAt?: string | undefined;
153
+ assignee?: string | undefined;
154
+ customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
155
+ completed?: boolean | undefined;
156
+ }, {
157
+ taskId: string;
158
+ description?: string | undefined;
159
+ name?: string | undefined;
160
+ approvalStatus?: string | undefined;
161
+ dueAt?: string | undefined;
162
+ assignee?: string | undefined;
163
+ customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
164
+ completed?: boolean | undefined;
165
+ }>;
166
+ export type asanaUpdateTaskParamsType = z.infer<typeof asanaUpdateTaskParamsSchema>;
167
+ export declare const asanaUpdateTaskOutputSchema: z.ZodObject<{
168
+ error: z.ZodOptional<z.ZodString>;
169
+ success: z.ZodBoolean;
170
+ taskUrl: z.ZodOptional<z.ZodString>;
171
+ }, "strip", z.ZodTypeAny, {
172
+ success: boolean;
173
+ error?: string | undefined;
174
+ taskUrl?: string | undefined;
175
+ }, {
176
+ success: boolean;
177
+ error?: string | undefined;
178
+ taskUrl?: string | undefined;
179
+ }>;
180
+ export type asanaUpdateTaskOutputType = z.infer<typeof asanaUpdateTaskOutputSchema>;
181
+ export type asanaUpdateTaskFunction = ActionFunction<asanaUpdateTaskParamsType, AuthParamsType, asanaUpdateTaskOutputType>;
65
182
  export declare const slackSendMessageParamsSchema: z.ZodObject<{
66
183
  channelName: z.ZodString;
67
184
  message: z.ZodString;
@@ -212,64 +329,64 @@ export declare const confluenceFetchPageContentOutputSchema: z.ZodObject<{
212
329
  }>;
213
330
  export type confluenceFetchPageContentOutputType = z.infer<typeof confluenceFetchPageContentOutputSchema>;
214
331
  export type confluenceFetchPageContentFunction = ActionFunction<confluenceFetchPageContentParamsType, AuthParamsType, confluenceFetchPageContentOutputType>;
215
- export declare const jiraCommentJiraTicketParamsSchema: z.ZodObject<{
332
+ export declare const jiraAssignJiraTicketParamsSchema: z.ZodObject<{
216
333
  projectKey: z.ZodString;
334
+ assignee: z.ZodString;
217
335
  issueId: z.ZodString;
218
- comment: z.ZodString;
219
336
  }, "strip", z.ZodTypeAny, {
337
+ assignee: string;
220
338
  projectKey: string;
221
339
  issueId: string;
222
- comment: string;
223
340
  }, {
341
+ assignee: string;
224
342
  projectKey: string;
225
343
  issueId: string;
226
- comment: string;
227
344
  }>;
228
- export type jiraCommentJiraTicketParamsType = z.infer<typeof jiraCommentJiraTicketParamsSchema>;
229
- export declare const jiraCommentJiraTicketOutputSchema: z.ZodObject<{
345
+ export type jiraAssignJiraTicketParamsType = z.infer<typeof jiraAssignJiraTicketParamsSchema>;
346
+ export declare const jiraAssignJiraTicketOutputSchema: z.ZodObject<{
230
347
  success: z.ZodBoolean;
231
348
  error: z.ZodOptional<z.ZodString>;
232
- commentUrl: z.ZodOptional<z.ZodString>;
349
+ ticketUrl: z.ZodOptional<z.ZodString>;
233
350
  }, "strip", z.ZodTypeAny, {
234
351
  success: boolean;
235
352
  error?: string | undefined;
236
- commentUrl?: string | undefined;
353
+ ticketUrl?: string | undefined;
237
354
  }, {
238
355
  success: boolean;
239
356
  error?: string | undefined;
240
- commentUrl?: string | undefined;
357
+ ticketUrl?: string | undefined;
241
358
  }>;
242
- export type jiraCommentJiraTicketOutputType = z.infer<typeof jiraCommentJiraTicketOutputSchema>;
243
- export type jiraCommentJiraTicketFunction = ActionFunction<jiraCommentJiraTicketParamsType, AuthParamsType, jiraCommentJiraTicketOutputType>;
244
- export declare const jiraAssignJiraTicketParamsSchema: z.ZodObject<{
359
+ export type jiraAssignJiraTicketOutputType = z.infer<typeof jiraAssignJiraTicketOutputSchema>;
360
+ export type jiraAssignJiraTicketFunction = ActionFunction<jiraAssignJiraTicketParamsType, AuthParamsType, jiraAssignJiraTicketOutputType>;
361
+ export declare const jiraCommentJiraTicketParamsSchema: z.ZodObject<{
245
362
  projectKey: z.ZodString;
246
- assignee: z.ZodString;
247
363
  issueId: z.ZodString;
364
+ comment: z.ZodString;
248
365
  }, "strip", z.ZodTypeAny, {
249
366
  projectKey: string;
250
367
  issueId: string;
251
- assignee: string;
368
+ comment: string;
252
369
  }, {
253
370
  projectKey: string;
254
371
  issueId: string;
255
- assignee: string;
372
+ comment: string;
256
373
  }>;
257
- export type jiraAssignJiraTicketParamsType = z.infer<typeof jiraAssignJiraTicketParamsSchema>;
258
- export declare const jiraAssignJiraTicketOutputSchema: z.ZodObject<{
374
+ export type jiraCommentJiraTicketParamsType = z.infer<typeof jiraCommentJiraTicketParamsSchema>;
375
+ export declare const jiraCommentJiraTicketOutputSchema: z.ZodObject<{
259
376
  success: z.ZodBoolean;
260
377
  error: z.ZodOptional<z.ZodString>;
261
- ticketUrl: z.ZodOptional<z.ZodString>;
378
+ commentUrl: z.ZodOptional<z.ZodString>;
262
379
  }, "strip", z.ZodTypeAny, {
263
380
  success: boolean;
264
381
  error?: string | undefined;
265
- ticketUrl?: string | undefined;
382
+ commentUrl?: string | undefined;
266
383
  }, {
267
384
  success: boolean;
268
385
  error?: string | undefined;
269
- ticketUrl?: string | undefined;
386
+ commentUrl?: string | undefined;
270
387
  }>;
271
- export type jiraAssignJiraTicketOutputType = z.infer<typeof jiraAssignJiraTicketOutputSchema>;
272
- export type jiraAssignJiraTicketFunction = ActionFunction<jiraAssignJiraTicketParamsType, AuthParamsType, jiraAssignJiraTicketOutputType>;
388
+ export type jiraCommentJiraTicketOutputType = z.infer<typeof jiraCommentJiraTicketOutputSchema>;
389
+ export type jiraCommentJiraTicketFunction = ActionFunction<jiraCommentJiraTicketParamsType, AuthParamsType, jiraCommentJiraTicketOutputType>;
273
390
  export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
274
391
  projectKey: z.ZodString;
275
392
  summary: z.ZodString;
@@ -284,16 +401,16 @@ export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
284
401
  summary: string;
285
402
  issueType: string;
286
403
  assignee?: string | undefined;
287
- reporter?: string | undefined;
288
404
  customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
405
+ reporter?: string | undefined;
289
406
  }, {
290
407
  description: string;
291
408
  projectKey: string;
292
409
  summary: string;
293
410
  issueType: string;
294
411
  assignee?: string | undefined;
295
- reporter?: string | undefined;
296
412
  customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
413
+ reporter?: string | undefined;
297
414
  }>;
298
415
  export type jiraCreateJiraTicketParamsType = z.infer<typeof jiraCreateJiraTicketParamsSchema>;
299
416
  export declare const jiraCreateJiraTicketOutputSchema: z.ZodObject<{
@@ -305,6 +422,119 @@ export declare const jiraCreateJiraTicketOutputSchema: z.ZodObject<{
305
422
  }>;
306
423
  export type jiraCreateJiraTicketOutputType = z.infer<typeof jiraCreateJiraTicketOutputSchema>;
307
424
  export type jiraCreateJiraTicketFunction = ActionFunction<jiraCreateJiraTicketParamsType, AuthParamsType, jiraCreateJiraTicketOutputType>;
425
+ export declare const jiraGetJiraTicketDetailsParamsSchema: z.ZodObject<{
426
+ projectKey: z.ZodString;
427
+ issueId: z.ZodString;
428
+ }, "strip", z.ZodTypeAny, {
429
+ projectKey: string;
430
+ issueId: string;
431
+ }, {
432
+ projectKey: string;
433
+ issueId: string;
434
+ }>;
435
+ export type jiraGetJiraTicketDetailsParamsType = z.infer<typeof jiraGetJiraTicketDetailsParamsSchema>;
436
+ export declare const jiraGetJiraTicketDetailsOutputSchema: z.ZodObject<{
437
+ success: z.ZodBoolean;
438
+ error: z.ZodOptional<z.ZodString>;
439
+ data: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
440
+ }, "strip", z.ZodTypeAny, {
441
+ success: boolean;
442
+ error?: string | undefined;
443
+ data?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
444
+ }, {
445
+ success: boolean;
446
+ error?: string | undefined;
447
+ data?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
448
+ }>;
449
+ export type jiraGetJiraTicketDetailsOutputType = z.infer<typeof jiraGetJiraTicketDetailsOutputSchema>;
450
+ export type jiraGetJiraTicketDetailsFunction = ActionFunction<jiraGetJiraTicketDetailsParamsType, AuthParamsType, jiraGetJiraTicketDetailsOutputType>;
451
+ export declare const jiraGetJiraTicketHistoryParamsSchema: z.ZodObject<{
452
+ projectKey: z.ZodString;
453
+ issueId: z.ZodString;
454
+ }, "strip", z.ZodTypeAny, {
455
+ projectKey: string;
456
+ issueId: string;
457
+ }, {
458
+ projectKey: string;
459
+ issueId: string;
460
+ }>;
461
+ export type jiraGetJiraTicketHistoryParamsType = z.infer<typeof jiraGetJiraTicketHistoryParamsSchema>;
462
+ export declare const jiraGetJiraTicketHistoryOutputSchema: z.ZodObject<{
463
+ success: z.ZodBoolean;
464
+ error: z.ZodOptional<z.ZodString>;
465
+ history: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
466
+ }, "strip", z.ZodTypeAny, {
467
+ success: boolean;
468
+ error?: string | undefined;
469
+ history?: any[] | undefined;
470
+ }, {
471
+ success: boolean;
472
+ error?: string | undefined;
473
+ history?: any[] | undefined;
474
+ }>;
475
+ export type jiraGetJiraTicketHistoryOutputType = z.infer<typeof jiraGetJiraTicketHistoryOutputSchema>;
476
+ export type jiraGetJiraTicketHistoryFunction = ActionFunction<jiraGetJiraTicketHistoryParamsType, AuthParamsType, jiraGetJiraTicketHistoryOutputType>;
477
+ export declare const jiraUpdateJiraTicketDetailsParamsSchema: z.ZodObject<{
478
+ projectKey: z.ZodString;
479
+ issueId: z.ZodString;
480
+ summary: z.ZodOptional<z.ZodString>;
481
+ description: z.ZodOptional<z.ZodString>;
482
+ issueType: z.ZodOptional<z.ZodString>;
483
+ customFields: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
484
+ }, "strip", z.ZodTypeAny, {
485
+ projectKey: string;
486
+ issueId: string;
487
+ description?: string | undefined;
488
+ customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
489
+ summary?: string | undefined;
490
+ issueType?: string | undefined;
491
+ }, {
492
+ projectKey: string;
493
+ issueId: string;
494
+ description?: string | undefined;
495
+ customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
496
+ summary?: string | undefined;
497
+ issueType?: string | undefined;
498
+ }>;
499
+ export type jiraUpdateJiraTicketDetailsParamsType = z.infer<typeof jiraUpdateJiraTicketDetailsParamsSchema>;
500
+ export declare const jiraUpdateJiraTicketDetailsOutputSchema: z.ZodObject<{
501
+ ticketUrl: z.ZodString;
502
+ }, "strip", z.ZodTypeAny, {
503
+ ticketUrl: string;
504
+ }, {
505
+ ticketUrl: string;
506
+ }>;
507
+ export type jiraUpdateJiraTicketDetailsOutputType = z.infer<typeof jiraUpdateJiraTicketDetailsOutputSchema>;
508
+ export type jiraUpdateJiraTicketDetailsFunction = ActionFunction<jiraUpdateJiraTicketDetailsParamsType, AuthParamsType, jiraUpdateJiraTicketDetailsOutputType>;
509
+ export declare const jiraUpdateJiraTicketStatusParamsSchema: z.ZodObject<{
510
+ projectKey: z.ZodString;
511
+ issueId: z.ZodString;
512
+ status: z.ZodString;
513
+ }, "strip", z.ZodTypeAny, {
514
+ status: string;
515
+ projectKey: string;
516
+ issueId: string;
517
+ }, {
518
+ status: string;
519
+ projectKey: string;
520
+ issueId: string;
521
+ }>;
522
+ export type jiraUpdateJiraTicketStatusParamsType = z.infer<typeof jiraUpdateJiraTicketStatusParamsSchema>;
523
+ export declare const jiraUpdateJiraTicketStatusOutputSchema: z.ZodObject<{
524
+ success: z.ZodBoolean;
525
+ error: z.ZodOptional<z.ZodString>;
526
+ ticketUrl: z.ZodOptional<z.ZodString>;
527
+ }, "strip", z.ZodTypeAny, {
528
+ success: boolean;
529
+ error?: string | undefined;
530
+ ticketUrl?: string | undefined;
531
+ }, {
532
+ success: boolean;
533
+ error?: string | undefined;
534
+ ticketUrl?: string | undefined;
535
+ }>;
536
+ export type jiraUpdateJiraTicketStatusOutputType = z.infer<typeof jiraUpdateJiraTicketStatusOutputSchema>;
537
+ export type jiraUpdateJiraTicketStatusFunction = ActionFunction<jiraUpdateJiraTicketStatusParamsType, AuthParamsType, jiraUpdateJiraTicketStatusOutputType>;
308
538
  export declare const googlemapsValidateAddressParamsSchema: z.ZodObject<{
309
539
  regionCode: z.ZodString;
310
540
  locality: z.ZodString;
@@ -1179,6 +1409,35 @@ export declare const googleOauthCreateNewGoogleDocOutputSchema: z.ZodObject<{
1179
1409
  }>;
1180
1410
  export type googleOauthCreateNewGoogleDocOutputType = z.infer<typeof googleOauthCreateNewGoogleDocOutputSchema>;
1181
1411
  export type googleOauthCreateNewGoogleDocFunction = ActionFunction<googleOauthCreateNewGoogleDocParamsType, AuthParamsType, googleOauthCreateNewGoogleDocOutputType>;
1412
+ export declare const googleOauthUpdateDocParamsSchema: z.ZodObject<{
1413
+ documentId: z.ZodString;
1414
+ requests: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>, z.ZodEffects<z.ZodAny, any, any>>, "many">>;
1415
+ }, "strip", z.ZodTypeAny, {
1416
+ documentId: string;
1417
+ requests?: any[] | undefined;
1418
+ }, {
1419
+ documentId: string;
1420
+ requests?: any[] | undefined;
1421
+ }>;
1422
+ export type googleOauthUpdateDocParamsType = z.infer<typeof googleOauthUpdateDocParamsSchema>;
1423
+ export declare const googleOauthUpdateDocOutputSchema: z.ZodObject<{
1424
+ success: z.ZodBoolean;
1425
+ documentId: z.ZodOptional<z.ZodString>;
1426
+ documentUrl: z.ZodOptional<z.ZodString>;
1427
+ error: z.ZodOptional<z.ZodString>;
1428
+ }, "strip", z.ZodTypeAny, {
1429
+ success: boolean;
1430
+ error?: string | undefined;
1431
+ documentId?: string | undefined;
1432
+ documentUrl?: string | undefined;
1433
+ }, {
1434
+ success: boolean;
1435
+ error?: string | undefined;
1436
+ documentId?: string | undefined;
1437
+ documentUrl?: string | undefined;
1438
+ }>;
1439
+ export type googleOauthUpdateDocOutputType = z.infer<typeof googleOauthUpdateDocOutputSchema>;
1440
+ export type googleOauthUpdateDocFunction = ActionFunction<googleOauthUpdateDocParamsType, AuthParamsType, googleOauthUpdateDocOutputType>;
1182
1441
  export declare const googleOauthScheduleCalendarMeetingParamsSchema: z.ZodObject<{
1183
1442
  calendarId: z.ZodString;
1184
1443
  name: z.ZodString;
@@ -1223,6 +1482,336 @@ export declare const googleOauthScheduleCalendarMeetingOutputSchema: z.ZodObject
1223
1482
  }>;
1224
1483
  export type googleOauthScheduleCalendarMeetingOutputType = z.infer<typeof googleOauthScheduleCalendarMeetingOutputSchema>;
1225
1484
  export type googleOauthScheduleCalendarMeetingFunction = ActionFunction<googleOauthScheduleCalendarMeetingParamsType, AuthParamsType, googleOauthScheduleCalendarMeetingOutputType>;
1485
+ export declare const googleOauthCreateSpreadsheetParamsSchema: z.ZodObject<{
1486
+ title: z.ZodString;
1487
+ sheets: z.ZodOptional<z.ZodArray<z.ZodObject<{
1488
+ title: z.ZodOptional<z.ZodString>;
1489
+ gridProperties: z.ZodOptional<z.ZodObject<{
1490
+ rowCount: z.ZodOptional<z.ZodNumber>;
1491
+ columnCount: z.ZodOptional<z.ZodNumber>;
1492
+ frozenRowCount: z.ZodOptional<z.ZodNumber>;
1493
+ frozenColumnCount: z.ZodOptional<z.ZodNumber>;
1494
+ }, "strip", z.ZodTypeAny, {
1495
+ rowCount?: number | undefined;
1496
+ columnCount?: number | undefined;
1497
+ frozenRowCount?: number | undefined;
1498
+ frozenColumnCount?: number | undefined;
1499
+ }, {
1500
+ rowCount?: number | undefined;
1501
+ columnCount?: number | undefined;
1502
+ frozenRowCount?: number | undefined;
1503
+ frozenColumnCount?: number | undefined;
1504
+ }>>;
1505
+ }, "strip", z.ZodTypeAny, {
1506
+ title?: string | undefined;
1507
+ gridProperties?: {
1508
+ rowCount?: number | undefined;
1509
+ columnCount?: number | undefined;
1510
+ frozenRowCount?: number | undefined;
1511
+ frozenColumnCount?: number | undefined;
1512
+ } | undefined;
1513
+ }, {
1514
+ title?: string | undefined;
1515
+ gridProperties?: {
1516
+ rowCount?: number | undefined;
1517
+ columnCount?: number | undefined;
1518
+ frozenRowCount?: number | undefined;
1519
+ frozenColumnCount?: number | undefined;
1520
+ } | undefined;
1521
+ }>, "many">>;
1522
+ properties: z.ZodOptional<z.ZodObject<{
1523
+ locale: z.ZodOptional<z.ZodString>;
1524
+ timeZone: z.ZodOptional<z.ZodString>;
1525
+ autoRecalc: z.ZodOptional<z.ZodEnum<["ON_CHANGE", "MINUTE", "HOUR"]>>;
1526
+ }, "strip", z.ZodTypeAny, {
1527
+ locale?: string | undefined;
1528
+ timeZone?: string | undefined;
1529
+ autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
1530
+ }, {
1531
+ locale?: string | undefined;
1532
+ timeZone?: string | undefined;
1533
+ autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
1534
+ }>>;
1535
+ }, "strip", z.ZodTypeAny, {
1536
+ title: string;
1537
+ properties?: {
1538
+ locale?: string | undefined;
1539
+ timeZone?: string | undefined;
1540
+ autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
1541
+ } | undefined;
1542
+ sheets?: {
1543
+ title?: string | undefined;
1544
+ gridProperties?: {
1545
+ rowCount?: number | undefined;
1546
+ columnCount?: number | undefined;
1547
+ frozenRowCount?: number | undefined;
1548
+ frozenColumnCount?: number | undefined;
1549
+ } | undefined;
1550
+ }[] | undefined;
1551
+ }, {
1552
+ title: string;
1553
+ properties?: {
1554
+ locale?: string | undefined;
1555
+ timeZone?: string | undefined;
1556
+ autoRecalc?: "ON_CHANGE" | "MINUTE" | "HOUR" | undefined;
1557
+ } | undefined;
1558
+ sheets?: {
1559
+ title?: string | undefined;
1560
+ gridProperties?: {
1561
+ rowCount?: number | undefined;
1562
+ columnCount?: number | undefined;
1563
+ frozenRowCount?: number | undefined;
1564
+ frozenColumnCount?: number | undefined;
1565
+ } | undefined;
1566
+ }[] | undefined;
1567
+ }>;
1568
+ export type googleOauthCreateSpreadsheetParamsType = z.infer<typeof googleOauthCreateSpreadsheetParamsSchema>;
1569
+ export declare const googleOauthCreateSpreadsheetOutputSchema: z.ZodObject<{
1570
+ success: z.ZodBoolean;
1571
+ spreadsheetId: z.ZodOptional<z.ZodString>;
1572
+ spreadsheetUrl: z.ZodOptional<z.ZodString>;
1573
+ sheets: z.ZodOptional<z.ZodArray<z.ZodObject<{
1574
+ sheetId: z.ZodOptional<z.ZodNumber>;
1575
+ title: z.ZodOptional<z.ZodString>;
1576
+ index: z.ZodOptional<z.ZodNumber>;
1577
+ }, "strip", z.ZodTypeAny, {
1578
+ title?: string | undefined;
1579
+ index?: number | undefined;
1580
+ sheetId?: number | undefined;
1581
+ }, {
1582
+ title?: string | undefined;
1583
+ index?: number | undefined;
1584
+ sheetId?: number | undefined;
1585
+ }>, "many">>;
1586
+ error: z.ZodOptional<z.ZodString>;
1587
+ }, "strip", z.ZodTypeAny, {
1588
+ success: boolean;
1589
+ error?: string | undefined;
1590
+ sheets?: {
1591
+ title?: string | undefined;
1592
+ index?: number | undefined;
1593
+ sheetId?: number | undefined;
1594
+ }[] | undefined;
1595
+ spreadsheetId?: string | undefined;
1596
+ spreadsheetUrl?: string | undefined;
1597
+ }, {
1598
+ success: boolean;
1599
+ error?: string | undefined;
1600
+ sheets?: {
1601
+ title?: string | undefined;
1602
+ index?: number | undefined;
1603
+ sheetId?: number | undefined;
1604
+ }[] | undefined;
1605
+ spreadsheetId?: string | undefined;
1606
+ spreadsheetUrl?: string | undefined;
1607
+ }>;
1608
+ export type googleOauthCreateSpreadsheetOutputType = z.infer<typeof googleOauthCreateSpreadsheetOutputSchema>;
1609
+ export type googleOauthCreateSpreadsheetFunction = ActionFunction<googleOauthCreateSpreadsheetParamsType, AuthParamsType, googleOauthCreateSpreadsheetOutputType>;
1610
+ export declare const googleOauthUpdateSpreadsheetParamsSchema: z.ZodObject<{
1611
+ spreadsheetId: z.ZodString;
1612
+ requests: z.ZodArray<z.ZodIntersection<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>, z.ZodEffects<z.ZodAny, any, any>>, "many">;
1613
+ }, "strip", z.ZodTypeAny, {
1614
+ requests: any[];
1615
+ spreadsheetId: string;
1616
+ }, {
1617
+ requests: any[];
1618
+ spreadsheetId: string;
1619
+ }>;
1620
+ export type googleOauthUpdateSpreadsheetParamsType = z.infer<typeof googleOauthUpdateSpreadsheetParamsSchema>;
1621
+ export declare const googleOauthUpdateSpreadsheetOutputSchema: z.ZodObject<{
1622
+ success: z.ZodBoolean;
1623
+ spreadsheetUrl: z.ZodOptional<z.ZodString>;
1624
+ replies: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>, z.ZodObject<{
1625
+ addSheet: z.ZodOptional<z.ZodObject<{
1626
+ properties: z.ZodOptional<z.ZodObject<{
1627
+ sheetId: z.ZodOptional<z.ZodNumber>;
1628
+ title: z.ZodOptional<z.ZodString>;
1629
+ index: z.ZodOptional<z.ZodNumber>;
1630
+ }, "strip", z.ZodTypeAny, {
1631
+ title?: string | undefined;
1632
+ index?: number | undefined;
1633
+ sheetId?: number | undefined;
1634
+ }, {
1635
+ title?: string | undefined;
1636
+ index?: number | undefined;
1637
+ sheetId?: number | undefined;
1638
+ }>>;
1639
+ }, "strip", z.ZodTypeAny, {
1640
+ properties?: {
1641
+ title?: string | undefined;
1642
+ index?: number | undefined;
1643
+ sheetId?: number | undefined;
1644
+ } | undefined;
1645
+ }, {
1646
+ properties?: {
1647
+ title?: string | undefined;
1648
+ index?: number | undefined;
1649
+ sheetId?: number | undefined;
1650
+ } | undefined;
1651
+ }>>;
1652
+ }, "strip", z.ZodTypeAny, {
1653
+ addSheet?: {
1654
+ properties?: {
1655
+ title?: string | undefined;
1656
+ index?: number | undefined;
1657
+ sheetId?: number | undefined;
1658
+ } | undefined;
1659
+ } | undefined;
1660
+ }, {
1661
+ addSheet?: {
1662
+ properties?: {
1663
+ title?: string | undefined;
1664
+ index?: number | undefined;
1665
+ sheetId?: number | undefined;
1666
+ } | undefined;
1667
+ } | undefined;
1668
+ }>>, "many">>;
1669
+ error: z.ZodOptional<z.ZodString>;
1670
+ }, "strip", z.ZodTypeAny, {
1671
+ success: boolean;
1672
+ error?: string | undefined;
1673
+ spreadsheetUrl?: string | undefined;
1674
+ replies?: ({} & {
1675
+ [k: string]: any;
1676
+ } & {
1677
+ addSheet?: {
1678
+ properties?: {
1679
+ title?: string | undefined;
1680
+ index?: number | undefined;
1681
+ sheetId?: number | undefined;
1682
+ } | undefined;
1683
+ } | undefined;
1684
+ })[] | undefined;
1685
+ }, {
1686
+ success: boolean;
1687
+ error?: string | undefined;
1688
+ spreadsheetUrl?: string | undefined;
1689
+ replies?: ({} & {
1690
+ [k: string]: any;
1691
+ } & {
1692
+ addSheet?: {
1693
+ properties?: {
1694
+ title?: string | undefined;
1695
+ index?: number | undefined;
1696
+ sheetId?: number | undefined;
1697
+ } | undefined;
1698
+ } | undefined;
1699
+ })[] | undefined;
1700
+ }>;
1701
+ export type googleOauthUpdateSpreadsheetOutputType = z.infer<typeof googleOauthUpdateSpreadsheetOutputSchema>;
1702
+ export type googleOauthUpdateSpreadsheetFunction = ActionFunction<googleOauthUpdateSpreadsheetParamsType, AuthParamsType, googleOauthUpdateSpreadsheetOutputType>;
1703
+ export declare const googleOauthCreatePresentationParamsSchema: z.ZodObject<{
1704
+ title: z.ZodString;
1705
+ pageSize: z.ZodOptional<z.ZodObject<{
1706
+ width: z.ZodOptional<z.ZodObject<{
1707
+ unit: z.ZodOptional<z.ZodEnum<["EMU", "PT"]>>;
1708
+ magnitude: z.ZodOptional<z.ZodNumber>;
1709
+ }, "strip", z.ZodTypeAny, {
1710
+ unit?: "EMU" | "PT" | undefined;
1711
+ magnitude?: number | undefined;
1712
+ }, {
1713
+ unit?: "EMU" | "PT" | undefined;
1714
+ magnitude?: number | undefined;
1715
+ }>>;
1716
+ height: z.ZodOptional<z.ZodObject<{
1717
+ unit: z.ZodOptional<z.ZodEnum<["EMU", "PT"]>>;
1718
+ magnitude: z.ZodOptional<z.ZodNumber>;
1719
+ }, "strip", z.ZodTypeAny, {
1720
+ unit?: "EMU" | "PT" | undefined;
1721
+ magnitude?: number | undefined;
1722
+ }, {
1723
+ unit?: "EMU" | "PT" | undefined;
1724
+ magnitude?: number | undefined;
1725
+ }>>;
1726
+ }, "strip", z.ZodTypeAny, {
1727
+ width?: {
1728
+ unit?: "EMU" | "PT" | undefined;
1729
+ magnitude?: number | undefined;
1730
+ } | undefined;
1731
+ height?: {
1732
+ unit?: "EMU" | "PT" | undefined;
1733
+ magnitude?: number | undefined;
1734
+ } | undefined;
1735
+ }, {
1736
+ width?: {
1737
+ unit?: "EMU" | "PT" | undefined;
1738
+ magnitude?: number | undefined;
1739
+ } | undefined;
1740
+ height?: {
1741
+ unit?: "EMU" | "PT" | undefined;
1742
+ magnitude?: number | undefined;
1743
+ } | undefined;
1744
+ }>>;
1745
+ }, "strip", z.ZodTypeAny, {
1746
+ title: string;
1747
+ pageSize?: {
1748
+ width?: {
1749
+ unit?: "EMU" | "PT" | undefined;
1750
+ magnitude?: number | undefined;
1751
+ } | undefined;
1752
+ height?: {
1753
+ unit?: "EMU" | "PT" | undefined;
1754
+ magnitude?: number | undefined;
1755
+ } | undefined;
1756
+ } | undefined;
1757
+ }, {
1758
+ title: string;
1759
+ pageSize?: {
1760
+ width?: {
1761
+ unit?: "EMU" | "PT" | undefined;
1762
+ magnitude?: number | undefined;
1763
+ } | undefined;
1764
+ height?: {
1765
+ unit?: "EMU" | "PT" | undefined;
1766
+ magnitude?: number | undefined;
1767
+ } | undefined;
1768
+ } | undefined;
1769
+ }>;
1770
+ export type googleOauthCreatePresentationParamsType = z.infer<typeof googleOauthCreatePresentationParamsSchema>;
1771
+ export declare const googleOauthCreatePresentationOutputSchema: z.ZodObject<{
1772
+ success: z.ZodBoolean;
1773
+ error: z.ZodOptional<z.ZodString>;
1774
+ presentationId: z.ZodOptional<z.ZodString>;
1775
+ presentationUrl: z.ZodOptional<z.ZodString>;
1776
+ }, "strip", z.ZodTypeAny, {
1777
+ success: boolean;
1778
+ error?: string | undefined;
1779
+ presentationId?: string | undefined;
1780
+ presentationUrl?: string | undefined;
1781
+ }, {
1782
+ success: boolean;
1783
+ error?: string | undefined;
1784
+ presentationId?: string | undefined;
1785
+ presentationUrl?: string | undefined;
1786
+ }>;
1787
+ export type googleOauthCreatePresentationOutputType = z.infer<typeof googleOauthCreatePresentationOutputSchema>;
1788
+ export type googleOauthCreatePresentationFunction = ActionFunction<googleOauthCreatePresentationParamsType, AuthParamsType, googleOauthCreatePresentationOutputType>;
1789
+ export declare const googleOauthUpdatePresentationParamsSchema: z.ZodObject<{
1790
+ presentationId: z.ZodString;
1791
+ requests: z.ZodArray<z.ZodIntersection<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>, z.ZodEffects<z.ZodAny, any, any>>, "many">;
1792
+ }, "strip", z.ZodTypeAny, {
1793
+ requests: any[];
1794
+ presentationId: string;
1795
+ }, {
1796
+ requests: any[];
1797
+ presentationId: string;
1798
+ }>;
1799
+ export type googleOauthUpdatePresentationParamsType = z.infer<typeof googleOauthUpdatePresentationParamsSchema>;
1800
+ export declare const googleOauthUpdatePresentationOutputSchema: z.ZodObject<{
1801
+ success: z.ZodBoolean;
1802
+ error: z.ZodOptional<z.ZodString>;
1803
+ presentationUrl: z.ZodOptional<z.ZodString>;
1804
+ }, "strip", z.ZodTypeAny, {
1805
+ success: boolean;
1806
+ error?: string | undefined;
1807
+ presentationUrl?: string | undefined;
1808
+ }, {
1809
+ success: boolean;
1810
+ error?: string | undefined;
1811
+ presentationUrl?: string | undefined;
1812
+ }>;
1813
+ export type googleOauthUpdatePresentationOutputType = z.infer<typeof googleOauthUpdatePresentationOutputSchema>;
1814
+ export type googleOauthUpdatePresentationFunction = ActionFunction<googleOauthUpdatePresentationParamsType, AuthParamsType, googleOauthUpdatePresentationOutputType>;
1226
1815
  export declare const finnhubSymbolLookupParamsSchema: z.ZodObject<{
1227
1816
  query: z.ZodString;
1228
1817
  }, "strip", z.ZodTypeAny, {
@@ -1478,11 +2067,11 @@ export declare const ashbyAddCandidateToProjectParamsSchema: z.ZodObject<{
1478
2067
  candidateId: z.ZodString;
1479
2068
  projectId: z.ZodString;
1480
2069
  }, "strip", z.ZodTypeAny, {
1481
- candidateId: string;
1482
2070
  projectId: string;
1483
- }, {
1484
2071
  candidateId: string;
2072
+ }, {
1485
2073
  projectId: string;
2074
+ candidateId: string;
1486
2075
  }>;
1487
2076
  export type ashbyAddCandidateToProjectParamsType = z.infer<typeof ashbyAddCandidateToProjectParamsSchema>;
1488
2077
  export declare const ashbyAddCandidateToProjectOutputSchema: z.ZodVoid;
@@ -1769,6 +2358,32 @@ export declare const salesforceGenerateSalesReportOutputSchema: z.ZodObject<{
1769
2358
  }>;
1770
2359
  export type salesforceGenerateSalesReportOutputType = z.infer<typeof salesforceGenerateSalesReportOutputSchema>;
1771
2360
  export type salesforceGenerateSalesReportFunction = ActionFunction<salesforceGenerateSalesReportParamsType, AuthParamsType, salesforceGenerateSalesReportOutputType>;
2361
+ export declare const salesforceGetSalesforceRecordsByQueryParamsSchema: z.ZodObject<{
2362
+ query: z.ZodString;
2363
+ limit: z.ZodOptional<z.ZodNumber>;
2364
+ }, "strip", z.ZodTypeAny, {
2365
+ query: string;
2366
+ limit?: number | undefined;
2367
+ }, {
2368
+ query: string;
2369
+ limit?: number | undefined;
2370
+ }>;
2371
+ export type salesforceGetSalesforceRecordsByQueryParamsType = z.infer<typeof salesforceGetSalesforceRecordsByQueryParamsSchema>;
2372
+ export declare const salesforceGetSalesforceRecordsByQueryOutputSchema: z.ZodObject<{
2373
+ success: z.ZodBoolean;
2374
+ records: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
2375
+ error: z.ZodOptional<z.ZodString>;
2376
+ }, "strip", z.ZodTypeAny, {
2377
+ success: boolean;
2378
+ error?: string | undefined;
2379
+ records?: Record<string, string>[] | undefined;
2380
+ }, {
2381
+ success: boolean;
2382
+ error?: string | undefined;
2383
+ records?: Record<string, string>[] | undefined;
2384
+ }>;
2385
+ export type salesforceGetSalesforceRecordsByQueryOutputType = z.infer<typeof salesforceGetSalesforceRecordsByQueryOutputSchema>;
2386
+ export type salesforceGetSalesforceRecordsByQueryFunction = ActionFunction<salesforceGetSalesforceRecordsByQueryParamsType, AuthParamsType, salesforceGetSalesforceRecordsByQueryOutputType>;
1772
2387
  export declare const salesforceGetRecordParamsSchema: z.ZodObject<{
1773
2388
  objectType: z.ZodString;
1774
2389
  recordId: z.ZodString;
@@ -1795,6 +2410,105 @@ export declare const salesforceGetRecordOutputSchema: z.ZodObject<{
1795
2410
  }>;
1796
2411
  export type salesforceGetRecordOutputType = z.infer<typeof salesforceGetRecordOutputSchema>;
1797
2412
  export type salesforceGetRecordFunction = ActionFunction<salesforceGetRecordParamsType, AuthParamsType, salesforceGetRecordOutputType>;
2413
+ export declare const microsoftCreateDocumentParamsSchema: z.ZodObject<{
2414
+ siteId: z.ZodOptional<z.ZodString>;
2415
+ name: z.ZodString;
2416
+ content: z.ZodString;
2417
+ folderId: z.ZodOptional<z.ZodString>;
2418
+ }, "strip", z.ZodTypeAny, {
2419
+ name: string;
2420
+ content: string;
2421
+ siteId?: string | undefined;
2422
+ folderId?: string | undefined;
2423
+ }, {
2424
+ name: string;
2425
+ content: string;
2426
+ siteId?: string | undefined;
2427
+ folderId?: string | undefined;
2428
+ }>;
2429
+ export type microsoftCreateDocumentParamsType = z.infer<typeof microsoftCreateDocumentParamsSchema>;
2430
+ export declare const microsoftCreateDocumentOutputSchema: z.ZodObject<{
2431
+ documentId: z.ZodOptional<z.ZodString>;
2432
+ documentUrl: z.ZodOptional<z.ZodString>;
2433
+ fileName: z.ZodOptional<z.ZodString>;
2434
+ success: z.ZodBoolean;
2435
+ error: z.ZodOptional<z.ZodString>;
2436
+ }, "strip", z.ZodTypeAny, {
2437
+ success: boolean;
2438
+ error?: string | undefined;
2439
+ documentId?: string | undefined;
2440
+ documentUrl?: string | undefined;
2441
+ fileName?: string | undefined;
2442
+ }, {
2443
+ success: boolean;
2444
+ error?: string | undefined;
2445
+ documentId?: string | undefined;
2446
+ documentUrl?: string | undefined;
2447
+ fileName?: string | undefined;
2448
+ }>;
2449
+ export type microsoftCreateDocumentOutputType = z.infer<typeof microsoftCreateDocumentOutputSchema>;
2450
+ export type microsoftCreateDocumentFunction = ActionFunction<microsoftCreateDocumentParamsType, AuthParamsType, microsoftCreateDocumentOutputType>;
2451
+ export declare const microsoftUpdateDocumentParamsSchema: z.ZodObject<{
2452
+ siteId: z.ZodOptional<z.ZodString>;
2453
+ documentId: z.ZodString;
2454
+ content: z.ZodString;
2455
+ }, "strip", z.ZodTypeAny, {
2456
+ content: string;
2457
+ documentId: string;
2458
+ siteId?: string | undefined;
2459
+ }, {
2460
+ content: string;
2461
+ documentId: string;
2462
+ siteId?: string | undefined;
2463
+ }>;
2464
+ export type microsoftUpdateDocumentParamsType = z.infer<typeof microsoftUpdateDocumentParamsSchema>;
2465
+ export declare const microsoftUpdateDocumentOutputSchema: z.ZodObject<{
2466
+ success: z.ZodBoolean;
2467
+ error: z.ZodOptional<z.ZodString>;
2468
+ documentUrl: z.ZodOptional<z.ZodString>;
2469
+ }, "strip", z.ZodTypeAny, {
2470
+ success: boolean;
2471
+ error?: string | undefined;
2472
+ documentUrl?: string | undefined;
2473
+ }, {
2474
+ success: boolean;
2475
+ error?: string | undefined;
2476
+ documentUrl?: string | undefined;
2477
+ }>;
2478
+ export type microsoftUpdateDocumentOutputType = z.infer<typeof microsoftUpdateDocumentOutputSchema>;
2479
+ export type microsoftUpdateDocumentFunction = ActionFunction<microsoftUpdateDocumentParamsType, AuthParamsType, microsoftUpdateDocumentOutputType>;
2480
+ export declare const microsoftUpdateSpreadsheetParamsSchema: z.ZodObject<{
2481
+ spreadsheetId: z.ZodString;
2482
+ range: z.ZodString;
2483
+ values: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
2484
+ siteId: z.ZodOptional<z.ZodString>;
2485
+ }, "strip", z.ZodTypeAny, {
2486
+ values: string[][];
2487
+ range: string;
2488
+ spreadsheetId: string;
2489
+ siteId?: string | undefined;
2490
+ }, {
2491
+ values: string[][];
2492
+ range: string;
2493
+ spreadsheetId: string;
2494
+ siteId?: string | undefined;
2495
+ }>;
2496
+ export type microsoftUpdateSpreadsheetParamsType = z.infer<typeof microsoftUpdateSpreadsheetParamsSchema>;
2497
+ export declare const microsoftUpdateSpreadsheetOutputSchema: z.ZodObject<{
2498
+ success: z.ZodBoolean;
2499
+ error: z.ZodOptional<z.ZodString>;
2500
+ updatedRange: z.ZodOptional<z.ZodString>;
2501
+ }, "strip", z.ZodTypeAny, {
2502
+ success: boolean;
2503
+ error?: string | undefined;
2504
+ updatedRange?: string | undefined;
2505
+ }, {
2506
+ success: boolean;
2507
+ error?: string | undefined;
2508
+ updatedRange?: string | undefined;
2509
+ }>;
2510
+ export type microsoftUpdateSpreadsheetOutputType = z.infer<typeof microsoftUpdateSpreadsheetOutputSchema>;
2511
+ export type microsoftUpdateSpreadsheetFunction = ActionFunction<microsoftUpdateSpreadsheetParamsType, AuthParamsType, microsoftUpdateSpreadsheetOutputType>;
1798
2512
  export declare const microsoftMessageTeamsChatParamsSchema: z.ZodObject<{
1799
2513
  chatId: z.ZodString;
1800
2514
  message: z.ZodString;
@@ -1850,3 +2564,143 @@ export declare const microsoftMessageTeamsChannelOutputSchema: z.ZodObject<{
1850
2564
  }>;
1851
2565
  export type microsoftMessageTeamsChannelOutputType = z.infer<typeof microsoftMessageTeamsChannelOutputSchema>;
1852
2566
  export type microsoftMessageTeamsChannelFunction = ActionFunction<microsoftMessageTeamsChannelParamsType, AuthParamsType, microsoftMessageTeamsChannelOutputType>;
2567
+ export declare const microsoftGetDocumentParamsSchema: z.ZodObject<{
2568
+ siteId: z.ZodOptional<z.ZodString>;
2569
+ documentId: z.ZodString;
2570
+ }, "strip", z.ZodTypeAny, {
2571
+ documentId: string;
2572
+ siteId?: string | undefined;
2573
+ }, {
2574
+ documentId: string;
2575
+ siteId?: string | undefined;
2576
+ }>;
2577
+ export type microsoftGetDocumentParamsType = z.infer<typeof microsoftGetDocumentParamsSchema>;
2578
+ export declare const microsoftGetDocumentOutputSchema: z.ZodObject<{
2579
+ success: z.ZodBoolean;
2580
+ content: z.ZodOptional<z.ZodString>;
2581
+ error: z.ZodOptional<z.ZodString>;
2582
+ }, "strip", z.ZodTypeAny, {
2583
+ success: boolean;
2584
+ error?: string | undefined;
2585
+ content?: string | undefined;
2586
+ }, {
2587
+ success: boolean;
2588
+ error?: string | undefined;
2589
+ content?: string | undefined;
2590
+ }>;
2591
+ export type microsoftGetDocumentOutputType = z.infer<typeof microsoftGetDocumentOutputSchema>;
2592
+ export type microsoftGetDocumentFunction = ActionFunction<microsoftGetDocumentParamsType, AuthParamsType, microsoftGetDocumentOutputType>;
2593
+ export declare const githubCreateOrUpdateFileParamsSchema: z.ZodObject<{
2594
+ repositoryOwner: z.ZodString;
2595
+ repositoryName: z.ZodString;
2596
+ filePath: z.ZodString;
2597
+ branch: z.ZodString;
2598
+ fileContent: z.ZodString;
2599
+ commitMessage: z.ZodString;
2600
+ noOverwrite: z.ZodOptional<z.ZodBoolean>;
2601
+ }, "strip", z.ZodTypeAny, {
2602
+ repositoryOwner: string;
2603
+ repositoryName: string;
2604
+ filePath: string;
2605
+ branch: string;
2606
+ fileContent: string;
2607
+ commitMessage: string;
2608
+ noOverwrite?: boolean | undefined;
2609
+ }, {
2610
+ repositoryOwner: string;
2611
+ repositoryName: string;
2612
+ filePath: string;
2613
+ branch: string;
2614
+ fileContent: string;
2615
+ commitMessage: string;
2616
+ noOverwrite?: boolean | undefined;
2617
+ }>;
2618
+ export type githubCreateOrUpdateFileParamsType = z.infer<typeof githubCreateOrUpdateFileParamsSchema>;
2619
+ export declare const githubCreateOrUpdateFileOutputSchema: z.ZodObject<{
2620
+ success: z.ZodBoolean;
2621
+ error: z.ZodOptional<z.ZodString>;
2622
+ newCommitSha: z.ZodOptional<z.ZodString>;
2623
+ operation: z.ZodOptional<z.ZodEnum<["created", "updated"]>>;
2624
+ }, "strip", z.ZodTypeAny, {
2625
+ success: boolean;
2626
+ error?: string | undefined;
2627
+ operation?: "created" | "updated" | undefined;
2628
+ newCommitSha?: string | undefined;
2629
+ }, {
2630
+ success: boolean;
2631
+ error?: string | undefined;
2632
+ operation?: "created" | "updated" | undefined;
2633
+ newCommitSha?: string | undefined;
2634
+ }>;
2635
+ export type githubCreateOrUpdateFileOutputType = z.infer<typeof githubCreateOrUpdateFileOutputSchema>;
2636
+ export type githubCreateOrUpdateFileFunction = ActionFunction<githubCreateOrUpdateFileParamsType, AuthParamsType, githubCreateOrUpdateFileOutputType>;
2637
+ export declare const githubCreateBranchParamsSchema: z.ZodObject<{
2638
+ repositoryOwner: z.ZodString;
2639
+ repositoryName: z.ZodString;
2640
+ branchName: z.ZodString;
2641
+ baseRefOrHash: z.ZodString;
2642
+ }, "strip", z.ZodTypeAny, {
2643
+ repositoryOwner: string;
2644
+ repositoryName: string;
2645
+ branchName: string;
2646
+ baseRefOrHash: string;
2647
+ }, {
2648
+ repositoryOwner: string;
2649
+ repositoryName: string;
2650
+ branchName: string;
2651
+ baseRefOrHash: string;
2652
+ }>;
2653
+ export type githubCreateBranchParamsType = z.infer<typeof githubCreateBranchParamsSchema>;
2654
+ export declare const githubCreateBranchOutputSchema: z.ZodObject<{
2655
+ success: z.ZodBoolean;
2656
+ error: z.ZodOptional<z.ZodString>;
2657
+ }, "strip", z.ZodTypeAny, {
2658
+ success: boolean;
2659
+ error?: string | undefined;
2660
+ }, {
2661
+ success: boolean;
2662
+ error?: string | undefined;
2663
+ }>;
2664
+ export type githubCreateBranchOutputType = z.infer<typeof githubCreateBranchOutputSchema>;
2665
+ export type githubCreateBranchFunction = ActionFunction<githubCreateBranchParamsType, AuthParamsType, githubCreateBranchOutputType>;
2666
+ export declare const githubCreatePullRequestParamsSchema: z.ZodObject<{
2667
+ repositoryOwner: z.ZodString;
2668
+ repositoryName: z.ZodString;
2669
+ head: z.ZodString;
2670
+ base: z.ZodString;
2671
+ title: z.ZodString;
2672
+ description: z.ZodOptional<z.ZodString>;
2673
+ }, "strip", z.ZodTypeAny, {
2674
+ title: string;
2675
+ repositoryOwner: string;
2676
+ repositoryName: string;
2677
+ head: string;
2678
+ base: string;
2679
+ description?: string | undefined;
2680
+ }, {
2681
+ title: string;
2682
+ repositoryOwner: string;
2683
+ repositoryName: string;
2684
+ head: string;
2685
+ base: string;
2686
+ description?: string | undefined;
2687
+ }>;
2688
+ export type githubCreatePullRequestParamsType = z.infer<typeof githubCreatePullRequestParamsSchema>;
2689
+ export declare const githubCreatePullRequestOutputSchema: z.ZodObject<{
2690
+ success: z.ZodBoolean;
2691
+ error: z.ZodOptional<z.ZodString>;
2692
+ pullRequestUrl: z.ZodOptional<z.ZodString>;
2693
+ pullRequestNumber: z.ZodOptional<z.ZodNumber>;
2694
+ }, "strip", z.ZodTypeAny, {
2695
+ success: boolean;
2696
+ error?: string | undefined;
2697
+ pullRequestUrl?: string | undefined;
2698
+ pullRequestNumber?: number | undefined;
2699
+ }, {
2700
+ success: boolean;
2701
+ error?: string | undefined;
2702
+ pullRequestUrl?: string | undefined;
2703
+ pullRequestNumber?: number | undefined;
2704
+ }>;
2705
+ export type githubCreatePullRequestOutputType = z.infer<typeof githubCreatePullRequestOutputSchema>;
2706
+ export type githubCreatePullRequestFunction = ActionFunction<githubCreatePullRequestParamsType, AuthParamsType, githubCreatePullRequestOutputType>;