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 0a5f5c7 commit 5fd1df2Copy full SHA for 5fd1df2
generators/ruby/model/src/CustomConfig.ts
@@ -3,7 +3,7 @@ import { z } from "zod";
3
4
export type RubyModelCustomConfig = z.infer<typeof RubyModelCustomConfigSchema>;
5
export const RubyModelCustomConfigSchema = BaseGeneratorConfigSchema.extend({});
6
-
+// Test - force change in ruby-model to see if caching is working in CI
7
// TODO: this will likely be shared between models and SDK
8
export function parseCustomConfig(customConfig: unknown): RubyModelCustomConfig {
9
const parsed = customConfig != null ? RubyModelCustomConfigSchema.parse(customConfig) : undefined;
0 commit comments