From 88e5fd11ada9b780b4e17e494351183efa742b28 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 06:02:54 +0000 Subject: [PATCH] chore: remove stale RowFilteringOperationNot1 files from prior generation Co-Authored-By: AJ Steers --- docs/models/rowfilteringoperationnot1.md | 9 ------- .../models/rowfilteringoperationnot_1.py | 26 ------------------- 2 files changed, 35 deletions(-) delete mode 100644 docs/models/rowfilteringoperationnot1.md delete mode 100644 src/airbyte_api/models/rowfilteringoperationnot_1.py diff --git a/docs/models/rowfilteringoperationnot1.md b/docs/models/rowfilteringoperationnot1.md deleted file mode 100644 index c2db30ee..00000000 --- a/docs/models/rowfilteringoperationnot1.md +++ /dev/null @@ -1,9 +0,0 @@ -# RowFilteringOperationNot1 - - -## Fields - -| Field | Type | Required | Description | -| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| `conditions` | List[[models.RowFilteringOperation](../models/rowfilteringoperation.md)] | :heavy_check_mark: | Conditions to evaluate with the NOT operator. | -| `type` | [models.RowFilteringOperationType](../models/rowfilteringoperationtype.md) | :heavy_check_mark: | N/A | \ No newline at end of file diff --git a/src/airbyte_api/models/rowfilteringoperationnot_1.py b/src/airbyte_api/models/rowfilteringoperationnot_1.py deleted file mode 100644 index e38cd632..00000000 --- a/src/airbyte_api/models/rowfilteringoperationnot_1.py +++ /dev/null @@ -1,26 +0,0 @@ -"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" - -from __future__ import annotations -from .rowfilteringoperationtype import RowFilteringOperationType -from airbyte_api.types import BaseModel -from typing import List, TYPE_CHECKING -from typing_extensions import TypedDict - -if TYPE_CHECKING: - from .rowfilteringoperation import ( - RowFilteringOperation, - RowFilteringOperationTypedDict, - ) - - -class RowFilteringOperationNot1TypedDict(TypedDict): - conditions: List["RowFilteringOperationTypedDict"] - r"""Conditions to evaluate with the NOT operator.""" - type: RowFilteringOperationType - - -class RowFilteringOperationNot1(BaseModel): - conditions: List["RowFilteringOperation"] - r"""Conditions to evaluate with the NOT operator.""" - - type: RowFilteringOperationType