@openfeed/sdk-js 1.1.1 → 1.1.2

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.1.2](https://github.com/openfeed-org/sdk-js/compare/1.1.1...1.1.2) (2023-12-20)
6
+
5
7
  ### [1.1.1](https://github.com/openfeed-org/sdk-js/compare/v1.1.0...v1.1.1) (2023-12-20)
6
8
 
7
9
  ## [1.1.0](https://github.com/openfeed-org/sdk-js/compare/v1.0.5...v1.1.0) (2023-12-20)
@@ -1 +1 @@
1
- export declare const version = "1.1.1";
1
+ export declare const version = "1.1.2";
package/dist/index.js CHANGED
@@ -8031,7 +8031,7 @@ class ResolutionSource {
8031
8031
  return this.onError;
8032
8032
  }
8033
8033
  }
8034
- const version = "1.1.1";
8034
+ const version = "1.1.2";
8035
8035
  const send = (socket, message) => {
8036
8036
  socket.send(OpenfeedGatewayRequestEncode.encode(toT(message)).finish());
8037
8037
  };
package/dist/node.js CHANGED
@@ -11655,7 +11655,7 @@ var ResolutionSource = class {
11655
11655
  };
11656
11656
 
11657
11657
  // generated/version.ts
11658
- var version = "1.1.1";
11658
+ var version = "1.1.2";
11659
11659
 
11660
11660
  // src/connection/connection.ts
11661
11661
  var send = (socket, message) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfeed/sdk-js",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "JavaScript SDK for Barchart OpenFeed",
5
5
  "main": "dist/node.js",
6
6
  "browser": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  "build:ts": "yarn generate:version && vite build",
21
21
  "build:types": "tsc -p tsconfig.types.json",
22
22
  "build:test-release": "standard-version --dry-run",
23
- "build:prepare-release": "standard-version -t",
23
+ "build:prepare-release": "standard-version -t ''",
24
24
  "run:browser": "yarn generate:version && vite dev",
25
25
  "run:node": "yarn generate:version && tsx ./src/test.ts"
26
26
  },