Skip to content

Commit 787e476

Browse files
SDK regeneration
1 parent f941da7 commit 787e476

File tree

6 files changed

+0
-235
lines changed

6 files changed

+0
-235
lines changed

reference.md

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -18485,53 +18485,6 @@ information.
1848518485
</dl>
1848618486

1848718487

18488-
</dd>
18489-
</dl>
18490-
</details>
18491-
18492-
## Mobile
18493-
<details><summary><code>client.mobile.<a href="src/square/mobile/client.py">authorization_code</a>() -> AsyncHttpResponse[None]</code></summary>
18494-
<dl>
18495-
<dd>
18496-
18497-
#### 🔌 Usage
18498-
18499-
<dl>
18500-
<dd>
18501-
18502-
<dl>
18503-
<dd>
18504-
18505-
```python
18506-
from square import Square
18507-
18508-
client = Square(
18509-
token="YOUR_TOKEN",
18510-
)
18511-
client.mobile.authorization_code()
18512-
18513-
```
18514-
</dd>
18515-
</dl>
18516-
</dd>
18517-
</dl>
18518-
18519-
#### ⚙️ Parameters
18520-
18521-
<dl>
18522-
<dd>
18523-
18524-
<dl>
18525-
<dd>
18526-
18527-
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
18528-
18529-
</dd>
18530-
</dl>
18531-
</dd>
18532-
</dl>
18533-
18534-
1853518488
</dd>
1853618489
</dl>
1853718490
</details>

src/square/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
locations,
2828
loyalty,
2929
merchants,
30-
mobile,
3130
o_auth,
3231
orders,
3332
payments,
@@ -70,7 +69,6 @@
7069
"locations": ".locations",
7170
"loyalty": ".loyalty",
7271
"merchants": ".merchants",
73-
"mobile": ".mobile",
7472
"o_auth": ".o_auth",
7573
"orders": ".orders",
7674
"payments": ".payments",
@@ -134,7 +132,6 @@ def __dir__():
134132
"locations",
135133
"loyalty",
136134
"merchants",
137-
"mobile",
138135
"o_auth",
139136
"orders",
140137
"payments",

src/square/client.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
from .locations.client import AsyncLocationsClient, LocationsClient
3131
from .loyalty.client import AsyncLoyaltyClient, LoyaltyClient
3232
from .merchants.client import AsyncMerchantsClient, MerchantsClient
33-
from .mobile.client import AsyncMobileClient, MobileClient
3433
from .o_auth.client import AsyncOAuthClient, OAuthClient
3534
from .orders.client import AsyncOrdersClient, OrdersClient
3635
from .payments.client import AsyncPaymentsClient, PaymentsClient
@@ -149,7 +148,6 @@ def __init__(
149148
self._terminal: typing.Optional[TerminalClient] = None
150149
self._transfer_orders: typing.Optional[TransferOrdersClient] = None
151150
self._vendors: typing.Optional[VendorsClient] = None
152-
self._mobile: typing.Optional[MobileClient] = None
153151
self._cash_drawers: typing.Optional[CashDrawersClient] = None
154152
self._webhooks: typing.Optional[WebhooksClient] = None
155153

@@ -417,14 +415,6 @@ def vendors(self):
417415
self._vendors = VendorsClient(client_wrapper=self._client_wrapper)
418416
return self._vendors
419417

420-
@property
421-
def mobile(self):
422-
if self._mobile is None:
423-
from .mobile.client import MobileClient # noqa: E402
424-
425-
self._mobile = MobileClient(client_wrapper=self._client_wrapper)
426-
return self._mobile
427-
428418
@property
429419
def cash_drawers(self):
430420
if self._cash_drawers is None:
@@ -543,7 +533,6 @@ def __init__(
543533
self._terminal: typing.Optional[AsyncTerminalClient] = None
544534
self._transfer_orders: typing.Optional[AsyncTransferOrdersClient] = None
545535
self._vendors: typing.Optional[AsyncVendorsClient] = None
546-
self._mobile: typing.Optional[AsyncMobileClient] = None
547536
self._cash_drawers: typing.Optional[AsyncCashDrawersClient] = None
548537
self._webhooks: typing.Optional[AsyncWebhooksClient] = None
549538

@@ -811,14 +800,6 @@ def vendors(self):
811800
self._vendors = AsyncVendorsClient(client_wrapper=self._client_wrapper)
812801
return self._vendors
813802

814-
@property
815-
def mobile(self):
816-
if self._mobile is None:
817-
from .mobile.client import AsyncMobileClient # noqa: E402
818-
819-
self._mobile = AsyncMobileClient(client_wrapper=self._client_wrapper)
820-
return self._mobile
821-
822803
@property
823804
def cash_drawers(self):
824805
if self._cash_drawers is None:

src/square/mobile/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/square/mobile/client.py

Lines changed: 0 additions & 93 deletions
This file was deleted.

src/square/mobile/raw_client.py

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)