reach_commons 0.15.8__py3-none-any.whl → 0.16.0__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.
- reach_commons/clients/reach_data_bridge.py +7 -0
- reach_commons/reach_aws/sqs.py +14 -0
- {reach_commons-0.15.8.dist-info → reach_commons-0.16.0.dist-info}/METADATA +1 -1
- {reach_commons-0.15.8.dist-info → reach_commons-0.16.0.dist-info}/RECORD +5 -5
- {reach_commons-0.15.8.dist-info → reach_commons-0.16.0.dist-info}/WHEEL +0 -0
|
@@ -139,6 +139,13 @@ class ReachDataBridgeClient:
|
|
|
139
139
|
)
|
|
140
140
|
return resp
|
|
141
141
|
|
|
142
|
+
def stripe_subscription_one_time_recharge(self, business_id=None, price_id=None):
|
|
143
|
+
resp = requests.post(
|
|
144
|
+
f"{self.base_url}/stripe/subscription/{business_id}/one-time-charge/{price_id}",
|
|
145
|
+
headers=self.gateway_headers,
|
|
146
|
+
)
|
|
147
|
+
return resp
|
|
148
|
+
|
|
142
149
|
|
|
143
150
|
#
|
|
144
151
|
# api_gateway = ReachApiGatewayV2()
|
reach_commons/reach_aws/sqs.py
CHANGED
|
@@ -473,6 +473,20 @@ class SmsProcessorSQSNotifier(SQSClient):
|
|
|
473
473
|
delay_seconds=delay_seconds,
|
|
474
474
|
)
|
|
475
475
|
|
|
476
|
+
def notify_for_republish_sms(self, message_data):
|
|
477
|
+
delay_seconds = message_data.get("delay_seconds", 60)
|
|
478
|
+
|
|
479
|
+
if "delay_seconds" in message_data:
|
|
480
|
+
delay_seconds *= 2
|
|
481
|
+
|
|
482
|
+
message_attributes = {"service_name": self.SERVICE_NAME}
|
|
483
|
+
|
|
484
|
+
return self.publish(
|
|
485
|
+
message_data=message_data,
|
|
486
|
+
message_attributes=message_attributes,
|
|
487
|
+
delay_seconds=delay_seconds,
|
|
488
|
+
)
|
|
489
|
+
|
|
476
490
|
|
|
477
491
|
class POSApiPullerSQSNotifier(SQSClient):
|
|
478
492
|
SERVICE_NAME = "POSApiPullerSQSNotifier"
|
|
@@ -8,7 +8,7 @@ reach_commons/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
8
8
|
reach_commons/clients/event_processor.py,sha256=KmYF0kuZxLmHQjJASXMr5jz2D_D3WNHB0c4QOlZo1_E,2024
|
|
9
9
|
reach_commons/clients/hubspot.py,sha256=ntAzvwoaq78MkKaVoZ7geND-AafAzccNnJogfJDahVA,5497
|
|
10
10
|
reach_commons/clients/outscraper.py,sha256=vA3m9xYVNH47x0IbqWL05Kb-wBv_F2vcZOCsKvgL_50,2040
|
|
11
|
-
reach_commons/clients/reach_data_bridge.py,sha256=
|
|
11
|
+
reach_commons/clients/reach_data_bridge.py,sha256=la2dPajeHlugbMZ-JY1JCURhZKCnw_sF1M7CCewb6N8,5142
|
|
12
12
|
reach_commons/clients/reach_ops_api.py,sha256=-YFcaBCXb-uhvbIarlLncWqKVmYI7mMcTOnp8qvzags,2179
|
|
13
13
|
reach_commons/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
reach_commons/mongo/customer_persistence.py,sha256=acrtpyCWr9vLVq61saJ3_Vp4DYHFBTM9XqoYC72J84w,3735
|
|
@@ -21,12 +21,12 @@ reach_commons/reach_aws/exceptions.py,sha256=x0RL5ktNtzxg0KykhEVWReBq_dEtciK6B2v
|
|
|
21
21
|
reach_commons/reach_aws/firehose.py,sha256=1xFKLWMv3bNo3PPW5gtaL6NqzUDyVil6B768slj2wbY,5674
|
|
22
22
|
reach_commons/reach_aws/kms.py,sha256=HDJ3lnKm6Jah2asizUDtQErlVSjrcV9lOfBPHzUVguY,4526
|
|
23
23
|
reach_commons/reach_aws/s3.py,sha256=KLWvlQVakaaGfFg3110QHc1PlxCb1pUhmJQ-VggLEj4,1962
|
|
24
|
-
reach_commons/reach_aws/sqs.py,sha256=
|
|
24
|
+
reach_commons/reach_aws/sqs.py,sha256=LKQ42vRJko2HTE8gO_lRvftnstIMI3DeFZakvLUM0BQ,15864
|
|
25
25
|
reach_commons/reach_base_model.py,sha256=uMmDGjwKTZ3h7f8Pfvc99FCsAt5eZNlUJnLLbB5EqGY,2907
|
|
26
26
|
reach_commons/redis_manager.py,sha256=tK-kBw1fO1f-phsxGI-7W_MEtHQsRz7JY9LEN8OBcNY,2600
|
|
27
27
|
reach_commons/sms_smart_encoding.py,sha256=81byimk8zydNsj1wYdYsF4n96Lw4GQOBmKOu-GiYY9s,993
|
|
28
28
|
reach_commons/utils.py,sha256=dMgKIGqTgoSItuBI8oz81gKtW3qi21Jkljv9leS_V88,8475
|
|
29
29
|
reach_commons/validations.py,sha256=jc78boM62S9Z0Ip_nV1z7I983gGpW2Y7vOCQtmia8OU,964
|
|
30
|
-
reach_commons-0.
|
|
31
|
-
reach_commons-0.
|
|
32
|
-
reach_commons-0.
|
|
30
|
+
reach_commons-0.16.0.dist-info/METADATA,sha256=s2sjgTr6pd3pZ0FD1Qma5fcgwmioW1udRn9wnV4QhdY,1860
|
|
31
|
+
reach_commons-0.16.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
32
|
+
reach_commons-0.16.0.dist-info/RECORD,,
|
|
File without changes
|