@yolo-croket-dev/amqp-access 0.0.82 → 0.0.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ export declare class GetPInfoSettleAmountLogsByAtlasPayload {
5
5
  searchBefore?: string;
6
6
  limit: number;
7
7
  }
8
- export interface SettleLog {
8
+ export interface LegacySettleLog {
9
9
  itemName: string;
10
10
  optionName: string;
11
11
  receivedDate?: Date;
@@ -30,7 +30,7 @@ export interface SettleLog {
30
30
  };
31
31
  }
32
32
  export declare class GetPInfoSettleAmountLogsByAtlasResult {
33
- settleLogs: SettleLog[];
33
+ settleLogs: LegacySettleLog[];
34
34
  searchAfter?: string;
35
35
  searchBefore?: string;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.82",
3
+ "version": "0.0.83",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,5 +1,5 @@
1
- import { SettleLog } from '../../../../../order-server/dto/purchasedinfos/query/atlas/get-p-info-settle-amount-logs-by-atlas.dto';
2
- export { SettleLog };
1
+ import { LegacySettleLog } from '../../../../../order-server/dto/purchasedinfos/query/atlas/get-p-info-settle-amount-logs-by-atlas.dto';
2
+ export { LegacySettleLog as SettleLog };
3
3
  export declare class GetAskSettleAmountLogsByAtlasPayload {
4
4
  settleSDate: Date;
5
5
  settleEDate?: Date;
@@ -8,7 +8,7 @@ export declare class GetAskSettleAmountLogsByAtlasPayload {
8
8
  limit: number;
9
9
  }
10
10
  export declare class GetAskSettleAmountLogsByAtlasResult {
11
- settleLogs: SettleLog[];
11
+ settleLogs: LegacySettleLog[];
12
12
  searchAfter?: string;
13
13
  searchBefore?: string;
14
14
  }