@carsayo/types 1.1.891944 → 1.1.891946

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.
@@ -3,3 +3,4 @@ export * from "./interface-member";
3
3
  export * from "./type";
4
4
  export * from "./constant";
5
5
  export * from "./dto";
6
+ export * from "./dto-admin";
@@ -19,3 +19,4 @@ __exportStar(require("./interface-member"), exports);
19
19
  __exportStar(require("./type"), exports);
20
20
  __exportStar(require("./constant"), exports);
21
21
  __exportStar(require("./dto"), exports);
22
+ __exportStar(require("./dto-admin"), exports);
@@ -584,6 +584,10 @@ export interface SellMyCarOrderReauction {
584
584
  export interface SellMyCarOrder {
585
585
  /** sell_car_order.id */
586
586
  id: string;
587
+ /** 주문코드
588
+ * @example "250711_S0001"
589
+ */
590
+ orderCode: string;
587
591
  /** 주문 상태 */
588
592
  status: SellMyCarOrderStatus;
589
593
  /** 고객 정보 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891944",
3
+ "version": "1.1.891946",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",