@candlerip/shared3 0.0.144 → 0.0.145

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.144",
3
+ "version": "0.0.145",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.js",
@@ -3,7 +3,7 @@ import { CustomError } from '../../../../../error/index.js';
3
3
  import { CandleFilterSort } from '../../../../../filter-sort/index.js';
4
4
  import { CandlesPageData } from '../type.js';
5
5
  export type ComposeCandlesPageData = (props: {
6
- filterSort: CandleFilterSort;
6
+ filterSort?: Partial<CandleFilterSort>;
7
7
  language: Language;
8
8
  }) => Promise<{
9
9
  data: CandlesPageData;