@@ -60290,6 +60290,7 @@ components:
6029060290 InventoryEntryDeleted: '#/components/schemas/InventoryEntryDeletedMessage'
6029160291 InventoryEntryQuantitySet: '#/components/schemas/InventoryEntryQuantitySetMessage'
6029260292 OrderPaymentAdded: '#/components/schemas/OrderPaymentAddedMessage'
60293+ OrderPaymentRemoved: '#/components/schemas/OrderPaymentRemovedMessage'
6029360294 PaymentCreated: '#/components/schemas/PaymentCreatedMessage'
6029460295 PaymentInteractionAdded: '#/components/schemas/PaymentInteractionAddedMessage'
6029560296 PaymentInterfaceIdSet: '#/components/schemas/PaymentInterfaceIdSetMessage'
@@ -61573,7 +61574,7 @@ components:
6157361574 - $ref: '#/components/schemas/Message'
6157461575 - type: "object"
6157561576 required:
61576- - payment
61577+ - paymentRef
6157761578 properties:
6157861579 id:
6157961580 type: "string"
@@ -61602,8 +61603,47 @@ components:
6160261603 type: "string"
6160361604 resourceUserProvidedIdentifiers:
6160461605 $ref: '#/components/schemas/UserProvidedIdentifiers'
61605- payment :
61606+ paymentRef :
6160661607 $ref: '#/components/schemas/PaymentReference'
61608+ OrderPaymentRemovedMessage:
61609+ allOf:
61610+ - $ref: '#/components/schemas/Message'
61611+ - type: "object"
61612+ required:
61613+ - paymentRef
61614+ - removedPaymentInfo
61615+ properties:
61616+ id:
61617+ type: "string"
61618+ version:
61619+ type: "integer"
61620+ format: "int64"
61621+ createdAt:
61622+ type: "string"
61623+ format: "datetime"
61624+ lastModifiedAt:
61625+ type: "string"
61626+ format: "datetime"
61627+ lastModifiedBy:
61628+ $ref: '#/components/schemas/LastModifiedBy'
61629+ createdBy:
61630+ $ref: '#/components/schemas/CreatedBy'
61631+ sequenceNumber:
61632+ type: "integer"
61633+ format: "int64"
61634+ resource:
61635+ $ref: '#/components/schemas/Reference'
61636+ resourceVersion:
61637+ type: "integer"
61638+ format: "int64"
61639+ type:
61640+ type: "string"
61641+ resourceUserProvidedIdentifiers:
61642+ $ref: '#/components/schemas/UserProvidedIdentifiers'
61643+ paymentRef:
61644+ $ref: '#/components/schemas/PaymentReference'
61645+ removedPaymentInfo:
61646+ type: "boolean"
6160761647 OrderPaymentStateChangedMessage:
6160861648 allOf:
6160961649 - $ref: '#/components/schemas/OrderMessage'
@@ -69301,6 +69341,7 @@ components:
6930169341 InventoryEntryDeleted: '#/components/schemas/InventoryEntryDeletedMessagePayload'
6930269342 InventoryEntryQuantitySet: '#/components/schemas/InventoryEntryQuantitySetMessagePayload'
6930369343 OrderPaymentAdded: '#/components/schemas/OrderPaymentAddedMessagePayload'
69344+ OrderPaymentRemoved: '#/components/schemas/OrderPaymentRemovedMessagePayload'
6930469345 PaymentCreated: '#/components/schemas/PaymentCreatedMessagePayload'
6930569346 PaymentInteractionAdded: '#/components/schemas/PaymentInteractionAddedMessagePayload'
6930669347 PaymentInterfaceIdSet: '#/components/schemas/PaymentInterfaceIdSetMessagePayload'
@@ -69833,12 +69874,26 @@ components:
6983369874 - $ref: '#/components/schemas/MessagePayload'
6983469875 - type: "object"
6983569876 required:
69836- - payment
69877+ - paymentRef
6983769878 properties:
6983869879 type:
6983969880 type: "string"
69840- payment :
69881+ paymentRef :
6984169882 $ref: '#/components/schemas/PaymentReference'
69883+ OrderPaymentRemovedMessagePayload:
69884+ allOf:
69885+ - $ref: '#/components/schemas/MessagePayload'
69886+ - type: "object"
69887+ required:
69888+ - paymentRef
69889+ - removedPaymentInfo
69890+ properties:
69891+ type:
69892+ type: "string"
69893+ paymentRef:
69894+ $ref: '#/components/schemas/PaymentReference'
69895+ removedPaymentInfo:
69896+ type: "boolean"
6984269897 OrderPaymentStateChangedMessagePayload:
6984369898 allOf:
6984469899 - $ref: '#/components/schemas/OrderMessagePayload'
0 commit comments