@candlerip/shared3 0.0.145 → 0.0.146

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.145",
3
+ "version": "0.0.146",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.js",
@@ -1,4 +1,3 @@
1
1
  export * from './aggregate/index.js';
2
2
  export * from './connect-database/index.js';
3
- export * from './model/index.js';
4
3
  export * from './mutation/index.js';
@@ -1,4 +1,3 @@
1
1
  export * from './aggregate/index.js';
2
2
  export * from './connect-database/index.js';
3
- export * from './model/index.js';
4
3
  export * from './mutation/index.js';
@@ -1,2 +1,2 @@
1
- export * from './candle-db-schema.js';
2
1
  export * from './candle-db-model.js';
2
+ export * from './candle-db-schema.js';
@@ -1,2 +1,2 @@
1
- export * from './candle-db-schema.js';
2
1
  export * from './candle-db-model.js';
2
+ export * from './candle-db-schema.js';
@@ -1,7 +1,7 @@
1
1
  import { Types } from 'mongoose';
2
2
  import { customErrorWorker } from '@candlerip/shared3';
3
3
  import { CANDLE_PERSON_AGGREGATE } from '../../../aggregate/index.js';
4
- import { CandleDbModel } from '../../../model/index.js';
4
+ import { CandleDbModel } from '../../../model/candle/index.js';
5
5
  export const getCandles = async (props) => {
6
6
  const { filterSort, withPerson } = props;
7
7
  const { composeCustomError } = customErrorWorker(props);
@@ -1,5 +1,5 @@
1
1
  import { CustomError } from '../../../../../error/index.js';
2
- import { ErrorLog } from '../../../model/index.js';
2
+ import { ErrorLog } from '../../../model/error-log/index.js';
3
3
  export type CreateErrorLog = (customError: CustomError) => Promise<{
4
4
  data: ErrorLog;
5
5
  } | {
@@ -1,3 +0,0 @@
1
- export * from './candle/index.js';
2
- export * from './error-log/index.js';
3
- export * from './translation/index.js';
@@ -1,3 +0,0 @@
1
- export * from './candle/index.js';
2
- export * from './error-log/index.js';
3
- export * from './translation/index.js';