@mamindom/contracts 1.0.164 → 1.0.165

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.
@@ -94,6 +94,8 @@ export interface GetCustomerProfileResponse {
94
94
  cashbackTotal: number;
95
95
  cashbackBurned: number;
96
96
  cashbackNegative: number;
97
+ personalOffersRaw: string;
98
+ giftBonusesRaw: string;
97
99
  }
98
100
  export declare const CRM_V1_PACKAGE_NAME = "crm.v1";
99
101
  export interface CrmCalculationServiceClient {
@@ -135,10 +135,14 @@ message GetCustomerProfileResponse {
135
135
  bool degraded = 2;
136
136
  string planfix_contact_id = 3;
137
137
 
138
- double bonus_balance = 4;
139
- double cashback_active = 5;
140
- double cashback_inactive = 6;
141
- double cashback_total = 7;
142
- double cashback_burned = 8;
143
- double cashback_negative = 9;
138
+ double bonus_balance = 4;
139
+ double cashback_active = 5;
140
+ double cashback_inactive = 6;
141
+ double cashback_total = 7;
142
+ double cashback_burned = 8;
143
+ double cashback_negative = 9;
144
+
145
+
146
+ string personal_offers_raw = 10;
147
+ string gift_bonuses_raw = 11;
144
148
  }
@@ -117,6 +117,8 @@ export interface GetCustomerProfileResponse {
117
117
  cashbackTotal: number;
118
118
  cashbackBurned: number;
119
119
  cashbackNegative: number;
120
+ personalOffersRaw: string;
121
+ giftBonusesRaw: string;
120
122
  }
121
123
 
122
124
  export const CRM_V1_PACKAGE_NAME = "crm.v1";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.164",
4
+ "version": "1.0.165",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -135,10 +135,14 @@ message GetCustomerProfileResponse {
135
135
  bool degraded = 2;
136
136
  string planfix_contact_id = 3;
137
137
 
138
- double bonus_balance = 4;
139
- double cashback_active = 5;
140
- double cashback_inactive = 6;
141
- double cashback_total = 7;
142
- double cashback_burned = 8;
143
- double cashback_negative = 9;
138
+ double bonus_balance = 4;
139
+ double cashback_active = 5;
140
+ double cashback_inactive = 6;
141
+ double cashback_total = 7;
142
+ double cashback_burned = 8;
143
+ double cashback_negative = 9;
144
+
145
+
146
+ string personal_offers_raw = 10;
147
+ string gift_bonuses_raw = 11;
144
148
  }