@carsayo/types 1.1.891920 → 1.1.891921

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.
@@ -424,26 +424,29 @@ export interface SellMyCarOrderAfterPurchase {
424
424
  }
425
425
  /** 딜러 방문 정보 */
426
426
  export interface SellMyCarOrderDirectVisit {
427
- /** 방문 일자 (Date 형식, 예상 방문 시점)
428
- * @note visitedDay와 visitedTime를 가지고 계산한 값과 같습니다.
429
- */
430
- visitedAt: Date;
431
- /** 방문 일자 (m월 d일 ddd 형식, 예상 방문 일자)
432
- * @example '7월 1일 금요일'
433
- */
434
- visitedDay: string;
435
- /** 방문 시간(분)
436
- * @example 600: 10:00 (10시)
437
- */
438
- visitedTime: number;
439
- /** 방문 신주소 */
440
- visitedNewAddress: string;
441
- /** 방문 구주소 */
442
- visitedOldAddress: string;
443
- /** 방문 상세 주소 */
444
- visitedDetailAddress: string;
445
- /** 딜러가 방문 일정을 등록한 날짜 */
446
- visited_setted_at: Date;
427
+ /** 딜러가 등록하는 방문 일정 정보 */
428
+ request: {
429
+ /** 방문 일자 (Date 형식, 예상 방문 시점)
430
+ * @note visitedDay와 visitedTime를 가지고 계산한 값과 같습니다.
431
+ */
432
+ visitedAt: Date;
433
+ /** 방문 일자 (m월 d일 ddd 형식, 예상 방문 일자)
434
+ * @example '7월 1일 금요일'
435
+ */
436
+ visitedDay: string;
437
+ /** 방문 시간(분)
438
+ * @example 600: 10:00 (10시)
439
+ */
440
+ visitedTime: number;
441
+ /** 방문 신주소 */
442
+ visitedNewAddress: string;
443
+ /** 방문 구주소 */
444
+ visitedOldAddress: string;
445
+ /** 방문 상세 주소 */
446
+ visitedDetailAddress: string;
447
+ /** 딜러가 방문 일정을 등록한 날짜 */
448
+ visited_setted_at: Date;
449
+ };
447
450
  /** 방문 완료 날짜
448
451
  * @note DB상에서는 종료 날짜와 같습니다. (finished_at)
449
452
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891920",
3
+ "version": "1.1.891921",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",