diff --git a/package.json b/package.json index b5352b1..865a1d9 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Transcend Inc.", "name": "@transcend-io/airgap.js-types", "description": "TypeScript types for airgap.js interoperability with custom consent UIs", - "version": "10.11.2", + "version": "10.11.3", "homepage": "https://github.com/transcend-io/airgap.js-types", "repository": { "type": "git", diff --git a/src/enums/consentExpiry.ts b/src/enums/consentExpiry.ts index a3bf9b6..5a9c71b 100644 --- a/src/enums/consentExpiry.ts +++ b/src/enums/consentExpiry.ts @@ -5,11 +5,11 @@ import { makeEnum } from '@transcend-io/type-utils'; */ export const OnConsentExpiry = makeEnum({ /** Reprompts the user to change or confirm their selection */ - Prompt: 'prompt', + Prompt: 'Prompt', /** Resets the user's consent and reprompts them */ - Reset: 'reset', + ResetAll: 'ResetAll', /** Resets the user's opted-in purposes and reprompts them */ - ResetOptIns: 'reset-opt-ins', + ResetOptIns: 'ResetOptIns', }); /** Override type */ export type OnConsentExpiry =