@credal/actions 0.2.220 → 0.2.222
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 +31 -1
- package/dist/actions/autogen/templates.d.ts +4 -0
- package/dist/actions/autogen/templates.js +274 -0
- package/dist/actions/autogen/types.d.ts +261 -5
- package/dist/actions/autogen/types.js +106 -0
- package/dist/actions/groups.d.ts +6 -0
- package/dist/actions/groups.js +248 -0
- package/dist/actions/providers/ashby/addCandidateToProject.d.ts +3 -0
- package/dist/actions/providers/ashby/addCandidateToProject.js +31 -0
- package/dist/actions/providers/ashby/createCandidate.d.ts +3 -0
- package/dist/actions/providers/ashby/createCandidate.js +38 -0
- package/dist/actions/providers/ashby/createNote.d.ts +3 -0
- package/dist/actions/providers/ashby/createNote.js +31 -0
- package/dist/actions/providers/ashby/getCandidateInfo.d.ts +3 -0
- package/dist/actions/providers/ashby/getCandidateInfo.js +33 -0
- package/dist/actions/providers/ashby/listCandidateNotes.d.ts +3 -0
- package/dist/actions/providers/ashby/listCandidateNotes.js +33 -0
- package/dist/actions/providers/ashby/listCandidates.d.ts +3 -0
- package/dist/actions/providers/ashby/listCandidates.js +30 -0
- package/dist/actions/providers/ashby/searchCandidates.d.ts +3 -0
- package/dist/actions/providers/ashby/searchCandidates.js +34 -0
- package/dist/actions/providers/ashby/updateCandidate.d.ts +3 -0
- package/dist/actions/providers/ashby/updateCandidate.js +56 -0
- package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
- package/dist/actions/providers/credal/callCopilot.js +36 -0
- package/dist/actions/providers/gong/getGongTranscripts.d.ts +3 -0
- package/dist/actions/providers/gong/getGongTranscripts.js +315 -0
- package/dist/actions/providers/google-oauth/editAGoogleCalendarEvent.js +3 -1
- package/dist/actions/providers/google-oauth/scheduleCalendarMeeting.js +16 -5
- package/dist/actions/providers/google-oauth/updateCalendarEvent.js +2 -0
- package/dist/actions/providers/jamf/getJamfComputerInventory.d.ts +3 -0
- package/dist/actions/providers/jamf/getJamfComputerInventory.js +37 -0
- package/dist/actions/providers/jamf/getJamfFileVaultRecoveryKey.d.ts +3 -0
- package/dist/actions/providers/jamf/getJamfFileVaultRecoveryKey.js +39 -0
- package/dist/actions/providers/jamf/getJamfUserComputerId.d.ts +3 -0
- package/dist/actions/providers/jamf/getJamfUserComputerId.js +45 -0
- package/dist/actions/providers/jamf/lockJamfComputerById.d.ts +3 -0
- package/dist/actions/providers/jamf/lockJamfComputerById.js +39 -0
- package/dist/actions/providers/jira/getJiraDCIssuesByQuery.js +3 -1
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +3 -1
- package/dist/actions/providers/kandji/getFVRecoveryKeyForDevice.d.ts +3 -0
- package/dist/actions/providers/kandji/getFVRecoveryKeyForDevice.js +85 -0
- package/dist/actions/providers/math/index.d.ts +1 -0
- package/dist/actions/providers/math/index.js +37 -0
- package/dist/actions/providers/okta/addUserToGroup.d.ts +3 -0
- package/dist/actions/providers/okta/addUserToGroup.js +56 -0
- package/dist/actions/providers/okta/getOktaGroup.d.ts +3 -0
- package/dist/actions/providers/okta/getOktaGroup.js +73 -0
- package/dist/actions/providers/okta/getOktaUser.d.ts +3 -0
- package/dist/actions/providers/okta/getOktaUser.js +40 -0
- package/dist/actions/providers/okta/listMFA.d.ts +3 -0
- package/dist/actions/providers/okta/listMFA.js +52 -0
- package/dist/actions/providers/okta/listOktaGroupMembers.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaGroupMembers.js +99 -0
- package/dist/actions/providers/okta/listOktaGroups.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaGroups.js +92 -0
- package/dist/actions/providers/okta/listOktaUserGroups.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaUserGroups.js +83 -0
- package/dist/actions/providers/okta/listOktaUsers.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaUsers.js +100 -0
- package/dist/actions/providers/okta/removeUserFromGroup.d.ts +3 -0
- package/dist/actions/providers/okta/removeUserFromGroup.js +56 -0
- package/dist/actions/providers/okta/resetMFA.d.ts +3 -0
- package/dist/actions/providers/okta/resetMFA.js +62 -0
- package/dist/actions/providers/okta/resetPassword.d.ts +3 -0
- package/dist/actions/providers/okta/resetPassword.js +57 -0
- package/dist/actions/providers/okta/triggerOktaWorkflow.d.ts +3 -0
- package/dist/actions/providers/okta/triggerOktaWorkflow.js +44 -0
- package/dist/actions/providers/salesforce/fetchSalesforceSchema.d.ts +3 -0
- package/dist/actions/providers/salesforce/fetchSalesforceSchema.js +40 -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/archiveChannel.d.ts +3 -0
- package/dist/actions/providers/slack/archiveChannel.js +35 -0
- package/dist/actions/providers/slack/index.d.ts +1 -0
- package/dist/actions/providers/slack/index.js +37 -0
- package/dist/actions/providers/slack/listConversations.d.ts +3 -0
- package/dist/actions/providers/slack/listConversations.js +41 -0
- package/dist/actions/providers/smartsheet/addRowToSheet.d.ts +3 -0
- package/dist/actions/providers/smartsheet/addRowToSheet.js +34 -0
- package/dist/actions/providers/smartsheet/getSheetRows.d.ts +3 -0
- package/dist/actions/providers/smartsheet/getSheetRows.js +48 -0
- package/dist/actions/providers/smartsheet/listSheets.d.ts +3 -0
- package/dist/actions/providers/smartsheet/listSheets.js +26 -0
- package/dist/actions/providers/smartsheet/updateRow.d.ts +3 -0
- package/dist/actions/providers/smartsheet/updateRow.js +34 -0
- package/dist/actions/providers/smartsheet/utils.d.ts +33 -0
- package/dist/actions/providers/smartsheet/utils.js +45 -0
- package/package.json +2 -2
|
@@ -35,6 +35,7 @@ export declare enum ProviderName {
|
|
|
35
35
|
GITLAB = "gitlab",
|
|
36
36
|
LINEAR = "linear",
|
|
37
37
|
HUBSPOT = "hubspot",
|
|
38
|
+
SMARTSHEET = "smartsheet",
|
|
38
39
|
BOXUSER = "boxUser"
|
|
39
40
|
}
|
|
40
41
|
export declare enum ActionName {
|
|
@@ -175,7 +176,11 @@ export declare enum ActionName {
|
|
|
175
176
|
GETCOMPANYDETAILS = "getCompanyDetails",
|
|
176
177
|
GETDEALS = "getDeals",
|
|
177
178
|
GETDEALDETAILS = "getDealDetails",
|
|
178
|
-
GETTICKETS = "getTickets"
|
|
179
|
+
GETTICKETS = "getTickets",
|
|
180
|
+
LISTSHEETS = "listSheets",
|
|
181
|
+
GETSHEETROWS = "getSheetRows",
|
|
182
|
+
ADDROWTOSHEET = "addRowToSheet",
|
|
183
|
+
UPDATEROW = "updateRow"
|
|
179
184
|
}
|
|
180
185
|
export type ActionFunction<P, A, O> = (input: {
|
|
181
186
|
params: P;
|
|
@@ -2167,6 +2172,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2167
2172
|
updated: z.ZodString;
|
|
2168
2173
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2169
2174
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2175
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2170
2176
|
}, "strip", z.ZodTypeAny, {
|
|
2171
2177
|
status: {
|
|
2172
2178
|
name?: string | undefined;
|
|
@@ -2206,6 +2212,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2206
2212
|
email?: string | undefined;
|
|
2207
2213
|
} | null | undefined;
|
|
2208
2214
|
resolution?: string | null | undefined;
|
|
2215
|
+
labels?: string[] | undefined;
|
|
2209
2216
|
}, {
|
|
2210
2217
|
status: {
|
|
2211
2218
|
name?: string | undefined;
|
|
@@ -2245,6 +2252,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2245
2252
|
email?: string | undefined;
|
|
2246
2253
|
} | null | undefined;
|
|
2247
2254
|
resolution?: string | null | undefined;
|
|
2255
|
+
labels?: string[] | undefined;
|
|
2248
2256
|
}>;
|
|
2249
2257
|
}, "strip", z.ZodTypeAny, {
|
|
2250
2258
|
name: string;
|
|
@@ -2288,6 +2296,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2288
2296
|
email?: string | undefined;
|
|
2289
2297
|
} | null | undefined;
|
|
2290
2298
|
resolution?: string | null | undefined;
|
|
2299
|
+
labels?: string[] | undefined;
|
|
2291
2300
|
};
|
|
2292
2301
|
}, {
|
|
2293
2302
|
name: string;
|
|
@@ -2331,6 +2340,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2331
2340
|
email?: string | undefined;
|
|
2332
2341
|
} | null | undefined;
|
|
2333
2342
|
resolution?: string | null | undefined;
|
|
2343
|
+
labels?: string[] | undefined;
|
|
2334
2344
|
};
|
|
2335
2345
|
}>, "many">>;
|
|
2336
2346
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -2378,6 +2388,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2378
2388
|
email?: string | undefined;
|
|
2379
2389
|
} | null | undefined;
|
|
2380
2390
|
resolution?: string | null | undefined;
|
|
2391
|
+
labels?: string[] | undefined;
|
|
2381
2392
|
};
|
|
2382
2393
|
}[] | undefined;
|
|
2383
2394
|
nextPageToken?: string | undefined;
|
|
@@ -2426,6 +2437,7 @@ export declare const jiraGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2426
2437
|
email?: string | undefined;
|
|
2427
2438
|
} | null | undefined;
|
|
2428
2439
|
resolution?: string | null | undefined;
|
|
2440
|
+
labels?: string[] | undefined;
|
|
2429
2441
|
};
|
|
2430
2442
|
}[] | undefined;
|
|
2431
2443
|
nextPageToken?: string | undefined;
|
|
@@ -2985,6 +2997,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
2985
2997
|
updated: z.ZodString;
|
|
2986
2998
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2987
2999
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3000
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2988
3001
|
}, "strip", z.ZodTypeAny, {
|
|
2989
3002
|
status: {
|
|
2990
3003
|
name?: string | undefined;
|
|
@@ -3024,6 +3037,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3024
3037
|
email?: string | undefined;
|
|
3025
3038
|
} | null | undefined;
|
|
3026
3039
|
resolution?: string | null | undefined;
|
|
3040
|
+
labels?: string[] | undefined;
|
|
3027
3041
|
}, {
|
|
3028
3042
|
status: {
|
|
3029
3043
|
name?: string | undefined;
|
|
@@ -3063,6 +3077,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3063
3077
|
email?: string | undefined;
|
|
3064
3078
|
} | null | undefined;
|
|
3065
3079
|
resolution?: string | null | undefined;
|
|
3080
|
+
labels?: string[] | undefined;
|
|
3066
3081
|
}>;
|
|
3067
3082
|
}, "strip", z.ZodTypeAny, {
|
|
3068
3083
|
name: string;
|
|
@@ -3106,6 +3121,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3106
3121
|
email?: string | undefined;
|
|
3107
3122
|
} | null | undefined;
|
|
3108
3123
|
resolution?: string | null | undefined;
|
|
3124
|
+
labels?: string[] | undefined;
|
|
3109
3125
|
};
|
|
3110
3126
|
}, {
|
|
3111
3127
|
name: string;
|
|
@@ -3149,6 +3165,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3149
3165
|
email?: string | undefined;
|
|
3150
3166
|
} | null | undefined;
|
|
3151
3167
|
resolution?: string | null | undefined;
|
|
3168
|
+
labels?: string[] | undefined;
|
|
3152
3169
|
};
|
|
3153
3170
|
}>, "many">>;
|
|
3154
3171
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -3196,6 +3213,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3196
3213
|
email?: string | undefined;
|
|
3197
3214
|
} | null | undefined;
|
|
3198
3215
|
resolution?: string | null | undefined;
|
|
3216
|
+
labels?: string[] | undefined;
|
|
3199
3217
|
};
|
|
3200
3218
|
}[] | undefined;
|
|
3201
3219
|
nextPageToken?: string | undefined;
|
|
@@ -3244,6 +3262,7 @@ export declare const jiraOrgGetJiraIssuesByQueryOutputSchema: z.ZodObject<{
|
|
|
3244
3262
|
email?: string | undefined;
|
|
3245
3263
|
} | null | undefined;
|
|
3246
3264
|
resolution?: string | null | undefined;
|
|
3265
|
+
labels?: string[] | undefined;
|
|
3247
3266
|
};
|
|
3248
3267
|
}[] | undefined;
|
|
3249
3268
|
nextPageToken?: string | undefined;
|
|
@@ -3798,6 +3817,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3798
3817
|
updated: z.ZodString;
|
|
3799
3818
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3800
3819
|
dueDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3820
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3801
3821
|
}, "strip", z.ZodTypeAny, {
|
|
3802
3822
|
status: {
|
|
3803
3823
|
name?: string | undefined;
|
|
@@ -3837,6 +3857,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3837
3857
|
email?: string | undefined;
|
|
3838
3858
|
} | null | undefined;
|
|
3839
3859
|
resolution?: string | null | undefined;
|
|
3860
|
+
labels?: string[] | undefined;
|
|
3840
3861
|
}, {
|
|
3841
3862
|
status: {
|
|
3842
3863
|
name?: string | undefined;
|
|
@@ -3876,6 +3897,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3876
3897
|
email?: string | undefined;
|
|
3877
3898
|
} | null | undefined;
|
|
3878
3899
|
resolution?: string | null | undefined;
|
|
3900
|
+
labels?: string[] | undefined;
|
|
3879
3901
|
}>;
|
|
3880
3902
|
}, "strip", z.ZodTypeAny, {
|
|
3881
3903
|
name: string;
|
|
@@ -3919,6 +3941,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3919
3941
|
email?: string | undefined;
|
|
3920
3942
|
} | null | undefined;
|
|
3921
3943
|
resolution?: string | null | undefined;
|
|
3944
|
+
labels?: string[] | undefined;
|
|
3922
3945
|
};
|
|
3923
3946
|
}, {
|
|
3924
3947
|
name: string;
|
|
@@ -3962,6 +3985,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
3962
3985
|
email?: string | undefined;
|
|
3963
3986
|
} | null | undefined;
|
|
3964
3987
|
resolution?: string | null | undefined;
|
|
3988
|
+
labels?: string[] | undefined;
|
|
3965
3989
|
};
|
|
3966
3990
|
}>, "many">>;
|
|
3967
3991
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -4009,6 +4033,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
4009
4033
|
email?: string | undefined;
|
|
4010
4034
|
} | null | undefined;
|
|
4011
4035
|
resolution?: string | null | undefined;
|
|
4036
|
+
labels?: string[] | undefined;
|
|
4012
4037
|
};
|
|
4013
4038
|
}[] | undefined;
|
|
4014
4039
|
}, {
|
|
@@ -4055,6 +4080,7 @@ export declare const jiraDataCenterGetJiraIssuesByQueryOutputSchema: z.ZodObject
|
|
|
4055
4080
|
email?: string | undefined;
|
|
4056
4081
|
} | null | undefined;
|
|
4057
4082
|
resolution?: string | null | undefined;
|
|
4083
|
+
labels?: string[] | undefined;
|
|
4058
4084
|
};
|
|
4059
4085
|
}[] | undefined;
|
|
4060
4086
|
}>;
|
|
@@ -5226,6 +5252,7 @@ export declare const googleOauthScheduleCalendarMeetingParamsSchema: z.ZodObject
|
|
|
5226
5252
|
attendees: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5227
5253
|
useGoogleMeet: z.ZodOptional<z.ZodBoolean>;
|
|
5228
5254
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
5255
|
+
transparency: z.ZodOptional<z.ZodEnum<["opaque", "transparent"]>>;
|
|
5229
5256
|
recurrence: z.ZodOptional<z.ZodObject<{
|
|
5230
5257
|
frequency: z.ZodOptional<z.ZodEnum<["DAILY", "WEEKLY", "MONTHLY", "YEARLY"]>>;
|
|
5231
5258
|
interval: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5257,6 +5284,7 @@ export declare const googleOauthScheduleCalendarMeetingParamsSchema: z.ZodObject
|
|
|
5257
5284
|
attendees?: string[] | undefined;
|
|
5258
5285
|
useGoogleMeet?: boolean | undefined;
|
|
5259
5286
|
timeZone?: string | undefined;
|
|
5287
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5260
5288
|
recurrence?: {
|
|
5261
5289
|
count?: number | undefined;
|
|
5262
5290
|
until?: string | undefined;
|
|
@@ -5274,6 +5302,7 @@ export declare const googleOauthScheduleCalendarMeetingParamsSchema: z.ZodObject
|
|
|
5274
5302
|
attendees?: string[] | undefined;
|
|
5275
5303
|
useGoogleMeet?: boolean | undefined;
|
|
5276
5304
|
timeZone?: string | undefined;
|
|
5305
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5277
5306
|
recurrence?: {
|
|
5278
5307
|
count?: number | undefined;
|
|
5279
5308
|
until?: string | undefined;
|
|
@@ -5436,6 +5465,7 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5436
5465
|
email?: string | undefined;
|
|
5437
5466
|
responseStatus?: string | undefined;
|
|
5438
5467
|
}[] | undefined;
|
|
5468
|
+
transparency?: string | undefined;
|
|
5439
5469
|
organizer?: {
|
|
5440
5470
|
displayName?: string | undefined;
|
|
5441
5471
|
email?: string | undefined;
|
|
@@ -5450,7 +5480,6 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5450
5480
|
fileUrl?: string | undefined;
|
|
5451
5481
|
}[] | undefined;
|
|
5452
5482
|
eventType?: string | undefined;
|
|
5453
|
-
transparency?: string | undefined;
|
|
5454
5483
|
}, {
|
|
5455
5484
|
status?: string | undefined;
|
|
5456
5485
|
description?: string | undefined;
|
|
@@ -5467,6 +5496,7 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5467
5496
|
email?: string | undefined;
|
|
5468
5497
|
responseStatus?: string | undefined;
|
|
5469
5498
|
}[] | undefined;
|
|
5499
|
+
transparency?: string | undefined;
|
|
5470
5500
|
organizer?: {
|
|
5471
5501
|
displayName?: string | undefined;
|
|
5472
5502
|
email?: string | undefined;
|
|
@@ -5481,7 +5511,6 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5481
5511
|
fileUrl?: string | undefined;
|
|
5482
5512
|
}[] | undefined;
|
|
5483
5513
|
eventType?: string | undefined;
|
|
5484
|
-
transparency?: string | undefined;
|
|
5485
5514
|
}>, "many">;
|
|
5486
5515
|
timezone: z.ZodOptional<z.ZodString>;
|
|
5487
5516
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -5503,6 +5532,7 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5503
5532
|
email?: string | undefined;
|
|
5504
5533
|
responseStatus?: string | undefined;
|
|
5505
5534
|
}[] | undefined;
|
|
5535
|
+
transparency?: string | undefined;
|
|
5506
5536
|
organizer?: {
|
|
5507
5537
|
displayName?: string | undefined;
|
|
5508
5538
|
email?: string | undefined;
|
|
@@ -5517,7 +5547,6 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5517
5547
|
fileUrl?: string | undefined;
|
|
5518
5548
|
}[] | undefined;
|
|
5519
5549
|
eventType?: string | undefined;
|
|
5520
|
-
transparency?: string | undefined;
|
|
5521
5550
|
}[];
|
|
5522
5551
|
error?: string | undefined;
|
|
5523
5552
|
timezone?: string | undefined;
|
|
@@ -5539,6 +5568,7 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5539
5568
|
email?: string | undefined;
|
|
5540
5569
|
responseStatus?: string | undefined;
|
|
5541
5570
|
}[] | undefined;
|
|
5571
|
+
transparency?: string | undefined;
|
|
5542
5572
|
organizer?: {
|
|
5543
5573
|
displayName?: string | undefined;
|
|
5544
5574
|
email?: string | undefined;
|
|
@@ -5553,7 +5583,6 @@ export declare const googleOauthListCalendarEventsOutputSchema: z.ZodObject<{
|
|
|
5553
5583
|
fileUrl?: string | undefined;
|
|
5554
5584
|
}[] | undefined;
|
|
5555
5585
|
eventType?: string | undefined;
|
|
5556
|
-
transparency?: string | undefined;
|
|
5557
5586
|
}[];
|
|
5558
5587
|
error?: string | undefined;
|
|
5559
5588
|
timezone?: string | undefined;
|
|
@@ -5582,6 +5611,7 @@ export declare const googleOauthUpdateCalendarEventParamsSchema: z.ZodObject<{
|
|
|
5582
5611
|
email?: string | undefined;
|
|
5583
5612
|
}>>;
|
|
5584
5613
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
5614
|
+
transparency: z.ZodOptional<z.ZodEnum<["opaque", "transparent"]>>;
|
|
5585
5615
|
}, "strip", z.ZodTypeAny, {
|
|
5586
5616
|
status?: string | undefined;
|
|
5587
5617
|
description?: string | undefined;
|
|
@@ -5591,6 +5621,7 @@ export declare const googleOauthUpdateCalendarEventParamsSchema: z.ZodObject<{
|
|
|
5591
5621
|
end?: string | undefined;
|
|
5592
5622
|
attendees?: string[] | undefined;
|
|
5593
5623
|
timeZone?: string | undefined;
|
|
5624
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5594
5625
|
organizer?: {
|
|
5595
5626
|
displayName?: string | undefined;
|
|
5596
5627
|
email?: string | undefined;
|
|
@@ -5604,6 +5635,7 @@ export declare const googleOauthUpdateCalendarEventParamsSchema: z.ZodObject<{
|
|
|
5604
5635
|
end?: string | undefined;
|
|
5605
5636
|
attendees?: string[] | undefined;
|
|
5606
5637
|
timeZone?: string | undefined;
|
|
5638
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5607
5639
|
organizer?: {
|
|
5608
5640
|
displayName?: string | undefined;
|
|
5609
5641
|
email?: string | undefined;
|
|
@@ -5621,6 +5653,7 @@ export declare const googleOauthUpdateCalendarEventParamsSchema: z.ZodObject<{
|
|
|
5621
5653
|
end?: string | undefined;
|
|
5622
5654
|
attendees?: string[] | undefined;
|
|
5623
5655
|
timeZone?: string | undefined;
|
|
5656
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5624
5657
|
organizer?: {
|
|
5625
5658
|
displayName?: string | undefined;
|
|
5626
5659
|
email?: string | undefined;
|
|
@@ -5638,6 +5671,7 @@ export declare const googleOauthUpdateCalendarEventParamsSchema: z.ZodObject<{
|
|
|
5638
5671
|
end?: string | undefined;
|
|
5639
5672
|
attendees?: string[] | undefined;
|
|
5640
5673
|
timeZone?: string | undefined;
|
|
5674
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5641
5675
|
organizer?: {
|
|
5642
5676
|
displayName?: string | undefined;
|
|
5643
5677
|
email?: string | undefined;
|
|
@@ -5684,6 +5718,7 @@ export declare const googleOauthEditAGoogleCalendarEventParamsSchema: z.ZodObjec
|
|
|
5684
5718
|
email?: string | undefined;
|
|
5685
5719
|
}>>;
|
|
5686
5720
|
timeZone: z.ZodOptional<z.ZodString>;
|
|
5721
|
+
transparency: z.ZodOptional<z.ZodEnum<["opaque", "transparent"]>>;
|
|
5687
5722
|
}, "strip", z.ZodTypeAny, {
|
|
5688
5723
|
calendarId: string;
|
|
5689
5724
|
eventId: string;
|
|
@@ -5695,6 +5730,7 @@ export declare const googleOauthEditAGoogleCalendarEventParamsSchema: z.ZodObjec
|
|
|
5695
5730
|
end?: string | undefined;
|
|
5696
5731
|
attendees?: string[] | undefined;
|
|
5697
5732
|
timeZone?: string | undefined;
|
|
5733
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5698
5734
|
organizer?: {
|
|
5699
5735
|
displayName?: string | undefined;
|
|
5700
5736
|
email?: string | undefined;
|
|
@@ -5710,6 +5746,7 @@ export declare const googleOauthEditAGoogleCalendarEventParamsSchema: z.ZodObjec
|
|
|
5710
5746
|
end?: string | undefined;
|
|
5711
5747
|
attendees?: string[] | undefined;
|
|
5712
5748
|
timeZone?: string | undefined;
|
|
5749
|
+
transparency?: "opaque" | "transparent" | undefined;
|
|
5713
5750
|
organizer?: {
|
|
5714
5751
|
displayName?: string | undefined;
|
|
5715
5752
|
email?: string | undefined;
|
|
@@ -12136,3 +12173,222 @@ export declare const hubspotGetTicketDetailsOutputSchema: z.ZodObject<{
|
|
|
12136
12173
|
}>;
|
|
12137
12174
|
export type hubspotGetTicketDetailsOutputType = z.infer<typeof hubspotGetTicketDetailsOutputSchema>;
|
|
12138
12175
|
export type hubspotGetTicketDetailsFunction = ActionFunction<hubspotGetTicketDetailsParamsType, AuthParamsType, hubspotGetTicketDetailsOutputType>;
|
|
12176
|
+
export declare const smartsheetListSheetsParamsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
12177
|
+
export type smartsheetListSheetsParamsType = z.infer<typeof smartsheetListSheetsParamsSchema>;
|
|
12178
|
+
export declare const smartsheetListSheetsOutputSchema: z.ZodObject<{
|
|
12179
|
+
success: z.ZodBoolean;
|
|
12180
|
+
error: z.ZodOptional<z.ZodString>;
|
|
12181
|
+
sheets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12182
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12183
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12184
|
+
permalink: z.ZodOptional<z.ZodString>;
|
|
12185
|
+
}, "strip", z.ZodTypeAny, {
|
|
12186
|
+
name?: string | undefined;
|
|
12187
|
+
id?: string | undefined;
|
|
12188
|
+
permalink?: string | undefined;
|
|
12189
|
+
}, {
|
|
12190
|
+
name?: string | undefined;
|
|
12191
|
+
id?: string | undefined;
|
|
12192
|
+
permalink?: string | undefined;
|
|
12193
|
+
}>, "many">>;
|
|
12194
|
+
}, "strip", z.ZodTypeAny, {
|
|
12195
|
+
success: boolean;
|
|
12196
|
+
error?: string | undefined;
|
|
12197
|
+
sheets?: {
|
|
12198
|
+
name?: string | undefined;
|
|
12199
|
+
id?: string | undefined;
|
|
12200
|
+
permalink?: string | undefined;
|
|
12201
|
+
}[] | undefined;
|
|
12202
|
+
}, {
|
|
12203
|
+
success: boolean;
|
|
12204
|
+
error?: string | undefined;
|
|
12205
|
+
sheets?: {
|
|
12206
|
+
name?: string | undefined;
|
|
12207
|
+
id?: string | undefined;
|
|
12208
|
+
permalink?: string | undefined;
|
|
12209
|
+
}[] | undefined;
|
|
12210
|
+
}>;
|
|
12211
|
+
export type smartsheetListSheetsOutputType = z.infer<typeof smartsheetListSheetsOutputSchema>;
|
|
12212
|
+
export type smartsheetListSheetsFunction = ActionFunction<smartsheetListSheetsParamsType, AuthParamsType, smartsheetListSheetsOutputType>;
|
|
12213
|
+
export declare const smartsheetGetSheetRowsParamsSchema: z.ZodObject<{
|
|
12214
|
+
sheetId: z.ZodString;
|
|
12215
|
+
}, "strip", z.ZodTypeAny, {
|
|
12216
|
+
sheetId: string;
|
|
12217
|
+
}, {
|
|
12218
|
+
sheetId: string;
|
|
12219
|
+
}>;
|
|
12220
|
+
export type smartsheetGetSheetRowsParamsType = z.infer<typeof smartsheetGetSheetRowsParamsSchema>;
|
|
12221
|
+
export declare const smartsheetGetSheetRowsOutputSchema: z.ZodObject<{
|
|
12222
|
+
success: z.ZodBoolean;
|
|
12223
|
+
error: z.ZodOptional<z.ZodString>;
|
|
12224
|
+
sheet: z.ZodOptional<z.ZodObject<{
|
|
12225
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12226
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12227
|
+
permalink: z.ZodOptional<z.ZodString>;
|
|
12228
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12229
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12230
|
+
title: z.ZodOptional<z.ZodString>;
|
|
12231
|
+
type: z.ZodOptional<z.ZodString>;
|
|
12232
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12233
|
+
}, "strip", z.ZodTypeAny, {
|
|
12234
|
+
type?: string | undefined;
|
|
12235
|
+
options?: string[] | undefined;
|
|
12236
|
+
id?: string | undefined;
|
|
12237
|
+
title?: string | undefined;
|
|
12238
|
+
}, {
|
|
12239
|
+
type?: string | undefined;
|
|
12240
|
+
options?: string[] | undefined;
|
|
12241
|
+
id?: string | undefined;
|
|
12242
|
+
title?: string | undefined;
|
|
12243
|
+
}>, "many">>;
|
|
12244
|
+
rows: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12245
|
+
id: z.ZodOptional<z.ZodString>;
|
|
12246
|
+
rowNumber: z.ZodOptional<z.ZodNumber>;
|
|
12247
|
+
cells: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
12248
|
+
}, "strip", z.ZodTypeAny, {
|
|
12249
|
+
id?: string | undefined;
|
|
12250
|
+
cells?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
12251
|
+
rowNumber?: number | undefined;
|
|
12252
|
+
}, {
|
|
12253
|
+
id?: string | undefined;
|
|
12254
|
+
cells?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
12255
|
+
rowNumber?: number | undefined;
|
|
12256
|
+
}>, "many">>;
|
|
12257
|
+
}, "strip", z.ZodTypeAny, {
|
|
12258
|
+
name?: string | undefined;
|
|
12259
|
+
id?: string | undefined;
|
|
12260
|
+
permalink?: string | undefined;
|
|
12261
|
+
rows?: {
|
|
12262
|
+
id?: string | undefined;
|
|
12263
|
+
cells?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
12264
|
+
rowNumber?: number | undefined;
|
|
12265
|
+
}[] | undefined;
|
|
12266
|
+
columns?: {
|
|
12267
|
+
type?: string | undefined;
|
|
12268
|
+
options?: string[] | undefined;
|
|
12269
|
+
id?: string | undefined;
|
|
12270
|
+
title?: string | undefined;
|
|
12271
|
+
}[] | undefined;
|
|
12272
|
+
}, {
|
|
12273
|
+
name?: string | undefined;
|
|
12274
|
+
id?: string | undefined;
|
|
12275
|
+
permalink?: string | undefined;
|
|
12276
|
+
rows?: {
|
|
12277
|
+
id?: string | undefined;
|
|
12278
|
+
cells?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
12279
|
+
rowNumber?: number | undefined;
|
|
12280
|
+
}[] | undefined;
|
|
12281
|
+
columns?: {
|
|
12282
|
+
type?: string | undefined;
|
|
12283
|
+
options?: string[] | undefined;
|
|
12284
|
+
id?: string | undefined;
|
|
12285
|
+
title?: string | undefined;
|
|
12286
|
+
}[] | undefined;
|
|
12287
|
+
}>>;
|
|
12288
|
+
}, "strip", z.ZodTypeAny, {
|
|
12289
|
+
success: boolean;
|
|
12290
|
+
error?: string | undefined;
|
|
12291
|
+
sheet?: {
|
|
12292
|
+
name?: string | undefined;
|
|
12293
|
+
id?: string | undefined;
|
|
12294
|
+
permalink?: string | undefined;
|
|
12295
|
+
rows?: {
|
|
12296
|
+
id?: string | undefined;
|
|
12297
|
+
cells?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
12298
|
+
rowNumber?: number | undefined;
|
|
12299
|
+
}[] | undefined;
|
|
12300
|
+
columns?: {
|
|
12301
|
+
type?: string | undefined;
|
|
12302
|
+
options?: string[] | undefined;
|
|
12303
|
+
id?: string | undefined;
|
|
12304
|
+
title?: string | undefined;
|
|
12305
|
+
}[] | undefined;
|
|
12306
|
+
} | undefined;
|
|
12307
|
+
}, {
|
|
12308
|
+
success: boolean;
|
|
12309
|
+
error?: string | undefined;
|
|
12310
|
+
sheet?: {
|
|
12311
|
+
name?: string | undefined;
|
|
12312
|
+
id?: string | undefined;
|
|
12313
|
+
permalink?: string | undefined;
|
|
12314
|
+
rows?: {
|
|
12315
|
+
id?: string | undefined;
|
|
12316
|
+
cells?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
12317
|
+
rowNumber?: number | undefined;
|
|
12318
|
+
}[] | undefined;
|
|
12319
|
+
columns?: {
|
|
12320
|
+
type?: string | undefined;
|
|
12321
|
+
options?: string[] | undefined;
|
|
12322
|
+
id?: string | undefined;
|
|
12323
|
+
title?: string | undefined;
|
|
12324
|
+
}[] | undefined;
|
|
12325
|
+
} | undefined;
|
|
12326
|
+
}>;
|
|
12327
|
+
export type smartsheetGetSheetRowsOutputType = z.infer<typeof smartsheetGetSheetRowsOutputSchema>;
|
|
12328
|
+
export type smartsheetGetSheetRowsFunction = ActionFunction<smartsheetGetSheetRowsParamsType, AuthParamsType, smartsheetGetSheetRowsOutputType>;
|
|
12329
|
+
export declare const smartsheetAddRowToSheetParamsSchema: z.ZodObject<{
|
|
12330
|
+
sheetId: z.ZodString;
|
|
12331
|
+
cells: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
|
|
12332
|
+
toTop: z.ZodOptional<z.ZodBoolean>;
|
|
12333
|
+
}, "strip", z.ZodTypeAny, {
|
|
12334
|
+
sheetId: string;
|
|
12335
|
+
cells: {} & {
|
|
12336
|
+
[k: string]: any;
|
|
12337
|
+
};
|
|
12338
|
+
toTop?: boolean | undefined;
|
|
12339
|
+
}, {
|
|
12340
|
+
sheetId: string;
|
|
12341
|
+
cells: {} & {
|
|
12342
|
+
[k: string]: any;
|
|
12343
|
+
};
|
|
12344
|
+
toTop?: boolean | undefined;
|
|
12345
|
+
}>;
|
|
12346
|
+
export type smartsheetAddRowToSheetParamsType = z.infer<typeof smartsheetAddRowToSheetParamsSchema>;
|
|
12347
|
+
export declare const smartsheetAddRowToSheetOutputSchema: z.ZodObject<{
|
|
12348
|
+
success: z.ZodBoolean;
|
|
12349
|
+
error: z.ZodOptional<z.ZodString>;
|
|
12350
|
+
rowId: z.ZodOptional<z.ZodString>;
|
|
12351
|
+
}, "strip", z.ZodTypeAny, {
|
|
12352
|
+
success: boolean;
|
|
12353
|
+
error?: string | undefined;
|
|
12354
|
+
rowId?: string | undefined;
|
|
12355
|
+
}, {
|
|
12356
|
+
success: boolean;
|
|
12357
|
+
error?: string | undefined;
|
|
12358
|
+
rowId?: string | undefined;
|
|
12359
|
+
}>;
|
|
12360
|
+
export type smartsheetAddRowToSheetOutputType = z.infer<typeof smartsheetAddRowToSheetOutputSchema>;
|
|
12361
|
+
export type smartsheetAddRowToSheetFunction = ActionFunction<smartsheetAddRowToSheetParamsType, AuthParamsType, smartsheetAddRowToSheetOutputType>;
|
|
12362
|
+
export declare const smartsheetUpdateRowParamsSchema: z.ZodObject<{
|
|
12363
|
+
sheetId: z.ZodString;
|
|
12364
|
+
rowId: z.ZodString;
|
|
12365
|
+
cells: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
|
|
12366
|
+
}, "strip", z.ZodTypeAny, {
|
|
12367
|
+
sheetId: string;
|
|
12368
|
+
cells: {} & {
|
|
12369
|
+
[k: string]: any;
|
|
12370
|
+
};
|
|
12371
|
+
rowId: string;
|
|
12372
|
+
}, {
|
|
12373
|
+
sheetId: string;
|
|
12374
|
+
cells: {} & {
|
|
12375
|
+
[k: string]: any;
|
|
12376
|
+
};
|
|
12377
|
+
rowId: string;
|
|
12378
|
+
}>;
|
|
12379
|
+
export type smartsheetUpdateRowParamsType = z.infer<typeof smartsheetUpdateRowParamsSchema>;
|
|
12380
|
+
export declare const smartsheetUpdateRowOutputSchema: z.ZodObject<{
|
|
12381
|
+
success: z.ZodBoolean;
|
|
12382
|
+
error: z.ZodOptional<z.ZodString>;
|
|
12383
|
+
rowId: z.ZodOptional<z.ZodString>;
|
|
12384
|
+
}, "strip", z.ZodTypeAny, {
|
|
12385
|
+
success: boolean;
|
|
12386
|
+
error?: string | undefined;
|
|
12387
|
+
rowId?: string | undefined;
|
|
12388
|
+
}, {
|
|
12389
|
+
success: boolean;
|
|
12390
|
+
error?: string | undefined;
|
|
12391
|
+
rowId?: string | undefined;
|
|
12392
|
+
}>;
|
|
12393
|
+
export type smartsheetUpdateRowOutputType = z.infer<typeof smartsheetUpdateRowOutputSchema>;
|
|
12394
|
+
export type smartsheetUpdateRowFunction = ActionFunction<smartsheetUpdateRowParamsType, AuthParamsType, smartsheetUpdateRowOutputType>;
|