@fern-api/ruby-dynamic-snippets 1.19.0 → 1.20.1

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/dist/index.d.cts CHANGED
@@ -135,9 +135,7 @@ declare class DynamicSnippetsGenerator extends AbstractDynamicSnippetsGenerator<
135
135
  });
136
136
  generate(request: FernIr.dynamic.EndpointSnippetRequest, options?: Options): Promise<FernIr.dynamic.EndpointSnippetResponse>;
137
137
  generateSync(request: FernIr.dynamic.EndpointSnippetRequest): FernIr.dynamic.EndpointSnippetResponse;
138
- generateSnippetAst(request: FernIr.dynamic.EndpointSnippetRequest, options?: {
139
- skipClientInstantiation?: boolean;
140
- }): Promise<AbstractAstNode>;
138
+ generateSnippetAst(request: FernIr.dynamic.EndpointSnippetRequest, options?: Pick<Options, "skipClientInstantiation" | "endpointId">): Promise<AbstractAstNode>;
141
139
  protected createSnippetGenerator(context: DynamicSnippetsGeneratorContext): EndpointSnippetGenerator;
142
140
  }
143
141
 
package/dist/index.d.ts CHANGED
@@ -135,9 +135,7 @@ declare class DynamicSnippetsGenerator extends AbstractDynamicSnippetsGenerator<
135
135
  });
136
136
  generate(request: FernIr.dynamic.EndpointSnippetRequest, options?: Options): Promise<FernIr.dynamic.EndpointSnippetResponse>;
137
137
  generateSync(request: FernIr.dynamic.EndpointSnippetRequest): FernIr.dynamic.EndpointSnippetResponse;
138
- generateSnippetAst(request: FernIr.dynamic.EndpointSnippetRequest, options?: {
139
- skipClientInstantiation?: boolean;
140
- }): Promise<AbstractAstNode>;
138
+ generateSnippetAst(request: FernIr.dynamic.EndpointSnippetRequest, options?: Pick<Options, "skipClientInstantiation" | "endpointId">): Promise<AbstractAstNode>;
141
139
  protected createSnippetGenerator(context: DynamicSnippetsGeneratorContext): EndpointSnippetGenerator;
142
140
  }
143
141