Skip to content

Releases: phpclassic/php-shopify

v1.2.15

20 Jul 17:35
e18f92e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.14...v1.2.15

v1.2.14

18 Feb 13:23
0f08bf8
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.13...v1.2.14

v1.2.13

12 Feb 04:33
2989d36
Compare
Choose a tag to compare

What's Changed

  • Content type application/graphql is deprecated by @tareqtms in #342

Full Changelog: v1.2.12...v1.2.13

v1.2.12

11 Feb 18:10
ffce666
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.11...v1.2.12

v1.2.11

19 Oct 08:43
628b137
Compare
Choose a tag to compare

Update API Version Number

Full Changelog: v1.2.10...v1.2.11

v1.2.10

02 Jul 14:28
010a085
Compare
Choose a tag to compare
  • Update Default Api Version

Full Changelog: v1.2.9...v1.2.10

v1.2.9

25 Sep 13:12
6259d8b
Compare
Choose a tag to compare
  • Add getEmbeddedAppUrl method #307

v1.2.8

16 Sep 05:43
284d7c8
Compare
Choose a tag to compare
  • Add "FulfillmentOrder" and alfabetize properties #297
  • Add the Metafield to the Location Resource #305
  • Shopify API Version updated to 2023-07

v1.2.7

28 Jun 07:22
ac59e48
Compare
Choose a tag to compare
  • Gift Card Adjustment Resource #299

v1.2.6

29 May 07:05
eb26e68
Compare
Choose a tag to compare
  • Add total time spent in sleep during multiple requests #292
  • Add support for AssignedFulfillmentOrder resource #295

AssignedFulfillmentOrder Resource

Example:

// Requesting all assigned fulfillment orders
$shopify->AssignedFulfillmentOrder()->get();

// Requesting assigned fulfillment orders (by status)
$shopify->AssignedFulfillmentOrder()->get(["assignment_status" => "fulfillment_requested"]);

// Requesting assigned fulfillment orders (by locations)
$shopify->AssignedFulfillmentOrder()->get(["location_ids" => ["123456789"]]);