candy-api

GetCandy v1 E-Commerce API

APACHE-2.0 License

Downloads
7.5K
Stars
444

Bot releases are visible (Hide)

candy-api - v0.3.6

Published by alecritson about 5 years ago

Update PHP version

candy-api - v0.3.5

Published by alecritson about 5 years ago

Add lockfile to .gitignore

candy-api - v0.3.4

Published by alecritson about 5 years ago

  • [changed] Changed type to search_type to be more explicit. Also search_type is no longer a required field and will default to a product search
  • [changed] Changed includes on search to include
candy-api - Fix branch that release was tagged from

Published by alecritson about 5 years ago

[fixed] Fixed issue where asset thumbnails weren't being generated on a product if they already had an image.
[fixed] Fixed issue when calculating the amount of products are rewarding for a discount

candy-api - v0.2.90

Published by alecritson about 5 years ago

  • [fixed] Fixed issue where asset thumbnails weren't being generated on a product if they already had an image.
candy-api - v0.2.89

Published by alecritson about 5 years ago

  • [fixed] Fixed issue when calculating the amount of products are rewarding for a discount
candy-api - v0.2.88

Published by alecritson over 5 years ago

  • [added] Added #161
candy-api - v0.3.1

Published by alecritson over 5 years ago

  • [removed] Removed old dependancy
  • [changed] Updated third party dependencies
candy-api - v0.3.0

Published by alecritson over 5 years ago

  • [added] Added support for Laravel 5.8
  • [fixed] Fixed support for Elasticsearch 7
candy-api - v0.2.87

Published by alecritson over 5 years ago

  • [improved] Pull out a getRegionFromZip method
candy-api - v0.2.86

Published by alecritson over 5 years ago

  • [added] Added ability to specify pipelines when retrieving shipping methods
candy-api - v0.2.85

Published by alecritson over 5 years ago

  • [added] Added duplicate product functionality
candy-api - v0.2.84

Published by alecritson over 5 years ago

  • [fixed] Fixed job handling of class on reindex
  • [improved] Allow reindex command to be queued

You can now queue the reindex job by doing the following:

php artisan candy:search:index --queue
candy-api - v0.2.83

Published by alecritson over 5 years ago

  • [changed] Assets now order by position by default
  • [changed] When uploading a YouTube video, make sure OEM data is always fetched.
candy-api - v0.2.82

Published by alecritson over 5 years ago

  • [fixed] #160
candy-api - v0.2.81

Published by alecritson over 5 years ago

  • [changed] PayPal driver records proper Transaction ID from PayPal
  • [fixed] Fix reindexer job
  • [fixed] Fix undefined index in AttributeService
candy-api - v0.2.80

Published by alecritson over 5 years ago

  • [fixed] Only sync basket with order if it exists and is active.
candy-api - v0.2.79

Published by alecritson over 5 years ago

  • [added] Added local placed scope for Order, returns all orders that have a placed_at value in the DB.
  • [changed] Order listing will now only show placed orders if no status is passed.
  • [fixed] Fixed order status never ordering by placed_at date
candy-api - v0.2.78

Published by alecritson over 5 years ago

  • [fixed] Fixed issue with wrong global scopes being taken off when indexing
candy-api - v0.2.77

Published by alecritson over 5 years ago

  • [changed] Changed the way PayPal handles config

If you use the PayPal provider for payments, you need to update your config in config/services.php to the following:

    'paypal' => [
        'live' => [
            'client_id' => env('PAYPAL_LIVE_CLIENT_ID'),
            'client_secret' => env('PAYPAL_LIVE_CLIENT_SECRET'),
        ],
        'sandbox' => [
            'client_id' => env('PAYPAL_SANDBOX_CLIENT_ID'),
            'client_secret' => env('PAYPAL_SANDBOX_CLIENT_SECRET'),
        ],
        'settings' => [
            'mode' => env('PAYPAL_ENV'),
        ]
    ],