diff --git a/packages/amplify-appsync-simulator/API.md b/packages/amplify-appsync-simulator/API.md index 7fed15c217a..ff6e33e5ba2 100644 --- a/packages/amplify-appsync-simulator/API.md +++ b/packages/amplify-appsync-simulator/API.md @@ -89,10 +89,10 @@ export class AmplifyAppSyncSimulator { // (undocumented) init(config: AmplifyAppSyncSimulatorConfig): void; // (undocumented) - get localhostUrl(): string; - // (undocumented) get isHttps(): boolean; // (undocumented) + get localhostUrl(): string; + // (undocumented) get pubsub(): PubSub; // (undocumented) reload(config: AmplifyAppSyncSimulatorConfig): void; @@ -270,6 +270,8 @@ export type AppSyncSimulatorSchemaConfig = AppSyncMockFile; export type AppSyncSimulatorServerConfig = { port?: number; wsPort?: number; + sslKeyPath?: string; + sslCertPath?: string; }; // @public (undocumented) diff --git a/packages/amplify-cli-core/API.md b/packages/amplify-cli-core/API.md index 935143587ee..016d7d40a66 100644 --- a/packages/amplify-cli-core/API.md +++ b/packages/amplify-cli-core/API.md @@ -254,7 +254,8 @@ export interface AmplifyInternalOnlyPostEnvRemoveEventData { // @public (undocumented) export class AmplifyNodePkgDetector { // (undocumented) - detectAffectedDirectDependencies: (dependencyToSearch: string) => Array | []; + detectAffectedDirectDependencies: (dependencyToSearch: string) => Array | [ + ]; // (undocumented) static getInstance: (amplifyDetectorProps: AmplifyNodePkgDetectorProps) => Promise; }