Skip to content

Releases: phpclassic/php-shopify

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

v1.1.25

29 Sep 06:34
9c5a528
Compare
Choose a tag to compare
  • Rollback API Version (Breaking fullfilments)

v1.1.24

19 Jul 06:22
2f1595a
Compare
Choose a tag to compare
  • Add Metafield property and method to docblock #259

v1.1.23

14 Jul 15:40
5bc3d3a
Compare
Choose a tag to compare
  • Migrating from value_type to type #255

v1.1.22

23 Feb 06:42
59e6f8c
Compare
Choose a tag to compare
  • Resend requests that returns http error #240
  • Test case added for GraphQL Query #254
  • Update API Version to 2022-01