create-entity-server 0.0.31 → 0.2.5
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.
- package/bin/create.js +4 -0
- package/package.json +1 -1
- package/template/configs/database.json +2 -2
- package/template/entities/README.md +3 -3
- package/template/entities/System/Address/addr_dong.json +10115 -0
- package/template/entities/System/Address/addr_sido.json +39 -0
- package/template/entities/System/Address/addr_sigungu.json +1398 -0
- package/template/entities/System/Auth/account.json +0 -64
- package/template/entities/System/Auth/account_device.json +7 -22
- package/template/entities/System/Auth/account_login_log.json +3 -8
- package/template/entities/System/Auth/anon_device.json +56 -0
- package/template/scripts/api-key.sh +5 -2
- package/template/scripts/cleanup-history.sh +9 -4
- package/template/scripts/cli.sh +5 -2
- package/template/scripts/entity.sh +9 -4
- package/template/scripts/install-systemd.sh +7 -3
- package/template/scripts/normalize-entities.sh +9 -4
- package/template/scripts/rbac-role.sh +5 -2
- package/template/scripts/reset-all.sh +91 -13
- package/template/scripts/run.sh +73 -27
- package/template/scripts/sync.sh +9 -4
- package/template/configs/auth/oauth.json +0 -40
- package/template/configs/auth/password.json +0 -45
- package/template/configs/keys/apns.p8.example +0 -7
- package/template/configs/keys/firebase.pem.example +0 -7
- package/template/configs/notification/push.json +0 -25
- package/template/entities/System/Auth/account_oauth.json +0 -74
- package/template/entities/System/Auth/identity_verification.json +0 -106
- package/template/entities/System/Auth/password_history.json +0 -19
- package/template/entities/System/Notification/alimtalk_log.json +0 -65
- package/template/entities/System/Notification/alimtalk_msg.json +0 -53
- package/template/entities/System/Notification/friendtalk_log.json +0 -89
- package/template/entities/System/Notification/friendtalk_msg.json +0 -91
- package/template/entities/System/Notification/sms_log.json +0 -65
- package/template/entities/System/Notification/sms_msg.json +0 -82
- package/template/entities/System/Notification/sms_verification.json +0 -50
- package/template/entities/System/Payment/pg_cancel.json +0 -60
- package/template/entities/System/Payment/pg_order.json +0 -115
- package/template/entities/System/Payment/pg_webhook_log.json +0 -52
- package/template/entities/System/Push/push_log.json +0 -86
- package/template/entities/System/Push/push_msg.json +0 -56
- package/template/templates/email/auth/2fa_disabled.html +0 -23
- package/template/templates/email/auth/2fa_recovery_regenerated.html +0 -31
- package/template/templates/email/auth/2fa_setup_complete.html +0 -43
- package/template/templates/email/auth/welcome.html +0 -18
- package/template/templates/email/order/order_confirmation.html +0 -30
- /package/template/configs/{notification/smtp.json → smtp.json} +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "addr_sido",
|
|
3
|
+
"description": "시/도 마스터 데이터 (data_rgn1)",
|
|
4
|
+
"license_scope": false,
|
|
5
|
+
"hard_delete": true,
|
|
6
|
+
"fields": {
|
|
7
|
+
"sido": {
|
|
8
|
+
"index": true,
|
|
9
|
+
"comment": "시도 정식명칭",
|
|
10
|
+
"required": true,
|
|
11
|
+
"unique": true
|
|
12
|
+
},
|
|
13
|
+
"sido_short": {
|
|
14
|
+
"index": true,
|
|
15
|
+
"comment": "시도 축약명칭",
|
|
16
|
+
"required": true,
|
|
17
|
+
"unique": true
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"reset_defaults": [
|
|
21
|
+
{ "sido": "서울특별시", "sido_short": "서울" },
|
|
22
|
+
{ "sido": "인천광역시", "sido_short": "인천" },
|
|
23
|
+
{ "sido": "대전광역시", "sido_short": "대전" },
|
|
24
|
+
{ "sido": "대구광역시", "sido_short": "대구" },
|
|
25
|
+
{ "sido": "부산광역시", "sido_short": "부산" },
|
|
26
|
+
{ "sido": "울산광역시", "sido_short": "울산" },
|
|
27
|
+
{ "sido": "광주광역시", "sido_short": "광주" },
|
|
28
|
+
{ "sido": "세종특별자치시", "sido_short": "세종" },
|
|
29
|
+
{ "sido": "경기도", "sido_short": "경기" },
|
|
30
|
+
{ "sido": "강원도", "sido_short": "강원" },
|
|
31
|
+
{ "sido": "충청북도", "sido_short": "충북" },
|
|
32
|
+
{ "sido": "충청남도", "sido_short": "충남" },
|
|
33
|
+
{ "sido": "경상북도", "sido_short": "경북" },
|
|
34
|
+
{ "sido": "경상남도", "sido_short": "경남" },
|
|
35
|
+
{ "sido": "전라북도", "sido_short": "전북" },
|
|
36
|
+
{ "sido": "전라남도", "sido_short": "전남" },
|
|
37
|
+
{ "sido": "제주특별자치도", "sido_short": "제주" }
|
|
38
|
+
]
|
|
39
|
+
}
|