Update generated location

This commit is contained in:
Vlasislav Kashin
2025-07-13 14:58:49 +03:00
parent 1464119ff8
commit 467416e3ef
15 changed files with 27 additions and 20 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +0,0 @@
pub mod metadata;
pub mod test_metadata;

File diff suppressed because it is too large Load Diff

View File

@@ -4,10 +4,10 @@ use protobuf::Message;
use strum::IntoEnumIterator;
use crate::{
interfaces::MatcherApi, phonenumberutil::generated::metadata::METADATA, proto_gen::{
interfaces::MatcherApi, generated::metadata::METADATA,
phonemetadata::{PhoneMetadata, PhoneMetadataCollection, PhoneNumberDesc},
phonenumber::PhoneNumber,
}
};
use super::{

View File

@@ -1,6 +1,6 @@
use std::borrow::Cow;
use crate::proto_gen::phonenumber::phone_number::CountryCodeSource;
use crate::phonenumber::phone_number::CountryCodeSource;
#[derive(Debug)]
pub struct PhoneNumberWithCountryCodeSource<'a> {

View File

@@ -6,7 +6,6 @@ pub mod phonenumberutil;
mod phone_number_regexps_and_mappings;
pub(self) mod helper_types;
pub(self) mod comparisons;
pub(crate) mod generated;
use std::sync::LazyLock;

View File

@@ -37,10 +37,10 @@ use crate::{
prefix_number_with_country_calling_code, test_number_length,
test_number_length_with_unknown_type,
}, helper_types::{PhoneNumberAndCarrierCode, PhoneNumberWithCountryCodeSource}, MatchType, PhoneNumberFormat, PhoneNumberType, ValidNumberLenType
}, proto_gen::{
phonemetadata::{NumberFormat, PhoneMetadata, PhoneNumberDesc},
phonenumber::{phone_number::CountryCodeSource, PhoneNumber},
}, regex_based_matcher::RegexBasedMatcher, regex_util::{RegexConsume, RegexFullMatch}, regexp_cache::ErrorInvalidRegex, string_util::strip_cow_prefix
},
phonemetadata::{NumberFormat, PhoneMetadata, PhoneNumberDesc},
phonenumber::{phone_number::CountryCodeSource, PhoneNumber},
regex_based_matcher::RegexBasedMatcher, regex_util::{RegexConsume, RegexFullMatch}, regexp_cache::ErrorInvalidRegex, string_util::strip_cow_prefix
};
use dec_from_char::DecimalExtended;