@padua/cli 2.0.2 → 2.0.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.
|
@@ -21,7 +21,7 @@ const PROVIDERS_CONFIG_LOCAL_DIR = '.padua';
|
|
|
21
21
|
const PROVIDERS_CONFIG_LOCAL_FILE = 'mcp-providers.json';
|
|
22
22
|
const S3_TIMEOUT_MS = 30_000;
|
|
23
23
|
const GITLAB_CALLBACK_PORT = 18080;
|
|
24
|
-
const ATLASSIAN_CALLBACK_PORT =
|
|
24
|
+
const ATLASSIAN_CALLBACK_PORT = 18080;
|
|
25
25
|
const DEFAULT_MCP_PORT = 8919;
|
|
26
26
|
/**
|
|
27
27
|
* Download the MCP providers config from S3 to ~/.padua/mcp-providers.json.
|
|
@@ -104,7 +104,7 @@ export interface AtlassianProviderConfig {
|
|
|
104
104
|
clientSecret: string;
|
|
105
105
|
/** OAuth2 scopes to request. At least one scope must be specified. */
|
|
106
106
|
scopes: string[];
|
|
107
|
-
/** Local port for the OAuth2 callback server. Default:
|
|
107
|
+
/** Local port for the OAuth2 callback server. Default: 18080. */
|
|
108
108
|
redirectPort?: number;
|
|
109
109
|
}
|
|
110
110
|
export declare const AtlassianProviderConfigSchema: z.ZodObject<{
|