opencode-crs-bedrock 1.0.3 → 1.0.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.
- package/index.ts +1 -7
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -1064,16 +1064,10 @@ export const CRSAuthPlugin: Plugin = async ({ client }: PluginContext) => {
|
|
|
1064
1064
|
{
|
|
1065
1065
|
label: "Enter CRS API Key",
|
|
1066
1066
|
type: "api",
|
|
1067
|
-
prompts: [
|
|
1068
|
-
{
|
|
1069
|
-
type: "text",
|
|
1070
|
-
message: "Enter your CRS API Key",
|
|
1071
|
-
key: "apiKey",
|
|
1072
|
-
},
|
|
1073
|
-
],
|
|
1074
1067
|
},
|
|
1075
1068
|
],
|
|
1076
1069
|
},
|
|
1077
1070
|
};
|
|
1078
1071
|
};
|
|
1079
1072
|
|
|
1073
|
+
export default CRSAuthPlugin;
|