@carsayo/types 1.1.7704 → 1.1.7706

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.
@@ -22,6 +22,15 @@ export interface InsuranceCompanyCreateDTO {
22
22
  direct_signup_url_web?: string;
23
23
  /** 모바일 웹 가입 URL */
24
24
  direct_signup_url_mobile?: string;
25
+ /**
26
+ * 보험사 광고 문구
27
+ * @example 무이자 3개월 제공
28
+ */
29
+ direct_advertise?: string;
30
+ /** 심의필 문구
31
+ * @example 메리츠화재 준법감시인심의필 제2023-광고-1427호 (2023.07.14 ~ 2024.07.13)
32
+ */
33
+ direct_certification?: string;
25
34
  }
26
35
  export interface InsuranceCompanyUpdateDTO extends InsuranceCompanyIdDTO {
27
36
  /** 생성 보험사 이름 */
@@ -42,6 +51,15 @@ export interface InsuranceCompanyUpdateDTO extends InsuranceCompanyIdDTO {
42
51
  direct_signup_url_web?: string;
43
52
  /** 모바일 웹 가입 URL */
44
53
  direct_signup_url_mobile?: string;
54
+ /**
55
+ * 보험사 광고 문구
56
+ * @example 무이자 3개월 제공
57
+ */
58
+ direct_advertise?: string;
59
+ /** 심의필 문구
60
+ * @example 메리츠화재 준법감시인심의필 제2023-광고-1427호 (2023.07.14 ~ 2024.07.13)
61
+ */
62
+ direct_certification?: string;
45
63
  /** 활성화된 보험사 여부
46
64
  * @description 일반 회원이 보험사 리스트 조회 시 isValid=true인 보험사만 조회합니다.
47
65
  */
@@ -14,10 +14,21 @@ export interface InsuranceCompany {
14
14
  export interface InsuranceCompanyDirect {
15
15
  /** 다이렉트 보험명 */
16
16
  title: string;
17
- /** 설명 */
17
+ /** 설명
18
+ * @notice html형태입니다.
19
+ */
18
20
  description: string;
19
21
  /** 긴급출동번호 */
20
22
  emergency_contact: string;
23
+ /**
24
+ * 보험사 광고 문구
25
+ * @example 무이자 3개월 제공
26
+ */
27
+ advertise: string | null;
28
+ /** 심의필 문구
29
+ * @example 메리츠화재 준법감시인심의필 제2023-광고-1427호 (2023.07.14 ~ 2024.07.13)
30
+ */
31
+ certification: string | null;
21
32
  /** 웹 가입 URL */
22
33
  signup_url_web: string | null;
23
34
  /** 모바일 웹 가입 URL */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.7704",
3
+ "version": "1.1.7706",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",