@candlerip/shared3 0.0.73 → 0.0.74

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.73",
3
+ "version": "0.0.74",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1,8 +1,12 @@
1
1
  import { CandleMaintenanceDictionary } from '../../candle-dictionary/index.js';
2
+ import { CommonPageDictionary } from '../common-page-dictionary/index.js';
2
3
  export interface AddCandlePageDictionary {
3
- maintenance: {
4
- personCandles: string;
5
- candleMaintenance: CandleMaintenanceDictionary;
4
+ common: CommonPageDictionary;
5
+ page: {
6
+ maintenance: {
7
+ personCandles: string;
8
+ candleMaintenance: CandleMaintenanceDictionary;
9
+ };
10
+ title: string;
6
11
  };
7
- title: string;
8
12
  }