Skip to content

Bumping SDK version for release #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This sdk is used to leverage some of the capabilities exposed via `<monday-code

### Storage API

There are three methods exposed to manage the storage - `set`, `get` and `delete`
There are four methods exposed to manage the storage - `set`, `get`, `search` and `delete`

#### Initialize

Expand Down Expand Up @@ -56,6 +56,12 @@ const { version, success, error } = await storage.set(key, value, { previousVers
const { value, version, success } = await storage.get(key, { shared });
```

#### search

```typescript
const { records, cursor, success } = await storage.get(key, { cursor });
```

#### delete

```typescript
Expand Down
2 changes: 1 addition & 1 deletion lib/minimal-package.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default { name: '@mondaycom/apps-sdk', version: '3.0.11' };
export default { name: '@mondaycom/apps-sdk', version: '3.0.12' };
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mondaycom/apps-sdk",
"version": "3.0.11",
"version": "3.0.12",
"description": "monday apps SDK for NodeJS",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
Loading