@or-sdk/contacts 1.1.3 → 1.1.4

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
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [1.1.4](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/contacts@1.1.3...@or-sdk/contacts@1.1.4) (2022-08-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Minor naming fixes ([1e02076](https://gitlab.com/onereach/platform/or-sdk-next/commit/1e02076324251ebed2854613691266c79547da67))
12
+
13
+
14
+
6
15
  ### [1.1.3](https://gitlab.com/onereach/platform/or-sdk-next/compare/@or-sdk/contacts@1.1.2...@or-sdk/contacts@1.1.3) (2022-08-29)
7
16
 
8
17
  **Note:** Version bump only for package @or-sdk/contacts
package/README.md CHANGED
@@ -11,7 +11,7 @@ import { Contacts } from '@or-sdk/contacts'
11
11
  // with direct api url
12
12
  const contacts = new Contacts({
13
13
  token: 'my-account-token-string',
14
- sdkUrl: 'http://example.account-settings/endpoint'
14
+ contactsApiUrl: 'http://example.account-settings/endpoint'
15
15
  });
16
16
 
17
17
  // with service discovery(slower)
@@ -37,4 +37,3 @@ const book = contactBookApi.getContactsBook(id)
37
37
  const newContactBook = contactBookApi.createContactBook(...)
38
38
 
39
39
  ```
40
- [[include:contacts/CHANGELOG.md]]
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.3",
2
+ "version": "1.1.4",
3
3
  "name": "@or-sdk/contacts",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
@@ -27,5 +27,5 @@
27
27
  "dependencies": {
28
28
  "@or-sdk/base": "^0.26.5"
29
29
  },
30
- "gitHead": "62be75910db5696b35b6546b4164c8bcc10fe421"
30
+ "gitHead": "97a16c44df6b5342f3b44d313f2c3984eca81a77"
31
31
  }