@credal/actions 0.1.31 → 0.1.32
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 +138 -0
- package/dist/actions/autogen/templates.d.ts +22 -0
- package/dist/actions/autogen/templates.js +883 -1
- package/dist/actions/autogen/types.d.ts +660 -8
- package/dist/actions/autogen/types.js +245 -1
- package/dist/actions/groups.js +20 -3
- package/dist/actions/invoke.js +3 -0
- package/dist/actions/parse.js +3 -0
- package/dist/actions/providers/ashby/addCandidateToProject.d.ts +3 -0
- package/dist/actions/providers/ashby/addCandidateToProject.js +32 -0
- package/dist/actions/providers/ashby/createCandidate.d.ts +3 -0
- package/dist/actions/providers/ashby/createCandidate.js +42 -0
- package/dist/actions/providers/ashby/createNote.d.ts +3 -0
- package/dist/actions/providers/ashby/createNote.js +32 -0
- package/dist/actions/providers/ashby/getCandidateInfo.d.ts +3 -0
- package/dist/actions/providers/ashby/getCandidateInfo.js +34 -0
- package/dist/actions/providers/ashby/listCandidateNotes.d.ts +3 -0
- package/dist/actions/providers/ashby/listCandidateNotes.js +34 -0
- package/dist/actions/providers/ashby/listCandidates.d.ts +3 -0
- package/dist/actions/providers/ashby/listCandidates.js +31 -0
- package/dist/actions/providers/ashby/searchCandidates.d.ts +3 -0
- package/dist/actions/providers/ashby/searchCandidates.js +35 -0
- package/dist/actions/providers/ashby/updateCandidate.d.ts +3 -0
- package/dist/actions/providers/ashby/updateCandidate.js +60 -0
- package/dist/actions/providers/confluence/updatePage.js +15 -14
- package/dist/actions/providers/google-oauth/scheduleCalendarMeeting.d.ts +6 -0
- package/dist/actions/providers/google-oauth/scheduleCalendarMeeting.js +74 -0
- package/dist/actions/providers/jira/assignJiraTicket.d.ts +3 -0
- package/dist/actions/providers/jira/assignJiraTicket.js +52 -0
- package/dist/actions/providers/jira/commentJiraTicket.d.ts +3 -0
- package/dist/actions/providers/jira/commentJiraTicket.js +56 -0
- package/dist/actions/providers/jira/createJiraTicket.js +3 -24
- package/dist/actions/providers/jira/utils.d.ts +1 -0
- package/dist/actions/providers/jira/utils.js +34 -0
- package/dist/actions/providers/microsoft/messageTeamsChannel.d.ts +3 -0
- package/dist/actions/providers/microsoft/messageTeamsChannel.js +45 -0
- package/dist/actions/providers/microsoft/messageTeamsChat.d.ts +3 -0
- package/dist/actions/providers/microsoft/messageTeamsChat.js +42 -0
- package/dist/actions/providers/microsoft/utils.d.ts +4 -0
- package/dist/actions/providers/microsoft/utils.js +55 -0
- package/dist/actions/providers/salesforce/createCase.d.ts +3 -0
- package/dist/actions/providers/salesforce/createCase.js +44 -0
- package/dist/actions/providers/salesforce/generateSalesReport.d.ts +3 -0
- package/dist/actions/providers/salesforce/generateSalesReport.js +52 -0
- package/dist/actions/providers/salesforce/getRecord.d.ts +3 -0
- package/dist/actions/providers/salesforce/getRecord.js +42 -0
- package/dist/actions/providers/salesforce/updateRecord.d.ts +3 -0
- package/dist/actions/providers/salesforce/updateRecord.js +42 -0
- package/dist/actions/providers/slack/getChannelMessages.d.ts +3 -0
- package/dist/actions/providers/slack/getChannelMessages.js +33 -0
- package/dist/actions/providers/workday/requestTimeOff.d.ts +23 -0
- package/dist/actions/providers/workday/requestTimeOff.js +88 -0
- package/dist/actions/providers/zendesk/addCommentToTicket.d.ts +3 -0
- package/dist/actions/providers/zendesk/addCommentToTicket.js +37 -0
- package/dist/actions/providers/zendesk/assignTicket.d.ts +3 -0
- package/dist/actions/providers/zendesk/assignTicket.js +37 -0
- package/dist/actions/providers/zendesk/getTicketDetails.d.ts +3 -0
- package/dist/actions/providers/zendesk/getTicketDetails.js +35 -0
- package/dist/actions/providers/zendesk/updateTicketStatus.d.ts +3 -0
- package/dist/actions/providers/zendesk/updateTicketStatus.js +37 -0
- package/package.json +6 -1
- package/dist/actions/providers/googlemaps/nearbysearch.d.ts +0 -3
- package/dist/actions/providers/googlemaps/nearbysearch.js +0 -96
- package/dist/actions/providers/snowflake/runSnowflakeQueryWriteResultsToS3.d.ts +0 -3
- package/dist/actions/providers/snowflake/runSnowflakeQueryWriteResultsToS3.js +0 -154
- package/dist/actions/providers/x/scrapeTweetDataWithNitter.d.ts +0 -3
- package/dist/actions/providers/x/scrapeTweetDataWithNitter.js +0 -45
@@ -19,6 +19,9 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
19
19
|
awsSecretAccessKey: z.ZodOptional<z.ZodString>;
|
20
20
|
clientId: z.ZodOptional<z.ZodString>;
|
21
21
|
clientSecret: z.ZodOptional<z.ZodString>;
|
22
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
23
|
+
refreshToken: z.ZodOptional<z.ZodString>;
|
24
|
+
redirectUri: z.ZodOptional<z.ZodString>;
|
22
25
|
}, "strip", z.ZodTypeAny, {
|
23
26
|
subdomain?: string | undefined;
|
24
27
|
authToken?: string | undefined;
|
@@ -35,6 +38,9 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
35
38
|
awsSecretAccessKey?: string | undefined;
|
36
39
|
clientId?: string | undefined;
|
37
40
|
clientSecret?: string | undefined;
|
41
|
+
tenantId?: string | undefined;
|
42
|
+
refreshToken?: string | undefined;
|
43
|
+
redirectUri?: string | undefined;
|
38
44
|
}, {
|
39
45
|
subdomain?: string | undefined;
|
40
46
|
authToken?: string | undefined;
|
@@ -51,6 +57,9 @@ export declare const AuthParamsSchema: z.ZodObject<{
|
|
51
57
|
awsSecretAccessKey?: string | undefined;
|
52
58
|
clientId?: string | undefined;
|
53
59
|
clientSecret?: string | undefined;
|
60
|
+
tenantId?: string | undefined;
|
61
|
+
refreshToken?: string | undefined;
|
62
|
+
redirectUri?: string | undefined;
|
54
63
|
}>;
|
55
64
|
export type AuthParamsType = z.infer<typeof AuthParamsSchema>;
|
56
65
|
export declare const slackSendMessageParamsSchema: z.ZodObject<{
|
@@ -103,6 +112,46 @@ export declare const slackListConversationsOutputSchema: z.ZodObject<{
|
|
103
112
|
}>;
|
104
113
|
export type slackListConversationsOutputType = z.infer<typeof slackListConversationsOutputSchema>;
|
105
114
|
export type slackListConversationsFunction = ActionFunction<slackListConversationsParamsType, AuthParamsType, slackListConversationsOutputType>;
|
115
|
+
export declare const slackGetChannelMessagesParamsSchema: z.ZodObject<{
|
116
|
+
channelName: z.ZodString;
|
117
|
+
oldest: z.ZodString;
|
118
|
+
}, "strip", z.ZodTypeAny, {
|
119
|
+
channelName: string;
|
120
|
+
oldest: string;
|
121
|
+
}, {
|
122
|
+
channelName: string;
|
123
|
+
oldest: string;
|
124
|
+
}>;
|
125
|
+
export type slackGetChannelMessagesParamsType = z.infer<typeof slackGetChannelMessagesParamsSchema>;
|
126
|
+
export declare const slackGetChannelMessagesOutputSchema: z.ZodObject<{
|
127
|
+
messages: z.ZodArray<z.ZodObject<{
|
128
|
+
user: z.ZodString;
|
129
|
+
text: z.ZodString;
|
130
|
+
ts: z.ZodString;
|
131
|
+
}, "strip", z.ZodTypeAny, {
|
132
|
+
user: string;
|
133
|
+
text: string;
|
134
|
+
ts: string;
|
135
|
+
}, {
|
136
|
+
user: string;
|
137
|
+
text: string;
|
138
|
+
ts: string;
|
139
|
+
}>, "many">;
|
140
|
+
}, "strip", z.ZodTypeAny, {
|
141
|
+
messages: {
|
142
|
+
user: string;
|
143
|
+
text: string;
|
144
|
+
ts: string;
|
145
|
+
}[];
|
146
|
+
}, {
|
147
|
+
messages: {
|
148
|
+
user: string;
|
149
|
+
text: string;
|
150
|
+
ts: string;
|
151
|
+
}[];
|
152
|
+
}>;
|
153
|
+
export type slackGetChannelMessagesOutputType = z.infer<typeof slackGetChannelMessagesOutputSchema>;
|
154
|
+
export type slackGetChannelMessagesFunction = ActionFunction<slackGetChannelMessagesParamsType, AuthParamsType, slackGetChannelMessagesOutputType>;
|
106
155
|
export declare const mathAddParamsSchema: z.ZodObject<{
|
107
156
|
a: z.ZodNumber;
|
108
157
|
b: z.ZodNumber;
|
@@ -163,6 +212,64 @@ export declare const confluenceFetchPageContentOutputSchema: z.ZodObject<{
|
|
163
212
|
}>;
|
164
213
|
export type confluenceFetchPageContentOutputType = z.infer<typeof confluenceFetchPageContentOutputSchema>;
|
165
214
|
export type confluenceFetchPageContentFunction = ActionFunction<confluenceFetchPageContentParamsType, AuthParamsType, confluenceFetchPageContentOutputType>;
|
215
|
+
export declare const jiraCommentJiraTicketParamsSchema: z.ZodObject<{
|
216
|
+
projectKey: z.ZodString;
|
217
|
+
issueId: z.ZodString;
|
218
|
+
comment: z.ZodString;
|
219
|
+
}, "strip", z.ZodTypeAny, {
|
220
|
+
projectKey: string;
|
221
|
+
issueId: string;
|
222
|
+
comment: string;
|
223
|
+
}, {
|
224
|
+
projectKey: string;
|
225
|
+
issueId: string;
|
226
|
+
comment: string;
|
227
|
+
}>;
|
228
|
+
export type jiraCommentJiraTicketParamsType = z.infer<typeof jiraCommentJiraTicketParamsSchema>;
|
229
|
+
export declare const jiraCommentJiraTicketOutputSchema: z.ZodObject<{
|
230
|
+
success: z.ZodBoolean;
|
231
|
+
error: z.ZodOptional<z.ZodString>;
|
232
|
+
commentUrl: z.ZodOptional<z.ZodString>;
|
233
|
+
}, "strip", z.ZodTypeAny, {
|
234
|
+
success: boolean;
|
235
|
+
error?: string | undefined;
|
236
|
+
commentUrl?: string | undefined;
|
237
|
+
}, {
|
238
|
+
success: boolean;
|
239
|
+
error?: string | undefined;
|
240
|
+
commentUrl?: string | undefined;
|
241
|
+
}>;
|
242
|
+
export type jiraCommentJiraTicketOutputType = z.infer<typeof jiraCommentJiraTicketOutputSchema>;
|
243
|
+
export type jiraCommentJiraTicketFunction = ActionFunction<jiraCommentJiraTicketParamsType, AuthParamsType, jiraCommentJiraTicketOutputType>;
|
244
|
+
export declare const jiraAssignJiraTicketParamsSchema: z.ZodObject<{
|
245
|
+
projectKey: z.ZodString;
|
246
|
+
assignee: z.ZodString;
|
247
|
+
issueId: z.ZodString;
|
248
|
+
}, "strip", z.ZodTypeAny, {
|
249
|
+
projectKey: string;
|
250
|
+
issueId: string;
|
251
|
+
assignee: string;
|
252
|
+
}, {
|
253
|
+
projectKey: string;
|
254
|
+
issueId: string;
|
255
|
+
assignee: string;
|
256
|
+
}>;
|
257
|
+
export type jiraAssignJiraTicketParamsType = z.infer<typeof jiraAssignJiraTicketParamsSchema>;
|
258
|
+
export declare const jiraAssignJiraTicketOutputSchema: z.ZodObject<{
|
259
|
+
success: z.ZodBoolean;
|
260
|
+
error: z.ZodOptional<z.ZodString>;
|
261
|
+
ticketUrl: z.ZodOptional<z.ZodString>;
|
262
|
+
}, "strip", z.ZodTypeAny, {
|
263
|
+
success: boolean;
|
264
|
+
error?: string | undefined;
|
265
|
+
ticketUrl?: string | undefined;
|
266
|
+
}, {
|
267
|
+
success: boolean;
|
268
|
+
error?: string | undefined;
|
269
|
+
ticketUrl?: string | undefined;
|
270
|
+
}>;
|
271
|
+
export type jiraAssignJiraTicketOutputType = z.infer<typeof jiraAssignJiraTicketOutputSchema>;
|
272
|
+
export type jiraAssignJiraTicketFunction = ActionFunction<jiraAssignJiraTicketParamsType, AuthParamsType, jiraAssignJiraTicketOutputType>;
|
166
273
|
export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
|
167
274
|
projectKey: z.ZodString;
|
168
275
|
summary: z.ZodString;
|
@@ -176,16 +283,16 @@ export declare const jiraCreateJiraTicketParamsSchema: z.ZodObject<{
|
|
176
283
|
projectKey: string;
|
177
284
|
summary: string;
|
178
285
|
issueType: string;
|
179
|
-
reporter?: string | undefined;
|
180
286
|
assignee?: string | undefined;
|
287
|
+
reporter?: string | undefined;
|
181
288
|
customFields?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
182
289
|
}, {
|
183
290
|
description: string;
|
184
291
|
projectKey: string;
|
185
292
|
summary: string;
|
186
293
|
issueType: string;
|
187
|
-
reporter?: string | undefined;
|
188
294
|
assignee?: string | undefined;
|
295
|
+
reporter?: string | undefined;
|
189
296
|
customFields?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
190
297
|
}>;
|
191
298
|
export type jiraCreateJiraTicketParamsType = z.infer<typeof jiraCreateJiraTicketParamsSchema>;
|
@@ -655,15 +762,105 @@ export declare const zendeskCreateZendeskTicketOutputSchema: z.ZodObject<{
|
|
655
762
|
}>;
|
656
763
|
export type zendeskCreateZendeskTicketOutputType = z.infer<typeof zendeskCreateZendeskTicketOutputSchema>;
|
657
764
|
export type zendeskCreateZendeskTicketFunction = ActionFunction<zendeskCreateZendeskTicketParamsType, AuthParamsType, zendeskCreateZendeskTicketOutputType>;
|
765
|
+
export declare const zendeskGetTicketDetailsParamsSchema: z.ZodObject<{
|
766
|
+
ticketId: z.ZodString;
|
767
|
+
subdomain: z.ZodString;
|
768
|
+
}, "strip", z.ZodTypeAny, {
|
769
|
+
subdomain: string;
|
770
|
+
ticketId: string;
|
771
|
+
}, {
|
772
|
+
subdomain: string;
|
773
|
+
ticketId: string;
|
774
|
+
}>;
|
775
|
+
export type zendeskGetTicketDetailsParamsType = z.infer<typeof zendeskGetTicketDetailsParamsSchema>;
|
776
|
+
export declare const zendeskGetTicketDetailsOutputSchema: z.ZodObject<{
|
777
|
+
ticket: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
|
778
|
+
}, "strip", z.ZodTypeAny, {
|
779
|
+
ticket: {} & {
|
780
|
+
[k: string]: any;
|
781
|
+
};
|
782
|
+
}, {
|
783
|
+
ticket: {} & {
|
784
|
+
[k: string]: any;
|
785
|
+
};
|
786
|
+
}>;
|
787
|
+
export type zendeskGetTicketDetailsOutputType = z.infer<typeof zendeskGetTicketDetailsOutputSchema>;
|
788
|
+
export type zendeskGetTicketDetailsFunction = ActionFunction<zendeskGetTicketDetailsParamsType, AuthParamsType, zendeskGetTicketDetailsOutputType>;
|
789
|
+
export declare const zendeskUpdateTicketStatusParamsSchema: z.ZodObject<{
|
790
|
+
ticketId: z.ZodString;
|
791
|
+
subdomain: z.ZodString;
|
792
|
+
status: z.ZodString;
|
793
|
+
}, "strip", z.ZodTypeAny, {
|
794
|
+
status: string;
|
795
|
+
subdomain: string;
|
796
|
+
ticketId: string;
|
797
|
+
}, {
|
798
|
+
status: string;
|
799
|
+
subdomain: string;
|
800
|
+
ticketId: string;
|
801
|
+
}>;
|
802
|
+
export type zendeskUpdateTicketStatusParamsType = z.infer<typeof zendeskUpdateTicketStatusParamsSchema>;
|
803
|
+
export declare const zendeskUpdateTicketStatusOutputSchema: z.ZodVoid;
|
804
|
+
export type zendeskUpdateTicketStatusOutputType = z.infer<typeof zendeskUpdateTicketStatusOutputSchema>;
|
805
|
+
export type zendeskUpdateTicketStatusFunction = ActionFunction<zendeskUpdateTicketStatusParamsType, AuthParamsType, zendeskUpdateTicketStatusOutputType>;
|
806
|
+
export declare const zendeskAddCommentToTicketParamsSchema: z.ZodObject<{
|
807
|
+
ticketId: z.ZodString;
|
808
|
+
subdomain: z.ZodString;
|
809
|
+
comment: z.ZodObject<{
|
810
|
+
body: z.ZodString;
|
811
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
812
|
+
}, "strip", z.ZodTypeAny, {
|
813
|
+
body: string;
|
814
|
+
public?: boolean | undefined;
|
815
|
+
}, {
|
816
|
+
body: string;
|
817
|
+
public?: boolean | undefined;
|
818
|
+
}>;
|
819
|
+
}, "strip", z.ZodTypeAny, {
|
820
|
+
comment: {
|
821
|
+
body: string;
|
822
|
+
public?: boolean | undefined;
|
823
|
+
};
|
824
|
+
subdomain: string;
|
825
|
+
ticketId: string;
|
826
|
+
}, {
|
827
|
+
comment: {
|
828
|
+
body: string;
|
829
|
+
public?: boolean | undefined;
|
830
|
+
};
|
831
|
+
subdomain: string;
|
832
|
+
ticketId: string;
|
833
|
+
}>;
|
834
|
+
export type zendeskAddCommentToTicketParamsType = z.infer<typeof zendeskAddCommentToTicketParamsSchema>;
|
835
|
+
export declare const zendeskAddCommentToTicketOutputSchema: z.ZodVoid;
|
836
|
+
export type zendeskAddCommentToTicketOutputType = z.infer<typeof zendeskAddCommentToTicketOutputSchema>;
|
837
|
+
export type zendeskAddCommentToTicketFunction = ActionFunction<zendeskAddCommentToTicketParamsType, AuthParamsType, zendeskAddCommentToTicketOutputType>;
|
838
|
+
export declare const zendeskAssignTicketParamsSchema: z.ZodObject<{
|
839
|
+
ticketId: z.ZodString;
|
840
|
+
subdomain: z.ZodString;
|
841
|
+
assigneeEmail: z.ZodString;
|
842
|
+
}, "strip", z.ZodTypeAny, {
|
843
|
+
subdomain: string;
|
844
|
+
ticketId: string;
|
845
|
+
assigneeEmail: string;
|
846
|
+
}, {
|
847
|
+
subdomain: string;
|
848
|
+
ticketId: string;
|
849
|
+
assigneeEmail: string;
|
850
|
+
}>;
|
851
|
+
export type zendeskAssignTicketParamsType = z.infer<typeof zendeskAssignTicketParamsSchema>;
|
852
|
+
export declare const zendeskAssignTicketOutputSchema: z.ZodVoid;
|
853
|
+
export type zendeskAssignTicketOutputType = z.infer<typeof zendeskAssignTicketOutputSchema>;
|
854
|
+
export type zendeskAssignTicketFunction = ActionFunction<zendeskAssignTicketParamsType, AuthParamsType, zendeskAssignTicketOutputType>;
|
658
855
|
export declare const linkedinCreateShareLinkedinPostUrlParamsSchema: z.ZodObject<{
|
659
856
|
text: z.ZodOptional<z.ZodString>;
|
660
857
|
url: z.ZodOptional<z.ZodString>;
|
661
858
|
}, "strip", z.ZodTypeAny, {
|
662
|
-
url?: string | undefined;
|
663
859
|
text?: string | undefined;
|
664
|
-
}, {
|
665
860
|
url?: string | undefined;
|
861
|
+
}, {
|
666
862
|
text?: string | undefined;
|
863
|
+
url?: string | undefined;
|
667
864
|
}>;
|
668
865
|
export type linkedinCreateShareLinkedinPostUrlParamsType = z.infer<typeof linkedinCreateShareLinkedinPostUrlParamsSchema>;
|
669
866
|
export declare const linkedinCreateShareLinkedinPostUrlOutputSchema: z.ZodObject<{
|
@@ -743,17 +940,17 @@ export declare const snowflakeGetRowByFieldValueParamsSchema: z.ZodObject<{
|
|
743
940
|
tableName: string;
|
744
941
|
fieldName: string;
|
745
942
|
fieldValue: string;
|
943
|
+
user?: string | undefined;
|
746
944
|
databaseName?: string | undefined;
|
747
945
|
accountName?: string | undefined;
|
748
|
-
user?: string | undefined;
|
749
946
|
warehouse?: string | undefined;
|
750
947
|
}, {
|
751
948
|
tableName: string;
|
752
949
|
fieldName: string;
|
753
950
|
fieldValue: string;
|
951
|
+
user?: string | undefined;
|
754
952
|
databaseName?: string | undefined;
|
755
953
|
accountName?: string | undefined;
|
756
|
-
user?: string | undefined;
|
757
954
|
warehouse?: string | undefined;
|
758
955
|
}>;
|
759
956
|
export type snowflakeGetRowByFieldValueParamsType = z.infer<typeof snowflakeGetRowByFieldValueParamsSchema>;
|
@@ -789,17 +986,17 @@ export declare const snowflakeRunSnowflakeQueryParamsSchema: z.ZodObject<{
|
|
789
986
|
accountName: z.ZodString;
|
790
987
|
outputFormat: z.ZodOptional<z.ZodEnum<["json", "csv"]>>;
|
791
988
|
}, "strip", z.ZodTypeAny, {
|
989
|
+
user: string;
|
792
990
|
query: string;
|
793
991
|
databaseName: string;
|
794
992
|
accountName: string;
|
795
|
-
user: string;
|
796
993
|
warehouse: string;
|
797
994
|
outputFormat?: "json" | "csv" | undefined;
|
798
995
|
}, {
|
996
|
+
user: string;
|
799
997
|
query: string;
|
800
998
|
databaseName: string;
|
801
999
|
accountName: string;
|
802
|
-
user: string;
|
803
1000
|
warehouse: string;
|
804
1001
|
outputFormat?: "json" | "csv" | undefined;
|
805
1002
|
}>;
|
@@ -982,6 +1179,50 @@ export declare const googleOauthCreateNewGoogleDocOutputSchema: z.ZodObject<{
|
|
982
1179
|
}>;
|
983
1180
|
export type googleOauthCreateNewGoogleDocOutputType = z.infer<typeof googleOauthCreateNewGoogleDocOutputSchema>;
|
984
1181
|
export type googleOauthCreateNewGoogleDocFunction = ActionFunction<googleOauthCreateNewGoogleDocParamsType, AuthParamsType, googleOauthCreateNewGoogleDocOutputType>;
|
1182
|
+
export declare const googleOauthScheduleCalendarMeetingParamsSchema: z.ZodObject<{
|
1183
|
+
calendarId: z.ZodString;
|
1184
|
+
name: z.ZodString;
|
1185
|
+
start: z.ZodString;
|
1186
|
+
end: z.ZodString;
|
1187
|
+
description: z.ZodOptional<z.ZodString>;
|
1188
|
+
attendees: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1189
|
+
useGoogleMeet: z.ZodOptional<z.ZodBoolean>;
|
1190
|
+
}, "strip", z.ZodTypeAny, {
|
1191
|
+
name: string;
|
1192
|
+
calendarId: string;
|
1193
|
+
start: string;
|
1194
|
+
end: string;
|
1195
|
+
description?: string | undefined;
|
1196
|
+
attendees?: string[] | undefined;
|
1197
|
+
useGoogleMeet?: boolean | undefined;
|
1198
|
+
}, {
|
1199
|
+
name: string;
|
1200
|
+
calendarId: string;
|
1201
|
+
start: string;
|
1202
|
+
end: string;
|
1203
|
+
description?: string | undefined;
|
1204
|
+
attendees?: string[] | undefined;
|
1205
|
+
useGoogleMeet?: boolean | undefined;
|
1206
|
+
}>;
|
1207
|
+
export type googleOauthScheduleCalendarMeetingParamsType = z.infer<typeof googleOauthScheduleCalendarMeetingParamsSchema>;
|
1208
|
+
export declare const googleOauthScheduleCalendarMeetingOutputSchema: z.ZodObject<{
|
1209
|
+
success: z.ZodBoolean;
|
1210
|
+
eventId: z.ZodOptional<z.ZodString>;
|
1211
|
+
eventUrl: z.ZodOptional<z.ZodString>;
|
1212
|
+
error: z.ZodOptional<z.ZodString>;
|
1213
|
+
}, "strip", z.ZodTypeAny, {
|
1214
|
+
success: boolean;
|
1215
|
+
error?: string | undefined;
|
1216
|
+
eventId?: string | undefined;
|
1217
|
+
eventUrl?: string | undefined;
|
1218
|
+
}, {
|
1219
|
+
success: boolean;
|
1220
|
+
error?: string | undefined;
|
1221
|
+
eventId?: string | undefined;
|
1222
|
+
eventUrl?: string | undefined;
|
1223
|
+
}>;
|
1224
|
+
export type googleOauthScheduleCalendarMeetingOutputType = z.infer<typeof googleOauthScheduleCalendarMeetingOutputSchema>;
|
1225
|
+
export type googleOauthScheduleCalendarMeetingFunction = ActionFunction<googleOauthScheduleCalendarMeetingParamsType, AuthParamsType, googleOauthScheduleCalendarMeetingOutputType>;
|
985
1226
|
export declare const finnhubSymbolLookupParamsSchema: z.ZodObject<{
|
986
1227
|
query: z.ZodString;
|
987
1228
|
}, "strip", z.ZodTypeAny, {
|
@@ -1198,3 +1439,414 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
|
|
1198
1439
|
}>;
|
1199
1440
|
export type lookerEnableUserByEmailOutputType = z.infer<typeof lookerEnableUserByEmailOutputSchema>;
|
1200
1441
|
export type lookerEnableUserByEmailFunction = ActionFunction<lookerEnableUserByEmailParamsType, AuthParamsType, lookerEnableUserByEmailOutputType>;
|
1442
|
+
export declare const ashbyCreateNoteParamsSchema: z.ZodObject<{
|
1443
|
+
candidateId: z.ZodString;
|
1444
|
+
note: z.ZodString;
|
1445
|
+
}, "strip", z.ZodTypeAny, {
|
1446
|
+
candidateId: string;
|
1447
|
+
note: string;
|
1448
|
+
}, {
|
1449
|
+
candidateId: string;
|
1450
|
+
note: string;
|
1451
|
+
}>;
|
1452
|
+
export type ashbyCreateNoteParamsType = z.infer<typeof ashbyCreateNoteParamsSchema>;
|
1453
|
+
export declare const ashbyCreateNoteOutputSchema: z.ZodVoid;
|
1454
|
+
export type ashbyCreateNoteOutputType = z.infer<typeof ashbyCreateNoteOutputSchema>;
|
1455
|
+
export type ashbyCreateNoteFunction = ActionFunction<ashbyCreateNoteParamsType, AuthParamsType, ashbyCreateNoteOutputType>;
|
1456
|
+
export declare const ashbyGetCandidateInfoParamsSchema: z.ZodObject<{
|
1457
|
+
candidateId: z.ZodString;
|
1458
|
+
}, "strip", z.ZodTypeAny, {
|
1459
|
+
candidateId: string;
|
1460
|
+
}, {
|
1461
|
+
candidateId: string;
|
1462
|
+
}>;
|
1463
|
+
export type ashbyGetCandidateInfoParamsType = z.infer<typeof ashbyGetCandidateInfoParamsSchema>;
|
1464
|
+
export declare const ashbyGetCandidateInfoOutputSchema: z.ZodObject<{
|
1465
|
+
candidate: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
|
1466
|
+
}, "strip", z.ZodTypeAny, {
|
1467
|
+
candidate: {} & {
|
1468
|
+
[k: string]: any;
|
1469
|
+
};
|
1470
|
+
}, {
|
1471
|
+
candidate: {} & {
|
1472
|
+
[k: string]: any;
|
1473
|
+
};
|
1474
|
+
}>;
|
1475
|
+
export type ashbyGetCandidateInfoOutputType = z.infer<typeof ashbyGetCandidateInfoOutputSchema>;
|
1476
|
+
export type ashbyGetCandidateInfoFunction = ActionFunction<ashbyGetCandidateInfoParamsType, AuthParamsType, ashbyGetCandidateInfoOutputType>;
|
1477
|
+
export declare const ashbyAddCandidateToProjectParamsSchema: z.ZodObject<{
|
1478
|
+
candidateId: z.ZodString;
|
1479
|
+
projectId: z.ZodString;
|
1480
|
+
}, "strip", z.ZodTypeAny, {
|
1481
|
+
candidateId: string;
|
1482
|
+
projectId: string;
|
1483
|
+
}, {
|
1484
|
+
candidateId: string;
|
1485
|
+
projectId: string;
|
1486
|
+
}>;
|
1487
|
+
export type ashbyAddCandidateToProjectParamsType = z.infer<typeof ashbyAddCandidateToProjectParamsSchema>;
|
1488
|
+
export declare const ashbyAddCandidateToProjectOutputSchema: z.ZodVoid;
|
1489
|
+
export type ashbyAddCandidateToProjectOutputType = z.infer<typeof ashbyAddCandidateToProjectOutputSchema>;
|
1490
|
+
export type ashbyAddCandidateToProjectFunction = ActionFunction<ashbyAddCandidateToProjectParamsType, AuthParamsType, ashbyAddCandidateToProjectOutputType>;
|
1491
|
+
export declare const ashbyListCandidatesParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
1492
|
+
export type ashbyListCandidatesParamsType = z.infer<typeof ashbyListCandidatesParamsSchema>;
|
1493
|
+
export declare const ashbyListCandidatesOutputSchema: z.ZodObject<{
|
1494
|
+
candidates: z.ZodArray<z.ZodAny, "many">;
|
1495
|
+
}, "strip", z.ZodTypeAny, {
|
1496
|
+
candidates: any[];
|
1497
|
+
}, {
|
1498
|
+
candidates: any[];
|
1499
|
+
}>;
|
1500
|
+
export type ashbyListCandidatesOutputType = z.infer<typeof ashbyListCandidatesOutputSchema>;
|
1501
|
+
export type ashbyListCandidatesFunction = ActionFunction<ashbyListCandidatesParamsType, AuthParamsType, ashbyListCandidatesOutputType>;
|
1502
|
+
export declare const ashbySearchCandidatesParamsSchema: z.ZodObject<{
|
1503
|
+
email: z.ZodOptional<z.ZodString>;
|
1504
|
+
name: z.ZodOptional<z.ZodString>;
|
1505
|
+
}, "strip", z.ZodTypeAny, {
|
1506
|
+
name?: string | undefined;
|
1507
|
+
email?: string | undefined;
|
1508
|
+
}, {
|
1509
|
+
name?: string | undefined;
|
1510
|
+
email?: string | undefined;
|
1511
|
+
}>;
|
1512
|
+
export type ashbySearchCandidatesParamsType = z.infer<typeof ashbySearchCandidatesParamsSchema>;
|
1513
|
+
export declare const ashbySearchCandidatesOutputSchema: z.ZodObject<{
|
1514
|
+
candidates: z.ZodArray<z.ZodAny, "many">;
|
1515
|
+
}, "strip", z.ZodTypeAny, {
|
1516
|
+
candidates: any[];
|
1517
|
+
}, {
|
1518
|
+
candidates: any[];
|
1519
|
+
}>;
|
1520
|
+
export type ashbySearchCandidatesOutputType = z.infer<typeof ashbySearchCandidatesOutputSchema>;
|
1521
|
+
export type ashbySearchCandidatesFunction = ActionFunction<ashbySearchCandidatesParamsType, AuthParamsType, ashbySearchCandidatesOutputType>;
|
1522
|
+
export declare const ashbyListCandidateNotesParamsSchema: z.ZodObject<{
|
1523
|
+
candidateId: z.ZodString;
|
1524
|
+
}, "strip", z.ZodTypeAny, {
|
1525
|
+
candidateId: string;
|
1526
|
+
}, {
|
1527
|
+
candidateId: string;
|
1528
|
+
}>;
|
1529
|
+
export type ashbyListCandidateNotesParamsType = z.infer<typeof ashbyListCandidateNotesParamsSchema>;
|
1530
|
+
export declare const ashbyListCandidateNotesOutputSchema: z.ZodObject<{
|
1531
|
+
notes: z.ZodArray<z.ZodAny, "many">;
|
1532
|
+
}, "strip", z.ZodTypeAny, {
|
1533
|
+
notes: any[];
|
1534
|
+
}, {
|
1535
|
+
notes: any[];
|
1536
|
+
}>;
|
1537
|
+
export type ashbyListCandidateNotesOutputType = z.infer<typeof ashbyListCandidateNotesOutputSchema>;
|
1538
|
+
export type ashbyListCandidateNotesFunction = ActionFunction<ashbyListCandidateNotesParamsType, AuthParamsType, ashbyListCandidateNotesOutputType>;
|
1539
|
+
export declare const ashbyCreateCandidateParamsSchema: z.ZodObject<{
|
1540
|
+
name: z.ZodString;
|
1541
|
+
email: z.ZodOptional<z.ZodString>;
|
1542
|
+
phoneNumber: z.ZodOptional<z.ZodString>;
|
1543
|
+
linkedInUrl: z.ZodOptional<z.ZodString>;
|
1544
|
+
githubUrl: z.ZodOptional<z.ZodString>;
|
1545
|
+
website: z.ZodOptional<z.ZodString>;
|
1546
|
+
alternateEmailAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1547
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
1548
|
+
creditedToUserId: z.ZodOptional<z.ZodString>;
|
1549
|
+
location: z.ZodOptional<z.ZodObject<{
|
1550
|
+
city: z.ZodOptional<z.ZodString>;
|
1551
|
+
region: z.ZodOptional<z.ZodString>;
|
1552
|
+
country: z.ZodOptional<z.ZodString>;
|
1553
|
+
}, "strip", z.ZodTypeAny, {
|
1554
|
+
city?: string | undefined;
|
1555
|
+
region?: string | undefined;
|
1556
|
+
country?: string | undefined;
|
1557
|
+
}, {
|
1558
|
+
city?: string | undefined;
|
1559
|
+
region?: string | undefined;
|
1560
|
+
country?: string | undefined;
|
1561
|
+
}>>;
|
1562
|
+
}, "strip", z.ZodTypeAny, {
|
1563
|
+
name: string;
|
1564
|
+
location?: {
|
1565
|
+
city?: string | undefined;
|
1566
|
+
region?: string | undefined;
|
1567
|
+
country?: string | undefined;
|
1568
|
+
} | undefined;
|
1569
|
+
email?: string | undefined;
|
1570
|
+
phoneNumber?: string | undefined;
|
1571
|
+
linkedInUrl?: string | undefined;
|
1572
|
+
githubUrl?: string | undefined;
|
1573
|
+
website?: string | undefined;
|
1574
|
+
alternateEmailAddresses?: string[] | undefined;
|
1575
|
+
sourceId?: string | undefined;
|
1576
|
+
creditedToUserId?: string | undefined;
|
1577
|
+
}, {
|
1578
|
+
name: string;
|
1579
|
+
location?: {
|
1580
|
+
city?: string | undefined;
|
1581
|
+
region?: string | undefined;
|
1582
|
+
country?: string | undefined;
|
1583
|
+
} | undefined;
|
1584
|
+
email?: string | undefined;
|
1585
|
+
phoneNumber?: string | undefined;
|
1586
|
+
linkedInUrl?: string | undefined;
|
1587
|
+
githubUrl?: string | undefined;
|
1588
|
+
website?: string | undefined;
|
1589
|
+
alternateEmailAddresses?: string[] | undefined;
|
1590
|
+
sourceId?: string | undefined;
|
1591
|
+
creditedToUserId?: string | undefined;
|
1592
|
+
}>;
|
1593
|
+
export type ashbyCreateCandidateParamsType = z.infer<typeof ashbyCreateCandidateParamsSchema>;
|
1594
|
+
export declare const ashbyCreateCandidateOutputSchema: z.ZodVoid;
|
1595
|
+
export type ashbyCreateCandidateOutputType = z.infer<typeof ashbyCreateCandidateOutputSchema>;
|
1596
|
+
export type ashbyCreateCandidateFunction = ActionFunction<ashbyCreateCandidateParamsType, AuthParamsType, ashbyCreateCandidateOutputType>;
|
1597
|
+
export declare const ashbyUpdateCandidateParamsSchema: z.ZodObject<{
|
1598
|
+
candidateId: z.ZodString;
|
1599
|
+
name: z.ZodOptional<z.ZodString>;
|
1600
|
+
email: z.ZodOptional<z.ZodString>;
|
1601
|
+
phoneNumber: z.ZodOptional<z.ZodString>;
|
1602
|
+
linkedInUrl: z.ZodOptional<z.ZodString>;
|
1603
|
+
githubUrl: z.ZodOptional<z.ZodString>;
|
1604
|
+
websiteUrl: z.ZodOptional<z.ZodString>;
|
1605
|
+
alternateEmail: z.ZodOptional<z.ZodString>;
|
1606
|
+
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1607
|
+
type: z.ZodOptional<z.ZodString>;
|
1608
|
+
url: z.ZodOptional<z.ZodString>;
|
1609
|
+
}, "strip", z.ZodTypeAny, {
|
1610
|
+
type?: string | undefined;
|
1611
|
+
url?: string | undefined;
|
1612
|
+
}, {
|
1613
|
+
type?: string | undefined;
|
1614
|
+
url?: string | undefined;
|
1615
|
+
}>, "many">>;
|
1616
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
1617
|
+
creditedToUserId: z.ZodOptional<z.ZodString>;
|
1618
|
+
location: z.ZodOptional<z.ZodObject<{
|
1619
|
+
city: z.ZodOptional<z.ZodString>;
|
1620
|
+
region: z.ZodOptional<z.ZodString>;
|
1621
|
+
country: z.ZodOptional<z.ZodString>;
|
1622
|
+
}, "strip", z.ZodTypeAny, {
|
1623
|
+
city?: string | undefined;
|
1624
|
+
region?: string | undefined;
|
1625
|
+
country?: string | undefined;
|
1626
|
+
}, {
|
1627
|
+
city?: string | undefined;
|
1628
|
+
region?: string | undefined;
|
1629
|
+
country?: string | undefined;
|
1630
|
+
}>>;
|
1631
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
1632
|
+
sendNotifications: z.ZodOptional<z.ZodBoolean>;
|
1633
|
+
}, "strip", z.ZodTypeAny, {
|
1634
|
+
candidateId: string;
|
1635
|
+
name?: string | undefined;
|
1636
|
+
location?: {
|
1637
|
+
city?: string | undefined;
|
1638
|
+
region?: string | undefined;
|
1639
|
+
country?: string | undefined;
|
1640
|
+
} | undefined;
|
1641
|
+
email?: string | undefined;
|
1642
|
+
phoneNumber?: string | undefined;
|
1643
|
+
linkedInUrl?: string | undefined;
|
1644
|
+
githubUrl?: string | undefined;
|
1645
|
+
sourceId?: string | undefined;
|
1646
|
+
creditedToUserId?: string | undefined;
|
1647
|
+
websiteUrl?: string | undefined;
|
1648
|
+
alternateEmail?: string | undefined;
|
1649
|
+
socialLinks?: {
|
1650
|
+
type?: string | undefined;
|
1651
|
+
url?: string | undefined;
|
1652
|
+
}[] | undefined;
|
1653
|
+
createdAt?: string | undefined;
|
1654
|
+
sendNotifications?: boolean | undefined;
|
1655
|
+
}, {
|
1656
|
+
candidateId: string;
|
1657
|
+
name?: string | undefined;
|
1658
|
+
location?: {
|
1659
|
+
city?: string | undefined;
|
1660
|
+
region?: string | undefined;
|
1661
|
+
country?: string | undefined;
|
1662
|
+
} | undefined;
|
1663
|
+
email?: string | undefined;
|
1664
|
+
phoneNumber?: string | undefined;
|
1665
|
+
linkedInUrl?: string | undefined;
|
1666
|
+
githubUrl?: string | undefined;
|
1667
|
+
sourceId?: string | undefined;
|
1668
|
+
creditedToUserId?: string | undefined;
|
1669
|
+
websiteUrl?: string | undefined;
|
1670
|
+
alternateEmail?: string | undefined;
|
1671
|
+
socialLinks?: {
|
1672
|
+
type?: string | undefined;
|
1673
|
+
url?: string | undefined;
|
1674
|
+
}[] | undefined;
|
1675
|
+
createdAt?: string | undefined;
|
1676
|
+
sendNotifications?: boolean | undefined;
|
1677
|
+
}>;
|
1678
|
+
export type ashbyUpdateCandidateParamsType = z.infer<typeof ashbyUpdateCandidateParamsSchema>;
|
1679
|
+
export declare const ashbyUpdateCandidateOutputSchema: z.ZodVoid;
|
1680
|
+
export type ashbyUpdateCandidateOutputType = z.infer<typeof ashbyUpdateCandidateOutputSchema>;
|
1681
|
+
export type ashbyUpdateCandidateFunction = ActionFunction<ashbyUpdateCandidateParamsType, AuthParamsType, ashbyUpdateCandidateOutputType>;
|
1682
|
+
export declare const salesforceUpdateRecordParamsSchema: z.ZodObject<{
|
1683
|
+
objectType: z.ZodString;
|
1684
|
+
recordId: z.ZodString;
|
1685
|
+
fieldsToUpdate: z.ZodRecord<z.ZodString, z.ZodString>;
|
1686
|
+
}, "strip", z.ZodTypeAny, {
|
1687
|
+
objectType: string;
|
1688
|
+
recordId: string;
|
1689
|
+
fieldsToUpdate: Record<string, string>;
|
1690
|
+
}, {
|
1691
|
+
objectType: string;
|
1692
|
+
recordId: string;
|
1693
|
+
fieldsToUpdate: Record<string, string>;
|
1694
|
+
}>;
|
1695
|
+
export type salesforceUpdateRecordParamsType = z.infer<typeof salesforceUpdateRecordParamsSchema>;
|
1696
|
+
export declare const salesforceUpdateRecordOutputSchema: z.ZodObject<{
|
1697
|
+
success: z.ZodBoolean;
|
1698
|
+
error: z.ZodOptional<z.ZodString>;
|
1699
|
+
}, "strip", z.ZodTypeAny, {
|
1700
|
+
success: boolean;
|
1701
|
+
error?: string | undefined;
|
1702
|
+
}, {
|
1703
|
+
success: boolean;
|
1704
|
+
error?: string | undefined;
|
1705
|
+
}>;
|
1706
|
+
export type salesforceUpdateRecordOutputType = z.infer<typeof salesforceUpdateRecordOutputSchema>;
|
1707
|
+
export type salesforceUpdateRecordFunction = ActionFunction<salesforceUpdateRecordParamsType, AuthParamsType, salesforceUpdateRecordOutputType>;
|
1708
|
+
export declare const salesforceCreateCaseParamsSchema: z.ZodObject<{
|
1709
|
+
subject: z.ZodString;
|
1710
|
+
description: z.ZodString;
|
1711
|
+
priority: z.ZodString;
|
1712
|
+
origin: z.ZodString;
|
1713
|
+
customFields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
1714
|
+
}, "strip", z.ZodTypeAny, {
|
1715
|
+
description: string;
|
1716
|
+
subject: string;
|
1717
|
+
priority: string;
|
1718
|
+
origin: string;
|
1719
|
+
customFields?: Record<string, string> | undefined;
|
1720
|
+
}, {
|
1721
|
+
description: string;
|
1722
|
+
subject: string;
|
1723
|
+
priority: string;
|
1724
|
+
origin: string;
|
1725
|
+
customFields?: Record<string, string> | undefined;
|
1726
|
+
}>;
|
1727
|
+
export type salesforceCreateCaseParamsType = z.infer<typeof salesforceCreateCaseParamsSchema>;
|
1728
|
+
export declare const salesforceCreateCaseOutputSchema: z.ZodObject<{
|
1729
|
+
success: z.ZodBoolean;
|
1730
|
+
caseId: z.ZodOptional<z.ZodString>;
|
1731
|
+
error: z.ZodOptional<z.ZodString>;
|
1732
|
+
}, "strip", z.ZodTypeAny, {
|
1733
|
+
success: boolean;
|
1734
|
+
error?: string | undefined;
|
1735
|
+
caseId?: string | undefined;
|
1736
|
+
}, {
|
1737
|
+
success: boolean;
|
1738
|
+
error?: string | undefined;
|
1739
|
+
caseId?: string | undefined;
|
1740
|
+
}>;
|
1741
|
+
export type salesforceCreateCaseOutputType = z.infer<typeof salesforceCreateCaseOutputSchema>;
|
1742
|
+
export type salesforceCreateCaseFunction = ActionFunction<salesforceCreateCaseParamsType, AuthParamsType, salesforceCreateCaseOutputType>;
|
1743
|
+
export declare const salesforceGenerateSalesReportParamsSchema: z.ZodObject<{
|
1744
|
+
startDate: z.ZodString;
|
1745
|
+
endDate: z.ZodString;
|
1746
|
+
filters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
1747
|
+
}, "strip", z.ZodTypeAny, {
|
1748
|
+
startDate: string;
|
1749
|
+
endDate: string;
|
1750
|
+
filters?: Record<string, string> | undefined;
|
1751
|
+
}, {
|
1752
|
+
startDate: string;
|
1753
|
+
endDate: string;
|
1754
|
+
filters?: Record<string, string> | undefined;
|
1755
|
+
}>;
|
1756
|
+
export type salesforceGenerateSalesReportParamsType = z.infer<typeof salesforceGenerateSalesReportParamsSchema>;
|
1757
|
+
export declare const salesforceGenerateSalesReportOutputSchema: z.ZodObject<{
|
1758
|
+
success: z.ZodBoolean;
|
1759
|
+
reportData: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
1760
|
+
error: z.ZodOptional<z.ZodString>;
|
1761
|
+
}, "strip", z.ZodTypeAny, {
|
1762
|
+
success: boolean;
|
1763
|
+
error?: string | undefined;
|
1764
|
+
reportData?: Record<string, string>[] | undefined;
|
1765
|
+
}, {
|
1766
|
+
success: boolean;
|
1767
|
+
error?: string | undefined;
|
1768
|
+
reportData?: Record<string, string>[] | undefined;
|
1769
|
+
}>;
|
1770
|
+
export type salesforceGenerateSalesReportOutputType = z.infer<typeof salesforceGenerateSalesReportOutputSchema>;
|
1771
|
+
export type salesforceGenerateSalesReportFunction = ActionFunction<salesforceGenerateSalesReportParamsType, AuthParamsType, salesforceGenerateSalesReportOutputType>;
|
1772
|
+
export declare const salesforceGetRecordParamsSchema: z.ZodObject<{
|
1773
|
+
objectType: z.ZodString;
|
1774
|
+
recordId: z.ZodString;
|
1775
|
+
}, "strip", z.ZodTypeAny, {
|
1776
|
+
objectType: string;
|
1777
|
+
recordId: string;
|
1778
|
+
}, {
|
1779
|
+
objectType: string;
|
1780
|
+
recordId: string;
|
1781
|
+
}>;
|
1782
|
+
export type salesforceGetRecordParamsType = z.infer<typeof salesforceGetRecordParamsSchema>;
|
1783
|
+
export declare const salesforceGetRecordOutputSchema: z.ZodObject<{
|
1784
|
+
success: z.ZodBoolean;
|
1785
|
+
record: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
1786
|
+
error: z.ZodOptional<z.ZodString>;
|
1787
|
+
}, "strip", z.ZodTypeAny, {
|
1788
|
+
success: boolean;
|
1789
|
+
error?: string | undefined;
|
1790
|
+
record?: Record<string, string> | undefined;
|
1791
|
+
}, {
|
1792
|
+
success: boolean;
|
1793
|
+
error?: string | undefined;
|
1794
|
+
record?: Record<string, string> | undefined;
|
1795
|
+
}>;
|
1796
|
+
export type salesforceGetRecordOutputType = z.infer<typeof salesforceGetRecordOutputSchema>;
|
1797
|
+
export type salesforceGetRecordFunction = ActionFunction<salesforceGetRecordParamsType, AuthParamsType, salesforceGetRecordOutputType>;
|
1798
|
+
export declare const microsoftMessageTeamsChatParamsSchema: z.ZodObject<{
|
1799
|
+
chatId: z.ZodString;
|
1800
|
+
message: z.ZodString;
|
1801
|
+
}, "strip", z.ZodTypeAny, {
|
1802
|
+
message: string;
|
1803
|
+
chatId: string;
|
1804
|
+
}, {
|
1805
|
+
message: string;
|
1806
|
+
chatId: string;
|
1807
|
+
}>;
|
1808
|
+
export type microsoftMessageTeamsChatParamsType = z.infer<typeof microsoftMessageTeamsChatParamsSchema>;
|
1809
|
+
export declare const microsoftMessageTeamsChatOutputSchema: z.ZodObject<{
|
1810
|
+
success: z.ZodBoolean;
|
1811
|
+
error: z.ZodOptional<z.ZodString>;
|
1812
|
+
messageId: z.ZodOptional<z.ZodString>;
|
1813
|
+
}, "strip", z.ZodTypeAny, {
|
1814
|
+
success: boolean;
|
1815
|
+
error?: string | undefined;
|
1816
|
+
messageId?: string | undefined;
|
1817
|
+
}, {
|
1818
|
+
success: boolean;
|
1819
|
+
error?: string | undefined;
|
1820
|
+
messageId?: string | undefined;
|
1821
|
+
}>;
|
1822
|
+
export type microsoftMessageTeamsChatOutputType = z.infer<typeof microsoftMessageTeamsChatOutputSchema>;
|
1823
|
+
export type microsoftMessageTeamsChatFunction = ActionFunction<microsoftMessageTeamsChatParamsType, AuthParamsType, microsoftMessageTeamsChatOutputType>;
|
1824
|
+
export declare const microsoftMessageTeamsChannelParamsSchema: z.ZodObject<{
|
1825
|
+
teamId: z.ZodString;
|
1826
|
+
channelId: z.ZodString;
|
1827
|
+
message: z.ZodString;
|
1828
|
+
}, "strip", z.ZodTypeAny, {
|
1829
|
+
message: string;
|
1830
|
+
teamId: string;
|
1831
|
+
channelId: string;
|
1832
|
+
}, {
|
1833
|
+
message: string;
|
1834
|
+
teamId: string;
|
1835
|
+
channelId: string;
|
1836
|
+
}>;
|
1837
|
+
export type microsoftMessageTeamsChannelParamsType = z.infer<typeof microsoftMessageTeamsChannelParamsSchema>;
|
1838
|
+
export declare const microsoftMessageTeamsChannelOutputSchema: z.ZodObject<{
|
1839
|
+
success: z.ZodBoolean;
|
1840
|
+
error: z.ZodOptional<z.ZodString>;
|
1841
|
+
messageId: z.ZodOptional<z.ZodString>;
|
1842
|
+
}, "strip", z.ZodTypeAny, {
|
1843
|
+
success: boolean;
|
1844
|
+
error?: string | undefined;
|
1845
|
+
messageId?: string | undefined;
|
1846
|
+
}, {
|
1847
|
+
success: boolean;
|
1848
|
+
error?: string | undefined;
|
1849
|
+
messageId?: string | undefined;
|
1850
|
+
}>;
|
1851
|
+
export type microsoftMessageTeamsChannelOutputType = z.infer<typeof microsoftMessageTeamsChannelOutputSchema>;
|
1852
|
+
export type microsoftMessageTeamsChannelFunction = ActionFunction<microsoftMessageTeamsChannelParamsType, AuthParamsType, microsoftMessageTeamsChannelOutputType>;
|