Skip to content

Commit 86a24ee

Browse files
committed
TASK: Updating RAML types, Postman and OAS definition
1 parent bfb534a commit 86a24ee

18 files changed

+4182
-1164
lines changed

bruno/api/Project/Associate-roles/Update actions/SetCustomField.bru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ body:json {
1616
"actions": [
1717
{
1818
"action" : "setCustomField",
19-
"name" : "ExamplaryStringTypeField",
19+
"name" : "ExemplaryStringTypeField",
2020
"value" : "TextString"
2121
}
2222
]

bruno/api/Project/Associate-roles/Update actions/SetCustomType.bru

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ body:json {
2121
"typeId" : "type"
2222
},
2323
"fields" : {
24-
"examplaryStringTypeField" : "TextString"
24+
"exemplaryStringTypeField" : "TextString"
2525
}
2626
}
2727
]

oas/api/openapi.yaml

Lines changed: 82 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57772,6 +57772,70 @@ components:
5777257772
type: "array"
5777357773
items:
5777457774
$ref: '#/components/schemas/StoreKeyReference'
57775+
CartFrozenMessage:
57776+
allOf:
57777+
- $ref: '#/components/schemas/Message'
57778+
- type: "object"
57779+
properties:
57780+
id:
57781+
type: "string"
57782+
version:
57783+
type: "integer"
57784+
format: "int64"
57785+
createdAt:
57786+
type: "string"
57787+
format: "datetime"
57788+
lastModifiedAt:
57789+
type: "string"
57790+
format: "datetime"
57791+
lastModifiedBy:
57792+
$ref: '#/components/schemas/LastModifiedBy'
57793+
createdBy:
57794+
$ref: '#/components/schemas/CreatedBy'
57795+
sequenceNumber:
57796+
type: "integer"
57797+
format: "int64"
57798+
resource:
57799+
$ref: '#/components/schemas/Reference'
57800+
resourceVersion:
57801+
type: "integer"
57802+
format: "int64"
57803+
type:
57804+
type: "string"
57805+
resourceUserProvidedIdentifiers:
57806+
$ref: '#/components/schemas/UserProvidedIdentifiers'
57807+
CartUnfrozenMessage:
57808+
allOf:
57809+
- $ref: '#/components/schemas/Message'
57810+
- type: "object"
57811+
properties:
57812+
id:
57813+
type: "string"
57814+
version:
57815+
type: "integer"
57816+
format: "int64"
57817+
createdAt:
57818+
type: "string"
57819+
format: "datetime"
57820+
lastModifiedAt:
57821+
type: "string"
57822+
format: "datetime"
57823+
lastModifiedBy:
57824+
$ref: '#/components/schemas/LastModifiedBy'
57825+
createdBy:
57826+
$ref: '#/components/schemas/CreatedBy'
57827+
sequenceNumber:
57828+
type: "integer"
57829+
format: "int64"
57830+
resource:
57831+
$ref: '#/components/schemas/Reference'
57832+
resourceVersion:
57833+
type: "integer"
57834+
format: "int64"
57835+
type:
57836+
type: "string"
57837+
resourceUserProvidedIdentifiers:
57838+
$ref: '#/components/schemas/UserProvidedIdentifiers'
5777557839
CategoryCreatedMessage:
5777657840
allOf:
5777757841
- $ref: '#/components/schemas/Message'
@@ -60173,6 +60237,8 @@ components:
6017360237
CartDiscountStoreAdded: '#/components/schemas/CartDiscountStoreAddedMessage'
6017460238
CartDiscountStoreRemoved: '#/components/schemas/CartDiscountStoreRemovedMessage'
6017560239
CartDiscountStoresSet: '#/components/schemas/CartDiscountStoresSetMessage'
60240+
CartFrozen: '#/components/schemas/CartFrozenMessage'
60241+
CartUnfrozen: '#/components/schemas/CartUnfrozenMessage'
6017660242
CategoryCreated: '#/components/schemas/CategoryCreatedMessage'
6017760243
CategorySlugChanged: '#/components/schemas/CategorySlugChangedMessage'
6017860244
CustomerAddressAdded: '#/components/schemas/CustomerAddressAddedMessage'
@@ -68304,6 +68370,20 @@ components:
6830468370
type: "array"
6830568371
items:
6830668372
$ref: '#/components/schemas/StoreKeyReference'
68373+
CartFrozenMessagePayload:
68374+
allOf:
68375+
- $ref: '#/components/schemas/MessagePayload'
68376+
- type: "object"
68377+
properties:
68378+
type:
68379+
type: "string"
68380+
CartUnfrozenMessagePayload:
68381+
allOf:
68382+
- $ref: '#/components/schemas/MessagePayload'
68383+
- type: "object"
68384+
properties:
68385+
type:
68386+
type: "string"
6830768387
CategoryCreatedMessagePayload:
6830868388
allOf:
6830968389
- $ref: '#/components/schemas/MessagePayload'
@@ -69168,6 +69248,8 @@ components:
6916869248
CartDiscountStoreAdded: '#/components/schemas/CartDiscountStoreAddedMessagePayload'
6916969249
CartDiscountStoreRemoved: '#/components/schemas/CartDiscountStoreRemovedMessagePayload'
6917069250
CartDiscountStoresSet: '#/components/schemas/CartDiscountStoresSetMessagePayload'
69251+
CartFrozen: '#/components/schemas/CartFrozenMessagePayload'
69252+
CartUnfrozen: '#/components/schemas/CartUnfrozenMessagePayload'
6917169253
CategoryCreated: '#/components/schemas/CategoryCreatedMessagePayload'
6917269254
CategorySlugChanged: '#/components/schemas/CategorySlugChangedMessagePayload'
6917369255
CustomerAddressAdded: '#/components/schemas/CustomerAddressAddedMessagePayload'
@@ -77388,7 +77470,6 @@ components:
7738877470
- products
7738977471
- variants
7739077472
x-annotation-package: "ProductSearch"
77391-
x-beta: true
7739277473
x-annotation-enumDescriptions:
7739377474
products: "The query should count Products."
7739477475
variants: "The query should count Product Variants."
@@ -77411,7 +77492,6 @@ components:
7741177492
- count
7741277493
- key
7741377494
x-annotation-package: "ProductSearch"
77414-
x-beta: true
7741577495
x-annotation-enumDescriptions:
7741677496
count: "Sort buckets by the count value."
7741777497
key: "Sort buckets by the bucket key."
@@ -77581,7 +77661,6 @@ components:
7758177661
- all
7758277662
- query
7758377663
x-annotation-package: "ProductSearch"
77584-
x-beta: true
7758577664
x-annotation-enumDescriptions:
7758677665
all: "Count all Products (or Product Variants) without considering the search query."
7758777666
query: "Only count the Products (or Product Variants) that match the search query."

0 commit comments

Comments
 (0)