Skip to content

Commit

Permalink
Csmccarthy/consent expiry enum (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
csmccarthy authored Dec 11, 2023
1 parent f7ddf13 commit 2111349
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions src/enums/consentExpiry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 2111349

Please sign in to comment.