Skip to content

Commit

Permalink
bumped package version
Browse files Browse the repository at this point in the history
  • Loading branch information
ganigeorgiev committed Aug 29, 2023
1 parent 87cc42c commit bc0bcb1
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.17.3-WIP
## 0.17.3

- Loosen the type check when calling `pb.files.getUrl(user, filename)` to allow passing the `pb.authStore.model` without type assertion.

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 @@ -1021,9 +1021,9 @@ declare class Client {
/**
* Legacy alias of `pb.files.getUrl()`.
*/
getFileUrl(record: Pick<{
getFileUrl(record: {
[key: string]: any;
}, 'id' | 'collectionId' | 'collectionName'>, filename: string, queryParams?: FileOptions): string;
}, filename: string, queryParams?: FileOptions): string;
/**
* Builds a full client url by safely concatenating the provided path.
*/
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 @@ -1024,9 +1024,9 @@ declare class Client {
/**
* Legacy alias of `pb.files.getUrl()`.
*/
getFileUrl(record: Pick<{
getFileUrl(record: {
[key: string]: any;
}, "id" | "collectionId" | "collectionName">, filename: string, queryParams?: FileOptions): string;
}, filename: string, queryParams?: FileOptions): string;
/**
* Builds a full client url by safely concatenating the provided path.
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/pocketbase.es.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1024,9 +1024,9 @@ declare class Client {
/**
* Legacy alias of `pb.files.getUrl()`.
*/
getFileUrl(record: Pick<{
getFileUrl(record: {
[key: string]: any;
}, "id" | "collectionId" | "collectionName">, filename: string, queryParams?: FileOptions): string;
}, filename: string, queryParams?: FileOptions): string;
/**
* Builds a full client url by safely concatenating the provided path.
*/
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 @@ -1021,9 +1021,9 @@ declare class Client {
/**
* Legacy alias of `pb.files.getUrl()`.
*/
getFileUrl(record: Pick<{
getFileUrl(record: {
[key: string]: any;
}, 'id' | 'collectionId' | 'collectionName'>, filename: string, queryParams?: FileOptions): string;
}, filename: string, queryParams?: FileOptions): string;
/**
* Builds a full client url by safely concatenating the provided path.
*/
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 @@ -1021,9 +1021,9 @@ declare class Client {
/**
* Legacy alias of `pb.files.getUrl()`.
*/
getFileUrl(record: Pick<{
getFileUrl(record: {
[key: string]: any;
}, 'id' | 'collectionId' | 'collectionName'>, filename: string, queryParams?: FileOptions): string;
}, filename: string, queryParams?: FileOptions): string;
/**
* Builds a full client url by safely concatenating the provided path.
*/
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.17.2",
"version": "0.17.3",
"name": "pocketbase",
"description": "PocketBase JavaScript SDK",
"author": "Gani Georgiev",
Expand Down

0 comments on commit bc0bcb1

Please sign in to comment.