Skip to content

Commit 35784bf

Browse files
committed
Bump minor version to 0.5.0
1 parent 2601bea commit 35784bf

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "highsidelabs/walmart-api",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"description": "A PHP client for Walmart's Marketplace, 1P Supplier, and Content Provider APIs.",
55
"keywords": [
66
"walmart",

resources/generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"artifactVersion": "0.4.1",
2+
"artifactVersion": "0.5.0",
33

44
"disallowAdditionalPropertiesIfNotPresent": false,
55
"variableNamingConvention": "camelCase",

resources/schemas/ca/mp/cbt.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"content": {
103103
"application\/json": {
104104
"schema": {
105-
"$ref": "#\/components\/schemas\/CommonResponseBoolean"
105+
"$ref": "#\/components\/schemas\/CommonResponseLabelGenerationResponseCa"
106106
},
107107
"example": {
108108
"data": {
@@ -196,7 +196,7 @@
196196
"content": {
197197
"application\/json": {
198198
"schema": {
199-
"$ref": "#\/components\/schemas\/CommonResponseBoolean"
199+
"$ref": "#\/components\/schemas\/CommonResponseConsolidationResponse"
200200
},
201201
"example": {
202202
"data": {
@@ -273,7 +273,7 @@
273273
"content": {
274274
"application\/json": {
275275
"schema": {
276-
"$ref": "#\/components\/schemas\/CommonResponseBoolean"
276+
"$ref": "#\/components\/schemas\/CommonResponseConsolidationResponse"
277277
},
278278
"example": {
279279
"data": {
@@ -343,7 +343,7 @@
343343
"content": {
344344
"application\/json": {
345345
"schema": {
346-
"$ref": "#\/components\/schemas\/CommonResponseBoolean"
346+
"$ref": "#\/components\/schemas\/CommonResponseListLabelGenerationResponseCa"
347347
},
348348
"example": {
349349
"data": [
@@ -560,7 +560,7 @@
560560
"content": {
561561
"application\/json": {
562562
"schema": {
563-
"$ref": "#\/components\/schemas\/CommonResponseBoolean"
563+
"$ref": "#\/components\/schemas\/CommonResponseLabelGenerationResponseCa"
564564
},
565565
"example": {
566566
"data": "true"
@@ -623,7 +623,7 @@
623623
"content": {
624624
"application\/json": {
625625
"schema": {
626-
"$ref": "#\/components\/schemas\/CommonResponseBoolean"
626+
"$ref": "#\/components\/schemas\/CommonResponseListCarrierPackageResponse"
627627
},
628628
"example": {
629629
"data": [

resources/schemas/ca/mp/orders.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"content": {
143143
"application\/xml": {
144144
"schema": {
145-
"$ref": "#\/components\/schemas\/OrderShipment"
145+
"$ref": "#\/components\/schemas\/OrderCancellation"
146146
},
147147
"example": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<orderCancellation xmlns=\"http:\/\/walmart.com\/mp\/v3\/orders\">\n <orderLines>\n <orderLine>\n <lineNumber>1<\/lineNumber>\n <orderLineStatuses>\n <orderLineStatus>\n <status>Cancelled<\/status>\n <cancellationReason>CUSTOMER_REQUESTED_SELLER_TO_CANCEL<\/cancellationReason>\n <statusQuantity>\n <unitOfMeasurement>EACH<\/unitOfMeasurement>\n <amount>1<\/amount>\n <\/statusQuantity>\n <\/orderLineStatus>\n <\/orderLineStatuses>\n <\/orderLine>\n <\/orderLines>\n<\/orderCancellation>"
148148
}
@@ -1499,7 +1499,7 @@
14991499
"type": "object",
15001500
"properties": {
15011501
"orderLines": {
1502-
"$ref": "#\/components\/schemas\/ShippingLinesType"
1502+
"$ref": "#\/components\/schemas\/RefundLinesType"
15031503
}
15041504
},
15051505
"description": "Information about a shipment",
@@ -1854,7 +1854,7 @@
18541854
"type": "string"
18551855
},
18561856
"orderLines": {
1857-
"$ref": "#\/components\/schemas\/ShippingLinesType"
1857+
"$ref": "#\/components\/schemas\/RefundLinesType"
18581858
}
18591859
},
18601860
"xml": {
@@ -1970,7 +1970,7 @@
19701970
"description": "OrderLine number"
19711971
},
19721972
"orderLineStatuses": {
1973-
"$ref": "#\/components\/schemas\/OrderLineStatusesType"
1973+
"$ref": "#\/components\/schemas\/CancelLineStatusesType"
19741974
}
19751975
},
19761976
"description": "A list of orderLines to be cancelled"
@@ -1998,7 +1998,7 @@
19981998
"type": "object",
19991999
"properties": {
20002000
"orderLines": {
2001-
"$ref": "#\/components\/schemas\/ShippingLinesType"
2001+
"$ref": "#\/components\/schemas\/CancelLinesType"
20022002
}
20032003
},
20042004
"xml": {

src/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class Configuration
112112
*
113113
* @var string
114114
*/
115-
protected string $userAgent = 'highsidelabs/walmart-api-php/0.4.1';
115+
protected string $userAgent = 'highsidelabs/walmart-api-php/0.5.0';
116116

117117
/**
118118
* Debug switch (default set to false)

src/Walmart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
abstract class Walmart
3131
{
32-
public const VERSION = '0.4.1';
32+
public const VERSION = '0.5.0';
3333

3434
/**
3535
* The configuration for this client.

0 commit comments

Comments
 (0)