@candlerip/shared3 0.0.92 → 0.0.93

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.92",
3
+ "version": "0.0.93",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,8 +1,10 @@
1
1
  import { Auth } from '../../../auth/index.js';
2
+ import { CookieConsent } from '../../../cookie/index.js';
2
3
  import { Dictionary, Language } from '../../../dictionary/index.js';
3
4
  import { CandleDetailsPageData } from '../../../page/index.js';
4
5
  export interface CandleDetailsServerSideProps {
5
6
  auth: Auth;
7
+ cookieConsent?: CookieConsent;
6
8
  dictionary: Dictionary;
7
9
  language: Language;
8
10
  pageData: CandleDetailsPageData;
@@ -1,7 +1,9 @@
1
1
  import { Auth } from '../../../auth/index.js';
2
+ import { CookieConsent } from '../../../cookie/index.js';
2
3
  import { Dictionary, Language } from '../../../dictionary/index.js';
3
4
  export interface ContactPageServerSideProps {
4
5
  auth: Auth;
6
+ cookieConsent?: CookieConsent;
5
7
  dictionary: Dictionary;
6
8
  language: Language;
7
9
  }
@@ -1,8 +1,10 @@
1
1
  import { Auth } from '../../../auth/index.js';
2
+ import { CookieConsent } from '../../../cookie/index.js';
2
3
  import { Dictionary, Language } from '../../../dictionary/index.js';
3
4
  import { EditCandlePageData } from '../../../page/index.js';
4
5
  export interface EditCandleServerSideProps {
5
6
  auth: Auth;
7
+ cookieConsent?: CookieConsent;
6
8
  dictionary: Dictionary;
7
9
  language: Language;
8
10
  pageData: EditCandlePageData;
@@ -1,7 +1,9 @@
1
1
  import { Auth } from '../../../auth/index.js';
2
+ import { CookieConsent } from '../../../cookie/index.js';
2
3
  import { Dictionary, Language } from '../../../dictionary/index.js';
3
4
  export interface HelpPageServerSideProps {
4
5
  auth: Auth;
6
+ cookieConsent?: CookieConsent;
5
7
  dictionary: Dictionary;
6
8
  language: Language;
7
9
  }
@@ -1,8 +1,10 @@
1
1
  import { Auth } from '../../../auth/index.js';
2
+ import { CookieConsent } from '../../../cookie/index.js';
2
3
  import { Dictionary, Language } from '../../../dictionary/index.js';
3
4
  import { LightCandlePageData } from '../../../page/index.js';
4
5
  export interface LightCandlePageServerSideProps {
5
6
  auth: Auth;
7
+ cookieConsent?: CookieConsent;
6
8
  dictionary: Dictionary;
7
9
  language: Language;
8
10
  pageData: LightCandlePageData;
@@ -1,7 +1,9 @@
1
1
  import { Auth } from '../../../auth/index.js';
2
+ import { CookieConsent } from '../../../cookie/index.js';
2
3
  import { Dictionary, Language } from '../../../dictionary/index.js';
3
4
  export interface TermsAndConditionsPageServerSideProps {
4
5
  auth: Auth;
6
+ cookieConsent?: CookieConsent;
5
7
  dictionary: Dictionary;
6
8
  language: Language;
7
9
  }