Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pointzi-react

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pointzi-react - npm Package Compare versions

Comparing version 1.7.0 to 1.7.1-beta.0

39

index.js

@@ -1,2 +0,37 @@

import {NativeModules} from 'react-native';
module.exports = NativeModules.PointziReact;
import { NativeModules } from "react-native";
var pz = Object.create(NativeModules.PointziReact);
pz.tagCuid = function (tag) {
NativeModules.PointziReact.tagCuid(String(tag));
};
pz.tagString = function (key, tag) {
NativeModules.PointziReact.tagString(String(key), String(tag));
};
pz.tagDatetime = function (key, date) {
NativeModules.PointziReact.tagDatetime(String(key), String(date));
};
pz.removeTag = function (key) {
NativeModules.PointziReact.removeTag(String(key));
};
pz.tagUserLanguage = function (language) {
NativeModules.PointziReact.tagUserLanguage(String(language));
};
pz.showGuide = function (id) {
NativeModules.PointziReact.showGuide(String(id));
};
pz.pointziReactWillDidMount = function (reactViewName) {
NativeModules.PointziReact.pointziReactWillDidMount(String(reactViewName));
};
pz.viewWillRender = function (reactViewName) {
NativeModules.PointziReact.viewWillRender(String(reactViewName));
};
module.exports = pz;

2

package.json
{
"name": "pointzi-react",
"version": "1.7.0",
"version": "1.7.1-beta.0",
"description": "This is an IOS/Android wrapper file for Pointzi that allows the use of Pointzi in React Native Enviroment",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc