@credal/actions 0.2.169 → 0.2.171
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 +1 -89
- package/dist/actions/autogen/templates.d.ts +0 -14
- package/dist/actions/autogen/templates.js +0 -1083
- package/dist/actions/autogen/types.d.ts +12 -1191
- package/dist/actions/autogen/types.js +0 -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/slackUser/searchSlack.js +7 -10
- 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",
|
|
@@ -6478,1029 +6476,6 @@ export declare const googleSearchCustomSearchOutputSchema: z.ZodObject<{
|
|
|
6478
6476
|
}>;
|
|
6479
6477
|
export type googleSearchCustomSearchOutputType = z.infer<typeof googleSearchCustomSearchOutputSchema>;
|
|
6480
6478
|
export type googleSearchCustomSearchFunction = ActionFunction<googleSearchCustomSearchParamsType, AuthParamsType, googleSearchCustomSearchOutputType>;
|
|
6481
|
-
export declare const oktaGetOktaUserParamsSchema: z.ZodObject<{
|
|
6482
|
-
userId: z.ZodString;
|
|
6483
|
-
}, "strip", z.ZodTypeAny, {
|
|
6484
|
-
userId: string;
|
|
6485
|
-
}, {
|
|
6486
|
-
userId: string;
|
|
6487
|
-
}>;
|
|
6488
|
-
export type oktaGetOktaUserParamsType = z.infer<typeof oktaGetOktaUserParamsSchema>;
|
|
6489
|
-
export declare const oktaGetOktaUserOutputSchema: z.ZodObject<{
|
|
6490
|
-
success: z.ZodBoolean;
|
|
6491
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
6492
|
-
id: z.ZodString;
|
|
6493
|
-
status: z.ZodOptional<z.ZodString>;
|
|
6494
|
-
created: z.ZodOptional<z.ZodString>;
|
|
6495
|
-
activated: z.ZodOptional<z.ZodString>;
|
|
6496
|
-
statusChanged: z.ZodOptional<z.ZodString>;
|
|
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">>>;
|
|
6575
|
-
}, "strip", z.ZodTypeAny, {
|
|
6576
|
-
id: string;
|
|
6577
|
-
status?: string | undefined;
|
|
6578
|
-
created?: string | undefined;
|
|
6579
|
-
profile?: {
|
|
6580
|
-
email?: string | undefined;
|
|
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;
|
|
6611
|
-
}, {
|
|
6612
|
-
id: string;
|
|
6613
|
-
status?: string | undefined;
|
|
6614
|
-
created?: string | undefined;
|
|
6615
|
-
profile?: {
|
|
6616
|
-
email?: string | undefined;
|
|
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;
|
|
6647
|
-
}>>;
|
|
6648
|
-
error: z.ZodOptional<z.ZodString>;
|
|
6649
|
-
}, "strip", z.ZodTypeAny, {
|
|
6650
|
-
success: boolean;
|
|
6651
|
-
error?: string | undefined;
|
|
6652
|
-
user?: {
|
|
6653
|
-
id: string;
|
|
6654
|
-
status?: string | undefined;
|
|
6655
|
-
created?: string | undefined;
|
|
6656
|
-
profile?: {
|
|
6657
|
-
email?: string | undefined;
|
|
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;
|
|
6688
|
-
} | undefined;
|
|
6689
|
-
}, {
|
|
6690
|
-
success: boolean;
|
|
6691
|
-
error?: string | undefined;
|
|
6692
|
-
user?: {
|
|
6693
|
-
id: string;
|
|
6694
|
-
status?: string | undefined;
|
|
6695
|
-
created?: string | undefined;
|
|
6696
|
-
profile?: {
|
|
6697
|
-
email?: string | undefined;
|
|
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;
|
|
6728
|
-
} | undefined;
|
|
6729
|
-
}>;
|
|
6730
|
-
export type oktaGetOktaUserOutputType = z.infer<typeof oktaGetOktaUserOutputSchema>;
|
|
6731
|
-
export type oktaGetOktaUserFunction = ActionFunction<oktaGetOktaUserParamsType, AuthParamsType, oktaGetOktaUserOutputType>;
|
|
6732
|
-
export declare const oktaListOktaUserGroupsParamsSchema: z.ZodObject<{
|
|
6733
|
-
userId: z.ZodString;
|
|
6734
|
-
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
6735
|
-
}, "strip", z.ZodTypeAny, {
|
|
6736
|
-
userId: string;
|
|
6737
|
-
maxResults?: number | undefined;
|
|
6738
|
-
}, {
|
|
6739
|
-
userId: string;
|
|
6740
|
-
maxResults?: number | undefined;
|
|
6741
|
-
}>;
|
|
6742
|
-
export type oktaListOktaUserGroupsParamsType = z.infer<typeof oktaListOktaUserGroupsParamsSchema>;
|
|
6743
|
-
export declare const oktaListOktaUserGroupsOutputSchema: z.ZodObject<{
|
|
6744
|
-
success: z.ZodBoolean;
|
|
6745
|
-
groups: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6746
|
-
id: z.ZodString;
|
|
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
|
-
}>;
|
|
6757
|
-
}, "strip", z.ZodTypeAny, {
|
|
6758
|
-
id: string;
|
|
6759
|
-
profile: {
|
|
6760
|
-
description: string;
|
|
6761
|
-
name: string;
|
|
6762
|
-
};
|
|
6763
|
-
}, {
|
|
6764
|
-
id: string;
|
|
6765
|
-
profile: {
|
|
6766
|
-
description: string;
|
|
6767
|
-
name: string;
|
|
6768
|
-
};
|
|
6769
|
-
}>, "many">>;
|
|
6770
|
-
error: z.ZodOptional<z.ZodString>;
|
|
6771
|
-
}, "strip", z.ZodTypeAny, {
|
|
6772
|
-
success: boolean;
|
|
6773
|
-
error?: string | undefined;
|
|
6774
|
-
groups?: {
|
|
6775
|
-
id: string;
|
|
6776
|
-
profile: {
|
|
6777
|
-
description: string;
|
|
6778
|
-
name: string;
|
|
6779
|
-
};
|
|
6780
|
-
}[] | undefined;
|
|
6781
|
-
}, {
|
|
6782
|
-
success: boolean;
|
|
6783
|
-
error?: string | undefined;
|
|
6784
|
-
groups?: {
|
|
6785
|
-
id: string;
|
|
6786
|
-
profile: {
|
|
6787
|
-
description: string;
|
|
6788
|
-
name: string;
|
|
6789
|
-
};
|
|
6790
|
-
}[] | undefined;
|
|
6791
|
-
}>;
|
|
6792
|
-
export type oktaListOktaUserGroupsOutputType = z.infer<typeof oktaListOktaUserGroupsOutputSchema>;
|
|
6793
|
-
export type oktaListOktaUserGroupsFunction = ActionFunction<oktaListOktaUserGroupsParamsType, AuthParamsType, oktaListOktaUserGroupsOutputType>;
|
|
6794
|
-
export declare const oktaListOktaGroupsParamsSchema: z.ZodObject<{
|
|
6795
|
-
searchQuery: z.ZodOptional<z.ZodString>;
|
|
6796
|
-
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
6797
|
-
}, "strip", z.ZodTypeAny, {
|
|
6798
|
-
maxResults?: number | undefined;
|
|
6799
|
-
searchQuery?: string | undefined;
|
|
6800
|
-
}, {
|
|
6801
|
-
maxResults?: number | undefined;
|
|
6802
|
-
searchQuery?: string | undefined;
|
|
6803
|
-
}>;
|
|
6804
|
-
export type oktaListOktaGroupsParamsType = z.infer<typeof oktaListOktaGroupsParamsSchema>;
|
|
6805
|
-
export declare const oktaListOktaGroupsOutputSchema: z.ZodObject<{
|
|
6806
|
-
success: z.ZodBoolean;
|
|
6807
|
-
groups: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6808
|
-
id: z.ZodString;
|
|
6809
|
-
profile: z.ZodObject<{
|
|
6810
|
-
name: z.ZodString;
|
|
6811
|
-
description: z.ZodString;
|
|
6812
|
-
}, "strip", z.ZodTypeAny, {
|
|
6813
|
-
description: string;
|
|
6814
|
-
name: string;
|
|
6815
|
-
}, {
|
|
6816
|
-
description: string;
|
|
6817
|
-
name: string;
|
|
6818
|
-
}>;
|
|
6819
|
-
}, "strip", z.ZodTypeAny, {
|
|
6820
|
-
id: string;
|
|
6821
|
-
profile: {
|
|
6822
|
-
description: string;
|
|
6823
|
-
name: string;
|
|
6824
|
-
};
|
|
6825
|
-
}, {
|
|
6826
|
-
id: string;
|
|
6827
|
-
profile: {
|
|
6828
|
-
description: string;
|
|
6829
|
-
name: string;
|
|
6830
|
-
};
|
|
6831
|
-
}>, "many">>;
|
|
6832
|
-
error: z.ZodOptional<z.ZodString>;
|
|
6833
|
-
}, "strip", z.ZodTypeAny, {
|
|
6834
|
-
success: boolean;
|
|
6835
|
-
error?: string | undefined;
|
|
6836
|
-
groups?: {
|
|
6837
|
-
id: string;
|
|
6838
|
-
profile: {
|
|
6839
|
-
description: string;
|
|
6840
|
-
name: string;
|
|
6841
|
-
};
|
|
6842
|
-
}[] | undefined;
|
|
6843
|
-
}, {
|
|
6844
|
-
success: boolean;
|
|
6845
|
-
error?: string | undefined;
|
|
6846
|
-
groups?: {
|
|
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
6479
|
export declare const oktaOrgGetOktaUserByNameParamsSchema: z.ZodObject<{
|
|
7505
6480
|
name: z.ZodString;
|
|
7506
6481
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7554,137 +6529,6 @@ export declare const oktaOrgGetOktaUserByNameOutputSchema: z.ZodObject<{
|
|
|
7554
6529
|
}>;
|
|
7555
6530
|
export type oktaOrgGetOktaUserByNameOutputType = z.infer<typeof oktaOrgGetOktaUserByNameOutputSchema>;
|
|
7556
6531
|
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
6532
|
export declare const finnhubSymbolLookupParamsSchema: z.ZodObject<{
|
|
7689
6533
|
query: z.ZodString;
|
|
7690
6534
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8344,29 +7188,6 @@ export declare const salesforceGetRecordOutputSchema: z.ZodObject<{
|
|
|
8344
7188
|
}>;
|
|
8345
7189
|
export type salesforceGetRecordOutputType = z.infer<typeof salesforceGetRecordOutputSchema>;
|
|
8346
7190
|
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
7191
|
export declare const microsoftCreateDocumentParamsSchema: z.ZodObject<{
|
|
8371
7192
|
siteId: z.ZodOptional<z.ZodString>;
|
|
8372
7193
|
name: z.ZodString;
|
|
@@ -12029,15 +10850,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12029
10850
|
}, "strip", z.ZodTypeAny, {
|
|
12030
10851
|
id?: string | undefined;
|
|
12031
10852
|
email?: string | undefined;
|
|
12032
|
-
company?: string | undefined;
|
|
12033
10853
|
state?: string | undefined;
|
|
12034
10854
|
createdAt?: string | undefined;
|
|
12035
10855
|
updatedAt?: string | undefined;
|
|
10856
|
+
company?: string | undefined;
|
|
12036
10857
|
address?: string | undefined;
|
|
12037
|
-
city?: string | undefined;
|
|
12038
10858
|
firstname?: string | undefined;
|
|
12039
10859
|
lastname?: string | undefined;
|
|
12040
10860
|
phone?: string | undefined;
|
|
10861
|
+
city?: string | undefined;
|
|
12041
10862
|
zip?: string | undefined;
|
|
12042
10863
|
country?: string | undefined;
|
|
12043
10864
|
lifecyclestage?: string | undefined;
|
|
@@ -12046,15 +10867,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12046
10867
|
}, {
|
|
12047
10868
|
id?: string | undefined;
|
|
12048
10869
|
email?: string | undefined;
|
|
12049
|
-
company?: string | undefined;
|
|
12050
10870
|
state?: string | undefined;
|
|
12051
10871
|
createdAt?: string | undefined;
|
|
12052
10872
|
updatedAt?: string | undefined;
|
|
10873
|
+
company?: string | undefined;
|
|
12053
10874
|
address?: string | undefined;
|
|
12054
|
-
city?: string | undefined;
|
|
12055
10875
|
firstname?: string | undefined;
|
|
12056
10876
|
lastname?: string | undefined;
|
|
12057
10877
|
phone?: string | undefined;
|
|
10878
|
+
city?: string | undefined;
|
|
12058
10879
|
zip?: string | undefined;
|
|
12059
10880
|
country?: string | undefined;
|
|
12060
10881
|
lifecyclestage?: string | undefined;
|
|
@@ -12067,15 +10888,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12067
10888
|
contact?: {
|
|
12068
10889
|
id?: string | undefined;
|
|
12069
10890
|
email?: string | undefined;
|
|
12070
|
-
company?: string | undefined;
|
|
12071
10891
|
state?: string | undefined;
|
|
12072
10892
|
createdAt?: string | undefined;
|
|
12073
10893
|
updatedAt?: string | undefined;
|
|
10894
|
+
company?: string | undefined;
|
|
12074
10895
|
address?: string | undefined;
|
|
12075
|
-
city?: string | undefined;
|
|
12076
10896
|
firstname?: string | undefined;
|
|
12077
10897
|
lastname?: string | undefined;
|
|
12078
10898
|
phone?: string | undefined;
|
|
10899
|
+
city?: string | undefined;
|
|
12079
10900
|
zip?: string | undefined;
|
|
12080
10901
|
country?: string | undefined;
|
|
12081
10902
|
lifecyclestage?: string | undefined;
|
|
@@ -12088,15 +10909,15 @@ export declare const hubspotGetContactDetailsOutputSchema: z.ZodObject<{
|
|
|
12088
10909
|
contact?: {
|
|
12089
10910
|
id?: string | undefined;
|
|
12090
10911
|
email?: string | undefined;
|
|
12091
|
-
company?: string | undefined;
|
|
12092
10912
|
state?: string | undefined;
|
|
12093
10913
|
createdAt?: string | undefined;
|
|
12094
10914
|
updatedAt?: string | undefined;
|
|
10915
|
+
company?: string | undefined;
|
|
12095
10916
|
address?: string | undefined;
|
|
12096
|
-
city?: string | undefined;
|
|
12097
10917
|
firstname?: string | undefined;
|
|
12098
10918
|
lastname?: string | undefined;
|
|
12099
10919
|
phone?: string | undefined;
|
|
10920
|
+
city?: string | undefined;
|
|
12100
10921
|
zip?: string | undefined;
|
|
12101
10922
|
country?: string | undefined;
|
|
12102
10923
|
lifecyclestage?: string | undefined;
|
|
@@ -12190,8 +11011,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12190
11011
|
createdAt?: string | undefined;
|
|
12191
11012
|
updatedAt?: string | undefined;
|
|
12192
11013
|
address?: string | undefined;
|
|
12193
|
-
city?: string | undefined;
|
|
12194
11014
|
phone?: string | undefined;
|
|
11015
|
+
city?: string | undefined;
|
|
12195
11016
|
zip?: string | undefined;
|
|
12196
11017
|
country?: string | undefined;
|
|
12197
11018
|
archived?: boolean | undefined;
|
|
@@ -12205,8 +11026,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12205
11026
|
createdAt?: string | undefined;
|
|
12206
11027
|
updatedAt?: string | undefined;
|
|
12207
11028
|
address?: string | undefined;
|
|
12208
|
-
city?: string | undefined;
|
|
12209
11029
|
phone?: string | undefined;
|
|
11030
|
+
city?: string | undefined;
|
|
12210
11031
|
zip?: string | undefined;
|
|
12211
11032
|
country?: string | undefined;
|
|
12212
11033
|
archived?: boolean | undefined;
|
|
@@ -12224,8 +11045,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12224
11045
|
createdAt?: string | undefined;
|
|
12225
11046
|
updatedAt?: string | undefined;
|
|
12226
11047
|
address?: string | undefined;
|
|
12227
|
-
city?: string | undefined;
|
|
12228
11048
|
phone?: string | undefined;
|
|
11049
|
+
city?: string | undefined;
|
|
12229
11050
|
zip?: string | undefined;
|
|
12230
11051
|
country?: string | undefined;
|
|
12231
11052
|
archived?: boolean | undefined;
|
|
@@ -12243,8 +11064,8 @@ export declare const hubspotGetCompanyDetailsOutputSchema: z.ZodObject<{
|
|
|
12243
11064
|
createdAt?: string | undefined;
|
|
12244
11065
|
updatedAt?: string | undefined;
|
|
12245
11066
|
address?: string | undefined;
|
|
12246
|
-
city?: string | undefined;
|
|
12247
11067
|
phone?: string | undefined;
|
|
11068
|
+
city?: string | undefined;
|
|
12248
11069
|
zip?: string | undefined;
|
|
12249
11070
|
country?: string | undefined;
|
|
12250
11071
|
archived?: boolean | undefined;
|