Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Commit 118ed39

Browse files
Update preferences.ts
1 parent aa4de21 commit 118ed39

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/preferences.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,15 @@ export const PreferenceQueryResponseItem = t.intersection([
124124
consentManagement: t.partial(PreferenceStoreConsentFields.props),
125125
/** Preference store purposes */
126126
purposes: t.array(PreferenceStorePurposeResponse),
127-
}),
127+
/** Identifiers associated to the user */
128+
identifiers: t.array(
129+
t.type({
130+
/** The identifier name */
131+
name: t.string,
132+
/** The identifier value */
133+
value: t.string,
134+
}),
135+
),
128136
t.partial({
129137
/** metadata */
130138
metadata: t.array(

0 commit comments

Comments
 (0)