@tripian/core 5.0.29 → 5.0.30

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
@@ -130,6 +130,7 @@ declare class API {
130
130
  * Small Business Tools
131
131
  */
132
132
  businessSearch: (q: string, cityId: number, bounds?: string) => Promise<Model.BusinessSearch[]>;
133
+ businessAssign: (tripianPoiId: number) => Promise<Model.User>;
133
134
  startVerify: (to_: string, channel: Model.VERIFY_CHANNEL) => Promise<Model.BusinessVerify>;
134
135
  checkVerify: (to_: string, channel: Model.VERIFY_CHANNEL, code: string) => Promise<Model.BusinessVerify>;
135
136
  business: () => Promise<Model.Business>;
@@ -156,7 +157,11 @@ declare class API {
156
157
  * Business Combo
157
158
  *
158
159
  */
159
- payloadData: () => Promise<{
160
+ businessPayloadData: () => Promise<{
161
+ user: Model.User;
162
+ business?: Model.Business;
163
+ }>;
164
+ payloadDataEx: () => Promise<{
160
165
  user: Model.User;
161
166
  business: Model.Business;
162
167
  }>;