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

@capacitor-community/facebook-login

Package Overview
Dependencies
Maintainers
42
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@capacitor-community/facebook-login - npm Package Compare versions

Comparing version 4.0.0 to 5.0.0

64

dist/docs.json

@@ -96,2 +96,66 @@ {

"slug": "getprofile"
},
{
"name": "logEvent",
"signature": "(options: { name: string; }) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "{ name: string; }"
}
],
"returns": "Promise<void>",
"tags": [],
"docs": "",
"complexTypes": [],
"slug": "logevent"
},
{
"name": "setAutoLogAppEventsEnabled",
"signature": "(options: { enabled: boolean; }) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "{ enabled: boolean; }"
}
],
"returns": "Promise<void>",
"tags": [],
"docs": "",
"complexTypes": [],
"slug": "setautologappeventsenabled"
},
{
"name": "setAdvertiserTrackingEnabled",
"signature": "(options: { enabled: boolean; }) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "{ enabled: boolean; }"
}
],
"returns": "Promise<void>",
"tags": [],
"docs": "",
"complexTypes": [],
"slug": "setadvertisertrackingenabled"
},
{
"name": "setAdvertiserIDCollectionEnabled",
"signature": "(options: { enabled: boolean; }) => Promise<void>",
"parameters": [
{
"name": "options",
"docs": "",
"type": "{ enabled: boolean; }"
}
],
"returns": "Promise<void>",
"tags": [],
"docs": "",
"complexTypes": [],
"slug": "setadvertiseridcollectionenabled"
}

@@ -98,0 +162,0 @@ ],

@@ -30,2 +30,14 @@ export interface AccessToken {

}): Promise<T>;
logEvent(options: {
name: string;
}): Promise<void>;
setAutoLogAppEventsEnabled(options: {
enabled: boolean;
}): Promise<void>;
setAdvertiserTrackingEnabled(options: {
enabled: boolean;
}): Promise<void>;
setAdvertiserIDCollectionEnabled(options: {
enabled: boolean;
}): Promise<void>;
}

@@ -32,0 +44,0 @@ export interface FacebookGetLoginStatusResponse {

4

dist/esm/web.d.ts

@@ -21,2 +21,6 @@ import { WebPlugin } from '@capacitor/core';

}): Promise<T>;
logEvent(): Promise<void>;
setAutoLogAppEventsEnabled(): Promise<void>;
setAdvertiserTrackingEnabled(): Promise<void>;
setAdvertiserIDCollectionEnabled(): Promise<void>;
}

@@ -117,3 +117,15 @@ import { WebPlugin } from '@capacitor/core';

}
async logEvent() {
return Promise.resolve();
}
async setAutoLogAppEventsEnabled() {
return Promise.resolve();
}
async setAdvertiserTrackingEnabled() {
return Promise.resolve();
}
async setAdvertiserIDCollectionEnabled() {
return Promise.resolve();
}
}
//# sourceMappingURL=web.js.map

@@ -126,2 +126,14 @@ 'use strict';

}
async logEvent() {
return Promise.resolve();
}
async setAutoLogAppEventsEnabled() {
return Promise.resolve();
}
async setAdvertiserTrackingEnabled() {
return Promise.resolve();
}
async setAdvertiserIDCollectionEnabled() {
return Promise.resolve();
}
}

@@ -128,0 +140,0 @@

@@ -123,2 +123,14 @@ var FacebookLoginPlugin = (function (exports, core) {

}
async logEvent() {
return Promise.resolve();
}
async setAutoLogAppEventsEnabled() {
return Promise.resolve();
}
async setAdvertiserTrackingEnabled() {
return Promise.resolve();
}
async setAdvertiserIDCollectionEnabled() {
return Promise.resolve();
}
}

@@ -125,0 +137,0 @@

14

package.json
{
"name": "@capacitor-community/facebook-login",
"version": "4.0.0",
"version": "5.0.0",
"description": "A native plugin for Facebook Login",

@@ -43,7 +43,7 @@ "main": "dist/plugin.cjs.js",

"devDependencies": {
"@capacitor/android": "^4.0.0",
"@capacitor/core": "^4.0.0",
"@capacitor/cli": "^4.0.0",
"@capacitor/android": "^5.0.0",
"@capacitor/cli": "^5.0.0",
"@capacitor/core": "^5.0.0",
"@capacitor/docgen": "^0.0.16",
"@capacitor/ios": "^4.0.0",
"@capacitor/ios": "^5.0.0",
"@ionic/eslint-config": "^0.3.0",

@@ -53,3 +53,3 @@ "@ionic/prettier-config": "^1.0.1",

"eslint": "^7.26.0",
"np": "^7.5.0",
"np": "^7.7.0",
"prettier": "^2.3.0",

@@ -63,3 +63,3 @@ "prettier-plugin-java": "~1.0.2",

"dependencies": {
"@capacitor/core": "^4.0.0"
"@capacitor/core": "^5.0.0"
},

@@ -66,0 +66,0 @@ "prettier": "@ionic/prettier-config",

@@ -45,12 +45,3 @@ <p align="center"><br><img src="https://user-images.githubusercontent.com/236501/85893648-1c92e880-b7a8-11ea-926d-95355b8175c7.png" width="128" height="128" /></p>

If you use capacitor 4:
```bash
% npm i --save @capacitor-community/facebook-login@next
% npx cap update
```
capacitor 3:
```bash
% npm i --save @capacitor-community/facebook-login

@@ -275,2 +266,6 @@ % npx cap update

* [`getProfile(...)`](#getprofile)
* [`logEvent(...)`](#logevent)
* [`setAutoLogAppEventsEnabled(...)`](#setautologappeventsenabled)
* [`setAdvertiserTrackingEnabled(...)`](#setadvertisertrackingenabled)
* [`setAdvertiserIDCollectionEnabled(...)`](#setadvertiseridcollectionenabled)
* [Interfaces](#interfaces)

@@ -358,2 +353,54 @@ * [Type Aliases](#type-aliases)

### logEvent(...)
```typescript
logEvent(options: { name: string; }) => Promise<void>
```
| Param | Type |
| ------------- | ------------------------------ |
| **`options`** | <code>{ name: string; }</code> |
--------------------
### setAutoLogAppEventsEnabled(...)
```typescript
setAutoLogAppEventsEnabled(options: { enabled: boolean; }) => Promise<void>
```
| Param | Type |
| ------------- | ---------------------------------- |
| **`options`** | <code>{ enabled: boolean; }</code> |
--------------------
### setAdvertiserTrackingEnabled(...)
```typescript
setAdvertiserTrackingEnabled(options: { enabled: boolean; }) => Promise<void>
```
| Param | Type |
| ------------- | ---------------------------------- |
| **`options`** | <code>{ enabled: boolean; }</code> |
--------------------
### setAdvertiserIDCollectionEnabled(...)
```typescript
setAdvertiserIDCollectionEnabled(options: { enabled: boolean; }) => Promise<void>
```
| Param | Type |
| ------------- | ---------------------------------- |
| **`options`** | <code>{ enabled: boolean; }</code> |
--------------------
### Interfaces

@@ -360,0 +407,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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