28 lines
695 B
TypeScript
28 lines
695 B
TypeScript
import { DefaultClient, PBResponse } from "./client";
|
|
|
|
export class Application {
|
|
pk: string;
|
|
name: string;
|
|
slug: string;
|
|
provider: number;
|
|
|
|
launch_url: string;
|
|
meta_launch_url: string;
|
|
meta_icon: string;
|
|
meta_description: string;
|
|
meta_publisher: string;
|
|
policies: string[];
|
|
|
|
constructor() {
|
|
throw Error();
|
|
}
|
|
|
|
static get(slug: string): Promise<Application> {
|
|
return DefaultClient.fetch<Application>(["core", "applications", slug]);
|
|
}
|
|
|
|
static list(filter?: { [key: string]: any }): Promise<PBResponse<Application>> {
|
|
return DefaultClient.fetch<PBResponse<Application>>(["core", "applications"], filter);
|
|
}
|
|
}
|