fix: Update SCIMBulkOperationResponse to explicitly define optional properties

This commit is contained in:
Nawaz Dhandala
2026-01-12 13:03:42 +00:00
parent b9c6be38a1
commit 7b35e7752c

View File

@@ -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;
}
/**