Socket
Socket
Sign inDemoInstall

twilio-sync

Package Overview
Dependencies
Maintainers
1
Versions
608
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twilio-sync - npm Package Compare versions

Comparing version 3.2.0-rc.2 to 3.2.0-rc.5

61

CHANGELOG.md

@@ -6,2 +6,63 @@ # Change Log

## [3.2.0-rc.5](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@3.2.0-rc.4...twilio-sync@3.2.0-rc.5) (2022-07-25)
**Note:** Version bump only for package twilio-sync
## [3.2.0-rc.4](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@4.0.0-rc.3...twilio-sync@3.2.0-rc.4) (2022-07-21)
### Bug Fixes
* Add deprecation notice for Conversation.create, fix packages versions ([5c3232f](https://github.com/twilio/rtd-sdk-monorepo-js/commit/5c3232f68b77d465a37e9c110881fee6c02ed8de))
## [4.0.0-rc.3](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@4.0.0-rc.2...twilio-sync@4.0.0-rc.3) (2022-07-20)
### Bug Fixes
* Rollback twilsock type, update loglevel version ([b8c4b2c](https://github.com/twilio/rtd-sdk-monorepo-js/commit/b8c4b2c174a8a2cf413b0ef6c719fd45e0cfce6d))
## [4.0.0-rc.2](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@4.0.0-rc.1...twilio-sync@4.0.0-rc.2) (2022-07-05)
**Note:** Version bump only for package twilio-sync
## [4.0.0-rc.1](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@4.0.0-rc.0...twilio-sync@4.0.0-rc.1) (2022-05-19)
**Note:** Version bump only for package twilio-sync
## [4.0.0-rc.0](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@3.2.0-rc.2...twilio-sync@4.0.0-rc.0) (2022-05-18)
### ⚠ BREAKING CHANGES
* Update README.md
### Bug Fixes
* Update README.md ([6ac4304](https://github.com/twilio/rtd-sdk-monorepo-js/commit/6ac4304fe772fafafe1a70bc7d462d8f94b6332e))
### Reverts
* Revert "chore(release): Publish" ([097a200](https://github.com/twilio/rtd-sdk-monorepo-js/commit/097a2004f233688bf9a97d1defc976a9fb5da96d))
* Revert "chore(release): Publish" ([03b27ca](https://github.com/twilio/rtd-sdk-monorepo-js/commit/03b27ca9830bc6aba2d37febebe6e53f7abddb2d))
## [3.2.0-rc.2](https://github.com/twilio/rtd-sdk-monorepo-js/compare/twilio-sync@3.2.0-rc.1...twilio-sync@3.2.0-rc.2) (2022-05-02)

@@ -8,0 +69,0 @@

2

dist/client.js

@@ -196,3 +196,3 @@ /*

twilsock$1.on('connectionError', err => this.emit('connectionError', err));
twilsock$1.onWithReplay('stateChanged', (state) => {
twilsock$1.on('stateChanged', (state) => {
this.emit('connectionStateChanged', state);

@@ -199,0 +199,0 @@ /**

@@ -105,5 +105,5 @@ /*

var version = "3.2.0-rc.2";
var version = "3.2.0-rc.5";
exports.version = version;
//# sourceMappingURL=package.json.js.map
{
"name": "twilio-sync",
"version": "3.2.0-rc.2",
"version": "3.2.0-rc.5",
"description": "Twilio Sync client library",

@@ -39,10 +39,10 @@ "main": "./builds/lib.js",

"@babel/runtime": "^7.17.0",
"@twilio/declarative-type-validator": "^0.2.0-rc.0",
"@twilio/operation-retrier": "^4.0.8-rc.1",
"@twilio/replay-event-emitter": "^0.3.0-rc.1",
"@twilio/declarative-type-validator": "^0.2.0-rc.3",
"@twilio/operation-retrier": "^4.0.8-rc.4",
"@twilio/replay-event-emitter": "^0.3.0-rc.4",
"core-js": "^3.17.3",
"iso8601-duration": "=1.2.0",
"loglevel": "^1.6.3",
"loglevel": "^1.8.0",
"platform": "^1.3.6",
"twilsock": "^0.13.0-rc.2",
"twilsock": "~0.12.2",
"uuid": "^3.4.0"

@@ -49,0 +49,0 @@ },

@@ -17,4 +17,4 @@ # Twilio Sync JavaScript client library

```
var { SyncClient } = require('twilio-sync');
var syncClient = new SyncClient(token);
const { SyncClient } = require('twilio-sync');
const syncClient = new SyncClient(token);
```

@@ -28,3 +28,3 @@

```
<script type="text/javascript" src="//media.twiliocdn.com/sdk/js/sync/v3.0/twilio-sync.min.js"></script>
<script type="text/javascript" src="//media.twiliocdn.com/sdk/js/sync/v4.0/twilio-sync.min.js"></script>
```

@@ -35,3 +35,3 @@

```
var syncClient = new Twilio.Sync.Client(token);
const syncClient = new Twilio.Sync.Client(token);
```

@@ -47,4 +47,4 @@

// Obtain a JWT access token: https://www.twilio.com/docs/sync/identity-and-access-tokens
var token = '<your-access-token-here>';
var syncClient = new Twilio.Sync.Client(token);
const token = '<your-access-token-here>';
const syncClient = new Twilio.Sync.Client(token);

@@ -60,3 +60,3 @@ // Open a Document by unique name and update its data

// Update the Document data
var newData = { temperature: 23 };
const newData = { temperature: 23 };
return document.set(newData);

@@ -63,0 +63,0 @@ })

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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