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 +6 -4
- groundx/core/client_wrapper.py +1 -1
- groundx/documents/client.py +273 -460
- groundx/types/__init__.py +6 -4
- groundx/types/document_local_ingest_request.py +6 -0
- groundx/types/ingest_local_document.py +5 -23
- groundx/types/{ingest_document.py → ingest_local_document_metadata.py} +6 -9
- groundx/types/{crawl_website_source.py → website_source.py} +1 -1
- {groundx-2.0.19.dist-info → groundx-2.0.21.dist-info}/METADATA +14 -16
- {groundx-2.0.19.dist-info → groundx-2.0.21.dist-info}/RECORD +12 -11
- {groundx-2.0.19.dist-info → groundx-2.0.21.dist-info}/LICENSE +0 -0
- {groundx-2.0.19.dist-info → groundx-2.0.21.dist-info}/WHEEL +0 -0
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",
|
groundx/core/client_wrapper.py
CHANGED