@candlerip/shared3 0.0.68 → 0.0.70

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.68",
3
+ "version": "0.0.70",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -34,14 +34,14 @@ export type CommonPageDictionary = {
34
34
  hu: string;
35
35
  };
36
36
  pageMenu: {
37
- addPersonPage: string;
38
- candlesPage: string;
39
- contactPage: string;
40
- cookiePolicyPage: string;
41
- helpPage: string;
42
- personsPage: string;
43
- personsMapPage: string;
44
- termsAndConditionsPage: string;
37
+ 'add-person-page': string;
38
+ 'candles-page': string;
39
+ 'contact-page': string;
40
+ 'cookie-policy-page': string;
41
+ 'help-page': string;
42
+ 'persons-page': string;
43
+ 'persons-map-page': string;
44
+ 'terms-and-conditions-page': string;
45
45
  };
46
46
  };
47
47
  };
@@ -0,0 +1,6 @@
1
+ import { Language } from '../../../../dictionary/index.js';
2
+ import { CookiePolicyPageDictionary } from '../../../../dictionary/dictionary-id/index.js';
3
+ export interface CookiePolicyPageServerSideProps {
4
+ dictionary: CookiePolicyPageDictionary;
5
+ language: Language;
6
+ }
@@ -1,9 +1,6 @@
1
1
  import { Language } from '../../../../dictionary/index.js';
2
- import { CommonPageDictionary, HelpPageDictionary } from '../../../../dictionary/dictionary-id/index.js';
2
+ import { HelpPageDictionary } from '../../../../dictionary/dictionary-id/index.js';
3
3
  export interface HelpPageServerSideProps {
4
- dictionary: {
5
- common: CommonPageDictionary;
6
- page: HelpPageDictionary;
7
- };
4
+ dictionary: HelpPageDictionary;
8
5
  language: Language;
9
6
  }
@@ -1,4 +1,5 @@
1
1
  export * from './contact-page-server-side-props/index.js';
2
+ export * from './cookie-policy-page-server-side-props/index.js';
2
3
  export * from './help-page-server-side-props/index.js';
3
4
  export * from './server-side-props/index.js';
4
5
  export * from './terms-and-conditions-page-server-side-props/index.js';
@@ -1,4 +1,5 @@
1
1
  export * from './contact-page-server-side-props/index.js';
2
+ export * from './cookie-policy-page-server-side-props/index.js';
2
3
  export * from './help-page-server-side-props/index.js';
3
4
  export * from './server-side-props/index.js';
4
5
  export * from './terms-and-conditions-page-server-side-props/index.js';
@@ -1,4 +1,5 @@
1
1
  import { ContactPageServerSideProps } from '../contact-page-server-side-props/index.js';
2
+ import { CookiePolicyPageServerSideProps } from '../cookie-policy-page-server-side-props/index.js';
2
3
  import { HelpPageServerSideProps } from '../help-page-server-side-props/index.js';
3
4
  import { TermsAndConditionsPageServerSideProps } from '../terms-and-conditions-page-server-side-props/index.js';
4
- export type ServerSideProps = ContactPageServerSideProps | HelpPageServerSideProps | TermsAndConditionsPageServerSideProps;
5
+ export type ServerSideProps = ContactPageServerSideProps | CookiePolicyPageServerSideProps | HelpPageServerSideProps | TermsAndConditionsPageServerSideProps;
@@ -1,9 +1,6 @@
1
1
  import { Language } from '../../../../dictionary/index.js';
2
- import { CommonPageDictionary, TermsAndConditionsPageDictionary } from '../../../../dictionary/dictionary-id/index.js';
2
+ import { TermsAndConditionsPageDictionary } from '../../../../dictionary/dictionary-id/index.js';
3
3
  export interface TermsAndConditionsPageServerSideProps {
4
- dictionary: {
5
- common: CommonPageDictionary;
6
- page: TermsAndConditionsPageDictionary;
7
- };
4
+ dictionary: TermsAndConditionsPageDictionary;
8
5
  language: Language;
9
6
  }