@firestartr/cli 1.45.0-snapshot-2 → 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.
- package/build/index.js +9137 -18414
- package/build/packages/github/src/branches.d.ts +4 -4
- package/build/packages/github/src/repository.d.ts +15 -0
- package/package.json +1 -1
@@ -428,7 +428,7 @@ export declare function getBranch(repo: string, branch: string, owner?: string):
|
|
428
428
|
verified_at: string;
|
429
429
|
};
|
430
430
|
};
|
431
|
-
author: {
|
431
|
+
author: Record<string, never> | {
|
432
432
|
name?: string;
|
433
433
|
email?: string;
|
434
434
|
login: string;
|
@@ -451,8 +451,8 @@ export declare function getBranch(repo: string, branch: string, owner?: string):
|
|
451
451
|
site_admin: boolean;
|
452
452
|
starred_at?: string;
|
453
453
|
user_view_type?: string;
|
454
|
-
}
|
455
|
-
committer: {
|
454
|
+
};
|
455
|
+
committer: Record<string, never> | {
|
456
456
|
name?: string;
|
457
457
|
email?: string;
|
458
458
|
login: string;
|
@@ -475,7 +475,7 @@ export declare function getBranch(repo: string, branch: string, owner?: string):
|
|
475
475
|
site_admin: boolean;
|
476
476
|
starred_at?: string;
|
477
477
|
user_view_type?: string;
|
478
|
-
}
|
478
|
+
};
|
479
479
|
parents: {
|
480
480
|
sha: string;
|
481
481
|
url: 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
|
};
|