Skip to content

Commit

Permalink
Bumping SDK version for release (#68)
Browse files Browse the repository at this point in the history
* feat(storage): [beta] added empty commit in order to push beta version

* feat(storage): [beta] updated version from 3.0.11 to 3.0.12

* feat(storage): [beta] updated version from 3.0.11 to 3.0.12-beta

* feat(storage): updated version from 3.0.12-beta to 3.0.12-beta

* feat(storage): fixed typo in readme
  • Loading branch information
royWeisselberg authored Dec 15, 2024
1 parent 6614cd9 commit 02edcfd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
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

0 comments on commit 02edcfd

Please sign in to comment.