Skip to content

Commit 747938f

Browse files
committed
[RELEASE] 0.1.0
1 parent 9441dad commit 747938f

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## Unreleased
44

5+
## 0.1.0 (2018-07-11)
6+
7+
### Added
8+
9+
- `isAuthenticated` search parameter to Forms `search()` function
10+
- `name` search parameter to Forms `search()` function
11+
12+
### Removed
13+
14+
- `organisationId` search parameter from Forms `search()` function
15+
16+
### Dependencies
17+
18+
- update [aws-sdk](https://www.npmjs.com/package/aws-sdk) to [2.272.1](https://github.com/aws/aws-sdk-js/releases/tag/v2.272.1) (from [2.251.1](https://github.com/aws/aws-sdk-js/releases/tag/v2.251.1))
19+
20+
- update [jsonwebtoken](https://www.npmjs.com/package/jsonwebtoken) to [8.3.0](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md) (from [8.2.2](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md))
21+
522
## 0.0.1 (2018-06-13)
623

724
### Initial Release

docs/forms.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ forms.getSubmissionData(formId, submissionId)
9999

100100
```javascript
101101
const options = {
102-
isPublished: true
102+
isPublished: true,
103+
isAuthenticated: true,
104+
name: 'Form Name'
103105
}
104106
forms.search(options)
105107
.then((result) => {
@@ -115,7 +117,9 @@ forms.search(options)
115117
| Parameter | Required | Type | Description
116118
|---|---|---|---|
117119
| `options` | No | `Object` | Search options. |
120+
| `options.isAuthenticated` | No | `boolean` | Return authenticated forms or unauthenticated forms. If not supplied, all forms will be returned. |
118121
| `options.isPublished` | No | `boolean` | Return published forms or unpublished forms. If not supplied, all forms will be returned. |
122+
| `options.name` | No | `string` | Search on the name property of a form. Can be a prefix, suffix or partial match. |
119123

120124
### Result (Resolved Promise)
121125

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@oneblink/sdk",
33
"description": "OneBlink SDK to serve as an entry point for all OneBlink Services in NodeJS",
4-
"version": "0.0.1",
4+
"version": "0.1.0",
55
"bugs": {
66
"url": "https://github.com/blinkmobile/oneblink-sdk-js/issues"
77
},

0 commit comments

Comments
 (0)