Socket
Socket
Sign inDemoInstall

ziggeo

Package Overview
Dependencies
0
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.8 to 0.1.15

demos/application_update.js

5

demos/video_get.js

@@ -11,3 +11,6 @@ var app_token = process.argv[2];

console.log (video);
},
failure: function(data) {
console.log(data);
}
});
});

2

package.json
{
"name": "ziggeo",
"description": "Ziggeo API (https://ziggeo.com) allows you to integrate video recording and playback with only two lines of code in your site, service or app. This is the NodeJS Server SDK.",
"version": "0.1.8",
"version": "0.1.15",
"author": "Ziggeo",

@@ -6,0 +6,0 @@ "repository": "https://github.com/Ziggeo/ZiggeoNodeSdk.git",

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

# Ziggeo Node.js Server SDK 0.1.8
# Ziggeo Node.js Server SDK 0.1.15

@@ -478,3 +478,2 @@ Ziggeo API (https://ziggeo.com) allows you to integrate video recording and playback with only

- enable_video_subpages: *Enable hosted video pages*
- enable_facebook: *Enable Facebook Support for hosted video pages*

@@ -761,2 +760,15 @@

#### Confirm
Confirm a webhook using its ID and the corresponding validation code.
```node
ZiggeoSdk.Webhooks.confirm(arguments, [callbacks])
```
Arguments
- webhook_id: *Webhook ID that's returned in the creation call.*
- validation_code: *Validation code that is sent to the webhook when created.*
#### Delete

@@ -799,4 +811,4 @@

Copyright (c) 2013-2018 Ziggeo
Copyright (c) 2013-2019 Ziggeo
Apache 2.0 License

@@ -10,2 +10,6 @@ var Webhooks = function (Connect, ApiConnect) {

Webhooks.prototype.confirm = function (data, callbacks) {
this.Connect.post('/v1/api/confirmhook', callbacks, data);
};
Webhooks.prototype.destroy = function (data, callbacks) {

@@ -12,0 +16,0 @@ this.Connect.post('/v1/api/removehook', callbacks, data);

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc