Skip to content

Commit

Permalink
chore: regenerate alarms sdk 🔁
Browse files Browse the repository at this point in the history
  • Loading branch information
plankthom authored and github-actions[bot] committed Oct 25, 2024
1 parent 98fd8da commit feb25cf
Show file tree
Hide file tree
Showing 43 changed files with 44 additions and 5 deletions.
4 changes: 2 additions & 2 deletions waylay-sdk-alarms-types/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "waylay-sdk-alarms-types"
version = "1.11.0.20240802"
version = "1.11.0.20241025"
description = "Waylay Alarms Types "
authors = [
{ name = "Waylay", email = "[email protected]"}
Expand All @@ -13,7 +13,7 @@ keywords = ["Waylay Alarms" , "Types"]
requires-python = ">= 3.9"
dependencies = [
"waylay-sdk-core ~= 0.2.3",
"waylay-sdk-alarms == 1.11.0.20240802",
"waylay-sdk-alarms == 1.11.0.20241025",
"pydantic ~= 2.6",
"typing-extensions ~= 4.10",
"eval-type-backport ~= 0.1.3; python_version < '3.10'",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Do not edit the class manually.
"""

__version__ = "1.11.0.20240802"
__version__ = "1.11.0.20241025"

# import models into model package
from .a_batch_alarms_specification import ABatchAlarmsSpecification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_event_type import AlarmEventType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from typing_extensions import (
Annotated, # >=3.11
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_audit_record import AlarmAuditRecord
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
ConfigDict,
Field,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_event_alarm import AlarmEventAlarm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from typing_extensions import (
Annotated, # >=3.11
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_severity import AlarmSeverity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_event_changes_inner_type import AlarmEventChangesInnerType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_severity import AlarmSeverity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from pydantic import (
ConfigDict,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_severity import AlarmSeverity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
StrictInt,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_entity import AlarmEntity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Field,
StrictInt,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_event_type import AlarmEventType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
ConfigDict,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_alarm_entity import BatchAlarmEntity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from pydantic import (
ConfigDict,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_alarm_entity import BatchAlarmEntity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_operation_operation import BatchOperationOperation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
StrictInt,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_operation_enqueued_entity import BatchOperationEnqueuedEntity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.queued_operation_summary import QueuedOperationSummary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_alarm_entity import BatchAlarmEntity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_operation_operation import BatchOperationOperation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
ConfigDict,
Field,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_update import AlarmUpdate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_severity_filter import AlarmSeverityFilter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from typing_extensions import (
Annotated, # >=3.11
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
ConfigDict,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_event import AlarmEvent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
ConfigDict,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_event import AlarmEvent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Field,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_severity import AlarmSeverity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
StrictInt,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from typing_extensions import (
Annotated, # >=3.11
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
StrictInt,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
ConfigDict,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
ConfigDict,
Field,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.operation_result_object_results import OperationResultObjectResults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
ConfigDict,
Field,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.failure_operation_result_value import FailureOperationResultValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from pydantic import (
ConfigDict,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.batch_alarm_entity import BatchAlarmEntity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Field,
StrictInt,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
ConfigDict,
StrictStr,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from pydantic import (
ConfigDict,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from typing_extensions import (
Annotated, # >=3.11
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.get_eventstream_event_format_parameter import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from typing_extensions import (
Annotated, # >=3.11
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel

from ..models.alarm_severity import AlarmSeverity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from pydantic import (
ConfigDict,
)

from waylay.sdk.api._models import BaseModel as WaylayBaseModel


Expand Down
2 changes: 1 addition & 1 deletion waylay-sdk-alarms/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "waylay-sdk-alarms"
version = "1.11.0.20240802"
version = "1.11.0.20241025"
description = "Waylay Alarms"
authors = [
{ name = "Waylay", email = "[email protected]"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
StrictBool,
TypeAdapter,
)

from waylay.sdk.api import (
HeaderTypes,
QueryParamTypes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
StrictBool,
TypeAdapter,
)

from waylay.sdk.api import (
HeaderTypes,
QueryParamTypes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from typing_extensions import (
Annotated, # >=3.9,
)

from waylay.sdk.api import (
HeaderTypes,
QueryParamTypes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from typing_extensions import (
Annotated, # >=3.9,
)

from waylay.sdk.api import (
HeaderTypes,
QueryParamTypes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Do not edit the class manually.
"""

__version__ = "1.11.0.20240802"
__version__ = "1.11.0.20241025"

from .service import AlarmsService

Expand Down

0 comments on commit feb25cf

Please sign in to comment.