@credal/actions 0.2.170 → 0.2.172
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 +7 -89
- package/dist/actions/autogen/templates.d.ts +1 -14
- package/dist/actions/autogen/templates.js +152 -1189
- package/dist/actions/autogen/types.d.ts +161 -1308
- package/dist/actions/autogen/types.js +11 -356
- package/dist/actions/groups.js +1 -14
- 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.js +2 -9
- package/dist/actions/providers/slack/sendDmFromBot.d.ts +11 -0
- package/dist/actions/providers/slack/sendDmFromBot.js +86 -0
- package/package.json +1 -1
- package/dist/actions/providers/confluence/updatePage.d.ts +0 -3
- package/dist/actions/providers/confluence/updatePage.js +0 -47
- package/dist/actions/providers/jamf/types.d.ts +0 -8
- package/dist/actions/providers/jamf/types.js +0 -7
|
@@ -24,9 +24,7 @@ export declare enum ProviderName {
|
|
|
24
24
|
GOOGLEOAUTH = "googleOauth",
|
|
25
25
|
GOOGLEMAIL = "googlemail",
|
|
26
26
|
GOOGLESEARCH = "googleSearch",
|
|
27
|
-
OKTA = "okta",
|
|
28
27
|
OKTAORG = "oktaOrg",
|
|
29
|
-
GONG = "gong",
|
|
30
28
|
FINNHUB = "finnhub",
|
|
31
29
|
LOOKER = "looker",
|
|
32
30
|
SALESFORCE = "salesforce",
|
|
@@ -760,6 +758,38 @@ export declare const asanaGetTasksDetailsOutputSchema: z.ZodObject<{
|
|
|
760
758
|
}>;
|
|
761
759
|
export type asanaGetTasksDetailsOutputType = z.infer<typeof asanaGetTasksDetailsOutputSchema>;
|
|
762
760
|
export type asanaGetTasksDetailsFunction = ActionFunction<asanaGetTasksDetailsParamsType, AuthParamsType, asanaGetTasksDetailsOutputType>;
|
|
761
|
+
export declare const slackSendDmFromBotParamsSchema: z.ZodObject<{
|
|
762
|
+
email: z.ZodString;
|
|
763
|
+
message: z.ZodString;
|
|
764
|
+
}, "strip", z.ZodTypeAny, {
|
|
765
|
+
message: string;
|
|
766
|
+
email: string;
|
|
767
|
+
}, {
|
|
768
|
+
message: string;
|
|
769
|
+
email: string;
|
|
770
|
+
}>;
|
|
771
|
+
export type slackSendDmFromBotParamsType = z.infer<typeof slackSendDmFromBotParamsSchema>;
|
|
772
|
+
export declare const slackSendDmFromBotOutputSchema: z.ZodObject<{
|
|
773
|
+
success: z.ZodBoolean;
|
|
774
|
+
error: z.ZodOptional<z.ZodString>;
|
|
775
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
776
|
+
timestamp: z.ZodOptional<z.ZodString>;
|
|
777
|
+
permalink: z.ZodOptional<z.ZodString>;
|
|
778
|
+
}, "strip", z.ZodTypeAny, {
|
|
779
|
+
success: boolean;
|
|
780
|
+
error?: string | undefined;
|
|
781
|
+
channelId?: string | undefined;
|
|
782
|
+
timestamp?: string | undefined;
|
|
783
|
+
permalink?: string | undefined;
|
|
784
|
+
}, {
|
|
785
|
+
success: boolean;
|
|
786
|
+
error?: string | undefined;
|
|
787
|
+
channelId?: string | undefined;
|
|
788
|
+
timestamp?: string | undefined;
|
|
789
|
+
permalink?: string | undefined;
|
|
790
|
+
}>;
|
|
791
|
+
export type slackSendDmFromBotOutputType = z.infer<typeof slackSendDmFromBotOutputSchema>;
|
|
792
|
+
export type slackSendDmFromBotFunction = ActionFunction<slackSendDmFromBotParamsType, AuthParamsType, slackSendDmFromBotOutputType>;
|
|
763
793
|
export declare const slackCreateChannelParamsSchema: z.ZodObject<{
|
|
764
794
|
channelName: z.ZodString;
|
|
765
795
|
isPrivate: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -795,12 +825,12 @@ export declare const slackSendMessageParamsSchema: z.ZodObject<{
|
|
|
795
825
|
message: z.ZodString;
|
|
796
826
|
}, "strip", z.ZodTypeAny, {
|
|
797
827
|
message: string;
|
|
798
|
-
channelName?: string | undefined;
|
|
799
828
|
channelId?: string | undefined;
|
|
829
|
+
channelName?: string | undefined;
|
|
800
830
|
}, {
|
|
801
831
|
message: string;
|
|
802
|
-
channelName?: string | undefined;
|
|
803
832
|
channelId?: string | undefined;
|
|
833
|
+
channelName?: string | undefined;
|
|
804
834
|
}>;
|
|
805
835
|
export type slackSendMessageParamsType = z.infer<typeof slackSendMessageParamsSchema>;
|
|
806
836
|
export declare const slackSendMessageOutputSchema: z.ZodObject<{
|
|
@@ -828,16 +858,16 @@ export declare const slackGetChannelMessagesParamsSchema: z.ZodObject<{
|
|
|
828
858
|
includeThreadReplies: z.ZodOptional<z.ZodBoolean>;
|
|
829
859
|
}, "strip", z.ZodTypeAny, {
|
|
830
860
|
oldest: string;
|
|
831
|
-
channelName?: string | undefined;
|
|
832
861
|
channelId?: string | undefined;
|
|
862
|
+
channelName?: string | undefined;
|
|
833
863
|
latest?: string | undefined;
|
|
834
864
|
limit?: number | undefined;
|
|
835
865
|
cursor?: string | undefined;
|
|
836
866
|
includeThreadReplies?: boolean | undefined;
|
|
837
867
|
}, {
|
|
838
868
|
oldest: string;
|
|
839
|
-
channelName?: string | undefined;
|
|
840
869
|
channelId?: string | undefined;
|
|
870
|
+
channelName?: string | undefined;
|
|
841
871
|
latest?: string | undefined;
|
|
842
872
|
limit?: number | undefined;
|
|
843
873
|
cursor?: string | undefined;
|
|
@@ -955,9 +985,9 @@ export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
|
|
|
955
985
|
userName?: string | undefined;
|
|
956
986
|
}[] | undefined;
|
|
957
987
|
text?: string | undefined;
|
|
988
|
+
permalink?: string | undefined;
|
|
958
989
|
userEmail?: string | undefined;
|
|
959
990
|
userName?: string | undefined;
|
|
960
|
-
permalink?: string | undefined;
|
|
961
991
|
context?: {
|
|
962
992
|
ts: string;
|
|
963
993
|
text?: string | undefined;
|
|
@@ -973,9 +1003,9 @@ export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
|
|
|
973
1003
|
userName?: string | undefined;
|
|
974
1004
|
}[] | undefined;
|
|
975
1005
|
text?: string | undefined;
|
|
1006
|
+
permalink?: string | undefined;
|
|
976
1007
|
userEmail?: string | undefined;
|
|
977
1008
|
userName?: string | undefined;
|
|
978
|
-
permalink?: string | undefined;
|
|
979
1009
|
context?: {
|
|
980
1010
|
ts: string;
|
|
981
1011
|
text?: string | undefined;
|
|
@@ -995,9 +1025,9 @@ export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
|
|
|
995
1025
|
userName?: string | undefined;
|
|
996
1026
|
}[] | undefined;
|
|
997
1027
|
text?: string | undefined;
|
|
1028
|
+
permalink?: string | undefined;
|
|
998
1029
|
userEmail?: string | undefined;
|
|
999
1030
|
userName?: string | undefined;
|
|
1000
|
-
permalink?: string | undefined;
|
|
1001
1031
|
context?: {
|
|
1002
1032
|
ts: string;
|
|
1003
1033
|
text?: string | undefined;
|
|
@@ -1017,9 +1047,9 @@ export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
|
|
|
1017
1047
|
userName?: string | undefined;
|
|
1018
1048
|
}[] | undefined;
|
|
1019
1049
|
text?: string | undefined;
|
|
1050
|
+
permalink?: string | undefined;
|
|
1020
1051
|
userEmail?: string | undefined;
|
|
1021
1052
|
userName?: string | undefined;
|
|
1022
|
-
permalink?: string | undefined;
|
|
1023
1053
|
context?: {
|
|
1024
1054
|
ts: string;
|
|
1025
1055
|
text?: string | undefined;
|
|
@@ -1055,9 +1085,9 @@ export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
|
|
|
1055
1085
|
userName?: string | undefined;
|
|
1056
1086
|
}[] | undefined;
|
|
1057
1087
|
text?: string | undefined;
|
|
1088
|
+
permalink?: string | undefined;
|
|
1058
1089
|
userEmail?: string | undefined;
|
|
1059
1090
|
userName?: string | undefined;
|
|
1060
|
-
permalink?: string | undefined;
|
|
1061
1091
|
context?: {
|
|
1062
1092
|
ts: string;
|
|
1063
1093
|
text?: string | undefined;
|
|
@@ -1085,9 +1115,9 @@ export declare const slackUserSearchSlackOutputSchema: z.ZodObject<{
|
|
|
1085
1115
|
userName?: string | undefined;
|
|
1086
1116
|
}[] | undefined;
|
|
1087
1117
|
text?: string | undefined;
|
|
1118
|
+
permalink?: string | undefined;
|
|
1088
1119
|
userEmail?: string | undefined;
|
|
1089
1120
|
userName?: string | undefined;
|
|
1090
|
-
permalink?: string | undefined;
|
|
1091
1121
|
context?: {
|
|
1092
1122
|
ts: string;
|
|
1093
1123
|
text?: string | undefined;
|
|
@@ -6478,172 +6508,34 @@ export declare const googleSearchCustomSearchOutputSchema: z.ZodObject<{
|
|
|
6478
6508
|
}>;
|
|
6479
6509
|
export type googleSearchCustomSearchOutputType = z.infer<typeof googleSearchCustomSearchOutputSchema>;
|
|
6480
6510
|
export type googleSearchCustomSearchFunction = ActionFunction<googleSearchCustomSearchParamsType, AuthParamsType, googleSearchCustomSearchOutputType>;
|
|
6481
|
-
export declare const
|
|
6482
|
-
|
|
6511
|
+
export declare const oktaOrgGetOktaUserByNameParamsSchema: z.ZodObject<{
|
|
6512
|
+
name: z.ZodString;
|
|
6483
6513
|
}, "strip", z.ZodTypeAny, {
|
|
6484
|
-
|
|
6514
|
+
name: string;
|
|
6485
6515
|
}, {
|
|
6486
|
-
|
|
6516
|
+
name: string;
|
|
6487
6517
|
}>;
|
|
6488
|
-
export type
|
|
6489
|
-
export declare const
|
|
6518
|
+
export type oktaOrgGetOktaUserByNameParamsType = z.infer<typeof oktaOrgGetOktaUserByNameParamsSchema>;
|
|
6519
|
+
export declare const oktaOrgGetOktaUserByNameOutputSchema: z.ZodObject<{
|
|
6490
6520
|
success: z.ZodBoolean;
|
|
6491
6521
|
user: z.ZodOptional<z.ZodObject<{
|
|
6492
6522
|
id: z.ZodString;
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
lastLogin: z.ZodOptional<z.ZodString>;
|
|
6498
|
-
lastUpdated: z.ZodOptional<z.ZodString>;
|
|
6499
|
-
passwordChanged: z.ZodOptional<z.ZodString>;
|
|
6500
|
-
profile: z.ZodOptional<z.ZodObject<{
|
|
6501
|
-
login: z.ZodOptional<z.ZodString>;
|
|
6502
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
6503
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
6504
|
-
nickName: z.ZodOptional<z.ZodString>;
|
|
6505
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
6506
|
-
email: z.ZodOptional<z.ZodString>;
|
|
6507
|
-
secondEmail: z.ZodOptional<z.ZodString>;
|
|
6508
|
-
profileUrl: z.ZodOptional<z.ZodString>;
|
|
6509
|
-
preferredLanguage: z.ZodOptional<z.ZodString>;
|
|
6510
|
-
userType: z.ZodOptional<z.ZodString>;
|
|
6511
|
-
organization: z.ZodOptional<z.ZodString>;
|
|
6512
|
-
title: z.ZodOptional<z.ZodString>;
|
|
6513
|
-
division: z.ZodOptional<z.ZodString>;
|
|
6514
|
-
department: z.ZodOptional<z.ZodString>;
|
|
6515
|
-
costCenter: z.ZodOptional<z.ZodString>;
|
|
6516
|
-
employeeNumber: z.ZodOptional<z.ZodString>;
|
|
6517
|
-
mobilePhone: z.ZodOptional<z.ZodString>;
|
|
6518
|
-
primaryPhone: z.ZodOptional<z.ZodString>;
|
|
6519
|
-
streetAddress: z.ZodOptional<z.ZodString>;
|
|
6520
|
-
city: z.ZodOptional<z.ZodString>;
|
|
6521
|
-
state: z.ZodOptional<z.ZodString>;
|
|
6522
|
-
zipCode: z.ZodOptional<z.ZodString>;
|
|
6523
|
-
countryCode: z.ZodOptional<z.ZodString>;
|
|
6524
|
-
}, "strip", z.ZodTypeAny, {
|
|
6525
|
-
email?: string | undefined;
|
|
6526
|
-
title?: string | undefined;
|
|
6527
|
-
organization?: string | undefined;
|
|
6528
|
-
firstName?: string | undefined;
|
|
6529
|
-
lastName?: string | undefined;
|
|
6530
|
-
state?: string | undefined;
|
|
6531
|
-
displayName?: string | undefined;
|
|
6532
|
-
login?: string | undefined;
|
|
6533
|
-
nickName?: string | undefined;
|
|
6534
|
-
secondEmail?: string | undefined;
|
|
6535
|
-
profileUrl?: string | undefined;
|
|
6536
|
-
preferredLanguage?: string | undefined;
|
|
6537
|
-
userType?: string | undefined;
|
|
6538
|
-
division?: string | undefined;
|
|
6539
|
-
department?: string | undefined;
|
|
6540
|
-
costCenter?: string | undefined;
|
|
6541
|
-
employeeNumber?: string | undefined;
|
|
6542
|
-
mobilePhone?: string | undefined;
|
|
6543
|
-
primaryPhone?: string | undefined;
|
|
6544
|
-
streetAddress?: string | undefined;
|
|
6545
|
-
city?: string | undefined;
|
|
6546
|
-
zipCode?: string | undefined;
|
|
6547
|
-
countryCode?: string | undefined;
|
|
6548
|
-
}, {
|
|
6549
|
-
email?: string | undefined;
|
|
6550
|
-
title?: string | undefined;
|
|
6551
|
-
organization?: string | undefined;
|
|
6552
|
-
firstName?: string | undefined;
|
|
6553
|
-
lastName?: string | undefined;
|
|
6554
|
-
state?: string | undefined;
|
|
6555
|
-
displayName?: string | undefined;
|
|
6556
|
-
login?: string | undefined;
|
|
6557
|
-
nickName?: string | undefined;
|
|
6558
|
-
secondEmail?: string | undefined;
|
|
6559
|
-
profileUrl?: string | undefined;
|
|
6560
|
-
preferredLanguage?: string | undefined;
|
|
6561
|
-
userType?: string | undefined;
|
|
6562
|
-
division?: string | undefined;
|
|
6563
|
-
department?: string | undefined;
|
|
6564
|
-
costCenter?: string | undefined;
|
|
6565
|
-
employeeNumber?: string | undefined;
|
|
6566
|
-
mobilePhone?: string | undefined;
|
|
6567
|
-
primaryPhone?: string | undefined;
|
|
6568
|
-
streetAddress?: string | undefined;
|
|
6569
|
-
city?: string | undefined;
|
|
6570
|
-
zipCode?: string | undefined;
|
|
6571
|
-
countryCode?: string | undefined;
|
|
6572
|
-
}>>;
|
|
6573
|
-
credentials: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
6574
|
-
_links: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
6523
|
+
email: z.ZodString;
|
|
6524
|
+
title: z.ZodOptional<z.ZodString>;
|
|
6525
|
+
division: z.ZodOptional<z.ZodString>;
|
|
6526
|
+
department: z.ZodOptional<z.ZodString>;
|
|
6575
6527
|
}, "strip", z.ZodTypeAny, {
|
|
6576
6528
|
id: string;
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
title?: string | undefined;
|
|
6582
|
-
organization?: string | undefined;
|
|
6583
|
-
firstName?: string | undefined;
|
|
6584
|
-
lastName?: string | undefined;
|
|
6585
|
-
state?: string | undefined;
|
|
6586
|
-
displayName?: string | undefined;
|
|
6587
|
-
login?: string | undefined;
|
|
6588
|
-
nickName?: string | undefined;
|
|
6589
|
-
secondEmail?: string | undefined;
|
|
6590
|
-
profileUrl?: string | undefined;
|
|
6591
|
-
preferredLanguage?: string | undefined;
|
|
6592
|
-
userType?: string | undefined;
|
|
6593
|
-
division?: string | undefined;
|
|
6594
|
-
department?: string | undefined;
|
|
6595
|
-
costCenter?: string | undefined;
|
|
6596
|
-
employeeNumber?: string | undefined;
|
|
6597
|
-
mobilePhone?: string | undefined;
|
|
6598
|
-
primaryPhone?: string | undefined;
|
|
6599
|
-
streetAddress?: string | undefined;
|
|
6600
|
-
city?: string | undefined;
|
|
6601
|
-
zipCode?: string | undefined;
|
|
6602
|
-
countryCode?: string | undefined;
|
|
6603
|
-
} | undefined;
|
|
6604
|
-
activated?: string | undefined;
|
|
6605
|
-
statusChanged?: string | undefined;
|
|
6606
|
-
lastLogin?: string | undefined;
|
|
6607
|
-
lastUpdated?: string | undefined;
|
|
6608
|
-
passwordChanged?: string | undefined;
|
|
6609
|
-
credentials?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6610
|
-
_links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6529
|
+
email: string;
|
|
6530
|
+
title?: string | undefined;
|
|
6531
|
+
division?: string | undefined;
|
|
6532
|
+
department?: string | undefined;
|
|
6611
6533
|
}, {
|
|
6612
6534
|
id: string;
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
title?: string | undefined;
|
|
6618
|
-
organization?: string | undefined;
|
|
6619
|
-
firstName?: string | undefined;
|
|
6620
|
-
lastName?: string | undefined;
|
|
6621
|
-
state?: string | undefined;
|
|
6622
|
-
displayName?: string | undefined;
|
|
6623
|
-
login?: string | undefined;
|
|
6624
|
-
nickName?: string | undefined;
|
|
6625
|
-
secondEmail?: string | undefined;
|
|
6626
|
-
profileUrl?: string | undefined;
|
|
6627
|
-
preferredLanguage?: string | undefined;
|
|
6628
|
-
userType?: string | undefined;
|
|
6629
|
-
division?: string | undefined;
|
|
6630
|
-
department?: string | undefined;
|
|
6631
|
-
costCenter?: string | undefined;
|
|
6632
|
-
employeeNumber?: string | undefined;
|
|
6633
|
-
mobilePhone?: string | undefined;
|
|
6634
|
-
primaryPhone?: string | undefined;
|
|
6635
|
-
streetAddress?: string | undefined;
|
|
6636
|
-
city?: string | undefined;
|
|
6637
|
-
zipCode?: string | undefined;
|
|
6638
|
-
countryCode?: string | undefined;
|
|
6639
|
-
} | undefined;
|
|
6640
|
-
activated?: string | undefined;
|
|
6641
|
-
statusChanged?: string | undefined;
|
|
6642
|
-
lastLogin?: string | undefined;
|
|
6643
|
-
lastUpdated?: string | undefined;
|
|
6644
|
-
passwordChanged?: string | undefined;
|
|
6645
|
-
credentials?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6646
|
-
_links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6535
|
+
email: string;
|
|
6536
|
+
title?: string | undefined;
|
|
6537
|
+
division?: string | undefined;
|
|
6538
|
+
department?: string | undefined;
|
|
6647
6539
|
}>>;
|
|
6648
6540
|
error: z.ZodOptional<z.ZodString>;
|
|
6649
6541
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6651,1132 +6543,116 @@ export declare const oktaGetOktaUserOutputSchema: z.ZodObject<{
|
|
|
6651
6543
|
error?: string | undefined;
|
|
6652
6544
|
user?: {
|
|
6653
6545
|
id: string;
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
title?: string | undefined;
|
|
6659
|
-
organization?: string | undefined;
|
|
6660
|
-
firstName?: string | undefined;
|
|
6661
|
-
lastName?: string | undefined;
|
|
6662
|
-
state?: string | undefined;
|
|
6663
|
-
displayName?: string | undefined;
|
|
6664
|
-
login?: string | undefined;
|
|
6665
|
-
nickName?: string | undefined;
|
|
6666
|
-
secondEmail?: string | undefined;
|
|
6667
|
-
profileUrl?: string | undefined;
|
|
6668
|
-
preferredLanguage?: string | undefined;
|
|
6669
|
-
userType?: string | undefined;
|
|
6670
|
-
division?: string | undefined;
|
|
6671
|
-
department?: string | undefined;
|
|
6672
|
-
costCenter?: string | undefined;
|
|
6673
|
-
employeeNumber?: string | undefined;
|
|
6674
|
-
mobilePhone?: string | undefined;
|
|
6675
|
-
primaryPhone?: string | undefined;
|
|
6676
|
-
streetAddress?: string | undefined;
|
|
6677
|
-
city?: string | undefined;
|
|
6678
|
-
zipCode?: string | undefined;
|
|
6679
|
-
countryCode?: string | undefined;
|
|
6680
|
-
} | undefined;
|
|
6681
|
-
activated?: string | undefined;
|
|
6682
|
-
statusChanged?: string | undefined;
|
|
6683
|
-
lastLogin?: string | undefined;
|
|
6684
|
-
lastUpdated?: string | undefined;
|
|
6685
|
-
passwordChanged?: string | undefined;
|
|
6686
|
-
credentials?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6687
|
-
_links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6546
|
+
email: string;
|
|
6547
|
+
title?: string | undefined;
|
|
6548
|
+
division?: string | undefined;
|
|
6549
|
+
department?: string | undefined;
|
|
6688
6550
|
} | undefined;
|
|
6689
6551
|
}, {
|
|
6690
6552
|
success: boolean;
|
|
6691
6553
|
error?: string | undefined;
|
|
6692
6554
|
user?: {
|
|
6693
6555
|
id: string;
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
title?: string | undefined;
|
|
6699
|
-
organization?: string | undefined;
|
|
6700
|
-
firstName?: string | undefined;
|
|
6701
|
-
lastName?: string | undefined;
|
|
6702
|
-
state?: string | undefined;
|
|
6703
|
-
displayName?: string | undefined;
|
|
6704
|
-
login?: string | undefined;
|
|
6705
|
-
nickName?: string | undefined;
|
|
6706
|
-
secondEmail?: string | undefined;
|
|
6707
|
-
profileUrl?: string | undefined;
|
|
6708
|
-
preferredLanguage?: string | undefined;
|
|
6709
|
-
userType?: string | undefined;
|
|
6710
|
-
division?: string | undefined;
|
|
6711
|
-
department?: string | undefined;
|
|
6712
|
-
costCenter?: string | undefined;
|
|
6713
|
-
employeeNumber?: string | undefined;
|
|
6714
|
-
mobilePhone?: string | undefined;
|
|
6715
|
-
primaryPhone?: string | undefined;
|
|
6716
|
-
streetAddress?: string | undefined;
|
|
6717
|
-
city?: string | undefined;
|
|
6718
|
-
zipCode?: string | undefined;
|
|
6719
|
-
countryCode?: string | undefined;
|
|
6720
|
-
} | undefined;
|
|
6721
|
-
activated?: string | undefined;
|
|
6722
|
-
statusChanged?: string | undefined;
|
|
6723
|
-
lastLogin?: string | undefined;
|
|
6724
|
-
lastUpdated?: string | undefined;
|
|
6725
|
-
passwordChanged?: string | undefined;
|
|
6726
|
-
credentials?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6727
|
-
_links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
6556
|
+
email: string;
|
|
6557
|
+
title?: string | undefined;
|
|
6558
|
+
division?: string | undefined;
|
|
6559
|
+
department?: string | undefined;
|
|
6728
6560
|
} | undefined;
|
|
6729
6561
|
}>;
|
|
6730
|
-
export type
|
|
6731
|
-
export type
|
|
6732
|
-
export declare const
|
|
6733
|
-
|
|
6734
|
-
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
6562
|
+
export type oktaOrgGetOktaUserByNameOutputType = z.infer<typeof oktaOrgGetOktaUserByNameOutputSchema>;
|
|
6563
|
+
export type oktaOrgGetOktaUserByNameFunction = ActionFunction<oktaOrgGetOktaUserByNameParamsType, AuthParamsType, oktaOrgGetOktaUserByNameOutputType>;
|
|
6564
|
+
export declare const finnhubSymbolLookupParamsSchema: z.ZodObject<{
|
|
6565
|
+
query: z.ZodString;
|
|
6735
6566
|
}, "strip", z.ZodTypeAny, {
|
|
6736
|
-
|
|
6737
|
-
maxResults?: number | undefined;
|
|
6567
|
+
query: string;
|
|
6738
6568
|
}, {
|
|
6739
|
-
|
|
6740
|
-
maxResults?: number | undefined;
|
|
6569
|
+
query: string;
|
|
6741
6570
|
}>;
|
|
6742
|
-
export type
|
|
6743
|
-
export declare const
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
profile: z.ZodObject<{
|
|
6748
|
-
name: z.ZodString;
|
|
6749
|
-
description: z.ZodString;
|
|
6750
|
-
}, "strip", z.ZodTypeAny, {
|
|
6751
|
-
description: string;
|
|
6752
|
-
name: string;
|
|
6753
|
-
}, {
|
|
6754
|
-
description: string;
|
|
6755
|
-
name: string;
|
|
6756
|
-
}>;
|
|
6571
|
+
export type finnhubSymbolLookupParamsType = z.infer<typeof finnhubSymbolLookupParamsSchema>;
|
|
6572
|
+
export declare const finnhubSymbolLookupOutputSchema: z.ZodObject<{
|
|
6573
|
+
result: z.ZodArray<z.ZodObject<{
|
|
6574
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
6575
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6757
6576
|
}, "strip", z.ZodTypeAny, {
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
description: string;
|
|
6761
|
-
name: string;
|
|
6762
|
-
};
|
|
6577
|
+
symbol?: string | undefined;
|
|
6578
|
+
description?: string | undefined;
|
|
6763
6579
|
}, {
|
|
6764
|
-
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
name: string;
|
|
6768
|
-
};
|
|
6769
|
-
}>, "many">>;
|
|
6770
|
-
error: z.ZodOptional<z.ZodString>;
|
|
6580
|
+
symbol?: string | undefined;
|
|
6581
|
+
description?: string | undefined;
|
|
6582
|
+
}>, "many">;
|
|
6771
6583
|
}, "strip", z.ZodTypeAny, {
|
|
6772
|
-
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
profile: {
|
|
6777
|
-
description: string;
|
|
6778
|
-
name: string;
|
|
6779
|
-
};
|
|
6780
|
-
}[] | undefined;
|
|
6584
|
+
result: {
|
|
6585
|
+
symbol?: string | undefined;
|
|
6586
|
+
description?: string | undefined;
|
|
6587
|
+
}[];
|
|
6781
6588
|
}, {
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
6785
|
-
|
|
6786
|
-
profile: {
|
|
6787
|
-
description: string;
|
|
6788
|
-
name: string;
|
|
6789
|
-
};
|
|
6790
|
-
}[] | undefined;
|
|
6589
|
+
result: {
|
|
6590
|
+
symbol?: string | undefined;
|
|
6591
|
+
description?: string | undefined;
|
|
6592
|
+
}[];
|
|
6791
6593
|
}>;
|
|
6792
|
-
export type
|
|
6793
|
-
export type
|
|
6794
|
-
export declare const
|
|
6795
|
-
|
|
6796
|
-
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
6594
|
+
export type finnhubSymbolLookupOutputType = z.infer<typeof finnhubSymbolLookupOutputSchema>;
|
|
6595
|
+
export type finnhubSymbolLookupFunction = ActionFunction<finnhubSymbolLookupParamsType, AuthParamsType, finnhubSymbolLookupOutputType>;
|
|
6596
|
+
export declare const finnhubGetBasicFinancialsParamsSchema: z.ZodObject<{
|
|
6597
|
+
symbol: z.ZodString;
|
|
6797
6598
|
}, "strip", z.ZodTypeAny, {
|
|
6798
|
-
|
|
6799
|
-
searchQuery?: string | undefined;
|
|
6599
|
+
symbol: string;
|
|
6800
6600
|
}, {
|
|
6801
|
-
|
|
6802
|
-
searchQuery?: string | undefined;
|
|
6601
|
+
symbol: string;
|
|
6803
6602
|
}>;
|
|
6804
|
-
export type
|
|
6805
|
-
export declare const
|
|
6806
|
-
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6603
|
+
export type finnhubGetBasicFinancialsParamsType = z.infer<typeof finnhubGetBasicFinancialsParamsSchema>;
|
|
6604
|
+
export declare const finnhubGetBasicFinancialsOutputSchema: z.ZodObject<{
|
|
6605
|
+
result: z.ZodObject<{
|
|
6606
|
+
annual: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6607
|
+
metric: z.ZodOptional<z.ZodString>;
|
|
6608
|
+
series: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6609
|
+
period: z.ZodOptional<z.ZodString>;
|
|
6610
|
+
v: z.ZodOptional<z.ZodNumber>;
|
|
6611
|
+
}, "strip", z.ZodTypeAny, {
|
|
6612
|
+
period?: string | undefined;
|
|
6613
|
+
v?: number | undefined;
|
|
6614
|
+
}, {
|
|
6615
|
+
period?: string | undefined;
|
|
6616
|
+
v?: number | undefined;
|
|
6617
|
+
}>, "many">>;
|
|
6812
6618
|
}, "strip", z.ZodTypeAny, {
|
|
6813
|
-
|
|
6814
|
-
|
|
6619
|
+
metric?: string | undefined;
|
|
6620
|
+
series?: {
|
|
6621
|
+
period?: string | undefined;
|
|
6622
|
+
v?: number | undefined;
|
|
6623
|
+
}[] | undefined;
|
|
6815
6624
|
}, {
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
}
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
|
|
6838
|
-
|
|
6839
|
-
|
|
6840
|
-
|
|
6841
|
-
|
|
6842
|
-
|
|
6843
|
-
|
|
6844
|
-
|
|
6845
|
-
|
|
6846
|
-
|
|
6847
|
-
id: string;
|
|
6848
|
-
profile: {
|
|
6849
|
-
description: string;
|
|
6850
|
-
name: string;
|
|
6851
|
-
};
|
|
6852
|
-
}[] | undefined;
|
|
6853
|
-
}>;
|
|
6854
|
-
export type oktaListOktaGroupsOutputType = z.infer<typeof oktaListOktaGroupsOutputSchema>;
|
|
6855
|
-
export type oktaListOktaGroupsFunction = ActionFunction<oktaListOktaGroupsParamsType, AuthParamsType, oktaListOktaGroupsOutputType>;
|
|
6856
|
-
export declare const oktaGetOktaGroupParamsSchema: z.ZodObject<{
|
|
6857
|
-
groupId: z.ZodString;
|
|
6858
|
-
}, "strip", z.ZodTypeAny, {
|
|
6859
|
-
groupId: string;
|
|
6860
|
-
}, {
|
|
6861
|
-
groupId: string;
|
|
6862
|
-
}>;
|
|
6863
|
-
export type oktaGetOktaGroupParamsType = z.infer<typeof oktaGetOktaGroupParamsSchema>;
|
|
6864
|
-
export declare const oktaGetOktaGroupOutputSchema: z.ZodObject<{
|
|
6865
|
-
success: z.ZodBoolean;
|
|
6866
|
-
group: z.ZodOptional<z.ZodObject<{
|
|
6867
|
-
id: z.ZodString;
|
|
6868
|
-
created: z.ZodOptional<z.ZodString>;
|
|
6869
|
-
lastUpdated: z.ZodOptional<z.ZodString>;
|
|
6870
|
-
lastMembershipUpdated: z.ZodOptional<z.ZodString>;
|
|
6871
|
-
objectClass: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6872
|
-
type: z.ZodOptional<z.ZodString>;
|
|
6873
|
-
profile: z.ZodObject<{
|
|
6874
|
-
name: z.ZodString;
|
|
6875
|
-
description: z.ZodString;
|
|
6876
|
-
}, "strip", z.ZodTypeAny, {
|
|
6877
|
-
description: string;
|
|
6878
|
-
name: string;
|
|
6879
|
-
}, {
|
|
6880
|
-
description: string;
|
|
6881
|
-
name: string;
|
|
6882
|
-
}>;
|
|
6883
|
-
_links: z.ZodOptional<z.ZodObject<{
|
|
6884
|
-
logo: z.ZodOptional<z.ZodArray<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>, "many">>;
|
|
6885
|
-
users: z.ZodOptional<z.ZodObject<{
|
|
6886
|
-
href: z.ZodOptional<z.ZodString>;
|
|
6887
|
-
}, "strip", z.ZodTypeAny, {
|
|
6888
|
-
href?: string | undefined;
|
|
6889
|
-
}, {
|
|
6890
|
-
href?: string | undefined;
|
|
6891
|
-
}>>;
|
|
6892
|
-
apps: z.ZodOptional<z.ZodObject<{
|
|
6893
|
-
href: z.ZodOptional<z.ZodString>;
|
|
6894
|
-
}, "strip", z.ZodTypeAny, {
|
|
6895
|
-
href?: string | undefined;
|
|
6896
|
-
}, {
|
|
6897
|
-
href?: string | undefined;
|
|
6898
|
-
}>>;
|
|
6899
|
-
}, "strip", z.ZodTypeAny, {
|
|
6900
|
-
users?: {
|
|
6901
|
-
href?: string | undefined;
|
|
6902
|
-
} | undefined;
|
|
6903
|
-
logo?: z.objectOutputType<{}, z.ZodAny, "strip">[] | undefined;
|
|
6904
|
-
apps?: {
|
|
6905
|
-
href?: string | undefined;
|
|
6906
|
-
} | undefined;
|
|
6907
|
-
}, {
|
|
6908
|
-
users?: {
|
|
6909
|
-
href?: string | undefined;
|
|
6910
|
-
} | undefined;
|
|
6911
|
-
logo?: z.objectInputType<{}, z.ZodAny, "strip">[] | undefined;
|
|
6912
|
-
apps?: {
|
|
6913
|
-
href?: string | undefined;
|
|
6914
|
-
} | undefined;
|
|
6915
|
-
}>>;
|
|
6916
|
-
}, "strip", z.ZodTypeAny, {
|
|
6917
|
-
id: string;
|
|
6918
|
-
profile: {
|
|
6919
|
-
description: string;
|
|
6920
|
-
name: string;
|
|
6921
|
-
};
|
|
6922
|
-
type?: string | undefined;
|
|
6923
|
-
created?: string | undefined;
|
|
6924
|
-
lastUpdated?: string | undefined;
|
|
6925
|
-
_links?: {
|
|
6926
|
-
users?: {
|
|
6927
|
-
href?: string | undefined;
|
|
6928
|
-
} | undefined;
|
|
6929
|
-
logo?: z.objectOutputType<{}, z.ZodAny, "strip">[] | undefined;
|
|
6930
|
-
apps?: {
|
|
6931
|
-
href?: string | undefined;
|
|
6932
|
-
} | undefined;
|
|
6933
|
-
} | undefined;
|
|
6934
|
-
lastMembershipUpdated?: string | undefined;
|
|
6935
|
-
objectClass?: string[] | undefined;
|
|
6936
|
-
}, {
|
|
6937
|
-
id: string;
|
|
6938
|
-
profile: {
|
|
6939
|
-
description: string;
|
|
6940
|
-
name: string;
|
|
6941
|
-
};
|
|
6942
|
-
type?: string | undefined;
|
|
6943
|
-
created?: string | undefined;
|
|
6944
|
-
lastUpdated?: string | undefined;
|
|
6945
|
-
_links?: {
|
|
6946
|
-
users?: {
|
|
6947
|
-
href?: string | undefined;
|
|
6948
|
-
} | undefined;
|
|
6949
|
-
logo?: z.objectInputType<{}, z.ZodAny, "strip">[] | undefined;
|
|
6950
|
-
apps?: {
|
|
6951
|
-
href?: string | undefined;
|
|
6952
|
-
} | undefined;
|
|
6953
|
-
} | undefined;
|
|
6954
|
-
lastMembershipUpdated?: string | undefined;
|
|
6955
|
-
objectClass?: string[] | undefined;
|
|
6956
|
-
}>>;
|
|
6957
|
-
error: z.ZodOptional<z.ZodString>;
|
|
6958
|
-
}, "strip", z.ZodTypeAny, {
|
|
6959
|
-
success: boolean;
|
|
6960
|
-
error?: string | undefined;
|
|
6961
|
-
group?: {
|
|
6962
|
-
id: string;
|
|
6963
|
-
profile: {
|
|
6964
|
-
description: string;
|
|
6965
|
-
name: string;
|
|
6966
|
-
};
|
|
6967
|
-
type?: string | undefined;
|
|
6968
|
-
created?: string | undefined;
|
|
6969
|
-
lastUpdated?: string | undefined;
|
|
6970
|
-
_links?: {
|
|
6971
|
-
users?: {
|
|
6972
|
-
href?: string | undefined;
|
|
6973
|
-
} | undefined;
|
|
6974
|
-
logo?: z.objectOutputType<{}, z.ZodAny, "strip">[] | undefined;
|
|
6975
|
-
apps?: {
|
|
6976
|
-
href?: string | undefined;
|
|
6977
|
-
} | undefined;
|
|
6978
|
-
} | undefined;
|
|
6979
|
-
lastMembershipUpdated?: string | undefined;
|
|
6980
|
-
objectClass?: string[] | undefined;
|
|
6981
|
-
} | undefined;
|
|
6982
|
-
}, {
|
|
6983
|
-
success: boolean;
|
|
6984
|
-
error?: string | undefined;
|
|
6985
|
-
group?: {
|
|
6986
|
-
id: string;
|
|
6987
|
-
profile: {
|
|
6988
|
-
description: string;
|
|
6989
|
-
name: string;
|
|
6990
|
-
};
|
|
6991
|
-
type?: string | undefined;
|
|
6992
|
-
created?: string | undefined;
|
|
6993
|
-
lastUpdated?: string | undefined;
|
|
6994
|
-
_links?: {
|
|
6995
|
-
users?: {
|
|
6996
|
-
href?: string | undefined;
|
|
6997
|
-
} | undefined;
|
|
6998
|
-
logo?: z.objectInputType<{}, z.ZodAny, "strip">[] | undefined;
|
|
6999
|
-
apps?: {
|
|
7000
|
-
href?: string | undefined;
|
|
7001
|
-
} | undefined;
|
|
7002
|
-
} | undefined;
|
|
7003
|
-
lastMembershipUpdated?: string | undefined;
|
|
7004
|
-
objectClass?: string[] | undefined;
|
|
7005
|
-
} | undefined;
|
|
7006
|
-
}>;
|
|
7007
|
-
export type oktaGetOktaGroupOutputType = z.infer<typeof oktaGetOktaGroupOutputSchema>;
|
|
7008
|
-
export type oktaGetOktaGroupFunction = ActionFunction<oktaGetOktaGroupParamsType, AuthParamsType, oktaGetOktaGroupOutputType>;
|
|
7009
|
-
export declare const oktaListOktaGroupMembersParamsSchema: z.ZodObject<{
|
|
7010
|
-
groupId: z.ZodString;
|
|
7011
|
-
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
7012
|
-
}, "strip", z.ZodTypeAny, {
|
|
7013
|
-
groupId: string;
|
|
7014
|
-
maxResults?: number | undefined;
|
|
7015
|
-
}, {
|
|
7016
|
-
groupId: string;
|
|
7017
|
-
maxResults?: number | undefined;
|
|
7018
|
-
}>;
|
|
7019
|
-
export type oktaListOktaGroupMembersParamsType = z.infer<typeof oktaListOktaGroupMembersParamsSchema>;
|
|
7020
|
-
export declare const oktaListOktaGroupMembersOutputSchema: z.ZodObject<{
|
|
7021
|
-
success: z.ZodBoolean;
|
|
7022
|
-
members: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7023
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7024
|
-
status: z.ZodOptional<z.ZodString>;
|
|
7025
|
-
created: z.ZodOptional<z.ZodString>;
|
|
7026
|
-
activated: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7027
|
-
statusChanged: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7028
|
-
lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7029
|
-
lastUpdated: z.ZodOptional<z.ZodString>;
|
|
7030
|
-
passwordChanged: z.ZodOptional<z.ZodString>;
|
|
7031
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
7032
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7033
|
-
}, "strip", z.ZodTypeAny, {
|
|
7034
|
-
id?: string | undefined;
|
|
7035
|
-
}, {
|
|
7036
|
-
id?: string | undefined;
|
|
7037
|
-
}>>;
|
|
7038
|
-
profile: z.ZodOptional<z.ZodObject<{
|
|
7039
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
7040
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
7041
|
-
mobilePhone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7042
|
-
secondEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7043
|
-
login: z.ZodOptional<z.ZodString>;
|
|
7044
|
-
email: z.ZodOptional<z.ZodString>;
|
|
7045
|
-
}, "strip", z.ZodTypeAny, {
|
|
7046
|
-
email?: string | undefined;
|
|
7047
|
-
firstName?: string | undefined;
|
|
7048
|
-
lastName?: string | undefined;
|
|
7049
|
-
login?: string | undefined;
|
|
7050
|
-
secondEmail?: string | null | undefined;
|
|
7051
|
-
mobilePhone?: string | null | undefined;
|
|
7052
|
-
}, {
|
|
7053
|
-
email?: string | undefined;
|
|
7054
|
-
firstName?: string | undefined;
|
|
7055
|
-
lastName?: string | undefined;
|
|
7056
|
-
login?: string | undefined;
|
|
7057
|
-
secondEmail?: string | null | undefined;
|
|
7058
|
-
mobilePhone?: string | null | undefined;
|
|
7059
|
-
}>>;
|
|
7060
|
-
}, "strip", z.ZodTypeAny, {
|
|
7061
|
-
type?: {
|
|
7062
|
-
id?: string | undefined;
|
|
7063
|
-
} | undefined;
|
|
7064
|
-
status?: string | undefined;
|
|
7065
|
-
id?: string | undefined;
|
|
7066
|
-
created?: string | undefined;
|
|
7067
|
-
profile?: {
|
|
7068
|
-
email?: string | undefined;
|
|
7069
|
-
firstName?: string | undefined;
|
|
7070
|
-
lastName?: string | undefined;
|
|
7071
|
-
login?: string | undefined;
|
|
7072
|
-
secondEmail?: string | null | undefined;
|
|
7073
|
-
mobilePhone?: string | null | undefined;
|
|
7074
|
-
} | undefined;
|
|
7075
|
-
activated?: string | null | undefined;
|
|
7076
|
-
statusChanged?: string | null | undefined;
|
|
7077
|
-
lastLogin?: string | null | undefined;
|
|
7078
|
-
lastUpdated?: string | undefined;
|
|
7079
|
-
passwordChanged?: string | undefined;
|
|
7080
|
-
}, {
|
|
7081
|
-
type?: {
|
|
7082
|
-
id?: string | undefined;
|
|
7083
|
-
} | undefined;
|
|
7084
|
-
status?: string | undefined;
|
|
7085
|
-
id?: string | undefined;
|
|
7086
|
-
created?: string | undefined;
|
|
7087
|
-
profile?: {
|
|
7088
|
-
email?: string | undefined;
|
|
7089
|
-
firstName?: string | undefined;
|
|
7090
|
-
lastName?: string | undefined;
|
|
7091
|
-
login?: string | undefined;
|
|
7092
|
-
secondEmail?: string | null | undefined;
|
|
7093
|
-
mobilePhone?: string | null | undefined;
|
|
7094
|
-
} | undefined;
|
|
7095
|
-
activated?: string | null | undefined;
|
|
7096
|
-
statusChanged?: string | null | undefined;
|
|
7097
|
-
lastLogin?: string | null | undefined;
|
|
7098
|
-
lastUpdated?: string | undefined;
|
|
7099
|
-
passwordChanged?: string | undefined;
|
|
7100
|
-
}>, "many">>;
|
|
7101
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7102
|
-
}, "strip", z.ZodTypeAny, {
|
|
7103
|
-
success: boolean;
|
|
7104
|
-
members?: {
|
|
7105
|
-
type?: {
|
|
7106
|
-
id?: string | undefined;
|
|
7107
|
-
} | undefined;
|
|
7108
|
-
status?: string | undefined;
|
|
7109
|
-
id?: string | undefined;
|
|
7110
|
-
created?: string | undefined;
|
|
7111
|
-
profile?: {
|
|
7112
|
-
email?: string | undefined;
|
|
7113
|
-
firstName?: string | undefined;
|
|
7114
|
-
lastName?: string | undefined;
|
|
7115
|
-
login?: string | undefined;
|
|
7116
|
-
secondEmail?: string | null | undefined;
|
|
7117
|
-
mobilePhone?: string | null | undefined;
|
|
7118
|
-
} | undefined;
|
|
7119
|
-
activated?: string | null | undefined;
|
|
7120
|
-
statusChanged?: string | null | undefined;
|
|
7121
|
-
lastLogin?: string | null | undefined;
|
|
7122
|
-
lastUpdated?: string | undefined;
|
|
7123
|
-
passwordChanged?: string | undefined;
|
|
7124
|
-
}[] | undefined;
|
|
7125
|
-
error?: string | undefined;
|
|
7126
|
-
}, {
|
|
7127
|
-
success: boolean;
|
|
7128
|
-
members?: {
|
|
7129
|
-
type?: {
|
|
7130
|
-
id?: string | undefined;
|
|
7131
|
-
} | undefined;
|
|
7132
|
-
status?: string | undefined;
|
|
7133
|
-
id?: string | undefined;
|
|
7134
|
-
created?: string | undefined;
|
|
7135
|
-
profile?: {
|
|
7136
|
-
email?: string | undefined;
|
|
7137
|
-
firstName?: string | undefined;
|
|
7138
|
-
lastName?: string | undefined;
|
|
7139
|
-
login?: string | undefined;
|
|
7140
|
-
secondEmail?: string | null | undefined;
|
|
7141
|
-
mobilePhone?: string | null | undefined;
|
|
7142
|
-
} | undefined;
|
|
7143
|
-
activated?: string | null | undefined;
|
|
7144
|
-
statusChanged?: string | null | undefined;
|
|
7145
|
-
lastLogin?: string | null | undefined;
|
|
7146
|
-
lastUpdated?: string | undefined;
|
|
7147
|
-
passwordChanged?: string | undefined;
|
|
7148
|
-
}[] | undefined;
|
|
7149
|
-
error?: string | undefined;
|
|
7150
|
-
}>;
|
|
7151
|
-
export type oktaListOktaGroupMembersOutputType = z.infer<typeof oktaListOktaGroupMembersOutputSchema>;
|
|
7152
|
-
export type oktaListOktaGroupMembersFunction = ActionFunction<oktaListOktaGroupMembersParamsType, AuthParamsType, oktaListOktaGroupMembersOutputType>;
|
|
7153
|
-
export declare const oktaAddUserToGroupParamsSchema: z.ZodObject<{
|
|
7154
|
-
groupId: z.ZodString;
|
|
7155
|
-
userId: z.ZodString;
|
|
7156
|
-
}, "strip", z.ZodTypeAny, {
|
|
7157
|
-
userId: string;
|
|
7158
|
-
groupId: string;
|
|
7159
|
-
}, {
|
|
7160
|
-
userId: string;
|
|
7161
|
-
groupId: string;
|
|
7162
|
-
}>;
|
|
7163
|
-
export type oktaAddUserToGroupParamsType = z.infer<typeof oktaAddUserToGroupParamsSchema>;
|
|
7164
|
-
export declare const oktaAddUserToGroupOutputSchema: z.ZodObject<{
|
|
7165
|
-
success: z.ZodBoolean;
|
|
7166
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7167
|
-
}, "strip", z.ZodTypeAny, {
|
|
7168
|
-
success: boolean;
|
|
7169
|
-
error?: string | undefined;
|
|
7170
|
-
}, {
|
|
7171
|
-
success: boolean;
|
|
7172
|
-
error?: string | undefined;
|
|
7173
|
-
}>;
|
|
7174
|
-
export type oktaAddUserToGroupOutputType = z.infer<typeof oktaAddUserToGroupOutputSchema>;
|
|
7175
|
-
export type oktaAddUserToGroupFunction = ActionFunction<oktaAddUserToGroupParamsType, AuthParamsType, oktaAddUserToGroupOutputType>;
|
|
7176
|
-
export declare const oktaRemoveUserFromGroupParamsSchema: z.ZodObject<{
|
|
7177
|
-
groupId: z.ZodString;
|
|
7178
|
-
userId: z.ZodString;
|
|
7179
|
-
}, "strip", z.ZodTypeAny, {
|
|
7180
|
-
userId: string;
|
|
7181
|
-
groupId: string;
|
|
7182
|
-
}, {
|
|
7183
|
-
userId: string;
|
|
7184
|
-
groupId: string;
|
|
7185
|
-
}>;
|
|
7186
|
-
export type oktaRemoveUserFromGroupParamsType = z.infer<typeof oktaRemoveUserFromGroupParamsSchema>;
|
|
7187
|
-
export declare const oktaRemoveUserFromGroupOutputSchema: z.ZodObject<{
|
|
7188
|
-
success: z.ZodBoolean;
|
|
7189
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7190
|
-
}, "strip", z.ZodTypeAny, {
|
|
7191
|
-
success: boolean;
|
|
7192
|
-
error?: string | undefined;
|
|
7193
|
-
}, {
|
|
7194
|
-
success: boolean;
|
|
7195
|
-
error?: string | undefined;
|
|
7196
|
-
}>;
|
|
7197
|
-
export type oktaRemoveUserFromGroupOutputType = z.infer<typeof oktaRemoveUserFromGroupOutputSchema>;
|
|
7198
|
-
export type oktaRemoveUserFromGroupFunction = ActionFunction<oktaRemoveUserFromGroupParamsType, AuthParamsType, oktaRemoveUserFromGroupOutputType>;
|
|
7199
|
-
export declare const oktaListOktaUsersParamsSchema: z.ZodObject<{
|
|
7200
|
-
searchQuery: z.ZodOptional<z.ZodString>;
|
|
7201
|
-
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
7202
|
-
}, "strip", z.ZodTypeAny, {
|
|
7203
|
-
maxResults?: number | undefined;
|
|
7204
|
-
searchQuery?: string | undefined;
|
|
7205
|
-
}, {
|
|
7206
|
-
maxResults?: number | undefined;
|
|
7207
|
-
searchQuery?: string | undefined;
|
|
7208
|
-
}>;
|
|
7209
|
-
export type oktaListOktaUsersParamsType = z.infer<typeof oktaListOktaUsersParamsSchema>;
|
|
7210
|
-
export declare const oktaListOktaUsersOutputSchema: z.ZodObject<{
|
|
7211
|
-
success: z.ZodBoolean;
|
|
7212
|
-
users: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7213
|
-
id: z.ZodString;
|
|
7214
|
-
status: z.ZodOptional<z.ZodString>;
|
|
7215
|
-
created: z.ZodOptional<z.ZodString>;
|
|
7216
|
-
activated: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7217
|
-
statusChanged: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7218
|
-
lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7219
|
-
lastUpdated: z.ZodOptional<z.ZodString>;
|
|
7220
|
-
passwordChanged: z.ZodOptional<z.ZodString>;
|
|
7221
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
7222
|
-
id: z.ZodOptional<z.ZodString>;
|
|
7223
|
-
}, "strip", z.ZodTypeAny, {
|
|
7224
|
-
id?: string | undefined;
|
|
7225
|
-
}, {
|
|
7226
|
-
id?: string | undefined;
|
|
7227
|
-
}>>;
|
|
7228
|
-
profile: z.ZodObject<{
|
|
7229
|
-
firstName: z.ZodOptional<z.ZodString>;
|
|
7230
|
-
lastName: z.ZodOptional<z.ZodString>;
|
|
7231
|
-
mobilePhone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7232
|
-
secondEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7233
|
-
login: z.ZodOptional<z.ZodString>;
|
|
7234
|
-
email: z.ZodOptional<z.ZodString>;
|
|
7235
|
-
}, "strip", z.ZodTypeAny, {
|
|
7236
|
-
email?: string | undefined;
|
|
7237
|
-
firstName?: string | undefined;
|
|
7238
|
-
lastName?: string | undefined;
|
|
7239
|
-
login?: string | undefined;
|
|
7240
|
-
secondEmail?: string | null | undefined;
|
|
7241
|
-
mobilePhone?: string | null | undefined;
|
|
7242
|
-
}, {
|
|
7243
|
-
email?: string | undefined;
|
|
7244
|
-
firstName?: string | undefined;
|
|
7245
|
-
lastName?: string | undefined;
|
|
7246
|
-
login?: string | undefined;
|
|
7247
|
-
secondEmail?: string | null | undefined;
|
|
7248
|
-
mobilePhone?: string | null | undefined;
|
|
7249
|
-
}>;
|
|
7250
|
-
realmId: z.ZodOptional<z.ZodString>;
|
|
7251
|
-
}, "strip", z.ZodTypeAny, {
|
|
7252
|
-
id: string;
|
|
7253
|
-
profile: {
|
|
7254
|
-
email?: string | undefined;
|
|
7255
|
-
firstName?: string | undefined;
|
|
7256
|
-
lastName?: string | undefined;
|
|
7257
|
-
login?: string | undefined;
|
|
7258
|
-
secondEmail?: string | null | undefined;
|
|
7259
|
-
mobilePhone?: string | null | undefined;
|
|
7260
|
-
};
|
|
7261
|
-
type?: {
|
|
7262
|
-
id?: string | undefined;
|
|
7263
|
-
} | undefined;
|
|
7264
|
-
status?: string | undefined;
|
|
7265
|
-
created?: string | undefined;
|
|
7266
|
-
activated?: string | null | undefined;
|
|
7267
|
-
statusChanged?: string | null | undefined;
|
|
7268
|
-
lastLogin?: string | null | undefined;
|
|
7269
|
-
lastUpdated?: string | undefined;
|
|
7270
|
-
passwordChanged?: string | undefined;
|
|
7271
|
-
realmId?: string | undefined;
|
|
7272
|
-
}, {
|
|
7273
|
-
id: string;
|
|
7274
|
-
profile: {
|
|
7275
|
-
email?: string | undefined;
|
|
7276
|
-
firstName?: string | undefined;
|
|
7277
|
-
lastName?: string | undefined;
|
|
7278
|
-
login?: string | undefined;
|
|
7279
|
-
secondEmail?: string | null | undefined;
|
|
7280
|
-
mobilePhone?: string | null | undefined;
|
|
7281
|
-
};
|
|
7282
|
-
type?: {
|
|
7283
|
-
id?: string | undefined;
|
|
7284
|
-
} | undefined;
|
|
7285
|
-
status?: string | undefined;
|
|
7286
|
-
created?: string | undefined;
|
|
7287
|
-
activated?: string | null | undefined;
|
|
7288
|
-
statusChanged?: string | null | undefined;
|
|
7289
|
-
lastLogin?: string | null | undefined;
|
|
7290
|
-
lastUpdated?: string | undefined;
|
|
7291
|
-
passwordChanged?: string | undefined;
|
|
7292
|
-
realmId?: string | undefined;
|
|
7293
|
-
}>, "many">>;
|
|
7294
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7295
|
-
}, "strip", z.ZodTypeAny, {
|
|
7296
|
-
success: boolean;
|
|
7297
|
-
error?: string | undefined;
|
|
7298
|
-
users?: {
|
|
7299
|
-
id: string;
|
|
7300
|
-
profile: {
|
|
7301
|
-
email?: string | undefined;
|
|
7302
|
-
firstName?: string | undefined;
|
|
7303
|
-
lastName?: string | undefined;
|
|
7304
|
-
login?: string | undefined;
|
|
7305
|
-
secondEmail?: string | null | undefined;
|
|
7306
|
-
mobilePhone?: string | null | undefined;
|
|
7307
|
-
};
|
|
7308
|
-
type?: {
|
|
7309
|
-
id?: string | undefined;
|
|
7310
|
-
} | undefined;
|
|
7311
|
-
status?: string | undefined;
|
|
7312
|
-
created?: string | undefined;
|
|
7313
|
-
activated?: string | null | undefined;
|
|
7314
|
-
statusChanged?: string | null | undefined;
|
|
7315
|
-
lastLogin?: string | null | undefined;
|
|
7316
|
-
lastUpdated?: string | undefined;
|
|
7317
|
-
passwordChanged?: string | undefined;
|
|
7318
|
-
realmId?: string | undefined;
|
|
7319
|
-
}[] | undefined;
|
|
7320
|
-
}, {
|
|
7321
|
-
success: boolean;
|
|
7322
|
-
error?: string | undefined;
|
|
7323
|
-
users?: {
|
|
7324
|
-
id: string;
|
|
7325
|
-
profile: {
|
|
7326
|
-
email?: string | undefined;
|
|
7327
|
-
firstName?: string | undefined;
|
|
7328
|
-
lastName?: string | undefined;
|
|
7329
|
-
login?: string | undefined;
|
|
7330
|
-
secondEmail?: string | null | undefined;
|
|
7331
|
-
mobilePhone?: string | null | undefined;
|
|
7332
|
-
};
|
|
7333
|
-
type?: {
|
|
7334
|
-
id?: string | undefined;
|
|
7335
|
-
} | undefined;
|
|
7336
|
-
status?: string | undefined;
|
|
7337
|
-
created?: string | undefined;
|
|
7338
|
-
activated?: string | null | undefined;
|
|
7339
|
-
statusChanged?: string | null | undefined;
|
|
7340
|
-
lastLogin?: string | null | undefined;
|
|
7341
|
-
lastUpdated?: string | undefined;
|
|
7342
|
-
passwordChanged?: string | undefined;
|
|
7343
|
-
realmId?: string | undefined;
|
|
7344
|
-
}[] | undefined;
|
|
7345
|
-
}>;
|
|
7346
|
-
export type oktaListOktaUsersOutputType = z.infer<typeof oktaListOktaUsersOutputSchema>;
|
|
7347
|
-
export type oktaListOktaUsersFunction = ActionFunction<oktaListOktaUsersParamsType, AuthParamsType, oktaListOktaUsersOutputType>;
|
|
7348
|
-
export declare const oktaResetMFAParamsSchema: z.ZodObject<{
|
|
7349
|
-
userId: z.ZodString;
|
|
7350
|
-
factorId: z.ZodOptional<z.ZodString>;
|
|
7351
|
-
}, "strip", z.ZodTypeAny, {
|
|
7352
|
-
userId: string;
|
|
7353
|
-
factorId?: string | undefined;
|
|
7354
|
-
}, {
|
|
7355
|
-
userId: string;
|
|
7356
|
-
factorId?: string | undefined;
|
|
7357
|
-
}>;
|
|
7358
|
-
export type oktaResetMFAParamsType = z.infer<typeof oktaResetMFAParamsSchema>;
|
|
7359
|
-
export declare const oktaResetMFAOutputSchema: z.ZodObject<{
|
|
7360
|
-
success: z.ZodBoolean;
|
|
7361
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7362
|
-
}, "strip", z.ZodTypeAny, {
|
|
7363
|
-
success: boolean;
|
|
7364
|
-
error?: string | undefined;
|
|
7365
|
-
}, {
|
|
7366
|
-
success: boolean;
|
|
7367
|
-
error?: string | undefined;
|
|
7368
|
-
}>;
|
|
7369
|
-
export type oktaResetMFAOutputType = z.infer<typeof oktaResetMFAOutputSchema>;
|
|
7370
|
-
export type oktaResetMFAFunction = ActionFunction<oktaResetMFAParamsType, AuthParamsType, oktaResetMFAOutputType>;
|
|
7371
|
-
export declare const oktaListMFAParamsSchema: z.ZodObject<{
|
|
7372
|
-
userId: z.ZodString;
|
|
7373
|
-
}, "strip", z.ZodTypeAny, {
|
|
7374
|
-
userId: string;
|
|
7375
|
-
}, {
|
|
7376
|
-
userId: string;
|
|
7377
|
-
}>;
|
|
7378
|
-
export type oktaListMFAParamsType = z.infer<typeof oktaListMFAParamsSchema>;
|
|
7379
|
-
export declare const oktaListMFAOutputSchema: z.ZodObject<{
|
|
7380
|
-
success: z.ZodBoolean;
|
|
7381
|
-
factors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7382
|
-
id: z.ZodString;
|
|
7383
|
-
factorType: z.ZodOptional<z.ZodString>;
|
|
7384
|
-
provider: z.ZodOptional<z.ZodString>;
|
|
7385
|
-
vendorName: z.ZodOptional<z.ZodString>;
|
|
7386
|
-
status: z.ZodOptional<z.ZodString>;
|
|
7387
|
-
created: z.ZodOptional<z.ZodString>;
|
|
7388
|
-
lastUpdated: z.ZodOptional<z.ZodString>;
|
|
7389
|
-
profile: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
7390
|
-
_links: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
7391
|
-
_embedded: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
7392
|
-
}, "strip", z.ZodTypeAny, {
|
|
7393
|
-
id: string;
|
|
7394
|
-
status?: string | undefined;
|
|
7395
|
-
provider?: string | undefined;
|
|
7396
|
-
created?: string | undefined;
|
|
7397
|
-
profile?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7398
|
-
lastUpdated?: string | undefined;
|
|
7399
|
-
_links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7400
|
-
factorType?: string | undefined;
|
|
7401
|
-
vendorName?: string | undefined;
|
|
7402
|
-
_embedded?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7403
|
-
}, {
|
|
7404
|
-
id: string;
|
|
7405
|
-
status?: string | undefined;
|
|
7406
|
-
provider?: string | undefined;
|
|
7407
|
-
created?: string | undefined;
|
|
7408
|
-
profile?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7409
|
-
lastUpdated?: string | undefined;
|
|
7410
|
-
_links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7411
|
-
factorType?: string | undefined;
|
|
7412
|
-
vendorName?: string | undefined;
|
|
7413
|
-
_embedded?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7414
|
-
}>, "many">>;
|
|
7415
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7416
|
-
}, "strip", z.ZodTypeAny, {
|
|
7417
|
-
success: boolean;
|
|
7418
|
-
error?: string | undefined;
|
|
7419
|
-
factors?: {
|
|
7420
|
-
id: string;
|
|
7421
|
-
status?: string | undefined;
|
|
7422
|
-
provider?: string | undefined;
|
|
7423
|
-
created?: string | undefined;
|
|
7424
|
-
profile?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7425
|
-
lastUpdated?: string | undefined;
|
|
7426
|
-
_links?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7427
|
-
factorType?: string | undefined;
|
|
7428
|
-
vendorName?: string | undefined;
|
|
7429
|
-
_embedded?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7430
|
-
}[] | undefined;
|
|
7431
|
-
}, {
|
|
7432
|
-
success: boolean;
|
|
7433
|
-
error?: string | undefined;
|
|
7434
|
-
factors?: {
|
|
7435
|
-
id: string;
|
|
7436
|
-
status?: string | undefined;
|
|
7437
|
-
provider?: string | undefined;
|
|
7438
|
-
created?: string | undefined;
|
|
7439
|
-
profile?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7440
|
-
lastUpdated?: string | undefined;
|
|
7441
|
-
_links?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7442
|
-
factorType?: string | undefined;
|
|
7443
|
-
vendorName?: string | undefined;
|
|
7444
|
-
_embedded?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7445
|
-
}[] | undefined;
|
|
7446
|
-
}>;
|
|
7447
|
-
export type oktaListMFAOutputType = z.infer<typeof oktaListMFAOutputSchema>;
|
|
7448
|
-
export type oktaListMFAFunction = ActionFunction<oktaListMFAParamsType, AuthParamsType, oktaListMFAOutputType>;
|
|
7449
|
-
export declare const oktaResetPasswordParamsSchema: z.ZodObject<{
|
|
7450
|
-
userId: z.ZodString;
|
|
7451
|
-
sendEmail: z.ZodBoolean;
|
|
7452
|
-
revokeSessions: z.ZodOptional<z.ZodBoolean>;
|
|
7453
|
-
}, "strip", z.ZodTypeAny, {
|
|
7454
|
-
userId: string;
|
|
7455
|
-
sendEmail: boolean;
|
|
7456
|
-
revokeSessions?: boolean | undefined;
|
|
7457
|
-
}, {
|
|
7458
|
-
userId: string;
|
|
7459
|
-
sendEmail: boolean;
|
|
7460
|
-
revokeSessions?: boolean | undefined;
|
|
7461
|
-
}>;
|
|
7462
|
-
export type oktaResetPasswordParamsType = z.infer<typeof oktaResetPasswordParamsSchema>;
|
|
7463
|
-
export declare const oktaResetPasswordOutputSchema: z.ZodObject<{
|
|
7464
|
-
success: z.ZodBoolean;
|
|
7465
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7466
|
-
resetPasswordUrl: z.ZodOptional<z.ZodString>;
|
|
7467
|
-
}, "strip", z.ZodTypeAny, {
|
|
7468
|
-
success: boolean;
|
|
7469
|
-
error?: string | undefined;
|
|
7470
|
-
resetPasswordUrl?: string | undefined;
|
|
7471
|
-
}, {
|
|
7472
|
-
success: boolean;
|
|
7473
|
-
error?: string | undefined;
|
|
7474
|
-
resetPasswordUrl?: string | undefined;
|
|
7475
|
-
}>;
|
|
7476
|
-
export type oktaResetPasswordOutputType = z.infer<typeof oktaResetPasswordOutputSchema>;
|
|
7477
|
-
export type oktaResetPasswordFunction = ActionFunction<oktaResetPasswordParamsType, AuthParamsType, oktaResetPasswordOutputType>;
|
|
7478
|
-
export declare const oktaTriggerOktaWorkflowParamsSchema: z.ZodObject<{
|
|
7479
|
-
workflowId: z.ZodString;
|
|
7480
|
-
workflowParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7481
|
-
}, "strip", z.ZodTypeAny, {
|
|
7482
|
-
workflowId: string;
|
|
7483
|
-
workflowParameters?: Record<string, string> | undefined;
|
|
7484
|
-
}, {
|
|
7485
|
-
workflowId: string;
|
|
7486
|
-
workflowParameters?: Record<string, string> | undefined;
|
|
7487
|
-
}>;
|
|
7488
|
-
export type oktaTriggerOktaWorkflowParamsType = z.infer<typeof oktaTriggerOktaWorkflowParamsSchema>;
|
|
7489
|
-
export declare const oktaTriggerOktaWorkflowOutputSchema: z.ZodObject<{
|
|
7490
|
-
success: z.ZodBoolean;
|
|
7491
|
-
output: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
|
|
7492
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7493
|
-
}, "strip", z.ZodTypeAny, {
|
|
7494
|
-
success: boolean;
|
|
7495
|
-
output?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7496
|
-
error?: string | undefined;
|
|
7497
|
-
}, {
|
|
7498
|
-
success: boolean;
|
|
7499
|
-
output?: z.objectInputType<{}, z.ZodAny, "strip"> | undefined;
|
|
7500
|
-
error?: string | undefined;
|
|
7501
|
-
}>;
|
|
7502
|
-
export type oktaTriggerOktaWorkflowOutputType = z.infer<typeof oktaTriggerOktaWorkflowOutputSchema>;
|
|
7503
|
-
export type oktaTriggerOktaWorkflowFunction = ActionFunction<oktaTriggerOktaWorkflowParamsType, AuthParamsType, oktaTriggerOktaWorkflowOutputType>;
|
|
7504
|
-
export declare const oktaOrgGetOktaUserByNameParamsSchema: z.ZodObject<{
|
|
7505
|
-
name: z.ZodString;
|
|
7506
|
-
}, "strip", z.ZodTypeAny, {
|
|
7507
|
-
name: string;
|
|
7508
|
-
}, {
|
|
7509
|
-
name: string;
|
|
7510
|
-
}>;
|
|
7511
|
-
export type oktaOrgGetOktaUserByNameParamsType = z.infer<typeof oktaOrgGetOktaUserByNameParamsSchema>;
|
|
7512
|
-
export declare const oktaOrgGetOktaUserByNameOutputSchema: z.ZodObject<{
|
|
7513
|
-
success: z.ZodBoolean;
|
|
7514
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
7515
|
-
id: z.ZodString;
|
|
7516
|
-
email: z.ZodString;
|
|
7517
|
-
title: z.ZodOptional<z.ZodString>;
|
|
7518
|
-
division: z.ZodOptional<z.ZodString>;
|
|
7519
|
-
department: z.ZodOptional<z.ZodString>;
|
|
7520
|
-
}, "strip", z.ZodTypeAny, {
|
|
7521
|
-
id: string;
|
|
7522
|
-
email: string;
|
|
7523
|
-
title?: string | undefined;
|
|
7524
|
-
division?: string | undefined;
|
|
7525
|
-
department?: string | undefined;
|
|
7526
|
-
}, {
|
|
7527
|
-
id: string;
|
|
7528
|
-
email: string;
|
|
7529
|
-
title?: string | undefined;
|
|
7530
|
-
division?: string | undefined;
|
|
7531
|
-
department?: string | undefined;
|
|
7532
|
-
}>>;
|
|
7533
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7534
|
-
}, "strip", z.ZodTypeAny, {
|
|
7535
|
-
success: boolean;
|
|
7536
|
-
error?: string | undefined;
|
|
7537
|
-
user?: {
|
|
7538
|
-
id: string;
|
|
7539
|
-
email: string;
|
|
7540
|
-
title?: string | undefined;
|
|
7541
|
-
division?: string | undefined;
|
|
7542
|
-
department?: string | undefined;
|
|
7543
|
-
} | undefined;
|
|
7544
|
-
}, {
|
|
7545
|
-
success: boolean;
|
|
7546
|
-
error?: string | undefined;
|
|
7547
|
-
user?: {
|
|
7548
|
-
id: string;
|
|
7549
|
-
email: string;
|
|
7550
|
-
title?: string | undefined;
|
|
7551
|
-
division?: string | undefined;
|
|
7552
|
-
department?: string | undefined;
|
|
7553
|
-
} | undefined;
|
|
7554
|
-
}>;
|
|
7555
|
-
export type oktaOrgGetOktaUserByNameOutputType = z.infer<typeof oktaOrgGetOktaUserByNameOutputSchema>;
|
|
7556
|
-
export type oktaOrgGetOktaUserByNameFunction = ActionFunction<oktaOrgGetOktaUserByNameParamsType, AuthParamsType, oktaOrgGetOktaUserByNameOutputType>;
|
|
7557
|
-
export declare const gongGetGongTranscriptsParamsSchema: z.ZodObject<{
|
|
7558
|
-
userRole: z.ZodString;
|
|
7559
|
-
trackers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7560
|
-
company: z.ZodOptional<z.ZodString>;
|
|
7561
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
7562
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
7563
|
-
}, "strip", z.ZodTypeAny, {
|
|
7564
|
-
userRole: string;
|
|
7565
|
-
trackers?: string[] | undefined;
|
|
7566
|
-
company?: string | undefined;
|
|
7567
|
-
startDate?: string | undefined;
|
|
7568
|
-
endDate?: string | undefined;
|
|
7569
|
-
}, {
|
|
7570
|
-
userRole: string;
|
|
7571
|
-
trackers?: string[] | undefined;
|
|
7572
|
-
company?: string | undefined;
|
|
7573
|
-
startDate?: string | undefined;
|
|
7574
|
-
endDate?: string | undefined;
|
|
7575
|
-
}>;
|
|
7576
|
-
export type gongGetGongTranscriptsParamsType = z.infer<typeof gongGetGongTranscriptsParamsSchema>;
|
|
7577
|
-
export declare const gongGetGongTranscriptsOutputSchema: z.ZodObject<{
|
|
7578
|
-
success: z.ZodBoolean;
|
|
7579
|
-
callTranscripts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7580
|
-
callId: z.ZodOptional<z.ZodString>;
|
|
7581
|
-
callName: z.ZodOptional<z.ZodString>;
|
|
7582
|
-
startTime: z.ZodOptional<z.ZodString>;
|
|
7583
|
-
transcript: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7584
|
-
speakerName: z.ZodOptional<z.ZodString>;
|
|
7585
|
-
speakerEmail: z.ZodOptional<z.ZodString>;
|
|
7586
|
-
topic: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7587
|
-
sentences: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7588
|
-
start: z.ZodOptional<z.ZodNumber>;
|
|
7589
|
-
end: z.ZodOptional<z.ZodNumber>;
|
|
7590
|
-
text: z.ZodOptional<z.ZodString>;
|
|
7591
|
-
}, "strip", z.ZodTypeAny, {
|
|
7592
|
-
text?: string | undefined;
|
|
7593
|
-
start?: number | undefined;
|
|
7594
|
-
end?: number | undefined;
|
|
7595
|
-
}, {
|
|
7596
|
-
text?: string | undefined;
|
|
7597
|
-
start?: number | undefined;
|
|
7598
|
-
end?: number | undefined;
|
|
7599
|
-
}>, "many">>;
|
|
7600
|
-
}, "strip", z.ZodTypeAny, {
|
|
7601
|
-
topic?: string | null | undefined;
|
|
7602
|
-
speakerName?: string | undefined;
|
|
7603
|
-
speakerEmail?: string | undefined;
|
|
7604
|
-
sentences?: {
|
|
7605
|
-
text?: string | undefined;
|
|
7606
|
-
start?: number | undefined;
|
|
7607
|
-
end?: number | undefined;
|
|
7608
|
-
}[] | undefined;
|
|
7609
|
-
}, {
|
|
7610
|
-
topic?: string | null | undefined;
|
|
7611
|
-
speakerName?: string | undefined;
|
|
7612
|
-
speakerEmail?: string | undefined;
|
|
7613
|
-
sentences?: {
|
|
7614
|
-
text?: string | undefined;
|
|
7615
|
-
start?: number | undefined;
|
|
7616
|
-
end?: number | undefined;
|
|
7617
|
-
}[] | undefined;
|
|
7618
|
-
}>, "many">>;
|
|
7619
|
-
}, "strip", z.ZodTypeAny, {
|
|
7620
|
-
callId?: string | undefined;
|
|
7621
|
-
callName?: string | undefined;
|
|
7622
|
-
startTime?: string | undefined;
|
|
7623
|
-
transcript?: {
|
|
7624
|
-
topic?: string | null | undefined;
|
|
7625
|
-
speakerName?: string | undefined;
|
|
7626
|
-
speakerEmail?: string | undefined;
|
|
7627
|
-
sentences?: {
|
|
7628
|
-
text?: string | undefined;
|
|
7629
|
-
start?: number | undefined;
|
|
7630
|
-
end?: number | undefined;
|
|
7631
|
-
}[] | undefined;
|
|
7632
|
-
}[] | undefined;
|
|
7633
|
-
}, {
|
|
7634
|
-
callId?: string | undefined;
|
|
7635
|
-
callName?: string | undefined;
|
|
7636
|
-
startTime?: string | undefined;
|
|
7637
|
-
transcript?: {
|
|
7638
|
-
topic?: string | null | undefined;
|
|
7639
|
-
speakerName?: string | undefined;
|
|
7640
|
-
speakerEmail?: string | undefined;
|
|
7641
|
-
sentences?: {
|
|
7642
|
-
text?: string | undefined;
|
|
7643
|
-
start?: number | undefined;
|
|
7644
|
-
end?: number | undefined;
|
|
7645
|
-
}[] | undefined;
|
|
7646
|
-
}[] | undefined;
|
|
7647
|
-
}>, "many">>;
|
|
7648
|
-
error: z.ZodOptional<z.ZodString>;
|
|
7649
|
-
}, "strip", z.ZodTypeAny, {
|
|
7650
|
-
success: boolean;
|
|
7651
|
-
error?: string | undefined;
|
|
7652
|
-
callTranscripts?: {
|
|
7653
|
-
callId?: string | undefined;
|
|
7654
|
-
callName?: string | undefined;
|
|
7655
|
-
startTime?: string | undefined;
|
|
7656
|
-
transcript?: {
|
|
7657
|
-
topic?: string | null | undefined;
|
|
7658
|
-
speakerName?: string | undefined;
|
|
7659
|
-
speakerEmail?: string | undefined;
|
|
7660
|
-
sentences?: {
|
|
7661
|
-
text?: string | undefined;
|
|
7662
|
-
start?: number | undefined;
|
|
7663
|
-
end?: number | undefined;
|
|
7664
|
-
}[] | undefined;
|
|
7665
|
-
}[] | undefined;
|
|
7666
|
-
}[] | undefined;
|
|
7667
|
-
}, {
|
|
7668
|
-
success: boolean;
|
|
7669
|
-
error?: string | undefined;
|
|
7670
|
-
callTranscripts?: {
|
|
7671
|
-
callId?: string | undefined;
|
|
7672
|
-
callName?: string | undefined;
|
|
7673
|
-
startTime?: string | undefined;
|
|
7674
|
-
transcript?: {
|
|
7675
|
-
topic?: string | null | undefined;
|
|
7676
|
-
speakerName?: string | undefined;
|
|
7677
|
-
speakerEmail?: string | undefined;
|
|
7678
|
-
sentences?: {
|
|
7679
|
-
text?: string | undefined;
|
|
7680
|
-
start?: number | undefined;
|
|
7681
|
-
end?: number | undefined;
|
|
7682
|
-
}[] | undefined;
|
|
7683
|
-
}[] | undefined;
|
|
7684
|
-
}[] | undefined;
|
|
7685
|
-
}>;
|
|
7686
|
-
export type gongGetGongTranscriptsOutputType = z.infer<typeof gongGetGongTranscriptsOutputSchema>;
|
|
7687
|
-
export type gongGetGongTranscriptsFunction = ActionFunction<gongGetGongTranscriptsParamsType, AuthParamsType, gongGetGongTranscriptsOutputType>;
|
|
7688
|
-
export declare const finnhubSymbolLookupParamsSchema: z.ZodObject<{
|
|
7689
|
-
query: z.ZodString;
|
|
7690
|
-
}, "strip", z.ZodTypeAny, {
|
|
7691
|
-
query: string;
|
|
7692
|
-
}, {
|
|
7693
|
-
query: string;
|
|
7694
|
-
}>;
|
|
7695
|
-
export type finnhubSymbolLookupParamsType = z.infer<typeof finnhubSymbolLookupParamsSchema>;
|
|
7696
|
-
export declare const finnhubSymbolLookupOutputSchema: z.ZodObject<{
|
|
7697
|
-
result: z.ZodArray<z.ZodObject<{
|
|
7698
|
-
symbol: z.ZodOptional<z.ZodString>;
|
|
7699
|
-
description: z.ZodOptional<z.ZodString>;
|
|
7700
|
-
}, "strip", z.ZodTypeAny, {
|
|
7701
|
-
symbol?: string | undefined;
|
|
7702
|
-
description?: string | undefined;
|
|
7703
|
-
}, {
|
|
7704
|
-
symbol?: string | undefined;
|
|
7705
|
-
description?: string | undefined;
|
|
7706
|
-
}>, "many">;
|
|
7707
|
-
}, "strip", z.ZodTypeAny, {
|
|
7708
|
-
result: {
|
|
7709
|
-
symbol?: string | undefined;
|
|
7710
|
-
description?: string | undefined;
|
|
7711
|
-
}[];
|
|
7712
|
-
}, {
|
|
7713
|
-
result: {
|
|
7714
|
-
symbol?: string | undefined;
|
|
7715
|
-
description?: string | undefined;
|
|
7716
|
-
}[];
|
|
7717
|
-
}>;
|
|
7718
|
-
export type finnhubSymbolLookupOutputType = z.infer<typeof finnhubSymbolLookupOutputSchema>;
|
|
7719
|
-
export type finnhubSymbolLookupFunction = ActionFunction<finnhubSymbolLookupParamsType, AuthParamsType, finnhubSymbolLookupOutputType>;
|
|
7720
|
-
export declare const finnhubGetBasicFinancialsParamsSchema: z.ZodObject<{
|
|
7721
|
-
symbol: z.ZodString;
|
|
7722
|
-
}, "strip", z.ZodTypeAny, {
|
|
7723
|
-
symbol: string;
|
|
7724
|
-
}, {
|
|
7725
|
-
symbol: string;
|
|
7726
|
-
}>;
|
|
7727
|
-
export type finnhubGetBasicFinancialsParamsType = z.infer<typeof finnhubGetBasicFinancialsParamsSchema>;
|
|
7728
|
-
export declare const finnhubGetBasicFinancialsOutputSchema: z.ZodObject<{
|
|
7729
|
-
result: z.ZodObject<{
|
|
7730
|
-
annual: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7731
|
-
metric: z.ZodOptional<z.ZodString>;
|
|
7732
|
-
series: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7733
|
-
period: z.ZodOptional<z.ZodString>;
|
|
7734
|
-
v: z.ZodOptional<z.ZodNumber>;
|
|
7735
|
-
}, "strip", z.ZodTypeAny, {
|
|
7736
|
-
period?: string | undefined;
|
|
7737
|
-
v?: number | undefined;
|
|
7738
|
-
}, {
|
|
7739
|
-
period?: string | undefined;
|
|
7740
|
-
v?: number | undefined;
|
|
7741
|
-
}>, "many">>;
|
|
7742
|
-
}, "strip", z.ZodTypeAny, {
|
|
7743
|
-
metric?: string | undefined;
|
|
7744
|
-
series?: {
|
|
7745
|
-
period?: string | undefined;
|
|
7746
|
-
v?: number | undefined;
|
|
7747
|
-
}[] | undefined;
|
|
7748
|
-
}, {
|
|
7749
|
-
metric?: string | undefined;
|
|
7750
|
-
series?: {
|
|
7751
|
-
period?: string | undefined;
|
|
7752
|
-
v?: number | undefined;
|
|
7753
|
-
}[] | undefined;
|
|
7754
|
-
}>, "many">>;
|
|
7755
|
-
quarterly: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7756
|
-
metric: z.ZodOptional<z.ZodString>;
|
|
7757
|
-
series: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7758
|
-
period: z.ZodOptional<z.ZodString>;
|
|
7759
|
-
v: z.ZodOptional<z.ZodNumber>;
|
|
7760
|
-
}, "strip", z.ZodTypeAny, {
|
|
7761
|
-
period?: string | undefined;
|
|
7762
|
-
v?: number | undefined;
|
|
7763
|
-
}, {
|
|
7764
|
-
period?: string | undefined;
|
|
7765
|
-
v?: number | undefined;
|
|
7766
|
-
}>, "many">>;
|
|
7767
|
-
}, "strip", z.ZodTypeAny, {
|
|
7768
|
-
metric?: string | undefined;
|
|
7769
|
-
series?: {
|
|
7770
|
-
period?: string | undefined;
|
|
7771
|
-
v?: number | undefined;
|
|
7772
|
-
}[] | undefined;
|
|
7773
|
-
}, {
|
|
7774
|
-
metric?: string | undefined;
|
|
7775
|
-
series?: {
|
|
7776
|
-
period?: string | undefined;
|
|
7777
|
-
v?: number | undefined;
|
|
7778
|
-
}[] | undefined;
|
|
7779
|
-
}>, "many">>;
|
|
6625
|
+
metric?: string | undefined;
|
|
6626
|
+
series?: {
|
|
6627
|
+
period?: string | undefined;
|
|
6628
|
+
v?: number | undefined;
|
|
6629
|
+
}[] | undefined;
|
|
6630
|
+
}>, "many">>;
|
|
6631
|
+
quarterly: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6632
|
+
metric: z.ZodOptional<z.ZodString>;
|
|
6633
|
+
series: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6634
|
+
period: z.ZodOptional<z.ZodString>;
|
|
6635
|
+
v: z.ZodOptional<z.ZodNumber>;
|
|
6636
|
+
}, "strip", z.ZodTypeAny, {
|
|
6637
|
+
period?: string | undefined;
|
|
6638
|
+
v?: number | undefined;
|
|
6639
|
+
}, {
|
|
6640
|
+
period?: string | undefined;
|
|
6641
|
+
v?: number | undefined;
|
|
6642
|
+
}>, "many">>;
|
|
6643
|
+
}, "strip", z.ZodTypeAny, {
|
|
6644
|
+
metric?: string | undefined;
|
|
6645
|
+
series?: {
|
|
6646
|
+
period?: string | undefined;
|
|
6647
|
+
v?: number | undefined;
|
|
6648
|
+
}[] | undefined;
|
|
6649
|
+
}, {
|
|
6650
|
+
metric?: string | undefined;
|
|
6651
|
+
series?: {
|
|
6652
|
+
period?: string | undefined;
|
|
6653
|
+
v?: number | undefined;
|
|
6654
|
+
}[] | undefined;
|
|
6655
|
+
}>, "many">>;
|
|
7780
6656
|
}, "strip", z.ZodTypeAny, {
|
|
7781
6657
|
annual?: {
|
|
7782
6658
|
metric?: string | undefined;
|
|
@@ -8344,29 +7220,6 @@ export declare const salesforceGetRecordOutputSchema: z.ZodObject<{
|
|
|
8344
7220
|
}>;
|
|
8345
7221
|
export type salesforceGetRecordOutputType = z.infer<typeof salesforceGetRecordOutputSchema>;
|
|
8346
7222
|
export type salesforceGetRecordFunction = ActionFunction<salesforceGetRecordParamsType, AuthParamsType, salesforceGetRecordOutputType>;
|
|
8347
|
-
export declare const salesforceFetchSalesforceSchemaByObjectParamsSchema: z.ZodObject<{
|
|
8348
|
-
objectType: z.ZodString;
|
|
8349
|
-
}, "strip", z.ZodTypeAny, {
|
|
8350
|
-
objectType: string;
|
|
8351
|
-
}, {
|
|
8352
|
-
objectType: string;
|
|
8353
|
-
}>;
|
|
8354
|
-
export type salesforceFetchSalesforceSchemaByObjectParamsType = z.infer<typeof salesforceFetchSalesforceSchemaByObjectParamsSchema>;
|
|
8355
|
-
export declare const salesforceFetchSalesforceSchemaByObjectOutputSchema: z.ZodObject<{
|
|
8356
|
-
success: z.ZodBoolean;
|
|
8357
|
-
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8358
|
-
error: z.ZodOptional<z.ZodString>;
|
|
8359
|
-
}, "strip", z.ZodTypeAny, {
|
|
8360
|
-
success: boolean;
|
|
8361
|
-
error?: string | undefined;
|
|
8362
|
-
schema?: Record<string, string> | undefined;
|
|
8363
|
-
}, {
|
|
8364
|
-
success: boolean;
|
|
8365
|
-
error?: string | undefined;
|
|
8366
|
-
schema?: Record<string, string> | undefined;
|
|
8367
|
-
}>;
|
|
8368
|
-
export type salesforceFetchSalesforceSchemaByObjectOutputType = z.infer<typeof salesforceFetchSalesforceSchemaByObjectOutputSchema>;
|
|
8369
|
-
export type salesforceFetchSalesforceSchemaByObjectFunction = ActionFunction<salesforceFetchSalesforceSchemaByObjectParamsType, AuthParamsType, salesforceFetchSalesforceSchemaByObjectOutputType>;
|
|
8370
7223
|
export declare const microsoftCreateDocumentParamsSchema: z.ZodObject<{
|
|
8371
7224
|
siteId: z.ZodOptional<z.ZodString>;
|
|
8372
7225
|
name: z.ZodString;
|
|
@@ -12029,15 +10882,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12029
10882
|
}, "strip", z.ZodTypeAny, {
|
|
12030
10883
|
id?: string | undefined;
|
|
12031
10884
|
email?: string | undefined;
|
|
12032
|
-
company?: string | undefined;
|
|
12033
10885
|
state?: string | undefined;
|
|
12034
10886
|
createdAt?: string | undefined;
|
|
12035
10887
|
updatedAt?: string | undefined;
|
|
10888
|
+
company?: string | undefined;
|
|
12036
10889
|
address?: string | undefined;
|
|
12037
|
-
city?: string | undefined;
|
|
12038
10890
|
firstname?: string | undefined;
|
|
12039
10891
|
lastname?: string | undefined;
|
|
12040
10892
|
phone?: string | undefined;
|
|
10893
|
+
city?: string | undefined;
|
|
12041
10894
|
zip?: string | undefined;
|
|
12042
10895
|
country?: string | undefined;
|
|
12043
10896
|
lifecyclestage?: string | undefined;
|
|
@@ -12046,15 +10899,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12046
10899
|
}, {
|
|
12047
10900
|
id?: string | undefined;
|
|
12048
10901
|
email?: string | undefined;
|
|
12049
|
-
company?: string | undefined;
|
|
12050
10902
|
state?: string | undefined;
|
|
12051
10903
|
createdAt?: string | undefined;
|
|
12052
10904
|
updatedAt?: string | undefined;
|
|
10905
|
+
company?: string | undefined;
|
|
12053
10906
|
address?: string | undefined;
|
|
12054
|
-
city?: string | undefined;
|
|
12055
10907
|
firstname?: string | undefined;
|
|
12056
10908
|
lastname?: string | undefined;
|
|
12057
10909
|
phone?: string | undefined;
|
|
10910
|
+
city?: string | undefined;
|
|
12058
10911
|
zip?: string | undefined;
|
|
12059
10912
|
country?: string | undefined;
|
|
12060
10913
|
lifecyclestage?: string | undefined;
|
|
@@ -12067,15 +10920,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12067
10920
|
contact?: {
|
|
12068
10921
|
id?: string | undefined;
|
|
12069
10922
|
email?: string | undefined;
|
|
12070
|
-
company?: string | undefined;
|
|
12071
10923
|
state?: string | undefined;
|
|
12072
10924
|
createdAt?: string | undefined;
|
|
12073
10925
|
updatedAt?: string | undefined;
|
|
10926
|
+
company?: string | undefined;
|
|
12074
10927
|
address?: string | undefined;
|
|
12075
|
-
city?: string | undefined;
|
|
12076
10928
|
firstname?: string | undefined;
|
|
12077
10929
|
lastname?: string | undefined;
|
|
12078
10930
|
phone?: string | undefined;
|
|
10931
|
+
city?: string | undefined;
|
|
12079
10932
|
zip?: string | undefined;
|
|
12080
10933
|
country?: string | undefined;
|
|
12081
10934
|
lifecyclestage?: string | undefined;
|
|
@@ -12088,15 +10941,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12088
10941
|
contact?: {
|
|
12089
10942
|
id?: string | undefined;
|
|
12090
10943
|
email?: string | undefined;
|
|
12091
|
-
company?: string | undefined;
|
|
12092
10944
|
state?: string | undefined;
|
|
12093
10945
|
createdAt?: string | undefined;
|
|
12094
10946
|
updatedAt?: string | undefined;
|
|
10947
|
+
company?: string | undefined;
|
|
12095
10948
|
address?: string | undefined;
|
|
12096
|
-
city?: string | undefined;
|
|
12097
10949
|
firstname?: string | undefined;
|
|
12098
10950
|
lastname?: string | undefined;
|
|
12099
10951
|
phone?: string | undefined;
|
|
10952
|
+
city?: string | undefined;
|
|
12100
10953
|
zip?: string | undefined;
|
|
12101
10954
|
country?: string | undefined;
|
|
12102
10955
|
lifecyclestage?: string | undefined;
|
|
@@ -12190,8 +11043,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12190
11043
|
createdAt?: string | undefined;
|
|
12191
11044
|
updatedAt?: string | undefined;
|
|
12192
11045
|
address?: string | undefined;
|
|
12193
|
-
city?: string | undefined;
|
|
12194
11046
|
phone?: string | undefined;
|
|
11047
|
+
city?: string | undefined;
|
|
12195
11048
|
zip?: string | undefined;
|
|
12196
11049
|
country?: string | undefined;
|
|
12197
11050
|
archived?: boolean | undefined;
|
|
@@ -12205,8 +11058,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12205
11058
|
createdAt?: string | undefined;
|
|
12206
11059
|
updatedAt?: string | undefined;
|
|
12207
11060
|
address?: string | undefined;
|
|
12208
|
-
city?: string | undefined;
|
|
12209
11061
|
phone?: string | undefined;
|
|
11062
|
+
city?: string | undefined;
|
|
12210
11063
|
zip?: string | undefined;
|
|
12211
11064
|
country?: string | undefined;
|
|
12212
11065
|
archived?: boolean | undefined;
|
|
@@ -12224,8 +11077,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12224
11077
|
createdAt?: string | undefined;
|
|
12225
11078
|
updatedAt?: string | undefined;
|
|
12226
11079
|
address?: string | undefined;
|
|
12227
|
-
city?: string | undefined;
|
|
12228
11080
|
phone?: string | undefined;
|
|
11081
|
+
city?: string | undefined;
|
|
12229
11082
|
zip?: string | undefined;
|
|
12230
11083
|
country?: string | undefined;
|
|
12231
11084
|
archived?: boolean | undefined;
|
|
@@ -12243,8 +11096,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12243
11096
|
createdAt?: string | undefined;
|
|
12244
11097
|
updatedAt?: string | undefined;
|
|
12245
11098
|
address?: string | undefined;
|
|
12246
|
-
city?: string | undefined;
|
|
12247
11099
|
phone?: string | undefined;
|
|
11100
|
+
city?: string | undefined;
|
|
12248
11101
|
zip?: string | undefined;
|
|
12249
11102
|
country?: string | undefined;
|
|
12250
11103
|
archived?: boolean | undefined;
|