diff --git a/src/zepben/eas/lib/generated_graphql_client/__init__.py b/src/zepben/eas/lib/generated_graphql_client/__init__.py index a9a688b..1a9bbf6 100644 --- a/src/zepben/eas/lib/generated_graphql_client/__init__.py +++ b/src/zepben/eas/lib/generated_graphql_client/__init__.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from .async_base_client import AsyncBaseClient from .base_model import BaseModel, Upload from .client import Client diff --git a/src/zepben/eas/lib/generated_graphql_client/async_base_client.py b/src/zepben/eas/lib/generated_graphql_client/async_base_client.py index 7991c6e..b5cbd70 100644 --- a/src/zepben/eas/lib/generated_graphql_client/async_base_client.py +++ b/src/zepben/eas/lib/generated_graphql_client/async_base_client.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + import asyncio import enum import json @@ -197,4 +203,4 @@ async def _handle_ws_message(self, message: Data, websocket: ClientConnection, e raise GraphQLClientGraphQLMultiError.from_errors_dicts(errors_dicts=payload, data=message_dict) elif type_ == GraphQLTransportWSMessageType.CONNECTION_ACK: return {'connection_ack': True} - return None \ No newline at end of file + return None diff --git a/src/zepben/eas/lib/generated_graphql_client/base_model.py b/src/zepben/eas/lib/generated_graphql_client/base_model.py index 25d3444..3069417 100644 --- a/src/zepben/eas/lib/generated_graphql_client/base_model.py +++ b/src/zepben/eas/lib/generated_graphql_client/base_model.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from io import IOBase from pydantic import BaseModel as PydanticBaseModel from pydantic import ConfigDict @@ -16,4 +22,4 @@ class Upload: def __init__(self, filename: str, content: IOBase, content_type: str): self.filename = filename self.content = content - self.content_type = content_type \ No newline at end of file + self.content_type = content_type diff --git a/src/zepben/eas/lib/generated_graphql_client/base_operation.py b/src/zepben/eas/lib/generated_graphql_client/base_operation.py index 3219e1f..fe4ee1c 100644 --- a/src/zepben/eas/lib/generated_graphql_client/base_operation.py +++ b/src/zepben/eas/lib/generated_graphql_client/base_operation.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any, Optional, Union from graphql import ArgumentNode, FieldNode, InlineFragmentNode, NamedTypeNode, NameNode, SelectionSetNode, VariableNode @@ -109,4 +115,4 @@ def all_fields(cls) -> 'Generator[GraphQLField | MethodType, None, None]': if isinstance(v, GraphQLField): yield v elif inspect.ismethod(v): - yield v().fields(*v().all_fields()) \ No newline at end of file + yield v().fields(*v().all_fields()) diff --git a/src/zepben/eas/lib/generated_graphql_client/client.py b/src/zepben/eas/lib/generated_graphql_client/client.py index fe0a69f..7e0dd6f 100644 --- a/src/zepben/eas/lib/generated_graphql_client/client.py +++ b/src/zepben/eas/lib/generated_graphql_client/client.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any from graphql import ( diff --git a/src/zepben/eas/lib/generated_graphql_client/custom_fields.py b/src/zepben/eas/lib/generated_graphql_client/custom_fields.py index 2b6873c..76bd03b 100644 --- a/src/zepben/eas/lib/generated_graphql_client/custom_fields.py +++ b/src/zepben/eas/lib/generated_graphql_client/custom_fields.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any, Optional, Union from .base_operation import GraphQLField diff --git a/src/zepben/eas/lib/generated_graphql_client/custom_mutations.py b/src/zepben/eas/lib/generated_graphql_client/custom_mutations.py index e8306e0..b480c47 100644 --- a/src/zepben/eas/lib/generated_graphql_client/custom_mutations.py +++ b/src/zepben/eas/lib/generated_graphql_client/custom_mutations.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any, Optional from .custom_fields import ( diff --git a/src/zepben/eas/lib/generated_graphql_client/custom_queries.py b/src/zepben/eas/lib/generated_graphql_client/custom_queries.py index 2e110fb..92552b6 100644 --- a/src/zepben/eas/lib/generated_graphql_client/custom_queries.py +++ b/src/zepben/eas/lib/generated_graphql_client/custom_queries.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any, Optional from .custom_fields import ( diff --git a/src/zepben/eas/lib/generated_graphql_client/custom_typing_fields.py b/src/zepben/eas/lib/generated_graphql_client/custom_typing_fields.py index 3cd62f6..2c55e85 100644 --- a/src/zepben/eas/lib/generated_graphql_client/custom_typing_fields.py +++ b/src/zepben/eas/lib/generated_graphql_client/custom_typing_fields.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from .base_operation import GraphQLField diff --git a/src/zepben/eas/lib/generated_graphql_client/enums.py b/src/zepben/eas/lib/generated_graphql_client/enums.py index 7998246..025f7ae 100644 --- a/src/zepben/eas/lib/generated_graphql_client/enums.py +++ b/src/zepben/eas/lib/generated_graphql_client/enums.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from enum import Enum diff --git a/src/zepben/eas/lib/generated_graphql_client/exceptions.py b/src/zepben/eas/lib/generated_graphql_client/exceptions.py index 5f05996..8830e4f 100644 --- a/src/zepben/eas/lib/generated_graphql_client/exceptions.py +++ b/src/zepben/eas/lib/generated_graphql_client/exceptions.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any, Optional, Union import httpx @@ -56,4 +62,4 @@ def __init__(self, message: Union[str, bytes]) -> None: self.message = message def __str__(self) -> str: - return 'Invalid message format.' \ No newline at end of file + return 'Invalid message format.' diff --git a/src/zepben/eas/lib/generated_graphql_client/input_types.py b/src/zepben/eas/lib/generated_graphql_client/input_types.py index 915dbd9..379660b 100644 --- a/src/zepben/eas/lib/generated_graphql_client/input_types.py +++ b/src/zepben/eas/lib/generated_graphql_client/input_types.py @@ -1,3 +1,9 @@ +# Copyright 2026 Zeppelin Bend Pty Ltd +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. + from typing import Any, Optional from pydantic import Field