@credal/actions 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/actions/actionMapper.js +69 -1
  2. package/dist/actions/autogen/definitions.d.ts +5 -0
  3. package/dist/actions/autogen/definitions.js +132 -0
  4. package/dist/actions/autogen/templates.d.ts +11 -0
  5. package/dist/actions/autogen/templates.js +888 -0
  6. package/dist/actions/autogen/types.d.ts +997 -0
  7. package/dist/actions/autogen/types.js +290 -0
  8. package/dist/actions/definitions.js +35 -0
  9. package/dist/actions/groups.js +17 -1
  10. package/dist/actions/invokeMapper.d.ts +9 -0
  11. package/dist/actions/invokeMapper.js +33 -0
  12. package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
  13. package/dist/actions/providers/confluence/updatePage.js +43 -0
  14. package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
  15. package/dist/actions/providers/credal/callCopilot.js +36 -0
  16. package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +3 -0
  17. package/dist/actions/providers/google-oauth/listGmailThreads.js +98 -0
  18. package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +3 -0
  19. package/dist/actions/providers/google-oauth/searchGmailMessages.js +91 -0
  20. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
  21. package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
  22. package/dist/actions/providers/jira/createTicket.d.ts +3 -0
  23. package/dist/actions/providers/jira/createTicket.js +34 -0
  24. package/dist/actions/providers/math/index.d.ts +1 -0
  25. package/dist/actions/providers/math/index.js +37 -0
  26. package/dist/actions/providers/okta/addUserToGroup.d.ts +3 -0
  27. package/dist/actions/providers/okta/addUserToGroup.js +56 -0
  28. package/dist/actions/providers/okta/getOktaGroup.d.ts +3 -0
  29. package/dist/actions/providers/okta/getOktaGroup.js +73 -0
  30. package/dist/actions/providers/okta/getOktaUser.d.ts +3 -0
  31. package/dist/actions/providers/okta/getOktaUser.js +40 -0
  32. package/dist/actions/providers/okta/listMFA.d.ts +3 -0
  33. package/dist/actions/providers/okta/listMFA.js +52 -0
  34. package/dist/actions/providers/okta/listOktaGroupMembers.d.ts +3 -0
  35. package/dist/actions/providers/okta/listOktaGroupMembers.js +99 -0
  36. package/dist/actions/providers/okta/listOktaGroups.d.ts +3 -0
  37. package/dist/actions/providers/okta/listOktaGroups.js +92 -0
  38. package/dist/actions/providers/okta/listOktaUserGroups.d.ts +3 -0
  39. package/dist/actions/providers/okta/listOktaUserGroups.js +83 -0
  40. package/dist/actions/providers/okta/listOktaUsers.d.ts +3 -0
  41. package/dist/actions/providers/okta/listOktaUsers.js +100 -0
  42. package/dist/actions/providers/okta/removeUserFromGroup.d.ts +3 -0
  43. package/dist/actions/providers/okta/removeUserFromGroup.js +56 -0
  44. package/dist/actions/providers/okta/resetMFA.d.ts +3 -0
  45. package/dist/actions/providers/okta/resetMFA.js +62 -0
  46. package/dist/actions/providers/okta/resetPassword.d.ts +3 -0
  47. package/dist/actions/providers/okta/resetPassword.js +57 -0
  48. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
  49. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
  50. package/dist/actions/providers/slack/index.d.ts +1 -0
  51. package/dist/actions/providers/slack/index.js +37 -0
  52. package/dist/actions/providers/slack/listConversations.d.ts +3 -0
  53. package/dist/actions/providers/slack/listConversations.js +41 -0
  54. package/dist/actions/providers/slack/list_conversations.d.ts +3 -0
  55. package/dist/actions/providers/slack/list_conversations.js +60 -0
  56. package/dist/actions/providers/slack/summarizeChannel.d.ts +3 -0
  57. package/dist/actions/providers/slack/summarizeChannel.js +51 -0
  58. package/dist/actions/schema.js +6 -0
  59. package/dist/actions/types.js +2 -0
  60. package/dist/index.d.ts +1 -1
  61. package/dist/index.js +1 -1
  62. package/dist/main.js +11 -0
  63. package/package.json +1 -1
  64. package/dist/server.d.ts +0 -2
  65. package/dist/server.js +0 -8
@@ -3068,6 +3068,1003 @@ export declare const googlemailListGmailThreadsOutputSchema: z.ZodObject<{
3068
3068
  }>;
3069
3069
  export type googlemailListGmailThreadsOutputType = z.infer<typeof googlemailListGmailThreadsOutputSchema>;
3070
3070
  export type googlemailListGmailThreadsFunction = ActionFunction<googlemailListGmailThreadsParamsType, AuthParamsType, googlemailListGmailThreadsOutputType>;
3071
+ export declare const oktaGetOktaUserParamsSchema: z.ZodObject<{
3072
+ userId: z.ZodString;
3073
+ }, "strip", z.ZodTypeAny, {
3074
+ userId: string;
3075
+ }, {
3076
+ userId: string;
3077
+ }>;
3078
+ export type oktaGetOktaUserParamsType = z.infer<typeof oktaGetOktaUserParamsSchema>;
3079
+ export declare const oktaGetOktaUserOutputSchema: z.ZodObject<{
3080
+ success: z.ZodBoolean;
3081
+ user: z.ZodOptional<z.ZodObject<{
3082
+ id: z.ZodString;
3083
+ status: z.ZodOptional<z.ZodString>;
3084
+ created: z.ZodOptional<z.ZodString>;
3085
+ activated: z.ZodOptional<z.ZodString>;
3086
+ statusChanged: z.ZodOptional<z.ZodString>;
3087
+ lastLogin: z.ZodOptional<z.ZodString>;
3088
+ lastUpdated: z.ZodOptional<z.ZodString>;
3089
+ passwordChanged: z.ZodOptional<z.ZodString>;
3090
+ profile: z.ZodOptional<z.ZodObject<{
3091
+ login: z.ZodOptional<z.ZodString>;
3092
+ firstName: z.ZodOptional<z.ZodString>;
3093
+ lastName: z.ZodOptional<z.ZodString>;
3094
+ nickName: z.ZodOptional<z.ZodString>;
3095
+ displayName: z.ZodOptional<z.ZodString>;
3096
+ email: z.ZodOptional<z.ZodString>;
3097
+ secondEmail: z.ZodOptional<z.ZodString>;
3098
+ profileUrl: z.ZodOptional<z.ZodString>;
3099
+ preferredLanguage: z.ZodOptional<z.ZodString>;
3100
+ userType: z.ZodOptional<z.ZodString>;
3101
+ organization: z.ZodOptional<z.ZodString>;
3102
+ title: z.ZodOptional<z.ZodString>;
3103
+ division: z.ZodOptional<z.ZodString>;
3104
+ department: z.ZodOptional<z.ZodString>;
3105
+ costCenter: z.ZodOptional<z.ZodString>;
3106
+ employeeNumber: z.ZodOptional<z.ZodString>;
3107
+ mobilePhone: z.ZodOptional<z.ZodString>;
3108
+ primaryPhone: z.ZodOptional<z.ZodString>;
3109
+ streetAddress: z.ZodOptional<z.ZodString>;
3110
+ city: z.ZodOptional<z.ZodString>;
3111
+ state: z.ZodOptional<z.ZodString>;
3112
+ zipCode: z.ZodOptional<z.ZodString>;
3113
+ countryCode: z.ZodOptional<z.ZodString>;
3114
+ }, "strip", z.ZodTypeAny, {
3115
+ title?: string | undefined;
3116
+ email?: string | undefined;
3117
+ firstName?: string | undefined;
3118
+ lastName?: string | undefined;
3119
+ state?: string | undefined;
3120
+ displayName?: string | undefined;
3121
+ login?: string | undefined;
3122
+ nickName?: string | undefined;
3123
+ secondEmail?: string | undefined;
3124
+ profileUrl?: string | undefined;
3125
+ preferredLanguage?: string | undefined;
3126
+ userType?: string | undefined;
3127
+ organization?: string | undefined;
3128
+ division?: string | undefined;
3129
+ department?: string | undefined;
3130
+ costCenter?: string | undefined;
3131
+ employeeNumber?: string | undefined;
3132
+ mobilePhone?: string | undefined;
3133
+ primaryPhone?: string | undefined;
3134
+ streetAddress?: string | undefined;
3135
+ city?: string | undefined;
3136
+ zipCode?: string | undefined;
3137
+ countryCode?: string | undefined;
3138
+ }, {
3139
+ title?: string | undefined;
3140
+ email?: string | undefined;
3141
+ firstName?: string | undefined;
3142
+ lastName?: string | undefined;
3143
+ state?: string | undefined;
3144
+ displayName?: string | undefined;
3145
+ login?: string | undefined;
3146
+ nickName?: string | undefined;
3147
+ secondEmail?: string | undefined;
3148
+ profileUrl?: string | undefined;
3149
+ preferredLanguage?: string | undefined;
3150
+ userType?: string | undefined;
3151
+ organization?: string | undefined;
3152
+ division?: string | undefined;
3153
+ department?: string | undefined;
3154
+ costCenter?: string | undefined;
3155
+ employeeNumber?: string | undefined;
3156
+ mobilePhone?: string | undefined;
3157
+ primaryPhone?: string | undefined;
3158
+ streetAddress?: string | undefined;
3159
+ city?: string | undefined;
3160
+ zipCode?: string | undefined;
3161
+ countryCode?: string | undefined;
3162
+ }>>;
3163
+ credentials: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
3164
+ _links: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
3165
+ }, "strip", z.ZodTypeAny, {
3166
+ id: string;
3167
+ status?: string | undefined;
3168
+ profile?: {
3169
+ title?: string | undefined;
3170
+ email?: string | undefined;
3171
+ firstName?: string | undefined;
3172
+ lastName?: string | undefined;
3173
+ state?: string | undefined;
3174
+ displayName?: string | undefined;
3175
+ login?: string | undefined;
3176
+ nickName?: string | undefined;
3177
+ secondEmail?: string | undefined;
3178
+ profileUrl?: string | undefined;
3179
+ preferredLanguage?: string | undefined;
3180
+ userType?: string | undefined;
3181
+ organization?: string | undefined;
3182
+ division?: string | undefined;
3183
+ department?: string | undefined;
3184
+ costCenter?: string | undefined;
3185
+ employeeNumber?: string | undefined;
3186
+ mobilePhone?: string | undefined;
3187
+ primaryPhone?: string | undefined;
3188
+ streetAddress?: string | undefined;
3189
+ city?: string | undefined;
3190
+ zipCode?: string | undefined;
3191
+ countryCode?: string | undefined;
3192
+ } | undefined;
3193
+ created?: string | undefined;
3194
+ activated?: string | undefined;
3195
+ statusChanged?: string | undefined;
3196
+ lastLogin?: string | undefined;
3197
+ lastUpdated?: string | undefined;
3198
+ passwordChanged?: string | undefined;
3199
+ credentials?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3200
+ _links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3201
+ }, {
3202
+ id: string;
3203
+ status?: string | undefined;
3204
+ profile?: {
3205
+ title?: string | undefined;
3206
+ email?: string | undefined;
3207
+ firstName?: string | undefined;
3208
+ lastName?: string | undefined;
3209
+ state?: string | undefined;
3210
+ displayName?: string | undefined;
3211
+ login?: string | undefined;
3212
+ nickName?: string | undefined;
3213
+ secondEmail?: string | undefined;
3214
+ profileUrl?: string | undefined;
3215
+ preferredLanguage?: string | undefined;
3216
+ userType?: string | undefined;
3217
+ organization?: string | undefined;
3218
+ division?: string | undefined;
3219
+ department?: string | undefined;
3220
+ costCenter?: string | undefined;
3221
+ employeeNumber?: string | undefined;
3222
+ mobilePhone?: string | undefined;
3223
+ primaryPhone?: string | undefined;
3224
+ streetAddress?: string | undefined;
3225
+ city?: string | undefined;
3226
+ zipCode?: string | undefined;
3227
+ countryCode?: string | undefined;
3228
+ } | undefined;
3229
+ created?: string | undefined;
3230
+ activated?: string | undefined;
3231
+ statusChanged?: string | undefined;
3232
+ lastLogin?: string | undefined;
3233
+ lastUpdated?: string | undefined;
3234
+ passwordChanged?: string | undefined;
3235
+ credentials?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
3236
+ _links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
3237
+ }>>;
3238
+ error: z.ZodOptional<z.ZodString>;
3239
+ }, "strip", z.ZodTypeAny, {
3240
+ success: boolean;
3241
+ error?: string | undefined;
3242
+ user?: {
3243
+ id: string;
3244
+ status?: string | undefined;
3245
+ profile?: {
3246
+ title?: string | undefined;
3247
+ email?: string | undefined;
3248
+ firstName?: string | undefined;
3249
+ lastName?: string | undefined;
3250
+ state?: string | undefined;
3251
+ displayName?: string | undefined;
3252
+ login?: string | undefined;
3253
+ nickName?: string | undefined;
3254
+ secondEmail?: string | undefined;
3255
+ profileUrl?: string | undefined;
3256
+ preferredLanguage?: string | undefined;
3257
+ userType?: string | undefined;
3258
+ organization?: string | undefined;
3259
+ division?: string | undefined;
3260
+ department?: string | undefined;
3261
+ costCenter?: string | undefined;
3262
+ employeeNumber?: string | undefined;
3263
+ mobilePhone?: string | undefined;
3264
+ primaryPhone?: string | undefined;
3265
+ streetAddress?: string | undefined;
3266
+ city?: string | undefined;
3267
+ zipCode?: string | undefined;
3268
+ countryCode?: string | undefined;
3269
+ } | undefined;
3270
+ created?: string | undefined;
3271
+ activated?: string | undefined;
3272
+ statusChanged?: string | undefined;
3273
+ lastLogin?: string | undefined;
3274
+ lastUpdated?: string | undefined;
3275
+ passwordChanged?: string | undefined;
3276
+ credentials?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3277
+ _links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3278
+ } | undefined;
3279
+ }, {
3280
+ success: boolean;
3281
+ error?: string | undefined;
3282
+ user?: {
3283
+ id: string;
3284
+ status?: string | undefined;
3285
+ profile?: {
3286
+ title?: string | undefined;
3287
+ email?: string | undefined;
3288
+ firstName?: string | undefined;
3289
+ lastName?: string | undefined;
3290
+ state?: string | undefined;
3291
+ displayName?: string | undefined;
3292
+ login?: string | undefined;
3293
+ nickName?: string | undefined;
3294
+ secondEmail?: string | undefined;
3295
+ profileUrl?: string | undefined;
3296
+ preferredLanguage?: string | undefined;
3297
+ userType?: string | undefined;
3298
+ organization?: string | undefined;
3299
+ division?: string | undefined;
3300
+ department?: string | undefined;
3301
+ costCenter?: string | undefined;
3302
+ employeeNumber?: string | undefined;
3303
+ mobilePhone?: string | undefined;
3304
+ primaryPhone?: string | undefined;
3305
+ streetAddress?: string | undefined;
3306
+ city?: string | undefined;
3307
+ zipCode?: string | undefined;
3308
+ countryCode?: string | undefined;
3309
+ } | undefined;
3310
+ created?: string | undefined;
3311
+ activated?: string | undefined;
3312
+ statusChanged?: string | undefined;
3313
+ lastLogin?: string | undefined;
3314
+ lastUpdated?: string | undefined;
3315
+ passwordChanged?: string | undefined;
3316
+ credentials?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
3317
+ _links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
3318
+ } | undefined;
3319
+ }>;
3320
+ export type oktaGetOktaUserOutputType = z.infer<typeof oktaGetOktaUserOutputSchema>;
3321
+ export type oktaGetOktaUserFunction = ActionFunction<oktaGetOktaUserParamsType, AuthParamsType, oktaGetOktaUserOutputType>;
3322
+ export declare const oktaListOktaUserGroupsParamsSchema: z.ZodObject<{
3323
+ userId: z.ZodString;
3324
+ maxResults: z.ZodOptional<z.ZodNumber>;
3325
+ }, "strip", z.ZodTypeAny, {
3326
+ userId: string;
3327
+ maxResults?: number | undefined;
3328
+ }, {
3329
+ userId: string;
3330
+ maxResults?: number | undefined;
3331
+ }>;
3332
+ export type oktaListOktaUserGroupsParamsType = z.infer<typeof oktaListOktaUserGroupsParamsSchema>;
3333
+ export declare const oktaListOktaUserGroupsOutputSchema: z.ZodObject<{
3334
+ success: z.ZodBoolean;
3335
+ groups: z.ZodOptional<z.ZodArray<z.ZodObject<{
3336
+ id: z.ZodString;
3337
+ profile: z.ZodObject<{
3338
+ name: z.ZodString;
3339
+ description: z.ZodString;
3340
+ }, "strip", z.ZodTypeAny, {
3341
+ description: string;
3342
+ name: string;
3343
+ }, {
3344
+ description: string;
3345
+ name: string;
3346
+ }>;
3347
+ }, "strip", z.ZodTypeAny, {
3348
+ id: string;
3349
+ profile: {
3350
+ description: string;
3351
+ name: string;
3352
+ };
3353
+ }, {
3354
+ id: string;
3355
+ profile: {
3356
+ description: string;
3357
+ name: string;
3358
+ };
3359
+ }>, "many">>;
3360
+ error: z.ZodOptional<z.ZodString>;
3361
+ }, "strip", z.ZodTypeAny, {
3362
+ success: boolean;
3363
+ error?: string | undefined;
3364
+ groups?: {
3365
+ id: string;
3366
+ profile: {
3367
+ description: string;
3368
+ name: string;
3369
+ };
3370
+ }[] | undefined;
3371
+ }, {
3372
+ success: boolean;
3373
+ error?: string | undefined;
3374
+ groups?: {
3375
+ id: string;
3376
+ profile: {
3377
+ description: string;
3378
+ name: string;
3379
+ };
3380
+ }[] | undefined;
3381
+ }>;
3382
+ export type oktaListOktaUserGroupsOutputType = z.infer<typeof oktaListOktaUserGroupsOutputSchema>;
3383
+ export type oktaListOktaUserGroupsFunction = ActionFunction<oktaListOktaUserGroupsParamsType, AuthParamsType, oktaListOktaUserGroupsOutputType>;
3384
+ export declare const oktaListOktaGroupsParamsSchema: z.ZodObject<{
3385
+ searchQuery: z.ZodOptional<z.ZodString>;
3386
+ maxResults: z.ZodOptional<z.ZodNumber>;
3387
+ }, "strip", z.ZodTypeAny, {
3388
+ maxResults?: number | undefined;
3389
+ searchQuery?: string | undefined;
3390
+ }, {
3391
+ maxResults?: number | undefined;
3392
+ searchQuery?: string | undefined;
3393
+ }>;
3394
+ export type oktaListOktaGroupsParamsType = z.infer<typeof oktaListOktaGroupsParamsSchema>;
3395
+ export declare const oktaListOktaGroupsOutputSchema: z.ZodObject<{
3396
+ success: z.ZodBoolean;
3397
+ groups: z.ZodOptional<z.ZodArray<z.ZodObject<{
3398
+ id: z.ZodString;
3399
+ profile: z.ZodObject<{
3400
+ name: z.ZodString;
3401
+ description: z.ZodString;
3402
+ }, "strip", z.ZodTypeAny, {
3403
+ description: string;
3404
+ name: string;
3405
+ }, {
3406
+ description: string;
3407
+ name: string;
3408
+ }>;
3409
+ }, "strip", z.ZodTypeAny, {
3410
+ id: string;
3411
+ profile: {
3412
+ description: string;
3413
+ name: string;
3414
+ };
3415
+ }, {
3416
+ id: string;
3417
+ profile: {
3418
+ description: string;
3419
+ name: string;
3420
+ };
3421
+ }>, "many">>;
3422
+ error: z.ZodOptional<z.ZodString>;
3423
+ }, "strip", z.ZodTypeAny, {
3424
+ success: boolean;
3425
+ error?: string | undefined;
3426
+ groups?: {
3427
+ id: string;
3428
+ profile: {
3429
+ description: string;
3430
+ name: string;
3431
+ };
3432
+ }[] | undefined;
3433
+ }, {
3434
+ success: boolean;
3435
+ error?: string | undefined;
3436
+ groups?: {
3437
+ id: string;
3438
+ profile: {
3439
+ description: string;
3440
+ name: string;
3441
+ };
3442
+ }[] | undefined;
3443
+ }>;
3444
+ export type oktaListOktaGroupsOutputType = z.infer<typeof oktaListOktaGroupsOutputSchema>;
3445
+ export type oktaListOktaGroupsFunction = ActionFunction<oktaListOktaGroupsParamsType, AuthParamsType, oktaListOktaGroupsOutputType>;
3446
+ export declare const oktaGetOktaGroupParamsSchema: z.ZodObject<{
3447
+ groupId: z.ZodString;
3448
+ }, "strip", z.ZodTypeAny, {
3449
+ groupId: string;
3450
+ }, {
3451
+ groupId: string;
3452
+ }>;
3453
+ export type oktaGetOktaGroupParamsType = z.infer<typeof oktaGetOktaGroupParamsSchema>;
3454
+ export declare const oktaGetOktaGroupOutputSchema: z.ZodObject<{
3455
+ success: z.ZodBoolean;
3456
+ group: z.ZodOptional<z.ZodObject<{
3457
+ id: z.ZodString;
3458
+ created: z.ZodOptional<z.ZodString>;
3459
+ lastUpdated: z.ZodOptional<z.ZodString>;
3460
+ lastMembershipUpdated: z.ZodOptional<z.ZodString>;
3461
+ objectClass: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3462
+ type: z.ZodOptional<z.ZodString>;
3463
+ profile: z.ZodObject<{
3464
+ name: z.ZodString;
3465
+ description: z.ZodString;
3466
+ }, "strip", z.ZodTypeAny, {
3467
+ description: string;
3468
+ name: string;
3469
+ }, {
3470
+ description: string;
3471
+ name: string;
3472
+ }>;
3473
+ _links: z.ZodOptional<z.ZodObject<{
3474
+ logo: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>, "many">>;
3475
+ users: z.ZodOptional<z.ZodObject<{
3476
+ href: z.ZodOptional<z.ZodString>;
3477
+ }, "strip", z.ZodTypeAny, {
3478
+ href?: string | undefined;
3479
+ }, {
3480
+ href?: string | undefined;
3481
+ }>>;
3482
+ apps: z.ZodOptional<z.ZodObject<{
3483
+ href: z.ZodOptional<z.ZodString>;
3484
+ }, "strip", z.ZodTypeAny, {
3485
+ href?: string | undefined;
3486
+ }, {
3487
+ href?: string | undefined;
3488
+ }>>;
3489
+ }, "strip", z.ZodTypeAny, {
3490
+ users?: {
3491
+ href?: string | undefined;
3492
+ } | undefined;
3493
+ logo?: z.objectOutputType<{}, z.ZodAny, "strip">[] | undefined;
3494
+ apps?: {
3495
+ href?: string | undefined;
3496
+ } | undefined;
3497
+ }, {
3498
+ users?: {
3499
+ href?: string | undefined;
3500
+ } | undefined;
3501
+ logo?: z.objectInputType<{}, z.ZodAny, "strip">[] | undefined;
3502
+ apps?: {
3503
+ href?: string | undefined;
3504
+ } | undefined;
3505
+ }>>;
3506
+ }, "strip", z.ZodTypeAny, {
3507
+ id: string;
3508
+ profile: {
3509
+ description: string;
3510
+ name: string;
3511
+ };
3512
+ type?: string | undefined;
3513
+ created?: string | undefined;
3514
+ lastUpdated?: string | undefined;
3515
+ _links?: {
3516
+ users?: {
3517
+ href?: string | undefined;
3518
+ } | undefined;
3519
+ logo?: z.objectOutputType<{}, z.ZodAny, "strip">[] | undefined;
3520
+ apps?: {
3521
+ href?: string | undefined;
3522
+ } | undefined;
3523
+ } | undefined;
3524
+ lastMembershipUpdated?: string | undefined;
3525
+ objectClass?: string[] | undefined;
3526
+ }, {
3527
+ id: string;
3528
+ profile: {
3529
+ description: string;
3530
+ name: string;
3531
+ };
3532
+ type?: string | undefined;
3533
+ created?: string | undefined;
3534
+ lastUpdated?: string | undefined;
3535
+ _links?: {
3536
+ users?: {
3537
+ href?: string | undefined;
3538
+ } | undefined;
3539
+ logo?: z.objectInputType<{}, z.ZodAny, "strip">[] | undefined;
3540
+ apps?: {
3541
+ href?: string | undefined;
3542
+ } | undefined;
3543
+ } | undefined;
3544
+ lastMembershipUpdated?: string | undefined;
3545
+ objectClass?: string[] | undefined;
3546
+ }>>;
3547
+ error: z.ZodOptional<z.ZodString>;
3548
+ }, "strip", z.ZodTypeAny, {
3549
+ success: boolean;
3550
+ error?: string | undefined;
3551
+ group?: {
3552
+ id: string;
3553
+ profile: {
3554
+ description: string;
3555
+ name: string;
3556
+ };
3557
+ type?: string | undefined;
3558
+ created?: string | undefined;
3559
+ lastUpdated?: string | undefined;
3560
+ _links?: {
3561
+ users?: {
3562
+ href?: string | undefined;
3563
+ } | undefined;
3564
+ logo?: z.objectOutputType<{}, z.ZodAny, "strip">[] | undefined;
3565
+ apps?: {
3566
+ href?: string | undefined;
3567
+ } | undefined;
3568
+ } | undefined;
3569
+ lastMembershipUpdated?: string | undefined;
3570
+ objectClass?: string[] | undefined;
3571
+ } | undefined;
3572
+ }, {
3573
+ success: boolean;
3574
+ error?: string | undefined;
3575
+ group?: {
3576
+ id: string;
3577
+ profile: {
3578
+ description: string;
3579
+ name: string;
3580
+ };
3581
+ type?: string | undefined;
3582
+ created?: string | undefined;
3583
+ lastUpdated?: string | undefined;
3584
+ _links?: {
3585
+ users?: {
3586
+ href?: string | undefined;
3587
+ } | undefined;
3588
+ logo?: z.objectInputType<{}, z.ZodAny, "strip">[] | undefined;
3589
+ apps?: {
3590
+ href?: string | undefined;
3591
+ } | undefined;
3592
+ } | undefined;
3593
+ lastMembershipUpdated?: string | undefined;
3594
+ objectClass?: string[] | undefined;
3595
+ } | undefined;
3596
+ }>;
3597
+ export type oktaGetOktaGroupOutputType = z.infer<typeof oktaGetOktaGroupOutputSchema>;
3598
+ export type oktaGetOktaGroupFunction = ActionFunction<oktaGetOktaGroupParamsType, AuthParamsType, oktaGetOktaGroupOutputType>;
3599
+ export declare const oktaListOktaGroupMembersParamsSchema: z.ZodObject<{
3600
+ groupId: z.ZodString;
3601
+ maxResults: z.ZodOptional<z.ZodNumber>;
3602
+ }, "strip", z.ZodTypeAny, {
3603
+ groupId: string;
3604
+ maxResults?: number | undefined;
3605
+ }, {
3606
+ groupId: string;
3607
+ maxResults?: number | undefined;
3608
+ }>;
3609
+ export type oktaListOktaGroupMembersParamsType = z.infer<typeof oktaListOktaGroupMembersParamsSchema>;
3610
+ export declare const oktaListOktaGroupMembersOutputSchema: z.ZodObject<{
3611
+ success: z.ZodBoolean;
3612
+ members: z.ZodOptional<z.ZodArray<z.ZodObject<{
3613
+ id: z.ZodOptional<z.ZodString>;
3614
+ status: z.ZodOptional<z.ZodString>;
3615
+ created: z.ZodOptional<z.ZodString>;
3616
+ activated: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3617
+ statusChanged: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3618
+ lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3619
+ lastUpdated: z.ZodOptional<z.ZodString>;
3620
+ passwordChanged: z.ZodOptional<z.ZodString>;
3621
+ type: z.ZodOptional<z.ZodObject<{
3622
+ id: z.ZodOptional<z.ZodString>;
3623
+ }, "strip", z.ZodTypeAny, {
3624
+ id?: string | undefined;
3625
+ }, {
3626
+ id?: string | undefined;
3627
+ }>>;
3628
+ profile: z.ZodOptional<z.ZodObject<{
3629
+ firstName: z.ZodOptional<z.ZodString>;
3630
+ lastName: z.ZodOptional<z.ZodString>;
3631
+ mobilePhone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3632
+ secondEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3633
+ login: z.ZodOptional<z.ZodString>;
3634
+ email: z.ZodOptional<z.ZodString>;
3635
+ }, "strip", z.ZodTypeAny, {
3636
+ email?: string | undefined;
3637
+ firstName?: string | undefined;
3638
+ lastName?: string | undefined;
3639
+ login?: string | undefined;
3640
+ secondEmail?: string | null | undefined;
3641
+ mobilePhone?: string | null | undefined;
3642
+ }, {
3643
+ email?: string | undefined;
3644
+ firstName?: string | undefined;
3645
+ lastName?: string | undefined;
3646
+ login?: string | undefined;
3647
+ secondEmail?: string | null | undefined;
3648
+ mobilePhone?: string | null | undefined;
3649
+ }>>;
3650
+ }, "strip", z.ZodTypeAny, {
3651
+ type?: {
3652
+ id?: string | undefined;
3653
+ } | undefined;
3654
+ status?: string | undefined;
3655
+ id?: string | undefined;
3656
+ profile?: {
3657
+ email?: string | undefined;
3658
+ firstName?: string | undefined;
3659
+ lastName?: string | undefined;
3660
+ login?: string | undefined;
3661
+ secondEmail?: string | null | undefined;
3662
+ mobilePhone?: string | null | undefined;
3663
+ } | undefined;
3664
+ created?: string | undefined;
3665
+ activated?: string | null | undefined;
3666
+ statusChanged?: string | null | undefined;
3667
+ lastLogin?: string | null | undefined;
3668
+ lastUpdated?: string | undefined;
3669
+ passwordChanged?: string | undefined;
3670
+ }, {
3671
+ type?: {
3672
+ id?: string | undefined;
3673
+ } | undefined;
3674
+ status?: string | undefined;
3675
+ id?: string | undefined;
3676
+ profile?: {
3677
+ email?: string | undefined;
3678
+ firstName?: string | undefined;
3679
+ lastName?: string | undefined;
3680
+ login?: string | undefined;
3681
+ secondEmail?: string | null | undefined;
3682
+ mobilePhone?: string | null | undefined;
3683
+ } | undefined;
3684
+ created?: string | undefined;
3685
+ activated?: string | null | undefined;
3686
+ statusChanged?: string | null | undefined;
3687
+ lastLogin?: string | null | undefined;
3688
+ lastUpdated?: string | undefined;
3689
+ passwordChanged?: string | undefined;
3690
+ }>, "many">>;
3691
+ error: z.ZodOptional<z.ZodString>;
3692
+ }, "strip", z.ZodTypeAny, {
3693
+ success: boolean;
3694
+ error?: string | undefined;
3695
+ members?: {
3696
+ type?: {
3697
+ id?: string | undefined;
3698
+ } | undefined;
3699
+ status?: string | undefined;
3700
+ id?: string | undefined;
3701
+ profile?: {
3702
+ email?: string | undefined;
3703
+ firstName?: string | undefined;
3704
+ lastName?: string | undefined;
3705
+ login?: string | undefined;
3706
+ secondEmail?: string | null | undefined;
3707
+ mobilePhone?: string | null | undefined;
3708
+ } | undefined;
3709
+ created?: string | undefined;
3710
+ activated?: string | null | undefined;
3711
+ statusChanged?: string | null | undefined;
3712
+ lastLogin?: string | null | undefined;
3713
+ lastUpdated?: string | undefined;
3714
+ passwordChanged?: string | undefined;
3715
+ }[] | undefined;
3716
+ }, {
3717
+ success: boolean;
3718
+ error?: string | undefined;
3719
+ members?: {
3720
+ type?: {
3721
+ id?: string | undefined;
3722
+ } | undefined;
3723
+ status?: string | undefined;
3724
+ id?: string | undefined;
3725
+ profile?: {
3726
+ email?: string | undefined;
3727
+ firstName?: string | undefined;
3728
+ lastName?: string | undefined;
3729
+ login?: string | undefined;
3730
+ secondEmail?: string | null | undefined;
3731
+ mobilePhone?: string | null | undefined;
3732
+ } | undefined;
3733
+ created?: string | undefined;
3734
+ activated?: string | null | undefined;
3735
+ statusChanged?: string | null | undefined;
3736
+ lastLogin?: string | null | undefined;
3737
+ lastUpdated?: string | undefined;
3738
+ passwordChanged?: string | undefined;
3739
+ }[] | undefined;
3740
+ }>;
3741
+ export type oktaListOktaGroupMembersOutputType = z.infer<typeof oktaListOktaGroupMembersOutputSchema>;
3742
+ export type oktaListOktaGroupMembersFunction = ActionFunction<oktaListOktaGroupMembersParamsType, AuthParamsType, oktaListOktaGroupMembersOutputType>;
3743
+ export declare const oktaAddUserToGroupParamsSchema: z.ZodObject<{
3744
+ groupId: z.ZodString;
3745
+ userId: z.ZodString;
3746
+ }, "strip", z.ZodTypeAny, {
3747
+ userId: string;
3748
+ groupId: string;
3749
+ }, {
3750
+ userId: string;
3751
+ groupId: string;
3752
+ }>;
3753
+ export type oktaAddUserToGroupParamsType = z.infer<typeof oktaAddUserToGroupParamsSchema>;
3754
+ export declare const oktaAddUserToGroupOutputSchema: z.ZodObject<{
3755
+ success: z.ZodBoolean;
3756
+ error: z.ZodOptional<z.ZodString>;
3757
+ }, "strip", z.ZodTypeAny, {
3758
+ success: boolean;
3759
+ error?: string | undefined;
3760
+ }, {
3761
+ success: boolean;
3762
+ error?: string | undefined;
3763
+ }>;
3764
+ export type oktaAddUserToGroupOutputType = z.infer<typeof oktaAddUserToGroupOutputSchema>;
3765
+ export type oktaAddUserToGroupFunction = ActionFunction<oktaAddUserToGroupParamsType, AuthParamsType, oktaAddUserToGroupOutputType>;
3766
+ export declare const oktaRemoveUserFromGroupParamsSchema: z.ZodObject<{
3767
+ groupId: z.ZodString;
3768
+ userId: z.ZodString;
3769
+ }, "strip", z.ZodTypeAny, {
3770
+ userId: string;
3771
+ groupId: string;
3772
+ }, {
3773
+ userId: string;
3774
+ groupId: string;
3775
+ }>;
3776
+ export type oktaRemoveUserFromGroupParamsType = z.infer<typeof oktaRemoveUserFromGroupParamsSchema>;
3777
+ export declare const oktaRemoveUserFromGroupOutputSchema: z.ZodObject<{
3778
+ success: z.ZodBoolean;
3779
+ error: z.ZodOptional<z.ZodString>;
3780
+ }, "strip", z.ZodTypeAny, {
3781
+ success: boolean;
3782
+ error?: string | undefined;
3783
+ }, {
3784
+ success: boolean;
3785
+ error?: string | undefined;
3786
+ }>;
3787
+ export type oktaRemoveUserFromGroupOutputType = z.infer<typeof oktaRemoveUserFromGroupOutputSchema>;
3788
+ export type oktaRemoveUserFromGroupFunction = ActionFunction<oktaRemoveUserFromGroupParamsType, AuthParamsType, oktaRemoveUserFromGroupOutputType>;
3789
+ export declare const oktaListOktaUsersParamsSchema: z.ZodObject<{
3790
+ searchQuery: z.ZodOptional<z.ZodString>;
3791
+ maxResults: z.ZodOptional<z.ZodNumber>;
3792
+ }, "strip", z.ZodTypeAny, {
3793
+ maxResults?: number | undefined;
3794
+ searchQuery?: string | undefined;
3795
+ }, {
3796
+ maxResults?: number | undefined;
3797
+ searchQuery?: string | undefined;
3798
+ }>;
3799
+ export type oktaListOktaUsersParamsType = z.infer<typeof oktaListOktaUsersParamsSchema>;
3800
+ export declare const oktaListOktaUsersOutputSchema: z.ZodObject<{
3801
+ success: z.ZodBoolean;
3802
+ users: z.ZodOptional<z.ZodArray<z.ZodObject<{
3803
+ id: z.ZodString;
3804
+ status: z.ZodOptional<z.ZodString>;
3805
+ created: z.ZodOptional<z.ZodString>;
3806
+ activated: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3807
+ statusChanged: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3808
+ lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3809
+ lastUpdated: z.ZodOptional<z.ZodString>;
3810
+ passwordChanged: z.ZodOptional<z.ZodString>;
3811
+ type: z.ZodOptional<z.ZodObject<{
3812
+ id: z.ZodOptional<z.ZodString>;
3813
+ }, "strip", z.ZodTypeAny, {
3814
+ id?: string | undefined;
3815
+ }, {
3816
+ id?: string | undefined;
3817
+ }>>;
3818
+ profile: z.ZodObject<{
3819
+ firstName: z.ZodOptional<z.ZodString>;
3820
+ lastName: z.ZodOptional<z.ZodString>;
3821
+ mobilePhone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3822
+ secondEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3823
+ login: z.ZodOptional<z.ZodString>;
3824
+ email: z.ZodOptional<z.ZodString>;
3825
+ }, "strip", z.ZodTypeAny, {
3826
+ email?: string | undefined;
3827
+ firstName?: string | undefined;
3828
+ lastName?: string | undefined;
3829
+ login?: string | undefined;
3830
+ secondEmail?: string | null | undefined;
3831
+ mobilePhone?: string | null | undefined;
3832
+ }, {
3833
+ email?: string | undefined;
3834
+ firstName?: string | undefined;
3835
+ lastName?: string | undefined;
3836
+ login?: string | undefined;
3837
+ secondEmail?: string | null | undefined;
3838
+ mobilePhone?: string | null | undefined;
3839
+ }>;
3840
+ realmId: z.ZodOptional<z.ZodString>;
3841
+ }, "strip", z.ZodTypeAny, {
3842
+ id: string;
3843
+ profile: {
3844
+ email?: string | undefined;
3845
+ firstName?: string | undefined;
3846
+ lastName?: string | undefined;
3847
+ login?: string | undefined;
3848
+ secondEmail?: string | null | undefined;
3849
+ mobilePhone?: string | null | undefined;
3850
+ };
3851
+ type?: {
3852
+ id?: string | undefined;
3853
+ } | undefined;
3854
+ status?: string | undefined;
3855
+ created?: string | undefined;
3856
+ activated?: string | null | undefined;
3857
+ statusChanged?: string | null | undefined;
3858
+ lastLogin?: string | null | undefined;
3859
+ lastUpdated?: string | undefined;
3860
+ passwordChanged?: string | undefined;
3861
+ realmId?: string | undefined;
3862
+ }, {
3863
+ id: string;
3864
+ profile: {
3865
+ email?: string | undefined;
3866
+ firstName?: string | undefined;
3867
+ lastName?: string | undefined;
3868
+ login?: string | undefined;
3869
+ secondEmail?: string | null | undefined;
3870
+ mobilePhone?: string | null | undefined;
3871
+ };
3872
+ type?: {
3873
+ id?: string | undefined;
3874
+ } | undefined;
3875
+ status?: string | undefined;
3876
+ created?: string | undefined;
3877
+ activated?: string | null | undefined;
3878
+ statusChanged?: string | null | undefined;
3879
+ lastLogin?: string | null | undefined;
3880
+ lastUpdated?: string | undefined;
3881
+ passwordChanged?: string | undefined;
3882
+ realmId?: string | undefined;
3883
+ }>, "many">>;
3884
+ error: z.ZodOptional<z.ZodString>;
3885
+ }, "strip", z.ZodTypeAny, {
3886
+ success: boolean;
3887
+ error?: string | undefined;
3888
+ users?: {
3889
+ id: string;
3890
+ profile: {
3891
+ email?: string | undefined;
3892
+ firstName?: string | undefined;
3893
+ lastName?: string | undefined;
3894
+ login?: string | undefined;
3895
+ secondEmail?: string | null | undefined;
3896
+ mobilePhone?: string | null | undefined;
3897
+ };
3898
+ type?: {
3899
+ id?: string | undefined;
3900
+ } | undefined;
3901
+ status?: string | undefined;
3902
+ created?: string | undefined;
3903
+ activated?: string | null | undefined;
3904
+ statusChanged?: string | null | undefined;
3905
+ lastLogin?: string | null | undefined;
3906
+ lastUpdated?: string | undefined;
3907
+ passwordChanged?: string | undefined;
3908
+ realmId?: string | undefined;
3909
+ }[] | undefined;
3910
+ }, {
3911
+ success: boolean;
3912
+ error?: string | undefined;
3913
+ users?: {
3914
+ id: string;
3915
+ profile: {
3916
+ email?: string | undefined;
3917
+ firstName?: string | undefined;
3918
+ lastName?: string | undefined;
3919
+ login?: string | undefined;
3920
+ secondEmail?: string | null | undefined;
3921
+ mobilePhone?: string | null | undefined;
3922
+ };
3923
+ type?: {
3924
+ id?: string | undefined;
3925
+ } | undefined;
3926
+ status?: string | undefined;
3927
+ created?: string | undefined;
3928
+ activated?: string | null | undefined;
3929
+ statusChanged?: string | null | undefined;
3930
+ lastLogin?: string | null | undefined;
3931
+ lastUpdated?: string | undefined;
3932
+ passwordChanged?: string | undefined;
3933
+ realmId?: string | undefined;
3934
+ }[] | undefined;
3935
+ }>;
3936
+ export type oktaListOktaUsersOutputType = z.infer<typeof oktaListOktaUsersOutputSchema>;
3937
+ export type oktaListOktaUsersFunction = ActionFunction<oktaListOktaUsersParamsType, AuthParamsType, oktaListOktaUsersOutputType>;
3938
+ export declare const oktaResetMFAParamsSchema: z.ZodObject<{
3939
+ userId: z.ZodString;
3940
+ factorId: z.ZodOptional<z.ZodString>;
3941
+ }, "strip", z.ZodTypeAny, {
3942
+ userId: string;
3943
+ factorId?: string | undefined;
3944
+ }, {
3945
+ userId: string;
3946
+ factorId?: string | undefined;
3947
+ }>;
3948
+ export type oktaResetMFAParamsType = z.infer<typeof oktaResetMFAParamsSchema>;
3949
+ export declare const oktaResetMFAOutputSchema: z.ZodObject<{
3950
+ success: z.ZodBoolean;
3951
+ error: z.ZodOptional<z.ZodString>;
3952
+ }, "strip", z.ZodTypeAny, {
3953
+ success: boolean;
3954
+ error?: string | undefined;
3955
+ }, {
3956
+ success: boolean;
3957
+ error?: string | undefined;
3958
+ }>;
3959
+ export type oktaResetMFAOutputType = z.infer<typeof oktaResetMFAOutputSchema>;
3960
+ export type oktaResetMFAFunction = ActionFunction<oktaResetMFAParamsType, AuthParamsType, oktaResetMFAOutputType>;
3961
+ export declare const oktaListMFAParamsSchema: z.ZodObject<{
3962
+ userId: z.ZodString;
3963
+ }, "strip", z.ZodTypeAny, {
3964
+ userId: string;
3965
+ }, {
3966
+ userId: string;
3967
+ }>;
3968
+ export type oktaListMFAParamsType = z.infer<typeof oktaListMFAParamsSchema>;
3969
+ export declare const oktaListMFAOutputSchema: z.ZodObject<{
3970
+ success: z.ZodBoolean;
3971
+ factors: z.ZodOptional<z.ZodArray<z.ZodObject<{
3972
+ id: z.ZodString;
3973
+ factorType: z.ZodOptional<z.ZodString>;
3974
+ provider: z.ZodOptional<z.ZodString>;
3975
+ vendorName: z.ZodOptional<z.ZodString>;
3976
+ status: z.ZodOptional<z.ZodString>;
3977
+ created: z.ZodOptional<z.ZodString>;
3978
+ lastUpdated: z.ZodOptional<z.ZodString>;
3979
+ profile: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
3980
+ _links: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
3981
+ _embedded: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
3982
+ }, "strip", z.ZodTypeAny, {
3983
+ id: string;
3984
+ status?: string | undefined;
3985
+ provider?: string | undefined;
3986
+ profile?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3987
+ created?: string | undefined;
3988
+ lastUpdated?: string | undefined;
3989
+ _links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3990
+ factorType?: string | undefined;
3991
+ vendorName?: string | undefined;
3992
+ _embedded?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
3993
+ }, {
3994
+ id: string;
3995
+ status?: string | undefined;
3996
+ provider?: string | undefined;
3997
+ profile?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
3998
+ created?: string | undefined;
3999
+ lastUpdated?: string | undefined;
4000
+ _links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
4001
+ factorType?: string | undefined;
4002
+ vendorName?: string | undefined;
4003
+ _embedded?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
4004
+ }>, "many">>;
4005
+ error: z.ZodOptional<z.ZodString>;
4006
+ }, "strip", z.ZodTypeAny, {
4007
+ success: boolean;
4008
+ error?: string | undefined;
4009
+ factors?: {
4010
+ id: string;
4011
+ status?: string | undefined;
4012
+ provider?: string | undefined;
4013
+ profile?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
4014
+ created?: string | undefined;
4015
+ lastUpdated?: string | undefined;
4016
+ _links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
4017
+ factorType?: string | undefined;
4018
+ vendorName?: string | undefined;
4019
+ _embedded?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
4020
+ }[] | undefined;
4021
+ }, {
4022
+ success: boolean;
4023
+ error?: string | undefined;
4024
+ factors?: {
4025
+ id: string;
4026
+ status?: string | undefined;
4027
+ provider?: string | undefined;
4028
+ profile?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
4029
+ created?: string | undefined;
4030
+ lastUpdated?: string | undefined;
4031
+ _links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
4032
+ factorType?: string | undefined;
4033
+ vendorName?: string | undefined;
4034
+ _embedded?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
4035
+ }[] | undefined;
4036
+ }>;
4037
+ export type oktaListMFAOutputType = z.infer<typeof oktaListMFAOutputSchema>;
4038
+ export type oktaListMFAFunction = ActionFunction<oktaListMFAParamsType, AuthParamsType, oktaListMFAOutputType>;
4039
+ export declare const oktaResetPasswordParamsSchema: z.ZodObject<{
4040
+ userId: z.ZodString;
4041
+ sendEmail: z.ZodBoolean;
4042
+ revokeSessions: z.ZodOptional<z.ZodBoolean>;
4043
+ }, "strip", z.ZodTypeAny, {
4044
+ sendEmail: boolean;
4045
+ userId: string;
4046
+ revokeSessions?: boolean | undefined;
4047
+ }, {
4048
+ sendEmail: boolean;
4049
+ userId: string;
4050
+ revokeSessions?: boolean | undefined;
4051
+ }>;
4052
+ export type oktaResetPasswordParamsType = z.infer<typeof oktaResetPasswordParamsSchema>;
4053
+ export declare const oktaResetPasswordOutputSchema: z.ZodObject<{
4054
+ success: z.ZodBoolean;
4055
+ error: z.ZodOptional<z.ZodString>;
4056
+ resetPasswordUrl: z.ZodOptional<z.ZodString>;
4057
+ }, "strip", z.ZodTypeAny, {
4058
+ success: boolean;
4059
+ error?: string | undefined;
4060
+ resetPasswordUrl?: string | undefined;
4061
+ }, {
4062
+ success: boolean;
4063
+ error?: string | undefined;
4064
+ resetPasswordUrl?: string | undefined;
4065
+ }>;
4066
+ export type oktaResetPasswordOutputType = z.infer<typeof oktaResetPasswordOutputSchema>;
4067
+ export type oktaResetPasswordFunction = ActionFunction<oktaResetPasswordParamsType, AuthParamsType, oktaResetPasswordOutputType>;
3071
4068
  export declare const gongGetGongTranscriptsParamsSchema: z.ZodObject<{
3072
4069
  userRole: z.ZodString;
3073
4070
  trackers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;