From 1aa21b127e10e87b024b06d592cf4f9117d9206a Mon Sep 17 00:00:00 2001 From: "Lucian N." Date: Fri, 6 Feb 2026 10:01:28 +0200 Subject: [PATCH] Update identity_type.py fix for #872 fixes #872 --- user_sync/identity_type.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/user_sync/identity_type.py b/user_sync/identity_type.py index 1dee71245..860753edc 100644 --- a/user_sync/identity_type.py +++ b/user_sync/identity_type.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Adobe Inc. All rights reserved. +# Copyright (c) 2016-2026 Adobe Inc. All rights reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -24,11 +24,13 @@ ENTERPRISE_IDENTITY_TYPE = 'enterpriseID' FEDERATED_IDENTITY_TYPE = 'federatedID' ADOBEID_IDENTITY_TYPE = 'adobeID' +UNKNOWN_IDENTITY_TYPE = 'unknown' NORMALIZED_IDENTITY_TYPE_MAP = { user_sync.helper.normalize_string(ADOBEID_IDENTITY_TYPE): ADOBEID_IDENTITY_TYPE, user_sync.helper.normalize_string(ENTERPRISE_IDENTITY_TYPE): ENTERPRISE_IDENTITY_TYPE, user_sync.helper.normalize_string(FEDERATED_IDENTITY_TYPE): FEDERATED_IDENTITY_TYPE, + user_sync.helper.normalize_string(UNKNOWN_IDENTITY_TYPE): UNKNOWN_IDENTITY_TYPE, }