groundx 2.3.0__py3-none-any.whl → 2.3.5__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.
Files changed (82) hide show
  1. groundx/__init__.py +16 -16
  2. groundx/buckets/__init__.py +2 -0
  3. groundx/buckets/client.py +47 -366
  4. groundx/buckets/raw_client.py +628 -0
  5. groundx/client.py +15 -17
  6. groundx/core/__init__.py +5 -0
  7. groundx/core/api_error.py +13 -5
  8. groundx/core/client_wrapper.py +4 -3
  9. groundx/core/force_multipart.py +16 -0
  10. groundx/core/http_client.py +70 -26
  11. groundx/core/http_response.py +55 -0
  12. groundx/core/jsonable_encoder.py +0 -1
  13. groundx/core/pydantic_utilities.py +69 -110
  14. groundx/core/serialization.py +7 -3
  15. groundx/customer/__init__.py +2 -0
  16. groundx/customer/client.py +31 -43
  17. groundx/customer/raw_client.py +91 -0
  18. groundx/documents/__init__.py +2 -0
  19. groundx/documents/client.py +122 -789
  20. groundx/documents/raw_client.py +1404 -0
  21. groundx/errors/__init__.py +2 -0
  22. groundx/errors/bad_request_error.py +4 -3
  23. groundx/errors/unauthorized_error.py +4 -3
  24. groundx/groups/__init__.py +2 -0
  25. groundx/groups/client.py +55 -520
  26. groundx/groups/raw_client.py +901 -0
  27. groundx/health/__init__.py +2 -0
  28. groundx/health/client.py +35 -101
  29. groundx/health/raw_client.py +193 -0
  30. groundx/ingest.py +2 -2
  31. groundx/search/__init__.py +2 -0
  32. groundx/search/client.py +82 -211
  33. groundx/search/raw_client.py +442 -0
  34. groundx/search/types/__init__.py +2 -0
  35. groundx/types/__init__.py +16 -16
  36. groundx/types/bounding_box_detail.py +4 -4
  37. groundx/types/bucket_detail.py +5 -5
  38. groundx/types/bucket_list_response.py +17 -3
  39. groundx/types/bucket_response.py +3 -3
  40. groundx/types/bucket_update_detail.py +4 -4
  41. groundx/types/bucket_update_response.py +3 -3
  42. groundx/types/customer_detail.py +2 -2
  43. groundx/types/customer_response.py +3 -3
  44. groundx/types/document.py +4 -4
  45. groundx/types/document_detail.py +9 -4
  46. groundx/types/document_list_response.py +4 -4
  47. groundx/types/document_local_ingest_request.py +1 -0
  48. groundx/types/document_lookup_response.py +8 -3
  49. groundx/types/document_response.py +3 -3
  50. groundx/types/group_detail.py +4 -4
  51. groundx/types/group_list_response.py +17 -3
  52. groundx/types/group_response.py +3 -3
  53. groundx/types/health_response.py +3 -3
  54. groundx/types/health_response_health.py +3 -3
  55. groundx/types/health_service.py +5 -5
  56. groundx/types/ingest_local_document.py +3 -3
  57. groundx/types/ingest_local_document_metadata.py +9 -4
  58. groundx/types/ingest_remote_document.py +10 -5
  59. groundx/types/ingest_response.py +4 -4
  60. groundx/types/{process_status_response_ingest.py → ingest_status.py} +8 -7
  61. groundx/types/{ingest_response_ingest.py → ingest_status_light.py} +7 -5
  62. groundx/types/ingest_status_progress.py +26 -0
  63. groundx/types/{process_status_response_ingest_progress_errors.py → ingest_status_progress_cancelled.py} +4 -4
  64. groundx/types/{process_status_response_ingest_progress_complete.py → ingest_status_progress_complete.py} +4 -4
  65. groundx/types/{process_status_response_ingest_progress_cancelled.py → ingest_status_progress_errors.py} +4 -4
  66. groundx/types/{process_status_response_ingest_progress_processing.py → ingest_status_progress_processing.py} +4 -4
  67. groundx/types/message_response.py +2 -2
  68. groundx/types/meter_detail.py +2 -2
  69. groundx/types/processes_status_response.py +19 -2
  70. groundx/types/search_response.py +3 -3
  71. groundx/types/search_response_search.py +3 -3
  72. groundx/types/search_result_item.py +5 -5
  73. groundx/types/subscription_detail.py +3 -3
  74. groundx/types/subscription_detail_meters.py +5 -5
  75. groundx/types/website_source.py +4 -4
  76. {groundx-2.3.0.dist-info → groundx-2.3.5.dist-info}/METADATA +1 -1
  77. groundx-2.3.5.dist-info/RECORD +95 -0
  78. groundx/types/process_status_response.py +0 -20
  79. groundx/types/process_status_response_ingest_progress.py +0 -26
  80. groundx-2.3.0.dist-info/RECORD +0 -88
  81. {groundx-2.3.0.dist-info → groundx-2.3.5.dist-info}/LICENSE +0 -0
  82. {groundx-2.3.0.dist-info → groundx-2.3.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,95 @@
1
+ groundx/__init__.py,sha256=MWIVXsUXk75FZaVpUMUCs6vn5niRWDsKwSULcGxn8V4,2881
2
+ groundx/buckets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
3
+ groundx/buckets/client.py,sha256=OGD9D7SkaeBvS7aWDGTLmTUHt0cgnvn15eJq-5WWGoo,11324
4
+ groundx/buckets/raw_client.py,sha256=T2Ty5obN7eHbaxHGAimzjM8MGOmSOQEckhciyZkzcjE,23873
5
+ groundx/client.py,sha256=FsVhPSZ1kd70pOVv37zTbNSwBM7XdttSx4aEPobPoew,6412
6
+ groundx/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
7
+ groundx/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
8
+ groundx/core/client_wrapper.py,sha256=8zwdWhu0fj4LgeLSkd_NlCrfjBA3brzHFKRkF_fNBIE,1822
9
+ groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
10
+ groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
11
+ groundx/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
12
+ groundx/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
13
+ groundx/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
14
+ groundx/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
15
+ groundx/core/pydantic_utilities.py,sha256=HxbbISfaP1XBvzbIkc0ZcF_GHKd9BfYsJAcFh9B126k,10787
16
+ groundx/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
17
+ groundx/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
18
+ groundx/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
19
+ groundx/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
20
+ groundx/csv_splitter.py,sha256=6HGXdDpwBX_IJaCbla1WuirJERBTvjLzBf9OBtwGFWU,2254
21
+ groundx/customer/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
22
+ groundx/customer/client.py,sha256=OAW3fJcOjvSvmGBbQEiNRlPE-dt15yFZHYXq9qrSXnw,2710
23
+ groundx/customer/raw_client.py,sha256=7qz8GU8Qe4G16YzeZ2Rz_cHNODPMTevOt4toPqCe0io,3403
24
+ groundx/documents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
25
+ groundx/documents/client.py,sha256=bZ5AcpWNQgWsbFNM3hT1a-Ox4t42nzmZSjbimGkCSYo,31791
26
+ groundx/documents/raw_client.py,sha256=FGR_u0FUoRUYJJmpEYVxntsgpx1tkMGO0l284UBHTzM,57493
27
+ groundx/environment.py,sha256=CInm1_DKtZ1mrxutmKb1qqv82P33r_S87hZD3Hc1VB0,159
28
+ groundx/errors/__init__.py,sha256=Ua3Z6OWyRhcgrq0FSXOpwmOc4RxyTgzP2LXbkzGbMhk,234
29
+ groundx/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
30
+ groundx/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg63dQSA,340
31
+ groundx/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
32
+ groundx/groups/client.py,sha256=jPnFPv4FHvYBQxuFxjbQvdUWrhIB8kkKbzUkoosMUP0,16674
33
+ groundx/groups/raw_client.py,sha256=nP9yFh7MexjDUQU8TtB5j-HAmZJjQWOd78hu-KeMnRs,35111
34
+ groundx/health/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
35
+ groundx/health/client.py,sha256=kcGIlqCEzBl6fuwJaf3x-obOagXxyAlEFaPRH3qgdDs,4566
36
+ groundx/health/raw_client.py,sha256=_TDa-O13PtC0RYCAq4bx5FESz1oLDLp9WExyOKjsIjs,7430
37
+ groundx/ingest.py,sha256=GbCpuzqipBARt3FOTxTk9PpLxkQ4IS1SYnwlZBBcy7s,22399
38
+ groundx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ groundx/search/__init__.py,sha256=Y1EKHPBEh-ebo1YOikCHTHU9E8kBP2s7K4J_kZGzcOA,165
40
+ groundx/search/client.py,sha256=P4-oektRdgtfxoi_NiGDSOrB2dDWfO9M5kVy61CnCPQ,13599
41
+ groundx/search/raw_client.py,sha256=_qO5u62e1d0rVbRUeyJFdt85v7WT_bSHcSLf8wJvfgQ,19545
42
+ groundx/search/types/__init__.py,sha256=sy0s9qFdeT4Q3SJxK6hrulnsPirVpKkjxI29OqLTY0s,185
43
+ groundx/search/types/search_content_request_id.py,sha256=us7mYdzR0qPur_wR5I9BhHaLEzC5nLBRna6-xq4M1ec,128
44
+ groundx/types/__init__.py,sha256=m0r3rnMwQjkVrb0eAxL6bnUTCfUoIWzvklXn_iVS_HY,3604
45
+ groundx/types/bounding_box_detail.py,sha256=5_l3vFNIs2n-U2VXEpyPRcTcFKpMWrpvzQiIL88XNEs,1796
46
+ groundx/types/bucket_detail.py,sha256=sYKzUCPCAosh2jTFfSDtSn0bEsLL228kLjA51jFEYwY,1475
47
+ groundx/types/bucket_list_response.py,sha256=m1lO4PElbxc5VFCLchPtdWfCTlfrm8enpTe3bg1ng7Y,1060
48
+ groundx/types/bucket_response.py,sha256=hXYDfCrxJSX3lvVoQpXTYpNOfMCgXmIJSBDvcH9Wh6g,572
49
+ groundx/types/bucket_update_detail.py,sha256=S4wOHozr5o3XyD-a-dP4fM1DqdFPh_HC0OZT3Ifq_g0,702
50
+ groundx/types/bucket_update_response.py,sha256=2gSJ77lwb12YPBnDXFflZTtFa6vIen1jdifRFmH1nFc,597
51
+ groundx/types/customer_detail.py,sha256=yvSzH-6YZviBNGgeAk3uB1Tvrpp5FW1bEI_wmKklF2c,1058
52
+ groundx/types/customer_response.py,sha256=jIU8Q5hAFJA3Bt1-3E4p00blQLbjeNAF5-pfXSiih1w,582
53
+ groundx/types/document.py,sha256=NQm6jHmb6Zm-5nb5oKL5koETxwPhnPH9RXCDSJw_N1s,1833
54
+ groundx/types/document_detail.py,sha256=ENAeaf6shIHpIsDbOdDjX6DRrC6ButKfLMrgw-vANsM,2506
55
+ groundx/types/document_list_response.py,sha256=n8yfjEA_k-_dPmRxsOAK2vXa7HtDkPNO8FF0dB4LFI4,803
56
+ groundx/types/document_local_ingest_request.py,sha256=y3rIqid4VXWNgb6wTis7zQmxsnKYIwOiFQwv5GLmpsQ,198
57
+ groundx/types/document_lookup_response.py,sha256=-ZXxd5RvE980PbTu_AOiQ-cIcHCG4HVkqphRZjCCd2s,1252
58
+ groundx/types/document_response.py,sha256=wlmj7D_1v5j688U81M583mL3tp3tBWMZl66irRz2V-A,606
59
+ groundx/types/document_type.py,sha256=JQiwb7ZQOCKHPyCR71RYBue3akPsEQj3C2T-FMDolb8,431
60
+ groundx/types/group_detail.py,sha256=VrQqqwKpI6E9_aQCUEQ4ceA8NDEBfhxn15rKZBhZTHk,1718
61
+ groundx/types/group_list_response.py,sha256=UmYJ0WdT1-kbQogJnUq80tCc-V7Wfbn1PtZYHPFTK4A,1051
62
+ groundx/types/group_response.py,sha256=xABiBGzeqRDenFQkqM8te4Q8IZuABODxWEYxh3ogCdw,567
63
+ groundx/types/health_response.py,sha256=8WCYFUTZ9j6BNmXojbc1eGR-8dSHLh49QtwsMpdETr4,597
64
+ groundx/types/health_response_health.py,sha256=dNLtLzhz1Llmeg9rmuE4jW8qacM4H0cDvzrS5lzHEJk,596
65
+ groundx/types/health_service.py,sha256=cd6w-iM0jdJNR3QJgqdYvKx1A1Z96L985Qkxpw4DH54,1047
66
+ groundx/types/health_service_status.py,sha256=ugKJXlx8QGi83n_J6s1frFrW1hYfOn3Dlb_pPNexwMA,185
67
+ groundx/types/ingest_local_document.py,sha256=Tp8B9-8BmIn-oqfrG1YpSbcL7PmQYmJdutP2G7Psn9A,717
68
+ groundx/types/ingest_local_document_metadata.py,sha256=eQGe_Uu4OBASwNBU1m55Eg8t2Sb7Kf6ORQgtykL6Vyg,1921
69
+ groundx/types/ingest_remote_document.py,sha256=JFlFz3C0ygpDhFhXxjd3UszzxeIUAf3O8lhYVxY8nz8,2047
70
+ groundx/types/ingest_response.py,sha256=T62sxuUJZbQzy4zbfeLQLz6XoWIwDaF8gCPv2jfyD9I,572
71
+ groundx/types/ingest_status.py,sha256=2dnLeNQkwMj04T-kxWMlCPBaZqr07gDYSvai3ekp0UE,1004
72
+ groundx/types/ingest_status_light.py,sha256=LbqztAxJtDD31xLPpRY1634VAkqjvBCJfJIiBOYr4h0,893
73
+ groundx/types/ingest_status_progress.py,sha256=fLXTmkvKjqLrpylhqpKHjaD0r7iBj_GsQjwu3jCl2G8,1081
74
+ groundx/types/ingest_status_progress_cancelled.py,sha256=cj-esVBst_br_OpbLzxeuJNYnlMVE4pY4pCHh5eCx14,672
75
+ groundx/types/ingest_status_progress_complete.py,sha256=f0Wz12NCUoyoUOlb_NdARW6uVF2wun-nTyhdz136gPY,671
76
+ groundx/types/ingest_status_progress_errors.py,sha256=mnvOcGLB9H3KKhZ3qTgtl4BN-cg9RsPZjeUakvvhz9w,669
77
+ groundx/types/ingest_status_progress_processing.py,sha256=O90rPxFfUl0Ny3pAW8HGQ3u-ifM2CeEQ98gbWGcMJvM,673
78
+ groundx/types/message_response.py,sha256=c2zA0lrSYmKSCZu0tYBm_Wamp6GsjwLMqvPAXbHUick,549
79
+ groundx/types/meter_detail.py,sha256=BTvrdT-g2hVeJ8xljMfgItGoi6KpOjXu7O332_iuJx0,1116
80
+ groundx/types/process_level.py,sha256=gDFm3FKDpoL_W7jGlZcv9EMHwSALiT7mnJuV6EJ4dyA,152
81
+ groundx/types/processes_status_response.py,sha256=twks7OK0EriUl8xSgCe41rudjPlIH1kaBUG-DriI2t4,662
82
+ groundx/types/processing_status.py,sha256=nUvsnKcDOFcT6NRDCTQ1vpm4KDNiKy8_b7PxaiKxnZM,226
83
+ groundx/types/search_response.py,sha256=IvGBcItUHYUpaglEbhklPRsQ9YbmoMjSM-mTrAwQkSk,597
84
+ groundx/types/search_response_search.py,sha256=zBWZfRp99e4bd5TR-CMbAvr3aC9S2OQEIoKfp6M38G4,1649
85
+ groundx/types/search_result_item.py,sha256=6OMgxySjj517ijLvZiamhnM0UnvmXr6-gNTDzp0L_g4,3047
86
+ groundx/types/sort.py,sha256=oXap7qO8jI5I2wRhjdEfei4x0sEk2OEId2ll92EFOF8,147
87
+ groundx/types/sort_order.py,sha256=hfJkStz6zHf3iWQFaVLkNCZPdyj5JS7TsQlN4Ij8Q5A,148
88
+ groundx/types/subscription_detail.py,sha256=GEEivqyiLsZtd8Ow7mqqwF1y0m0tHD-t9r9dnZsDKAw,732
89
+ groundx/types/subscription_detail_meters.py,sha256=vGqiR2uupVh5177DfOghjoe5mwzVhoWljKzPF-twUc0,794
90
+ groundx/types/website_source.py,sha256=53jWDBtSrJVOsBVtVbZbjhEAsd0QGkXa7IuKO4AooLs,1542
91
+ groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
92
+ groundx-2.3.5.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
93
+ groundx-2.3.5.dist-info/METADATA,sha256=MnH4Udsl_l3_pHEpD7aY-X9UB1t5sszxXkx8_hr2YR0,5173
94
+ groundx-2.3.5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
95
+ groundx-2.3.5.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from ..core.pydantic_utilities import UniversalBaseModel
4
- from .process_status_response_ingest import ProcessStatusResponseIngest
5
- from ..core.pydantic_utilities import IS_PYDANTIC_V2
6
- import typing
7
- import pydantic
8
-
9
-
10
- class ProcessStatusResponse(UniversalBaseModel):
11
- ingest: ProcessStatusResponseIngest
12
-
13
- if IS_PYDANTIC_V2:
14
- model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
15
- else:
16
-
17
- class Config:
18
- frozen = True
19
- smart_union = True
20
- extra = pydantic.Extra.allow
@@ -1,26 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from ..core.pydantic_utilities import UniversalBaseModel
4
- import typing
5
- from .process_status_response_ingest_progress_cancelled import ProcessStatusResponseIngestProgressCancelled
6
- from .process_status_response_ingest_progress_complete import ProcessStatusResponseIngestProgressComplete
7
- from .process_status_response_ingest_progress_errors import ProcessStatusResponseIngestProgressErrors
8
- from .process_status_response_ingest_progress_processing import ProcessStatusResponseIngestProgressProcessing
9
- from ..core.pydantic_utilities import IS_PYDANTIC_V2
10
- import pydantic
11
-
12
-
13
- class ProcessStatusResponseIngestProgress(UniversalBaseModel):
14
- cancelled: typing.Optional[ProcessStatusResponseIngestProgressCancelled] = None
15
- complete: typing.Optional[ProcessStatusResponseIngestProgressComplete] = None
16
- errors: typing.Optional[ProcessStatusResponseIngestProgressErrors] = None
17
- processing: typing.Optional[ProcessStatusResponseIngestProgressProcessing] = None
18
-
19
- if IS_PYDANTIC_V2:
20
- model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
21
- else:
22
-
23
- class Config:
24
- frozen = True
25
- smart_union = True
26
- extra = pydantic.Extra.allow
@@ -1,88 +0,0 @@
1
- groundx/__init__.py,sha256=h2Hzs9yA7uz0N4s_xzpzbE9Rkkq0TA_My-xqjKZWKlU,3103
2
- groundx/buckets/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
3
- groundx/buckets/client.py,sha256=4jlc9vfIult1mMJ4FZW4_KFJybZPStZt1FUplIgrxbU,23947
4
- groundx/client.py,sha256=dIW9OyrMyfC1N7HSxRrHh0w_8rJ8osNUOPdYD6ueQ6g,6515
5
- groundx/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
6
- groundx/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
7
- groundx/core/client_wrapper.py,sha256=8jK6xYLcQGKejOGCZNZNBDgRUuZdWlW5WCXSA5K1yIo,1802
8
- groundx/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
9
- groundx/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
10
- groundx/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
11
- groundx/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
12
- groundx/core/pydantic_utilities.py,sha256=UibVGGYmBDsV834x8CtckRDrTIL4lYJPMrcq9yvf7RM,11973
13
- groundx/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
14
- groundx/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
15
- groundx/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
16
- groundx/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
17
- groundx/csv_splitter.py,sha256=6HGXdDpwBX_IJaCbla1WuirJERBTvjLzBf9OBtwGFWU,2254
18
- groundx/customer/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
19
- groundx/customer/client.py,sha256=C_JANeDewRD1Kg-q7LPxdiOSWbYSTOiYlBYZLRYPI44,3467
20
- groundx/documents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
21
- groundx/documents/client.py,sha256=TVmQd5Q3DjuUbve7CNG90ufn65EyselMx7bAiUIgdSc,58805
22
- groundx/environment.py,sha256=CInm1_DKtZ1mrxutmKb1qqv82P33r_S87hZD3Hc1VB0,159
23
- groundx/errors/__init__.py,sha256=-prNYsFd8xxM4va0vR1raZjcd10tllOJKyEWjX_pwdU,214
24
- groundx/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
25
- groundx/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
26
- groundx/groups/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
- groundx/groups/client.py,sha256=bytQRh9m7e4vIuYHb7dD1kCTQZvyBxedCqGnmmLqrsI,35237
28
- groundx/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
29
- groundx/health/client.py,sha256=fcTa21RWPyBuT77PQ0EncC6rBaW_DrYlRvudy9-0H58,7545
30
- groundx/ingest.py,sha256=1vp0-E-Von_kRtTpgykSVxQOqPWzWod4Og3G4l0RJFg,22424
31
- groundx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- groundx/search/__init__.py,sha256=RagVzjShP33mDg9o4N3kGzV0egL1RYNjCpXPE8VzMYE,145
33
- groundx/search/client.py,sha256=zrrqFy0HowDUYPsMU4nfvDV2RgmkEQ4E8WYNktu3xcs,18684
34
- groundx/search/types/__init__.py,sha256=fNFXQloPa1PHHO8VZim6KQNMA9N5EZtfSkissdxtY_c,165
35
- groundx/search/types/search_content_request_id.py,sha256=us7mYdzR0qPur_wR5I9BhHaLEzC5nLBRna6-xq4M1ec,128
36
- groundx/types/__init__.py,sha256=FIfetK3iKUmtyHI8_hUTybZ5mW_MUtOshC7sFm4-Qps,3963
37
- groundx/types/bounding_box_detail.py,sha256=51qcen326NTHY2ZqH1cFXut0_MCmk39EbLoDAwotdq4,1832
38
- groundx/types/bucket_detail.py,sha256=bQjCvfyWydjItmzNNTvH-iWxNDOggd7R7X1alFZzlEY,1511
39
- groundx/types/bucket_list_response.py,sha256=jC0NBsLCYDSwQrBzuW0g3PWFycjtKl8YRkKhic_-1DA,650
40
- groundx/types/bucket_response.py,sha256=E8V7H2_TVKdmMsGCBjwzdf2bg4rUjiXFnhXtVGVCqZQ,608
41
- groundx/types/bucket_update_detail.py,sha256=B4atQMDSXEdx7otcDbvgsrAHtXNz9swMnOsXRe25coc,738
42
- groundx/types/bucket_update_response.py,sha256=h5RJTEpc4WPI_C4sPvsJZo7IxKppnPR-I9VGEQryRlc,633
43
- groundx/types/customer_detail.py,sha256=RNm0qXvKx6YvVmkVJZeCNIz7n8_siFMXJ_AGtH3i5Z0,1094
44
- groundx/types/customer_response.py,sha256=_RbuanXhCWQkCeQ0dkwPgsjNBoBgNpixiNfRpXcMew8,618
45
- groundx/types/document.py,sha256=oU-rDYOVCVAxGdxI0OFwOsAVAx86_6MQ-je7Q9ES0mY,1869
46
- groundx/types/document_detail.py,sha256=i1UfcQAGYo9v1HwrrpzQPw_O0qA7IOXwOUuPV1yU8nI,2323
47
- groundx/types/document_list_response.py,sha256=Z0Hm5VBwI0qatbSp6nYHh0RrGwJN3Gqh2D72FfDseZk,839
48
- groundx/types/document_local_ingest_request.py,sha256=zqaT_QgYcEc8AfVwZm-O5jLTEiYSsO-i3VVgZ_7xl7w,197
49
- groundx/types/document_lookup_response.py,sha256=hZBwUO2pI6xFfeh7DmX_l1xRoh-5oaVNgUVxd00ml14,1097
50
- groundx/types/document_response.py,sha256=EBDrYhTYoA3Q3ZpqwFEYmTgE3tY86TScFPhBnc3_ItI,642
51
- groundx/types/document_type.py,sha256=JQiwb7ZQOCKHPyCR71RYBue3akPsEQj3C2T-FMDolb8,431
52
- groundx/types/group_detail.py,sha256=ms8iEEE1d88PTNwJOHeSiyoXn0hKdMrjJhkM2tlMdMs,1754
53
- groundx/types/group_list_response.py,sha256=mDIDaW8uWo4Wd-sk8_SzaZeUD1EC4ZqcJpbieQLRszc,645
54
- groundx/types/group_response.py,sha256=SGqaQYPV9jaA4ET3x2adhkgL9NQQB9XwolXTuBQ1Xx0,603
55
- groundx/types/health_response.py,sha256=3UpYL2IZb56tTo-fOpSU-0OTRyWgpYiB3pMU3sfjWUU,633
56
- groundx/types/health_response_health.py,sha256=I0QeEljFp6l5LCJbCTArW031Om84egePgnGdtE6WXlI,632
57
- groundx/types/health_service.py,sha256=M1-h1EJSpAXw-j3pY-09_g_WKkO0spdj8e7pgPzSGf0,1083
58
- groundx/types/health_service_status.py,sha256=ugKJXlx8QGi83n_J6s1frFrW1hYfOn3Dlb_pPNexwMA,185
59
- groundx/types/ingest_local_document.py,sha256=am6TPgHu40S4Lzo9hMkDRauYnc-AWBuYL0Lgk85Fseg,753
60
- groundx/types/ingest_local_document_metadata.py,sha256=GBWalwdF6AzQSlfxgkwOh8dJ8T2aPB3XHcNaNYR0L8o,1738
61
- groundx/types/ingest_remote_document.py,sha256=u79fsF-zwkXs6vm80-aFaChi3rMpC1e1KHFOlqLNWwk,1863
62
- groundx/types/ingest_response.py,sha256=139rn8wpT44jlUzYXiy0r8XzN2U_OtdLltpSbRU0TyA,633
63
- groundx/types/ingest_response_ingest.py,sha256=8FKApYNvS6KFxEKm05pKpKJ0BAagxoE0cWeTt-qjm1g,781
64
- groundx/types/message_response.py,sha256=g_FJJyXYg_3fjZQueXkcy11q-qUfZGdVdALddHBieh4,585
65
- groundx/types/meter_detail.py,sha256=FybpzJj5QrtlDXT26ejw2CH1koOWe0ZeG-MS0n63HSI,1152
66
- groundx/types/process_level.py,sha256=gDFm3FKDpoL_W7jGlZcv9EMHwSALiT7mnJuV6EJ4dyA,152
67
- groundx/types/process_status_response.py,sha256=ScmEqF9TVGeugFLshyFbGQpM4MkAawsEJ3sUBILP87c,662
68
- groundx/types/process_status_response_ingest.py,sha256=tZteJy-DI_2jT6eLbTJ812qJc_WG9Sd44w7G1LVatLQ,1066
69
- groundx/types/process_status_response_ingest_progress.py,sha256=4rPMHdLEc6PC5qTjMBAB4IA-l38t5KPcN8qtET7qKfc,1320
70
- groundx/types/process_status_response_ingest_progress_cancelled.py,sha256=PpvHXzb6ewD-nWUSMpE0T4ZS0UtIo4iP57os1MP4CWQ,723
71
- groundx/types/process_status_response_ingest_progress_complete.py,sha256=6-UuZCHK28No15RPigumAJ4r_gAUjbElH3Brg7ED8pU,722
72
- groundx/types/process_status_response_ingest_progress_errors.py,sha256=aSpl99wXwcTFhtkB47BpBZATcqzQS6cXHssKLPdtnzQ,720
73
- groundx/types/process_status_response_ingest_progress_processing.py,sha256=rqaTkeki5Vf3SgeeZtuSRtioGqmj99JcbfKoeI-Hgos,724
74
- groundx/types/processes_status_response.py,sha256=LSCEf3i1Gs3QDCYye2lw8zmZDWODtDMNu9aMf1YIfH8,200
75
- groundx/types/processing_status.py,sha256=nUvsnKcDOFcT6NRDCTQ1vpm4KDNiKy8_b7PxaiKxnZM,226
76
- groundx/types/search_response.py,sha256=EUwAFEHfzEisHCSTxa5zAy7VWY-bebV5VLx0b7irNlI,633
77
- groundx/types/search_response_search.py,sha256=fhEbG9qQZHWlxpI_A9rLOHhm7VbzECrTLhicHkR2Xi0,1685
78
- groundx/types/search_result_item.py,sha256=ut1q-aSTnzfRCfEQ8sdrf2A20ix2NF5iisiah5vPaww,3083
79
- groundx/types/sort.py,sha256=oXap7qO8jI5I2wRhjdEfei4x0sEk2OEId2ll92EFOF8,147
80
- groundx/types/sort_order.py,sha256=hfJkStz6zHf3iWQFaVLkNCZPdyj5JS7TsQlN4Ij8Q5A,148
81
- groundx/types/subscription_detail.py,sha256=WNfUw2EMVECIvNYcV2s51zZ6T3Utc4zYXw63bPaeM6U,768
82
- groundx/types/subscription_detail_meters.py,sha256=lBa8-1QlMVHjr5RLGqhiTKnD1KMM0AAHTWvz9TVtG8w,830
83
- groundx/types/website_source.py,sha256=3WeRCiilNKKBTfhwgjo3jbcVI3vLTeM-KxI6dVzpg9o,1578
84
- groundx/version.py,sha256=1yVogKaq260fQfckM2RYN2144SEw0QROsZW8ICtkG4U,74
85
- groundx-2.3.0.dist-info/LICENSE,sha256=dFE6nY1bHnSn6NqmdlghlU1gQqLqYNphrceGVehSa7o,1065
86
- groundx-2.3.0.dist-info/METADATA,sha256=RKrqM0mYmmZSPBj7n8AH-3BGYZyAuSiTmycUbs3yCJI,5173
87
- groundx-2.3.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
88
- groundx-2.3.0.dist-info/RECORD,,