Skip to content

Commit

Permalink
Further fixing FQPN
Browse files Browse the repository at this point in the history
  • Loading branch information
Noctunus committed Sep 24, 2024
1 parent b8c2f9c commit 484177d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions proto/cmp/services/info/v2/entry_requirements.proto
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ message CountryEntryRequirementsResponse {
cmp.types.v1.UUID response_id = 2;

// Categories
repeated CountryEntryRequirementCategory categories = 3;
repeated cmp.services.info.v2.CountryEntryRequirementCategory categories = 3;

// Items
repeated CountryEntryRequirementItem items = 4;
repeated cmp.services.info.v2.CountryEntryRequirementItem items = 4;
}

// Types
Expand All @@ -80,18 +80,18 @@ message CountryEntryRequirementCategory {
repeated cmp.types.v1.LocalizedString names = 2;

// Items
repeated CountryEntryRequirementItem items = 3;
repeated cmp.services.info.v2.CountryEntryRequirementItem items = 3;

// Sub categories
repeated CountryEntryRequirementCategory sub_categories = 4;
repeated cmp.services.info.v2.CountryEntryRequirementCategory sub_categories = 4;
}

message CountryEntryRequirementItem {
// Item type key.
string key = 1;

// Language specific names and descriptions
repeated LocalizedItemInfo info = 2;
repeated cmp.services.info.v2.LocalizedItemInfo info = 2;

// Status of the item. An item specifies an action or requirement which should be
// done/provided or rather not. This is expressed with "true" and "false".
Expand All @@ -101,7 +101,7 @@ message CountryEntryRequirementItem {
// Visa required for stay, status=false
// Entry forms required, status=false
// Additional information, status=undefined
ItemStatus status = 3;
cmp.services.info.v2.ItemStatus status = 3;

// Significant update date
google.protobuf.Timestamp last_significant_update = 4;
Expand Down
2 changes: 1 addition & 1 deletion proto/cmp/types/v2/email.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package cmp.types.v2;
message Email {
string address = 1;

EmailType type = 2;
cmp.types.v2.EmailType type = 2;
}

// Email Types
Expand Down

0 comments on commit 484177d

Please sign in to comment.