h2ogpte 1.6.44rc9__py3-none-any.whl → 1.6.45__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.
h2ogpte/__init__.py CHANGED
@@ -3,7 +3,7 @@ from h2ogpte.h2ogpte import H2OGPTE
3
3
  from h2ogpte.h2ogpte_async import H2OGPTEAsync
4
4
  from h2ogpte.session_async import SessionAsync
5
5
 
6
- __version__ = "1.6.44rc9"
6
+ __version__ = "1.6.45"
7
7
 
8
8
  __all__ = [
9
9
  "H2OGPTE",
h2ogpte/h2ogpte.py CHANGED
@@ -2587,13 +2587,13 @@ class H2OGPTE(H2OGPTESyncBase):
2587
2587
  Returns:
2588
2588
  List of secret IDs available for the specified connector type
2589
2589
  """
2590
- self._init_rest()
2591
2590
  header = self._get_auth_header()
2592
- response = _rest_to_client_exceptions(
2593
- lambda: self._secrets_api.list_secret_ids(
2594
- connector_type=connector_type, _headers=header
2591
+ with self._RESTClient(self) as rest_client:
2592
+ response = _rest_to_client_exceptions(
2593
+ lambda: rest_client.secrets_api.list_secret_ids(
2594
+ connector_type=connector_type, _headers=header
2595
+ )
2595
2596
  )
2596
- )
2597
2597
  return response.ids
2598
2598
 
2599
2599
  def get_secret(self, secret_id: str) -> Union[Dict[str, Any], None]:
@@ -2605,11 +2605,13 @@ class H2OGPTE(H2OGPTESyncBase):
2605
2605
  Returns:
2606
2606
  The secret object corresponding to the provided ID.
2607
2607
  """
2608
- self._init_rest()
2609
2608
  header = self._get_auth_header()
2610
- response = _rest_to_client_exceptions(
2611
- lambda: self._secrets_api.get_secret(secret_id=secret_id, _headers=header)
2612
- )
2609
+ with self._RESTClient(self) as rest_client:
2610
+ response = _rest_to_client_exceptions(
2611
+ lambda: rest_client.secrets_api.get_secret(
2612
+ secret_id=secret_id, _headers=header
2613
+ )
2614
+ )
2613
2615
  return response.to_dict()
2614
2616
 
2615
2617
  def get_secret_value(self, secret_id: str) -> Union[str, None]:
@@ -2621,13 +2623,13 @@ class H2OGPTE(H2OGPTESyncBase):
2621
2623
  Returns:
2622
2624
  The value of the secret corresponding to the provided ID.
2623
2625
  """
2624
- self._init_rest()
2625
2626
  header = self._get_auth_header()
2626
- response = _rest_to_client_exceptions(
2627
- lambda: self._secrets_api.get_secret_value(
2628
- secret_id=secret_id, _headers=header
2627
+ with self._RESTClient(self) as rest_client:
2628
+ response = _rest_to_client_exceptions(
2629
+ lambda: rest_client.secrets_api.get_secret_value(
2630
+ secret_id=secret_id, _headers=header
2631
+ )
2629
2632
  )
2630
- )
2631
2633
  return response.value if response else None
2632
2634
 
2633
2635
  def create_secret(self, secret: Dict[str, Any]) -> None:
@@ -2639,11 +2641,13 @@ class H2OGPTE(H2OGPTESyncBase):
2639
2641
  Returns:
2640
2642
  The ID of the newly created secret.
2641
2643
  """
2642
- self._init_rest()
2643
2644
  header = self._get_auth_header()
2644
- response = _rest_to_client_exceptions(
2645
- lambda: self._secrets_api.create_secret(secret=secret, _headers=header)
2646
- )
2645
+ with self._RESTClient(self) as rest_client:
2646
+ response = _rest_to_client_exceptions(
2647
+ lambda: rest_client.secrets_api.create_secret(
2648
+ secret=secret, _headers=header
2649
+ )
2650
+ )
2647
2651
  return response.id
2648
2652
 
2649
2653
  def update_secret(self, secret_id: str, secret: Dict[str, Any]) -> None:
@@ -2656,13 +2660,13 @@ class H2OGPTE(H2OGPTESyncBase):
2656
2660
  Returns:
2657
2661
  None
2658
2662
  """
2659
- self._init_rest()
2660
2663
  header = self._get_auth_header()
2661
- _rest_to_client_exceptions(
2662
- lambda: self._secrets_api.update_secret(
2663
- secret_id=secret_id, secret=secret, _headers=header
2664
+ with self._RESTClient(self) as rest_client:
2665
+ _rest_to_client_exceptions(
2666
+ lambda: rest_client.secrets_api.update_secret(
2667
+ secret_id=secret_id, secret=secret, _headers=header
2668
+ )
2664
2669
  )
2665
- )
2666
2670
 
2667
2671
  def delete_secret(self, secret_id: str) -> None:
2668
2672
  """Delete a secret from the SecureStore by its ID.
@@ -2673,13 +2677,13 @@ class H2OGPTE(H2OGPTESyncBase):
2673
2677
  Returns:
2674
2678
  None
2675
2679
  """
2676
- self._init_rest()
2677
2680
  header = self._get_auth_header()
2678
- _rest_to_client_exceptions(
2679
- lambda: self._secrets_api.delete_secret(
2680
- secret_id=secret_id, _headers=header
2681
+ with self._RESTClient(self) as rest_client:
2682
+ _rest_to_client_exceptions(
2683
+ lambda: rest_client.secrets_api.delete_secret(
2684
+ secret_id=secret_id, _headers=header
2685
+ )
2681
2686
  )
2682
- )
2683
2687
 
2684
2688
  def ingest_uploads(
2685
2689
  self,
h2ogpte/h2ogpte_async.py CHANGED
@@ -2789,13 +2789,13 @@ class H2OGPTEAsync:
2789
2789
  Returns:
2790
2790
  List of secret IDs available for the specified connector type
2791
2791
  """
2792
- await self._init_rest()
2793
2792
  header = await self._get_auth_header()
2794
- response = await _rest_to_client_exceptions(
2795
- self._secrets_api.list_secret_ids(
2796
- connector_type=connector_type, _headers=header
2793
+ async with self._RESTClient(self) as rest_client:
2794
+ response = await _rest_to_client_exceptions(
2795
+ rest_client.secrets_api.list_secret_ids(
2796
+ connector_type=connector_type, _headers=header
2797
+ )
2797
2798
  )
2798
- )
2799
2799
  return response.ids
2800
2800
 
2801
2801
  async def get_secret(self, secret_id: str) -> Union[Dict[str, Any], None]:
@@ -2807,11 +2807,11 @@ class H2OGPTEAsync:
2807
2807
  Returns:
2808
2808
  The secret object corresponding to the provided ID.
2809
2809
  """
2810
- await self._init_rest()
2811
2810
  header = await self._get_auth_header()
2812
- response = await _rest_to_client_exceptions(
2813
- self._secrets_api.get_secret(secret_id=secret_id, _headers=header)
2814
- )
2811
+ async with self._RESTClient(self) as rest_client:
2812
+ response = await _rest_to_client_exceptions(
2813
+ rest_client.secrets_api.get_secret(secret_id=secret_id, _headers=header)
2814
+ )
2815
2815
  return response.to_dict()
2816
2816
 
2817
2817
  async def get_secret_value(self, secret_id: str) -> Union[str, None]:
@@ -2823,11 +2823,13 @@ class H2OGPTEAsync:
2823
2823
  Returns:
2824
2824
  The value of the secret corresponding to the provided ID.
2825
2825
  """
2826
- await self._init_rest()
2827
2826
  header = await self._get_auth_header()
2828
- response = await _rest_to_client_exceptions(
2829
- self._secrets_api.get_secret_value(secret_id=secret_id, _headers=header)
2830
- )
2827
+ async with self._RESTClient(self) as rest_client:
2828
+ response = await _rest_to_client_exceptions(
2829
+ rest_client.secrets_api.get_secret_value(
2830
+ secret_id=secret_id, _headers=header
2831
+ )
2832
+ )
2831
2833
  return response.value if response else None
2832
2834
 
2833
2835
  async def create_secret(self, secret: Dict[str, Any]) -> None:
@@ -2839,11 +2841,11 @@ class H2OGPTEAsync:
2839
2841
  Returns:
2840
2842
  The ID of the newly created secret.
2841
2843
  """
2842
- await self._init_rest()
2843
2844
  header = await self._get_auth_header()
2844
- response = await _rest_to_client_exceptions(
2845
- self._secrets_api.create_secret(secret=secret, _headers=header)
2846
- )
2845
+ async with self._RESTClient(self) as rest_client:
2846
+ response = await _rest_to_client_exceptions(
2847
+ rest_client.secrets_api.create_secret(secret=secret, _headers=header)
2848
+ )
2847
2849
  return response.id
2848
2850
 
2849
2851
  async def update_secret(self, secret_id: str, secret: Dict[str, Any]) -> None:
@@ -2856,13 +2858,13 @@ class H2OGPTEAsync:
2856
2858
  Returns:
2857
2859
  None
2858
2860
  """
2859
- await self._init_rest()
2860
2861
  header = await self._get_auth_header()
2861
- await _rest_to_client_exceptions(
2862
- self._secrets_api.update_secret(
2863
- secret_id=secret_id, secret=secret, _headers=header
2862
+ async with self._RESTClient(self) as rest_client:
2863
+ await _rest_to_client_exceptions(
2864
+ rest_client.secrets_api.update_secret(
2865
+ secret_id=secret_id, secret=secret, _headers=header
2866
+ )
2864
2867
  )
2865
- )
2866
2868
 
2867
2869
  async def delete_secret(self, secret_id: str) -> None:
2868
2870
  """Delete a secret from the SecureStore by its ID.
@@ -2873,11 +2875,13 @@ class H2OGPTEAsync:
2873
2875
  Returns:
2874
2876
  None
2875
2877
  """
2876
- await self._init_rest()
2877
2878
  header = await self._get_auth_header()
2878
- await _rest_to_client_exceptions(
2879
- self._secrets_api.delete_secret(secret_id=secret_id, _headers=header)
2880
- )
2879
+ async with self._RESTClient(self) as rest_client:
2880
+ await _rest_to_client_exceptions(
2881
+ rest_client.secrets_api.delete_secret(
2882
+ secret_id=secret_id, _headers=header
2883
+ )
2884
+ )
2881
2885
 
2882
2886
  async def ingest_uploads(
2883
2887
  self,
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "1.6.44-dev9"
17
+ __version__ = "1.6.45"
18
18
 
19
19
  # import apis into sdk package
20
20
  from h2ogpte.rest_async.api.api_keys_api import APIKeysApi
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'OpenAPI-Generator/1.6.44-dev9/python'
93
+ self.user_agent = 'OpenAPI-Generator/1.6.45/python'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  async def __aenter__(self):
@@ -499,7 +499,7 @@ class Configuration:
499
499
  "OS: {env}\n"\
500
500
  "Python Version: {pyversion}\n"\
501
501
  "Version of the API: v1.0.0\n"\
502
- "SDK Package Version: 1.6.44-dev9".\
502
+ "SDK Package Version: 1.6.45".\
503
503
  format(env=sys.platform, pyversion=sys.version)
504
504
 
505
505
  def get_host_settings(self) -> List[HostSetting]:
@@ -32,7 +32,11 @@ class GlobalConfigurationItem(BaseModel):
32
32
  can_overwrite: StrictBool
33
33
  upper_bound: Optional[Union[StrictFloat, StrictInt]] = None
34
34
  is_public: StrictBool
35
- __properties: ClassVar[List[str]] = ["key_name", "string_value", "value_type", "can_overwrite", "upper_bound", "is_public"]
35
+ is_read_only: Optional[StrictBool] = None
36
+ is_encrypted: Optional[StrictBool] = None
37
+ description: Optional[StrictStr] = None
38
+ category: Optional[StrictStr] = None
39
+ __properties: ClassVar[List[str]] = ["key_name", "string_value", "value_type", "can_overwrite", "upper_bound", "is_public", "is_read_only", "is_encrypted", "description", "category"]
36
40
 
37
41
  model_config = ConfigDict(
38
42
  populate_by_name=True,
@@ -90,7 +94,11 @@ class GlobalConfigurationItem(BaseModel):
90
94
  "value_type": obj.get("value_type"),
91
95
  "can_overwrite": obj.get("can_overwrite"),
92
96
  "upper_bound": obj.get("upper_bound"),
93
- "is_public": obj.get("is_public")
97
+ "is_public": obj.get("is_public"),
98
+ "is_read_only": obj.get("is_read_only"),
99
+ "is_encrypted": obj.get("is_encrypted"),
100
+ "description": obj.get("description"),
101
+ "category": obj.get("category")
94
102
  })
95
103
  return _obj
96
104
 
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "1.6.44-dev9"
17
+ __version__ = "1.6.45"
18
18
 
19
19
  # import apis into sdk package
20
20
  from h2ogpte.rest_sync.api.api_keys_api import APIKeysApi
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'OpenAPI-Generator/1.6.44-dev9/python'
93
+ self.user_agent = 'OpenAPI-Generator/1.6.45/python'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  def __enter__(self):
@@ -503,7 +503,7 @@ class Configuration:
503
503
  "OS: {env}\n"\
504
504
  "Python Version: {pyversion}\n"\
505
505
  "Version of the API: v1.0.0\n"\
506
- "SDK Package Version: 1.6.44-dev9".\
506
+ "SDK Package Version: 1.6.45".\
507
507
  format(env=sys.platform, pyversion=sys.version)
508
508
 
509
509
  def get_host_settings(self) -> List[HostSetting]:
@@ -32,7 +32,11 @@ class GlobalConfigurationItem(BaseModel):
32
32
  can_overwrite: StrictBool
33
33
  upper_bound: Optional[Union[StrictFloat, StrictInt]] = None
34
34
  is_public: StrictBool
35
- __properties: ClassVar[List[str]] = ["key_name", "string_value", "value_type", "can_overwrite", "upper_bound", "is_public"]
35
+ is_read_only: Optional[StrictBool] = None
36
+ is_encrypted: Optional[StrictBool] = None
37
+ description: Optional[StrictStr] = None
38
+ category: Optional[StrictStr] = None
39
+ __properties: ClassVar[List[str]] = ["key_name", "string_value", "value_type", "can_overwrite", "upper_bound", "is_public", "is_read_only", "is_encrypted", "description", "category"]
36
40
 
37
41
  model_config = ConfigDict(
38
42
  populate_by_name=True,
@@ -90,7 +94,11 @@ class GlobalConfigurationItem(BaseModel):
90
94
  "value_type": obj.get("value_type"),
91
95
  "can_overwrite": obj.get("can_overwrite"),
92
96
  "upper_bound": obj.get("upper_bound"),
93
- "is_public": obj.get("is_public")
97
+ "is_public": obj.get("is_public"),
98
+ "is_read_only": obj.get("is_read_only"),
99
+ "is_encrypted": obj.get("is_encrypted"),
100
+ "description": obj.get("description"),
101
+ "category": obj.get("category")
94
102
  })
95
103
  return _obj
96
104
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: h2ogpte
3
- Version: 1.6.44rc9
3
+ Version: 1.6.45
4
4
  Summary: Client library for Enterprise h2oGPTe
5
5
  Author-email: "H2O.ai, Inc." <support@h2o.ai>
6
6
  Project-URL: Source, https://github.com/h2oai/h2ogpte
@@ -1,8 +1,8 @@
1
- h2ogpte/__init__.py,sha256=J9-R6VEV8qEaclMf-7AN60HdZgnQJE3eo0AJgCuENgA,1524
1
+ h2ogpte/__init__.py,sha256=r_iiqVzSlwPxXKVuW89BTxOQ273x6y_et9HP34EpkKk,1521
2
2
  h2ogpte/connectors.py,sha256=CRAEpkn9GotcCjWANfJjZ5Hq1cjGWJ4H_IO4eJgVWiI,8466
3
3
  h2ogpte/errors.py,sha256=XgLdfJO1fZ9Bf9rhUKpnvRzzvkNyan3Oc6WzGS6hCUA,1248
4
- h2ogpte/h2ogpte.py,sha256=AqwDkynS9kLDi231PgGiwKm8kzVUQZUYquMqMdiYEHQ,309478
5
- h2ogpte/h2ogpte_async.py,sha256=cfuKTU5T2rSYeYXDjTsJ_TbSAyglhoRr6kQoCc-8fgI,329391
4
+ h2ogpte/h2ogpte.py,sha256=QdGX0SKMv0kdU8C33un1DFvyRrqvSQnnERqm9gF4IN4,309850
5
+ h2ogpte/h2ogpte_async.py,sha256=yuR3OdgSMxUIvuzUmgE1BYP-Ki9bYmpaHI8fTI3K30o,329747
6
6
  h2ogpte/h2ogpte_sync_base.py,sha256=ftsVzpMqEsyi0UACMI-7H_EIYEx9JEdEUImbyjWy_Hc,15285
7
7
  h2ogpte/session.py,sha256=BqJg3mWVeyz_ZLUJC_olzZzeLnRSaJwCH1NkXXfhg54,32608
8
8
  h2ogpte/session_async.py,sha256=UzNijTn3kZjAUYl_Jn5Oji4QrPTOpdX9KKByTmhLlK8,31354
@@ -41,10 +41,10 @@ h2ogpte/cli/ui/prompts.py,sha256=bJvRe_32KppQTK5bqnsrPh0RS4JaY9KkiV7y-3v8PMQ,538
41
41
  h2ogpte/cli/ui/status_bar.py,sha256=hs2MLvkg-y3Aiu3gWRtgMXf3jv3DGe7Y47ucgoBAP7Y,3852
42
42
  h2ogpte/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  h2ogpte/cli/utils/file_manager.py,sha256=ghNDX6G3Dr0vFvBYjbqx5o7qxq-pN8Vo2Rp1vyITfLo,13988
44
- h2ogpte/rest_async/__init__.py,sha256=hVi4wgpvB75-g3mWK1adO4HqKuwVAGbddZwON05ggw4,15203
45
- h2ogpte/rest_async/api_client.py,sha256=vUz2Aoa0qI34oPlC0VZYdWA6kmVcDbIrq8SOjZaZeu4,29510
44
+ h2ogpte/rest_async/__init__.py,sha256=m_Wp8PpC2EjucfElIMbvNaIhj8izyBVM7iYxlTYTD18,15198
45
+ h2ogpte/rest_async/api_client.py,sha256=Pb3_lVTESMn0o6rKzG7xKVRHlccYfJusId6I-BQo55I,29505
46
46
  h2ogpte/rest_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
47
- h2ogpte/rest_async/configuration.py,sha256=ZFVITmWtExcHnI06BVaR8CCvcKjXuX1esUedxQ1ScV0,19567
47
+ h2ogpte/rest_async/configuration.py,sha256=5ckZXdCh3daY00C-GKfX_Uz5Qt1XUeoztskDKIQXWB4,19562
48
48
  h2ogpte/rest_async/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
49
49
  h2ogpte/rest_async/rest.py,sha256=mdjDwzJ1kiaYtONUfDRqKsRPw5-tG6eyZV2P1yBuwRo,9147
50
50
  h2ogpte/rest_async/api/__init__.py,sha256=R_x57GGyaSgxZyrJOyOt551TodbRSQf3T7VrraQc-84,973
@@ -122,7 +122,7 @@ h2ogpte/rest_async/models/extraction_request.py,sha256=HlhsMtMSnpdwkzyPiKVMZvaHV
122
122
  h2ogpte/rest_async/models/extractor.py,sha256=pAFE_9ktgBah_h6GITkoqnuWYhZWb8PlUb2KxMwm9j0,5401
123
123
  h2ogpte/rest_async/models/extractor_create_request.py,sha256=xvDXyXOUcKTLxYMljOBGgt6d-w7m5gdCIXXf220sVb8,4911
124
124
  h2ogpte/rest_async/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
125
- h2ogpte/rest_async/models/global_configuration_item.py,sha256=MnA0ysC34KZue6R3zDVERQPbQGglz47kMNFSlXH0_CM,4980
125
+ h2ogpte/rest_async/models/global_configuration_item.py,sha256=ftcmagaca05APU4tevfvEOcSPgP6rRHzmBbs4Txryx4,5418
126
126
  h2ogpte/rest_async/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
127
127
  h2ogpte/rest_async/models/group_info.py,sha256=H3fTrANe9edylqnoDGLmGmL84TQLGdif2XKH1YDdEJA,4528
128
128
  h2ogpte/rest_async/models/group_share_permission.py,sha256=k79A1zbMKie-zKPfBOfpMsOc453oHVh6Ixwf4dnTkuQ,4537
@@ -201,10 +201,10 @@ h2ogpte/rest_async/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJii
201
201
  h2ogpte/rest_async/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
202
202
  h2ogpte/rest_async/models/user_job_details.py,sha256=kzu8fLxVsRMgnyt6dLr0VWjlIoE3i1VRpGR9nDxFyk4,4985
203
203
  h2ogpte/rest_async/models/user_permission.py,sha256=1k74E7s2kD2waSZ79KPlgTupVYEacTKWMqcKxv2972A,4856
204
- h2ogpte/rest_sync/__init__.py,sha256=TDrF5FTonsbsGxH76o6LhgFnIEJO0PN3l9hrpjPJpuA,15042
205
- h2ogpte/rest_sync/api_client.py,sha256=XxK-Au-xNVKnRCFoK4UxFu_P1PCfmklCV486CWwiwl0,29397
204
+ h2ogpte/rest_sync/__init__.py,sha256=7mbAiOt3X5o6paCaKE0iRbqFgYsif8ytPRVs-eD8d8M,15037
205
+ h2ogpte/rest_sync/api_client.py,sha256=Cguufqr69BACwOEW8N62vPCq9-JfAtvhRbUGfSQFnNg,29392
206
206
  h2ogpte/rest_sync/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
207
- h2ogpte/rest_sync/configuration.py,sha256=3WQeOh-BPaYPudUv13dayS589uPKWlROAIHVwD-4HOo,19850
207
+ h2ogpte/rest_sync/configuration.py,sha256=zvv-bisEdouVV1H-wEdn_0YJRRdn16c7iN25xCZtLf8,19845
208
208
  h2ogpte/rest_sync/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
209
209
  h2ogpte/rest_sync/rest.py,sha256=evRzviTYC_fsrpTtFlGvruXmquH9C0jDn-oQrGrE5A0,11314
210
210
  h2ogpte/rest_sync/api/__init__.py,sha256=ZuLQQtyiXnP5UOwTlIOYLGLQq1BG_0PEkzC9s698vjM,958
@@ -282,7 +282,7 @@ h2ogpte/rest_sync/models/extraction_request.py,sha256=5GPJzCIa-iYNJGoJ0StAIHcNTZ
282
282
  h2ogpte/rest_sync/models/extractor.py,sha256=pAFE_9ktgBah_h6GITkoqnuWYhZWb8PlUb2KxMwm9j0,5401
283
283
  h2ogpte/rest_sync/models/extractor_create_request.py,sha256=xvDXyXOUcKTLxYMljOBGgt6d-w7m5gdCIXXf220sVb8,4911
284
284
  h2ogpte/rest_sync/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
285
- h2ogpte/rest_sync/models/global_configuration_item.py,sha256=MnA0ysC34KZue6R3zDVERQPbQGglz47kMNFSlXH0_CM,4980
285
+ h2ogpte/rest_sync/models/global_configuration_item.py,sha256=ftcmagaca05APU4tevfvEOcSPgP6rRHzmBbs4Txryx4,5418
286
286
  h2ogpte/rest_sync/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
287
287
  h2ogpte/rest_sync/models/group_info.py,sha256=H3fTrANe9edylqnoDGLmGmL84TQLGdif2XKH1YDdEJA,4528
288
288
  h2ogpte/rest_sync/models/group_share_permission.py,sha256=k79A1zbMKie-zKPfBOfpMsOc453oHVh6Ixwf4dnTkuQ,4537
@@ -361,8 +361,8 @@ h2ogpte/rest_sync/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiP
361
361
  h2ogpte/rest_sync/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
362
362
  h2ogpte/rest_sync/models/user_job_details.py,sha256=9cbhpgLMDpar-aTOaY5Ygud-8Kbi23cLNldTGab0Sd8,4984
363
363
  h2ogpte/rest_sync/models/user_permission.py,sha256=1k74E7s2kD2waSZ79KPlgTupVYEacTKWMqcKxv2972A,4856
364
- h2ogpte-1.6.44rc9.dist-info/METADATA,sha256=o8-5v3-pkp-Q_Xz1LaCxB7YAnfMvgEYsiFqbcyTO5Fs,8615
365
- h2ogpte-1.6.44rc9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
- h2ogpte-1.6.44rc9.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
367
- h2ogpte-1.6.44rc9.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
368
- h2ogpte-1.6.44rc9.dist-info/RECORD,,
364
+ h2ogpte-1.6.45.dist-info/METADATA,sha256=nC6GN0v3WglSTjblqO4JzA_c_WzKgQT8dTas0_h9iCg,8612
365
+ h2ogpte-1.6.45.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
+ h2ogpte-1.6.45.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
367
+ h2ogpte-1.6.45.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
368
+ h2ogpte-1.6.45.dist-info/RECORD,,