From f81edc1ac5245134c4276811943b722c4c14f255 Mon Sep 17 00:00:00 2001 From: Phil Nagel Date: Tue, 20 Feb 2024 19:03:32 -0600 Subject: [PATCH] fix (arcgis-rest-request): add missing orgId property for group (#1141) The orgId property is missing from the IGroup interface. See https://developers.arcgis.com/rest/users-groups-and-items/group.htm --- packages/arcgis-rest-request/src/types/group.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/arcgis-rest-request/src/types/group.ts b/packages/arcgis-rest-request/src/types/group.ts index e37376797a..6419fb999d 100644 --- a/packages/arcgis-rest-request/src/types/group.ts +++ b/packages/arcgis-rest-request/src/types/group.ts @@ -69,4 +69,5 @@ export interface IGroup extends IGroupAdd { applications?: number; }; hasCategorySchema?: boolean; + orgId?: string; }