hh-applicant-tool 0.6.10__tar.gz → 0.6.11__tar.gz

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.

Potentially problematic release.


This version of hh-applicant-tool might be problematic. Click here for more details.

Files changed (31) hide show
  1. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/PKG-INFO +1 -1
  2. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/apply_similar.py +2 -9
  3. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/pyproject.toml +1 -1
  4. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/README.md +0 -0
  5. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/__init__.py +0 -0
  6. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/__main__.py +0 -0
  7. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/ai/__init__.py +0 -0
  8. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/ai/blackbox.py +0 -0
  9. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/api/__init__.py +0 -0
  10. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/api/client.py +0 -0
  11. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/api/errors.py +0 -0
  12. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/color_log.py +0 -0
  13. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/constants.py +0 -0
  14. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/jsonc.py +0 -0
  15. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/main.py +0 -0
  16. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/mixins.py +0 -0
  17. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/__init__.py +0 -0
  18. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/authorize.py +0 -0
  19. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/call_api.py +0 -0
  20. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/clear_negotiations.py +0 -0
  21. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/config.py +0 -0
  22. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/delete_telemetry.py +0 -0
  23. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/get_employer_contacts.py +0 -0
  24. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/list_resumes.py +0 -0
  25. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/refresh_token.py +0 -0
  26. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/reply_employers.py +0 -0
  27. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/update_resumes.py +0 -0
  28. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/operations/whoami.py +0 -0
  29. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/telemetry_client.py +0 -0
  30. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/types.py +0 -0
  31. {hh_applicant_tool-0.6.10 → hh_applicant_tool-0.6.11}/hh_applicant_tool/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hh-applicant-tool
3
- Version: 0.6.10
3
+ Version: 0.6.11
4
4
  Summary:
5
5
  Author: Senior YAML Developer
6
6
  Author-email: yamldeveloper@proton.me
@@ -61,7 +61,6 @@ class Namespace(BaseNamespace):
61
61
  sort_point_lng: float | None
62
62
  no_magic: bool
63
63
  premium: bool
64
- responses_count_enabled: bool
65
64
 
66
65
 
67
66
  def _bool(v: bool) -> str:
@@ -202,12 +201,6 @@ class Operation(BaseOperation, GetResumeIdMixin):
202
201
  action=argparse.BooleanOptionalAction,
203
202
  help="Только премиум вакансии",
204
203
  )
205
- parser.add_argument(
206
- "--responses-count-enabled",
207
- default=False,
208
- action=argparse.BooleanOptionalAction,
209
- help="Включить счётчик откликов",
210
- )
211
204
  parser.add_argument(
212
205
  "--search-field", nargs="+", help="Поля поиска (name, company_name и т.п.)"
213
206
  )
@@ -550,8 +543,8 @@ class Operation(BaseOperation, GetResumeIdMixin):
550
543
  params["no_magic"] = _bool(self.no_magic)
551
544
  if self.premium is not None:
552
545
  params["premium"] = _bool(self.premium)
553
- if self.responses_count_enabled is not None:
554
- params["responses_count_enabled"] = _bool(self.responses_count_enabled)
546
+ # if self.responses_count_enabled is not None:
547
+ # params["responses_count_enabled"] = _bool(self.responses_count_enabled)
555
548
 
556
549
  return params
557
550
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "hh-applicant-tool"
3
- version = "0.6.10"
3
+ version = "0.6.11"
4
4
  description = ""
5
5
  authors = ["Senior YAML Developer <yamldeveloper@proton.me>"]
6
6
  readme = "README.md"