@@ -4,7 +4,7 @@ import * as t from 'io-ts';
44// main
55import { ObjByString , applyEnum , valuesOf } from '@transcend-io/type-utils' ;
66import {
7- ConsentManagedSupportedTranslationValue ,
7+ ConsentManagerSupportedTranslationValue ,
88 LocaleValue ,
99} from '@transcend-io/internationalization' ;
1010
@@ -94,9 +94,9 @@ export type ConsentManagerAPI = Readonly<{
9494 /** Show consent manager */
9595 showConsentManager ( options ?: ShowConsentManagerOptions ) : Promise < void > ;
9696 /** Set the current active language */
97- setActiveLocale ( locale : ConsentManagedSupportedTranslationValue ) : Promise < void > ;
97+ setActiveLocale ( locale : ConsentManagerSupportedTranslationValue ) : Promise < void > ;
9898 /** Get the currently active locale */
99- getActiveLocale : ( ) => ConsentManagedSupportedTranslationValue ;
99+ getActiveLocale : ( ) => ConsentManagerSupportedTranslationValue ;
100100 /** Toggle consent manager */
101101 toggleConsentManager ( options ?: ShowConsentManagerOptions ) : Promise < void > ;
102102 /** Hide consent manager */
@@ -231,7 +231,7 @@ export type RequiredConsentManagerConfig = t.TypeOf<
231231> ;
232232
233233export const OptionalConsentManagerConfig = t . partial ( {
234- /** The set of enabled languages - CSV of ConsentManagedSupportedTranslationValue */
234+ /** The set of enabled languages - CSV of ConsentManagerSupportedTranslationValue */
235235 languages : t . string ,
236236 /** The override value for the consent banner z-index */
237237 uiZIndex : t . string ,
0 commit comments