@firestartr/cli 1.44.0-snapshot-1 → 1.44.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.
@@ -14,6 +14,10 @@ declare const _default: {
14
14
  } | {
15
15
  type: string;
16
16
  properties: {
17
+ system: {
18
+ type: string;
19
+ pattern: string;
20
+ };
17
21
  providers: {
18
22
  type: string;
19
23
  properties: {
@@ -146,6 +146,10 @@ declare const schemas: {
146
146
  } | {
147
147
  type: string;
148
148
  properties: {
149
+ system: {
150
+ type: string;
151
+ pattern: string;
152
+ };
149
153
  providers: {
150
154
  type: string;
151
155
  properties: {
@@ -172,6 +176,7 @@ declare const schemas: {
172
176
  $ref: string;
173
177
  type?: undefined;
174
178
  properties?: undefined;
179
+ domain?: undefined;
175
180
  required?: undefined;
176
181
  additionalProperties?: undefined;
177
182
  } | {
@@ -181,6 +186,10 @@ declare const schemas: {
181
186
  type: string;
182
187
  };
183
188
  };
189
+ domain: {
190
+ type: string;
191
+ pattern: string;
192
+ };
184
193
  required: string[];
185
194
  additionalProperties: boolean;
186
195
  $ref?: undefined;
@@ -236,6 +245,10 @@ declare const schemas: {
236
245
  resourceType: {
237
246
  type: string;
238
247
  };
248
+ system: {
249
+ type: string;
250
+ pattern: string;
251
+ };
239
252
  providers: {
240
253
  type: string;
241
254
  properties: {
@@ -10,6 +10,7 @@ declare const _default: {
10
10
  $ref: string;
11
11
  type?: undefined;
12
12
  properties?: undefined;
13
+ domain?: undefined;
13
14
  required?: undefined;
14
15
  additionalProperties?: undefined;
15
16
  } | {
@@ -19,6 +20,10 @@ declare const _default: {
19
20
  type: string;
20
21
  };
21
22
  };
23
+ domain: {
24
+ type: string;
25
+ pattern: string;
26
+ };
22
27
  required: string[];
23
28
  additionalProperties: boolean;
24
29
  $ref?: undefined;
@@ -17,6 +17,10 @@ declare const _default: {
17
17
  resourceType: {
18
18
  type: string;
19
19
  };
20
+ system: {
21
+ type: string;
22
+ pattern: string;
23
+ };
20
24
  providers: {
21
25
  type: string;
22
26
  properties: {
@@ -0,0 +1,2 @@
1
+ export declare function getInstallationID(org?: string): Promise<any>;
2
+ export declare function checkIfInstalledForOrg(org?: string): Promise<boolean>;
@@ -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
- } | Record<string, never>;
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
- } | Record<string, never>;
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.44.0-snapshot-1",
3
+ "version": "1.44.0",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",