@carsayo/types 1.1.73 → 1.1.74

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.
@@ -14,3 +14,4 @@ export * from "./popup";
14
14
  export * from "./purchase";
15
15
  export * from "./system";
16
16
  export * from "./term";
17
+ export * from "./promotion";
@@ -30,3 +30,4 @@ __exportStar(require("./popup"), exports);
30
30
  __exportStar(require("./purchase"), exports);
31
31
  __exportStar(require("./system"), exports);
32
32
  __exportStar(require("./term"), exports);
33
+ __exportStar(require("./promotion"), exports);
@@ -0,0 +1,39 @@
1
+ import { Promotion_24090500_Type, Promotion_24090500_State } from "./type";
2
+ export declare class Promotion_24090500_SubmitDTO {
3
+ type: Promotion_24090500_Type;
4
+ /** 본명 */
5
+ name: string;
6
+ /** 휴대전화번호 (- 제외) */
7
+ phoneNumber: string;
8
+ /** 타사 견적서 파일
9
+ * 유효한 파일인지 검사합니다.
10
+ */
11
+ otherCompanyEstimateFileId: string;
12
+ /** 타사 견적서 내용 */
13
+ otherCompanyEstimateContent: string;
14
+ /** 환불 정보 */
15
+ refundInfo: string;
16
+ /** 개인정보 수집 이용동의 여부 */
17
+ isAgreeTerm: boolean;
18
+ }
19
+ export declare class Promotion_24090500_SearchListDTO {
20
+ skip?: number;
21
+ take: number;
22
+ /** 검색 상태 조건
23
+ * @notice undefined일 경우 전체 검색이 됩니다.
24
+ */
25
+ state?: Promotion_24090500_State[];
26
+ /** 검색 키워드
27
+ * @description 이름, 전화번호에 대하여 검색합니다.
28
+ */
29
+ keyword?: string;
30
+ }
31
+ export declare class Promotion_24090500_UpdateDTO {
32
+ id: string;
33
+ /** undefined일 때에는 데이터를 업데이트 하지 않습니다. */
34
+ state?: Promotion_24090500_State;
35
+ /** undefined일 때에는 데이터를 업데이트 하지 않습니다. */
36
+ type?: Promotion_24090500_Type;
37
+ /** undefined일 때에는 데이터를 업데이트 하지 않습니다. */
38
+ admin_memo?: string;
39
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Promotion_24090500_UpdateDTO = exports.Promotion_24090500_SearchListDTO = exports.Promotion_24090500_SubmitDTO = void 0;
4
+ class Promotion_24090500_SubmitDTO {
5
+ }
6
+ exports.Promotion_24090500_SubmitDTO = Promotion_24090500_SubmitDTO;
7
+ class Promotion_24090500_SearchListDTO {
8
+ }
9
+ exports.Promotion_24090500_SearchListDTO = Promotion_24090500_SearchListDTO;
10
+ class Promotion_24090500_UpdateDTO {
11
+ }
12
+ exports.Promotion_24090500_UpdateDTO = Promotion_24090500_UpdateDTO;
@@ -0,0 +1,3 @@
1
+ export * from "./dto";
2
+ export * from "./interface";
3
+ export * from "./type";
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dto"), exports);
18
+ __exportStar(require("./interface"), exports);
19
+ __exportStar(require("./type"), exports);
@@ -0,0 +1,17 @@
1
+ import { FileInfo } from "../../file";
2
+ import { Promotion_24090500_State, Promotion_24090500_Type } from "./type";
3
+ export interface Promotion_24090500_Detail {
4
+ id: string;
5
+ state: Promotion_24090500_State;
6
+ type: Promotion_24090500_Type;
7
+ name: string;
8
+ phoneNumber: string;
9
+ otherCompanyEstimateFile: FileInfo;
10
+ otherCompanyEstimateContent: string;
11
+ refundInfo: string;
12
+ ip: string;
13
+ origin: string;
14
+ admin_memo: string;
15
+ created_at: Date;
16
+ updated_at: Date;
17
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
1
+ export declare const Promotion_24090500_State: {
2
+ /** [문의 제출] 문의가 제출되었으며, 결제 상태는 확인되지 않았습니다. */
3
+ readonly submitted: "submitted";
4
+ /** [결제 확인] 완료 */
5
+ readonly paymentConfirm: "paymentConfirm";
6
+ /** [진행 중] 관련 내용을 진행하고 있습니다 */
7
+ readonly progressing: "progressing";
8
+ /** [환불 중] 환불 처리를 진행하고 있습니다 */
9
+ readonly refunding: "refunding";
10
+ /** [종료] 모든 관련 내용이 정상적으로 종료되었습니다 */
11
+ readonly finished: "finished";
12
+ /** [취소] */
13
+ readonly canceled: "canceled";
14
+ };
15
+ export type Promotion_24090500_State = keyof typeof Promotion_24090500_State;
16
+ /**
17
+ * @lease [리스]
18
+ * @rent [장기렌트]
19
+ */
20
+ export declare const Promotion_24090500_Type: {
21
+ readonly lease: "lease";
22
+ readonly rent: "rent";
23
+ };
24
+ export type Promotion_24090500_Type = keyof typeof Promotion_24090500_Type;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Promotion_24090500_Type = exports.Promotion_24090500_State = void 0;
4
+ exports.Promotion_24090500_State = {
5
+ /** [문의 제출] 문의가 제출되었으며, 결제 상태는 확인되지 않았습니다. */
6
+ submitted: "submitted",
7
+ /** [결제 확인] 완료 */
8
+ paymentConfirm: "paymentConfirm",
9
+ /** [진행 중] 관련 내용을 진행하고 있습니다 */
10
+ progressing: "progressing",
11
+ /** [환불 중] 환불 처리를 진행하고 있습니다 */
12
+ refunding: "refunding",
13
+ /** [종료] 모든 관련 내용이 정상적으로 종료되었습니다 */
14
+ finished: "finished",
15
+ /** [취소] */
16
+ canceled: "canceled",
17
+ };
18
+ /**
19
+ * @lease [리스]
20
+ * @rent [장기렌트]
21
+ */
22
+ exports.Promotion_24090500_Type = {
23
+ lease: "lease",
24
+ rent: "rent",
25
+ };
@@ -0,0 +1 @@
1
+ export * from "./24090500";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./24090500"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.73",
3
+ "version": "1.1.74",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",