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 @@ -155,7 +155,7 @@ partial void ProcessGetDatasetRowsResponseContent(
PrepareGetDatasetRowsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetId: datasetId,
datasetId: datasetId!,
workspaceId: workspaceId,
page: page,
perPage: perPage,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ partial void ProcessGetEvaluationRowsResponseContent(
PrepareGetEvaluationRowsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
evaluationId: evaluationId,
evaluationId: evaluationId!,
workspaceId: workspaceId,
page: page,
perPage: perPage);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ partial void ProcessListFolderEntitiesApiPublicV2FoldersEntitiesGetResponseConte
PrepareListFolderEntitiesApiPublicV2FoldersEntitiesGetRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workspaceId: workspaceId,
workspaceId: workspaceId!,
folderId: folderId,
filterType: filterType,
searchQuery: searchQuery,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ partial void ProcessResolveFolderIdApiPublicV2FoldersResolveIdGetResponseContent
PrepareResolveFolderIdApiPublicV2FoldersResolveIdGetRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workspaceId: workspaceId,
path: path);
workspaceId: workspaceId!,
path: path!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ partial void ProcessUpdateFolderApiPublicV2FoldersPatchResponseContent(
PrepareUpdateFolderApiPublicV2FoldersPatchRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
folderId: folderId,
folderId: folderId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ partial void ProcessIngestOtlpTracesResponseContent(
PrepareIngestOtlpTracesRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
contentType: contentType,
contentType: contentType!,
contentEncoding: contentEncoding,
request: request);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessDeletePromptTemplatesLabelsPromptLabelIdResponseContent(
PrepareDeletePromptTemplatesLabelsPromptLabelIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
promptLabelId: promptLabelId);
promptLabelId: promptLabelId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ partial void ProcessGetPromptTemplateRawResponseContent(
PrepareGetPromptTemplateRawRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
version: version,
label: label,
resolveSnippets: resolveSnippets,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ partial void ProcessGetPromptTemplatesLabelsPromptIdentifierPostResponseContent(
PrepareGetPromptTemplatesLabelsPromptIdentifierPostRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier);
identifier: identifier!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ partial void ProcessGetPromptTemplatesPromptIdentifierPostResponseContent(
PrepareGetPromptTemplatesPromptIdentifierPostRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ partial void ProcessGetSnippetUsageResponseContent(
PrepareGetSnippetUsageRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
promptVersionNumber: promptVersionNumber);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessPromptTemplatesLabelsPromptLabelIdPatchResponseContent(
PreparePromptTemplatesLabelsPromptLabelIdPatchRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
promptLabelId: promptLabelId,
promptLabelId: promptLabelId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessCreatePromptLabelResponseContent(
PrepareCreatePromptLabelRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
promptId: promptId,
promptId: promptId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ partial void ProcessDeleteReportResponseContent(
PrepareDeleteReportRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportId: reportId);
reportId: reportId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ partial void ProcessDeleteReportColumnResponse(
PrepareDeleteReportColumnRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportColumnId: reportColumnId);
reportColumnId: reportColumnId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessDeleteReportsByNameResponseContent(
PrepareDeleteReportsByNameRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportName: reportName);
reportName: reportName!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessEditReportColumnResponseContent(
PrepareEditReportColumnRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportColumnId: reportColumnId,
reportColumnId: reportColumnId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessGetReportResponseContent(
PrepareGetReportRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportId: reportId);
reportId: reportId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessGetReportScoreResponseContent(
PrepareGetReportScoreRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportId: reportId);
reportId: reportId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ partial void ProcessRenameReportResponseContent(
PrepareRenameReportRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportId: reportId,
reportId: reportId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessRunReportResponseContent(
PrepareRunReportRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
reportId: reportId,
reportId: reportId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ partial void ProcessPatchPromptTemplateVersionResponseContent(
PreparePatchPromptTemplateVersionRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ partial void ProcessGetSkillCollectionPublicResponseContent(
PrepareGetSkillCollectionPublicRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
format: format,
label: label,
version: version);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessSaveSkillCollectionVersionPublicResponseContent(
PrepareSaveSkillCollectionVersionPublicRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessUpdateSkillCollectionPublicResponseContent(
PrepareUpdateSkillCollectionPublicRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ partial void ProcessGetToolRegistryResponseContent(
PrepareGetToolRegistryRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
identifier: identifier,
identifier: identifier!,
label: label,
version: version);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessGetRequestResponseContent(
PrepareGetRequestRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
requestId: requestId);
requestId: requestId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ partial void ProcessGetRequestSearchSuggestionsResponseContent(
PrepareGetRequestSearchSuggestionsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
field: field,
field: field!,
prefix: prefix,
metadataKey: metadataKey,
promptId: promptId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessGetTraceResponseContent(
PrepareGetTraceRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
traceId: traceId);
traceId: traceId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessGetWorkflowResponseContent(
PrepareGetWorkflowRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workflowIdOrName: workflowIdOrName,
workflowIdOrName: workflowIdOrName!,
version: version,
label: label);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ partial void ProcessGetWorkflowLabelsResponseContent(
PrepareGetWorkflowLabelsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workflowIdOrName: workflowIdOrName);
workflowIdOrName: workflowIdOrName!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ partial void ProcessGetWorkflowVersionExecutionResultsResponseContent(
PrepareGetWorkflowVersionExecutionResultsRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workflowVersionExecutionId: workflowVersionExecutionId,
workflowVersionExecutionId: workflowVersionExecutionId!,
returnAllOutputs: returnAllOutputs);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessPatchWorkflowResponseContent(
PreparePatchWorkflowRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workflowIdOrName: workflowIdOrName,
workflowIdOrName: workflowIdOrName!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ partial void ProcessRunWorkflowResponseContent(
PrepareRunWorkflowRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
workflowName: workflowName,
workflowName: workflowName!,
request: request);

return __httpRequest;
Expand Down