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 @@ -136,7 +136,7 @@ partial void ProcessDeleteAclIdResponseContent(
PrepareDeleteAclIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aclId: aclId);
aclId: aclId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ partial void ProcessGetAclResponseContent(
startingAfter: startingAfter,
endingBefore: endingBefore,
ids: ids,
objectType: objectType,
objectId: objectId,
objectType: objectType!,
objectId: objectId!,
userId: userId,
groupId: groupId,
permission: permission,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessGetAclIdResponseContent(
PrepareGetAclIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aclId: aclId);
aclId: aclId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessDeleteAiSecretIdResponseContent(
PrepareDeleteAiSecretIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aiSecretId: aiSecretId);
aiSecretId: aiSecretId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessGetAiSecretIdResponseContent(
PrepareGetAiSecretIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aiSecretId: aiSecretId);
aiSecretId: aiSecretId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ partial void ProcessPatchAiSecretIdResponseContent(
PreparePatchAiSecretIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aiSecretId: aiSecretId,
aiSecretId: aiSecretId!,
request: request);

return __httpRequest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessDeleteApiKeyIdResponseContent(
PrepareDeleteApiKeyIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
apiKeyId: apiKeyId);
apiKeyId: apiKeyId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessGetApiKeyIdResponseContent(
PrepareGetApiKeyIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
apiKeyId: apiKeyId);
apiKeyId: apiKeyId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsAclIdResponse(
PrepareOptionsAclIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aclId: aclId);
aclId: aclId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsAiSecretIdResponse(
PrepareOptionsAiSecretIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
aiSecretId: aiSecretId);
aiSecretId: aiSecretId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsApiKeyIdResponse(
PrepareOptionsApiKeyIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
apiKeyId: apiKeyId);
apiKeyId: apiKeyId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsDatasetIdResponse(
PrepareOptionsDatasetIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetId: datasetId);
datasetId: datasetId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsDatasetIdFeedbackResponse(
PrepareOptionsDatasetIdFeedbackRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetId: datasetId);
datasetId: datasetId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsDatasetIdFetchResponse(
PrepareOptionsDatasetIdFetchRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetId: datasetId);
datasetId: datasetId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsDatasetIdInsertResponse(
PrepareOptionsDatasetIdInsertRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetId: datasetId);
datasetId: datasetId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsDatasetIdSummarizeResponse(
PrepareOptionsDatasetIdSummarizeRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetId: datasetId);
datasetId: datasetId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsDatasetSnapshotIdResponse(
PrepareOptionsDatasetSnapshotIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetSnapshotId: datasetSnapshotId);
datasetSnapshotId: datasetSnapshotId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsEnvVarIdResponse(
PrepareOptionsEnvVarIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
envVarId: envVarId);
envVarId: envVarId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsExperimentIdResponse(
PrepareOptionsExperimentIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
experimentId: experimentId);
experimentId: experimentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsExperimentIdFeedbackResponse(
PrepareOptionsExperimentIdFeedbackRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
experimentId: experimentId);
experimentId: experimentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsExperimentIdFetchResponse(
PrepareOptionsExperimentIdFetchRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
experimentId: experimentId);
experimentId: experimentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsExperimentIdInsertResponse(
PrepareOptionsExperimentIdInsertRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
experimentId: experimentId);
experimentId: experimentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsExperimentIdSummarizeResponse(
PrepareOptionsExperimentIdSummarizeRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
experimentId: experimentId);
experimentId: experimentId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsFunctionIdResponse(
PrepareOptionsFunctionIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
functionId: functionId);
functionId: functionId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsFunctionIdInvokeResponse(
PrepareOptionsFunctionIdInvokeRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
functionId: functionId);
functionId: functionId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsGroupIdResponse(
PrepareOptionsGroupIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
groupId: groupId);
groupId: groupId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsMcpServerIdResponse(
PrepareOptionsMcpServerIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
mcpServerId: mcpServerId);
mcpServerId: mcpServerId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsOrganizationIdResponse(
PrepareOptionsOrganizationIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
organizationId: organizationId);
organizationId: organizationId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectAutomationIdResponse(
PrepareOptionsProjectAutomationIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectAutomationId: projectAutomationId);
projectAutomationId: projectAutomationId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectIdResponse(
PrepareOptionsProjectIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectId: projectId);
projectId: projectId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectLogsIdFeedbackResponse(
PrepareOptionsProjectLogsIdFeedbackRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectId: projectId);
projectId: projectId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectLogsIdFetchResponse(
PrepareOptionsProjectLogsIdFetchRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectId: projectId);
projectId: projectId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectLogsIdInsertResponse(
PrepareOptionsProjectLogsIdInsertRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectId: projectId);
projectId: projectId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectScoreIdResponse(
PrepareOptionsProjectScoreIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectScoreId: projectScoreId);
projectScoreId: projectScoreId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsProjectTagIdResponse(
PrepareOptionsProjectTagIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
projectTagId: projectTagId);
projectTagId: projectTagId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsPromptIdResponse(
PrepareOptionsPromptIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
promptId: promptId);
promptId: promptId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsRoleIdResponse(
PrepareOptionsRoleIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
roleId: roleId);
roleId: roleId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsServiceTokenIdResponse(
PrepareOptionsServiceTokenIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
serviceTokenId: serviceTokenId);
serviceTokenId: serviceTokenId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsSpanIframeIdResponse(
PrepareOptionsSpanIframeIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
spanIframeId: spanIframeId);
spanIframeId: spanIframeId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsUserIdResponse(
PrepareOptionsUserIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
userId: userId);
userId: userId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partial void ProcessOptionsViewIdResponse(
PrepareOptionsViewIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
viewId: viewId);
viewId: viewId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessDeleteDatasetSnapshotIdResponseContent(
PrepareDeleteDatasetSnapshotIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetSnapshotId: datasetSnapshotId);
datasetSnapshotId: datasetSnapshotId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ partial void ProcessGetDatasetSnapshotIdResponseContent(
PrepareGetDatasetSnapshotIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetSnapshotId: datasetSnapshotId);
datasetSnapshotId: datasetSnapshotId!);

return __httpRequest;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ partial void ProcessPatchDatasetSnapshotIdResponseContent(
PreparePatchDatasetSnapshotIdRequest(
httpClient: HttpClient,
httpRequestMessage: __httpRequest,
datasetSnapshotId: datasetSnapshotId,
datasetSnapshotId: datasetSnapshotId!,
request: request);

return __httpRequest;
Expand Down
Loading