Skip to content

Commit bae8598

Browse files
author
autobot
committed
Generated PR for Release: 27.0.0.20230517
1 parent 9a7c50d commit bae8598

File tree

556 files changed

+11442
-26487
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

556 files changed

+11442
-26487
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ assignees: ''
77

88
---
99

10+
## **ATTENTION**
11+
This issue template is for **bugs** or **documentation** errors in this SDK Repo. Please direct all technical support questions, feature requests, API-related issues, and general discussions to our Square-supported developer channels. For public support, [join us in our BuildWithSquare Slack](https://squ.re/slack) or [post in our Developer Forums](https://developer.squareup.com/forums). For private support, [contact our Developer Success Engineers](https://squareup.com/help/us/en/contact?panel=BF53A9C8EF68) directly.
12+
1013
**Describe the bug**
1114
A clear and concise description of what the bug is.
1215

@@ -27,4 +30,4 @@ If applicable, add screenshots to help explain the bug.
2730
For example: 17.2.x
2831

2932
**Additional context**
30-
Add any other context about the problem here.
33+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Square Developer Forums
4+
url: https://developer.squareup.com/forums
5+
about: Public discussion threads for technical support, feature requests, api discussion, and all things related to square development.
6+
- name: BuildWithSquare Slack Channel
7+
url: https://squ.re/slack
8+
about: Community slack channel for real time support and conversations about building with square.
9+
- name: Developer Support
10+
url: https://squareup.com/help/us/en/contact?panel=BF53A9C8EF68
11+
about: Private support directly with Square Developer Success Engineers.

doc/api/checkout.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,26 @@ body = {
7474
'discount_uid': '56ae1696-z1e3-9328-af6d-f1e04d947gd4'
7575
}
7676
],
77-
'base_price_money': {}
77+
'base_price_money': {
78+
'amount': 1500,
79+
'currency': 'USD'
80+
}
7881
},
7982
{
8083
'quantity': '1',
8184
'name': 'Slim Jeans',
82-
'base_price_money': {}
85+
'base_price_money': {
86+
'amount': 2500,
87+
'currency': 'USD'
88+
}
8389
},
8490
{
8591
'quantity': '3',
8692
'name': 'Woven Sweater',
87-
'base_price_money': {}
93+
'base_price_money': {
94+
'amount': 3500,
95+
'currency': 'USD'
96+
}
8897
}
8998
],
9099
'taxes': [
@@ -99,7 +108,10 @@ body = {
99108
{
100109
'uid': '56ae1696-z1e3-9328-af6d-f1e04d947gd4',
101110
'type': 'FIXED_AMOUNT',
102-
'amount_money': {},
111+
'amount_money': {
112+
'amount': 100,
113+
'currency': 'USD'
114+
},
103115
'scope': 'LINE_ITEM'
104116
}
105117
]

doc/api/invoices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def list_invoices(self,
3838
| Parameter | Type | Tags | Description |
3939
| --- | --- | --- | --- |
4040
| `location_id` | `string` | Query, Required | The ID of the location for which to list invoices. |
41-
| `cursor` | `string` | Query, Optional | A pagination cursor returned by a previous call to this endpoint.<br>Provide this cursor to retrieve the next set of results for your original query.<br><br>For more information, see [Pagination](https://developer.squareup.com/docs/working-with-apis/pagination). |
41+
| `cursor` | `string` | Query, Optional | A pagination cursor returned by a previous call to this endpoint.<br>Provide this cursor to retrieve the next set of results for your original query.<br><br>For more information, see [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination). |
4242
| `limit` | `int` | Query, Optional | The maximum number of invoices to return (200 is the maximum `limit`).<br>If not provided, the server uses a default limit of 100 invoices. |
4343

4444
## Response Type

0 commit comments

Comments
 (0)