@candlerip/shared3 0.0.158 → 0.0.159

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared3",
3
- "version": "0.0.158",
3
+ "version": "0.0.159",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.js",
@@ -2,6 +2,6 @@ import { TranslationId } from '../../../../../dictionary/index.js';
2
2
  import { Page } from '../../../../../page/index.js';
3
3
  export type ComposeExcludedTranslationIds = (page: Page, options?: ExcludedTranslationIdOptions) => TranslationId[];
4
4
  export type ExcludedTranslationIdOptions = {
5
- isAuthenticated: boolean;
6
- isCookieConsent: boolean;
5
+ isAuthenticated?: boolean;
6
+ isCookieConsent?: boolean;
7
7
  };