@tripian/core 9.1.40 → 9.1.41

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/api/API.d.ts CHANGED
@@ -154,6 +154,8 @@ declare class API {
154
154
  feedbacks: () => Promise<Model.Feedbacks>;
155
155
  userFeedbacks: (forceOnce?: boolean) => Promise<Model.UserFeedback[]>;
156
156
  feedbackSend: (feedbackRequest: Model.FeedbackRequest) => Promise<Model.UserFeedback[]>;
157
+ feedbackReply: (feedbackRequest: Model.FeedbackReplyRequest) => Promise<Model.UserFeedback[]>;
158
+ feedbackUpdate: (feedbackId: string, isRead: boolean) => Promise<Model.UserFeedback[]>;
157
159
  /**
158
160
  * Offers
159
161
  */
@@ -15,8 +15,10 @@ interface ApiConstModel {
15
15
  CITY_INFO: ApiConst;
16
16
  CITY_EVENTS: ApiConst;
17
17
  FEEDBACKS: ApiConst;
18
- SEND_FEEDBACK: ApiConst;
19
18
  USER_FEEDBACKS: ApiConst;
19
+ SEND_FEEDBACK: ApiConst;
20
+ REPLY_FEEDBACK: ApiConst;
21
+ UPDATE_FEEDBACK: ApiConst;
20
22
  POI_CATEGORIES: ApiConst;
21
23
  POIS: ApiConst;
22
24
  POI: ApiConst;