@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
|
}
|
package/gen/crm_calculation.ts
CHANGED
package/package.json
CHANGED
|
@@ -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
|
}
|