apexdevkit 1.29.2__tar.gz → 1.29.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/PKG-INFO +1 -1
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/service.py +1 -1
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/__init__.py +2 -2
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/core/__init__.py +8 -3
- apexdevkit-1.29.2/apexdevkit/repository/core/interface.py → apexdevkit-1.29.3/apexdevkit/repository/core/decorator.py +63 -68
- apexdevkit-1.29.3/apexdevkit/repository/core/interface.py +42 -0
- apexdevkit-1.29.3/apexdevkit/repository/core/mixin.py +24 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/core/multi.py +3 -2
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/in_memory/repository.py +2 -3
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/sql/mssql.py +10 -3
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/sql/sqlite.py +10 -4
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/pyproject.toml +1 -1
- apexdevkit-1.29.2/apexdevkit/repository/core/decorator.py +0 -37
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/LICENSE +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/README.md +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/annotation/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/annotation/deprecate.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/date.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/environment.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/error.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/builder.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/dependable.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/docs.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/name.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/resource.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/response.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/router.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fastapi/schema.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/fluent.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/formatter.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/fake.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/fluent.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/httpx/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/httpx/client.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/httpx/hooks.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/json.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/http/url.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/id.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/key_fn.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/py.typed +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/query/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/query/generator.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/query/query.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/core/database.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/in_memory/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/in_memory/mixin.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/in_memory/store.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/sql/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/sql/connector.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/repository/sql/field.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/server.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/synchronization.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/testing/__init__.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/testing/database.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/testing/fake.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/testing/rest.py +0 -0
- {apexdevkit-1.29.2 → apexdevkit-1.29.3}/apexdevkit/value.py +0 -0
|
@@ -67,7 +67,7 @@ class RestfulRepository(RestfulService, Generic[ItemT]):
|
|
|
67
67
|
|
|
68
68
|
@cached_property
|
|
69
69
|
def _batch(self) -> BruteForceBatch[ItemT]:
|
|
70
|
-
return BruteForceBatch(self.repository)
|
|
70
|
+
return BruteForceBatch(inner=self.repository)
|
|
71
71
|
|
|
72
72
|
def create_one(self, item: RawItem) -> RawItem:
|
|
73
73
|
return self.formatter.dump(self.repository.create(self.formatter.load(item)))
|
|
@@ -5,8 +5,8 @@ from .core import (
|
|
|
5
5
|
Cursor,
|
|
6
6
|
Database,
|
|
7
7
|
DatabaseCommand,
|
|
8
|
+
NoRepository,
|
|
8
9
|
Repository,
|
|
9
|
-
RepositoryBase,
|
|
10
10
|
RepositoryDecorator,
|
|
11
11
|
)
|
|
12
12
|
from .core.interface import Entity
|
|
@@ -27,8 +27,8 @@ __all__ = [
|
|
|
27
27
|
"Cursor",
|
|
28
28
|
"Database",
|
|
29
29
|
"DatabaseCommand",
|
|
30
|
+
"NoRepository",
|
|
30
31
|
"Repository",
|
|
31
|
-
"RepositoryBase",
|
|
32
32
|
"RepositoryDecorator",
|
|
33
33
|
# In-memory
|
|
34
34
|
"CacheMixin",
|
|
@@ -6,8 +6,9 @@ from .database import (
|
|
|
6
6
|
Database,
|
|
7
7
|
DatabaseCommand,
|
|
8
8
|
)
|
|
9
|
-
from .decorator import BruteForceBatch, RepositoryDecorator
|
|
10
|
-
from .interface import ItemT,
|
|
9
|
+
from .decorator import BruteForceBatch, NoRepository, RepositoryDecorator
|
|
10
|
+
from .interface import Entity, ItemT, KeyFn, Repository
|
|
11
|
+
from .mixin import ContainsMixin
|
|
11
12
|
|
|
12
13
|
__all__ = [
|
|
13
14
|
# Database
|
|
@@ -21,7 +22,11 @@ __all__ = [
|
|
|
21
22
|
"RepositoryDecorator",
|
|
22
23
|
"BruteForceBatch",
|
|
23
24
|
# Interface
|
|
25
|
+
"Entity",
|
|
24
26
|
"ItemT",
|
|
27
|
+
"KeyFn",
|
|
25
28
|
"Repository",
|
|
26
|
-
"
|
|
29
|
+
"NoRepository",
|
|
30
|
+
# Mixin
|
|
31
|
+
"ContainsMixin",
|
|
27
32
|
]
|
|
@@ -1,68 +1,63 @@
|
|
|
1
|
-
from
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
from
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
def
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
def
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
def
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
def __iter__(self) -> Iterator[ItemT]:
|
|
65
|
-
raise NotImplementedError
|
|
66
|
-
|
|
67
|
-
def __len__(self) -> int:
|
|
68
|
-
raise NotImplementedError
|
|
1
|
+
from collections.abc import Iterable, Iterator
|
|
2
|
+
from dataclasses import dataclass, field
|
|
3
|
+
|
|
4
|
+
from .interface import ItemT, Repository
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class NoRepository(Repository[ItemT]): # pragma: no cover
|
|
8
|
+
def create(self, item: ItemT) -> ItemT:
|
|
9
|
+
raise NotImplementedError
|
|
10
|
+
|
|
11
|
+
def read(self, item_id: str) -> ItemT:
|
|
12
|
+
raise NotImplementedError
|
|
13
|
+
|
|
14
|
+
def update(self, item: ItemT) -> None:
|
|
15
|
+
raise NotImplementedError
|
|
16
|
+
|
|
17
|
+
def delete(self, item_id: str) -> None:
|
|
18
|
+
raise NotImplementedError
|
|
19
|
+
|
|
20
|
+
def __iter__(self) -> Iterator[ItemT]:
|
|
21
|
+
raise NotImplementedError
|
|
22
|
+
|
|
23
|
+
def __len__(self) -> int:
|
|
24
|
+
raise NotImplementedError
|
|
25
|
+
|
|
26
|
+
def __contains__(self, item: object) -> bool:
|
|
27
|
+
raise NotImplementedError
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@dataclass(frozen=True, kw_only=True)
|
|
31
|
+
class RepositoryDecorator(Repository[ItemT]): # pragma: no cover
|
|
32
|
+
inner: Repository[ItemT] = field(default_factory=NoRepository)
|
|
33
|
+
|
|
34
|
+
def create(self, item: ItemT) -> ItemT:
|
|
35
|
+
return self.inner.create(item)
|
|
36
|
+
|
|
37
|
+
def read(self, item_id: str) -> ItemT:
|
|
38
|
+
return self.inner.read(item_id)
|
|
39
|
+
|
|
40
|
+
def update(self, item: ItemT) -> None:
|
|
41
|
+
self.inner.update(item)
|
|
42
|
+
|
|
43
|
+
def delete(self, item_id: str) -> None:
|
|
44
|
+
self.inner.delete(item_id)
|
|
45
|
+
|
|
46
|
+
def __iter__(self) -> Iterator[ItemT]:
|
|
47
|
+
return iter(self.inner)
|
|
48
|
+
|
|
49
|
+
def __len__(self) -> int:
|
|
50
|
+
return len(self.inner)
|
|
51
|
+
|
|
52
|
+
def __contains__(self, item: object) -> bool:
|
|
53
|
+
return item in self.inner
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
@dataclass(frozen=True, kw_only=True)
|
|
57
|
+
class BruteForceBatch(RepositoryDecorator[ItemT]):
|
|
58
|
+
def create_many(self, items: Iterable[ItemT]) -> Iterable[ItemT]:
|
|
59
|
+
return [self.inner.create(item) for item in items]
|
|
60
|
+
|
|
61
|
+
def update_many(self, items: Iterable[ItemT]) -> None:
|
|
62
|
+
for item in items:
|
|
63
|
+
self.inner.update(item)
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from collections.abc import Callable, Collection, Iterable
|
|
4
|
+
from dataclasses import dataclass, field
|
|
5
|
+
from typing import Protocol, TypeVar
|
|
6
|
+
from uuid import uuid4
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _uuid() -> str:
|
|
10
|
+
return str(uuid4())
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@dataclass(frozen=True, kw_only=True)
|
|
14
|
+
class Entity:
|
|
15
|
+
id: str = field(default_factory=_uuid)
|
|
16
|
+
idempotency_id: str | None = field(default=None)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
ItemT = TypeVar("ItemT", bound=Entity)
|
|
20
|
+
KeyFn = Callable[[ItemT], str]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class Repository(Collection[ItemT], Protocol[ItemT]): # pragma: no cover
|
|
24
|
+
def create(self, item: ItemT) -> ItemT:
|
|
25
|
+
pass
|
|
26
|
+
|
|
27
|
+
def read(self, item_id: str) -> ItemT:
|
|
28
|
+
pass
|
|
29
|
+
|
|
30
|
+
def update(self, item: ItemT) -> None:
|
|
31
|
+
pass
|
|
32
|
+
|
|
33
|
+
def delete(self, item_id: str) -> None:
|
|
34
|
+
pass
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
class BatchRepository(Repository[ItemT], Protocol[ItemT]): # pragma: no cover
|
|
38
|
+
def create_many(self, items: Iterable[ItemT]) -> Iterable[ItemT]:
|
|
39
|
+
pass
|
|
40
|
+
|
|
41
|
+
def update_many(self, items: Iterable[ItemT]) -> None:
|
|
42
|
+
pass
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from typing import Generic
|
|
2
|
+
|
|
3
|
+
from apexdevkit.error import DoesNotExistError
|
|
4
|
+
from apexdevkit.repository.core import Entity, ItemT
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class ContainsMixin(Generic[ItemT]):
|
|
8
|
+
def __contains__(self, item: object) -> bool:
|
|
9
|
+
match item:
|
|
10
|
+
case Entity():
|
|
11
|
+
return self.contains_id(item.id)
|
|
12
|
+
case _:
|
|
13
|
+
return False
|
|
14
|
+
|
|
15
|
+
def contains_id(self, value: str) -> bool:
|
|
16
|
+
try:
|
|
17
|
+
self.read(value)
|
|
18
|
+
except DoesNotExistError:
|
|
19
|
+
return False
|
|
20
|
+
|
|
21
|
+
return True
|
|
22
|
+
|
|
23
|
+
def read(self, item_id: str) -> ItemT:
|
|
24
|
+
raise NotImplementedError
|
|
@@ -7,7 +7,8 @@ from typing import Generic
|
|
|
7
7
|
from apexdevkit.error import DoesNotExistError
|
|
8
8
|
from apexdevkit.formatter import Formatter
|
|
9
9
|
|
|
10
|
-
from .
|
|
10
|
+
from . import ContainsMixin
|
|
11
|
+
from .interface import ItemT, Repository
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
@dataclass(frozen=True)
|
|
@@ -20,7 +21,7 @@ class NoFormatter(Generic[ItemT]):
|
|
|
20
21
|
|
|
21
22
|
|
|
22
23
|
@dataclass(frozen=True)
|
|
23
|
-
class MultipleRepository(
|
|
24
|
+
class MultipleRepository(ContainsMixin[ItemT], Repository[ItemT]):
|
|
24
25
|
repositories: list[_InnerRepository[ItemT]]
|
|
25
26
|
|
|
26
27
|
def create(self, item: ItemT) -> ItemT:
|
|
@@ -6,14 +6,13 @@ from dataclasses import dataclass, field
|
|
|
6
6
|
|
|
7
7
|
from apexdevkit.error import DoesNotExistError, ExistsError
|
|
8
8
|
from apexdevkit.key_fn import AttributeKey
|
|
9
|
-
from apexdevkit.repository.core import ItemT,
|
|
10
|
-
from apexdevkit.repository.core.interface import KeyFn
|
|
9
|
+
from apexdevkit.repository.core import ContainsMixin, ItemT, KeyFn, Repository
|
|
11
10
|
|
|
12
11
|
from .store import InMemoryByteStore, KeyValueStore
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
@dataclass(frozen=True)
|
|
16
|
-
class InMemoryRepository(
|
|
15
|
+
class InMemoryRepository(ContainsMixin[ItemT], Repository[ItemT]):
|
|
17
16
|
store: KeyValueStore[ItemT] = field(default_factory=InMemoryByteStore)
|
|
18
17
|
keys: list[KeyFn[ItemT]] = field(default_factory=lambda: [AttributeKey("id")])
|
|
19
18
|
|
|
@@ -8,12 +8,19 @@ from pymssql.exceptions import DatabaseError, OperationalError
|
|
|
8
8
|
|
|
9
9
|
from apexdevkit.error import DoesNotExistError, ExistsError
|
|
10
10
|
from apexdevkit.formatter import Formatter
|
|
11
|
-
from apexdevkit.repository.core import
|
|
12
|
-
|
|
11
|
+
from apexdevkit.repository.core import (
|
|
12
|
+
ContainsMixin,
|
|
13
|
+
Database,
|
|
14
|
+
DatabaseCommand,
|
|
15
|
+
ItemT,
|
|
16
|
+
Repository,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
from .field import NotNone, SqlFieldManager, _SqlField
|
|
13
20
|
|
|
14
21
|
|
|
15
22
|
@dataclass
|
|
16
|
-
class MsSqlRepository(
|
|
23
|
+
class MsSqlRepository(ContainsMixin[ItemT], Repository[ItemT]):
|
|
17
24
|
db: Database
|
|
18
25
|
table: SqlTable[ItemT]
|
|
19
26
|
|
|
@@ -7,13 +7,19 @@ from typing import Any, Generic
|
|
|
7
7
|
|
|
8
8
|
from apexdevkit.error import DoesNotExistError, ExistsError
|
|
9
9
|
from apexdevkit.formatter import Formatter
|
|
10
|
-
from apexdevkit.repository import
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
from apexdevkit.repository.core import (
|
|
11
|
+
ContainsMixin,
|
|
12
|
+
Database,
|
|
13
|
+
DatabaseCommand,
|
|
14
|
+
ItemT,
|
|
15
|
+
Repository,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
from .field import NotNone, SqlFieldManager, _SqlField
|
|
13
19
|
|
|
14
20
|
|
|
15
21
|
@dataclass(frozen=True)
|
|
16
|
-
class SqliteRepository(
|
|
22
|
+
class SqliteRepository(ContainsMixin[ItemT], Repository[ItemT]):
|
|
17
23
|
db: Database
|
|
18
24
|
table: SqlTable[ItemT]
|
|
19
25
|
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
from collections.abc import Iterable, Iterator
|
|
2
|
-
from dataclasses import dataclass
|
|
3
|
-
from typing import Generic
|
|
4
|
-
|
|
5
|
-
from .interface import ItemT, Repository
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
@dataclass
|
|
9
|
-
class RepositoryDecorator(Generic[ItemT]): # pragma: no cover
|
|
10
|
-
inner: Repository[ItemT]
|
|
11
|
-
|
|
12
|
-
def create(self, item: ItemT) -> ItemT:
|
|
13
|
-
return self.inner.create(item)
|
|
14
|
-
|
|
15
|
-
def read(self, item_id: str) -> ItemT:
|
|
16
|
-
return self.inner.read(item_id)
|
|
17
|
-
|
|
18
|
-
def update(self, item: ItemT) -> None:
|
|
19
|
-
self.inner.update(item)
|
|
20
|
-
|
|
21
|
-
def delete(self, item_id: str) -> None:
|
|
22
|
-
self.inner.delete(item_id)
|
|
23
|
-
|
|
24
|
-
def __iter__(self) -> Iterator[ItemT]:
|
|
25
|
-
return self.inner.__iter__()
|
|
26
|
-
|
|
27
|
-
def __len__(self) -> int:
|
|
28
|
-
return self.inner.__len__()
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
class BruteForceBatch(RepositoryDecorator[ItemT]):
|
|
32
|
-
def create_many(self, items: Iterable[ItemT]) -> Iterable[ItemT]:
|
|
33
|
-
return [self.inner.create(item) for item in items]
|
|
34
|
-
|
|
35
|
-
def update_many(self, items: Iterable[ItemT]) -> None:
|
|
36
|
-
for item in items:
|
|
37
|
-
self.inner.update(item)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|