groundx 2.0.19__py3-none-any.whl → 2.0.21__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
groundx/__init__.py CHANGED
@@ -7,11 +7,11 @@ from .types import (
7
7
  BucketResponse,
8
8
  BucketUpdateDetail,
9
9
  BucketUpdateResponse,
10
- CrawlWebsiteSource,
11
10
  CustomerDetail,
12
11
  CustomerResponse,
13
12
  DocumentDetail,
14
13
  DocumentListResponse,
14
+ DocumentLocalIngestRequest,
15
15
  DocumentLookupResponse,
16
16
  DocumentResponse,
17
17
  DocumentType,
@@ -22,8 +22,8 @@ from .types import (
22
22
  HealthResponseHealth,
23
23
  HealthService,
24
24
  HealthServiceStatus,
25
- IngestDocument,
26
25
  IngestLocalDocument,
26
+ IngestLocalDocumentMetadata,
27
27
  IngestRemoteDocument,
28
28
  IngestResponse,
29
29
  IngestResponseIngest,
@@ -44,6 +44,7 @@ from .types import (
44
44
  SortOrder,
45
45
  SubscriptionDetail,
46
46
  SubscriptionDetailMeters,
47
+ WebsiteSource,
47
48
  )
48
49
  from .errors import BadRequestError, UnauthorizedError
49
50
  from . import buckets, customer, documents, groups, health, search
@@ -61,11 +62,11 @@ __all__ = [
61
62
  "BucketResponse",
62
63
  "BucketUpdateDetail",
63
64
  "BucketUpdateResponse",
64
- "CrawlWebsiteSource",
65
65
  "CustomerDetail",
66
66
  "CustomerResponse",
67
67
  "DocumentDetail",
68
68
  "DocumentListResponse",
69
+ "DocumentLocalIngestRequest",
69
70
  "DocumentLookupResponse",
70
71
  "DocumentResponse",
71
72
  "DocumentType",
@@ -78,8 +79,8 @@ __all__ = [
78
79
  "HealthResponseHealth",
79
80
  "HealthService",
80
81
  "HealthServiceStatus",
81
- "IngestDocument",
82
82
  "IngestLocalDocument",
83
+ "IngestLocalDocumentMetadata",
83
84
  "IngestRemoteDocument",
84
85
  "IngestResponse",
85
86
  "IngestResponseIngest",
@@ -102,6 +103,7 @@ __all__ = [
102
103
  "SubscriptionDetail",
103
104
  "SubscriptionDetailMeters",
104
105
  "UnauthorizedError",
106
+ "WebsiteSource",
105
107
  "__version__",
106
108
  "buckets",
107
109
  "customer",
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "groundx",
19
- "X-Fern-SDK-Version": "2.0.19",
19
+ "X-Fern-SDK-Version": "2.0.21",
20
20
  }
21
21
  headers["X-API-Key"] = self.api_key
22
22
  return headers