Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dependencies = [
"hubspot-api-client>=12.0.0,<13.0.0",
"djangorestframework-dataclasses>=1.3.1,<2.0.0",
"pyotp>=2.9.0,<3.0.0",
"flagsmith-common[common-core,flagsmith-schemas,task-processor]>=3.12.1,<4",
"flagsmith-common[common-core,flagsmith-schemas,task-processor]>=3.13.0,<4",
"django-stubs>=5.1.3,<6.0.0",
"tzdata>=2024.1,<2025.0.0",
"djangorestframework-simplejwt>=5.5.1,<6.0.0",
Expand Down
8 changes: 4 additions & 4 deletions api/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mcp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=3.3.1,<4.0.0", # Base MCP functionality
"flagsmith-common[otel]>=3.12.1,<4.0.0", # Logging and OTel export
"flagsmith-common[otel]>=3.13.0,<4.0.0", # Logging and OTel export
"opentelemetry-instrumentation-httpx>=0.46b0,<1.0.0", # Trace upstream API calls
"prometheus-client>=0.21.0,<1.0.0", # Export Prometheus metrics
"pydantic-settings>=2.0.0,<3.0.0", # Environment-driven configuration
Expand All @@ -19,7 +19,7 @@ flagsmith-mcp = "flagsmith_mcp.server:run"

[dependency-groups]
dev = [
"flagsmith-common[test-tools]>=3.12.1,<4.0.0", # Shared test fixtures
"flagsmith-common[test-tools]>=3.13.0,<4.0.0", # Shared test fixtures
"mypy>=2.1.0,<3.0.0", # Static type checking
"openapi-pydantic>=0.5.0,<1.0.0", # Build OpenAPI specs as fixtures
"pyfakefs>=6.0.0,<7.0.0", # Fake filesystem for the bundled schema
Expand Down
12 changes: 6 additions & 6 deletions mcp/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8571,6 +8571,12 @@ paths:
- type: integer
- type: boolean
- type: string
variant:
type: string
nullable: true
reason:
type: string
nullable: true
required:
- enabled
- feature
Expand Down Expand Up @@ -8665,6 +8671,12 @@ paths:
- type: integer
- type: boolean
- type: string
variant:
type: string
nullable: true
reason:
type: string
nullable: true
required:
- enabled
- feature
Expand Down Expand Up @@ -27867,6 +27879,16 @@ components:
- type: string
- type: 'null'
title: Feature State Value
variant:
anyOf:
- type: string
- type: 'null'
title: Variant
reason:
anyOf:
- type: string
- type: 'null'
title: Reason
required:
- feature
- enabled
Expand Down
16 changes: 16 additions & 0 deletions sdk/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ paths:
- type: integer
- type: boolean
- type: string
variant:
type: string
nullable: true
reason:
type: string
nullable: true
required:
- enabled
- feature
Expand Down Expand Up @@ -539,6 +545,16 @@ components:
- type: string
- type: 'null'
title: Feature State Value
variant:
anyOf:
- type: string
- type: 'null'
title: Variant
reason:
anyOf:
- type: string
- type: 'null'
title: Reason
required:
- feature
- enabled
Expand Down
Loading