@@ -58150,6 +58150,74 @@ components:
5815058150 dateOfBirth:
5815158151 type: "string"
5815258152 format: "date-only"
58153+ CustomerDefaultBillingAddressSetMessage:
58154+ allOf:
58155+ - $ref: '#/components/schemas/Message'
58156+ - type: "object"
58157+ properties:
58158+ id:
58159+ type: "string"
58160+ version:
58161+ type: "integer"
58162+ format: "int64"
58163+ createdAt:
58164+ type: "string"
58165+ format: "datetime"
58166+ lastModifiedAt:
58167+ type: "string"
58168+ format: "datetime"
58169+ lastModifiedBy:
58170+ $ref: '#/components/schemas/LastModifiedBy'
58171+ createdBy:
58172+ $ref: '#/components/schemas/CreatedBy'
58173+ sequenceNumber:
58174+ type: "integer"
58175+ format: "int64"
58176+ resource:
58177+ $ref: '#/components/schemas/Reference'
58178+ resourceVersion:
58179+ type: "integer"
58180+ format: "int64"
58181+ type:
58182+ type: "string"
58183+ resourceUserProvidedIdentifiers:
58184+ $ref: '#/components/schemas/UserProvidedIdentifiers'
58185+ address:
58186+ $ref: '#/components/schemas/Address'
58187+ CustomerDefaultShippingAddressSetMessage:
58188+ allOf:
58189+ - $ref: '#/components/schemas/Message'
58190+ - type: "object"
58191+ properties:
58192+ id:
58193+ type: "string"
58194+ version:
58195+ type: "integer"
58196+ format: "int64"
58197+ createdAt:
58198+ type: "string"
58199+ format: "datetime"
58200+ lastModifiedAt:
58201+ type: "string"
58202+ format: "datetime"
58203+ lastModifiedBy:
58204+ $ref: '#/components/schemas/LastModifiedBy'
58205+ createdBy:
58206+ $ref: '#/components/schemas/CreatedBy'
58207+ sequenceNumber:
58208+ type: "integer"
58209+ format: "int64"
58210+ resource:
58211+ $ref: '#/components/schemas/Reference'
58212+ resourceVersion:
58213+ type: "integer"
58214+ format: "int64"
58215+ type:
58216+ type: "string"
58217+ resourceUserProvidedIdentifiers:
58218+ $ref: '#/components/schemas/UserProvidedIdentifiers'
58219+ address:
58220+ $ref: '#/components/schemas/Address'
5815358221 CustomerDeletedMessage:
5815458222 allOf:
5815558223 - $ref: '#/components/schemas/Message'
@@ -58774,6 +58842,49 @@ components:
5877458842 $ref: '#/components/schemas/UserProvidedIdentifiers'
5877558843 reset:
5877658844 type: "boolean"
58845+ CustomerStoresSetMessage:
58846+ allOf:
58847+ - $ref: '#/components/schemas/Message'
58848+ - type: "object"
58849+ required:
58850+ - oldStores
58851+ - stores
58852+ properties:
58853+ id:
58854+ type: "string"
58855+ version:
58856+ type: "integer"
58857+ format: "int64"
58858+ createdAt:
58859+ type: "string"
58860+ format: "datetime"
58861+ lastModifiedAt:
58862+ type: "string"
58863+ format: "datetime"
58864+ lastModifiedBy:
58865+ $ref: '#/components/schemas/LastModifiedBy'
58866+ createdBy:
58867+ $ref: '#/components/schemas/CreatedBy'
58868+ sequenceNumber:
58869+ type: "integer"
58870+ format: "int64"
58871+ resource:
58872+ $ref: '#/components/schemas/Reference'
58873+ resourceVersion:
58874+ type: "integer"
58875+ format: "int64"
58876+ type:
58877+ type: "string"
58878+ resourceUserProvidedIdentifiers:
58879+ $ref: '#/components/schemas/UserProvidedIdentifiers'
58880+ stores:
58881+ type: "array"
58882+ items:
58883+ $ref: '#/components/schemas/StoreKeyReference'
58884+ oldStores:
58885+ type: "array"
58886+ items:
58887+ $ref: '#/components/schemas/StoreKeyReference'
5877758888 CustomerTitleSetMessage:
5877858889 allOf:
5877958890 - $ref: '#/components/schemas/Message'
@@ -59685,6 +59796,8 @@ components:
5968559796 CustomerCustomTypeRemoved: '#/components/schemas/CustomerCustomTypeRemovedMessage'
5968659797 CustomerCustomTypeSet: '#/components/schemas/CustomerCustomTypeSetMessage'
5968759798 CustomerDateOfBirthSet: '#/components/schemas/CustomerDateOfBirthSetMessage'
59799+ CustomerDefaultBillingAddressSet: '#/components/schemas/CustomerDefaultBillingAddressSetMessage'
59800+ CustomerDefaultShippingAddressSet: '#/components/schemas/CustomerDefaultShippingAddressSetMessage'
5968859801 CustomerDeleted: '#/components/schemas/CustomerDeletedMessage'
5968959802 CustomerEmailChanged: '#/components/schemas/CustomerEmailChangedMessage'
5969059803 CustomerEmailTokenCreated: '#/components/schemas/CustomerEmailTokenCreatedMessage'
@@ -59702,6 +59815,7 @@ components:
5970259815 CustomerLastNameSet: '#/components/schemas/CustomerLastNameSetMessage'
5970359816 CustomerPasswordTokenCreated: '#/components/schemas/CustomerPasswordTokenCreatedMessage'
5970459817 CustomerPasswordUpdated: '#/components/schemas/CustomerPasswordUpdatedMessage'
59818+ CustomerStoresSet: '#/components/schemas/CustomerStoresSetMessage'
5970559819 CustomerTitleSet: '#/components/schemas/CustomerTitleSetMessage'
5970659820 DiscountCodeCreated: '#/components/schemas/DiscountCodeCreatedMessage'
5970759821 DiscountCodeDeleted: '#/components/schemas/DiscountCodeDeletedMessage'
@@ -67957,6 +68071,24 @@ components:
6795768071 dateOfBirth:
6795868072 type: "string"
6795968073 format: "date-only"
68074+ CustomerDefaultBillingAddressSetMessagePayload:
68075+ allOf:
68076+ - $ref: '#/components/schemas/MessagePayload'
68077+ - type: "object"
68078+ properties:
68079+ type:
68080+ type: "string"
68081+ address:
68082+ $ref: '#/components/schemas/Address'
68083+ CustomerDefaultShippingAddressSetMessagePayload:
68084+ allOf:
68085+ - $ref: '#/components/schemas/MessagePayload'
68086+ - type: "object"
68087+ properties:
68088+ type:
68089+ type: "string"
68090+ address:
68091+ $ref: '#/components/schemas/Address'
6796068092 CustomerDeletedMessagePayload:
6796168093 allOf:
6796268094 - $ref: '#/components/schemas/MessagePayload'
@@ -68156,6 +68288,24 @@ components:
6815668288 type: "string"
6815768289 reset:
6815868290 type: "boolean"
68291+ CustomerStoresSetMessagePayload:
68292+ allOf:
68293+ - $ref: '#/components/schemas/MessagePayload'
68294+ - type: "object"
68295+ required:
68296+ - oldStores
68297+ - stores
68298+ properties:
68299+ type:
68300+ type: "string"
68301+ stores:
68302+ type: "array"
68303+ items:
68304+ $ref: '#/components/schemas/StoreKeyReference'
68305+ oldStores:
68306+ type: "array"
68307+ items:
68308+ $ref: '#/components/schemas/StoreKeyReference'
6815968309 CustomerTitleSetMessagePayload:
6816068310 allOf:
6816168311 - $ref: '#/components/schemas/MessagePayload'
@@ -68540,6 +68690,8 @@ components:
6854068690 CustomerCustomTypeRemoved: '#/components/schemas/CustomerCustomTypeRemovedMessagePayload'
6854168691 CustomerCustomTypeSet: '#/components/schemas/CustomerCustomTypeSetMessagePayload'
6854268692 CustomerDateOfBirthSet: '#/components/schemas/CustomerDateOfBirthSetMessagePayload'
68693+ CustomerDefaultBillingAddressSet: '#/components/schemas/CustomerDefaultBillingAddressSetMessagePayload'
68694+ CustomerDefaultShippingAddressSet: '#/components/schemas/CustomerDefaultShippingAddressSetMessagePayload'
6854368695 CustomerDeleted: '#/components/schemas/CustomerDeletedMessagePayload'
6854468696 CustomerEmailChanged: '#/components/schemas/CustomerEmailChangedMessagePayload'
6854568697 CustomerEmailTokenCreated: '#/components/schemas/CustomerEmailTokenCreatedMessagePayload'
@@ -68557,6 +68709,7 @@ components:
6855768709 CustomerLastNameSet: '#/components/schemas/CustomerLastNameSetMessagePayload'
6855868710 CustomerPasswordTokenCreated: '#/components/schemas/CustomerPasswordTokenCreatedMessagePayload'
6855968711 CustomerPasswordUpdated: '#/components/schemas/CustomerPasswordUpdatedMessagePayload'
68712+ CustomerStoresSet: '#/components/schemas/CustomerStoresSetMessagePayload'
6856068713 CustomerTitleSet: '#/components/schemas/CustomerTitleSetMessagePayload'
6856168714 DiscountCodeCreated: '#/components/schemas/DiscountCodeCreatedMessagePayload'
6856268715 DiscountCodeDeleted: '#/components/schemas/DiscountCodeDeletedMessagePayload'
0 commit comments