elasticsearch 9.0.1__py3-none-any.whl → 9.1.0__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 (108) hide show
  1. elasticsearch/__init__.py +3 -3
  2. elasticsearch/_async/client/__init__.py +93 -249
  3. elasticsearch/_async/client/async_search.py +4 -4
  4. elasticsearch/_async/client/autoscaling.py +4 -4
  5. elasticsearch/_async/client/cat.py +620 -58
  6. elasticsearch/_async/client/ccr.py +13 -13
  7. elasticsearch/_async/client/cluster.py +32 -22
  8. elasticsearch/_async/client/connector.py +30 -30
  9. elasticsearch/_async/client/dangling_indices.py +3 -3
  10. elasticsearch/_async/client/enrich.py +5 -5
  11. elasticsearch/_async/client/eql.py +14 -6
  12. elasticsearch/_async/client/esql.py +125 -9
  13. elasticsearch/_async/client/features.py +2 -2
  14. elasticsearch/_async/client/fleet.py +3 -3
  15. elasticsearch/_async/client/graph.py +1 -1
  16. elasticsearch/_async/client/ilm.py +11 -11
  17. elasticsearch/_async/client/indices.py +605 -117
  18. elasticsearch/_async/client/inference.py +523 -116
  19. elasticsearch/_async/client/ingest.py +9 -16
  20. elasticsearch/_async/client/license.py +11 -11
  21. elasticsearch/_async/client/logstash.py +3 -3
  22. elasticsearch/_async/client/migration.py +3 -3
  23. elasticsearch/_async/client/ml.py +75 -87
  24. elasticsearch/_async/client/monitoring.py +1 -1
  25. elasticsearch/_async/client/nodes.py +7 -7
  26. elasticsearch/_async/client/query_rules.py +8 -8
  27. elasticsearch/_async/client/rollup.py +9 -30
  28. elasticsearch/_async/client/search_application.py +10 -10
  29. elasticsearch/_async/client/searchable_snapshots.py +4 -4
  30. elasticsearch/_async/client/security.py +79 -81
  31. elasticsearch/_async/client/shutdown.py +3 -3
  32. elasticsearch/_async/client/simulate.py +1 -1
  33. elasticsearch/_async/client/slm.py +9 -9
  34. elasticsearch/_async/client/snapshot.py +64 -21
  35. elasticsearch/_async/client/sql.py +6 -6
  36. elasticsearch/_async/client/ssl.py +1 -1
  37. elasticsearch/_async/client/synonyms.py +26 -7
  38. elasticsearch/_async/client/tasks.py +4 -4
  39. elasticsearch/_async/client/text_structure.py +4 -4
  40. elasticsearch/_async/client/transform.py +11 -11
  41. elasticsearch/_async/client/watcher.py +17 -15
  42. elasticsearch/_async/client/xpack.py +2 -2
  43. elasticsearch/_otel.py +8 -8
  44. elasticsearch/_sync/client/__init__.py +93 -249
  45. elasticsearch/_sync/client/async_search.py +4 -4
  46. elasticsearch/_sync/client/autoscaling.py +4 -4
  47. elasticsearch/_sync/client/cat.py +620 -58
  48. elasticsearch/_sync/client/ccr.py +13 -13
  49. elasticsearch/_sync/client/cluster.py +32 -22
  50. elasticsearch/_sync/client/connector.py +30 -30
  51. elasticsearch/_sync/client/dangling_indices.py +3 -3
  52. elasticsearch/_sync/client/enrich.py +5 -5
  53. elasticsearch/_sync/client/eql.py +14 -6
  54. elasticsearch/_sync/client/esql.py +125 -9
  55. elasticsearch/_sync/client/features.py +2 -2
  56. elasticsearch/_sync/client/fleet.py +3 -3
  57. elasticsearch/_sync/client/graph.py +1 -1
  58. elasticsearch/_sync/client/ilm.py +11 -11
  59. elasticsearch/_sync/client/indices.py +605 -117
  60. elasticsearch/_sync/client/inference.py +523 -116
  61. elasticsearch/_sync/client/ingest.py +9 -16
  62. elasticsearch/_sync/client/license.py +11 -11
  63. elasticsearch/_sync/client/logstash.py +3 -3
  64. elasticsearch/_sync/client/migration.py +3 -3
  65. elasticsearch/_sync/client/ml.py +75 -87
  66. elasticsearch/_sync/client/monitoring.py +1 -1
  67. elasticsearch/_sync/client/nodes.py +7 -7
  68. elasticsearch/_sync/client/query_rules.py +8 -8
  69. elasticsearch/_sync/client/rollup.py +9 -30
  70. elasticsearch/_sync/client/search_application.py +10 -10
  71. elasticsearch/_sync/client/searchable_snapshots.py +4 -4
  72. elasticsearch/_sync/client/security.py +79 -81
  73. elasticsearch/_sync/client/shutdown.py +3 -3
  74. elasticsearch/_sync/client/simulate.py +1 -1
  75. elasticsearch/_sync/client/slm.py +9 -9
  76. elasticsearch/_sync/client/snapshot.py +64 -21
  77. elasticsearch/_sync/client/sql.py +6 -6
  78. elasticsearch/_sync/client/ssl.py +1 -1
  79. elasticsearch/_sync/client/synonyms.py +26 -7
  80. elasticsearch/_sync/client/tasks.py +4 -4
  81. elasticsearch/_sync/client/text_structure.py +4 -4
  82. elasticsearch/_sync/client/transform.py +11 -11
  83. elasticsearch/_sync/client/watcher.py +17 -15
  84. elasticsearch/_sync/client/xpack.py +2 -2
  85. elasticsearch/_version.py +1 -1
  86. elasticsearch/compat.py +5 -0
  87. elasticsearch/dsl/__init__.py +2 -1
  88. elasticsearch/dsl/_async/document.py +1 -1
  89. elasticsearch/dsl/_sync/document.py +1 -1
  90. elasticsearch/dsl/aggs.py +20 -0
  91. elasticsearch/dsl/document_base.py +177 -17
  92. elasticsearch/dsl/field.py +241 -38
  93. elasticsearch/dsl/query.py +50 -5
  94. elasticsearch/dsl/response/__init__.py +1 -1
  95. elasticsearch/dsl/types.py +245 -21
  96. elasticsearch/dsl/utils.py +1 -1
  97. elasticsearch/esql/__init__.py +18 -0
  98. elasticsearch/esql/esql.py +1105 -0
  99. elasticsearch/esql/esql1.py1 +307 -0
  100. elasticsearch/esql/functions.py +1738 -0
  101. {elasticsearch-9.0.1.dist-info → elasticsearch-9.1.0.dist-info}/METADATA +3 -6
  102. elasticsearch-9.1.0.dist-info/RECORD +164 -0
  103. elasticsearch-9.0.1.dist-info/RECORD +0 -162
  104. elasticsearch-9.0.1.dist-info/licenses/LICENSE.txt +0 -175
  105. elasticsearch-9.0.1.dist-info/licenses/NOTICE.txt +0 -559
  106. {elasticsearch-9.0.1.dist-info → elasticsearch-9.1.0.dist-info}/WHEEL +0 -0
  107. {elasticsearch-9.0.1.dist-info → elasticsearch-9.1.0.dist-info}/licenses/LICENSE +0 -0
  108. {elasticsearch-9.0.1.dist-info → elasticsearch-9.1.0.dist-info}/licenses/NOTICE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elasticsearch
3
- Version: 9.0.1
3
+ Version: 9.1.0
4
4
  Summary: Python client for Elasticsearch
5
5
  Project-URL: Documentation, https://elasticsearch-py.readthedocs.io/
6
6
  Project-URL: Homepage, https://github.com/elastic/elasticsearch-py
@@ -10,9 +10,7 @@ Author-email: Elastic Client Library Maintainers <client-libs@elastic.co>
10
10
  Maintainer-email: Elastic Client Library Maintainers <client-libs@elastic.co>
11
11
  License-Expression: Apache-2.0
12
12
  License-File: LICENSE
13
- License-File: LICENSE.txt
14
13
  License-File: NOTICE
15
- License-File: NOTICE.txt
16
14
  Keywords: REST,client,elastic,elasticsearch,index,kibana,mapping,search
17
15
  Classifier: Development Status :: 5 - Production/Stable
18
16
  Classifier: Intended Audience :: Developers
@@ -20,7 +18,6 @@ Classifier: License :: OSI Approved :: Apache Software License
20
18
  Classifier: Operating System :: OS Independent
21
19
  Classifier: Programming Language :: Python
22
20
  Classifier: Programming Language :: Python :: 3
23
- Classifier: Programming Language :: Python :: 3.8
24
21
  Classifier: Programming Language :: Python :: 3.9
25
22
  Classifier: Programming Language :: Python :: 3.10
26
23
  Classifier: Programming Language :: Python :: 3.11
@@ -28,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
28
25
  Classifier: Programming Language :: Python :: 3.13
29
26
  Classifier: Programming Language :: Python :: Implementation :: CPython
30
27
  Classifier: Programming Language :: Python :: Implementation :: PyPy
31
- Requires-Python: >=3.8
32
- Requires-Dist: elastic-transport<9,>=8.15.1
28
+ Requires-Python: >=3.9
29
+ Requires-Dist: elastic-transport<10,>=9.1.0
33
30
  Requires-Dist: python-dateutil
34
31
  Requires-Dist: typing-extensions
35
32
  Provides-Extra: async
@@ -0,0 +1,164 @@
1
+ elasticsearch/__init__.py,sha256=w-nQI0H9nkcLaMGhkcxPrXYlGK8vbWlBA1wzwvNLwbI,3330
2
+ elasticsearch/_otel.py,sha256=stb3OahM13DX67aa_aUjK4_dL4rJfZeJ8m6lpXWZv60,4167
3
+ elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
4
+ elasticsearch/_version.py,sha256=Alg3L_AIKJUYcL8S2lMlqzy5O9usMMxOUyWxc5CX-cg,813
5
+ elasticsearch/client.py,sha256=D7XS3Fa57GEbBVIaJLQdzbA12_pdmRXCscdnwnXjn4U,5498
6
+ elasticsearch/compat.py,sha256=eGqNPiGy1me_Iqwc7GsEs2oagf_xeDnTwKyyVuFOp0s,2826
7
+ elasticsearch/exceptions.py,sha256=oIO4Nnasth_XXXqYgg1sOv2zAHa3Ba0yB_5StFPWK9Y,4271
8
+ elasticsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ elasticsearch/serializer.py,sha256=vLhhlU6fAjHXB-z2E5ieBe_XKWx4A0o-lbJY9Bknt70,8059
10
+ elasticsearch/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
11
+ elasticsearch/_async/helpers.py,sha256=Q5LIXoyjoHeShBUltwLIkGc3WqmqAYHW2ddLjzNpYQU,22801
12
+ elasticsearch/_async/client/__init__.py,sha256=2TJ-tbQt9zYzXrx9oZ4zsTsKfftY_wm4gPWCEYBTJcY,339538
13
+ elasticsearch/_async/client/_base.py,sha256=q-efl19moyBufyiX2WYRLfBkrcmT3TUVKPf_Kqs5NqA,15494
14
+ elasticsearch/_async/client/async_search.py,sha256=FMQvrvkzST1FU5d0uNM_Uhtj8nyVMa5ZH-u1alOBSTg,30588
15
+ elasticsearch/_async/client/autoscaling.py,sha256=w_nFB50Y-JzYGVSIsxQksO4reArwmDFucWBQuYQ_1VI,11263
16
+ elasticsearch/_async/client/cat.py,sha256=IURd4s4ZX5LYnrU3Z-TF0sQ7FLrVGXdxAaOpdR3ajzs,154520
17
+ elasticsearch/_async/client/ccr.py,sha256=zJyC2aibgy3FsO7PKmtLTMAKZwAuzWDGEaWJOI5D0eo,49891
18
+ elasticsearch/_async/client/cluster.py,sha256=gDSSeQ1ADHBZb_5fhj0X7U3IKs3lFbNR0Z8pbt56bOk,61861
19
+ elasticsearch/_async/client/connector.py,sha256=1Csr5-qFy9SKDZziIcPBXgbg666J-UnqMo1hQTbMjDQ,79065
20
+ elasticsearch/_async/client/dangling_indices.py,sha256=BBDlR4yBPAa9PTcsKB_6zatZ78V5SslqVaw0__tnF8w,8527
21
+ elasticsearch/_async/client/enrich.py,sha256=GkhZ-cDz3fW6QYpGXEUy1CNDxGkKf7YwIv8WEyb0dcQ,11294
22
+ elasticsearch/_async/client/eql.py,sha256=GaSOnUI5tU2HMBdatf5rqpK5VuGiqmJdkEhp4dKmejg,15932
23
+ elasticsearch/_async/client/esql.py,sha256=gCtdosQe-nm2_E8SJlYNRJ4tdry1R_VAsLRCx1ZKDcA,27172
24
+ elasticsearch/_async/client/features.py,sha256=ZyfSZOffg-GqxmjuwFyq4kxuAXyql5NrcOZesFq89Tg,6196
25
+ elasticsearch/_async/client/fleet.py,sha256=LfBNrAUSRnuRXHkt1Gr0Qet17vzRaMkQrReMKWyecfA,31093
26
+ elasticsearch/_async/client/graph.py,sha256=alPqbL-X4n3thYuqCENr1ewx7wBy3sbzHxeq9aTYzUw,5136
27
+ elasticsearch/_async/client/ilm.py,sha256=3Y4p5W5EW9243M08006GRoo_DNYaw8Fnt_0N7YKUa1U,28614
28
+ elasticsearch/_async/client/indices.py,sha256=DaXuGRL6hz1TD2yeSTfSZCa--40_SVV6tMNKDj5KaTE,299319
29
+ elasticsearch/_async/client/inference.py,sha256=x-rWo49lKH_80ERXDuSesO7sxQLXvNJPMzITpGtZoFU,124759
30
+ elasticsearch/_async/client/ingest.py,sha256=I3WrNMA1OydoNoTgCy492jb_G2D-k7kJ4J78-DSVWh4,31993
31
+ elasticsearch/_async/client/license.py,sha256=lB5LfSdJL-fM13xxx5HngA4mk0PXzShMFaBX5kIwe4M,16718
32
+ elasticsearch/_async/client/logstash.py,sha256=qZqAYdp1ApHqkcV5m7RPzlcTjaHwucBCbnaF29aPBiQ,6534
33
+ elasticsearch/_async/client/migration.py,sha256=UG7-cxRpdDh7AHIC1vqFOl0O8JFbj4_vjV7hDpA4Xyc,6410
34
+ elasticsearch/_async/client/ml.py,sha256=Cn8RSblkxImFn2KoAdnEcAzq66bS1OdSCfWUes4EUOY,267242
35
+ elasticsearch/_async/client/monitoring.py,sha256=OmvNcI5eTkEuQA2th0CENxf9oq8drRwaV0brH5Prd4k,3849
36
+ elasticsearch/_async/client/nodes.py,sha256=ThIqSXvmck73GXpJ0gQW7oS9eOT7I-_VmsT8-tD2EwI,24030
37
+ elasticsearch/_async/client/query_rules.py,sha256=TENSeOWh-zKs-33-b8V64wX3LIsT_JprrWVlnqS864k,19431
38
+ elasticsearch/_async/client/rollup.py,sha256=IdcQmUNIRX3DtA8eh4JjHftJDcRPYW-io93t8TkUcgA,28065
39
+ elasticsearch/_async/client/search_application.py,sha256=4V6NWI-gkupfsdZlSNaNZJT-GVTUZmjGe8N2l_UkQSs,22147
40
+ elasticsearch/_async/client/searchable_snapshots.py,sha256=zxUq1aOmZGNsFXMAqcomzLzdoAFZwvGan4yI9OIA4jY,12706
41
+ elasticsearch/_async/client/security.py,sha256=8RvAuVw_Qmghg2h5HtMm2vPN01jp3mO9yvmNhPoJRkQ,222456
42
+ elasticsearch/_async/client/shutdown.py,sha256=yqabDXSmf0RCybvQ_7CedBYDJpHV7TRagAEDBfM9KSI,13252
43
+ elasticsearch/_async/client/simulate.py,sha256=vM_HumLw00e6AIyvc7WgTU0kKVCSf3zie3rJ2x4GOTA,7348
44
+ elasticsearch/_async/client/slm.py,sha256=I4Q08KAkHFa7xUSmiuqphP0MCEiGWY-MoT1c2peN2Sw,24359
45
+ elasticsearch/_async/client/snapshot.py,sha256=k0Ym1t4vAIhkF6MrprKqeAzd4kjbAHzvyDDK2lEDZk4,79363
46
+ elasticsearch/_async/client/sql.py,sha256=zfhMdp_cjBaT7a90w60fJkWBXgt0LiAwmmTGt5ULk0Y,20112
47
+ elasticsearch/_async/client/ssl.py,sha256=Z1uuKUwJ7TqLu9kFXU70TzL3DhOvWozVsZPMyujwo9E,3776
48
+ elasticsearch/_async/client/synonyms.py,sha256=Jyr8k597KfJLv7BUnaUCYeS6Fca6Y4OwHG1bFvcyYrM,17552
49
+ elasticsearch/_async/client/tasks.py,sha256=pZswnY0zwaq9lN5uXEw_yAfX3tFQbnyqrCpRJvP4HGQ,13671
50
+ elasticsearch/_async/client/text_structure.py,sha256=pax0_I4x6CoHyW89FAP1stM2UWj-40DwYkesmZN6dVE,40665
51
+ elasticsearch/_async/client/transform.py,sha256=vueOYqhsYp6jmjaEJ40dSGDyQerYEWKBl-JxjAtPVLY,44397
52
+ elasticsearch/_async/client/utils.py,sha256=h64qW1YcQZoJdEpDiYqkgnD3Q_0r2Y_ltUiNpNzpekI,1449
53
+ elasticsearch/_async/client/watcher.py,sha256=PRIZWf2jz-rq5Iz4d7m1ETL2CnFftBXdgOGBl9Dq398,38316
54
+ elasticsearch/_async/client/xpack.py,sha256=prqyyZnzobd1g6XtdPCZBtTbDGXBwT8P_yWMGtcgvdM,5134
55
+ elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
56
+ elasticsearch/_sync/client/__init__.py,sha256=eMlv-dbdzmno5OsYA4BjEZ8hXMZ3plzegxmoK4uhA2w,338919
57
+ elasticsearch/_sync/client/_base.py,sha256=H3CZjE4sUUxVXCXSNsyIwBFuUJv8JS9Y5fujRqlqHjg,15424
58
+ elasticsearch/_sync/client/async_search.py,sha256=oyUKE2V-yEVROwkidf9H_tBfNCraSkBkBRwseYBef2I,30540
59
+ elasticsearch/_sync/client/autoscaling.py,sha256=dPvwTowyPCsG0KrQsOp-tfwDitYUSn_Nm7Ko3j6NYD4,11215
60
+ elasticsearch/_sync/client/cat.py,sha256=cKBkUCQMfPgeF5XpUTdm9pjTX1jxITtQgiVFAMb5DWU,154208
61
+ elasticsearch/_sync/client/ccr.py,sha256=LeJ4_Zvl3nR5McrpGSbNSfQEb_ryp6b1S6ccwZ5dftM,49735
62
+ elasticsearch/_sync/client/cluster.py,sha256=9DfMZRcDiMeKSoO2Rh0wLwhlkylZiNBqBC3ywspop70,61669
63
+ elasticsearch/_sync/client/connector.py,sha256=tER-YAwsO1BVjEHI6DMfi7lSy8qgNB2cPmJ9thSPfls,78705
64
+ elasticsearch/_sync/client/dangling_indices.py,sha256=nUck_TwXxuEFSkSFP8x3pRpQ3VIpI-xF0sMJpyEINU4,8491
65
+ elasticsearch/_sync/client/enrich.py,sha256=Xf00KGie3wo2Kot_sMl7_Eko7MAErUt5KfcB5s-LkbQ,11234
66
+ elasticsearch/_sync/client/eql.py,sha256=0IrH3wX7ZleUIiyBeKscCnOO_1cRd3ZIWWKvQxu_piA,15884
67
+ elasticsearch/_sync/client/esql.py,sha256=c-vdCaWFoeOE4lVq9b-pjbzeGb6o_GQqMFETb_ao9t4,27088
68
+ elasticsearch/_sync/client/features.py,sha256=z0IxlRIBa_gOP5cn07n2e5n6oWAigEbGPcg1uZ9iFf8,6172
69
+ elasticsearch/_sync/client/fleet.py,sha256=g0YFuGY1E21sZCXTZ5ux0BKj9Mf_4qNDxdCyA9I88m4,31057
70
+ elasticsearch/_sync/client/graph.py,sha256=n2w9YA81ZEdG5V9a6NJ4QuIvAjwrF6mzS-tFrfvj6KU,5124
71
+ elasticsearch/_sync/client/ilm.py,sha256=s7z3K18eGiDTNtz5j45P8DHQ1zL2nJ5RwqkJqwwXBW8,28482
72
+ elasticsearch/_sync/client/indices.py,sha256=dOz9fOO1ztn0YGd8SWxYvuX4bOeNqx9dShsH4lUCR68,298491
73
+ elasticsearch/_sync/client/inference.py,sha256=tIzROh_m9hOIJE6ZbbnxShoTW-Ej5lPE_4glH6qi8q4,124423
74
+ elasticsearch/_sync/client/ingest.py,sha256=xaQdq6gJ9VfxGWHEMRftE3HTv4qRkkr43h6b5Uupdk8,31849
75
+ elasticsearch/_sync/client/license.py,sha256=YvKDhb5ZtdENeI4NUKsmg7XnFf0B_-vxLkchsr_IzjQ,16634
76
+ elasticsearch/_sync/client/logstash.py,sha256=mKwAbRInhX6Mzf1hYbBBAYOa5PMkkUoSfdu1PSVrczc,6498
77
+ elasticsearch/_sync/client/migration.py,sha256=Pftb0x18hNgrxkkXmmvZCx3Pec_HUYISGHi7EH9O7Gg,6374
78
+ elasticsearch/_sync/client/ml.py,sha256=Cy8uoucLhJgJhUBRxtAxh5LGr7ES77_3eLAcSpRFJ-Y,266366
79
+ elasticsearch/_sync/client/monitoring.py,sha256=w7C-z-QR4DhotNPPKEIhU50CsDnyPKC9RUj2US_YVg0,3837
80
+ elasticsearch/_sync/client/nodes.py,sha256=BZKscFAblM-TRSAxvsA7Ig25D-Bo8mxq9OitEsAJ5-U,23946
81
+ elasticsearch/_sync/client/query_rules.py,sha256=a3F6nqQL4ZRlOxsf20t_9ub8iYCcHT-lPArzxz24yNU,19335
82
+ elasticsearch/_sync/client/rollup.py,sha256=9PGi-jQVhkzgUNI2DXCegOkENgLpoNcb3amRjZFSWUA,27969
83
+ elasticsearch/_sync/client/search_application.py,sha256=naI3xdbUOVYnVGspydHfXSvDIQ7KuoOPBhM7zWYo_OI,22027
84
+ elasticsearch/_sync/client/searchable_snapshots.py,sha256=nopBp-_l1toLVLggUT2ok11u5k7q__Zitv1gjkfN-zw,12658
85
+ elasticsearch/_sync/client/security.py,sha256=jLLzOCryWXG3w2aHmrSGA8mAXur6RJjyd4itLAxYJ0Q,221688
86
+ elasticsearch/_sync/client/shutdown.py,sha256=v1fJ0s_WfZtNkEYOLzZLI4gmEuKIHOEPNtPynpct_o0,13216
87
+ elasticsearch/_sync/client/simulate.py,sha256=e-AS5BwLhV2TAoS6DbE07uVeAVXw5YyTgEkuoprVRDI,7336
88
+ elasticsearch/_sync/client/slm.py,sha256=cEda_BlFc6NmufShLSuKHW55fDo687xEe4LAEn_yBpQ,24251
89
+ elasticsearch/_sync/client/snapshot.py,sha256=caaKqsst0zRFyVl_Fvpp6gOYOe8bWT6jcfeaJFE-04E,79207
90
+ elasticsearch/_sync/client/sql.py,sha256=X398k4R1zG1Yiz1UABuuU6nRDWnAblhi50xUzGyBgdE,20040
91
+ elasticsearch/_sync/client/ssl.py,sha256=KuI_Fk766kF2P9DQLqXlf0ZZb_Q1isSzrZn1uccID7U,3764
92
+ elasticsearch/_sync/client/synonyms.py,sha256=O9LgHAvlFg3THYjsPsGtBs-i0hgYRm7zrfr8Rbb_lS0,17468
93
+ elasticsearch/_sync/client/tasks.py,sha256=ynS6dgCQ6d8DINsWFmBg-CbE5CbXqp_3-dsP1GCjknU,13635
94
+ elasticsearch/_sync/client/text_structure.py,sha256=0rEDFVS-E96qIPppLvAgSs-YWe_Us3gwAdKCqlqVnxA,40617
95
+ elasticsearch/_sync/client/transform.py,sha256=4XQ5gc6VWR8hUbNzXL-5bO53cSnTJJjIkxdyqBdRiAE,44265
96
+ elasticsearch/_sync/client/utils.py,sha256=DxEShkaJzeycquaEVLbYXo00DmAqsVlBk8hyEtObxew,17187
97
+ elasticsearch/_sync/client/watcher.py,sha256=2tq1Sur4OKo0rHyouItrziOj8JbQfFO3cmoIfy_QYGo,38160
98
+ elasticsearch/_sync/client/xpack.py,sha256=nWtWSAoxj-Y-WH4M0nLVX1o2Kf6WI-DJSs7BuDiA7uE,5110
99
+ elasticsearch/dsl/__init__.py,sha256=N6HvCFHD5RCdHu_Ni1uihfkmTgaX0t28TuJtgLO9t68,4308
100
+ elasticsearch/dsl/aggs.py,sha256=VjB0tRTNiYX-X0C0vSMwmJM0sYC97XgHir7wIfo9jEk,132551
101
+ elasticsearch/dsl/analysis.py,sha256=8-P6Cgh7CIgmbL6ZnhSl27NKVSjvqTcyn_VKnwZ6LDM,10308
102
+ elasticsearch/dsl/async_connections.py,sha256=K57MB_Gbu6s4Bn_1pzy5iA32ur8imfKP7yC4XlSI11s,1451
103
+ elasticsearch/dsl/connections.py,sha256=WxgUdq6PsQ6-ESG1pW6fab--VMm_IwlhH-J50XqeBZw,5176
104
+ elasticsearch/dsl/document.py,sha256=VzUvFqntLx_uWxIhOlK9WwXXa63Bwrp0a_Ja4rCKOF8,957
105
+ elasticsearch/dsl/document_base.py,sha256=Qc5-WJijIwPRrHfuwxArMFWk6HVKh728Klo-Q4h5ohk,22526
106
+ elasticsearch/dsl/exceptions.py,sha256=bmQh4tjfFzSzlYr-Wtn5fdq6dTa3zcgtUEz3jlsYI38,1043
107
+ elasticsearch/dsl/faceted_search.py,sha256=0NY9_yMlZ1FJWhmHtjx2I5eLlS8V0jBNAJdkp__ljg8,1094
108
+ elasticsearch/dsl/faceted_search_base.py,sha256=BlZzt8jY3P4rrKe30Szw2aZE2q36OVtOWwyJZPghYao,15354
109
+ elasticsearch/dsl/field.py,sha256=3bqOYUGakQLPE1DRK_Kh2rn7x6ReSnAxf549OW5bBvo,166012
110
+ elasticsearch/dsl/function.py,sha256=OavCMAUpDf1snQfVaaAL7wa_2HEQzhWVMo3Xuu-dV94,5127
111
+ elasticsearch/dsl/index.py,sha256=r7qdWevIWAgXTEz2iIKdwhyRF1B3nFchVuNdguSXtUc,991
112
+ elasticsearch/dsl/index_base.py,sha256=7YysvCWcAf0JEAFaZGsZPJML-CUG3QkqSd8D89PBOlE,6355
113
+ elasticsearch/dsl/mapping.py,sha256=d5GU7ZZ89-aLO_PjXzHzmavUUZVBIvaC-hok06V-Ff0,892
114
+ elasticsearch/dsl/mapping_base.py,sha256=uDhpyxxyORxcFkEju5DVq8nxrU57a_1pS_1A0C-iuh4,7480
115
+ elasticsearch/dsl/query.py,sha256=Qro32neYPx3YsFcF1Bb5VApc4Zc48vJd3R6tC3qqwK0,104984
116
+ elasticsearch/dsl/search.py,sha256=KzDfCPWWgSwMB79PQxyAHUhsL4lubfnCW9HpR0juDxs,991
117
+ elasticsearch/dsl/search_base.py,sha256=ApVSfUAtU0gf0RjRdz2jVY97FeXj6rh_IDjaIYrSkBU,34963
118
+ elasticsearch/dsl/serializer.py,sha256=hpo3aa94WhKY5iKyNyrE9TCe1A7JjF6tIiuyEBFhveE,1189
119
+ elasticsearch/dsl/types.py,sha256=VGPS55djzoTJJZMQreS_vpdPeR_d3Vz-ZuzwCNKATtg,211714
120
+ elasticsearch/dsl/update_by_query.py,sha256=adLSefH6YeGbdcmLMTC4IXqzqVFY63lSeEXsI45wj4Y,920
121
+ elasticsearch/dsl/update_by_query_base.py,sha256=3jZROLNL3fLcaqeDLk82waBSNTdv7w6L38hxjQV-ybU,4939
122
+ elasticsearch/dsl/utils.py,sha256=jkm5PMPui-0XWC2mqzfbhvfXHZ_kaEVhm6Vx7EM2nzw,22977
123
+ elasticsearch/dsl/wrappers.py,sha256=W1EW5H9uRAOewFLzYRQeMnZp358-w7_1XujmNFKsQb8,4099
124
+ elasticsearch/dsl/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
125
+ elasticsearch/dsl/_async/document.py,sha256=HqvoTI0hXQgPTczvaIAa82b5Fxfy91HuoeLDeMj-ZvI,19325
126
+ elasticsearch/dsl/_async/faceted_search.py,sha256=6I6ZNCfYHKSWwqfXv7b1Mb9gYark76XtWcpukTign9Q,1743
127
+ elasticsearch/dsl/_async/index.py,sha256=ci8i3NxqOb_irt0GYHhvb2POEu-maKQgL6ox3GLOZlw,22765
128
+ elasticsearch/dsl/_async/mapping.py,sha256=5MmAuBXh17EvTKpyLi24B1aFiJwvspYMfJim8Omx1ks,1759
129
+ elasticsearch/dsl/_async/search.py,sha256=I8sQdoUM8Vhz40TJmD5ILxWaANdOlOxTt7RbN-A2mQE,8227
130
+ elasticsearch/dsl/_async/update_by_query.py,sha256=YsqNb03V8Zyq52_wdJOFC5At5ujvlTcwtU85m3PlbhA,1641
131
+ elasticsearch/dsl/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
132
+ elasticsearch/dsl/_sync/document.py,sha256=bAClGrjBdIyBsSU5gbBhUIz5tnSxuhNljlhYSic79A0,18923
133
+ elasticsearch/dsl/_sync/faceted_search.py,sha256=HVBXlwZQ3ld150RkGCXyxeZ3dHAwZDQTCCJQqJpGxog,1694
134
+ elasticsearch/dsl/_sync/index.py,sha256=DpUmWTUXDRqRlVHN9eeCMLvb0Xvx0-bGa4XHtb12RLQ,21635
135
+ elasticsearch/dsl/_sync/mapping.py,sha256=yRRE3lMj5DNkDson2fA2ZHVuotjNwZws7qcUoakKhlQ,1682
136
+ elasticsearch/dsl/_sync/search.py,sha256=nAm5XPN8TBW1f-vqFyUTKf9dSvt9w708lxdgMSJJ9IU,7881
137
+ elasticsearch/dsl/_sync/update_by_query.py,sha256=pUnHuLne_r2u3hh0OtZvM-TnP-Jf_UOuAmGwWopGPZU,1570
138
+ elasticsearch/dsl/response/__init__.py,sha256=Y8g-nIpL0TGg1oewgg4K2PV3Rx_S2ZP1FnvnvuBuBr8,13774
139
+ elasticsearch/dsl/response/aggs.py,sha256=Unqp-acPQjqGbCTs1j0UhXQJjWuzjikySz__5BCIx_E,3394
140
+ elasticsearch/dsl/response/hit.py,sha256=SCMeVQz4gsID4xgp3iGcpBw_XY5nbSDQ8B_RyDwgUnU,2111
141
+ elasticsearch/esql/__init__.py,sha256=EsY_eTuwKy4pUNXoTUmusJGUlrwjMPYQNEBcOqGIKBc,842
142
+ elasticsearch/esql/esql.py,sha256=hAQKttmMnVcNoh67RjKgFAM254eXpQy3BxMViCtQsfM,41562
143
+ elasticsearch/esql/esql1.py1,sha256=FFxOpRCYXsouF_n2yPUqc4M_X_ZSgxBwuzUs5gi5Jn8,8472
144
+ elasticsearch/esql/functions.py,sha256=f1xW41tbMFLLYqwzTNG9qPoyjLW25Woqws3NtCgC6bA,67216
145
+ elasticsearch/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
146
+ elasticsearch/helpers/actions.py,sha256=A4IVl8TrCdqk2mnZ_KQggeMolDEHBaesk2qDygE8skE,32378
147
+ elasticsearch/helpers/errors.py,sha256=5khkK4zbXsk4ry8HDmGfyzlmZI9KSKP-MivCgcPoO5U,1506
148
+ elasticsearch/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
149
+ elasticsearch/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
150
+ elasticsearch/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
151
+ elasticsearch/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
152
+ elasticsearch/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
153
+ elasticsearch/helpers/vectorstore/_async/strategies.py,sha256=30s8zxn-mbImS_wGnAVUDU7fBsdTenyv8gbf0XoqZFg,16177
154
+ elasticsearch/helpers/vectorstore/_async/vectorstore.py,sha256=U9xOnjLjJmLeT8dltKWYvsDD4jkmyH0ybfxR0Bn6-_Y,16707
155
+ elasticsearch/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
156
+ elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
157
+ elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
158
+ elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=3ngdKfLNatqiwCjpAW51dT3Bx6gfT97ALD-gDAy6kxE,16075
159
+ elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=HZiEyrXL2i-3P5f9sYUPUYTcIDdEBTnATwQqtdfikZs,16523
160
+ elasticsearch-9.1.0.dist-info/METADATA,sha256=Rvwt-JzJkq00ZE66tr399W_g-bit9Abp_DM2z_Bsr0w,8372
161
+ elasticsearch-9.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
162
+ elasticsearch-9.1.0.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
163
+ elasticsearch-9.1.0.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
164
+ elasticsearch-9.1.0.dist-info/RECORD,,
@@ -1,162 +0,0 @@
1
- elasticsearch/__init__.py,sha256=KicjUPfCZzRi4nTg2vJa1CklY168gVI6WwQsF2qsoXM,3325
2
- elasticsearch/_otel.py,sha256=Oidt86g9XzeVrwMsJeV7dGLsyquVMJWfhcRlz43RlGo,4188
3
- elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
4
- elasticsearch/_version.py,sha256=6sO54joUgHkwsVOLxckSbDqohr8dVpQsprRUqOzzOOo,813
5
- elasticsearch/client.py,sha256=D7XS3Fa57GEbBVIaJLQdzbA12_pdmRXCscdnwnXjn4U,5498
6
- elasticsearch/compat.py,sha256=hL3mtqVxWwxeiFbNGADva5XruAwK-A6xcu-vrpnDXFs,2657
7
- elasticsearch/exceptions.py,sha256=oIO4Nnasth_XXXqYgg1sOv2zAHa3Ba0yB_5StFPWK9Y,4271
8
- elasticsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- elasticsearch/serializer.py,sha256=vLhhlU6fAjHXB-z2E5ieBe_XKWx4A0o-lbJY9Bknt70,8059
10
- elasticsearch/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
11
- elasticsearch/_async/helpers.py,sha256=Q5LIXoyjoHeShBUltwLIkGc3WqmqAYHW2ddLjzNpYQU,22801
12
- elasticsearch/_async/client/__init__.py,sha256=cdRfsOS2bHtDc0tbTHWWOujMCUh55O_p59o-hTBJvcA,351800
13
- elasticsearch/_async/client/_base.py,sha256=q-efl19moyBufyiX2WYRLfBkrcmT3TUVKPf_Kqs5NqA,15494
14
- elasticsearch/_async/client/async_search.py,sha256=JW7meOSt9BCLTJwYuoXQqHalkf-tch-ZHxuA87A1ec8,30600
15
- elasticsearch/_async/client/autoscaling.py,sha256=-bzLJVXk1yMB522fQHu2gQTvk7pgUBKcRjYrARGJZmo,11275
16
- elasticsearch/_async/client/cat.py,sha256=xfbyygwsGMv3tCUSYtHBjWQr1n9uWA11L5GwNKS7uSw,132075
17
- elasticsearch/_async/client/ccr.py,sha256=9ETmgiYrotkEKXMQxJla8M4_knhEGvGEcW1avBJH-Vs,49930
18
- elasticsearch/_async/client/cluster.py,sha256=TaJVnIN8pwnSE5J1E9fCRY8qVFVU_Cc9ic1p2IHWTgI,61138
19
- elasticsearch/_async/client/connector.py,sha256=SOIE1MTBAAfDMdjBAY9NOX9XUgqSzZtkQZvjmB4P9aI,79155
20
- elasticsearch/_async/client/dangling_indices.py,sha256=5lMSqcF6qaG7ux9qsOcDFOxZaGadNrzkKx0hEgXmEJk,8536
21
- elasticsearch/_async/client/enrich.py,sha256=lvGscbUEpR4HemcJNZwKwvnyOwcWPDmM4WFejp76I14,11309
22
- elasticsearch/_async/client/eql.py,sha256=W3qx_b3tszfCeJJH3ea6NPjFHPbqvaejEMbI6UgjSf0,15324
23
- elasticsearch/_async/client/esql.py,sha256=73YozMhhnbiR7Ai7o8B-L280k5DHrgVQow789tkpb2w,22741
24
- elasticsearch/_async/client/features.py,sha256=kJWyyNK8UynTYSh6Xw0K2xE-0Z-RCJKZ1lmS9nP0gNk,6202
25
- elasticsearch/_async/client/fleet.py,sha256=t8nokMSpxSXyP_1j1LUexdbAJQ7aFmb_LY4L2y2-aog,31102
26
- elasticsearch/_async/client/graph.py,sha256=6GhE9XelFc5PRvh2x-6BnQ5v0E7Drz0ZNoMyXBOeSEc,5139
27
- elasticsearch/_async/client/ilm.py,sha256=-Y0GkOKzGxp9EnXV_8bV2l25giwjG9ZSjkYlQQSVFss,28647
28
- elasticsearch/_async/client/indices.py,sha256=Kpx6bEcV7X9HQGYkjpkyK6V_Vu8R3s3iQNHKAZXaZss,278346
29
- elasticsearch/_async/client/inference.py,sha256=SCHYetySNOE46R6aoCHTb0hnalMVaI_jGTl1eLUiKHI,109105
30
- elasticsearch/_async/client/ingest.py,sha256=XtdqDNXpTDAnZtmzBUTeYbIVSBGJSMtL1MbMYCutwPk,32484
31
- elasticsearch/_async/client/license.py,sha256=mKaNGglbQMXDPjoGIN96tsY8ttUKrhea86MRtLvPZg0,16747
32
- elasticsearch/_async/client/logstash.py,sha256=hPIRBmdTt-QLM0Hkb7IkMCW3UL49Ng-p3fMD3Bo98Ss,6543
33
- elasticsearch/_async/client/migration.py,sha256=K2fMkjMQ97UAYcMciLkPI4nfoNGt_uR90eTjQhF5h0o,6419
34
- elasticsearch/_async/client/ml.py,sha256=1KcA4WBMP2hUwELVBRmuxnVQDnrJfeJrADKlSa3n51M,268475
35
- elasticsearch/_async/client/monitoring.py,sha256=xiHKDeFwLEUAbz4QQkQcSlxSZCQLLdW8Mj1jYrqHlYc,3853
36
- elasticsearch/_async/client/nodes.py,sha256=wK7U7zAY-F4NDPH667iQ0yP1RUBsekEBu9jsSzVG0cA,24051
37
- elasticsearch/_async/client/query_rules.py,sha256=Kc2iQ2gLY2k5zCLO_FblULFisV0-OQteWPXKvVFGR50,19455
38
- elasticsearch/_async/client/rollup.py,sha256=qxMIzum4tXEB-le_zkAQ1D3HdMQYC4iW2V69pTzX4r4,29148
39
- elasticsearch/_async/client/search_application.py,sha256=A6rBq6OeDvWkuDPe52x9Ix-QN6QogQUEyX3aC1YnAjs,22177
40
- elasticsearch/_async/client/searchable_snapshots.py,sha256=_HyYjE_43GQfM-8ffjyL8K3kV8xMsNUiQx3FgaS8btE,12718
41
- elasticsearch/_async/client/security.py,sha256=-nOk__dsh8Uyl8Z8Cdj1yZUJmyFq3WCxNpWPcdd-MIs,222591
42
- elasticsearch/_async/client/shutdown.py,sha256=qb-__6SIPhuvhg_FQFTslS_tmYMzkzWBkqbj8RXUG0k,13261
43
- elasticsearch/_async/client/simulate.py,sha256=APtHQjXhk7tJaWIuLeR1q6rCJXly9deHyTMuqAt6Vek,7351
44
- elasticsearch/_async/client/slm.py,sha256=5G8b2zRQvjB2f67woW8FvxYKxHchMEVM1MUklJEoB5Y,24386
45
- elasticsearch/_async/client/snapshot.py,sha256=fTGFX7iVEdvC_xIuq-dA-2XcgnlfwNjuOrxkqC4EEr4,76579
46
- elasticsearch/_async/client/sql.py,sha256=VgN_zHMmBERlyMdiCc_EZFPYfBnb6I1QOhG_JvjA9Ak,20130
47
- elasticsearch/_async/client/ssl.py,sha256=0RfIoBeJA2onEtiXxjV4H0g0iZIMUvIwAmViuDE1clQ,3779
48
- elasticsearch/_async/client/synonyms.py,sha256=DrbrbfM6yr2kDhk_lHE4-uuh1MQVD8ietCogC-AOARM,16330
49
- elasticsearch/_async/client/tasks.py,sha256=cbcQmrYcnBFebm98NX-HpmR5iiFkBTRPnxl1vyWs6bo,13694
50
- elasticsearch/_async/client/text_structure.py,sha256=pxQKoX3zKGcNQCUiSGu4IIm2Mz0s0YSVx9It_Qf_ixk,40677
51
- elasticsearch/_async/client/transform.py,sha256=4SQGW06bhWlAr7HeIQvpdFz1y6bFAWe5Vc5cWUumhY4,44430
52
- elasticsearch/_async/client/utils.py,sha256=h64qW1YcQZoJdEpDiYqkgnD3Q_0r2Y_ltUiNpNzpekI,1449
53
- elasticsearch/_async/client/watcher.py,sha256=l1KZcf7vw6maXJ6I71xSEPgV6EicezHQkRjqS1Q80wc,38056
54
- elasticsearch/_async/client/xpack.py,sha256=hRZToaH7B7JLqVauZcT9s7prFYpTpTR3_f_Lnci-QwY,5140
55
- elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
56
- elasticsearch/_sync/client/__init__.py,sha256=P3EdFIQcuKGBrnc6JkvKMaqENAk2Oc3vYSXBbTm_4Xc,351181
57
- elasticsearch/_sync/client/_base.py,sha256=H3CZjE4sUUxVXCXSNsyIwBFuUJv8JS9Y5fujRqlqHjg,15424
58
- elasticsearch/_sync/client/async_search.py,sha256=fqdMKjdiezqJTu8IYNq82Si3sSojKH2aOlVDidtrctI,30552
59
- elasticsearch/_sync/client/autoscaling.py,sha256=lYfz7jJY4EqEhQ0oHRO_kQC7g7rvCXCAaGmQSavMMxg,11227
60
- elasticsearch/_sync/client/cat.py,sha256=SDfiVG8jtHxr9pf_2RIqTahGePpbPPzU4EICWwHZXkM,131763
61
- elasticsearch/_sync/client/ccr.py,sha256=yA5S-Sh1WW-mrUbChb2NPhISbIZi22rJEneGPhlSFHs,49774
62
- elasticsearch/_sync/client/cluster.py,sha256=NsQmITZxMcYpwqVS2AnD__pEqFbiwdKKqzPJ30lC4R8,60946
63
- elasticsearch/_sync/client/connector.py,sha256=vNIi6Gfs16OZPMmalgRupRM1EzwHeCOfs6-BYJpdoBg,78795
64
- elasticsearch/_sync/client/dangling_indices.py,sha256=XLbWVshsPitTEhUH5l5f2LmdpnxP1eWDrcA-_eWCeTE,8500
65
- elasticsearch/_sync/client/enrich.py,sha256=sVQPzarkrGW_9zKcT5GQdjhtaefv5bn2iTyBip2DCJc,11249
66
- elasticsearch/_sync/client/eql.py,sha256=nhrTQlcLgT9OviP8Pks_f9Trs2ju0l-1_1_n_eX2I24,15276
67
- elasticsearch/_sync/client/esql.py,sha256=JLaSQdaMjOheW3wci6ByI4lMb_P1YeezXDei0FUdvjQ,22681
68
- elasticsearch/_sync/client/features.py,sha256=3kewhf6BYSTH3-4S1wfe-DpEVmbIh8jxRhQlRL4oj2M,6178
69
- elasticsearch/_sync/client/fleet.py,sha256=mvnKv3aYnSMa6WnqVXvQmF0a_uSjny3mreOZ7ra4Sfk,31066
70
- elasticsearch/_sync/client/graph.py,sha256=G2YHBr0fhQDVq2U9AaLs2PSiVGnSbAelgkKEZJHKe5E,5127
71
- elasticsearch/_sync/client/ilm.py,sha256=ns2Ke1eX-o1j7KrNDEPblZkyKLkxVQQByJAg_LtSU-Y,28515
72
- elasticsearch/_sync/client/indices.py,sha256=VkA6yC9b7pGPU9d0-40LarFHXMn12g8dHBqj-KFpHxQ,277590
73
- elasticsearch/_sync/client/inference.py,sha256=wfBJs6Ohj8FuxG0sv7pXewpLVKnP5hGGueLN2U1TCLY,108805
74
- elasticsearch/_sync/client/ingest.py,sha256=XsKRkakMQwxMq9_tWbSu9al40NMZmvd1kXJBQTj--Pw,32340
75
- elasticsearch/_sync/client/license.py,sha256=rhqk3rBSoTmqopFp7rGRFcQhWM6L32VifwEvkZiRNhI,16663
76
- elasticsearch/_sync/client/logstash.py,sha256=ajugUoJk7iUnggPGE6LzszbM3rJFIPj6_QeCqy8hKSo,6507
77
- elasticsearch/_sync/client/migration.py,sha256=NmjJ3g2lUw5Ym22sPJQznPQqPQuJQERJRIEy72hb-mo,6383
78
- elasticsearch/_sync/client/ml.py,sha256=ycBqIzucTwa3iRAtbC3nRtDXqexMxdTH9hEJA4ezYGI,267599
79
- elasticsearch/_sync/client/monitoring.py,sha256=cYUvFJ-Oizo-oV0DcWj-0KZmaW-C1VYzmarNIbnINb4,3841
80
- elasticsearch/_sync/client/nodes.py,sha256=lLHbiNIgcvjzgbontj54mNu0wtSi79R1-MLSiBFtuYI,23967
81
- elasticsearch/_sync/client/query_rules.py,sha256=uN1NhoJ7rwg_-fxZMO2LvH-RmooAo8HERKOX1DIVwAY,19359
82
- elasticsearch/_sync/client/rollup.py,sha256=tlsi7X3s2Q2VBIBYSsGukjsGR1-ihuHnoM1sW-ev-kE,29052
83
- elasticsearch/_sync/client/search_application.py,sha256=r4dzspXaos-fvzg0TikFcSCzvpWXliu-pD9YvcCB00o,22057
84
- elasticsearch/_sync/client/searchable_snapshots.py,sha256=W8iTPsUB3UmrmnOYE49EeTG4dMz5Oksk9UTxXSP1mXk,12670
85
- elasticsearch/_sync/client/security.py,sha256=Cj_yy0ot1k5__I7rC-GPUuO__653fLKAMTYovpZXRCI,221823
86
- elasticsearch/_sync/client/shutdown.py,sha256=RhE6j80lEni6dqkxI7l7wes3mA5QXJLAGeKWenF4XcE,13225
87
- elasticsearch/_sync/client/simulate.py,sha256=ddDWO4TE4xDj6prmUsiOepTQxSQBG6PWHzJaHjH2ECg,7339
88
- elasticsearch/_sync/client/slm.py,sha256=MfxM5T_0cuiaip6dYQspSxNua-fcWHLptmjHolvlkGU,24278
89
- elasticsearch/_sync/client/snapshot.py,sha256=xQKROkf6Yy81qT2MBHWEh3Hf8WJUw4Ndcom2RHb1FYg,76423
90
- elasticsearch/_sync/client/sql.py,sha256=jOQjOpRFOkEgoI6Uo9DCc5dCSlKMi34XragNjvsW7VA,20058
91
- elasticsearch/_sync/client/ssl.py,sha256=16GXY22cJ7gZ5mzcrKqBEMeVYXjnQlYuNULfRuEkFJk,3767
92
- elasticsearch/_sync/client/synonyms.py,sha256=9IhJqMJD5OhL1b7W526m4E7W4LyUsTpUS7NmzedH5LI,16246
93
- elasticsearch/_sync/client/tasks.py,sha256=07ftfAtJmIc32ooz-R7fMe_Rii-nyER8OUbwlMJsAvE,13658
94
- elasticsearch/_sync/client/text_structure.py,sha256=tGj93vxw8QaDhLTG-b-a25JNYyggidp8rUZ3i2Oc74s,40629
95
- elasticsearch/_sync/client/transform.py,sha256=IeYxrx_i76HWApUenw_zTbFdlxRUOH3E_DDj0ahVVQQ,44298
96
- elasticsearch/_sync/client/utils.py,sha256=DxEShkaJzeycquaEVLbYXo00DmAqsVlBk8hyEtObxew,17187
97
- elasticsearch/_sync/client/watcher.py,sha256=rqOdCTH7EjVwpwbLixl0W_JESe5BEz3_Dw8UxnmJzq8,37900
98
- elasticsearch/_sync/client/xpack.py,sha256=0xrYsLnw3fusUDozeFMB7JQWTXoT2NgpMkrCq7BxbE4,5116
99
- elasticsearch/dsl/__init__.py,sha256=IKzYnYwF2Xb4_xTRN_upDOHpYJgIP3iWXXmd7O_2lDc,4296
100
- elasticsearch/dsl/aggs.py,sha256=Iwx0y6vT0znNJEb7qwcBLMmSOf2muwZzdOAWCyZ_YqU,131379
101
- elasticsearch/dsl/analysis.py,sha256=8-P6Cgh7CIgmbL6ZnhSl27NKVSjvqTcyn_VKnwZ6LDM,10308
102
- elasticsearch/dsl/async_connections.py,sha256=K57MB_Gbu6s4Bn_1pzy5iA32ur8imfKP7yC4XlSI11s,1451
103
- elasticsearch/dsl/connections.py,sha256=WxgUdq6PsQ6-ESG1pW6fab--VMm_IwlhH-J50XqeBZw,5176
104
- elasticsearch/dsl/document.py,sha256=VzUvFqntLx_uWxIhOlK9WwXXa63Bwrp0a_Ja4rCKOF8,957
105
- elasticsearch/dsl/document_base.py,sha256=r045luNNySLO-Jrv6wec43yKlQM_pEXcjvde4_7cMLk,15999
106
- elasticsearch/dsl/exceptions.py,sha256=bmQh4tjfFzSzlYr-Wtn5fdq6dTa3zcgtUEz3jlsYI38,1043
107
- elasticsearch/dsl/faceted_search.py,sha256=0NY9_yMlZ1FJWhmHtjx2I5eLlS8V0jBNAJdkp__ljg8,1094
108
- elasticsearch/dsl/faceted_search_base.py,sha256=BlZzt8jY3P4rrKe30Szw2aZE2q36OVtOWwyJZPghYao,15354
109
- elasticsearch/dsl/field.py,sha256=uAgaJKpgaQMKHB7grSCYoFHE4GwpG4YamqQcBFEKUts,157423
110
- elasticsearch/dsl/function.py,sha256=OavCMAUpDf1snQfVaaAL7wa_2HEQzhWVMo3Xuu-dV94,5127
111
- elasticsearch/dsl/index.py,sha256=r7qdWevIWAgXTEz2iIKdwhyRF1B3nFchVuNdguSXtUc,991
112
- elasticsearch/dsl/index_base.py,sha256=7YysvCWcAf0JEAFaZGsZPJML-CUG3QkqSd8D89PBOlE,6355
113
- elasticsearch/dsl/mapping.py,sha256=d5GU7ZZ89-aLO_PjXzHzmavUUZVBIvaC-hok06V-Ff0,892
114
- elasticsearch/dsl/mapping_base.py,sha256=uDhpyxxyORxcFkEju5DVq8nxrU57a_1pS_1A0C-iuh4,7480
115
- elasticsearch/dsl/query.py,sha256=vvSaD_Z5--jwdBKU7WoupAWf-wEiaDfNcMq9-wFtzcQ,103745
116
- elasticsearch/dsl/search.py,sha256=KzDfCPWWgSwMB79PQxyAHUhsL4lubfnCW9HpR0juDxs,991
117
- elasticsearch/dsl/search_base.py,sha256=ApVSfUAtU0gf0RjRdz2jVY97FeXj6rh_IDjaIYrSkBU,34963
118
- elasticsearch/dsl/serializer.py,sha256=hpo3aa94WhKY5iKyNyrE9TCe1A7JjF6tIiuyEBFhveE,1189
119
- elasticsearch/dsl/types.py,sha256=qxej6f7bfTP6SNOM0EdMxxdOwpNw8i7pD00V_vYgRps,202406
120
- elasticsearch/dsl/update_by_query.py,sha256=adLSefH6YeGbdcmLMTC4IXqzqVFY63lSeEXsI45wj4Y,920
121
- elasticsearch/dsl/update_by_query_base.py,sha256=3jZROLNL3fLcaqeDLk82waBSNTdv7w6L38hxjQV-ybU,4939
122
- elasticsearch/dsl/utils.py,sha256=WRupAUt432wZuyS49IpF2f6m0Ux79P9RthkG2FM4pFw,22977
123
- elasticsearch/dsl/wrappers.py,sha256=W1EW5H9uRAOewFLzYRQeMnZp358-w7_1XujmNFKsQb8,4099
124
- elasticsearch/dsl/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
125
- elasticsearch/dsl/_async/document.py,sha256=knCXN_hRKFldUF6dC8kGr-AcTwZCXhcvgSqbkpeMCVE,19347
126
- elasticsearch/dsl/_async/faceted_search.py,sha256=6I6ZNCfYHKSWwqfXv7b1Mb9gYark76XtWcpukTign9Q,1743
127
- elasticsearch/dsl/_async/index.py,sha256=ci8i3NxqOb_irt0GYHhvb2POEu-maKQgL6ox3GLOZlw,22765
128
- elasticsearch/dsl/_async/mapping.py,sha256=5MmAuBXh17EvTKpyLi24B1aFiJwvspYMfJim8Omx1ks,1759
129
- elasticsearch/dsl/_async/search.py,sha256=I8sQdoUM8Vhz40TJmD5ILxWaANdOlOxTt7RbN-A2mQE,8227
130
- elasticsearch/dsl/_async/update_by_query.py,sha256=YsqNb03V8Zyq52_wdJOFC5At5ujvlTcwtU85m3PlbhA,1641
131
- elasticsearch/dsl/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
132
- elasticsearch/dsl/_sync/document.py,sha256=vHRIU1lEyY13SRnsVjg9DKWRXllC4m_Ee2tZpKrp-20,18940
133
- elasticsearch/dsl/_sync/faceted_search.py,sha256=HVBXlwZQ3ld150RkGCXyxeZ3dHAwZDQTCCJQqJpGxog,1694
134
- elasticsearch/dsl/_sync/index.py,sha256=DpUmWTUXDRqRlVHN9eeCMLvb0Xvx0-bGa4XHtb12RLQ,21635
135
- elasticsearch/dsl/_sync/mapping.py,sha256=yRRE3lMj5DNkDson2fA2ZHVuotjNwZws7qcUoakKhlQ,1682
136
- elasticsearch/dsl/_sync/search.py,sha256=nAm5XPN8TBW1f-vqFyUTKf9dSvt9w708lxdgMSJJ9IU,7881
137
- elasticsearch/dsl/_sync/update_by_query.py,sha256=pUnHuLne_r2u3hh0OtZvM-TnP-Jf_UOuAmGwWopGPZU,1570
138
- elasticsearch/dsl/response/__init__.py,sha256=WOmfs3vb_KzM9kRfxsw0z4lZvf4OFP-vpY-4hSiiPYk,13786
139
- elasticsearch/dsl/response/aggs.py,sha256=Unqp-acPQjqGbCTs1j0UhXQJjWuzjikySz__5BCIx_E,3394
140
- elasticsearch/dsl/response/hit.py,sha256=SCMeVQz4gsID4xgp3iGcpBw_XY5nbSDQ8B_RyDwgUnU,2111
141
- elasticsearch/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
142
- elasticsearch/helpers/actions.py,sha256=A4IVl8TrCdqk2mnZ_KQggeMolDEHBaesk2qDygE8skE,32378
143
- elasticsearch/helpers/errors.py,sha256=5khkK4zbXsk4ry8HDmGfyzlmZI9KSKP-MivCgcPoO5U,1506
144
- elasticsearch/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
145
- elasticsearch/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
146
- elasticsearch/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
147
- elasticsearch/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
148
- elasticsearch/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
149
- elasticsearch/helpers/vectorstore/_async/strategies.py,sha256=30s8zxn-mbImS_wGnAVUDU7fBsdTenyv8gbf0XoqZFg,16177
150
- elasticsearch/helpers/vectorstore/_async/vectorstore.py,sha256=U9xOnjLjJmLeT8dltKWYvsDD4jkmyH0ybfxR0Bn6-_Y,16707
151
- elasticsearch/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
152
- elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
153
- elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
154
- elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=3ngdKfLNatqiwCjpAW51dT3Bx6gfT97ALD-gDAy6kxE,16075
155
- elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=HZiEyrXL2i-3P5f9sYUPUYTcIDdEBTnATwQqtdfikZs,16523
156
- elasticsearch-9.0.1.dist-info/METADATA,sha256=kIjpJDn_3_mRb5R7NkXW0dsi5qwkISFrzQz6nEXGTto,8473
157
- elasticsearch-9.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
158
- elasticsearch-9.0.1.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
159
- elasticsearch-9.0.1.dist-info/licenses/LICENSE.txt,sha256=4JFueU7Hi11OhqseKJyD5W5ufZ6ZkGDsMWH7CLOHg6Y,10142
160
- elasticsearch-9.0.1.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
161
- elasticsearch-9.0.1.dist-info/licenses/NOTICE.txt,sha256=2dshATdruN4hzPj9pypOzZ8uLqIPnQDK5LynrVu-d4Y,28246
162
- elasticsearch-9.0.1.dist-info/RECORD,,
@@ -1,175 +0,0 @@
1
-
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use thes
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.