From c3e536c3f8cfb93d2afc70aef15885e8982dbd95 Mon Sep 17 00:00:00 2001 From: Joshua Feingold Date: Wed, 7 Jan 2026 09:03:58 -0600 Subject: [PATCH 1/3] fix: removed inaccessible fields from sandboxinfo query @W-20690643@ --- src/commands/org/refresh/sandbox.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/commands/org/refresh/sandbox.ts b/src/commands/org/refresh/sandbox.ts index 39638bd5..c889baac 100644 --- a/src/commands/org/refresh/sandbox.ts +++ b/src/commands/org/refresh/sandbox.ts @@ -25,11 +25,9 @@ const fields = [ 'Id', 'SandboxName', // (string) 'LicenseType', // (string) DEVELOPER | DEVELOPER PRO | PARTIAL | FULL - 'TemplateId', // (string) reference to PartitionLevelScheme 'HistoryDays', // (int) 'CopyChatter', // (boolean) 'AutoActivate', // (boolean) - 'ApexClassId', // (string) apex class ID 'Description', // (string) 'SourceId', // (string) SandboxInfoId as the source org used for a clone // 'ActivationUserGroupId', // Currently not supported but might be added in API v61.0 From a650e8f0c8cb70f8f8b3034cf9b23efea64aae44 Mon Sep 17 00:00:00 2001 From: Joshua Feingold Date: Wed, 7 Jan 2026 11:22:56 -0600 Subject: [PATCH 2/3] experiment --- src/commands/org/refresh/sandbox.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/org/refresh/sandbox.ts b/src/commands/org/refresh/sandbox.ts index c889baac..39638bd5 100644 --- a/src/commands/org/refresh/sandbox.ts +++ b/src/commands/org/refresh/sandbox.ts @@ -25,9 +25,11 @@ const fields = [ 'Id', 'SandboxName', // (string) 'LicenseType', // (string) DEVELOPER | DEVELOPER PRO | PARTIAL | FULL + 'TemplateId', // (string) reference to PartitionLevelScheme 'HistoryDays', // (int) 'CopyChatter', // (boolean) 'AutoActivate', // (boolean) + 'ApexClassId', // (string) apex class ID 'Description', // (string) 'SourceId', // (string) SandboxInfoId as the source org used for a clone // 'ActivationUserGroupId', // Currently not supported but might be added in API v61.0 From 0f30b399e8b3b708fd461eee77a898ee963a8f1c Mon Sep 17 00:00:00 2001 From: Joshua Feingold Date: Wed, 7 Jan 2026 13:40:21 -0600 Subject: [PATCH 3/3] chore: ci re-run