@carsayo/types 1.1.891975 → 1.1.891976

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.
@@ -21,6 +21,11 @@ export interface SellMyCarCommission {
21
21
  deposit_deadline: Date;
22
22
  /** 수수료 금액 (10원 단위 절삭된 금액 저장) */
23
23
  amount: number;
24
+ /** 탁송 수수료 금액 (10원 단위 절산된 금액 저장)
25
+ * @note 이 금액은 카사요 퍼펙트 주문일 때에만 정의되며, 카사요 퍼펙트 주문이 아닐 경우 null
26
+ * @note 이 금액은 탁송기사 배정 시 처음 설정됩니다.
27
+ */
28
+ transport_amount: number | null;
24
29
  /** 수수료 이력 정보 */
25
30
  history: SellMyCarCommissionHistory[];
26
31
  /** 생성일 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891975",
3
+ "version": "1.1.891976",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",