Skip to content

Commit 475d64b

Browse files
committed
Merge branch 'master' of https://bitbucket.org/woosignal/dev-flutter-woocommerce-app into feature/WFA-4-api-orders-notes
# Conflicts: # example/.flutter-plugins # example/.flutter-plugins-dependencies # example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java # example/android/local.properties # example/pubspec.lock # lib/woosignal.dart
2 parents 01c6c69 + 7a3b286 commit 475d64b

File tree

115 files changed

+4516
-109
lines changed

Some content is hidden

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

115 files changed

+4516
-109
lines changed

.flutter-plugins

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

.idea/libraries/Dart_Packages.xml

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

.idea/libraries/Flutter_Plugins.xml

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

.idea/workspace.xml

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

README.md

Lines changed: 114 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ _getProducts() async {
5656
#### WooCommerce - Products
5757
- Get Products
5858
- Retrive a Product by id
59+
- Update a Product by id
60+
- Delete a Product by id
61+
- Create a Product
62+
- Create, Delete and Update Product Multiple Time.
63+
<!-- -->
5964

6065
[See Products API](https://woosignal.com/docs/api/1.0/products#list-all-products)
6166

@@ -132,13 +137,121 @@ _getProducts() async {
132137
- Get Orders
133138
- Retrive a Order by id
134139
- Create an Order
135-
140+
- Update an Order
141+
- - Create, Delete and Update Order Multiple Time.
136142
[See Order API](https://woosignal.com/docs/api/1.0/orders)
137143

138144

139145
#### WooCommerce - Customers
140146
- Get Customers
147+
- Create a Customer
148+
- Delete a Customer
149+
- Update a Customer
150+
- Create, Delete and Update Product Multiple Time.
141151

142152
[See Customers API](https://woosignal.com/docs/api/1.0/customers)
143153

154+
#### WooCommerce - API Orders Notes
155+
- List all Orders Notes
156+
- Retrive a Orders Notes by id
157+
- Delete a Orders Notes by id
158+
- Create a Orders Notes
159+
[See Orders Notes API](https://woosignal.com/docs/api/1.0/order-notes)
160+
161+
#### WooCommerce - Refunds
162+
<!-- The refunds API allows you to create, view, and delete individual refunds. -->
163+
- List all all the refunds from an order.
164+
- Retrive a retrieve and view a specific refund from an order
165+
- Delete a delete an order refund.
166+
- Create a new refund for an order.
167+
[See Refunds API](https://woosignal.com/docs/api/1.0/order-refund)
168+
169+
#### WooCommerce - Coupons
170+
<!-- The coupons API allows you to create, view, update, and delete individual, or a batch, of coupon codes. -->
171+
- List all the coupons that have been created.
172+
- Retrive and view a specific coupon by ID
173+
- This API lets you make changes or update to a coupon.
174+
- Delete a delete a coupon.
175+
- Create, Delete and Update Coupons Multiple Time.
176+
[See Coupons API](https://woosignal.com/docs/api/1.0/coupons)
177+
178+
#### WooCommerce - Reports
179+
<!-- The reports API allows you to view all types of reports available. -->
180+
181+
<!-- Retrieve and view a simple list of available reports. -->
182+
- List all the Reports that have been created.
183+
<!-- Retrieve sales report -->
184+
- API lets you retrieve and view a sales report.
185+
<!-- Retrieve top sellers report -->
186+
- API lets you retrieve and view a list of top sellers report.
187+
<!-- Retrieve coupons totals -->
188+
- API lets you retrieve and view coupons totals report.
189+
<!-- Retrieve customers totals -->
190+
- API lets you retrieve and view customers totals report.
191+
<!-- Retrieve orders totals -->
192+
- API lets you retrieve and view orders totals report.
193+
<!-- Retrieve products totals -->
194+
- API lets you retrieve and view products totals report
195+
<!-- Retrieve reviews totals -->
196+
- API lets you retrieve and view reviews totals report.
197+
198+
[See Reports API](https://woosignal.com/docs/api/1.0/reports)
199+
200+
#### WooCommerce - Data
201+
<!-- The data API allows you to view all types of data available. -->
202+
<!-- List all data -->
203+
- Retrieve and view a simple list of available data endpoints.
204+
<!-- List all continents -->
205+
- API helps you to view all the continents..
206+
<!-- Retrieve continent data -->
207+
- API lets you retrieve and view a continent data.
208+
<!-- List all countries -->
209+
- API helps you to view all the countries..
210+
<!-- Retrieve country data -->
211+
- API lets you retrieve and view a country data.
212+
<!-- List all currencies -->
213+
- API helps you to view all the currencies.
214+
<!-- Retrieve currency data -->
215+
- API lets you retrieve and view a currency data.
216+
<!-- Retrieve current currency -->
217+
- API lets you retrieve and view store's current currency data.
218+
219+
[See Data API](https://woosignal.com/docs/api/1.0/data)
220+
221+
#### WooCommerce - System Status
222+
<!-- The system status API allows you to view all system status items. -->
223+
<!-- List all system status items -->
224+
- API helps you to view all the system status items.
225+
226+
[See System Status API](https://woosignal.com/docs/api/1.0/system-status)
227+
228+
#### WooCommerce - Payment gateways
229+
<!--The payment gateways API allows you to view, and update individual payment gateways.
230+
Results are not paginated - all gateways will be returned -->
231+
<!-- Retrieve an payment gateway -->
232+
- API lets you retrieve and view a specific payment gateway.
233+
<!-- List all payment gateways -->
234+
- API helps you to view all the payment gateways.
235+
<!-- Update a payment gateway -->
236+
- API lets you make changes to a payment gateway.
237+
238+
[See Payment gateways API](https://woosignal.com/docs/api/1.0/payment-gateways)
239+
240+
#### WooCommerce - Setting options
241+
<!--The payment gateways API allows you to view, and update individual payment gateways.
242+
Results are not paginated - all gateways will be returned -->
243+
<!-- Retrieve a setting option -->
244+
- API lets you retrieve and view a specific setting option.
245+
<!-- List all setting options -->
246+
- API helps you to view all the setting options.
247+
<!-- Update a setting option -->
248+
- API lets you make changes to a setting option.
249+
<!-- Batch update setting options -->
250+
- Create, Delete and Update Setting options Multiple Time.
251+
252+
[See Setting options API](https://woosignal.com/docs/api/1.0/setting-options)
253+
254+
144255
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+

example/.flutter-plugins

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# This is a generated file; do not edit or check into version control.
2+
<<<<<<< HEAD
23
device_info=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\device_info-0.4.2+10\\
34
path_provider_linux=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path_provider_linux-0.0.1+2\\
45
path_provider_windows=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path_provider_windows-0.0.4+3\\
@@ -7,3 +8,14 @@ shared_preferences_linux=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\
78
shared_preferences_macos=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_macos-0.0.1+6\\
89
shared_preferences_web=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_web-0.1.2+4\\
910
shared_preferences_windows=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_windows-0.0.1+3\\
11+
=======
12+
device_info=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\device_info-0.4.2+9\\
13+
path_provider_linux=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path_provider_linux-0.0.1+2\\
14+
path_provider_windows=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path_provider_windows-0.0.4+1\\
15+
shared_preferences=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences-0.5.12+2\\
16+
shared_preferences_linux=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_linux-0.0.2+2\\
17+
shared_preferences_macos=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_macos-0.0.1+6\\
18+
shared_preferences_web=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_web-0.1.2+4\\
19+
shared_preferences_windows=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\shared_preferences_windows-0.0.1+1\\
20+
sms_maintained=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\sms_maintained-0.2.5\\
21+
>>>>>>> ebeedfe9758105ff6c3bed9973070b61b353c5c3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"device_info","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\device_info-0.4.2+10\\\\","dependencies":[]},{"name":"shared_preferences","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences-0.5.12+4\\\\","dependencies":[]}],"android":[{"name":"device_info","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\device_info-0.4.2+10\\\\","dependencies":[]},{"name":"shared_preferences","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences-0.5.12+4\\\\","dependencies":[]}],"macos":[{"name":"shared_preferences_macos","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_macos-0.0.1+6\\\\","dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\path_provider_linux-0.0.1+2\\\\","dependencies":[]},{"name":"shared_preferences_linux","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_linux-0.0.2+4\\\\","dependencies":["path_provider_linux"]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\path_provider_windows-0.0.4+3\\\\","dependencies":[]},{"name":"shared_preferences_windows","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_windows-0.0.1+3\\\\","dependencies":["path_provider_windows"]}],"web":[{"name":"shared_preferences_web","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_web-0.1.2+4\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"device_info","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"shared_preferences","dependencies":["shared_preferences_linux","shared_preferences_macos","shared_preferences_web","shared_preferences_windows"]},{"name":"shared_preferences_linux","dependencies":["path_provider_linux"]},{"name":"shared_preferences_macos","dependencies":[]},{"name":"shared_preferences_web","dependencies":[]},{"name":"shared_preferences_windows","dependencies":["path_provider_windows"]}],"date_created":"2020-11-17 00:00:16.393615","version":"1.20.1"}
1+
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"device_info","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\device_info-0.4.2+9\\\\","dependencies":[]},{"name":"shared_preferences","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences-0.5.12+2\\\\","dependencies":[]},{"name":"sms_maintained","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\sms_maintained-0.2.5\\\\","dependencies":[]}],"android":[{"name":"device_info","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\device_info-0.4.2+9\\\\","dependencies":[]},{"name":"shared_preferences","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences-0.5.12+2\\\\","dependencies":[]},{"name":"sms_maintained","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\sms_maintained-0.2.5\\\\","dependencies":[]}],"macos":[{"name":"shared_preferences_macos","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_macos-0.0.1+6\\\\","dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\path_provider_linux-0.0.1+2\\\\","dependencies":[]},{"name":"shared_preferences_linux","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_linux-0.0.2+2\\\\","dependencies":["path_provider_linux"]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\path_provider_windows-0.0.4+1\\\\","dependencies":[]},{"name":"shared_preferences_windows","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_windows-0.0.1+1\\\\","dependencies":["path_provider_windows"]}],"web":[{"name":"shared_preferences_web","path":"C:\\\\src\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\shared_preferences_web-0.1.2+4\\\\","dependencies":[]}]},"dependencyGraph":[{"name":"device_info","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"shared_preferences","dependencies":["shared_preferences_linux","shared_preferences_macos","shared_preferences_web","shared_preferences_windows"]},{"name":"shared_preferences_linux","dependencies":["path_provider_linux"]},{"name":"shared_preferences_macos","dependencies":[]},{"name":"shared_preferences_web","dependencies":[]},{"name":"shared_preferences_windows","dependencies":["path_provider_windows"]},{"name":"sms_maintained","dependencies":[]}],"date_created":"2020-11-16 23:58:59.418044","version":"1.20.1"}

example/.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
**/ios/Flutter/.last_build_id
26+
.dart_tool/
27+
.flutter-plugins
28+
.flutter-plugins-dependencies
29+
.packages
30+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Web related
35+
lib/generated_plugin_registrant.dart
36+
37+
# Symbolication related
38+
app.*.symbols
39+
40+
# Obfuscation related
41+
app.*.map.json
42+
43+
# Exceptions to above rules.
44+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

example/.idea/HaiderApp.iml

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

0 commit comments

Comments
 (0)