diff --git a/App/FeatureSet/Identity/Utils/SCIMUtils.ts b/App/FeatureSet/Identity/Utils/SCIMUtils.ts index e0cb899cd5..2329b16773 100644 --- a/App/FeatureSet/Identity/Utils/SCIMUtils.ts +++ b/App/FeatureSet/Identity/Utils/SCIMUtils.ts @@ -637,11 +637,11 @@ export interface SCIMBulkOperation { */ export interface SCIMBulkOperationResponse { method: string; - bulkId?: string; - version?: string; - location?: string; + bulkId?: string | undefined; + version?: string | undefined; + location?: string | undefined; status: string; - response?: JSONObject; + response?: JSONObject | undefined; } /**