Skip to content

Commit

Permalink
feat: add fields in sandboxinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
soridalac committed Sep 24, 2024
1 parent 4580a1c commit 4e15a13
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/org/org.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
};

Expand Down

0 comments on commit 4e15a13

Please sign in to comment.