You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/api/apple-pay.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,11 @@ an Apple Pay enabled domain.
18
18
This endpoint provides an easy way for platform developers to bulk activate
19
19
Apple Pay on the Web with Square for merchants using their platform.
20
20
21
-
Note: The SqPaymentForm library is deprecated as of May 13, 2021, and will only receive critical security updates until it is retired on October 31, 2022.
22
-
You must migrate your payment form code to the Web Payments SDK to continue using your domain for Apple Pay. For more information on migrating to the Web Payments SDK, see [Migrate to the Web Payments SDK](https://developer.squareup.com/docs/web-payments/migrate).
21
+
Note: You will need to host a valid domain verification file on your domain to support Apple Pay. The
22
+
current version of this file is always available at https://app.squareup.com/digital-wallets/apple-pay/apple-developer-merchantid-domain-association,
23
+
and should be hosted at `.well_known/apple-developer-merchantid-domain-association` on your
24
+
domain. This file is subject to change; we strongly recommend checking for updates regularly and avoiding
25
+
long-lived caches that might not keep in sync with the correct file version.
23
26
24
27
To learn more about the Web Payments SDK and how to add Apple Pay, see [Take an Apple Pay Payment](https://developer.squareup.com/docs/web-payments/apple-pay).
Copy file name to clipboardExpand all lines: doc/client.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ The following parameters are configurable for the API Client:
5
5
6
6
| Parameter | Type | Description |
7
7
| --- | --- | --- |
8
-
|`squareVersion`|`String`| Square Connect API versions<br>*Default*: `"2024-06-04"`|
8
+
|`squareVersion`|`String`| Square Connect API versions<br>*Default*: `"2024-07-17"`|
9
9
|`customUrl`|`String`| Sets the base URL requests are made to. Defaults to `https://connect.squareup.com`<br>*Default*: `"https://connect.squareup.com"`|
10
10
|`environment`|`string`| The API environment. <br> **Default: `production`**|
11
11
|`httpClientConfig`|[`Consumer<HttpClientConfiguration.Builder>`](http-client-configuration-builder.md)| Set up Http Client Configuration instance. |
@@ -19,7 +19,7 @@ The API client can be initialized as follows:
Copy file name to clipboardExpand all lines: doc/models/update-invoice-request.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,19 +13,17 @@ Describes a `UpdateInvoice` request.
13
13
| --- | --- | --- | --- | --- |
14
14
|`Invoice`|[`Invoice`](../../doc/models/invoice.md)| Required | Stores information about an invoice. You use the Invoices API to create and manage<br>invoices. For more information, see [Invoices API Overview](https://developer.squareup.com/docs/invoices-api/overview). | Invoice getInvoice() |
15
15
|`IdempotencyKey`|`String`| Optional | A unique string that identifies the `UpdateInvoice` request. If you do not<br>provide `idempotency_key` (or provide an empty string as the value), the endpoint<br>treats each request as independent.<br><br>For more information, see [Idempotency](https://developer.squareup.com/docs/build-basics/common-api-patterns/idempotency).<br>**Constraints**: *Maximum Length*: `128`| String getIdempotencyKey() |
16
-
|`FieldsToClear`|`List<String>`| Optional | The list of fields to clear.<br>For examples, see[Update an Invoice](https://developer.squareup.com/docs/invoices-api/update-invoices). | List<String> getFieldsToClear() |
16
+
|`FieldsToClear`|`List<String>`| Optional | The list of fields to clear. Although this field is currently supported, we<br>recommend using null values or the `remove` field when possible. For examples, see<br>[Update an Invoice](https://developer.squareup.com/docs/invoices-api/update-invoices). | List<String> getFieldsToClear() |
0 commit comments