@tomsd/github-repo-js 0.2.5 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export declare class GitHubFacade {
3
3
  protected token: string;
4
4
  protected githubClasses: ReturnType<typeof readyGitHubClasses>;
5
5
  constructor(token: string);
6
+ get graphql(): import("./generated/github").Client;
6
7
  getMe(): Promise<{
7
8
  login: string;
8
9
  id: number;
@@ -16310,4 +16311,5 @@ export declare class GitHubFacade {
16310
16311
  }>;
16311
16312
  delete(): Promise<void>;
16312
16313
  };
16314
+ queryGraphQL<T>(query: string, variables?: Record<string, any>): Promise<T>;
16313
16315
  }