twenty-sdk 0.1.1 → 0.1.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,9 +1,10 @@
1
1
  export declare class AppDevCommand {
2
- private syncCommand;
2
+ private apiService;
3
3
  execute(options: {
4
4
  appPath?: string;
5
5
  debounce: string;
6
6
  }): Promise<void>;
7
+ private synchronize;
7
8
  private logStartupInfo;
8
9
  private setupFileWatcher;
9
10
  private setupGracefulShutdown;
@@ -0,0 +1,9 @@
1
+ export declare class AppLogsCommand {
2
+ private apiService;
3
+ execute({ appPath, functionUniversalIdentifier, functionName, }: {
4
+ appPath?: string;
5
+ functionUniversalIdentifier?: string;
6
+ functionName?: string;
7
+ }): Promise<void>;
8
+ private logWatchInfo;
9
+ }
@@ -5,5 +5,6 @@ export declare class AppCommand {
5
5
  private uninstallCommand;
6
6
  private addCommand;
7
7
  private generateCommand;
8
+ private logsCommand;
8
9
  getCommand(): Command;
9
10
  }
@@ -11,4 +11,9 @@ export declare class ApiService {
11
11
  }): Promise<ApiResponse>;
12
12
  uninstallApplication(universalIdentifier: string): Promise<ApiResponse>;
13
13
  getSchema(): Promise<ApiResponse<string>>;
14
+ subscribeToLogs({ applicationUniversalIdentifier, functionUniversalIdentifier, functionName, }: {
15
+ applicationUniversalIdentifier: string;
16
+ functionUniversalIdentifier?: string;
17
+ functionName?: string;
18
+ }): Promise<void>;
14
19
  }