backup: 사용하지 않는 파일 삭제 전 복구 지점

- 전체 371개 파일 중 82개 미사용 파일 식별
- Phase 1: 33개 파일 삭제 예정 (100% 안전)
- Phase 2: 30개 파일 삭제 검토 예정
- Phase 3: 19개 파일 수동 검토 예정

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
JiWoong Sul
2025-09-02 19:51:40 +09:00
parent 650cd4be55
commit c419f8f458
149 changed files with 12934 additions and 3644 deletions

View File

@@ -572,3 +572,391 @@ abstract class _ZipcodeListResponse implements ZipcodeListResponse {
_$$ZipcodeListResponseImplCopyWith<_$ZipcodeListResponseImpl> get copyWith =>
throw _privateConstructorUsedError;
}
HierarchyMeta _$HierarchyMetaFromJson(Map<String, dynamic> json) {
return _HierarchyMeta.fromJson(json);
}
/// @nodoc
mixin _$HierarchyMeta {
int get total => throw _privateConstructorUsedError;
String? get sido => throw _privateConstructorUsedError;
String? get gu => throw _privateConstructorUsedError;
/// Serializes this HierarchyMeta to a JSON map.
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
/// Create a copy of HierarchyMeta
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
$HierarchyMetaCopyWith<HierarchyMeta> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $HierarchyMetaCopyWith<$Res> {
factory $HierarchyMetaCopyWith(
HierarchyMeta value, $Res Function(HierarchyMeta) then) =
_$HierarchyMetaCopyWithImpl<$Res, HierarchyMeta>;
@useResult
$Res call({int total, String? sido, String? gu});
}
/// @nodoc
class _$HierarchyMetaCopyWithImpl<$Res, $Val extends HierarchyMeta>
implements $HierarchyMetaCopyWith<$Res> {
_$HierarchyMetaCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
/// Create a copy of HierarchyMeta
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? total = null,
Object? sido = freezed,
Object? gu = freezed,
}) {
return _then(_value.copyWith(
total: null == total
? _value.total
: total // ignore: cast_nullable_to_non_nullable
as int,
sido: freezed == sido
? _value.sido
: sido // ignore: cast_nullable_to_non_nullable
as String?,
gu: freezed == gu
? _value.gu
: gu // ignore: cast_nullable_to_non_nullable
as String?,
) as $Val);
}
}
/// @nodoc
abstract class _$$HierarchyMetaImplCopyWith<$Res>
implements $HierarchyMetaCopyWith<$Res> {
factory _$$HierarchyMetaImplCopyWith(
_$HierarchyMetaImpl value, $Res Function(_$HierarchyMetaImpl) then) =
__$$HierarchyMetaImplCopyWithImpl<$Res>;
@override
@useResult
$Res call({int total, String? sido, String? gu});
}
/// @nodoc
class __$$HierarchyMetaImplCopyWithImpl<$Res>
extends _$HierarchyMetaCopyWithImpl<$Res, _$HierarchyMetaImpl>
implements _$$HierarchyMetaImplCopyWith<$Res> {
__$$HierarchyMetaImplCopyWithImpl(
_$HierarchyMetaImpl _value, $Res Function(_$HierarchyMetaImpl) _then)
: super(_value, _then);
/// Create a copy of HierarchyMeta
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? total = null,
Object? sido = freezed,
Object? gu = freezed,
}) {
return _then(_$HierarchyMetaImpl(
total: null == total
? _value.total
: total // ignore: cast_nullable_to_non_nullable
as int,
sido: freezed == sido
? _value.sido
: sido // ignore: cast_nullable_to_non_nullable
as String?,
gu: freezed == gu
? _value.gu
: gu // ignore: cast_nullable_to_non_nullable
as String?,
));
}
}
/// @nodoc
@JsonSerializable()
class _$HierarchyMetaImpl implements _HierarchyMeta {
const _$HierarchyMetaImpl({required this.total, this.sido, this.gu});
factory _$HierarchyMetaImpl.fromJson(Map<String, dynamic> json) =>
_$$HierarchyMetaImplFromJson(json);
@override
final int total;
@override
final String? sido;
@override
final String? gu;
@override
String toString() {
return 'HierarchyMeta(total: $total, sido: $sido, gu: $gu)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$HierarchyMetaImpl &&
(identical(other.total, total) || other.total == total) &&
(identical(other.sido, sido) || other.sido == sido) &&
(identical(other.gu, gu) || other.gu == gu));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(runtimeType, total, sido, gu);
/// Create a copy of HierarchyMeta
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$HierarchyMetaImplCopyWith<_$HierarchyMetaImpl> get copyWith =>
__$$HierarchyMetaImplCopyWithImpl<_$HierarchyMetaImpl>(this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$$HierarchyMetaImplToJson(
this,
);
}
}
abstract class _HierarchyMeta implements HierarchyMeta {
const factory _HierarchyMeta(
{required final int total,
final String? sido,
final String? gu}) = _$HierarchyMetaImpl;
factory _HierarchyMeta.fromJson(Map<String, dynamic> json) =
_$HierarchyMetaImpl.fromJson;
@override
int get total;
@override
String? get sido;
@override
String? get gu;
/// Create a copy of HierarchyMeta
/// with the given fields replaced by the non-null parameter values.
@override
@JsonKey(includeFromJson: false, includeToJson: false)
_$$HierarchyMetaImplCopyWith<_$HierarchyMetaImpl> get copyWith =>
throw _privateConstructorUsedError;
}
HierarchyResponse _$HierarchyResponseFromJson(Map<String, dynamic> json) {
return _HierarchyResponse.fromJson(json);
}
/// @nodoc
mixin _$HierarchyResponse {
@JsonKey(name: 'data')
List<String> get data => throw _privateConstructorUsedError;
@JsonKey(name: 'meta')
HierarchyMeta get meta => throw _privateConstructorUsedError;
/// Serializes this HierarchyResponse to a JSON map.
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
/// Create a copy of HierarchyResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
$HierarchyResponseCopyWith<HierarchyResponse> get copyWith =>
throw _privateConstructorUsedError;
}
/// @nodoc
abstract class $HierarchyResponseCopyWith<$Res> {
factory $HierarchyResponseCopyWith(
HierarchyResponse value, $Res Function(HierarchyResponse) then) =
_$HierarchyResponseCopyWithImpl<$Res, HierarchyResponse>;
@useResult
$Res call(
{@JsonKey(name: 'data') List<String> data,
@JsonKey(name: 'meta') HierarchyMeta meta});
$HierarchyMetaCopyWith<$Res> get meta;
}
/// @nodoc
class _$HierarchyResponseCopyWithImpl<$Res, $Val extends HierarchyResponse>
implements $HierarchyResponseCopyWith<$Res> {
_$HierarchyResponseCopyWithImpl(this._value, this._then);
// ignore: unused_field
final $Val _value;
// ignore: unused_field
final $Res Function($Val) _then;
/// Create a copy of HierarchyResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? data = null,
Object? meta = null,
}) {
return _then(_value.copyWith(
data: null == data
? _value.data
: data // ignore: cast_nullable_to_non_nullable
as List<String>,
meta: null == meta
? _value.meta
: meta // ignore: cast_nullable_to_non_nullable
as HierarchyMeta,
) as $Val);
}
/// Create a copy of HierarchyResponse
/// with the given fields replaced by the non-null parameter values.
@override
@pragma('vm:prefer-inline')
$HierarchyMetaCopyWith<$Res> get meta {
return $HierarchyMetaCopyWith<$Res>(_value.meta, (value) {
return _then(_value.copyWith(meta: value) as $Val);
});
}
}
/// @nodoc
abstract class _$$HierarchyResponseImplCopyWith<$Res>
implements $HierarchyResponseCopyWith<$Res> {
factory _$$HierarchyResponseImplCopyWith(_$HierarchyResponseImpl value,
$Res Function(_$HierarchyResponseImpl) then) =
__$$HierarchyResponseImplCopyWithImpl<$Res>;
@override
@useResult
$Res call(
{@JsonKey(name: 'data') List<String> data,
@JsonKey(name: 'meta') HierarchyMeta meta});
@override
$HierarchyMetaCopyWith<$Res> get meta;
}
/// @nodoc
class __$$HierarchyResponseImplCopyWithImpl<$Res>
extends _$HierarchyResponseCopyWithImpl<$Res, _$HierarchyResponseImpl>
implements _$$HierarchyResponseImplCopyWith<$Res> {
__$$HierarchyResponseImplCopyWithImpl(_$HierarchyResponseImpl _value,
$Res Function(_$HierarchyResponseImpl) _then)
: super(_value, _then);
/// Create a copy of HierarchyResponse
/// with the given fields replaced by the non-null parameter values.
@pragma('vm:prefer-inline')
@override
$Res call({
Object? data = null,
Object? meta = null,
}) {
return _then(_$HierarchyResponseImpl(
data: null == data
? _value._data
: data // ignore: cast_nullable_to_non_nullable
as List<String>,
meta: null == meta
? _value.meta
: meta // ignore: cast_nullable_to_non_nullable
as HierarchyMeta,
));
}
}
/// @nodoc
@JsonSerializable()
class _$HierarchyResponseImpl implements _HierarchyResponse {
const _$HierarchyResponseImpl(
{@JsonKey(name: 'data') required final List<String> data,
@JsonKey(name: 'meta') required this.meta})
: _data = data;
factory _$HierarchyResponseImpl.fromJson(Map<String, dynamic> json) =>
_$$HierarchyResponseImplFromJson(json);
final List<String> _data;
@override
@JsonKey(name: 'data')
List<String> get data {
if (_data is EqualUnmodifiableListView) return _data;
// ignore: implicit_dynamic_type
return EqualUnmodifiableListView(_data);
}
@override
@JsonKey(name: 'meta')
final HierarchyMeta meta;
@override
String toString() {
return 'HierarchyResponse(data: $data, meta: $meta)';
}
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$HierarchyResponseImpl &&
const DeepCollectionEquality().equals(other._data, _data) &&
(identical(other.meta, meta) || other.meta == meta));
}
@JsonKey(includeFromJson: false, includeToJson: false)
@override
int get hashCode => Object.hash(
runtimeType, const DeepCollectionEquality().hash(_data), meta);
/// Create a copy of HierarchyResponse
/// with the given fields replaced by the non-null parameter values.
@JsonKey(includeFromJson: false, includeToJson: false)
@override
@pragma('vm:prefer-inline')
_$$HierarchyResponseImplCopyWith<_$HierarchyResponseImpl> get copyWith =>
__$$HierarchyResponseImplCopyWithImpl<_$HierarchyResponseImpl>(
this, _$identity);
@override
Map<String, dynamic> toJson() {
return _$$HierarchyResponseImplToJson(
this,
);
}
}
abstract class _HierarchyResponse implements HierarchyResponse {
const factory _HierarchyResponse(
{@JsonKey(name: 'data') required final List<String> data,
@JsonKey(name: 'meta') required final HierarchyMeta meta}) =
_$HierarchyResponseImpl;
factory _HierarchyResponse.fromJson(Map<String, dynamic> json) =
_$HierarchyResponseImpl.fromJson;
@override
@JsonKey(name: 'data')
List<String> get data;
@override
@JsonKey(name: 'meta')
HierarchyMeta get meta;
/// Create a copy of HierarchyResponse
/// with the given fields replaced by the non-null parameter values.
@override
@JsonKey(includeFromJson: false, includeToJson: false)
_$$HierarchyResponseImplCopyWith<_$HierarchyResponseImpl> get copyWith =>
throw _privateConstructorUsedError;
}