sfq 0.0.40__py3-none-any.whl → 0.0.41__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.
sfq/__init__.py CHANGED
@@ -45,7 +45,7 @@ __all__ = [
45
45
  "__version__",
46
46
  ]
47
47
 
48
- __version__ = "0.0.40"
48
+ __version__ = "0.0.41"
49
49
  """
50
50
  ### `__version__`
51
51
 
@@ -63,7 +63,7 @@ class _SFTokenAuth:
63
63
  access_token: str,
64
64
  api_version: str = "v64.0",
65
65
  token_endpoint: str = "/services/oauth2/token",
66
- user_agent: str = "sfq/0.0.40",
66
+ user_agent: str = "sfq/0.0.41",
67
67
  sforce_client: str = "_auto",
68
68
  proxy: str = "_auto",
69
69
  ) -> None:
@@ -107,7 +107,7 @@ class SFAuth:
107
107
  access_token: Optional[str] = None,
108
108
  token_expiration_time: Optional[float] = None,
109
109
  token_lifetime: int = 15 * 60,
110
- user_agent: str = "sfq/0.0.40",
110
+ user_agent: str = "sfq/0.0.41",
111
111
  sforce_client: str = "_auto",
112
112
  proxy: str = "_auto",
113
113
  ) -> None:
@@ -172,7 +172,7 @@ class SFAuth:
172
172
  self._debug_cleanup = DebugCleanup(sf_auth=self)
173
173
 
174
174
  # Store version information
175
- self.__version__ = "0.0.40"
175
+ self.__version__ = "0.0.41"
176
176
  """
177
177
  ### `__version__`
178
178
 
sfq/http_client.py CHANGED
@@ -29,7 +29,7 @@ class HTTPClient:
29
29
  def __init__(
30
30
  self,
31
31
  auth_manager: AuthManager,
32
- user_agent: str = "sfq/0.0.40",
32
+ user_agent: str = "sfq/0.0.41",
33
33
  sforce_client: str = "_auto",
34
34
  high_api_usage_threshold: int = 80,
35
35
  ) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sfq
3
- Version: 0.0.40
3
+ Version: 0.0.41
4
4
  Summary: Python wrapper for the Salesforce's Query API.
5
5
  Author-email: David Moruzzi <sfq.pypi@dmoruzi.com>
6
6
  Keywords: salesforce,salesforce query
@@ -1,15 +1,15 @@
1
- sfq/__init__.py,sha256=2bruwi4PbPWE-6BJdsvi-6aFn-t4pjG4_c_ZxPBtrZs,21781
1
+ sfq/__init__.py,sha256=QpCz5EKWG9bp2BQOgHgIYnLKz1lh6AgqUupji4lv0s4,21781
2
2
  sfq/_cometd.py,sha256=QqdSGsms9uFm7vgmxgau7m2UuLHztK1yjN-BNjeo8xM,10381
3
3
  sfq/auth.py,sha256=MPlaH4lHz9uJDdPGcJ_t4Gsp8pWx9crCfMr7FwPD7U4,14079
4
4
  sfq/crud.py,sha256=fj4wPMt0DcrMKbMWQ9AUMsUNUWicsY93LP_3Q7lhmDU,20300
5
5
  sfq/debug_cleanup.py,sha256=e2_Hpigy3F7XsATOUXo8DZNmuEIL9SDD0tBlZIZeQLc,2638
6
6
  sfq/exceptions.py,sha256=Ys41dV8nAeP8Cl9xr4QuL7itQxjxh5KDCse6hJNl6AY,1028
7
- sfq/http_client.py,sha256=HhKYpZeATnzwmpoiF90Ct9I38K7G5sR_uEwcD3wifaY,18642
7
+ sfq/http_client.py,sha256=1n6OrH3JJnbbocBKsRLtNKfy9ho8S81V_686c197idk,18642
8
8
  sfq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  sfq/query.py,sha256=AoagL8PMKUcpbPPTcHJPKhmUdDDPa0La4JLC0TUN_Yc,14586
10
10
  sfq/soap.py,sha256=FM4msP9ErrgLFaNOQy_kYVde8QFkT4yQu9TfMiZG0VA,7006
11
11
  sfq/timeout_detector.py,sha256=Y8zO0h2dxMchNxhh5ns3GBfRv07EzKzUcr-hqZc_2-s,5503
12
12
  sfq/utils.py,sha256=d1vhpTa5innn5w23dnb_9el_giOXRCuRIaP6XUnaLfc,12387
13
- sfq-0.0.40.dist-info/METADATA,sha256=DSPiwmYZnR0LthN637oOthmbuwV6rRkry4WRidfDtfM,6899
14
- sfq-0.0.40.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
15
- sfq-0.0.40.dist-info/RECORD,,
13
+ sfq-0.0.41.dist-info/METADATA,sha256=POv4SXU_mLUpqxKuzJPM4TNHAWqKYcpxw6ZiwJZ3XpE,6899
14
+ sfq-0.0.41.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
15
+ sfq-0.0.41.dist-info/RECORD,,
File without changes