Skip to content

Commit

Permalink
bumped package version
Browse files Browse the repository at this point in the history
  • Loading branch information
ganigeorgiev committed Dec 12, 2022
1 parent 05c58c6 commit 4decf9f
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## (WIP) 0.8.4
## 0.8.4

- Added types for the action query parameters ([#102](https://github.com/pocketbase/js-sdk/pull/102); thanks @sewera).
- Added type declarations for the action query parameters ([#102](https://github.com/pocketbase/js-sdk/pull/102); thanks @sewera).
```js
BaseQueryParams
ListQueryParams
Expand Down
4 changes: 2 additions & 2 deletions dist/pocketbase.cjs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ declare class RecordService extends CrudService<Record> {
*/
unsubscribe(topic?: string): Promise<void>;
// ---------------------------------------------------------------
// Post update/delete AuthStore sync
// Crud handers
// ---------------------------------------------------------------
/**
* @inheritdoc
Expand Down Expand Up @@ -557,7 +557,7 @@ declare class RecordService extends CrudService<Record> {
*/
delete(id: string, queryParams?: BaseQueryParams): Promise<boolean>;
// ---------------------------------------------------------------
// Auth collection handlers
// Auth handlers
// ---------------------------------------------------------------
/**
* Prepare successful collection authorization response.
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.cjs.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/pocketbase.es.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ declare class RecordService extends CrudService<Record> {
*/
unsubscribe(topic?: string): Promise<void>;
// ---------------------------------------------------------------
// Post update/delete AuthStore sync
// Crud handers
// ---------------------------------------------------------------
/**
* @inheritdoc
Expand Down Expand Up @@ -557,7 +557,7 @@ declare class RecordService extends CrudService<Record> {
*/
delete(id: string, queryParams?: BaseQueryParams): Promise<boolean>;
// ---------------------------------------------------------------
// Auth collection handlers
// Auth handlers
// ---------------------------------------------------------------
/**
* Prepare successful collection authorization response.
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.es.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pocketbase.es.mjs.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/pocketbase.iife.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ declare class RecordService extends CrudService<Record> {
*/
unsubscribe(topic?: string): Promise<void>;
// ---------------------------------------------------------------
// Post update/delete AuthStore sync
// Crud handers
// ---------------------------------------------------------------
/**
* @inheritdoc
Expand Down Expand Up @@ -557,7 +557,7 @@ declare class RecordService extends CrudService<Record> {
*/
delete(id: string, queryParams?: BaseQueryParams): Promise<boolean>;
// ---------------------------------------------------------------
// Auth collection handlers
// Auth handlers
// ---------------------------------------------------------------
/**
* Prepare successful collection authorization response.
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.iife.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/pocketbase.umd.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ declare class RecordService extends CrudService<Record> {
*/
unsubscribe(topic?: string): Promise<void>;
// ---------------------------------------------------------------
// Post update/delete AuthStore sync
// Crud handers
// ---------------------------------------------------------------
/**
* @inheritdoc
Expand Down Expand Up @@ -557,7 +557,7 @@ declare class RecordService extends CrudService<Record> {
*/
delete(id: string, queryParams?: BaseQueryParams): Promise<boolean>;
// ---------------------------------------------------------------
// Auth collection handlers
// Auth handlers
// ---------------------------------------------------------------
/**
* Prepare successful collection authorization response.
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.8.3",
"version": "0.8.4",
"name": "pocketbase",
"description": "PocketBase JavaScript SDK",
"author": "Gani Georgiev",
Expand Down
4 changes: 2 additions & 2 deletions src/services/RecordService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default class RecordService extends CrudService<Record> {
}

// ---------------------------------------------------------------
// Post update/delete AuthStore sync
// Crud handers
// ---------------------------------------------------------------
/**
* @inheritdoc
Expand Down Expand Up @@ -225,7 +225,7 @@ export default class RecordService extends CrudService<Record> {
}

// ---------------------------------------------------------------
// Auth collection handlers
// Auth handlers
// ---------------------------------------------------------------

/**
Expand Down
4 changes: 2 additions & 2 deletions src/services/utils/QueryParams.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export interface BaseQueryParams {
[key: string]: any;

$autoCancel?: boolean;
$cancelKey?: string;
$autoCancel?: boolean;
$cancelKey?: string;
}

export interface ListQueryParams extends BaseQueryParams {
Expand Down

0 comments on commit 4decf9f

Please sign in to comment.