We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd3d93 commit b12b4b1Copy full SHA for b12b4b1
src/tools/args.ts
@@ -89,3 +89,11 @@ function toEJSON<T extends object | undefined>(value: T): T {
89
export function zEJSON(): z.AnyZodObject {
90
return z.object({}).passthrough().transform(toEJSON) as unknown as z.AnyZodObject;
91
}
92
+export const ProjectAndClusterArgs = {
93
+ projectId: AtlasArgs.projectId(),
94
+ clusterName: AtlasArgs.clusterName().describe("Atlas cluster name"),
95
+};
96
+
97
+export const ProjectArgs = {
98
99
0 commit comments