Skip to content

Releases: phpclassic/php-shopify

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"]]);

v1.2.5

13 Feb 03:51
1d05bc9
Compare
Choose a tag to compare
  • add support for Order()->FulfillmentOrder and FulfillmentRequests #278

Support the behavior required by:
https://shopify.dev/apps/fulfillment/order-management-apps/manage-fulfillments#request-a-fulfillment
https://shopify.dev/api/admin-rest/2022-10/resources/assignedfulfillmentorder

FulfillmentRequest Resource - including actions
Mapped FulfillmentOrder->FulfillmentRequest
Mapped Order(id)->FulfillmentOrder
Example:

// Requesting the FulfilmentOrder for a given order
$fo = $client->Order("1234567890")->FulfillmentOrder()->get();

// Creating a FulfilmentRequest
// Follow instructions to get partial fulfilments
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->post([]);

// Accepting \ Rejecting a FulfilmentRequest
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->accept();
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->reject();

// Communicating fulfillment
$client->Fulfillment->post($body)

v1.2.4

14 Dec 06:45
38b31fc
Compare
Choose a tag to compare
  • Feature - Added API Deprecations Resource #282

v1.2.3

24 Oct 07:13
b815f08
Compare
Choose a tag to compare
  • #266 - (Fixed) PHP Deprecated: explode(): Passing null to parameter 2

v1.2.2

09 Oct 15:33
f2e1428
Compare
Choose a tag to compare
  • Fulfillment 2022-07 API version #269

v1.2.1

03 Oct 14:59
f931765
Compare
Choose a tag to compare
  • Metafield as a child resource of Collection & DraftOrder #267

v1.2.0

29 Sep 06:37
81e6cc8
Compare
Choose a tag to compare

Shopify API Version 2022-07

  • Change to 2202-07 version breaks fulfillments #264