Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
- added type `CustomerAddCustomerGroupAssignmentAction`
- added type `CustomerRemoveCustomerGroupAssignmentAction`
- added type `CustomerSetCustomerGroupAssignmentsAction`
- added type `ExpiredCustomerEmailTokenError`
- added type `ExpiredCustomerPasswordTokenError`
- added type `GraphQLExpiredCustomerEmailTokenError`
- added type `GraphQLExpiredCustomerPasswordTokenError`
- added type `BaseEvent`
- added type `CheckoutOrderCreationFailedEvent`
- added type `CheckoutPaymentAuthorizationCancelledEvent`
Expand Down Expand Up @@ -129,7 +133,18 @@
- added property `inheritedStores` to type `Division`
- added property `discountTypeCombination` to type `Cart`
- added property `customerGroupAssignments` to type `Customer`
- added property `invalidateOlderTokens` to type `CustomerCreateEmailToken`
- added property `invalidateOlderTokens` to type `CustomerCreatePasswordResetToken`
- added property `customerGroupAssignments` to type `CustomerDraft`
- added property `invalidateOlderTokens` to type `CustomerToken`
- added property `value` to type `CustomerEmailTokenCreatedMessage`
- added property `invalidateOlderTokens` to type `CustomerEmailTokenCreatedMessage`
- added property `value` to type `CustomerPasswordTokenCreatedMessage`
- added property `invalidateOlderTokens` to type `CustomerPasswordTokenCreatedMessage`
- added property `value` to type `CustomerEmailTokenCreatedMessagePayload`
- added property `invalidateOlderTokens` to type `CustomerEmailTokenCreatedMessagePayload`
- added property `value` to type `CustomerPasswordTokenCreatedMessagePayload`
- added property `invalidateOlderTokens` to type `CustomerPasswordTokenCreatedMessagePayload`
- added property `discountTypeCombination` to type `StagedOrder`
- added property `discountTypeCombination` to type `Order`
- added property `priceCustomerGroupAssignments` to type `ProductSearchProjectionParams`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,35 +148,35 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyCustomersEmailConfirmPost_401' => [
'ByProjectKeyCustomersEmailConfirmPost_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->emailConfirm()
->post(null);
},
401
404
],
'ByProjectKeyCustomersEmailConfirmPost_403' => [
'ByProjectKeyCustomersEmailConfirmPost_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->emailConfirm()
->post(null);
},
403
401
],
'ByProjectKeyCustomersEmailConfirmPost_404' => [
'ByProjectKeyCustomersEmailConfirmPost_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->emailConfirm()
->post(null);
},
404
403
],
'ByProjectKeyCustomersEmailConfirmPost_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,35 +160,35 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_401' => [
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->withEmailToken("emailToken")
->get();
},
401
404
],
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_403' => [
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->withEmailToken("emailToken")
->get();
},
403
401
],
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_404' => [
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->withEmailToken("emailToken")
->get();
},
404
403
],
'ByProjectKeyCustomersEmailTokenByEmailTokenGet_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,35 +148,35 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyCustomersPasswordResetPost_401' => [
'ByProjectKeyCustomersPasswordResetPost_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->passwordReset()
->post(null);
},
401
404
],
'ByProjectKeyCustomersPasswordResetPost_403' => [
'ByProjectKeyCustomersPasswordResetPost_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->passwordReset()
->post(null);
},
403
401
],
'ByProjectKeyCustomersPasswordResetPost_404' => [
'ByProjectKeyCustomersPasswordResetPost_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->passwordReset()
->post(null);
},
404
403
],
'ByProjectKeyCustomersPasswordResetPost_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,35 +160,35 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_401' => [
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->withPasswordToken("passwordToken")
->get();
},
401
404
],
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_403' => [
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->withPasswordToken("passwordToken")
->get();
},
403
401
],
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_404' => [
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
->customers()
->withPasswordToken("passwordToken")
->get();
},
404
403
],
'ByProjectKeyCustomersPasswordTokenByPasswordTokenGet_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_401' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -161,9 +161,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->emailConfirm()
->post(null);
},
401
404
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_403' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -172,9 +172,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->emailConfirm()
->post(null);
},
403
401
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_404' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -183,7 +183,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
->emailConfirm()
->post(null);
},
404
403
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailConfirmPost_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_401' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -174,9 +174,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->withEmailToken("emailToken")
->get();
},
401
404
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_403' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -185,9 +185,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->withEmailToken("emailToken")
->get();
},
403
401
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_404' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -196,7 +196,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
->withEmailToken("emailToken")
->get();
},
404
403
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersEmailTokenByEmailTokenGet_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_401' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -161,9 +161,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->passwordReset()
->post(null);
},
401
404
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_403' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -172,9 +172,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->passwordReset()
->post(null);
},
403
401
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_404' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -183,7 +183,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
->passwordReset()
->post(null);
},
404
403
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordResetPost_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
},
400
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_401' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_404' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -174,9 +174,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->withPasswordToken("passwordToken")
->get();
},
401
404
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_403' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_401' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -185,9 +185,9 @@ function (ApiRequestBuilder $builder): RequestInterface {
->withPasswordToken("passwordToken")
->get();
},
403
401
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_404' => [
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_403' => [
function (ApiRequestBuilder $builder): RequestInterface {
return $builder
->withProjectKey("projectKey")
Expand All @@ -196,7 +196,7 @@ function (ApiRequestBuilder $builder): RequestInterface {
->withPasswordToken("passwordToken")
->get();
},
404
403
],
'ByProjectKeyInStoreKeyByStoreKeyCustomersPasswordTokenByPasswordTokenGet_500' => [
function (ApiRequestBuilder $builder): RequestInterface {
Expand Down
Loading