Skip to content
Snippets Groups Projects
Unverified Commit 45cacb0f authored by CWA Technical User's avatar CWA Technical User Committed by GitHub
Browse files
parent 46aaaf1a
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,8 @@ import "internal/risk_score_parameters.proto"; ...@@ -7,6 +7,8 @@ import "internal/risk_score_parameters.proto";
import "internal/app_version_config.proto"; import "internal/app_version_config.proto";
import "internal/attenuation_duration.proto"; import "internal/attenuation_duration.proto";
import "internal/app_features.proto"; import "internal/app_features.proto";
import "internal/exposure_detection_parameters.proto";
import "internal/key_download_parameters.proto";
message ApplicationConfiguration { message ApplicationConfiguration {
...@@ -23,4 +25,10 @@ message ApplicationConfiguration { ...@@ -23,4 +25,10 @@ message ApplicationConfiguration {
AppFeatures appFeatures = 6; AppFeatures appFeatures = 6;
repeated string supportedCountries = 7; repeated string supportedCountries = 7;
KeyDownloadParametersIOS iosKeyDownloadParameters = 8;
KeyDownloadParametersAndroid androidKeyDownloadParameters = 9;
ExposureDetectionParametersIOS iosExposureDetectionParameters = 10;
ExposureDetectionParametersAndroid androidExposureDetectionParameters= 11;
} }
// This file is auto-generated, DO NOT make any changes here
syntax = "proto3";
package de.rki.coronawarnapp.server.protocols.internal;
message ExposureDetectionParametersIOS {
int32 maxExposureDetectionsPerInterval = 1;
}
message ExposureDetectionParametersAndroid {
int32 maxExposureDetectionsPerInterval = 1;
int32 overallTimeoutInSeconds = 2;
}
\ No newline at end of file
// This file is auto-generated, DO NOT make any changes here
syntax = "proto3";
package de.rki.coronawarnapp.server.protocols.internal;
message KeyDownloadParametersIOS {
repeated DayPackageMetadata cachedDayPackagesToUpdateOnETagMismatch = 1;
repeated HourPackageMetadata cachedHourPackagesToUpdateOnETagMismatch = 2;
}
message KeyDownloadParametersAndroid {
repeated DayPackageMetadata cachedDayPackagesToUpdateOnETagMismatch = 1;
repeated HourPackageMetadata cachedHourPackagesToUpdateOnETagMismatch = 2;
int32 downloadTimeoutInSeconds = 3;
int32 overallTimeoutInSeconds = 4;
}
message DayPackageMetadata {
string region = 1;
string date = 2;
string etag = 3;
}
message HourPackageMetadata {
string region = 1;
string date = 2;
int32 hour = 3;
string etag = 4;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment