Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessGatewayDeleteFileResponseContent(
PrepareGatewayDeleteFileRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
fileId: fileId);
fileId: fileId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ partial void ProcessGatewayDownloadFileResponseContent(
PrepareGatewayDownloadFileRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
fileId: fileId);
fileId: fileId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessGatewayGetFileResponseContent(
PrepareGatewayGetFileRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
fileId: fileId);
fileId: fileId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ partial void ProcessGatewayUploadFileResponseContent(
PrepareGatewayUploadFileRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
contentDisposition: contentDisposition,
contentType: contentType,
contentLength: contentLength,
contentDisposition: contentDisposition!,
contentType: contentType!,
contentLength: contentLength!,
graphId: graphId,
request: request);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ partial void ProcessGenerateContentResponseContent(
PrepareGenerateContentRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId,
applicationId: applicationId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessGenerateContentAsStreamResponse(
PrepareGenerateContentAsStreamRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId,
applicationId: applicationId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessGetApplicationsByApplicationIdResponseContent(
PrepareGetApplicationsByApplicationIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId);
applicationId: applicationId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessAddFileToGraphResponseContent(
PrepareAddFileToGraphRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
graphId: graphId,
graphId: graphId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessDeleteGraphResponseContent(
PrepareDeleteGraphRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
graphId: graphId);
graphId: graphId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessFindGraphWithFileStatusResponseContent(
PrepareFindGraphWithFileStatusRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
graphId: graphId);
graphId: graphId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ partial void ProcessRemoveFileFromGraphResponseContent(
PrepareRemoveFileFromGraphRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
graphId: graphId,
fileId: fileId);
graphId: graphId!,
fileId: fileId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessUpdateGraphResponseContent(
PrepareUpdateGraphRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
graphId: graphId,
graphId: graphId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessCreateApplicationsByApplicationIdJobsResponseContent(
PrepareCreateApplicationsByApplicationIdJobsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId,
applicationId: applicationId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessCreateApplicationsJobsByJobIdRetryResponseContent(
PrepareCreateApplicationsJobsByJobIdRetryRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
jobId: jobId);
jobId: jobId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessGetApplicationsByApplicationIdGraphsResponseContent(
PrepareGetApplicationsByApplicationIdGraphsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId);
applicationId: applicationId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ partial void ProcessGetApplicationsByApplicationIdJobsResponseContent(
PrepareGetApplicationsByApplicationIdJobsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId,
applicationId: applicationId!,
status: status,
offset: offset,
limit: limit);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ partial void ProcessGetApplicationsJobsByJobIdResponseContent(
PrepareGetApplicationsJobsByJobIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
jobId: jobId);
jobId: jobId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessPutApplicationsByApplicationIdGraphsResponseContent(
PreparePutApplicationsByApplicationIdGraphsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
applicationId: applicationId,
applicationId: applicationId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessCreateToolsPdfParserByFileIdResponseContent(
PrepareCreateToolsPdfParserByFileIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
fileId: fileId,
fileId: fileId!,
request: request);

return __httpRequest;
Expand Down
Loading