@carsayo/types 1.1.89145 → 1.1.89147

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.
@@ -168,6 +168,15 @@ export interface DealerInfo {
168
168
  submitted_at: Date;
169
169
  accepted_at: Date | null;
170
170
  } | null;
171
+ /** 카매니저 정보 */
172
+ info: {
173
+ /** 입찰건수 */
174
+ bidCount: number;
175
+ /** 입찰 수락건수(성사건수) */
176
+ acceptCount: number;
177
+ /** 가입일자 */
178
+ created_at: Date;
179
+ };
171
180
  amount: {
172
181
  /** 납부한 수수료 총액을 의미합니다 */
173
182
  totalCommission: number | null;
@@ -471,6 +471,8 @@ export interface DealerOrderDetail extends OrderDetail {
471
471
  isAccepted: boolean;
472
472
  /** 해당 주문에 입찰한 카매니저 수 */
473
473
  bidNumber: number;
474
+ /** 타 입찰자 리스트 */
475
+ bidderList: DealerShort[];
474
476
  /** 내가 입찰한 내용 */
475
477
  bid: Order_BidInfo | null;
476
478
  /** 주문 완료 후 수수료 정보 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89145",
3
+ "version": "1.1.89147",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",