fk-platform-sdk 1.0.20-beta → 1.0.20

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.
@@ -1,5 +1,5 @@
1
1
  import { LocationManagerResponse } from "../../types/LocationManagerResponse";
2
2
  import { NativeModuleResponse } from "../NativeModuleResponse";
3
3
  export interface LocationModule {
4
- getPincode: (clientID: string) => Promise<NativeModuleResponse<LocationManagerResponse>>;
4
+ getUserPinCode: (clientID: string) => Promise<NativeModuleResponse<LocationManagerResponse>>;
5
5
  }
@@ -5,5 +5,5 @@ import { LocationModule } from "../interfaces/modules/LocationModule";
5
5
  import { LocationManagerResponse } from "../types/LocationManagerResponse";
6
6
  export declare class LocationModuleImpl extends NativeModule<NativeModuleManager> implements LocationModule {
7
7
  constructor(nativeModuleCallbackManager: NativeModuleCallbackManager);
8
- getPincode(clientID: string): Promise<NativeModuleResponse<LocationManagerResponse>>;
8
+ getUserPinCode(clientID: string): Promise<NativeModuleResponse<LocationManagerResponse>>;
9
9
  }
@@ -16,7 +16,7 @@ var LocationModuleImpl = /** @class */ (function (_super) {
16
16
  function LocationModuleImpl(nativeModuleCallbackManager) {
17
17
  return _super.call(this, NativeModuleHelper_1.NativeModuleHelper.getCurrentNativeModuleProvider().LocationModule, nativeModuleCallbackManager) || this;
18
18
  }
19
- LocationModuleImpl.prototype.getPincode = function (clientID) {
19
+ LocationModuleImpl.prototype.getUserPinCode = function (clientID) {
20
20
  var _this = this;
21
21
  return this.nativeModuleCallbackManager.executeOnBridge(function (requestId) {
22
22
  _this.postMessage({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fk-platform-sdk",
3
- "version": "1.0.20-beta",
3
+ "version": "1.0.20",
4
4
  "description": "SDK to enable external experience integration within flipkart app.",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",