@firestartr/cli 1.45.0-snapshot-1 → 1.45.0-snapshot-3

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.
@@ -1 +1,2 @@
1
- export declare function getInstallationID(org?: string): Promise<any>;
1
+ export declare function getInstallationID(): Promise<any>;
2
+ export declare function getOrgOfInstallation(): Promise<string>;
@@ -430,6 +430,10 @@ export declare function getRepoInfo(owner: string, name: string): Promise<{
430
430
  master_branch?: string;
431
431
  starred_at?: string;
432
432
  anonymous_access_enabled?: boolean;
433
+ code_search_index_status?: {
434
+ lexical_search_ok?: boolean;
435
+ lexical_commit_sha?: string;
436
+ };
433
437
  };
434
438
  temp_clone_token?: string;
435
439
  allow_squash_merge?: boolean;
@@ -610,6 +614,10 @@ export declare function getRepoInfo(owner: string, name: string): Promise<{
610
614
  master_branch?: string;
611
615
  starred_at?: string;
612
616
  anonymous_access_enabled?: boolean;
617
+ code_search_index_status?: {
618
+ lexical_search_ok?: boolean;
619
+ lexical_commit_sha?: string;
620
+ };
613
621
  };
614
622
  source?: {
615
623
  id: number;
@@ -743,6 +751,10 @@ export declare function getRepoInfo(owner: string, name: string): Promise<{
743
751
  master_branch?: string;
744
752
  starred_at?: string;
745
753
  anonymous_access_enabled?: boolean;
754
+ code_search_index_status?: {
755
+ lexical_search_ok?: boolean;
756
+ lexical_commit_sha?: string;
757
+ };
746
758
  };
747
759
  forks: number;
748
760
  master_branch?: string;
@@ -759,6 +771,9 @@ export declare function getRepoInfo(owner: string, name: string): Promise<{
759
771
  advanced_security?: {
760
772
  status?: "enabled" | "disabled";
761
773
  };
774
+ code_security?: {
775
+ status?: "enabled" | "disabled";
776
+ };
762
777
  dependabot_security_updates?: {
763
778
  status?: "enabled" | "disabled";
764
779
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.45.0-snapshot-1",
3
+ "version": "1.45.0-snapshot-3",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",