@carsayo/types 1.1.892003 → 1.1.892005

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.
@@ -1 +1,2 @@
1
1
  export declare const ADMIN_CHAT_ID = "CsyAdminChat";
2
+ export declare const ADMIN_PROFILE_IMAGE = "https://cdn.carsayo.net/carsayo/thumbnail/admin/profile.png";
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ADMIN_CHAT_ID = void 0;
3
+ exports.ADMIN_PROFILE_IMAGE = exports.ADMIN_CHAT_ID = void 0;
4
4
  exports.ADMIN_CHAT_ID = "CsyAdminChat";
5
+ exports.ADMIN_PROFILE_IMAGE = "https://cdn.carsayo.net/carsayo/thumbnail/admin/profile.png";
@@ -13,7 +13,15 @@ export type ChatOpponent = {
13
13
  */
14
14
  isRecipientNotiEnabled: boolean;
15
15
  };
16
- export type ChatRoomType = "repair_service" | "repair_direct";
16
+ export declare const ChatRoomType: {
17
+ /** 사고수리 서비스 채팅 */
18
+ readonly repairService: "repairService";
19
+ /** 사고수리 공업사 직접문의 채팅 */
20
+ readonly repairDirect: "repairDirect";
21
+ /** 내차팔기 관리자 1:1 문의 */
22
+ readonly inquiry_sellcar: "inquiry_sellcar";
23
+ };
24
+ export type ChatRoomType = keyof typeof ChatRoomType;
17
25
  export type ChatCreateRoomInfo = {
18
26
  roomId: string;
19
27
  carsayoId: string;
@@ -1,6 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TargetApp = void 0;
3
+ exports.TargetApp = exports.ChatRoomType = void 0;
4
+ exports.ChatRoomType = {
5
+ /** 사고수리 서비스 채팅 */
6
+ repairService: "repairService",
7
+ /** 사고수리 공업사 직접문의 채팅 */
8
+ repairDirect: "repairDirect",
9
+ /** 내차팔기 관리자 1:1 문의 */
10
+ inquiry_sellcar: "inquiry_sellcar",
11
+ };
4
12
  exports.TargetApp = {
5
13
  carsayo: "카사요",
6
14
  partners: "파트너스",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892003",
3
+ "version": "1.1.892005",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",