Skip to content

Commit a9b1ae0

Browse files
committed
v1.3.0 - New WooCommerce APIs
1 parent 9e5a3e0 commit a9b1ae0

30 files changed

+1955
-1703
lines changed

.idea/workspace.xml

Lines changed: 41 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.3.0] - 2020-12-20
2+
3+
* New WooCommerce APIs
4+
15
## [1.2.1] - 2020-10-30
26

37
* Dependency updates

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ _getProducts() async {
139139
- Create an Order
140140
- Update an Order
141141
- - Create, Delete and Update Order Multiple Time.
142+
142143
[See Order API](https://woosignal.com/docs/api/1.0/orders)
143144

144145

@@ -154,8 +155,9 @@ _getProducts() async {
154155
#### WooCommerce - API Orders Notes
155156
- List all Orders Notes
156157
- Retrive a Orders Notes by id
157-
- Delete a Orders Notes by id
158-
- Create a Orders Notes
158+
- Delete a Orders Notes by id
159+
- Create a Orders Notes
160+
159161
[See Orders Notes API](https://woosignal.com/docs/api/1.0/order-notes)
160162

161163
#### WooCommerce - Refunds
@@ -164,6 +166,7 @@ _getProducts() async {
164166
- Retrive a retrieve and view a specific refund from an order
165167
- Delete a delete an order refund.
166168
- Create a new refund for an order.
169+
167170
[See Refunds API](https://woosignal.com/docs/api/1.0/order-refund)
168171

169172
#### WooCommerce - Coupons
@@ -173,6 +176,7 @@ _getProducts() async {
173176
- This API lets you make changes or update to a coupon.
174177
- Delete a delete a coupon.
175178
- Create, Delete and Update Coupons Multiple Time.
179+
176180
[See Coupons API](https://woosignal.com/docs/api/1.0/coupons)
177181

178182
#### WooCommerce - Reports
@@ -252,6 +256,4 @@ _getProducts() async {
252256
[See Setting options API](https://woosignal.com/docs/api/1.0/setting-options)
253257

254258

255-
Disclaimer: This plugin is not affiliated with or supported by Automattic, Inc. All logos and trademarks are the property of their respective owners.
256-
257-
259+
Disclaimer: This plugin is not affiliated with or supported by Automattic, Inc. All logos and trademarks are the property of their respective owners.

example/.vscode/launch.json

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

example/assets/2.png

-3.65 KB
Binary file not shown.

example/assets/Image.png

-17 KB
Binary file not shown.

example/assets/Logo.png

-24.9 KB
Binary file not shown.

example/assets/avatar.png

-4.2 KB
Binary file not shown.

example/assets/company.png

-63.4 KB
Binary file not shown.

example/test/widget_test.dart

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,8 @@
55
// gestures. You can also use WidgetTester to find child widgets in the widget
66
// tree, read text, and verify that the values of widget properties are correct.
77

8-
import 'package:flutter/material.dart';
98
import 'package:flutter_test/flutter_test.dart';
109

11-
1210
void main() {
13-
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
14-
// Build our app and trigger a frame.
15-
await tester.pumpWidget(MyApp());
16-
17-
// Verify that our counter starts at 0.
18-
expect(find.text('0'), findsOneWidget);
19-
expect(find.text('1'), findsNothing);
20-
21-
// Tap the '+' icon and trigger a frame.
22-
await tester.tap(find.byIcon(Icons.add));
23-
await tester.pump();
24-
25-
// Verify that our counter has incremented.
26-
expect(find.text('0'), findsNothing);
27-
expect(find.text('1'), findsOneWidget);
28-
});
11+
testWidgets('Counter increments smoke test', (WidgetTester tester) async {});
2912
}

0 commit comments

Comments
 (0)