@carsayo/types 1.1.880 → 1.1.882

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.
@@ -18,3 +18,13 @@ export interface UpsertPartnersCommissionSettlementDTO {
18
18
  state: PartnersSettlementState;
19
19
  targetCommissionIdList: string[];
20
20
  }
21
+ export interface SendPartnersPushmessageDTO {
22
+ /** 푸시 메시지 제목 */
23
+ title?: string;
24
+ /** 푸시 메시지 내용 */
25
+ message: string;
26
+ /** 수신 공업사 Id */
27
+ partnerRepairshopId: string;
28
+ /** 카사요 파트너스 앱 - 푸시 메시지 클릭 시 리다이렉트될 path */
29
+ redirectPath?: string;
30
+ }
@@ -31,6 +31,10 @@ export interface PartnersCommissionSettlement {
31
31
  id: number;
32
32
  state: PartnersSettlementState;
33
33
  partner_repairshopId: string;
34
+ partner_repairshop_settlement_history: {
35
+ content: string;
36
+ created_at: Date;
37
+ }[];
34
38
  created_at: Date;
35
39
  paid_at: Date | null;
36
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.880",
3
+ "version": "1.1.882",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",