Skip to content

Commit 5fa1dee

Browse files
committed
fix(Typescript): fix and export IdentityResponse type
1 parent 8376d22 commit 5fa1dee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/services/auth/service/identities

src/services/auth/service/identities/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export type Identity = {
2828
* > The response may not include all fields, depending on the identity’s visibility policy. However, the identity id, category, and name fields are always visible to all clients.
2929
* @see https://docs.globus.org/api/auth/reference/#get_identity
3030
*/
31-
type IdentityResponse = Partial<Identity> & Pick<Identity, 'id' | 'name' | 'identity_provider'>;
31+
export type IdentityResponse = Partial<Identity> & Pick<Identity, 'id' | 'name' | 'identity_type'>;
3232

3333
/**
3434
* @see https://docs.globus.org/api/auth/reference/#identity_provider_resource

0 commit comments

Comments
 (0)