@credal/actions 0.1.32 → 0.1.34
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 +101 -1
- package/dist/actions/autogen/definitions.d.ts +5 -0
- package/dist/actions/autogen/definitions.js +132 -0
- package/dist/actions/autogen/templates.d.ts +17 -1
- package/dist/actions/autogen/templates.js +3629 -119
- package/dist/actions/autogen/types.d.ts +755 -26
- package/dist/actions/autogen/types.js +1579 -12
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/groups.js +26 -3
- package/dist/actions/invokeMapper.d.ts +9 -0
- package/dist/actions/invokeMapper.js +33 -0
- package/dist/actions/providers/asana/commentAsanaTask.d.ts +3 -0
- package/dist/actions/providers/asana/commentAsanaTask.js +44 -0
- package/dist/actions/providers/asana/createAsanaTask.d.ts +3 -0
- package/dist/actions/providers/asana/createAsanaTask.js +93 -0
- package/dist/actions/providers/asana/updateAsanaTask.d.ts +3 -0
- package/dist/actions/providers/asana/updateAsanaTask.js +50 -0
- package/dist/actions/providers/asana/utils.d.ts +6 -0
- package/dist/actions/providers/asana/utils.js +73 -0
- package/dist/actions/providers/confluence/updatePage.js +9 -13
- package/dist/actions/providers/github/createBranch.d.ts +6 -0
- package/dist/actions/providers/github/createBranch.js +68 -0
- package/dist/actions/providers/github/createOrUpdateFile.d.ts +6 -0
- package/dist/actions/providers/github/createOrUpdateFile.js +75 -0
- package/dist/actions/providers/github/createPullRequest.d.ts +6 -0
- package/dist/actions/providers/github/createPullRequest.js +48 -0
- package/dist/actions/providers/google-oauth/createPresentation.d.ts +6 -0
- package/dist/actions/providers/google-oauth/createPresentation.js +52 -0
- package/dist/actions/providers/google-oauth/createSpreadsheet.d.ts +6 -0
- package/dist/actions/providers/google-oauth/createSpreadsheet.js +62 -0
- package/dist/actions/providers/google-oauth/updateDoc.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updateDoc.js +69 -0
- package/dist/actions/providers/google-oauth/updatePresentation.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updatePresentation.js +64 -0
- package/dist/actions/providers/google-oauth/updateSpreadsheet.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updateSpreadsheet.js +51 -0
- package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
- package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
- package/dist/actions/providers/jira/commentJiraTicket.d.ts +2 -2
- package/dist/actions/providers/jira/commentJiraTicket.js +2 -2
- package/dist/actions/providers/jira/createTicket.d.ts +3 -0
- package/dist/actions/providers/jira/createTicket.js +34 -0
- package/dist/actions/providers/jira/getJiraTicketDetails.d.ts +3 -0
- package/dist/actions/providers/jira/getJiraTicketDetails.js +40 -0
- package/dist/actions/providers/jira/getJiraTicketHistory.d.ts +3 -0
- package/dist/actions/providers/jira/getJiraTicketHistory.js +41 -0
- package/dist/actions/providers/jira/updateJiraTicketDetails.d.ts +3 -0
- package/dist/actions/providers/jira/updateJiraTicketDetails.js +56 -0
- package/dist/actions/providers/jira/updateJiraTicketStatus.d.ts +3 -0
- package/dist/actions/providers/jira/updateJiraTicketStatus.js +57 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
- package/dist/actions/providers/slack/list_conversations.d.ts +3 -0
- package/dist/actions/providers/slack/list_conversations.js +60 -0
- package/dist/actions/providers/slack/summarizeChannel.d.ts +3 -0
- package/dist/actions/providers/slack/summarizeChannel.js +51 -0
- package/dist/actions/schema.js +6 -0
- package/dist/actions/types.js +2 -0
- package/dist/main.js +11 -0
- package/package.json +2 -1
- package/dist/actions/providers/workday/requestTimeOff.d.ts +0 -23
- 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
|
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
|
229
|
-
export declare const
|
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
|
-
|
349
|
+
ticketUrl: z.ZodOptional<z.ZodString>;
|
233
350
|
}, "strip", z.ZodTypeAny, {
|
234
351
|
success: boolean;
|
235
352
|
error?: string | undefined;
|
236
|
-
|
353
|
+
ticketUrl?: string | undefined;
|
237
354
|
}, {
|
238
355
|
success: boolean;
|
239
356
|
error?: string | undefined;
|
240
|
-
|
357
|
+
ticketUrl?: string | undefined;
|
241
358
|
}>;
|
242
|
-
export type
|
243
|
-
export type
|
244
|
-
export declare const
|
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
|
-
|
368
|
+
comment: string;
|
252
369
|
}, {
|
253
370
|
projectKey: string;
|
254
371
|
issueId: string;
|
255
|
-
|
372
|
+
comment: string;
|
256
373
|
}>;
|
257
|
-
export type
|
258
|
-
export declare const
|
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
|
-
|
378
|
+
commentUrl: z.ZodOptional<z.ZodString>;
|
262
379
|
}, "strip", z.ZodTypeAny, {
|
263
380
|
success: boolean;
|
264
381
|
error?: string | undefined;
|
265
|
-
|
382
|
+
commentUrl?: string | undefined;
|
266
383
|
}, {
|
267
384
|
success: boolean;
|
268
385
|
error?: string | undefined;
|
269
|
-
|
386
|
+
commentUrl?: string | undefined;
|
270
387
|
}>;
|
271
|
-
export type
|
272
|
-
export type
|
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;
|
@@ -1850,3 +2465,117 @@ export declare const microsoftMessageTeamsChannelOutputSchema: z.ZodObject<{
|
|
1850
2465
|
}>;
|
1851
2466
|
export type microsoftMessageTeamsChannelOutputType = z.infer<typeof microsoftMessageTeamsChannelOutputSchema>;
|
1852
2467
|
export type microsoftMessageTeamsChannelFunction = ActionFunction<microsoftMessageTeamsChannelParamsType, AuthParamsType, microsoftMessageTeamsChannelOutputType>;
|
2468
|
+
export declare const githubCreateOrUpdateFileParamsSchema: z.ZodObject<{
|
2469
|
+
repositoryOwner: z.ZodString;
|
2470
|
+
repositoryName: z.ZodString;
|
2471
|
+
filePath: z.ZodString;
|
2472
|
+
branch: z.ZodString;
|
2473
|
+
fileContent: z.ZodString;
|
2474
|
+
commitMessage: z.ZodString;
|
2475
|
+
noOverwrite: z.ZodOptional<z.ZodBoolean>;
|
2476
|
+
}, "strip", z.ZodTypeAny, {
|
2477
|
+
repositoryOwner: string;
|
2478
|
+
repositoryName: string;
|
2479
|
+
filePath: string;
|
2480
|
+
branch: string;
|
2481
|
+
fileContent: string;
|
2482
|
+
commitMessage: string;
|
2483
|
+
noOverwrite?: boolean | undefined;
|
2484
|
+
}, {
|
2485
|
+
repositoryOwner: string;
|
2486
|
+
repositoryName: string;
|
2487
|
+
filePath: string;
|
2488
|
+
branch: string;
|
2489
|
+
fileContent: string;
|
2490
|
+
commitMessage: string;
|
2491
|
+
noOverwrite?: boolean | undefined;
|
2492
|
+
}>;
|
2493
|
+
export type githubCreateOrUpdateFileParamsType = z.infer<typeof githubCreateOrUpdateFileParamsSchema>;
|
2494
|
+
export declare const githubCreateOrUpdateFileOutputSchema: z.ZodObject<{
|
2495
|
+
success: z.ZodBoolean;
|
2496
|
+
error: z.ZodOptional<z.ZodString>;
|
2497
|
+
newCommitSha: z.ZodOptional<z.ZodString>;
|
2498
|
+
operation: z.ZodOptional<z.ZodEnum<["created", "updated"]>>;
|
2499
|
+
}, "strip", z.ZodTypeAny, {
|
2500
|
+
success: boolean;
|
2501
|
+
error?: string | undefined;
|
2502
|
+
operation?: "created" | "updated" | undefined;
|
2503
|
+
newCommitSha?: string | undefined;
|
2504
|
+
}, {
|
2505
|
+
success: boolean;
|
2506
|
+
error?: string | undefined;
|
2507
|
+
operation?: "created" | "updated" | undefined;
|
2508
|
+
newCommitSha?: string | undefined;
|
2509
|
+
}>;
|
2510
|
+
export type githubCreateOrUpdateFileOutputType = z.infer<typeof githubCreateOrUpdateFileOutputSchema>;
|
2511
|
+
export type githubCreateOrUpdateFileFunction = ActionFunction<githubCreateOrUpdateFileParamsType, AuthParamsType, githubCreateOrUpdateFileOutputType>;
|
2512
|
+
export declare const githubCreateBranchParamsSchema: z.ZodObject<{
|
2513
|
+
repositoryOwner: z.ZodString;
|
2514
|
+
repositoryName: z.ZodString;
|
2515
|
+
branchName: z.ZodString;
|
2516
|
+
baseRefOrHash: z.ZodString;
|
2517
|
+
}, "strip", z.ZodTypeAny, {
|
2518
|
+
repositoryOwner: string;
|
2519
|
+
repositoryName: string;
|
2520
|
+
branchName: string;
|
2521
|
+
baseRefOrHash: string;
|
2522
|
+
}, {
|
2523
|
+
repositoryOwner: string;
|
2524
|
+
repositoryName: string;
|
2525
|
+
branchName: string;
|
2526
|
+
baseRefOrHash: string;
|
2527
|
+
}>;
|
2528
|
+
export type githubCreateBranchParamsType = z.infer<typeof githubCreateBranchParamsSchema>;
|
2529
|
+
export declare const githubCreateBranchOutputSchema: z.ZodObject<{
|
2530
|
+
success: z.ZodBoolean;
|
2531
|
+
error: z.ZodOptional<z.ZodString>;
|
2532
|
+
}, "strip", z.ZodTypeAny, {
|
2533
|
+
success: boolean;
|
2534
|
+
error?: string | undefined;
|
2535
|
+
}, {
|
2536
|
+
success: boolean;
|
2537
|
+
error?: string | undefined;
|
2538
|
+
}>;
|
2539
|
+
export type githubCreateBranchOutputType = z.infer<typeof githubCreateBranchOutputSchema>;
|
2540
|
+
export type githubCreateBranchFunction = ActionFunction<githubCreateBranchParamsType, AuthParamsType, githubCreateBranchOutputType>;
|
2541
|
+
export declare const githubCreatePullRequestParamsSchema: z.ZodObject<{
|
2542
|
+
repositoryOwner: z.ZodString;
|
2543
|
+
repositoryName: z.ZodString;
|
2544
|
+
head: z.ZodString;
|
2545
|
+
base: z.ZodString;
|
2546
|
+
title: z.ZodString;
|
2547
|
+
description: z.ZodOptional<z.ZodString>;
|
2548
|
+
}, "strip", z.ZodTypeAny, {
|
2549
|
+
title: string;
|
2550
|
+
repositoryOwner: string;
|
2551
|
+
repositoryName: string;
|
2552
|
+
head: string;
|
2553
|
+
base: string;
|
2554
|
+
description?: string | undefined;
|
2555
|
+
}, {
|
2556
|
+
title: string;
|
2557
|
+
repositoryOwner: string;
|
2558
|
+
repositoryName: string;
|
2559
|
+
head: string;
|
2560
|
+
base: string;
|
2561
|
+
description?: string | undefined;
|
2562
|
+
}>;
|
2563
|
+
export type githubCreatePullRequestParamsType = z.infer<typeof githubCreatePullRequestParamsSchema>;
|
2564
|
+
export declare const githubCreatePullRequestOutputSchema: z.ZodObject<{
|
2565
|
+
success: z.ZodBoolean;
|
2566
|
+
error: z.ZodOptional<z.ZodString>;
|
2567
|
+
pullRequestUrl: z.ZodOptional<z.ZodString>;
|
2568
|
+
pullRequestNumber: z.ZodOptional<z.ZodNumber>;
|
2569
|
+
}, "strip", z.ZodTypeAny, {
|
2570
|
+
success: boolean;
|
2571
|
+
error?: string | undefined;
|
2572
|
+
pullRequestUrl?: string | undefined;
|
2573
|
+
pullRequestNumber?: number | undefined;
|
2574
|
+
}, {
|
2575
|
+
success: boolean;
|
2576
|
+
error?: string | undefined;
|
2577
|
+
pullRequestUrl?: string | undefined;
|
2578
|
+
pullRequestNumber?: number | undefined;
|
2579
|
+
}>;
|
2580
|
+
export type githubCreatePullRequestOutputType = z.infer<typeof githubCreatePullRequestOutputSchema>;
|
2581
|
+
export type githubCreatePullRequestFunction = ActionFunction<githubCreatePullRequestParamsType, AuthParamsType, githubCreatePullRequestOutputType>;
|