From 4e15a13c3d11aa6f9a84d61802f9792ccecdff0b Mon Sep 17 00:00:00 2001 From: soridalac Date: Tue, 24 Sep 2024 11:57:12 -0700 Subject: [PATCH] feat: add fields in sandboxinfo --- src/org/org.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/org/org.ts b/src/org/org.ts index 115d66222..aa3606e9a 100644 --- a/src/org/org.ts +++ b/src/org/org.ts @@ -131,6 +131,10 @@ export type SandboxRequest = { /** Should match a SandboxInfoId, not a SandboxProcessId */ SourceId?: string; Description?: string; + ApexClassId?: string; + ApexClassName?: string; + ActivationUserGroupId?: string; + ActivationUserGroupName?: string; }; export type ResumeSandboxRequest = { SandboxName?: string; @@ -154,7 +158,7 @@ export type SandboxInfo = { ApexClassId?: string; // apex class ID. Only editable on create. Description?: string; SourceId?: string; // SandboxInfoId as the source org used for a clone - // 'ActivationUserGroupId', // Support might be added back in API v61.0 (Summer '24) + ActivationUserGroupId?: string; // Support might be added back in API v61.0 (Summer '24) CopyArchivedActivities?: boolean; // only for full sandboxes; depends if a license was purchased };