UncountablePythonSDK 0.0.66__py3-none-any.whl → 0.0.67__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: UncountablePythonSDK
3
- Version: 0.0.66
3
+ Version: 0.0.67
4
4
  Summary: Uncountable SDK
5
5
  Project-URL: Homepage, https://github.com/uncountableinc/uncountable-python-sdk
6
6
  Project-URL: Repository, https://github.com/uncountableinc/uncountable-python-sdk.git
@@ -86,7 +86,7 @@ uncountable/integration/cron.py,sha256=Gwu1Mq4lZZvtvx5tlnWJHnXJp948Xk9CXdS1ULVCV
86
86
  uncountable/integration/entrypoint.py,sha256=wgOXhTzErttRjOzV4rS4psZW5qUKIa5ez89QndQl61k,785
87
87
  uncountable/integration/job.py,sha256=UrsZHWXKE2wD5M3lFKJCXvDdWj7QMDtAREKv6RBnT3Q,1548
88
88
  uncountable/integration/scan_profiles.py,sha256=fHRS9Su6JlYWKBGZkA3KgUSqbT_PrB91Xe2rkdvv1Ew,1396
89
- uncountable/integration/server.py,sha256=PfIIh0_uzJia1gsHyVDZGQhS3XcjxetXEnl35zX3VaE,4595
89
+ uncountable/integration/server.py,sha256=xVVdLZVDOKB9KIJ7Hi3fk4JoGH59py2AjUCd2Ikwoj4,4705
90
90
  uncountable/integration/telemetry.py,sha256=MwQLmgCoxpmA_UTp3e2ZB37wcDzKM0qzm5MrmaiJWhU,7142
91
91
  uncountable/integration/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
92
  uncountable/integration/db/connect.py,sha256=YtQHJ1DBGPhxKFRCfiXqohOYUceKSxMVOJ88aPI48Ug,181
@@ -249,7 +249,7 @@ uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr
249
249
  uncountable/types/api/triggers/run_trigger.py,sha256=_Rpha9nxXI3Xr17CrGDtofg4HZ81x2lt0rMZ6As0qfE,893
250
250
  uncountable/types/api/uploader/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
251
251
  uncountable/types/api/uploader/invoke_uploader.py,sha256=Rc77y5q-3R9-SNQgm8P35zKaW2D1Hbtm7PDixnOn1G0,1025
252
- UncountablePythonSDK-0.0.66.dist-info/METADATA,sha256=4pvhstadEVQXxm667KfT4PGMceZAQssJtfVplzhTui8,1993
253
- UncountablePythonSDK-0.0.66.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
254
- UncountablePythonSDK-0.0.66.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
255
- UncountablePythonSDK-0.0.66.dist-info/RECORD,,
252
+ UncountablePythonSDK-0.0.67.dist-info/METADATA,sha256=PDTBKKMu5NfqMmNYW8Nj9cudRZeSgcLEIqHzzzYJegs,1993
253
+ UncountablePythonSDK-0.0.67.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
254
+ UncountablePythonSDK-0.0.67.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
255
+ UncountablePythonSDK-0.0.67.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -76,6 +76,7 @@ class IntegrationServer:
76
76
  existing_job.modify(
77
77
  name=job_defn.name,
78
78
  kwargs=job_kwargs,
79
+ misfire_grace_period=None,
79
80
  )
80
81
  existing_job.reschedule(
81
82
  CronTrigger.from_crontab(job_defn.cron_spec)
@@ -97,6 +98,7 @@ class IntegrationServer:
97
98
  name=job_defn.name,
98
99
  id=job_defn.id,
99
100
  kwargs=job_kwargs,
101
+ misfire_grace_period=None,
100
102
  **job_opts,
101
103
  )
102
104
  case WebhookJobDefinition():