Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -16851,32 +16851,6 @@ client.vendors().update(
</dl>


</dd>
</dl>
</details>

## Mobile
<details><summary><code>client.mobile.authorizationCode()</code></summary>
<dl>
<dd>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```java
client.mobile().authorizationCode();
```
</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>
Expand Down
34 changes: 0 additions & 34 deletions src/main/java/com/squareup/square/AsyncMobileClient.java

This file was deleted.

76 changes: 0 additions & 76 deletions src/main/java/com/squareup/square/AsyncRawMobileClient.java

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/java/com/squareup/square/AsyncSquareClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ public class AsyncSquareClient {

protected final Supplier<AsyncVendorsClient> vendorsClient;

protected final Supplier<AsyncMobileClient> mobileClient;

protected final Supplier<AsyncCashDrawersClient> cashDrawersClient;

protected final Supplier<AsyncWebhooksClient> webhooksClient;
Expand Down Expand Up @@ -119,7 +117,6 @@ public AsyncSquareClient(ClientOptions clientOptions) {
this.terminalClient = Suppliers.memoize(() -> new AsyncTerminalClient(clientOptions));
this.transferOrdersClient = Suppliers.memoize(() -> new AsyncTransferOrdersClient(clientOptions));
this.vendorsClient = Suppliers.memoize(() -> new AsyncVendorsClient(clientOptions));
this.mobileClient = Suppliers.memoize(() -> new AsyncMobileClient(clientOptions));
this.cashDrawersClient = Suppliers.memoize(() -> new AsyncCashDrawersClient(clientOptions));
this.webhooksClient = Suppliers.memoize(() -> new AsyncWebhooksClient(clientOptions));
}
Expand Down Expand Up @@ -256,10 +253,6 @@ public AsyncVendorsClient vendors() {
return this.vendorsClient.get();
}

public AsyncMobileClient mobile() {
return this.mobileClient.get();
}

public AsyncCashDrawersClient cashDrawers() {
return this.cashDrawersClient.get();
}
Expand Down
33 changes: 0 additions & 33 deletions src/main/java/com/squareup/square/MobileClient.java

This file was deleted.

59 changes: 0 additions & 59 deletions src/main/java/com/squareup/square/RawMobileClient.java

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/java/com/squareup/square/SquareClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ public class SquareClient {

protected final Supplier<VendorsClient> vendorsClient;

protected final Supplier<MobileClient> mobileClient;

protected final Supplier<CashDrawersClient> cashDrawersClient;

protected final Supplier<WebhooksClient> webhooksClient;
Expand Down Expand Up @@ -119,7 +117,6 @@ public SquareClient(ClientOptions clientOptions) {
this.terminalClient = Suppliers.memoize(() -> new TerminalClient(clientOptions));
this.transferOrdersClient = Suppliers.memoize(() -> new TransferOrdersClient(clientOptions));
this.vendorsClient = Suppliers.memoize(() -> new VendorsClient(clientOptions));
this.mobileClient = Suppliers.memoize(() -> new MobileClient(clientOptions));
this.cashDrawersClient = Suppliers.memoize(() -> new CashDrawersClient(clientOptions));
this.webhooksClient = Suppliers.memoize(() -> new WebhooksClient(clientOptions));
}
Expand Down Expand Up @@ -256,10 +253,6 @@ public VendorsClient vendors() {
return this.vendorsClient.get();
}

public MobileClient mobile() {
return this.mobileClient.get();
}

public CashDrawersClient cashDrawers() {
return this.cashDrawersClient.get();
}
Expand Down

This file was deleted.

Loading