@candlerip/shared3 0.0.73 → 0.0.76

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.76",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -0,0 +1,6 @@
1
+ export type CandlesCount = {
2
+ candlesCount: {
3
+ burning: number;
4
+ burned: number;
5
+ };
6
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export * from './domain.js';
@@ -0,0 +1 @@
1
+ export * from './domain.js';
@@ -0,0 +1 @@
1
+ export * from './candles-count/index.js';
@@ -0,0 +1 @@
1
+ export * from './candles-count/index.js';
@@ -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
  }
package/src/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './aws/index.js';
2
+ export * from './candle/index.js';
2
3
  export * from './cookie/index.js';
3
4
  export * from './database/index.js';
4
5
  export * from './date/index.js';
package/src/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './aws/index.js';
2
+ export * from './candle/index.js';
2
3
  export * from './cookie/index.js';
3
4
  export * from './database/index.js';
4
5
  export * from './date/index.js';
@@ -1,5 +1,7 @@
1
1
  import { AddCandlePageDictionary, Language } from '../../../dictionary/index.js';
2
+ import { AddCandlePageData } from '../../../page/index.js';
2
3
  export interface AddCandlePageServerSideProps {
3
4
  dictionary: AddCandlePageDictionary;
4
5
  language: Language;
6
+ pageData: AddCandlePageData;
5
7
  }