diff --git a/src/finch/types/shared_params/__init__.py b/src/finch/types/shared_params/__init__.py
deleted file mode 100644
index 6c699bd7..00000000
--- a/src/finch/types/shared_params/__init__.py
+++ /dev/null
@@ -1,5 +0,0 @@
-# File generated from our OpenAPI spec by Stainless.
-
-from .paging import Paging as Paging
-from .operation_support import OperationSupport as OperationSupport
-from .operation_support_matrix import OperationSupportMatrix as OperationSupportMatrix
diff --git a/src/finch/types/shared_params/operation_support.py b/src/finch/types/shared_params/operation_support.py
deleted file mode 100644
index 290a5214..00000000
--- a/src/finch/types/shared_params/operation_support.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# File generated from our OpenAPI spec by Stainless.
-
-from __future__ import annotations
-
-from typing_extensions import Literal
-
-__all__ = ["OperationSupport"]
-
-OperationSupport = Literal["supported", "not_supported_by_finch", "not_supported_by_provider", "client_access_only"]
diff --git a/src/finch/types/shared_params/operation_support_matrix.py b/src/finch/types/shared_params/operation_support_matrix.py
deleted file mode 100644
index 4fa6df6b..00000000
--- a/src/finch/types/shared_params/operation_support_matrix.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# File generated from our OpenAPI spec by Stainless.
-
-from __future__ import annotations
-
-from typing_extensions import TypedDict
-
-from ..shared import OperationSupport
-from .operation_support import OperationSupport
-
-__all__ = ["OperationSupportMatrix"]
-
-
-class OperationSupportMatrix(TypedDict, total=False):
- create: OperationSupport
- """
- - `supported`: This operation is supported by both the provider and Finch
- - `not_supported_by_finch`: This operation is not supported by Finch but
- supported by the provider
- - `not_supported_by_provider`: This operation is not supported by the provider,
- so Finch cannot support
- - `client_access_only`: This behavior is supported by the provider, but only
- available to the client and not to Finch
- """
-
- delete: OperationSupport
- """
- - `supported`: This operation is supported by both the provider and Finch
- - `not_supported_by_finch`: This operation is not supported by Finch but
- supported by the provider
- - `not_supported_by_provider`: This operation is not supported by the provider,
- so Finch cannot support
- - `client_access_only`: This behavior is supported by the provider, but only
- available to the client and not to Finch
- """
-
- read: OperationSupport
- """
- - `supported`: This operation is supported by both the provider and Finch
- - `not_supported_by_finch`: This operation is not supported by Finch but
- supported by the provider
- - `not_supported_by_provider`: This operation is not supported by the provider,
- so Finch cannot support
- - `client_access_only`: This behavior is supported by the provider, but only
- available to the client and not to Finch
- """
-
- update: OperationSupport
- """
- - `supported`: This operation is supported by both the provider and Finch
- - `not_supported_by_finch`: This operation is not supported by Finch but
- supported by the provider
- - `not_supported_by_provider`: This operation is not supported by the provider,
- so Finch cannot support
- - `client_access_only`: This behavior is supported by the provider, but only
- available to the client and not to Finch
- """
diff --git a/src/finch/types/shared_params/paging.py b/src/finch/types/shared_params/paging.py
deleted file mode 100644
index e3ea2ca9..00000000
--- a/src/finch/types/shared_params/paging.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# File generated from our OpenAPI spec by Stainless.
-
-from __future__ import annotations
-
-from typing_extensions import TypedDict
-
-__all__ = ["Paging"]
-
-
-class Paging(TypedDict, total=False):
- count: int
- """The total number of elements for the entire query (not just the given page)"""
-
- offset: int
- """The current start index of the returned list of elements"""