@objectstack/platform-objects 6.8.1 → 7.0.0
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/apps/index.d.mts +30 -1
- package/dist/apps/index.d.ts +30 -1
- package/dist/apps/index.js +994 -37
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +994 -38
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +320 -16
- package/dist/audit/index.d.ts +320 -16
- package/dist/identity/index.d.mts +1000 -22
- package/dist/identity/index.d.ts +1000 -22
- package/dist/identity/index.js +384 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +384 -8
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +7060 -154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7054 -155
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +20 -1
- package/dist/integration/index.d.ts +20 -1
- package/dist/metadata/index.d.mts +40 -2
- package/dist/metadata/index.d.ts +40 -2
- package/dist/metadata-translations/index.d.mts +20 -0
- package/dist/metadata-translations/index.d.ts +20 -0
- package/dist/metadata-translations/index.js +4777 -0
- package/dist/metadata-translations/index.js.map +1 -0
- package/dist/metadata-translations/index.mjs +4775 -0
- package/dist/metadata-translations/index.mjs.map +1 -0
- package/dist/pages/index.d.mts +68 -0
- package/dist/pages/index.d.ts +68 -0
- package/dist/pages/index.js +371 -0
- package/dist/pages/index.js.map +1 -0
- package/dist/pages/index.mjs +368 -0
- package/dist/pages/index.mjs.map +1 -0
- package/dist/plugin.d.mts +35 -0
- package/dist/plugin.d.ts +35 -0
- package/dist/plugin.js +17566 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +17563 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/security/index.d.mts +6376 -2094
- package/dist/security/index.d.ts +6376 -2094
- package/dist/security/index.js +383 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +383 -2
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +60 -3
- package/dist/system/index.d.ts +60 -3
- package/package.json +17 -2
|
@@ -600,6 +600,14 @@ declare const SysUser: Omit<{
|
|
|
600
600
|
} | undefined;
|
|
601
601
|
recordTypes?: string[] | undefined;
|
|
602
602
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
603
|
+
publicSharing?: {
|
|
604
|
+
enabled: boolean;
|
|
605
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
606
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
607
|
+
maxExpiryDays?: number | undefined;
|
|
608
|
+
redactFields?: string[] | undefined;
|
|
609
|
+
eligibility?: string | undefined;
|
|
610
|
+
} | undefined;
|
|
603
611
|
keyPrefix?: string | undefined;
|
|
604
612
|
detail?: {
|
|
605
613
|
[x: string]: unknown;
|
|
@@ -614,7 +622,7 @@ declare const SysUser: Omit<{
|
|
|
614
622
|
refreshAfter: boolean;
|
|
615
623
|
objectName?: string | undefined;
|
|
616
624
|
icon?: string | undefined;
|
|
617
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
625
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
618
626
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
619
627
|
target?: string | undefined;
|
|
620
628
|
body?: {
|
|
@@ -647,6 +655,17 @@ declare const SysUser: Omit<{
|
|
|
647
655
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
648
656
|
confirmText?: string | undefined;
|
|
649
657
|
successMessage?: string | undefined;
|
|
658
|
+
resultDialog?: {
|
|
659
|
+
title?: string | undefined;
|
|
660
|
+
description?: string | undefined;
|
|
661
|
+
acknowledge?: string | undefined;
|
|
662
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
663
|
+
fields?: {
|
|
664
|
+
path: string;
|
|
665
|
+
label?: string | undefined;
|
|
666
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
667
|
+
}[] | undefined;
|
|
668
|
+
} | undefined;
|
|
650
669
|
visible?: {
|
|
651
670
|
dialect: "cel" | "js" | "cron" | "template";
|
|
652
671
|
source?: string | undefined;
|
|
@@ -787,8 +806,180 @@ declare const SysUser: Omit<{
|
|
|
787
806
|
readonly successMessage: "Now impersonating user";
|
|
788
807
|
readonly refreshAfter: true;
|
|
789
808
|
readonly confirmText: "Start an impersonation session for this user? Use only for legitimate support cases — actions will be logged.";
|
|
809
|
+
}, {
|
|
810
|
+
readonly name: "update_my_profile";
|
|
811
|
+
readonly label: "Update Profile";
|
|
812
|
+
readonly icon: "user-pen";
|
|
813
|
+
readonly variant: "primary";
|
|
814
|
+
readonly mode: "edit";
|
|
815
|
+
readonly locations: ["record_header"];
|
|
816
|
+
readonly type: "api";
|
|
817
|
+
readonly target: "/api/v1/auth/update-user";
|
|
818
|
+
readonly visible: "record.id == ctx.user.id";
|
|
819
|
+
readonly successMessage: "Profile updated";
|
|
820
|
+
readonly refreshAfter: true;
|
|
821
|
+
readonly params: [{
|
|
822
|
+
readonly field: "name";
|
|
823
|
+
readonly required: false;
|
|
824
|
+
readonly defaultFromRow: true;
|
|
825
|
+
}, {
|
|
826
|
+
readonly field: "image";
|
|
827
|
+
readonly required: false;
|
|
828
|
+
readonly defaultFromRow: true;
|
|
829
|
+
}];
|
|
830
|
+
}, {
|
|
831
|
+
readonly name: "change_my_password";
|
|
832
|
+
readonly label: "Change Password";
|
|
833
|
+
readonly icon: "key";
|
|
834
|
+
readonly variant: "secondary";
|
|
835
|
+
readonly locations: ["record_header", "record_more", "record_section"];
|
|
836
|
+
readonly type: "api";
|
|
837
|
+
readonly target: "/api/v1/auth/change-password";
|
|
838
|
+
readonly visible: "record.id == ctx.user.id";
|
|
839
|
+
readonly successMessage: "Password changed";
|
|
840
|
+
readonly refreshAfter: false;
|
|
841
|
+
readonly params: [{
|
|
842
|
+
readonly name: "currentPassword";
|
|
843
|
+
readonly label: "Current Password";
|
|
844
|
+
readonly type: "text";
|
|
845
|
+
readonly required: true;
|
|
846
|
+
}, {
|
|
847
|
+
readonly name: "newPassword";
|
|
848
|
+
readonly label: "New Password";
|
|
849
|
+
readonly type: "text";
|
|
850
|
+
readonly required: true;
|
|
851
|
+
}, {
|
|
852
|
+
readonly name: "revokeOtherSessions";
|
|
853
|
+
readonly label: "Sign out other devices";
|
|
854
|
+
readonly type: "boolean";
|
|
855
|
+
readonly required: false;
|
|
856
|
+
readonly defaultValue: true;
|
|
857
|
+
}];
|
|
858
|
+
}, {
|
|
859
|
+
readonly name: "change_my_email";
|
|
860
|
+
readonly label: "Change Email";
|
|
861
|
+
readonly icon: "mail";
|
|
862
|
+
readonly variant: "secondary";
|
|
863
|
+
readonly locations: ["record_header", "record_more", "record_section"];
|
|
864
|
+
readonly type: "api";
|
|
865
|
+
readonly target: "/api/v1/auth/change-email";
|
|
866
|
+
readonly visible: "record.id == ctx.user.id";
|
|
867
|
+
readonly successMessage: "Verification email sent — check the new address to confirm.";
|
|
868
|
+
readonly refreshAfter: false;
|
|
869
|
+
readonly params: [{
|
|
870
|
+
readonly name: "newEmail";
|
|
871
|
+
readonly label: "New Email";
|
|
872
|
+
readonly type: "email";
|
|
873
|
+
readonly required: true;
|
|
874
|
+
}];
|
|
875
|
+
}, {
|
|
876
|
+
readonly name: "resend_verification_email";
|
|
877
|
+
readonly label: "Resend Verification Email";
|
|
878
|
+
readonly icon: "mail-check";
|
|
879
|
+
readonly variant: "secondary";
|
|
880
|
+
readonly locations: ["record_header", "record_more", "record_section"];
|
|
881
|
+
readonly type: "api";
|
|
882
|
+
readonly target: "/api/v1/auth/send-verification-email";
|
|
883
|
+
readonly visible: "record.id == ctx.user.id && record.email_verified == false";
|
|
884
|
+
readonly successMessage: "Verification email sent — check your inbox.";
|
|
885
|
+
readonly refreshAfter: false;
|
|
886
|
+
readonly params: [];
|
|
887
|
+
}, {
|
|
888
|
+
readonly name: "delete_my_account";
|
|
889
|
+
readonly label: "Delete My Account";
|
|
890
|
+
readonly icon: "user-x";
|
|
891
|
+
readonly variant: "danger";
|
|
892
|
+
readonly mode: "delete";
|
|
893
|
+
readonly locations: ["record_more", "record_section"];
|
|
894
|
+
readonly type: "api";
|
|
895
|
+
readonly target: "/api/v1/auth/delete-user";
|
|
896
|
+
readonly visible: "record.id == ctx.user.id";
|
|
897
|
+
readonly confirmText: "Permanently delete your account? This cannot be undone — all your sessions will be terminated and all data you own will be removed per the configured retention policy.";
|
|
898
|
+
readonly successMessage: "Account deleted";
|
|
899
|
+
readonly refreshAfter: false;
|
|
900
|
+
readonly params: [{
|
|
901
|
+
readonly name: "password";
|
|
902
|
+
readonly label: "Current Password";
|
|
903
|
+
readonly type: "text";
|
|
904
|
+
readonly required: true;
|
|
905
|
+
}];
|
|
906
|
+
}, {
|
|
907
|
+
readonly name: "enable_two_factor";
|
|
908
|
+
readonly label: "Enable Two-Factor Auth";
|
|
909
|
+
readonly icon: "shield-plus";
|
|
910
|
+
readonly variant: "primary";
|
|
911
|
+
readonly locations: ["record_section"];
|
|
912
|
+
readonly type: "api";
|
|
913
|
+
readonly target: "/api/v1/auth/two-factor/enable";
|
|
914
|
+
readonly visible: "record.id == ctx.user.id && record.two_factor_enabled != true";
|
|
915
|
+
readonly successMessage: "Two-factor authentication enabled. Scan the QR code or paste the otpauth URI into your authenticator app, then verify a code to complete setup.";
|
|
916
|
+
readonly refreshAfter: true;
|
|
917
|
+
readonly params: [{
|
|
918
|
+
readonly name: "password";
|
|
919
|
+
readonly label: "Current Password";
|
|
920
|
+
readonly type: "text";
|
|
921
|
+
readonly required: true;
|
|
922
|
+
}];
|
|
923
|
+
}, {
|
|
924
|
+
readonly name: "disable_two_factor";
|
|
925
|
+
readonly label: "Disable Two-Factor Auth";
|
|
926
|
+
readonly icon: "shield-off";
|
|
927
|
+
readonly variant: "danger";
|
|
928
|
+
readonly locations: ["record_section"];
|
|
929
|
+
readonly type: "api";
|
|
930
|
+
readonly target: "/api/v1/auth/two-factor/disable";
|
|
931
|
+
readonly visible: "record.id == ctx.user.id && record.two_factor_enabled == true";
|
|
932
|
+
readonly confirmText: "Turn off two-factor authentication? Your account will be less secure.";
|
|
933
|
+
readonly successMessage: "Two-factor authentication disabled.";
|
|
934
|
+
readonly refreshAfter: true;
|
|
935
|
+
readonly params: [{
|
|
936
|
+
readonly name: "password";
|
|
937
|
+
readonly label: "Current Password";
|
|
938
|
+
readonly type: "text";
|
|
939
|
+
readonly required: true;
|
|
940
|
+
}];
|
|
941
|
+
}, {
|
|
942
|
+
readonly name: "generate_backup_codes";
|
|
943
|
+
readonly label: "Regenerate Backup Codes";
|
|
944
|
+
readonly icon: "list-restart";
|
|
945
|
+
readonly variant: "secondary";
|
|
946
|
+
readonly locations: ["record_section"];
|
|
947
|
+
readonly type: "api";
|
|
948
|
+
readonly target: "/api/v1/auth/two-factor/generate-backup-codes";
|
|
949
|
+
readonly visible: "record.id == ctx.user.id && record.two_factor_enabled == true";
|
|
950
|
+
readonly confirmText: "Generate a new set of backup codes? Any previously generated codes will stop working.";
|
|
951
|
+
readonly successMessage: "New backup codes generated — save them somewhere safe.";
|
|
952
|
+
readonly refreshAfter: false;
|
|
953
|
+
readonly params: [{
|
|
954
|
+
readonly name: "password";
|
|
955
|
+
readonly label: "Current Password";
|
|
956
|
+
readonly type: "text";
|
|
957
|
+
readonly required: true;
|
|
958
|
+
}];
|
|
790
959
|
}];
|
|
791
960
|
readonly listViews: {
|
|
961
|
+
readonly me: {
|
|
962
|
+
readonly type: "grid";
|
|
963
|
+
readonly name: "me";
|
|
964
|
+
readonly label: "My Profile";
|
|
965
|
+
readonly data: {
|
|
966
|
+
readonly provider: "object";
|
|
967
|
+
readonly object: "sys_user";
|
|
968
|
+
};
|
|
969
|
+
readonly columns: ["name", "email", "email_verified", "two_factor_enabled", "updated_at"];
|
|
970
|
+
readonly filter: [{
|
|
971
|
+
readonly field: "id";
|
|
972
|
+
readonly operator: "equals";
|
|
973
|
+
readonly value: "{current_user_id}";
|
|
974
|
+
}];
|
|
975
|
+
readonly sort: [{
|
|
976
|
+
readonly field: "name";
|
|
977
|
+
readonly order: "asc";
|
|
978
|
+
}];
|
|
979
|
+
readonly pagination: {
|
|
980
|
+
readonly pageSize: 1;
|
|
981
|
+
};
|
|
982
|
+
};
|
|
792
983
|
readonly all_users: {
|
|
793
984
|
readonly type: "grid";
|
|
794
985
|
readonly name: "all_users";
|
|
@@ -3599,6 +3790,14 @@ declare const SysSession: Omit<{
|
|
|
3599
3790
|
} | undefined;
|
|
3600
3791
|
recordTypes?: string[] | undefined;
|
|
3601
3792
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
3793
|
+
publicSharing?: {
|
|
3794
|
+
enabled: boolean;
|
|
3795
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
3796
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
3797
|
+
maxExpiryDays?: number | undefined;
|
|
3798
|
+
redactFields?: string[] | undefined;
|
|
3799
|
+
eligibility?: string | undefined;
|
|
3800
|
+
} | undefined;
|
|
3602
3801
|
keyPrefix?: string | undefined;
|
|
3603
3802
|
detail?: {
|
|
3604
3803
|
[x: string]: unknown;
|
|
@@ -3613,7 +3812,7 @@ declare const SysSession: Omit<{
|
|
|
3613
3812
|
refreshAfter: boolean;
|
|
3614
3813
|
objectName?: string | undefined;
|
|
3615
3814
|
icon?: string | undefined;
|
|
3616
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
3815
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
3617
3816
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
3618
3817
|
target?: string | undefined;
|
|
3619
3818
|
body?: {
|
|
@@ -3646,6 +3845,17 @@ declare const SysSession: Omit<{
|
|
|
3646
3845
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
3647
3846
|
confirmText?: string | undefined;
|
|
3648
3847
|
successMessage?: string | undefined;
|
|
3848
|
+
resultDialog?: {
|
|
3849
|
+
title?: string | undefined;
|
|
3850
|
+
description?: string | undefined;
|
|
3851
|
+
acknowledge?: string | undefined;
|
|
3852
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
3853
|
+
fields?: {
|
|
3854
|
+
path: string;
|
|
3855
|
+
label?: string | undefined;
|
|
3856
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
3857
|
+
}[] | undefined;
|
|
3858
|
+
} | undefined;
|
|
3649
3859
|
visible?: {
|
|
3650
3860
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3651
3861
|
source?: string | undefined;
|
|
@@ -6303,6 +6513,14 @@ declare const SysAccount: Omit<{
|
|
|
6303
6513
|
} | undefined;
|
|
6304
6514
|
recordTypes?: string[] | undefined;
|
|
6305
6515
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
6516
|
+
publicSharing?: {
|
|
6517
|
+
enabled: boolean;
|
|
6518
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
6519
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
6520
|
+
maxExpiryDays?: number | undefined;
|
|
6521
|
+
redactFields?: string[] | undefined;
|
|
6522
|
+
eligibility?: string | undefined;
|
|
6523
|
+
} | undefined;
|
|
6306
6524
|
keyPrefix?: string | undefined;
|
|
6307
6525
|
detail?: {
|
|
6308
6526
|
[x: string]: unknown;
|
|
@@ -6317,7 +6535,7 @@ declare const SysAccount: Omit<{
|
|
|
6317
6535
|
refreshAfter: boolean;
|
|
6318
6536
|
objectName?: string | undefined;
|
|
6319
6537
|
icon?: string | undefined;
|
|
6320
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
6538
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
6321
6539
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
6322
6540
|
target?: string | undefined;
|
|
6323
6541
|
body?: {
|
|
@@ -6350,6 +6568,17 @@ declare const SysAccount: Omit<{
|
|
|
6350
6568
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
6351
6569
|
confirmText?: string | undefined;
|
|
6352
6570
|
successMessage?: string | undefined;
|
|
6571
|
+
resultDialog?: {
|
|
6572
|
+
title?: string | undefined;
|
|
6573
|
+
description?: string | undefined;
|
|
6574
|
+
acknowledge?: string | undefined;
|
|
6575
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
6576
|
+
fields?: {
|
|
6577
|
+
path: string;
|
|
6578
|
+
label?: string | undefined;
|
|
6579
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
6580
|
+
}[] | undefined;
|
|
6581
|
+
} | undefined;
|
|
6353
6582
|
visible?: {
|
|
6354
6583
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6355
6584
|
source?: string | undefined;
|
|
@@ -6397,6 +6626,43 @@ declare const SysAccount: Omit<{
|
|
|
6397
6626
|
readonly titleFormat: "{provider_id} - {account_id}";
|
|
6398
6627
|
readonly compactLayout: ["provider_id", "user_id", "account_id"];
|
|
6399
6628
|
readonly actions: [{
|
|
6629
|
+
readonly name: "link_social";
|
|
6630
|
+
readonly label: "Link Social Account";
|
|
6631
|
+
readonly icon: "link-2";
|
|
6632
|
+
readonly variant: "primary";
|
|
6633
|
+
readonly mode: "create";
|
|
6634
|
+
readonly locations: ["list_toolbar"];
|
|
6635
|
+
readonly type: "url";
|
|
6636
|
+
readonly target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/apps/account/sys_account";
|
|
6637
|
+
readonly params: [{
|
|
6638
|
+
readonly name: "provider";
|
|
6639
|
+
readonly label: "Provider";
|
|
6640
|
+
readonly type: "select";
|
|
6641
|
+
readonly required: true;
|
|
6642
|
+
readonly options: [{
|
|
6643
|
+
readonly label: "Google";
|
|
6644
|
+
readonly value: "google";
|
|
6645
|
+
}, {
|
|
6646
|
+
readonly label: "GitHub";
|
|
6647
|
+
readonly value: "github";
|
|
6648
|
+
}, {
|
|
6649
|
+
readonly label: "Microsoft";
|
|
6650
|
+
readonly value: "microsoft";
|
|
6651
|
+
}, {
|
|
6652
|
+
readonly label: "Apple";
|
|
6653
|
+
readonly value: "apple";
|
|
6654
|
+
}, {
|
|
6655
|
+
readonly label: "Facebook";
|
|
6656
|
+
readonly value: "facebook";
|
|
6657
|
+
}, {
|
|
6658
|
+
readonly label: "GitLab";
|
|
6659
|
+
readonly value: "gitlab";
|
|
6660
|
+
}, {
|
|
6661
|
+
readonly label: "Discord";
|
|
6662
|
+
readonly value: "discord";
|
|
6663
|
+
}];
|
|
6664
|
+
}];
|
|
6665
|
+
}, {
|
|
6400
6666
|
readonly name: "unlink_account";
|
|
6401
6667
|
readonly label: "Unlink Account";
|
|
6402
6668
|
readonly icon: "unlink";
|
|
@@ -9377,6 +9643,14 @@ declare const SysVerification: Omit<{
|
|
|
9377
9643
|
} | undefined;
|
|
9378
9644
|
recordTypes?: string[] | undefined;
|
|
9379
9645
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
9646
|
+
publicSharing?: {
|
|
9647
|
+
enabled: boolean;
|
|
9648
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
9649
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
9650
|
+
maxExpiryDays?: number | undefined;
|
|
9651
|
+
redactFields?: string[] | undefined;
|
|
9652
|
+
eligibility?: string | undefined;
|
|
9653
|
+
} | undefined;
|
|
9380
9654
|
keyPrefix?: string | undefined;
|
|
9381
9655
|
detail?: {
|
|
9382
9656
|
[x: string]: unknown;
|
|
@@ -9391,7 +9665,7 @@ declare const SysVerification: Omit<{
|
|
|
9391
9665
|
refreshAfter: boolean;
|
|
9392
9666
|
objectName?: string | undefined;
|
|
9393
9667
|
icon?: string | undefined;
|
|
9394
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
9668
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
9395
9669
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
9396
9670
|
target?: string | undefined;
|
|
9397
9671
|
body?: {
|
|
@@ -9424,6 +9698,17 @@ declare const SysVerification: Omit<{
|
|
|
9424
9698
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
9425
9699
|
confirmText?: string | undefined;
|
|
9426
9700
|
successMessage?: string | undefined;
|
|
9701
|
+
resultDialog?: {
|
|
9702
|
+
title?: string | undefined;
|
|
9703
|
+
description?: string | undefined;
|
|
9704
|
+
acknowledge?: string | undefined;
|
|
9705
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
9706
|
+
fields?: {
|
|
9707
|
+
path: string;
|
|
9708
|
+
label?: string | undefined;
|
|
9709
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
9710
|
+
}[] | undefined;
|
|
9711
|
+
} | undefined;
|
|
9427
9712
|
visible?: {
|
|
9428
9713
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9429
9714
|
source?: string | undefined;
|
|
@@ -11137,6 +11422,14 @@ declare const SysOrganization: Omit<{
|
|
|
11137
11422
|
} | undefined;
|
|
11138
11423
|
recordTypes?: string[] | undefined;
|
|
11139
11424
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
11425
|
+
publicSharing?: {
|
|
11426
|
+
enabled: boolean;
|
|
11427
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
11428
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
11429
|
+
maxExpiryDays?: number | undefined;
|
|
11430
|
+
redactFields?: string[] | undefined;
|
|
11431
|
+
eligibility?: string | undefined;
|
|
11432
|
+
} | undefined;
|
|
11140
11433
|
keyPrefix?: string | undefined;
|
|
11141
11434
|
detail?: {
|
|
11142
11435
|
[x: string]: unknown;
|
|
@@ -11151,7 +11444,7 @@ declare const SysOrganization: Omit<{
|
|
|
11151
11444
|
refreshAfter: boolean;
|
|
11152
11445
|
objectName?: string | undefined;
|
|
11153
11446
|
icon?: string | undefined;
|
|
11154
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
11447
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
11155
11448
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
11156
11449
|
target?: string | undefined;
|
|
11157
11450
|
body?: {
|
|
@@ -11184,6 +11477,17 @@ declare const SysOrganization: Omit<{
|
|
|
11184
11477
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
11185
11478
|
confirmText?: string | undefined;
|
|
11186
11479
|
successMessage?: string | undefined;
|
|
11480
|
+
resultDialog?: {
|
|
11481
|
+
title?: string | undefined;
|
|
11482
|
+
description?: string | undefined;
|
|
11483
|
+
acknowledge?: string | undefined;
|
|
11484
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
11485
|
+
fields?: {
|
|
11486
|
+
path: string;
|
|
11487
|
+
label?: string | undefined;
|
|
11488
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
11489
|
+
}[] | undefined;
|
|
11490
|
+
} | undefined;
|
|
11187
11491
|
visible?: {
|
|
11188
11492
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11189
11493
|
source?: string | undefined;
|
|
@@ -11315,6 +11619,24 @@ declare const SysOrganization: Omit<{
|
|
|
11315
11619
|
readonly confirmText: "Leave this organization? You will lose access to all of its resources.";
|
|
11316
11620
|
readonly successMessage: "You have left the organization";
|
|
11317
11621
|
readonly refreshAfter: true;
|
|
11622
|
+
}, {
|
|
11623
|
+
readonly name: "change_slug";
|
|
11624
|
+
readonly label: "Change Slug";
|
|
11625
|
+
readonly icon: "edit-3";
|
|
11626
|
+
readonly variant: "secondary";
|
|
11627
|
+
readonly mode: "custom";
|
|
11628
|
+
readonly locations: ["record_header"];
|
|
11629
|
+
readonly type: "api";
|
|
11630
|
+
readonly target: "/api/v1/cloud/organizations/{id}/change-slug";
|
|
11631
|
+
readonly method: "POST";
|
|
11632
|
+
readonly confirmText: "Renaming the slug rewrites every platform subdomain for this org and parks the old slug for 90 days. Continue?";
|
|
11633
|
+
readonly successMessage: "Organization slug changed";
|
|
11634
|
+
readonly refreshAfter: true;
|
|
11635
|
+
readonly params: [{
|
|
11636
|
+
readonly field: "slug";
|
|
11637
|
+
readonly required: true;
|
|
11638
|
+
readonly defaultFromRow: true;
|
|
11639
|
+
}];
|
|
11318
11640
|
}];
|
|
11319
11641
|
readonly listViews: {
|
|
11320
11642
|
readonly all_orgs: {
|
|
@@ -13173,6 +13495,14 @@ declare const SysMember: Omit<{
|
|
|
13173
13495
|
} | undefined;
|
|
13174
13496
|
recordTypes?: string[] | undefined;
|
|
13175
13497
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
13498
|
+
publicSharing?: {
|
|
13499
|
+
enabled: boolean;
|
|
13500
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
13501
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
13502
|
+
maxExpiryDays?: number | undefined;
|
|
13503
|
+
redactFields?: string[] | undefined;
|
|
13504
|
+
eligibility?: string | undefined;
|
|
13505
|
+
} | undefined;
|
|
13176
13506
|
keyPrefix?: string | undefined;
|
|
13177
13507
|
detail?: {
|
|
13178
13508
|
[x: string]: unknown;
|
|
@@ -13187,7 +13517,7 @@ declare const SysMember: Omit<{
|
|
|
13187
13517
|
refreshAfter: boolean;
|
|
13188
13518
|
objectName?: string | undefined;
|
|
13189
13519
|
icon?: string | undefined;
|
|
13190
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
13520
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
13191
13521
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
13192
13522
|
target?: string | undefined;
|
|
13193
13523
|
body?: {
|
|
@@ -13220,6 +13550,17 @@ declare const SysMember: Omit<{
|
|
|
13220
13550
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
13221
13551
|
confirmText?: string | undefined;
|
|
13222
13552
|
successMessage?: string | undefined;
|
|
13553
|
+
resultDialog?: {
|
|
13554
|
+
title?: string | undefined;
|
|
13555
|
+
description?: string | undefined;
|
|
13556
|
+
acknowledge?: string | undefined;
|
|
13557
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
13558
|
+
fields?: {
|
|
13559
|
+
path: string;
|
|
13560
|
+
label?: string | undefined;
|
|
13561
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
13562
|
+
}[] | undefined;
|
|
13563
|
+
} | undefined;
|
|
13223
13564
|
visible?: {
|
|
13224
13565
|
dialect: "cel" | "js" | "cron" | "template";
|
|
13225
13566
|
source?: string | undefined;
|
|
@@ -13316,7 +13657,52 @@ declare const SysMember: Omit<{
|
|
|
13316
13657
|
readonly confirmText: "Remove this member from the organization? They will lose access to all org resources.";
|
|
13317
13658
|
readonly successMessage: "Member removed";
|
|
13318
13659
|
readonly refreshAfter: true;
|
|
13660
|
+
}, {
|
|
13661
|
+
readonly name: "transfer_ownership";
|
|
13662
|
+
readonly label: "Transfer Ownership";
|
|
13663
|
+
readonly icon: "crown";
|
|
13664
|
+
readonly variant: "danger";
|
|
13665
|
+
readonly mode: "custom";
|
|
13666
|
+
readonly locations: ["list_item"];
|
|
13667
|
+
readonly type: "api";
|
|
13668
|
+
readonly target: "/api/v1/auth/organization/update-member-role";
|
|
13669
|
+
readonly recordIdParam: "memberId";
|
|
13670
|
+
readonly bodyExtra: {
|
|
13671
|
+
readonly role: "owner";
|
|
13672
|
+
};
|
|
13673
|
+
readonly visible: "record.role != 'owner'";
|
|
13674
|
+
readonly confirmText: "Transfer ownership of this organization to the selected member? You will be demoted to admin and lose owner-only privileges.";
|
|
13675
|
+
readonly successMessage: "Ownership transferred";
|
|
13676
|
+
readonly refreshAfter: true;
|
|
13319
13677
|
}];
|
|
13678
|
+
readonly listViews: {
|
|
13679
|
+
readonly mine: {
|
|
13680
|
+
readonly type: "grid";
|
|
13681
|
+
readonly name: "mine";
|
|
13682
|
+
readonly label: "My Memberships";
|
|
13683
|
+
readonly data: {
|
|
13684
|
+
readonly provider: "object";
|
|
13685
|
+
readonly object: "sys_member";
|
|
13686
|
+
};
|
|
13687
|
+
readonly columns: ["organization_id", "role", "created_at"];
|
|
13688
|
+
readonly filter: [{
|
|
13689
|
+
readonly field: "user_id";
|
|
13690
|
+
readonly operator: "equals";
|
|
13691
|
+
readonly value: "{current_user_id}";
|
|
13692
|
+
}];
|
|
13693
|
+
readonly sort: [{
|
|
13694
|
+
readonly field: "created_at";
|
|
13695
|
+
readonly order: "desc";
|
|
13696
|
+
}];
|
|
13697
|
+
readonly pagination: {
|
|
13698
|
+
readonly pageSize: 50;
|
|
13699
|
+
};
|
|
13700
|
+
readonly emptyState: {
|
|
13701
|
+
readonly title: "No organizations yet";
|
|
13702
|
+
readonly message: "You haven't joined any organizations.";
|
|
13703
|
+
};
|
|
13704
|
+
};
|
|
13705
|
+
};
|
|
13320
13706
|
readonly fields: {
|
|
13321
13707
|
readonly id: {
|
|
13322
13708
|
readonly readonly?: boolean | undefined;
|
|
@@ -14805,6 +15191,14 @@ declare const SysInvitation: Omit<{
|
|
|
14805
15191
|
} | undefined;
|
|
14806
15192
|
recordTypes?: string[] | undefined;
|
|
14807
15193
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
15194
|
+
publicSharing?: {
|
|
15195
|
+
enabled: boolean;
|
|
15196
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
15197
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
15198
|
+
maxExpiryDays?: number | undefined;
|
|
15199
|
+
redactFields?: string[] | undefined;
|
|
15200
|
+
eligibility?: string | undefined;
|
|
15201
|
+
} | undefined;
|
|
14808
15202
|
keyPrefix?: string | undefined;
|
|
14809
15203
|
detail?: {
|
|
14810
15204
|
[x: string]: unknown;
|
|
@@ -14819,7 +15213,7 @@ declare const SysInvitation: Omit<{
|
|
|
14819
15213
|
refreshAfter: boolean;
|
|
14820
15214
|
objectName?: string | undefined;
|
|
14821
15215
|
icon?: string | undefined;
|
|
14822
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
15216
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
14823
15217
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
14824
15218
|
target?: string | undefined;
|
|
14825
15219
|
body?: {
|
|
@@ -14852,6 +15246,17 @@ declare const SysInvitation: Omit<{
|
|
|
14852
15246
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
14853
15247
|
confirmText?: string | undefined;
|
|
14854
15248
|
successMessage?: string | undefined;
|
|
15249
|
+
resultDialog?: {
|
|
15250
|
+
title?: string | undefined;
|
|
15251
|
+
description?: string | undefined;
|
|
15252
|
+
acknowledge?: string | undefined;
|
|
15253
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
15254
|
+
fields?: {
|
|
15255
|
+
path: string;
|
|
15256
|
+
label?: string | undefined;
|
|
15257
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
15258
|
+
}[] | undefined;
|
|
15259
|
+
} | undefined;
|
|
14855
15260
|
visible?: {
|
|
14856
15261
|
dialect: "cel" | "js" | "cron" | "template";
|
|
14857
15262
|
source?: string | undefined;
|
|
@@ -14950,6 +15355,31 @@ declare const SysInvitation: Omit<{
|
|
|
14950
15355
|
readonly required: true;
|
|
14951
15356
|
readonly defaultFromRow: true;
|
|
14952
15357
|
}];
|
|
15358
|
+
}, {
|
|
15359
|
+
readonly name: "accept_invitation";
|
|
15360
|
+
readonly label: "Accept Invitation";
|
|
15361
|
+
readonly icon: "check";
|
|
15362
|
+
readonly variant: "primary";
|
|
15363
|
+
readonly locations: ["list_item", "record_header"];
|
|
15364
|
+
readonly type: "api";
|
|
15365
|
+
readonly target: "/api/v1/auth/organization/accept-invitation";
|
|
15366
|
+
readonly recordIdParam: "invitationId";
|
|
15367
|
+
readonly visible: "record.email == ctx.user.email && record.status == 'pending'";
|
|
15368
|
+
readonly successMessage: "Invitation accepted";
|
|
15369
|
+
readonly refreshAfter: true;
|
|
15370
|
+
}, {
|
|
15371
|
+
readonly name: "reject_invitation";
|
|
15372
|
+
readonly label: "Decline Invitation";
|
|
15373
|
+
readonly icon: "x";
|
|
15374
|
+
readonly variant: "ghost";
|
|
15375
|
+
readonly locations: ["list_item", "record_header"];
|
|
15376
|
+
readonly type: "api";
|
|
15377
|
+
readonly target: "/api/v1/auth/organization/reject-invitation";
|
|
15378
|
+
readonly recordIdParam: "invitationId";
|
|
15379
|
+
readonly visible: "record.email == ctx.user.email && record.status == 'pending'";
|
|
15380
|
+
readonly confirmText: "Decline this invitation? The inviter will be notified and you will need a new invitation to join.";
|
|
15381
|
+
readonly successMessage: "Invitation declined";
|
|
15382
|
+
readonly refreshAfter: true;
|
|
14953
15383
|
}];
|
|
14954
15384
|
readonly listViews: {
|
|
14955
15385
|
readonly pending: {
|
|
@@ -17225,6 +17655,14 @@ declare const SysTeam: Omit<{
|
|
|
17225
17655
|
} | undefined;
|
|
17226
17656
|
recordTypes?: string[] | undefined;
|
|
17227
17657
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
17658
|
+
publicSharing?: {
|
|
17659
|
+
enabled: boolean;
|
|
17660
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
17661
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
17662
|
+
maxExpiryDays?: number | undefined;
|
|
17663
|
+
redactFields?: string[] | undefined;
|
|
17664
|
+
eligibility?: string | undefined;
|
|
17665
|
+
} | undefined;
|
|
17228
17666
|
keyPrefix?: string | undefined;
|
|
17229
17667
|
detail?: {
|
|
17230
17668
|
[x: string]: unknown;
|
|
@@ -17239,7 +17677,7 @@ declare const SysTeam: Omit<{
|
|
|
17239
17677
|
refreshAfter: boolean;
|
|
17240
17678
|
objectName?: string | undefined;
|
|
17241
17679
|
icon?: string | undefined;
|
|
17242
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
17680
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
17243
17681
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
17244
17682
|
target?: string | undefined;
|
|
17245
17683
|
body?: {
|
|
@@ -17272,6 +17710,17 @@ declare const SysTeam: Omit<{
|
|
|
17272
17710
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
17273
17711
|
confirmText?: string | undefined;
|
|
17274
17712
|
successMessage?: string | undefined;
|
|
17713
|
+
resultDialog?: {
|
|
17714
|
+
title?: string | undefined;
|
|
17715
|
+
description?: string | undefined;
|
|
17716
|
+
acknowledge?: string | undefined;
|
|
17717
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
17718
|
+
fields?: {
|
|
17719
|
+
path: string;
|
|
17720
|
+
label?: string | undefined;
|
|
17721
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
17722
|
+
}[] | undefined;
|
|
17723
|
+
} | undefined;
|
|
17275
17724
|
visible?: {
|
|
17276
17725
|
dialect: "cel" | "js" | "cron" | "template";
|
|
17277
17726
|
source?: string | undefined;
|
|
@@ -18903,6 +19352,14 @@ declare const SysTeamMember: Omit<{
|
|
|
18903
19352
|
} | undefined;
|
|
18904
19353
|
recordTypes?: string[] | undefined;
|
|
18905
19354
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
19355
|
+
publicSharing?: {
|
|
19356
|
+
enabled: boolean;
|
|
19357
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
19358
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
19359
|
+
maxExpiryDays?: number | undefined;
|
|
19360
|
+
redactFields?: string[] | undefined;
|
|
19361
|
+
eligibility?: string | undefined;
|
|
19362
|
+
} | undefined;
|
|
18906
19363
|
keyPrefix?: string | undefined;
|
|
18907
19364
|
detail?: {
|
|
18908
19365
|
[x: string]: unknown;
|
|
@@ -18917,7 +19374,7 @@ declare const SysTeamMember: Omit<{
|
|
|
18917
19374
|
refreshAfter: boolean;
|
|
18918
19375
|
objectName?: string | undefined;
|
|
18919
19376
|
icon?: string | undefined;
|
|
18920
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
19377
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
18921
19378
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
18922
19379
|
target?: string | undefined;
|
|
18923
19380
|
body?: {
|
|
@@ -18950,6 +19407,17 @@ declare const SysTeamMember: Omit<{
|
|
|
18950
19407
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
18951
19408
|
confirmText?: string | undefined;
|
|
18952
19409
|
successMessage?: string | undefined;
|
|
19410
|
+
resultDialog?: {
|
|
19411
|
+
title?: string | undefined;
|
|
19412
|
+
description?: string | undefined;
|
|
19413
|
+
acknowledge?: string | undefined;
|
|
19414
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
19415
|
+
fields?: {
|
|
19416
|
+
path: string;
|
|
19417
|
+
label?: string | undefined;
|
|
19418
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
19419
|
+
}[] | undefined;
|
|
19420
|
+
} | undefined;
|
|
18953
19421
|
visible?: {
|
|
18954
19422
|
dialect: "cel" | "js" | "cron" | "template";
|
|
18955
19423
|
source?: string | undefined;
|
|
@@ -20362,6 +20830,14 @@ declare const SysDepartment: Omit<{
|
|
|
20362
20830
|
} | undefined;
|
|
20363
20831
|
recordTypes?: string[] | undefined;
|
|
20364
20832
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
20833
|
+
publicSharing?: {
|
|
20834
|
+
enabled: boolean;
|
|
20835
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
20836
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
20837
|
+
maxExpiryDays?: number | undefined;
|
|
20838
|
+
redactFields?: string[] | undefined;
|
|
20839
|
+
eligibility?: string | undefined;
|
|
20840
|
+
} | undefined;
|
|
20365
20841
|
keyPrefix?: string | undefined;
|
|
20366
20842
|
detail?: {
|
|
20367
20843
|
[x: string]: unknown;
|
|
@@ -20376,7 +20852,7 @@ declare const SysDepartment: Omit<{
|
|
|
20376
20852
|
refreshAfter: boolean;
|
|
20377
20853
|
objectName?: string | undefined;
|
|
20378
20854
|
icon?: string | undefined;
|
|
20379
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
20855
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
20380
20856
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
20381
20857
|
target?: string | undefined;
|
|
20382
20858
|
body?: {
|
|
@@ -20409,6 +20885,17 @@ declare const SysDepartment: Omit<{
|
|
|
20409
20885
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
20410
20886
|
confirmText?: string | undefined;
|
|
20411
20887
|
successMessage?: string | undefined;
|
|
20888
|
+
resultDialog?: {
|
|
20889
|
+
title?: string | undefined;
|
|
20890
|
+
description?: string | undefined;
|
|
20891
|
+
acknowledge?: string | undefined;
|
|
20892
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
20893
|
+
fields?: {
|
|
20894
|
+
path: string;
|
|
20895
|
+
label?: string | undefined;
|
|
20896
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
20897
|
+
}[] | undefined;
|
|
20898
|
+
} | undefined;
|
|
20412
20899
|
visible?: {
|
|
20413
20900
|
dialect: "cel" | "js" | "cron" | "template";
|
|
20414
20901
|
source?: string | undefined;
|
|
@@ -23442,6 +23929,14 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23442
23929
|
} | undefined;
|
|
23443
23930
|
recordTypes?: string[] | undefined;
|
|
23444
23931
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
23932
|
+
publicSharing?: {
|
|
23933
|
+
enabled: boolean;
|
|
23934
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
23935
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
23936
|
+
maxExpiryDays?: number | undefined;
|
|
23937
|
+
redactFields?: string[] | undefined;
|
|
23938
|
+
eligibility?: string | undefined;
|
|
23939
|
+
} | undefined;
|
|
23445
23940
|
keyPrefix?: string | undefined;
|
|
23446
23941
|
detail?: {
|
|
23447
23942
|
[x: string]: unknown;
|
|
@@ -23456,7 +23951,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23456
23951
|
refreshAfter: boolean;
|
|
23457
23952
|
objectName?: string | undefined;
|
|
23458
23953
|
icon?: string | undefined;
|
|
23459
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
23954
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
23460
23955
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
23461
23956
|
target?: string | undefined;
|
|
23462
23957
|
body?: {
|
|
@@ -23489,6 +23984,17 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23489
23984
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
23490
23985
|
confirmText?: string | undefined;
|
|
23491
23986
|
successMessage?: string | undefined;
|
|
23987
|
+
resultDialog?: {
|
|
23988
|
+
title?: string | undefined;
|
|
23989
|
+
description?: string | undefined;
|
|
23990
|
+
acknowledge?: string | undefined;
|
|
23991
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
23992
|
+
fields?: {
|
|
23993
|
+
path: string;
|
|
23994
|
+
label?: string | undefined;
|
|
23995
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
23996
|
+
}[] | undefined;
|
|
23997
|
+
} | undefined;
|
|
23492
23998
|
visible?: {
|
|
23493
23999
|
dialect: "cel" | "js" | "cron" | "template";
|
|
23494
24000
|
source?: string | undefined;
|
|
@@ -25728,6 +26234,14 @@ declare const SysApiKey: Omit<{
|
|
|
25728
26234
|
} | undefined;
|
|
25729
26235
|
recordTypes?: string[] | undefined;
|
|
25730
26236
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
26237
|
+
publicSharing?: {
|
|
26238
|
+
enabled: boolean;
|
|
26239
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
26240
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
26241
|
+
maxExpiryDays?: number | undefined;
|
|
26242
|
+
redactFields?: string[] | undefined;
|
|
26243
|
+
eligibility?: string | undefined;
|
|
26244
|
+
} | undefined;
|
|
25731
26245
|
keyPrefix?: string | undefined;
|
|
25732
26246
|
detail?: {
|
|
25733
26247
|
[x: string]: unknown;
|
|
@@ -25742,7 +26256,7 @@ declare const SysApiKey: Omit<{
|
|
|
25742
26256
|
refreshAfter: boolean;
|
|
25743
26257
|
objectName?: string | undefined;
|
|
25744
26258
|
icon?: string | undefined;
|
|
25745
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
26259
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
25746
26260
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
25747
26261
|
target?: string | undefined;
|
|
25748
26262
|
body?: {
|
|
@@ -25775,6 +26289,17 @@ declare const SysApiKey: Omit<{
|
|
|
25775
26289
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
25776
26290
|
confirmText?: string | undefined;
|
|
25777
26291
|
successMessage?: string | undefined;
|
|
26292
|
+
resultDialog?: {
|
|
26293
|
+
title?: string | undefined;
|
|
26294
|
+
description?: string | undefined;
|
|
26295
|
+
acknowledge?: string | undefined;
|
|
26296
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
26297
|
+
fields?: {
|
|
26298
|
+
path: string;
|
|
26299
|
+
label?: string | undefined;
|
|
26300
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
26301
|
+
}[] | undefined;
|
|
26302
|
+
} | undefined;
|
|
25778
26303
|
visible?: {
|
|
25779
26304
|
dialect: "cel" | "js" | "cron" | "template";
|
|
25780
26305
|
source?: string | undefined;
|
|
@@ -28482,6 +29007,14 @@ declare const SysTwoFactor: Omit<{
|
|
|
28482
29007
|
} | undefined;
|
|
28483
29008
|
recordTypes?: string[] | undefined;
|
|
28484
29009
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
29010
|
+
publicSharing?: {
|
|
29011
|
+
enabled: boolean;
|
|
29012
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
29013
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
29014
|
+
maxExpiryDays?: number | undefined;
|
|
29015
|
+
redactFields?: string[] | undefined;
|
|
29016
|
+
eligibility?: string | undefined;
|
|
29017
|
+
} | undefined;
|
|
28485
29018
|
keyPrefix?: string | undefined;
|
|
28486
29019
|
detail?: {
|
|
28487
29020
|
[x: string]: unknown;
|
|
@@ -28496,7 +29029,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28496
29029
|
refreshAfter: boolean;
|
|
28497
29030
|
objectName?: string | undefined;
|
|
28498
29031
|
icon?: string | undefined;
|
|
28499
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
29032
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
28500
29033
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
28501
29034
|
target?: string | undefined;
|
|
28502
29035
|
body?: {
|
|
@@ -28529,6 +29062,17 @@ declare const SysTwoFactor: Omit<{
|
|
|
28529
29062
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
28530
29063
|
confirmText?: string | undefined;
|
|
28531
29064
|
successMessage?: string | undefined;
|
|
29065
|
+
resultDialog?: {
|
|
29066
|
+
title?: string | undefined;
|
|
29067
|
+
description?: string | undefined;
|
|
29068
|
+
acknowledge?: string | undefined;
|
|
29069
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
29070
|
+
fields?: {
|
|
29071
|
+
path: string;
|
|
29072
|
+
label?: string | undefined;
|
|
29073
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
29074
|
+
}[] | undefined;
|
|
29075
|
+
} | undefined;
|
|
28532
29076
|
visible?: {
|
|
28533
29077
|
dialect: "cel" | "js" | "cron" | "template";
|
|
28534
29078
|
source?: string | undefined;
|
|
@@ -28624,7 +29168,6 @@ declare const SysTwoFactor: Omit<{
|
|
|
28624
29168
|
readonly locations: ["list_toolbar"];
|
|
28625
29169
|
readonly type: "api";
|
|
28626
29170
|
readonly target: "/api/v1/auth/two-factor/enable";
|
|
28627
|
-
readonly successMessage: "2FA enrollment started — check response for TOTP URI and backup codes";
|
|
28628
29171
|
readonly refreshAfter: true;
|
|
28629
29172
|
readonly params: [{
|
|
28630
29173
|
readonly name: "password";
|
|
@@ -28632,6 +29175,20 @@ declare const SysTwoFactor: Omit<{
|
|
|
28632
29175
|
readonly type: "text";
|
|
28633
29176
|
readonly required: true;
|
|
28634
29177
|
}];
|
|
29178
|
+
readonly resultDialog: {
|
|
29179
|
+
readonly title: "Two-factor authentication enabled";
|
|
29180
|
+
readonly description: "Scan the QR code with your authenticator app, then save the backup codes somewhere safe. The backup codes are shown only once.";
|
|
29181
|
+
readonly acknowledge: "I have saved my backup codes";
|
|
29182
|
+
readonly fields: [{
|
|
29183
|
+
readonly path: "totpURI";
|
|
29184
|
+
readonly label: "Authenticator URI";
|
|
29185
|
+
readonly format: "qrcode";
|
|
29186
|
+
}, {
|
|
29187
|
+
readonly path: "backupCodes";
|
|
29188
|
+
readonly label: "Backup Codes";
|
|
29189
|
+
readonly format: "code-list";
|
|
29190
|
+
}];
|
|
29191
|
+
};
|
|
28635
29192
|
}, {
|
|
28636
29193
|
readonly name: "disable_two_factor";
|
|
28637
29194
|
readonly label: "Disable 2FA";
|
|
@@ -28649,6 +29206,32 @@ declare const SysTwoFactor: Omit<{
|
|
|
28649
29206
|
readonly type: "text";
|
|
28650
29207
|
readonly required: true;
|
|
28651
29208
|
}];
|
|
29209
|
+
}, {
|
|
29210
|
+
readonly name: "regenerate_backup_codes";
|
|
29211
|
+
readonly label: "Regenerate Backup Codes";
|
|
29212
|
+
readonly icon: "refresh-cw";
|
|
29213
|
+
readonly variant: "secondary";
|
|
29214
|
+
readonly locations: ["list_toolbar", "list_item"];
|
|
29215
|
+
readonly type: "api";
|
|
29216
|
+
readonly target: "/api/v1/auth/two-factor/generate-backup-codes";
|
|
29217
|
+
readonly confirmText: "Regenerate backup codes? All previous backup codes will stop working immediately.";
|
|
29218
|
+
readonly refreshAfter: true;
|
|
29219
|
+
readonly params: [{
|
|
29220
|
+
readonly name: "password";
|
|
29221
|
+
readonly label: "Current Password";
|
|
29222
|
+
readonly type: "text";
|
|
29223
|
+
readonly required: true;
|
|
29224
|
+
}];
|
|
29225
|
+
readonly resultDialog: {
|
|
29226
|
+
readonly title: "New backup codes generated";
|
|
29227
|
+
readonly description: "Previous backup codes are now invalid. Save these new codes somewhere safe — they are shown only once.";
|
|
29228
|
+
readonly acknowledge: "I have saved the new codes";
|
|
29229
|
+
readonly fields: [{
|
|
29230
|
+
readonly path: "backupCodes";
|
|
29231
|
+
readonly label: "Backup Codes";
|
|
29232
|
+
readonly format: "code-list";
|
|
29233
|
+
}];
|
|
29234
|
+
};
|
|
28652
29235
|
}];
|
|
28653
29236
|
readonly fields: {
|
|
28654
29237
|
readonly id: {
|
|
@@ -29701,6 +30284,181 @@ declare const SysTwoFactor: Omit<{
|
|
|
29701
30284
|
readonly index?: boolean | undefined;
|
|
29702
30285
|
readonly type: "textarea";
|
|
29703
30286
|
};
|
|
30287
|
+
readonly verified: {
|
|
30288
|
+
readonly readonly?: boolean | undefined;
|
|
30289
|
+
readonly format?: string | undefined;
|
|
30290
|
+
readonly options?: {
|
|
30291
|
+
label: string;
|
|
30292
|
+
value: string;
|
|
30293
|
+
color?: string | undefined;
|
|
30294
|
+
default?: boolean | undefined;
|
|
30295
|
+
}[] | undefined;
|
|
30296
|
+
readonly description?: string | undefined;
|
|
30297
|
+
readonly label?: string | undefined;
|
|
30298
|
+
readonly name?: string | undefined;
|
|
30299
|
+
readonly precision?: number | undefined;
|
|
30300
|
+
readonly required?: boolean | undefined;
|
|
30301
|
+
readonly multiple?: boolean | undefined;
|
|
30302
|
+
readonly dependencies?: string[] | undefined;
|
|
30303
|
+
readonly theme?: string | undefined;
|
|
30304
|
+
readonly externalId?: boolean | undefined;
|
|
30305
|
+
readonly system?: boolean | undefined;
|
|
30306
|
+
readonly min?: number | undefined;
|
|
30307
|
+
readonly max?: number | undefined;
|
|
30308
|
+
readonly group?: string | undefined;
|
|
30309
|
+
readonly encryptionConfig?: {
|
|
30310
|
+
enabled: boolean;
|
|
30311
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
30312
|
+
keyManagement: {
|
|
30313
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
30314
|
+
keyId?: string | undefined;
|
|
30315
|
+
rotationPolicy?: {
|
|
30316
|
+
enabled: boolean;
|
|
30317
|
+
frequencyDays: number;
|
|
30318
|
+
retainOldVersions: number;
|
|
30319
|
+
autoRotate: boolean;
|
|
30320
|
+
} | undefined;
|
|
30321
|
+
};
|
|
30322
|
+
scope: "record" | "field" | "table" | "database";
|
|
30323
|
+
deterministicEncryption: boolean;
|
|
30324
|
+
searchableEncryption: boolean;
|
|
30325
|
+
} | undefined;
|
|
30326
|
+
readonly columnName?: string | undefined;
|
|
30327
|
+
readonly searchable?: boolean | undefined;
|
|
30328
|
+
readonly unique?: boolean | undefined;
|
|
30329
|
+
readonly defaultValue?: unknown;
|
|
30330
|
+
readonly maxLength?: number | undefined;
|
|
30331
|
+
readonly minLength?: number | undefined;
|
|
30332
|
+
readonly scale?: number | undefined;
|
|
30333
|
+
readonly reference?: string | undefined;
|
|
30334
|
+
readonly referenceFilters?: string[] | undefined;
|
|
30335
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
30336
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
30337
|
+
readonly expression?: {
|
|
30338
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30339
|
+
source?: string | undefined;
|
|
30340
|
+
ast?: unknown;
|
|
30341
|
+
meta?: {
|
|
30342
|
+
rationale?: string | undefined;
|
|
30343
|
+
generatedBy?: string | undefined;
|
|
30344
|
+
} | undefined;
|
|
30345
|
+
} | undefined;
|
|
30346
|
+
readonly summaryOperations?: {
|
|
30347
|
+
object: string;
|
|
30348
|
+
field: string;
|
|
30349
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
30350
|
+
} | undefined;
|
|
30351
|
+
readonly language?: string | undefined;
|
|
30352
|
+
readonly lineNumbers?: boolean | undefined;
|
|
30353
|
+
readonly maxRating?: number | undefined;
|
|
30354
|
+
readonly allowHalf?: boolean | undefined;
|
|
30355
|
+
readonly displayMap?: boolean | undefined;
|
|
30356
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
30357
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
30358
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
30359
|
+
readonly allowAlpha?: boolean | undefined;
|
|
30360
|
+
readonly presetColors?: string[] | undefined;
|
|
30361
|
+
readonly step?: number | undefined;
|
|
30362
|
+
readonly showValue?: boolean | undefined;
|
|
30363
|
+
readonly marks?: Record<string, string> | undefined;
|
|
30364
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
30365
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
30366
|
+
readonly displayValue?: boolean | undefined;
|
|
30367
|
+
readonly allowScanning?: boolean | undefined;
|
|
30368
|
+
readonly currencyConfig?: {
|
|
30369
|
+
precision: number;
|
|
30370
|
+
currencyMode: "fixed" | "dynamic";
|
|
30371
|
+
defaultCurrency: string;
|
|
30372
|
+
} | undefined;
|
|
30373
|
+
readonly vectorConfig?: {
|
|
30374
|
+
dimensions: number;
|
|
30375
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
30376
|
+
normalized: boolean;
|
|
30377
|
+
indexed: boolean;
|
|
30378
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
30379
|
+
} | undefined;
|
|
30380
|
+
readonly fileAttachmentConfig?: {
|
|
30381
|
+
virusScan: boolean;
|
|
30382
|
+
virusScanOnUpload: boolean;
|
|
30383
|
+
quarantineOnThreat: boolean;
|
|
30384
|
+
allowMultiple: boolean;
|
|
30385
|
+
allowReplace: boolean;
|
|
30386
|
+
allowDelete: boolean;
|
|
30387
|
+
requireUpload: boolean;
|
|
30388
|
+
extractMetadata: boolean;
|
|
30389
|
+
extractText: boolean;
|
|
30390
|
+
versioningEnabled: boolean;
|
|
30391
|
+
publicRead: boolean;
|
|
30392
|
+
presignedUrlExpiry: number;
|
|
30393
|
+
minSize?: number | undefined;
|
|
30394
|
+
maxSize?: number | undefined;
|
|
30395
|
+
allowedTypes?: string[] | undefined;
|
|
30396
|
+
blockedTypes?: string[] | undefined;
|
|
30397
|
+
allowedMimeTypes?: string[] | undefined;
|
|
30398
|
+
blockedMimeTypes?: string[] | undefined;
|
|
30399
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
30400
|
+
storageProvider?: string | undefined;
|
|
30401
|
+
storageBucket?: string | undefined;
|
|
30402
|
+
storagePrefix?: string | undefined;
|
|
30403
|
+
imageValidation?: {
|
|
30404
|
+
generateThumbnails: boolean;
|
|
30405
|
+
preserveMetadata: boolean;
|
|
30406
|
+
autoRotate: boolean;
|
|
30407
|
+
minWidth?: number | undefined;
|
|
30408
|
+
maxWidth?: number | undefined;
|
|
30409
|
+
minHeight?: number | undefined;
|
|
30410
|
+
maxHeight?: number | undefined;
|
|
30411
|
+
aspectRatio?: string | undefined;
|
|
30412
|
+
thumbnailSizes?: {
|
|
30413
|
+
name: string;
|
|
30414
|
+
width: number;
|
|
30415
|
+
height: number;
|
|
30416
|
+
crop: boolean;
|
|
30417
|
+
}[] | undefined;
|
|
30418
|
+
} | undefined;
|
|
30419
|
+
maxVersions?: number | undefined;
|
|
30420
|
+
} | undefined;
|
|
30421
|
+
readonly maskingRule?: {
|
|
30422
|
+
field: string;
|
|
30423
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
30424
|
+
preserveFormat: boolean;
|
|
30425
|
+
preserveLength: boolean;
|
|
30426
|
+
pattern?: string | undefined;
|
|
30427
|
+
roles?: string[] | undefined;
|
|
30428
|
+
exemptRoles?: string[] | undefined;
|
|
30429
|
+
} | undefined;
|
|
30430
|
+
readonly auditTrail?: boolean | undefined;
|
|
30431
|
+
readonly cached?: {
|
|
30432
|
+
enabled: boolean;
|
|
30433
|
+
ttl: number;
|
|
30434
|
+
invalidateOn: string[];
|
|
30435
|
+
} | undefined;
|
|
30436
|
+
readonly dataQuality?: {
|
|
30437
|
+
uniqueness: boolean;
|
|
30438
|
+
completeness: number;
|
|
30439
|
+
accuracy?: {
|
|
30440
|
+
source: string;
|
|
30441
|
+
threshold: number;
|
|
30442
|
+
} | undefined;
|
|
30443
|
+
} | undefined;
|
|
30444
|
+
readonly conditionalRequired?: {
|
|
30445
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
30446
|
+
source?: string | undefined;
|
|
30447
|
+
ast?: unknown;
|
|
30448
|
+
meta?: {
|
|
30449
|
+
rationale?: string | undefined;
|
|
30450
|
+
generatedBy?: string | undefined;
|
|
30451
|
+
} | undefined;
|
|
30452
|
+
} | undefined;
|
|
30453
|
+
readonly hidden?: boolean | undefined;
|
|
30454
|
+
readonly sortable?: boolean | undefined;
|
|
30455
|
+
readonly inlineHelpText?: string | undefined;
|
|
30456
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
30457
|
+
readonly caseSensitive?: boolean | undefined;
|
|
30458
|
+
readonly autonumberFormat?: string | undefined;
|
|
30459
|
+
readonly index?: boolean | undefined;
|
|
30460
|
+
readonly type: "boolean";
|
|
30461
|
+
};
|
|
29704
30462
|
};
|
|
29705
30463
|
readonly indexes: [{
|
|
29706
30464
|
readonly fields: ["user_id"];
|
|
@@ -30320,6 +31078,14 @@ declare const SysDeviceCode: Omit<{
|
|
|
30320
31078
|
} | undefined;
|
|
30321
31079
|
recordTypes?: string[] | undefined;
|
|
30322
31080
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
31081
|
+
publicSharing?: {
|
|
31082
|
+
enabled: boolean;
|
|
31083
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
31084
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
31085
|
+
maxExpiryDays?: number | undefined;
|
|
31086
|
+
redactFields?: string[] | undefined;
|
|
31087
|
+
eligibility?: string | undefined;
|
|
31088
|
+
} | undefined;
|
|
30323
31089
|
keyPrefix?: string | undefined;
|
|
30324
31090
|
detail?: {
|
|
30325
31091
|
[x: string]: unknown;
|
|
@@ -30334,7 +31100,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30334
31100
|
refreshAfter: boolean;
|
|
30335
31101
|
objectName?: string | undefined;
|
|
30336
31102
|
icon?: string | undefined;
|
|
30337
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
31103
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
30338
31104
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
30339
31105
|
target?: string | undefined;
|
|
30340
31106
|
body?: {
|
|
@@ -30367,6 +31133,17 @@ declare const SysDeviceCode: Omit<{
|
|
|
30367
31133
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
30368
31134
|
confirmText?: string | undefined;
|
|
30369
31135
|
successMessage?: string | undefined;
|
|
31136
|
+
resultDialog?: {
|
|
31137
|
+
title?: string | undefined;
|
|
31138
|
+
description?: string | undefined;
|
|
31139
|
+
acknowledge?: string | undefined;
|
|
31140
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
31141
|
+
fields?: {
|
|
31142
|
+
path: string;
|
|
31143
|
+
label?: string | undefined;
|
|
31144
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
31145
|
+
}[] | undefined;
|
|
31146
|
+
} | undefined;
|
|
30370
31147
|
visible?: {
|
|
30371
31148
|
dialect: "cel" | "js" | "cron" | "template";
|
|
30372
31149
|
source?: string | undefined;
|
|
@@ -33140,6 +33917,14 @@ declare const SysUserPreference: Omit<{
|
|
|
33140
33917
|
} | undefined;
|
|
33141
33918
|
recordTypes?: string[] | undefined;
|
|
33142
33919
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
33920
|
+
publicSharing?: {
|
|
33921
|
+
enabled: boolean;
|
|
33922
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
33923
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
33924
|
+
maxExpiryDays?: number | undefined;
|
|
33925
|
+
redactFields?: string[] | undefined;
|
|
33926
|
+
eligibility?: string | undefined;
|
|
33927
|
+
} | undefined;
|
|
33143
33928
|
keyPrefix?: string | undefined;
|
|
33144
33929
|
detail?: {
|
|
33145
33930
|
[x: string]: unknown;
|
|
@@ -33154,7 +33939,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33154
33939
|
refreshAfter: boolean;
|
|
33155
33940
|
objectName?: string | undefined;
|
|
33156
33941
|
icon?: string | undefined;
|
|
33157
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
33942
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
33158
33943
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
33159
33944
|
target?: string | undefined;
|
|
33160
33945
|
body?: {
|
|
@@ -33187,6 +33972,17 @@ declare const SysUserPreference: Omit<{
|
|
|
33187
33972
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
33188
33973
|
confirmText?: string | undefined;
|
|
33189
33974
|
successMessage?: string | undefined;
|
|
33975
|
+
resultDialog?: {
|
|
33976
|
+
title?: string | undefined;
|
|
33977
|
+
description?: string | undefined;
|
|
33978
|
+
acknowledge?: string | undefined;
|
|
33979
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
33980
|
+
fields?: {
|
|
33981
|
+
path: string;
|
|
33982
|
+
label?: string | undefined;
|
|
33983
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
33984
|
+
}[] | undefined;
|
|
33985
|
+
} | undefined;
|
|
33190
33986
|
visible?: {
|
|
33191
33987
|
dialect: "cel" | "js" | "cron" | "template";
|
|
33192
33988
|
source?: string | undefined;
|
|
@@ -34972,6 +35768,14 @@ declare const SysOauthApplication: Omit<{
|
|
|
34972
35768
|
} | undefined;
|
|
34973
35769
|
recordTypes?: string[] | undefined;
|
|
34974
35770
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
35771
|
+
publicSharing?: {
|
|
35772
|
+
enabled: boolean;
|
|
35773
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
35774
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
35775
|
+
maxExpiryDays?: number | undefined;
|
|
35776
|
+
redactFields?: string[] | undefined;
|
|
35777
|
+
eligibility?: string | undefined;
|
|
35778
|
+
} | undefined;
|
|
34975
35779
|
keyPrefix?: string | undefined;
|
|
34976
35780
|
detail?: {
|
|
34977
35781
|
[x: string]: unknown;
|
|
@@ -34986,7 +35790,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
34986
35790
|
refreshAfter: boolean;
|
|
34987
35791
|
objectName?: string | undefined;
|
|
34988
35792
|
icon?: string | undefined;
|
|
34989
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
35793
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
34990
35794
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
34991
35795
|
target?: string | undefined;
|
|
34992
35796
|
body?: {
|
|
@@ -35019,6 +35823,17 @@ declare const SysOauthApplication: Omit<{
|
|
|
35019
35823
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
35020
35824
|
confirmText?: string | undefined;
|
|
35021
35825
|
successMessage?: string | undefined;
|
|
35826
|
+
resultDialog?: {
|
|
35827
|
+
title?: string | undefined;
|
|
35828
|
+
description?: string | undefined;
|
|
35829
|
+
acknowledge?: string | undefined;
|
|
35830
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
35831
|
+
fields?: {
|
|
35832
|
+
path: string;
|
|
35833
|
+
label?: string | undefined;
|
|
35834
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
35835
|
+
}[] | undefined;
|
|
35836
|
+
} | undefined;
|
|
35022
35837
|
visible?: {
|
|
35023
35838
|
dialect: "cel" | "js" | "cron" | "template";
|
|
35024
35839
|
source?: string | undefined;
|
|
@@ -35112,6 +35927,62 @@ declare const SysOauthApplication: Omit<{
|
|
|
35112
35927
|
readonly defaultFromRow: true;
|
|
35113
35928
|
readonly required: true;
|
|
35114
35929
|
}];
|
|
35930
|
+
}, {
|
|
35931
|
+
readonly name: "create_oauth_application";
|
|
35932
|
+
readonly label: "Register OAuth Application";
|
|
35933
|
+
readonly icon: "plus-circle";
|
|
35934
|
+
readonly variant: "primary";
|
|
35935
|
+
readonly mode: "create";
|
|
35936
|
+
readonly locations: ["list_toolbar"];
|
|
35937
|
+
readonly type: "api";
|
|
35938
|
+
readonly method: "POST";
|
|
35939
|
+
readonly target: "/api/v1/auth/oauth2/register";
|
|
35940
|
+
readonly refreshAfter: true;
|
|
35941
|
+
readonly params: [{
|
|
35942
|
+
readonly name: "name";
|
|
35943
|
+
readonly label: "Application Name";
|
|
35944
|
+
readonly type: "text";
|
|
35945
|
+
readonly required: true;
|
|
35946
|
+
}, {
|
|
35947
|
+
readonly name: "redirectURLs";
|
|
35948
|
+
readonly label: "Redirect URLs";
|
|
35949
|
+
readonly type: "textarea";
|
|
35950
|
+
readonly required: true;
|
|
35951
|
+
readonly helpText: "One URL per line. Must use https:// in production.";
|
|
35952
|
+
}, {
|
|
35953
|
+
readonly name: "type";
|
|
35954
|
+
readonly label: "Application Type";
|
|
35955
|
+
readonly type: "select";
|
|
35956
|
+
readonly required: true;
|
|
35957
|
+
readonly defaultValue: "web";
|
|
35958
|
+
readonly options: [{
|
|
35959
|
+
readonly label: "Web";
|
|
35960
|
+
readonly value: "web";
|
|
35961
|
+
}, {
|
|
35962
|
+
readonly label: "Native";
|
|
35963
|
+
readonly value: "native";
|
|
35964
|
+
}, {
|
|
35965
|
+
readonly label: "User-agent based";
|
|
35966
|
+
readonly value: "user-agent-based";
|
|
35967
|
+
}, {
|
|
35968
|
+
readonly label: "Public";
|
|
35969
|
+
readonly value: "public";
|
|
35970
|
+
}];
|
|
35971
|
+
}];
|
|
35972
|
+
readonly resultDialog: {
|
|
35973
|
+
readonly title: "OAuth application registered";
|
|
35974
|
+
readonly description: "Save the client_secret now — it is shown only once and cannot be recovered. You can rotate it later if it leaks.";
|
|
35975
|
+
readonly acknowledge: "I have saved the client secret";
|
|
35976
|
+
readonly fields: [{
|
|
35977
|
+
readonly path: "client.client_id";
|
|
35978
|
+
readonly label: "Client ID";
|
|
35979
|
+
readonly format: "text";
|
|
35980
|
+
}, {
|
|
35981
|
+
readonly path: "client.client_secret";
|
|
35982
|
+
readonly label: "Client Secret";
|
|
35983
|
+
readonly format: "secret";
|
|
35984
|
+
}];
|
|
35985
|
+
};
|
|
35115
35986
|
}, {
|
|
35116
35987
|
readonly name: "rotate_client_secret";
|
|
35117
35988
|
readonly label: "Rotate Client Secret";
|
|
@@ -35123,7 +35994,6 @@ declare const SysOauthApplication: Omit<{
|
|
|
35123
35994
|
readonly method: "POST";
|
|
35124
35995
|
readonly target: "/api/v1/auth/oauth2/client/rotate-secret";
|
|
35125
35996
|
readonly confirmText: "Rotate this OAuth client's secret? The previous secret will stop working immediately and any integrations using it will break until they are updated with the new secret. The new secret is shown only once.";
|
|
35126
|
-
readonly successMessage: "Client secret rotated — copy the new value from the response now.";
|
|
35127
35997
|
readonly refreshAfter: true;
|
|
35128
35998
|
readonly params: [{
|
|
35129
35999
|
readonly name: "client_id";
|
|
@@ -35131,6 +36001,16 @@ declare const SysOauthApplication: Omit<{
|
|
|
35131
36001
|
readonly defaultFromRow: true;
|
|
35132
36002
|
readonly required: true;
|
|
35133
36003
|
}];
|
|
36004
|
+
readonly resultDialog: {
|
|
36005
|
+
readonly title: "Client secret rotated";
|
|
36006
|
+
readonly description: "Save the new secret now — it is shown only once. Update every integration before the previous secret's grace period ends.";
|
|
36007
|
+
readonly acknowledge: "I have updated my integrations";
|
|
36008
|
+
readonly fields: [{
|
|
36009
|
+
readonly path: "client_secret";
|
|
36010
|
+
readonly label: "New Client Secret";
|
|
36011
|
+
readonly format: "secret";
|
|
36012
|
+
}];
|
|
36013
|
+
};
|
|
35134
36014
|
}, {
|
|
35135
36015
|
readonly name: "delete_oauth_application";
|
|
35136
36016
|
readonly label: "Delete OAuth Application";
|
|
@@ -35152,6 +36032,28 @@ declare const SysOauthApplication: Omit<{
|
|
|
35152
36032
|
}];
|
|
35153
36033
|
}];
|
|
35154
36034
|
readonly listViews: {
|
|
36035
|
+
readonly mine: {
|
|
36036
|
+
readonly type: "grid";
|
|
36037
|
+
readonly name: "mine";
|
|
36038
|
+
readonly label: "My Applications";
|
|
36039
|
+
readonly data: {
|
|
36040
|
+
readonly provider: "object";
|
|
36041
|
+
readonly object: "sys_oauth_application";
|
|
36042
|
+
};
|
|
36043
|
+
readonly columns: ["name", "client_id", "type", "disabled", "created_at"];
|
|
36044
|
+
readonly filter: [{
|
|
36045
|
+
readonly field: "user_id";
|
|
36046
|
+
readonly operator: "equals";
|
|
36047
|
+
readonly value: "{current_user_id}";
|
|
36048
|
+
}];
|
|
36049
|
+
readonly sort: [{
|
|
36050
|
+
readonly field: "created_at";
|
|
36051
|
+
readonly order: "desc";
|
|
36052
|
+
}];
|
|
36053
|
+
readonly pagination: {
|
|
36054
|
+
readonly pageSize: 50;
|
|
36055
|
+
};
|
|
36056
|
+
};
|
|
35155
36057
|
readonly active: {
|
|
35156
36058
|
readonly type: "grid";
|
|
35157
36059
|
readonly name: "active";
|
|
@@ -41084,6 +41986,14 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41084
41986
|
} | undefined;
|
|
41085
41987
|
recordTypes?: string[] | undefined;
|
|
41086
41988
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
41989
|
+
publicSharing?: {
|
|
41990
|
+
enabled: boolean;
|
|
41991
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
41992
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
41993
|
+
maxExpiryDays?: number | undefined;
|
|
41994
|
+
redactFields?: string[] | undefined;
|
|
41995
|
+
eligibility?: string | undefined;
|
|
41996
|
+
} | undefined;
|
|
41087
41997
|
keyPrefix?: string | undefined;
|
|
41088
41998
|
detail?: {
|
|
41089
41999
|
[x: string]: unknown;
|
|
@@ -41098,7 +42008,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41098
42008
|
refreshAfter: boolean;
|
|
41099
42009
|
objectName?: string | undefined;
|
|
41100
42010
|
icon?: string | undefined;
|
|
41101
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
42011
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
41102
42012
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
41103
42013
|
target?: string | undefined;
|
|
41104
42014
|
body?: {
|
|
@@ -41131,6 +42041,17 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41131
42041
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
41132
42042
|
confirmText?: string | undefined;
|
|
41133
42043
|
successMessage?: string | undefined;
|
|
42044
|
+
resultDialog?: {
|
|
42045
|
+
title?: string | undefined;
|
|
42046
|
+
description?: string | undefined;
|
|
42047
|
+
acknowledge?: string | undefined;
|
|
42048
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
42049
|
+
fields?: {
|
|
42050
|
+
path: string;
|
|
42051
|
+
label?: string | undefined;
|
|
42052
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
42053
|
+
}[] | undefined;
|
|
42054
|
+
} | undefined;
|
|
41134
42055
|
visible?: {
|
|
41135
42056
|
dialect: "cel" | "js" | "cron" | "template";
|
|
41136
42057
|
source?: string | undefined;
|
|
@@ -43549,6 +44470,14 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
43549
44470
|
} | undefined;
|
|
43550
44471
|
recordTypes?: string[] | undefined;
|
|
43551
44472
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
44473
|
+
publicSharing?: {
|
|
44474
|
+
enabled: boolean;
|
|
44475
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
44476
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
44477
|
+
maxExpiryDays?: number | undefined;
|
|
44478
|
+
redactFields?: string[] | undefined;
|
|
44479
|
+
eligibility?: string | undefined;
|
|
44480
|
+
} | undefined;
|
|
43552
44481
|
keyPrefix?: string | undefined;
|
|
43553
44482
|
detail?: {
|
|
43554
44483
|
[x: string]: unknown;
|
|
@@ -43563,7 +44492,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
43563
44492
|
refreshAfter: boolean;
|
|
43564
44493
|
objectName?: string | undefined;
|
|
43565
44494
|
icon?: string | undefined;
|
|
43566
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
44495
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
43567
44496
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
43568
44497
|
target?: string | undefined;
|
|
43569
44498
|
body?: {
|
|
@@ -43596,6 +44525,17 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
43596
44525
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
43597
44526
|
confirmText?: string | undefined;
|
|
43598
44527
|
successMessage?: string | undefined;
|
|
44528
|
+
resultDialog?: {
|
|
44529
|
+
title?: string | undefined;
|
|
44530
|
+
description?: string | undefined;
|
|
44531
|
+
acknowledge?: string | undefined;
|
|
44532
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
44533
|
+
fields?: {
|
|
44534
|
+
path: string;
|
|
44535
|
+
label?: string | undefined;
|
|
44536
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
44537
|
+
}[] | undefined;
|
|
44538
|
+
} | undefined;
|
|
43599
44539
|
visible?: {
|
|
43600
44540
|
dialect: "cel" | "js" | "cron" | "template";
|
|
43601
44541
|
source?: string | undefined;
|
|
@@ -46189,6 +47129,14 @@ declare const SysOauthConsent: Omit<{
|
|
|
46189
47129
|
} | undefined;
|
|
46190
47130
|
recordTypes?: string[] | undefined;
|
|
46191
47131
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
47132
|
+
publicSharing?: {
|
|
47133
|
+
enabled: boolean;
|
|
47134
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
47135
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
47136
|
+
maxExpiryDays?: number | undefined;
|
|
47137
|
+
redactFields?: string[] | undefined;
|
|
47138
|
+
eligibility?: string | undefined;
|
|
47139
|
+
} | undefined;
|
|
46192
47140
|
keyPrefix?: string | undefined;
|
|
46193
47141
|
detail?: {
|
|
46194
47142
|
[x: string]: unknown;
|
|
@@ -46203,7 +47151,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46203
47151
|
refreshAfter: boolean;
|
|
46204
47152
|
objectName?: string | undefined;
|
|
46205
47153
|
icon?: string | undefined;
|
|
46206
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
47154
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
46207
47155
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
46208
47156
|
target?: string | undefined;
|
|
46209
47157
|
body?: {
|
|
@@ -46236,6 +47184,17 @@ declare const SysOauthConsent: Omit<{
|
|
|
46236
47184
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
46237
47185
|
confirmText?: string | undefined;
|
|
46238
47186
|
successMessage?: string | undefined;
|
|
47187
|
+
resultDialog?: {
|
|
47188
|
+
title?: string | undefined;
|
|
47189
|
+
description?: string | undefined;
|
|
47190
|
+
acknowledge?: string | undefined;
|
|
47191
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
47192
|
+
fields?: {
|
|
47193
|
+
path: string;
|
|
47194
|
+
label?: string | undefined;
|
|
47195
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
47196
|
+
}[] | undefined;
|
|
47197
|
+
} | undefined;
|
|
46239
47198
|
visible?: {
|
|
46240
47199
|
dialect: "cel" | "js" | "cron" | "template";
|
|
46241
47200
|
source?: string | undefined;
|
|
@@ -48122,6 +49081,14 @@ declare const SysJwks: Omit<{
|
|
|
48122
49081
|
} | undefined;
|
|
48123
49082
|
recordTypes?: string[] | undefined;
|
|
48124
49083
|
sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
|
|
49084
|
+
publicSharing?: {
|
|
49085
|
+
enabled: boolean;
|
|
49086
|
+
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
49087
|
+
allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
|
|
49088
|
+
maxExpiryDays?: number | undefined;
|
|
49089
|
+
redactFields?: string[] | undefined;
|
|
49090
|
+
eligibility?: string | undefined;
|
|
49091
|
+
} | undefined;
|
|
48125
49092
|
keyPrefix?: string | undefined;
|
|
48126
49093
|
detail?: {
|
|
48127
49094
|
[x: string]: unknown;
|
|
@@ -48136,7 +49103,7 @@ declare const SysJwks: Omit<{
|
|
|
48136
49103
|
refreshAfter: boolean;
|
|
48137
49104
|
objectName?: string | undefined;
|
|
48138
49105
|
icon?: string | undefined;
|
|
48139
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
49106
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
48140
49107
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
48141
49108
|
target?: string | undefined;
|
|
48142
49109
|
body?: {
|
|
@@ -48169,6 +49136,17 @@ declare const SysJwks: Omit<{
|
|
|
48169
49136
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
48170
49137
|
confirmText?: string | undefined;
|
|
48171
49138
|
successMessage?: string | undefined;
|
|
49139
|
+
resultDialog?: {
|
|
49140
|
+
title?: string | undefined;
|
|
49141
|
+
description?: string | undefined;
|
|
49142
|
+
acknowledge?: string | undefined;
|
|
49143
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
49144
|
+
fields?: {
|
|
49145
|
+
path: string;
|
|
49146
|
+
label?: string | undefined;
|
|
49147
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
49148
|
+
}[] | undefined;
|
|
49149
|
+
} | undefined;
|
|
48172
49150
|
visible?: {
|
|
48173
49151
|
dialect: "cel" | "js" | "cron" | "template";
|
|
48174
49152
|
source?: string | undefined;
|