@candlerip/shared3 0.0.81 → 0.0.82
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/auth/auth/domain.d.ts +1 -0
- package/src/ssr/server-side-props/add-candle-page-server-side-props/domain.d.ts +1 -1
- package/src/ssr/server-side-props/contact-page-server-side-props/domain.d.ts +1 -1
- package/src/ssr/server-side-props/cookie-policy-page-server-side-props/domain.d.ts +1 -1
- package/src/ssr/server-side-props/help-page-server-side-props/domain.d.ts +1 -1
- package/src/ssr/server-side-props/terms-and-conditions-page-server-side-props/domain.d.ts +1 -1
package/package.json
CHANGED
@@ -2,7 +2,7 @@ import { Auth } from '../../../auth/index.js';
|
|
2
2
|
import { AddCandlePageDictionary, Language } from '../../../dictionary/index.js';
|
3
3
|
import { AddCandlePageData } from '../../../page/index.js';
|
4
4
|
export interface AddCandlePageServerSideProps {
|
5
|
-
auth
|
5
|
+
auth: Auth;
|
6
6
|
dictionary: AddCandlePageDictionary;
|
7
7
|
language: Language;
|
8
8
|
pageData: AddCandlePageData;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Auth } from '../../../auth/index.js';
|
2
2
|
import { ContactPageDictionary, Language } from '../../../dictionary/index.js';
|
3
3
|
export interface ContactPageServerSideProps {
|
4
|
-
auth
|
4
|
+
auth: Auth;
|
5
5
|
dictionary: ContactPageDictionary;
|
6
6
|
language: Language;
|
7
7
|
}
|
@@ -2,7 +2,7 @@ import { Auth } from '../../../auth/index.js';
|
|
2
2
|
import { CookieConsent } from '../../../cookie/index.js';
|
3
3
|
import { CookiePolicyPageDictionary, Language } from '../../../dictionary/index.js';
|
4
4
|
export interface CookiePolicyPageServerSideProps {
|
5
|
-
auth
|
5
|
+
auth: Auth;
|
6
6
|
cookieConsent?: CookieConsent;
|
7
7
|
dictionary: CookiePolicyPageDictionary;
|
8
8
|
language: Language;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Auth } from '../../../auth/index.js';
|
2
2
|
import { Language, TermsAndConditionsPageDictionary } from '../../../dictionary/index.js';
|
3
3
|
export interface TermsAndConditionsPageServerSideProps {
|
4
|
-
auth
|
4
|
+
auth: Auth;
|
5
5
|
dictionary: TermsAndConditionsPageDictionary;
|
6
6
|
language: Language;
|
7
7
|
}
|