@credal/actions 0.2.177 → 0.2.181
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/README.md +29 -0
- package/dist/actions/actionMapper.js +9 -9
- package/dist/actions/autogen/definitions.d.ts +5 -0
- package/dist/actions/autogen/definitions.js +132 -0
- package/dist/actions/autogen/templates.d.ts +1 -3
- package/dist/actions/autogen/templates.js +140 -330
- package/dist/actions/autogen/types.d.ts +100 -341
- package/dist/actions/autogen/types.js +88 -134
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/invokeMapper.d.ts +9 -0
- package/dist/actions/invokeMapper.js +33 -0
- package/dist/actions/providers/confluence/updatePage.js +9 -13
- package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.d.ts +7 -0
- package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.js +61 -0
- package/dist/actions/providers/google-oauth/getSheetValue.d.ts +3 -0
- package/dist/actions/providers/google-oauth/getSheetValue.js +50 -0
- package/dist/actions/providers/google-oauth/getSheetValues.d.ts +3 -0
- package/dist/actions/providers/google-oauth/getSheetValues.js +50 -0
- package/dist/actions/providers/google-oauth/listCalendarEvents.js +7 -20
- package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +3 -0
- package/dist/actions/providers/google-oauth/listGmailThreads.js +98 -0
- package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +3 -0
- package/dist/actions/providers/google-oauth/searchGmailMessages.js +91 -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/createTicket.d.ts +3 -0
- package/dist/actions/providers/jira/createTicket.js +34 -0
- package/dist/actions/providers/salesforce/createRecord.js +2 -2
- package/dist/actions/providers/salesforce/getRecord.js +2 -2
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
- package/dist/actions/providers/salesforce/updateRecord.js +2 -2
- package/dist/actions/providers/slack/listConversations.d.ts +1 -1
- 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 +1 -1
|
@@ -1400,116 +1400,6 @@ export declare const jiraCreateJiraTicketOutputSchema: z.ZodObject<{
|
|
|
1400
1400
|
}>;
|
|
1401
1401
|
export type jiraCreateJiraTicketOutputType = z.infer<typeof jiraCreateJiraTicketOutputSchema>;
|
|
1402
1402
|
export type jiraCreateJiraTicketFunction = ActionFunction<jiraCreateJiraTicketParamsType, AuthParamsType, jiraCreateJiraTicketOutputType>;
|
|
1403
|
-
export declare const jiraGetServiceDesksParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
1404
|
-
export type jiraGetServiceDesksParamsType = z.infer<typeof jiraGetServiceDesksParamsSchema>;
|
|
1405
|
-
export declare const jiraGetServiceDesksOutputSchema: z.ZodObject<{
|
|
1406
|
-
success: z.ZodBoolean;
|
|
1407
|
-
error: z.ZodOptional<z.ZodString>;
|
|
1408
|
-
serviceDesks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1409
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1410
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
1411
|
-
projectKey: z.ZodOptional<z.ZodString>;
|
|
1412
|
-
projectName: z.ZodOptional<z.ZodString>;
|
|
1413
|
-
requestTypes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1414
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1415
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1416
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1417
|
-
issueTypeId: z.ZodOptional<z.ZodString>;
|
|
1418
|
-
portalId: z.ZodOptional<z.ZodString>;
|
|
1419
|
-
helpText: z.ZodOptional<z.ZodString>;
|
|
1420
|
-
serviceDeskId: z.ZodOptional<z.ZodString>;
|
|
1421
|
-
canCreateRequest: z.ZodOptional<z.ZodBoolean>;
|
|
1422
|
-
}, "strip", z.ZodTypeAny, {
|
|
1423
|
-
description?: string | undefined;
|
|
1424
|
-
name?: string | undefined;
|
|
1425
|
-
id?: string | undefined;
|
|
1426
|
-
serviceDeskId?: string | undefined;
|
|
1427
|
-
issueTypeId?: string | undefined;
|
|
1428
|
-
portalId?: string | undefined;
|
|
1429
|
-
helpText?: string | undefined;
|
|
1430
|
-
canCreateRequest?: boolean | undefined;
|
|
1431
|
-
}, {
|
|
1432
|
-
description?: string | undefined;
|
|
1433
|
-
name?: string | undefined;
|
|
1434
|
-
id?: string | undefined;
|
|
1435
|
-
serviceDeskId?: string | undefined;
|
|
1436
|
-
issueTypeId?: string | undefined;
|
|
1437
|
-
portalId?: string | undefined;
|
|
1438
|
-
helpText?: string | undefined;
|
|
1439
|
-
canCreateRequest?: boolean | undefined;
|
|
1440
|
-
}>, "many">>;
|
|
1441
|
-
}, "strip", z.ZodTypeAny, {
|
|
1442
|
-
projectId?: string | undefined;
|
|
1443
|
-
id?: string | undefined;
|
|
1444
|
-
projectKey?: string | undefined;
|
|
1445
|
-
projectName?: string | undefined;
|
|
1446
|
-
requestTypes?: {
|
|
1447
|
-
description?: string | undefined;
|
|
1448
|
-
name?: string | undefined;
|
|
1449
|
-
id?: string | undefined;
|
|
1450
|
-
serviceDeskId?: string | undefined;
|
|
1451
|
-
issueTypeId?: string | undefined;
|
|
1452
|
-
portalId?: string | undefined;
|
|
1453
|
-
helpText?: string | undefined;
|
|
1454
|
-
canCreateRequest?: boolean | undefined;
|
|
1455
|
-
}[] | undefined;
|
|
1456
|
-
}, {
|
|
1457
|
-
projectId?: string | undefined;
|
|
1458
|
-
id?: string | undefined;
|
|
1459
|
-
projectKey?: string | undefined;
|
|
1460
|
-
projectName?: string | undefined;
|
|
1461
|
-
requestTypes?: {
|
|
1462
|
-
description?: string | undefined;
|
|
1463
|
-
name?: string | undefined;
|
|
1464
|
-
id?: string | undefined;
|
|
1465
|
-
serviceDeskId?: string | undefined;
|
|
1466
|
-
issueTypeId?: string | undefined;
|
|
1467
|
-
portalId?: string | undefined;
|
|
1468
|
-
helpText?: string | undefined;
|
|
1469
|
-
canCreateRequest?: boolean | undefined;
|
|
1470
|
-
}[] | undefined;
|
|
1471
|
-
}>, "many">>;
|
|
1472
|
-
}, "strip", z.ZodTypeAny, {
|
|
1473
|
-
success: boolean;
|
|
1474
|
-
error?: string | undefined;
|
|
1475
|
-
serviceDesks?: {
|
|
1476
|
-
projectId?: string | undefined;
|
|
1477
|
-
id?: string | undefined;
|
|
1478
|
-
projectKey?: string | undefined;
|
|
1479
|
-
projectName?: string | undefined;
|
|
1480
|
-
requestTypes?: {
|
|
1481
|
-
description?: string | undefined;
|
|
1482
|
-
name?: string | undefined;
|
|
1483
|
-
id?: string | undefined;
|
|
1484
|
-
serviceDeskId?: string | undefined;
|
|
1485
|
-
issueTypeId?: string | undefined;
|
|
1486
|
-
portalId?: string | undefined;
|
|
1487
|
-
helpText?: string | undefined;
|
|
1488
|
-
canCreateRequest?: boolean | undefined;
|
|
1489
|
-
}[] | undefined;
|
|
1490
|
-
}[] | undefined;
|
|
1491
|
-
}, {
|
|
1492
|
-
success: boolean;
|
|
1493
|
-
error?: string | undefined;
|
|
1494
|
-
serviceDesks?: {
|
|
1495
|
-
projectId?: string | undefined;
|
|
1496
|
-
id?: string | undefined;
|
|
1497
|
-
projectKey?: string | undefined;
|
|
1498
|
-
projectName?: string | undefined;
|
|
1499
|
-
requestTypes?: {
|
|
1500
|
-
description?: string | undefined;
|
|
1501
|
-
name?: string | undefined;
|
|
1502
|
-
id?: string | undefined;
|
|
1503
|
-
serviceDeskId?: string | undefined;
|
|
1504
|
-
issueTypeId?: string | undefined;
|
|
1505
|
-
portalId?: string | undefined;
|
|
1506
|
-
helpText?: string | undefined;
|
|
1507
|
-
canCreateRequest?: boolean | undefined;
|
|
1508
|
-
}[] | undefined;
|
|
1509
|
-
}[] | undefined;
|
|
1510
|
-
}>;
|
|
1511
|
-
export type jiraGetServiceDesksOutputType = z.infer<typeof jiraGetServiceDesksOutputSchema>;
|
|
1512
|
-
export type jiraGetServiceDesksFunction = ActionFunction<jiraGetServiceDesksParamsType, AuthParamsType, jiraGetServiceDesksOutputType>;
|
|
1513
1403
|
export declare const jiraCreateServiceDeskRequestParamsSchema: z.ZodObject<{
|
|
1514
1404
|
serviceDeskId: z.ZodString;
|
|
1515
1405
|
requestTypeId: z.ZodString;
|
|
@@ -2191,116 +2081,6 @@ export declare const jiraOrgCreateJiraTicketOutputSchema: z.ZodObject<{
|
|
|
2191
2081
|
}>;
|
|
2192
2082
|
export type jiraOrgCreateJiraTicketOutputType = z.infer<typeof jiraOrgCreateJiraTicketOutputSchema>;
|
|
2193
2083
|
export type jiraOrgCreateJiraTicketFunction = ActionFunction<jiraOrgCreateJiraTicketParamsType, AuthParamsType, jiraOrgCreateJiraTicketOutputType>;
|
|
2194
|
-
export declare const jiraOrgGetServiceDesksParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2195
|
-
export type jiraOrgGetServiceDesksParamsType = z.infer<typeof jiraOrgGetServiceDesksParamsSchema>;
|
|
2196
|
-
export declare const jiraOrgGetServiceDesksOutputSchema: z.ZodObject<{
|
|
2197
|
-
success: z.ZodBoolean;
|
|
2198
|
-
error: z.ZodOptional<z.ZodString>;
|
|
2199
|
-
serviceDesks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2200
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2201
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
2202
|
-
projectKey: z.ZodOptional<z.ZodString>;
|
|
2203
|
-
projectName: z.ZodOptional<z.ZodString>;
|
|
2204
|
-
requestTypes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2205
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2206
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2207
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2208
|
-
issueTypeId: z.ZodOptional<z.ZodString>;
|
|
2209
|
-
portalId: z.ZodOptional<z.ZodString>;
|
|
2210
|
-
helpText: z.ZodOptional<z.ZodString>;
|
|
2211
|
-
serviceDeskId: z.ZodOptional<z.ZodString>;
|
|
2212
|
-
canCreateRequest: z.ZodOptional<z.ZodBoolean>;
|
|
2213
|
-
}, "strip", z.ZodTypeAny, {
|
|
2214
|
-
description?: string | undefined;
|
|
2215
|
-
name?: string | undefined;
|
|
2216
|
-
id?: string | undefined;
|
|
2217
|
-
serviceDeskId?: string | undefined;
|
|
2218
|
-
issueTypeId?: string | undefined;
|
|
2219
|
-
portalId?: string | undefined;
|
|
2220
|
-
helpText?: string | undefined;
|
|
2221
|
-
canCreateRequest?: boolean | undefined;
|
|
2222
|
-
}, {
|
|
2223
|
-
description?: string | undefined;
|
|
2224
|
-
name?: string | undefined;
|
|
2225
|
-
id?: string | undefined;
|
|
2226
|
-
serviceDeskId?: string | undefined;
|
|
2227
|
-
issueTypeId?: string | undefined;
|
|
2228
|
-
portalId?: string | undefined;
|
|
2229
|
-
helpText?: string | undefined;
|
|
2230
|
-
canCreateRequest?: boolean | undefined;
|
|
2231
|
-
}>, "many">>;
|
|
2232
|
-
}, "strip", z.ZodTypeAny, {
|
|
2233
|
-
projectId?: string | undefined;
|
|
2234
|
-
id?: string | undefined;
|
|
2235
|
-
projectKey?: string | undefined;
|
|
2236
|
-
projectName?: string | undefined;
|
|
2237
|
-
requestTypes?: {
|
|
2238
|
-
description?: string | undefined;
|
|
2239
|
-
name?: string | undefined;
|
|
2240
|
-
id?: string | undefined;
|
|
2241
|
-
serviceDeskId?: string | undefined;
|
|
2242
|
-
issueTypeId?: string | undefined;
|
|
2243
|
-
portalId?: string | undefined;
|
|
2244
|
-
helpText?: string | undefined;
|
|
2245
|
-
canCreateRequest?: boolean | undefined;
|
|
2246
|
-
}[] | undefined;
|
|
2247
|
-
}, {
|
|
2248
|
-
projectId?: string | undefined;
|
|
2249
|
-
id?: string | undefined;
|
|
2250
|
-
projectKey?: string | undefined;
|
|
2251
|
-
projectName?: string | undefined;
|
|
2252
|
-
requestTypes?: {
|
|
2253
|
-
description?: string | undefined;
|
|
2254
|
-
name?: string | undefined;
|
|
2255
|
-
id?: string | undefined;
|
|
2256
|
-
serviceDeskId?: string | undefined;
|
|
2257
|
-
issueTypeId?: string | undefined;
|
|
2258
|
-
portalId?: string | undefined;
|
|
2259
|
-
helpText?: string | undefined;
|
|
2260
|
-
canCreateRequest?: boolean | undefined;
|
|
2261
|
-
}[] | undefined;
|
|
2262
|
-
}>, "many">>;
|
|
2263
|
-
}, "strip", z.ZodTypeAny, {
|
|
2264
|
-
success: boolean;
|
|
2265
|
-
error?: string | undefined;
|
|
2266
|
-
serviceDesks?: {
|
|
2267
|
-
projectId?: string | undefined;
|
|
2268
|
-
id?: string | undefined;
|
|
2269
|
-
projectKey?: string | undefined;
|
|
2270
|
-
projectName?: string | undefined;
|
|
2271
|
-
requestTypes?: {
|
|
2272
|
-
description?: string | undefined;
|
|
2273
|
-
name?: string | undefined;
|
|
2274
|
-
id?: string | undefined;
|
|
2275
|
-
serviceDeskId?: string | undefined;
|
|
2276
|
-
issueTypeId?: string | undefined;
|
|
2277
|
-
portalId?: string | undefined;
|
|
2278
|
-
helpText?: string | undefined;
|
|
2279
|
-
canCreateRequest?: boolean | undefined;
|
|
2280
|
-
}[] | undefined;
|
|
2281
|
-
}[] | undefined;
|
|
2282
|
-
}, {
|
|
2283
|
-
success: boolean;
|
|
2284
|
-
error?: string | undefined;
|
|
2285
|
-
serviceDesks?: {
|
|
2286
|
-
projectId?: string | undefined;
|
|
2287
|
-
id?: string | undefined;
|
|
2288
|
-
projectKey?: string | undefined;
|
|
2289
|
-
projectName?: string | undefined;
|
|
2290
|
-
requestTypes?: {
|
|
2291
|
-
description?: string | undefined;
|
|
2292
|
-
name?: string | undefined;
|
|
2293
|
-
id?: string | undefined;
|
|
2294
|
-
serviceDeskId?: string | undefined;
|
|
2295
|
-
issueTypeId?: string | undefined;
|
|
2296
|
-
portalId?: string | undefined;
|
|
2297
|
-
helpText?: string | undefined;
|
|
2298
|
-
canCreateRequest?: boolean | undefined;
|
|
2299
|
-
}[] | undefined;
|
|
2300
|
-
}[] | undefined;
|
|
2301
|
-
}>;
|
|
2302
|
-
export type jiraOrgGetServiceDesksOutputType = z.infer<typeof jiraOrgGetServiceDesksOutputSchema>;
|
|
2303
|
-
export type jiraOrgGetServiceDesksFunction = ActionFunction<jiraOrgGetServiceDesksParamsType, AuthParamsType, jiraOrgGetServiceDesksOutputType>;
|
|
2304
2084
|
export declare const jiraOrgCreateServiceDeskRequestParamsSchema: z.ZodObject<{
|
|
2305
2085
|
serviceDeskId: z.ZodString;
|
|
2306
2086
|
requestTypeId: z.ZodString;
|
|
@@ -2982,116 +2762,6 @@ export declare const jiraDataCenterCreateJiraTicketOutputSchema: z.ZodObject<{
|
|
|
2982
2762
|
}>;
|
|
2983
2763
|
export type jiraDataCenterCreateJiraTicketOutputType = z.infer<typeof jiraDataCenterCreateJiraTicketOutputSchema>;
|
|
2984
2764
|
export type jiraDataCenterCreateJiraTicketFunction = ActionFunction<jiraDataCenterCreateJiraTicketParamsType, AuthParamsType, jiraDataCenterCreateJiraTicketOutputType>;
|
|
2985
|
-
export declare const jiraDataCenterGetServiceDesksParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2986
|
-
export type jiraDataCenterGetServiceDesksParamsType = z.infer<typeof jiraDataCenterGetServiceDesksParamsSchema>;
|
|
2987
|
-
export declare const jiraDataCenterGetServiceDesksOutputSchema: z.ZodObject<{
|
|
2988
|
-
success: z.ZodBoolean;
|
|
2989
|
-
error: z.ZodOptional<z.ZodString>;
|
|
2990
|
-
serviceDesks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2991
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2992
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
2993
|
-
projectKey: z.ZodOptional<z.ZodString>;
|
|
2994
|
-
projectName: z.ZodOptional<z.ZodString>;
|
|
2995
|
-
requestTypes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2996
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2997
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2998
|
-
description: z.ZodOptional<z.ZodString>;
|
|
2999
|
-
issueTypeId: z.ZodOptional<z.ZodString>;
|
|
3000
|
-
portalId: z.ZodOptional<z.ZodString>;
|
|
3001
|
-
helpText: z.ZodOptional<z.ZodString>;
|
|
3002
|
-
serviceDeskId: z.ZodOptional<z.ZodString>;
|
|
3003
|
-
canCreateRequest: z.ZodOptional<z.ZodBoolean>;
|
|
3004
|
-
}, "strip", z.ZodTypeAny, {
|
|
3005
|
-
description?: string | undefined;
|
|
3006
|
-
name?: string | undefined;
|
|
3007
|
-
id?: string | undefined;
|
|
3008
|
-
serviceDeskId?: string | undefined;
|
|
3009
|
-
issueTypeId?: string | undefined;
|
|
3010
|
-
portalId?: string | undefined;
|
|
3011
|
-
helpText?: string | undefined;
|
|
3012
|
-
canCreateRequest?: boolean | undefined;
|
|
3013
|
-
}, {
|
|
3014
|
-
description?: string | undefined;
|
|
3015
|
-
name?: string | undefined;
|
|
3016
|
-
id?: string | undefined;
|
|
3017
|
-
serviceDeskId?: string | undefined;
|
|
3018
|
-
issueTypeId?: string | undefined;
|
|
3019
|
-
portalId?: string | undefined;
|
|
3020
|
-
helpText?: string | undefined;
|
|
3021
|
-
canCreateRequest?: boolean | undefined;
|
|
3022
|
-
}>, "many">>;
|
|
3023
|
-
}, "strip", z.ZodTypeAny, {
|
|
3024
|
-
projectId?: string | undefined;
|
|
3025
|
-
id?: string | undefined;
|
|
3026
|
-
projectKey?: string | undefined;
|
|
3027
|
-
projectName?: string | undefined;
|
|
3028
|
-
requestTypes?: {
|
|
3029
|
-
description?: string | undefined;
|
|
3030
|
-
name?: string | undefined;
|
|
3031
|
-
id?: string | undefined;
|
|
3032
|
-
serviceDeskId?: string | undefined;
|
|
3033
|
-
issueTypeId?: string | undefined;
|
|
3034
|
-
portalId?: string | undefined;
|
|
3035
|
-
helpText?: string | undefined;
|
|
3036
|
-
canCreateRequest?: boolean | undefined;
|
|
3037
|
-
}[] | undefined;
|
|
3038
|
-
}, {
|
|
3039
|
-
projectId?: string | undefined;
|
|
3040
|
-
id?: string | undefined;
|
|
3041
|
-
projectKey?: string | undefined;
|
|
3042
|
-
projectName?: string | undefined;
|
|
3043
|
-
requestTypes?: {
|
|
3044
|
-
description?: string | undefined;
|
|
3045
|
-
name?: string | undefined;
|
|
3046
|
-
id?: string | undefined;
|
|
3047
|
-
serviceDeskId?: string | undefined;
|
|
3048
|
-
issueTypeId?: string | undefined;
|
|
3049
|
-
portalId?: string | undefined;
|
|
3050
|
-
helpText?: string | undefined;
|
|
3051
|
-
canCreateRequest?: boolean | undefined;
|
|
3052
|
-
}[] | undefined;
|
|
3053
|
-
}>, "many">>;
|
|
3054
|
-
}, "strip", z.ZodTypeAny, {
|
|
3055
|
-
success: boolean;
|
|
3056
|
-
error?: string | undefined;
|
|
3057
|
-
serviceDesks?: {
|
|
3058
|
-
projectId?: string | undefined;
|
|
3059
|
-
id?: string | undefined;
|
|
3060
|
-
projectKey?: string | undefined;
|
|
3061
|
-
projectName?: string | undefined;
|
|
3062
|
-
requestTypes?: {
|
|
3063
|
-
description?: string | undefined;
|
|
3064
|
-
name?: string | undefined;
|
|
3065
|
-
id?: string | undefined;
|
|
3066
|
-
serviceDeskId?: string | undefined;
|
|
3067
|
-
issueTypeId?: string | undefined;
|
|
3068
|
-
portalId?: string | undefined;
|
|
3069
|
-
helpText?: string | undefined;
|
|
3070
|
-
canCreateRequest?: boolean | undefined;
|
|
3071
|
-
}[] | undefined;
|
|
3072
|
-
}[] | undefined;
|
|
3073
|
-
}, {
|
|
3074
|
-
success: boolean;
|
|
3075
|
-
error?: string | undefined;
|
|
3076
|
-
serviceDesks?: {
|
|
3077
|
-
projectId?: string | undefined;
|
|
3078
|
-
id?: string | undefined;
|
|
3079
|
-
projectKey?: string | undefined;
|
|
3080
|
-
projectName?: string | undefined;
|
|
3081
|
-
requestTypes?: {
|
|
3082
|
-
description?: string | undefined;
|
|
3083
|
-
name?: string | undefined;
|
|
3084
|
-
id?: string | undefined;
|
|
3085
|
-
serviceDeskId?: string | undefined;
|
|
3086
|
-
issueTypeId?: string | undefined;
|
|
3087
|
-
portalId?: string | undefined;
|
|
3088
|
-
helpText?: string | undefined;
|
|
3089
|
-
canCreateRequest?: boolean | undefined;
|
|
3090
|
-
}[] | undefined;
|
|
3091
|
-
}[] | undefined;
|
|
3092
|
-
}>;
|
|
3093
|
-
export type jiraDataCenterGetServiceDesksOutputType = z.infer<typeof jiraDataCenterGetServiceDesksOutputSchema>;
|
|
3094
|
-
export type jiraDataCenterGetServiceDesksFunction = ActionFunction<jiraDataCenterGetServiceDesksParamsType, AuthParamsType, jiraDataCenterGetServiceDesksOutputType>;
|
|
3095
2765
|
export declare const jiraDataCenterCreateServiceDeskRequestParamsSchema: z.ZodObject<{
|
|
3096
2766
|
serviceDeskId: z.ZodString;
|
|
3097
2767
|
requestTypeId: z.ZodString;
|
|
@@ -4885,6 +4555,24 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
4885
4555
|
hangoutLink: z.ZodOptional<z.ZodString>;
|
|
4886
4556
|
created: z.ZodOptional<z.ZodString>;
|
|
4887
4557
|
updated: z.ZodOptional<z.ZodString>;
|
|
4558
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4559
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
4560
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
|
4561
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4562
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
4563
|
+
}, "strip", z.ZodTypeAny, {
|
|
4564
|
+
title?: string | undefined;
|
|
4565
|
+
mimeType?: string | undefined;
|
|
4566
|
+
fileId?: string | undefined;
|
|
4567
|
+
fileUrl?: string | undefined;
|
|
4568
|
+
}, {
|
|
4569
|
+
title?: string | undefined;
|
|
4570
|
+
mimeType?: string | undefined;
|
|
4571
|
+
fileId?: string | undefined;
|
|
4572
|
+
fileUrl?: string | undefined;
|
|
4573
|
+
}>, "many">>;
|
|
4574
|
+
eventType: z.ZodOptional<z.ZodString>;
|
|
4575
|
+
transparency: z.ZodOptional<z.ZodString>;
|
|
4888
4576
|
}, "strip", z.ZodTypeAny, {
|
|
4889
4577
|
status?: string | undefined;
|
|
4890
4578
|
description?: string | undefined;
|
|
@@ -4908,6 +4596,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
4908
4596
|
startDayOfWeek?: string | undefined;
|
|
4909
4597
|
endDayOfWeek?: string | undefined;
|
|
4910
4598
|
hangoutLink?: string | undefined;
|
|
4599
|
+
attachments?: {
|
|
4600
|
+
title?: string | undefined;
|
|
4601
|
+
mimeType?: string | undefined;
|
|
4602
|
+
fileId?: string | undefined;
|
|
4603
|
+
fileUrl?: string | undefined;
|
|
4604
|
+
}[] | undefined;
|
|
4605
|
+
eventType?: string | undefined;
|
|
4606
|
+
transparency?: string | undefined;
|
|
4911
4607
|
}, {
|
|
4912
4608
|
status?: string | undefined;
|
|
4913
4609
|
description?: string | undefined;
|
|
@@ -4931,6 +4627,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
4931
4627
|
startDayOfWeek?: string | undefined;
|
|
4932
4628
|
endDayOfWeek?: string | undefined;
|
|
4933
4629
|
hangoutLink?: string | undefined;
|
|
4630
|
+
attachments?: {
|
|
4631
|
+
title?: string | undefined;
|
|
4632
|
+
mimeType?: string | undefined;
|
|
4633
|
+
fileId?: string | undefined;
|
|
4634
|
+
fileUrl?: string | undefined;
|
|
4635
|
+
}[] | undefined;
|
|
4636
|
+
eventType?: string | undefined;
|
|
4637
|
+
transparency?: string | undefined;
|
|
4934
4638
|
}>, "many">;
|
|
4935
4639
|
timezone: z.ZodOptional<z.ZodString>;
|
|
4936
4640
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -4959,6 +4663,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
4959
4663
|
startDayOfWeek?: string | undefined;
|
|
4960
4664
|
endDayOfWeek?: string | undefined;
|
|
4961
4665
|
hangoutLink?: string | undefined;
|
|
4666
|
+
attachments?: {
|
|
4667
|
+
title?: string | undefined;
|
|
4668
|
+
mimeType?: string | undefined;
|
|
4669
|
+
fileId?: string | undefined;
|
|
4670
|
+
fileUrl?: string | undefined;
|
|
4671
|
+
}[] | undefined;
|
|
4672
|
+
eventType?: string | undefined;
|
|
4673
|
+
transparency?: string | undefined;
|
|
4962
4674
|
}[];
|
|
4963
4675
|
error?: string | undefined;
|
|
4964
4676
|
timezone?: string | undefined;
|
|
@@ -4987,6 +4699,14 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
4987
4699
|
startDayOfWeek?: string | undefined;
|
|
4988
4700
|
endDayOfWeek?: string | undefined;
|
|
4989
4701
|
hangoutLink?: string | undefined;
|
|
4702
|
+
attachments?: {
|
|
4703
|
+
title?: string | undefined;
|
|
4704
|
+
mimeType?: string | undefined;
|
|
4705
|
+
fileId?: string | undefined;
|
|
4706
|
+
fileUrl?: string | undefined;
|
|
4707
|
+
}[] | undefined;
|
|
4708
|
+
eventType?: string | undefined;
|
|
4709
|
+
transparency?: string | undefined;
|
|
4990
4710
|
}[];
|
|
4991
4711
|
error?: string | undefined;
|
|
4992
4712
|
timezone?: string | undefined;
|
|
@@ -5411,6 +5131,45 @@ export declare const googleOauthUpdateSpreadsheetOutputSchema: z.ZodObject<{
|
|
|
5411
5131
|
}>;
|
|
5412
5132
|
export type googleOauthUpdateSpreadsheetOutputType = z.infer<typeof googleOauthUpdateSpreadsheetOutputSchema>;
|
|
5413
5133
|
export type googleOauthUpdateSpreadsheetFunction = ActionFunction<googleOauthUpdateSpreadsheetParamsType, AuthParamsType, googleOauthUpdateSpreadsheetOutputType>;
|
|
5134
|
+
export declare const googleOauthAppendRowsToSpreadsheetParamsSchema: z.ZodObject<{
|
|
5135
|
+
spreadsheetId: z.ZodString;
|
|
5136
|
+
sheetName: z.ZodOptional<z.ZodString>;
|
|
5137
|
+
rows: z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
5138
|
+
stringValue: z.ZodString;
|
|
5139
|
+
}, "strip", z.ZodTypeAny, {
|
|
5140
|
+
stringValue: string;
|
|
5141
|
+
}, {
|
|
5142
|
+
stringValue: string;
|
|
5143
|
+
}>, "many">, "many">;
|
|
5144
|
+
}, "strip", z.ZodTypeAny, {
|
|
5145
|
+
spreadsheetId: string;
|
|
5146
|
+
rows: {
|
|
5147
|
+
stringValue: string;
|
|
5148
|
+
}[][];
|
|
5149
|
+
sheetName?: string | undefined;
|
|
5150
|
+
}, {
|
|
5151
|
+
spreadsheetId: string;
|
|
5152
|
+
rows: {
|
|
5153
|
+
stringValue: string;
|
|
5154
|
+
}[][];
|
|
5155
|
+
sheetName?: string | undefined;
|
|
5156
|
+
}>;
|
|
5157
|
+
export type googleOauthAppendRowsToSpreadsheetParamsType = z.infer<typeof googleOauthAppendRowsToSpreadsheetParamsSchema>;
|
|
5158
|
+
export declare const googleOauthAppendRowsToSpreadsheetOutputSchema: z.ZodObject<{
|
|
5159
|
+
success: z.ZodBoolean;
|
|
5160
|
+
spreadsheetUrl: z.ZodOptional<z.ZodString>;
|
|
5161
|
+
error: z.ZodOptional<z.ZodString>;
|
|
5162
|
+
}, "strip", z.ZodTypeAny, {
|
|
5163
|
+
success: boolean;
|
|
5164
|
+
error?: string | undefined;
|
|
5165
|
+
spreadsheetUrl?: string | undefined;
|
|
5166
|
+
}, {
|
|
5167
|
+
success: boolean;
|
|
5168
|
+
error?: string | undefined;
|
|
5169
|
+
spreadsheetUrl?: string | undefined;
|
|
5170
|
+
}>;
|
|
5171
|
+
export type googleOauthAppendRowsToSpreadsheetOutputType = z.infer<typeof googleOauthAppendRowsToSpreadsheetOutputSchema>;
|
|
5172
|
+
export type googleOauthAppendRowsToSpreadsheetFunction = ActionFunction<googleOauthAppendRowsToSpreadsheetParamsType, AuthParamsType, googleOauthAppendRowsToSpreadsheetOutputType>;
|
|
5414
5173
|
export declare const googleOauthCreatePresentationParamsSchema: z.ZodObject<{
|
|
5415
5174
|
title: z.ZodString;
|
|
5416
5175
|
pageSize: z.ZodOptional<z.ZodObject<{
|
|
@@ -6827,15 +6586,15 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
|
|
|
6827
6586
|
export type lookerEnableUserByEmailOutputType = z.infer<typeof lookerEnableUserByEmailOutputSchema>;
|
|
6828
6587
|
export type lookerEnableUserByEmailFunction = ActionFunction<lookerEnableUserByEmailParamsType, AuthParamsType, lookerEnableUserByEmailOutputType>;
|
|
6829
6588
|
export declare const salesforceUpdateRecordParamsSchema: z.ZodObject<{
|
|
6830
|
-
|
|
6589
|
+
recordType: z.ZodString;
|
|
6831
6590
|
recordId: z.ZodString;
|
|
6832
6591
|
fieldsToUpdate: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6833
6592
|
}, "strip", z.ZodTypeAny, {
|
|
6834
|
-
|
|
6593
|
+
recordType: string;
|
|
6835
6594
|
recordId: string;
|
|
6836
6595
|
fieldsToUpdate: Record<string, string>;
|
|
6837
6596
|
}, {
|
|
6838
|
-
|
|
6597
|
+
recordType: string;
|
|
6839
6598
|
recordId: string;
|
|
6840
6599
|
fieldsToUpdate: Record<string, string>;
|
|
6841
6600
|
}>;
|
|
@@ -6853,13 +6612,13 @@ export declare const salesforceUpdateRecordOutputSchema: z.ZodObject<{
|
|
|
6853
6612
|
export type salesforceUpdateRecordOutputType = z.infer<typeof salesforceUpdateRecordOutputSchema>;
|
|
6854
6613
|
export type salesforceUpdateRecordFunction = ActionFunction<salesforceUpdateRecordParamsType, AuthParamsType, salesforceUpdateRecordOutputType>;
|
|
6855
6614
|
export declare const salesforceCreateRecordParamsSchema: z.ZodObject<{
|
|
6856
|
-
|
|
6615
|
+
recordType: z.ZodString;
|
|
6857
6616
|
fieldsToCreate: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6858
6617
|
}, "strip", z.ZodTypeAny, {
|
|
6859
|
-
|
|
6618
|
+
recordType: string;
|
|
6860
6619
|
fieldsToCreate?: Record<string, string> | undefined;
|
|
6861
6620
|
}, {
|
|
6862
|
-
|
|
6621
|
+
recordType: string;
|
|
6863
6622
|
fieldsToCreate?: Record<string, string> | undefined;
|
|
6864
6623
|
}>;
|
|
6865
6624
|
export type salesforceCreateRecordParamsType = z.infer<typeof salesforceCreateRecordParamsSchema>;
|
|
@@ -7085,14 +6844,14 @@ export declare const salesforceSearchSalesforceRecordsParamsSchema: z.ZodObject<
|
|
|
7085
6844
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
7086
6845
|
maxLimit: z.ZodOptional<z.ZodNumber>;
|
|
7087
6846
|
}, "strip", z.ZodTypeAny, {
|
|
7088
|
-
keyword: string;
|
|
7089
6847
|
recordType: string;
|
|
6848
|
+
keyword: string;
|
|
7090
6849
|
fieldsToSearch: string[];
|
|
7091
6850
|
limit?: number | undefined;
|
|
7092
6851
|
maxLimit?: number | undefined;
|
|
7093
6852
|
}, {
|
|
7094
|
-
keyword: string;
|
|
7095
6853
|
recordType: string;
|
|
6854
|
+
keyword: string;
|
|
7096
6855
|
fieldsToSearch: string[];
|
|
7097
6856
|
limit?: number | undefined;
|
|
7098
6857
|
maxLimit?: number | undefined;
|
|
@@ -7244,13 +7003,13 @@ export declare const salesforceGetSalesforceRecordsByQueryOutputSchema: z.ZodObj
|
|
|
7244
7003
|
export type salesforceGetSalesforceRecordsByQueryOutputType = z.infer<typeof salesforceGetSalesforceRecordsByQueryOutputSchema>;
|
|
7245
7004
|
export type salesforceGetSalesforceRecordsByQueryFunction = ActionFunction<salesforceGetSalesforceRecordsByQueryParamsType, AuthParamsType, salesforceGetSalesforceRecordsByQueryOutputType>;
|
|
7246
7005
|
export declare const salesforceGetRecordParamsSchema: z.ZodObject<{
|
|
7247
|
-
|
|
7006
|
+
recordType: z.ZodString;
|
|
7248
7007
|
recordId: z.ZodString;
|
|
7249
7008
|
}, "strip", z.ZodTypeAny, {
|
|
7250
|
-
|
|
7009
|
+
recordType: string;
|
|
7251
7010
|
recordId: string;
|
|
7252
7011
|
}, {
|
|
7253
|
-
|
|
7012
|
+
recordType: string;
|
|
7254
7013
|
recordId: string;
|
|
7255
7014
|
}>;
|
|
7256
7015
|
export type salesforceGetRecordParamsType = z.infer<typeof salesforceGetRecordParamsSchema>;
|