@builder.io/dev-tools 1.26.3 → 1.26.4

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.
@@ -346,7 +346,7 @@ export declare class CodeGenSession {
346
346
  *
347
347
  * @returns commit hash if committed, false if no changes or staged only
348
348
  */
349
- commitWorkInProgress(defaultCommitMessage: string, changedFiles: string[]): Promise<string | false>;
349
+ commitWorkInProgress(defaultCommitMessage: string, changedFiles: string[]): Promise<string | null>;
350
350
  getChangesReport(): Promise<{
351
351
  diff: string;
352
352
  files: string[];
@@ -1,5 +1,5 @@
1
1
  import * as Amplitude from "@amplitude/analytics-node";
2
2
  import * as Sentry from "@sentry/node";
3
3
  export declare function initTracking(verbose: boolean): Promise<typeof Sentry>;
4
- export declare function track(eventName: string, options: Record<string, any>): Promise<Amplitude.Types.Result>;
4
+ export declare function track(eventName: string, options: Record<string, any>): Promise<void | Amplitude.Types.Result>;
5
5
  export declare function setUserId(id: string): Promise<void>;