sfq 0.0.31__py3-none-any.whl → 0.0.32__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
@@ -100,7 +100,7 @@ class SFAuth:
100
100
  access_token: Optional[str] = None,
101
101
  token_expiration_time: Optional[float] = None,
102
102
  token_lifetime: int = 15 * 60,
103
- user_agent: str = "sfq/0.0.31",
103
+ user_agent: str = "sfq/0.0.32",
104
104
  sforce_client: str = "_auto",
105
105
  proxy: str = "_auto",
106
106
  ) -> None:
@@ -170,6 +170,16 @@ class SFAuth:
170
170
  * 📖 [Salesforce OAuth Flows Documentation](https://help.salesforce.com/s/articleView?id=xcloud.remoteaccess_oauth_flows.htm&type=5)
171
171
  """
172
172
 
173
+ self.__version__ = "0.0.32"
174
+ """
175
+ ### `__version__`
176
+
177
+ **The version of the sfq library.**
178
+ - Schema: `MAJOR.MINOR.PATCH`
179
+ - Used for debugging and compatibility checks
180
+ - Updated to reflect the current library version via CI/CD automation
181
+ """
182
+
173
183
  self.api_version = api_version
174
184
  """
175
185
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sfq
3
- Version: 0.0.31
3
+ Version: 0.0.32
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
@@ -0,0 +1,6 @@
1
+ sfq/__init__.py,sha256=sGL_DT0w4-9GqmTD_rffZ_J3eqOtjFUuH1S4nlVzow8,47102
2
+ sfq/_cometd.py,sha256=XimQEubmJwUmbWe85TxH_cuhGvWVuiHHrVr41tguuiI,10508
3
+ sfq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ sfq-0.0.32.dist-info/METADATA,sha256=Y3avdu7TKc8BCEz2kHZaqjPAIqcjD4CHzSF_WdMO4pI,6899
5
+ sfq-0.0.32.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
6
+ sfq-0.0.32.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- sfq/__init__.py,sha256=nVBedAMHbX95YE6FcdvjsH_BZ56Ekl855Q_HuIaYoG0,46792
2
- sfq/_cometd.py,sha256=XimQEubmJwUmbWe85TxH_cuhGvWVuiHHrVr41tguuiI,10508
3
- sfq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- sfq-0.0.31.dist-info/METADATA,sha256=RMgCGs9B5xkc9Ci9zOMl3B5peAwdTBzvLExOYOqaclI,6899
5
- sfq-0.0.31.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
6
- sfq-0.0.31.dist-info/RECORD,,
File without changes