fixup! fixup! fixup! fixup! fixup! fixup! adding more tests for ListOrganization()

This commit is contained in:
Iraq Jaber
2025-05-06 18:23:29 +02:00
parent 1a05c41614
commit f0ebb3aa59

View File

@@ -469,7 +469,12 @@ message UpdateOrganizationRequest {
} }
message UpdateOrganizationResponse { message UpdateOrganizationResponse {
zitadel.object.v2beta.Details details = 1; // The timestamp of the update to the organization.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message ListOrganizationsRequest { message ListOrganizationsRequest {
@@ -512,7 +517,12 @@ message DeleteOrganizationRequest {
} }
message DeleteOrganizationResponse { message DeleteOrganizationResponse {
zitadel.object.v2beta.Details details = 1; // The timestamp of the deletion of the organization.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message DeactivateOrganizationRequest { message DeactivateOrganizationRequest {
@@ -527,7 +537,12 @@ message DeactivateOrganizationRequest {
} }
message DeactivateOrganizationResponse { message DeactivateOrganizationResponse {
zitadel.object.v2beta.Details details = 1; // The timestamp of the deactivation of the organization.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message ReactivateOrganizationRequest { message ReactivateOrganizationRequest {
@@ -542,7 +557,12 @@ message ReactivateOrganizationRequest {
} }
message ReactivateOrganizationResponse { message ReactivateOrganizationResponse {
zitadel.object.v2beta.Details details = 1; // The timestamp of the reactivation of the organization.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message AddOrganizationDomainRequest { message AddOrganizationDomainRequest {
@@ -617,6 +637,12 @@ message DeleteOrganizationDomainRequest {
message DeleteOrganizationDomainResponse { message DeleteOrganizationDomainResponse {
zitadel.object.v2beta.Details details = 1; zitadel.object.v2beta.Details details = 1;
// The timestamp of the deletion of the organization domain.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message GenerateOrganizationDomainValidationRequest { message GenerateOrganizationDomainValidationRequest {
@@ -677,7 +703,12 @@ message VerifyOrganizationDomainRequest {
} }
message VerifyOrganizationDomainResponse { message VerifyOrganizationDomainResponse {
zitadel.object.v2beta.Details details = 1; // The timestamp of the verification of the organization domain.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message Metadata { message Metadata {
@@ -696,7 +727,12 @@ message SetOrganizationMetadataRequest{
} }
message SetOrganizationMetadataResponse{ message SetOrganizationMetadataResponse{
zitadel.object.v2beta.Details details = 1; // The timestamp of the update of the organization metadata.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }
message ListOrganizationMetadataRequest { message ListOrganizationMetadataRequest {
@@ -720,5 +756,10 @@ message DeleteOrganizationMetadataRequest {
} }
message DeleteOrganizationMetadataResponse{ message DeleteOrganizationMetadataResponse{
zitadel.object.v2beta.Details details = 1; // The timestamp of the deletiion of the organization metadata.
google.protobuf.Timestamp change_date = 1 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
example: "\"2025-01-23T10:34:18.051Z\"";
}
];
} }