Skip to content

Commit 93c482c

Browse files
committed
Merge branch 'main' into issue-31_update_create_product_variant
Conflicts: src/BigCommerce/Api/Catalog/Products/VariantsApi.php
2 parents 5e4c479 + 6da00b1 commit 93c482c

File tree

167 files changed

+2696
-582
lines changed

Some content is hidden

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

167 files changed

+2696
-582
lines changed

README.md

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99

1010
## Introduction
11-
This is an early development version of an easy-to-use API client for BigCommerce.
11+
12+
This is an easy-to-use API client for BigCommerce.
1213

1314
## Installation
1415

@@ -94,21 +95,22 @@ Running tests: `composer run-script test`
9495

9596
#### Orders (V3)
9697

97-
- ☐ Transactions
98-
- ☐ Order Refunds
98+
- ☑️ Order Metafields
99+
- ☑️ Transactions
100+
- ☑️ Order Refunds
99101

100102
#### Payment Methods
101103

102-
- Payment Access Token
103-
- Payment Methods
104+
- ☑️ Payment Access Token
105+
- ☑️ Payment Methods
104106

105107
#### Scripts
106108

107-
- Scripts
109+
- ☑️ Scripts
108110

109111
#### Subscribers
110112

111-
- Subscribers
113+
- ☑️ Subscribers
112114

113115
#### Themes
114116

@@ -118,10 +120,10 @@ Running tests: `composer run-script test`
118120

119121
#### Widgets
120122

121-
- Regions
122-
- Widget Template
123-
- Widget
124-
- Placement
123+
- ☑️ Regions
124+
- ☑️ Widget Template
125+
- ☑️ Widget
126+
- ☑️ Placement
125127

126128
### Catalog
127129

@@ -138,9 +140,3 @@ Running tests: `composer run-script test`
138140
- ☑️ Price Lists
139141
- ☑️ Assignments
140142
- ☑️ Records
141-
142-
## Still To Do
143-
144-
- Document apis that are still to be implemented
145-
- Test coverage
146-
- Documentation

RELEASE_NOTES.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
#### New Features
1+
### New Features
22

3-
Add support for the [Themes API](https://developer.bigcommerce.com/api-reference/store-management/themes)
3+
Adding support for the Widget/Content endpoints. See the [Widgets Tutorial](https://developer.bigcommerce.com/api-docs/store-management/widgets/tutorials/tutorial)
4+
for usage.
45

5-
Includes
6-
7-
- Themes
8-
- Theme Actions
9-
- Theme Jobs
10-
11-
#### Code Improvements
12-
13-
- Refactor PaginatedResponse to be simpler to implement
6+
Implemented:
7+
- [Widgets API](https://developer.bigcommerce.com/api-reference/store-management/widgets/widget/createwidget)
8+
- [Widget Templates](https://developer.bigcommerce.com/api-reference/store-management/widgets/widget-template/createwidgettemplate)
9+
- Get Theme Regions
10+
- [Placements API](https://developer.bigcommerce.com/api-reference/store-management/widgets/placement/getplacements)

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
],
2121
"autoload": {
2222
"psr-4": {
23-
"BigCommerce\\ApiV3\\": "src/BigCommerce/"
23+
"BigCommerce\\ApiV3\\": "src/BigCommerce/",
24+
"BigCommerce\\Tests\\": "tests/BigCommerce"
2425
}
2526
},
2627
"require-dev": {
@@ -29,7 +30,7 @@
2930
},
3031
"scripts": {
3132
"test": "./vendor/bin/phpunit tests",
32-
"check-style": "./vendor/bin/phpcs --standard=PSR12 ./src ./tests",
33+
"check-style": "./vendor/bin/phpcs --standard=PSR12 -s ./src ./tests",
3334
"fix-style": "./vendor/bin/phpcbf --standard=PSR12 ./src ./tests"
3435
}
3536
}

0 commit comments

Comments
 (0)