@fern-api/csharp-dynamic-snippets 2.81.1 → 2.82.0
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.cjs +14 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +14 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -201,6 +201,11 @@ declare class EndpointSnippetGenerator extends WithGeneration {
|
|
|
201
201
|
private getReferencedRequestBodyPropertyConstructorField;
|
|
202
202
|
private getReferencedRequestBodyPropertyLiteral;
|
|
203
203
|
private getMethodArgsForBodyRequest;
|
|
204
|
+
/**
|
|
205
|
+
* Whether the call leaves the body out entirely, which the parameter's null default allows.
|
|
206
|
+
* Applies only to a body the caller may omit, and only once the generator opts in to that.
|
|
207
|
+
*/
|
|
208
|
+
private callOmitsRequestBody;
|
|
204
209
|
private getPathParameterArguments;
|
|
205
210
|
private namedArgument;
|
|
206
211
|
private getBodyRequestArg;
|
package/dist/index.d.ts
CHANGED
|
@@ -201,6 +201,11 @@ declare class EndpointSnippetGenerator extends WithGeneration {
|
|
|
201
201
|
private getReferencedRequestBodyPropertyConstructorField;
|
|
202
202
|
private getReferencedRequestBodyPropertyLiteral;
|
|
203
203
|
private getMethodArgsForBodyRequest;
|
|
204
|
+
/**
|
|
205
|
+
* Whether the call leaves the body out entirely, which the parameter's null default allows.
|
|
206
|
+
* Applies only to a body the caller may omit, and only once the generator opts in to that.
|
|
207
|
+
*/
|
|
208
|
+
private callOmitsRequestBody;
|
|
204
209
|
private getPathParameterArguments;
|
|
205
210
|
private namedArgument;
|
|
206
211
|
private getBodyRequestArg;
|