Skip to content

Commit

Permalink
updated dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
ganigeorgiev committed Dec 16, 2022
1 parent c3c3923 commit fb26dfc
Show file tree
Hide file tree
Showing 14 changed files with 66 additions and 10 deletions.
14 changes: 14 additions & 0 deletions dist/pocketbase.cjs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,16 @@ declare class LogService extends BaseService {
*/
getRequestsStats(queryParams?: LogStatsQueryParams): Promise<Array<HourlyStats>>;
}
interface healthCheckResponse {
code: number;
message: string;
}
declare class HealthService extends BaseService {
/**
* Checks the health status of the api.
*/
check(queryParams?: BaseQueryParams): Promise<healthCheckResponse>;
}
/**
* PocketBase JS Client.
*/
Expand Down Expand Up @@ -818,6 +828,10 @@ declare class Client {
* An instance of the service that handles the **Realtime APIs**.
*/
readonly realtime: RealtimeService;
/**
* An instance of the service that handles the **Health APIs**.
*/
readonly health: HealthService;
private cancelControllers;
private recordServices;
private enableAutoCancellation;
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.cjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pocketbase.cjs.js.map

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions dist/pocketbase.es.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,16 @@ declare class LogService extends BaseService {
*/
getRequestsStats(queryParams?: LogStatsQueryParams): Promise<Array<HourlyStats>>;
}
interface healthCheckResponse {
code: number;
message: string;
}
declare class HealthService extends BaseService {
/**
* Checks the health status of the api.
*/
check(queryParams?: BaseQueryParams): Promise<healthCheckResponse>;
}
/**
* PocketBase JS Client.
*/
Expand Down Expand Up @@ -818,6 +828,10 @@ declare class Client {
* An instance of the service that handles the **Realtime APIs**.
*/
readonly realtime: RealtimeService;
/**
* An instance of the service that handles the **Health APIs**.
*/
readonly health: HealthService;
private cancelControllers;
private recordServices;
private enableAutoCancellation;
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.es.js

Large diffs are not rendered by default.

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

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.

14 changes: 14 additions & 0 deletions dist/pocketbase.iife.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,16 @@ declare class LogService extends BaseService {
*/
getRequestsStats(queryParams?: LogStatsQueryParams): Promise<Array<HourlyStats>>;
}
interface healthCheckResponse {
code: number;
message: string;
}
declare class HealthService extends BaseService {
/**
* Checks the health status of the api.
*/
check(queryParams?: BaseQueryParams): Promise<healthCheckResponse>;
}
/**
* PocketBase JS Client.
*/
Expand Down Expand Up @@ -818,6 +828,10 @@ declare class Client {
* An instance of the service that handles the **Realtime APIs**.
*/
readonly realtime: RealtimeService;
/**
* An instance of the service that handles the **Health APIs**.
*/
readonly health: HealthService;
private cancelControllers;
private recordServices;
private enableAutoCancellation;
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.iife.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pocketbase.iife.js.map

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions dist/pocketbase.umd.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,16 @@ declare class LogService extends BaseService {
*/
getRequestsStats(queryParams?: LogStatsQueryParams): Promise<Array<HourlyStats>>;
}
interface healthCheckResponse {
code: number;
message: string;
}
declare class HealthService extends BaseService {
/**
* Checks the health status of the api.
*/
check(queryParams?: BaseQueryParams): Promise<healthCheckResponse>;
}
/**
* PocketBase JS Client.
*/
Expand Down Expand Up @@ -818,6 +828,10 @@ declare class Client {
* An instance of the service that handles the **Realtime APIs**.
*/
readonly realtime: RealtimeService;
/**
* An instance of the service that handles the **Health APIs**.
*/
readonly health: HealthService;
private cancelControllers;
private recordServices;
private enableAutoCancellation;
Expand Down
2 changes: 1 addition & 1 deletion dist/pocketbase.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pocketbase.umd.js.map

Large diffs are not rendered by default.

0 comments on commit fb26dfc

Please sign in to comment.