@tripian/core 5.0.25 → 5.0.28

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
@@ -7,7 +7,7 @@ declare class API {
7
7
  getToken: () => Model.Token | undefined;
8
8
  setToken: (token: Model.Token) => void;
9
9
  removeToken: () => void;
10
- config: () => Promise<Model.City>;
10
+ configList: () => Promise<Model.ConfigList>;
11
11
  /**
12
12
  ******************************************************************************
13
13
  *
@@ -143,6 +143,10 @@ declare class API {
143
143
  businessOfferFileUpload: (file: string) => Promise<{
144
144
  url: string;
145
145
  }>;
146
+ /**
147
+ * Business Pre Registers
148
+ */
149
+ businessPreRegister: (preRegister: Model.PreRegister) => Promise<boolean>;
146
150
  /**
147
151
  * COMBO
148
152
  */
@@ -65,6 +65,7 @@ interface ApiConstModel {
65
65
  OFFER_UPDATE: ApiConst;
66
66
  OFFER_DELETE: ApiConst;
67
67
  OFFERS_OPT_IN: ApiConst;
68
+ BUSINESS_PRE_REGISTER: ApiConst;
68
69
  BUSINESS_SEARCH: ApiConst;
69
70
  BUSINESS_USER_ASSIGN: ApiConst;
70
71
  BUSINESS_VERIFY_START: ApiConst;