@@ -54042,6 +54042,8 @@ components:
5404254042 type: "string"
5404354043 custom:
5404454044 $ref: '#/components/schemas/CustomFieldsDraft'
54045+ interfaceId:
54046+ type: "string"
5404554047 ReplicaMyCartDraft:
5404654048 type: "object"
5404754049 required:
@@ -60036,6 +60038,7 @@ components:
6003660038 PaymentStatusInterfaceCodeSet: '#/components/schemas/PaymentStatusInterfaceCodeSetMessage'
6003760039 PaymentStatusStateTransition: '#/components/schemas/PaymentStatusStateTransitionMessage'
6003860040 PaymentTransactionAdded: '#/components/schemas/PaymentTransactionAddedMessage'
60041+ PaymentTransactionInterfaceIdSet: '#/components/schemas/PaymentTransactionInterfaceIdSetMessage'
6003960042 PaymentTransactionStateChanged: '#/components/schemas/PaymentTransactionStateChangedMessage'
6004060043 ProductAddedToCategory: '#/components/schemas/ProductAddedToCategoryMessage'
6004160044 ProductCreated: '#/components/schemas/ProductCreatedMessage'
@@ -63011,6 +63014,46 @@ components:
6301163014 $ref: '#/components/schemas/UserProvidedIdentifiers'
6301263015 transaction:
6301363016 $ref: '#/components/schemas/Transaction'
63017+ PaymentTransactionInterfaceIdSetMessage:
63018+ allOf:
63019+ - $ref: '#/components/schemas/Message'
63020+ - type: "object"
63021+ required:
63022+ - transactionId
63023+ properties:
63024+ id:
63025+ type: "string"
63026+ version:
63027+ type: "integer"
63028+ format: "int64"
63029+ createdAt:
63030+ type: "string"
63031+ format: "datetime"
63032+ lastModifiedAt:
63033+ type: "string"
63034+ format: "datetime"
63035+ lastModifiedBy:
63036+ $ref: '#/components/schemas/LastModifiedBy'
63037+ createdBy:
63038+ $ref: '#/components/schemas/CreatedBy'
63039+ sequenceNumber:
63040+ type: "integer"
63041+ format: "int64"
63042+ resource:
63043+ $ref: '#/components/schemas/Reference'
63044+ resourceVersion:
63045+ type: "integer"
63046+ format: "int64"
63047+ type:
63048+ type: "string"
63049+ resourceUserProvidedIdentifiers:
63050+ $ref: '#/components/schemas/UserProvidedIdentifiers'
63051+ transactionId:
63052+ type: "string"
63053+ newInterfaceId:
63054+ type: "string"
63055+ oldInterfaceId:
63056+ type: "string"
6301463057 PaymentTransactionStateChangedMessage:
6301563058 allOf:
6301663059 - $ref: '#/components/schemas/Message'
@@ -68936,6 +68979,7 @@ components:
6893668979 PaymentStatusInterfaceCodeSet: '#/components/schemas/PaymentStatusInterfaceCodeSetMessagePayload'
6893768980 PaymentStatusStateTransition: '#/components/schemas/PaymentStatusStateTransitionMessagePayload'
6893868981 PaymentTransactionAdded: '#/components/schemas/PaymentTransactionAddedMessagePayload'
68982+ PaymentTransactionInterfaceIdSet: '#/components/schemas/PaymentTransactionInterfaceIdSetMessagePayload'
6893968983 PaymentTransactionStateChanged: '#/components/schemas/PaymentTransactionStateChangedMessagePayload'
6894068984 ProductAddedToCategory: '#/components/schemas/ProductAddedToCategoryMessagePayload'
6894168985 ProductCreated: '#/components/schemas/ProductCreatedMessagePayload'
@@ -70010,6 +70054,21 @@ components:
7001070054 type: "string"
7001170055 transaction:
7001270056 $ref: '#/components/schemas/Transaction'
70057+ PaymentTransactionInterfaceIdSetMessagePayload:
70058+ allOf:
70059+ - $ref: '#/components/schemas/MessagePayload'
70060+ - type: "object"
70061+ required:
70062+ - transactionId
70063+ properties:
70064+ type:
70065+ type: "string"
70066+ transactionId:
70067+ type: "string"
70068+ newInterfaceId:
70069+ type: "string"
70070+ oldInterfaceId:
70071+ type: "string"
7001370072 PaymentTransactionStateChangedMessagePayload:
7001470073 allOf:
7001570074 - $ref: '#/components/schemas/MessagePayload'
@@ -76081,6 +76140,7 @@ components:
7608176140 setStatusInterfaceText: '#/components/schemas/PaymentSetStatusInterfaceTextAction'
7608276141 setTransactionCustomField: '#/components/schemas/PaymentSetTransactionCustomFieldAction'
7608376142 setTransactionCustomType: '#/components/schemas/PaymentSetTransactionCustomTypeAction'
76143+ setTransactionInterfaceId: '#/components/schemas/PaymentSetTransactionInterfaceIdAction'
7608476144 transitionState: '#/components/schemas/PaymentTransitionStateAction'
7608576145 required:
7608676146 - action
@@ -76110,6 +76170,8 @@ components:
7611076170 $ref: '#/components/schemas/TransactionState'
7611176171 custom:
7611276172 $ref: '#/components/schemas/CustomFields'
76173+ interfaceId:
76174+ type: "string"
7611376175 TransactionDraft:
7611476176 type: "object"
7611576177 required:
@@ -76129,6 +76191,8 @@ components:
7612976191 $ref: '#/components/schemas/TransactionState'
7613076192 custom:
7613176193 $ref: '#/components/schemas/CustomFieldsDraft'
76194+ interfaceId:
76195+ type: "string"
7613276196 TransactionState:
7613376197 type: "string"
7613476198 enum:
@@ -76480,6 +76544,19 @@ components:
7648076544 $ref: '#/components/schemas/TypeResourceIdentifier'
7648176545 fields:
7648276546 $ref: '#/components/schemas/FieldContainer'
76547+ PaymentSetTransactionInterfaceIdAction:
76548+ allOf:
76549+ - $ref: '#/components/schemas/PaymentUpdateAction'
76550+ - type: "object"
76551+ required:
76552+ - transactionId
76553+ properties:
76554+ action:
76555+ type: "string"
76556+ transactionId:
76557+ type: "string"
76558+ interfaceId:
76559+ type: "string"
7648376560 PaymentTransitionStateAction:
7648476561 allOf:
7648576562 - $ref: '#/components/schemas/PaymentUpdateAction'
0 commit comments