Skip to content

Commit

Permalink
build [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
bodrovis committed Dec 5, 2023
1 parent 346ab34 commit 6a6af1b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/collections/base_collection.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export declare abstract class BaseCollection {
protected returnBareJSON(json: Keyable | Array<Keyable>): Keyable | Array<Keyable>;
protected handleReject(data: any): ApiError;
protected createPromise(method: HttpMethod, params: Keyable, resolveFn: ResolveHandler | null, rejectFn: RejectHandler, body: object | object[] | null, uri?: string | null): Promise<any>;
protected prepareRequest(method: HttpMethod, body: object | object[] | null, params: Keyable, uri?: string | null): ApiRequest;
protected prepareRequest(method: HttpMethod, body: object | object[] | null, params: Keyable, uri: string | null): ApiRequest;
protected getUri(uri: string | null): string;
protected objToArray(raw_body: Keyable | Keyable[]): Array<Keyable>;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/collections/base_collection.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/collections/base_collection.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/http_client/base.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/http_client/base.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/oauth2/auth_request.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/oauth2/auth_request.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ota_collections/ota_collection.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { ApiError } from "../models/api_error.js";
import { Keyable } from "../interfaces/keyable.js";
export declare abstract class OtaCollection extends BaseCollection {
protected populateApiErrorFromJson(json: any): ApiError;
protected doDelete(id: string | number, req_params?: Keyable): Promise<any>;
protected doDelete(id: string | number, req_params: Keyable): Promise<any>;
protected returnJSONFromData(json: Keyable): Keyable | Array<Keyable>;
}
Loading

0 comments on commit 6a6af1b

Please sign in to comment.