@carsayo/types 1.1.891962 → 1.1.891964

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.
@@ -138,13 +138,13 @@ export interface SellMyCarOrderBidAvaliableAction_Customer {
138
138
  }
139
139
  /** 주문에 대하여 딜러가 할 수 있는 동작 */
140
140
  export interface SellMyCarOrderAvaliableAction_Dealer {
141
+ /** 카사요 퍼펙트 > 탁송 일정 변경 가능 여부 */
142
+ is_agency_transport_changeable: boolean;
141
143
  }
142
144
  /** 입찰에 대하여 딜러가 할 수 있는 동작 */
143
145
  export interface SellMyCarOrderBidAvaliableAction_Dealer {
144
146
  /** 입찰 취소 가능 여부 */
145
147
  is_cancelable: boolean;
146
- /** 카사요 퍼펙트 > 탁송 일정 변경 가능 여부 */
147
- is_agency_transport_changeable: boolean;
148
148
  }
149
149
  /** 입찰 정보 */
150
150
  export interface SellMyCarOrderBid {
@@ -485,6 +485,8 @@ export interface SellMyCarOrderAgencyTransport {
485
485
  * @note 고객이 탁송 정보를 등록한 이후 값이 존재합니다
486
486
  */
487
487
  customerTransportInfo: SellMyCarOrderVisitFormInfo;
488
+ /** 고객이 탁송 정보 변경 신청한 내용 */
489
+ customerChangeRequest: SellMyCarOrderTransportChangeRequest | null;
488
490
  /** 딜러가 입력한 탁송 정보 (딜러가 탁송기사를 통해 차량을 배송받을 위치) */
489
491
  dealerTransportInfo: {
490
492
  /** 틱송 신주소 */
@@ -835,3 +837,17 @@ export interface SellMyCarServiceAvailableRegion {
835
837
  */
836
838
  sigungu?: string[];
837
839
  }
840
+ export interface SellMyCarOrderTransportChangeRequest {
841
+ /** 탁송 정보 변경 요청 데이터 */
842
+ data: SellMyCarOrderVisitFormInfo;
843
+ /** 관리자 처리 결과 */
844
+ result: "pending" | "approved" | "rejected";
845
+ /** 요청 날짜 */
846
+ requested_at: Date;
847
+ /** 처리 날짜
848
+ * @note 관리자가 처리한 날짜 (approved, rejected 시 값이 존재합니다)
849
+ */
850
+ processed_at: Date | null;
851
+ /** 처리 사유 */
852
+ reason: string | null;
853
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891962",
3
+ "version": "1.1.891964",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",